1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. edas
  5. Application
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.edas.Application

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Creates an EDAS ecs application on EDAS, see What is EDAS Application. The application will be deployed when group_id and war_url are given.

    NOTE: Available since v1.82.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    import * as random from "@pulumi/random";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const defaultRandomInteger = new random.RandomInteger("defaultRandomInteger", {
        min: 10000,
        max: 99999,
    });
    const defaultRegions = alicloud.getRegions({
        current: true,
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: pulumi.interpolate`${name}-${defaultRandomInteger.result}`,
        cidrBlock: "10.4.0.0/16",
    });
    const defaultCluster = new alicloud.edas.Cluster("defaultCluster", {
        clusterName: pulumi.interpolate`${name}-${defaultRandomInteger.result}`,
        clusterType: 2,
        networkMode: 2,
        logicalRegionId: defaultRegions.then(defaultRegions => defaultRegions.regions?.[0]?.id),
        vpcId: defaultNetwork.id,
    });
    const defaultApplication = new alicloud.edas.Application("defaultApplication", {
        applicationName: pulumi.interpolate`${name}-${defaultRandomInteger.result}`,
        clusterId: defaultCluster.id,
        packageType: "JAR",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    import pulumi_random as random
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    default_random_integer = random.RandomInteger("defaultRandomInteger",
        min=10000,
        max=99999)
    default_regions = alicloud.get_regions(current=True)
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=default_random_integer.result.apply(lambda result: f"{name}-{result}"),
        cidr_block="10.4.0.0/16")
    default_cluster = alicloud.edas.Cluster("defaultCluster",
        cluster_name=default_random_integer.result.apply(lambda result: f"{name}-{result}"),
        cluster_type=2,
        network_mode=2,
        logical_region_id=default_regions.regions[0].id,
        vpc_id=default_network.id)
    default_application = alicloud.edas.Application("defaultApplication",
        application_name=default_random_integer.result.apply(lambda result: f"{name}-{result}"),
        cluster_id=default_cluster.id,
        package_type="JAR")
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/edas"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultRandomInteger, err := random.NewRandomInteger(ctx, "defaultRandomInteger", &random.RandomIntegerArgs{
    			Min: pulumi.Int(10000),
    			Max: pulumi.Int(99999),
    		})
    		if err != nil {
    			return err
    		}
    		defaultRegions, err := alicloud.GetRegions(ctx, &alicloud.GetRegionsArgs{
    			Current: pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v-%v", name, result), nil
    			}).(pulumi.StringOutput),
    			CidrBlock: pulumi.String("10.4.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultCluster, err := edas.NewCluster(ctx, "defaultCluster", &edas.ClusterArgs{
    			ClusterName: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v-%v", name, result), nil
    			}).(pulumi.StringOutput),
    			ClusterType:     pulumi.Int(2),
    			NetworkMode:     pulumi.Int(2),
    			LogicalRegionId: pulumi.String(defaultRegions.Regions[0].Id),
    			VpcId:           defaultNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = edas.NewApplication(ctx, "defaultApplication", &edas.ApplicationArgs{
    			ApplicationName: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v-%v", name, result), nil
    			}).(pulumi.StringOutput),
    			ClusterId:   defaultCluster.ID(),
    			PackageType: pulumi.String("JAR"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    using Random = Pulumi.Random;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf-example";
        var defaultRandomInteger = new Random.RandomInteger("defaultRandomInteger", new()
        {
            Min = 10000,
            Max = 99999,
        });
    
        var defaultRegions = AliCloud.GetRegions.Invoke(new()
        {
            Current = true,
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = defaultRandomInteger.Result.Apply(result => $"{name}-{result}"),
            CidrBlock = "10.4.0.0/16",
        });
    
        var defaultCluster = new AliCloud.Edas.Cluster("defaultCluster", new()
        {
            ClusterName = defaultRandomInteger.Result.Apply(result => $"{name}-{result}"),
            ClusterType = 2,
            NetworkMode = 2,
            LogicalRegionId = defaultRegions.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id),
            VpcId = defaultNetwork.Id,
        });
    
        var defaultApplication = new AliCloud.Edas.Application("defaultApplication", new()
        {
            ApplicationName = defaultRandomInteger.Result.Apply(result => $"{name}-{result}"),
            ClusterId = defaultCluster.Id,
            PackageType = "JAR",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.random.RandomInteger;
    import com.pulumi.random.RandomIntegerArgs;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetRegionsArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.edas.Cluster;
    import com.pulumi.alicloud.edas.ClusterArgs;
    import com.pulumi.alicloud.edas.Application;
    import com.pulumi.alicloud.edas.ApplicationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("tf-example");
            var defaultRandomInteger = new RandomInteger("defaultRandomInteger", RandomIntegerArgs.builder()        
                .min(10000)
                .max(99999)
                .build());
    
            final var defaultRegions = AlicloudFunctions.getRegions(GetRegionsArgs.builder()
                .current(true)
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
                .vpcName(defaultRandomInteger.result().applyValue(result -> String.format("%s-%s", name,result)))
                .cidrBlock("10.4.0.0/16")
                .build());
    
            var defaultCluster = new Cluster("defaultCluster", ClusterArgs.builder()        
                .clusterName(defaultRandomInteger.result().applyValue(result -> String.format("%s-%s", name,result)))
                .clusterType("2")
                .networkMode("2")
                .logicalRegionId(defaultRegions.applyValue(getRegionsResult -> getRegionsResult.regions()[0].id()))
                .vpcId(defaultNetwork.id())
                .build());
    
            var defaultApplication = new Application("defaultApplication", ApplicationArgs.builder()        
                .applicationName(defaultRandomInteger.result().applyValue(result -> String.format("%s-%s", name,result)))
                .clusterId(defaultCluster.id())
                .packageType("JAR")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      defaultRandomInteger:
        type: random:RandomInteger
        properties:
          min: 10000
          max: 99999
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: ${name}-${defaultRandomInteger.result}
          cidrBlock: 10.4.0.0/16
      defaultCluster:
        type: alicloud:edas:Cluster
        properties:
          clusterName: ${name}-${defaultRandomInteger.result}
          clusterType: '2'
          networkMode: '2'
          logicalRegionId: ${defaultRegions.regions[0].id}
          vpcId: ${defaultNetwork.id}
      defaultApplication:
        type: alicloud:edas:Application
        properties:
          applicationName: ${name}-${defaultRandomInteger.result}
          clusterId: ${defaultCluster.id}
          packageType: JAR
    variables:
      defaultRegions:
        fn::invoke:
          Function: alicloud:getRegions
          Arguments:
            current: true
    

    Create Application Resource

    new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def Application(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    application_name: Optional[str] = None,
                    build_pack_id: Optional[int] = None,
                    cluster_id: Optional[str] = None,
                    descriotion: Optional[str] = None,
                    ecu_infos: Optional[Sequence[str]] = None,
                    group_id: Optional[str] = None,
                    health_check_url: Optional[str] = None,
                    logical_region_id: Optional[str] = None,
                    package_type: Optional[str] = None,
                    package_version: Optional[str] = None,
                    war_url: Optional[str] = None)
    @overload
    def Application(resource_name: str,
                    args: ApplicationArgs,
                    opts: Optional[ResourceOptions] = None)
    func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
    public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
    public Application(String name, ApplicationArgs args)
    public Application(String name, ApplicationArgs args, CustomResourceOptions options)
    
    type: alicloud:edas:Application
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Application Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Application resource accepts the following input properties:

    ApplicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    ClusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    PackageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    BuildPackId int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    Descriotion string
    The description of the application that you want to create.
    EcuInfos List<string>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    GroupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    HealthCheckUrl string
    The URL for health checking of the application.
    LogicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    PackageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    WarUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    ApplicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    ClusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    PackageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    BuildPackId int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    Descriotion string
    The description of the application that you want to create.
    EcuInfos []string
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    GroupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    HealthCheckUrl string
    The URL for health checking of the application.
    LogicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    PackageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    WarUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName String
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    clusterId String
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    packageType String
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    buildPackId Integer
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    descriotion String
    The description of the application that you want to create.
    ecuInfos List<String>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId String
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl String
    The URL for health checking of the application.
    logicalRegionId String
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageVersion String
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl String
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    clusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    packageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    buildPackId number
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    descriotion string
    The description of the application that you want to create.
    ecuInfos string[]
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl string
    The URL for health checking of the application.
    logicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    application_name str
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    cluster_id str
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    package_type str
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    build_pack_id int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    descriotion str
    The description of the application that you want to create.
    ecu_infos Sequence[str]
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    group_id str
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    health_check_url str
    The URL for health checking of the application.
    logical_region_id str
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    package_version str
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    war_url str
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName String
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    clusterId String
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    packageType String
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    buildPackId Number
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    descriotion String
    The description of the application that you want to create.
    ecuInfos List<String>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId String
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl String
    The URL for health checking of the application.
    logicalRegionId String
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageVersion String
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl String
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Application Resource

    Get an existing Application resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ApplicationState, opts?: CustomResourceOptions): Application
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_name: Optional[str] = None,
            build_pack_id: Optional[int] = None,
            cluster_id: Optional[str] = None,
            descriotion: Optional[str] = None,
            ecu_infos: Optional[Sequence[str]] = None,
            group_id: Optional[str] = None,
            health_check_url: Optional[str] = None,
            logical_region_id: Optional[str] = None,
            package_type: Optional[str] = None,
            package_version: Optional[str] = None,
            war_url: Optional[str] = None) -> Application
    func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
    public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
    public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    BuildPackId int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    ClusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    Descriotion string
    The description of the application that you want to create.
    EcuInfos List<string>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    GroupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    HealthCheckUrl string
    The URL for health checking of the application.
    LogicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    PackageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    PackageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    WarUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    ApplicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    BuildPackId int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    ClusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    Descriotion string
    The description of the application that you want to create.
    EcuInfos []string
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    GroupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    HealthCheckUrl string
    The URL for health checking of the application.
    LogicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    PackageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    PackageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    WarUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName String
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    buildPackId Integer
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    clusterId String
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    descriotion String
    The description of the application that you want to create.
    ecuInfos List<String>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId String
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl String
    The URL for health checking of the application.
    logicalRegionId String
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageType String
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    packageVersion String
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl String
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName string
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    buildPackId number
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    clusterId string
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    descriotion string
    The description of the application that you want to create.
    ecuInfos string[]
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId string
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl string
    The URL for health checking of the application.
    logicalRegionId string
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageType string
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    packageVersion string
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl string
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    application_name str
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    build_pack_id int
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    cluster_id str
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    descriotion str
    The description of the application that you want to create.
    ecu_infos Sequence[str]
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    group_id str
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    health_check_url str
    The URL for health checking of the application.
    logical_region_id str
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    package_type str
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    package_version str
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    war_url str
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.
    applicationName String
    Name of your EDAS application. Only letters '-' '_' and numbers are allowed. The length cannot exceed 36 characters.
    buildPackId Number
    The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
    clusterId String
    The ID of the cluster that you want to create the application. The default cluster will be used if you do not specify this parameter.
    descriotion String
    The description of the application that you want to create.
    ecuInfos List<String>
    The ID of the Elastic Compute Unit (ECU) where you want to deploy the application. Type: List.
    groupId String
    The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.
    healthCheckUrl String
    The URL for health checking of the application.
    logicalRegionId String
    The ID of the namespace where you want to create the application. You can call the ListUserDefineRegion operation to query the namespace ID.
    packageType String
    The type of the package for the deployment of the application that you want to create. The valid values are: WAR and JAR. We strongly recommend you to set this parameter when creating the application.
    packageVersion String
    The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.
    warUrl String
    The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.

    Import

    EDAS application can be imported using the id, e.g.

    $ pulumi import alicloud:edas/application:Application app app_Id
    

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi