1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. bp
  5. StudioApplication
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.bp.StudioApplication

Explore with Pulumi AI

Provides a Cloud Architect Design Tools Application resource.

For information about Cloud Architect Design Tools Application and how to use it, see What is Application.

NOTE: Available in v1.192.0+.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const _default = alicloud.resourcemanager.getResourceGroups({});
const defaultGetInstances = alicloud.ecs.getInstances({
    status: "Running",
});
const defaultStudioApplication = new alicloud.bp.StudioApplication("default", {
    applicationName: name,
    templateId: "YAUUQIYRSV1CMFGX",
    resourceGroupId: _default.then(_default => _default.groups?.[0]?.id),
    areaId: "cn-hangzhou",
    instances: [{
        id: "data.alicloud_instances.default.instances.0.id",
        nodeName: "data.alicloud_instances.default.instances.0.name",
        nodeType: "ecs",
    }],
    configuration: {
        enableMonitor: "1",
    },
    variables: {
        test: "1",
    },
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.resourcemanager.get_resource_groups()
default_get_instances = alicloud.ecs.get_instances(status="Running")
default_studio_application = alicloud.bp.StudioApplication("default",
    application_name=name,
    template_id="YAUUQIYRSV1CMFGX",
    resource_group_id=default.groups[0].id,
    area_id="cn-hangzhou",
    instances=[{
        "id": "data.alicloud_instances.default.instances.0.id",
        "node_name": "data.alicloud_instances.default.instances.0.name",
        "node_type": "ecs",
    }],
    configuration={
        "enableMonitor": "1",
    },
    variables={
        "test": "1",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/bp"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"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
		}
		_default, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
		if err != nil {
			return err
		}
		_, err = ecs.GetInstances(ctx, &ecs.GetInstancesArgs{
			Status: pulumi.StringRef("Running"),
		}, nil)
		if err != nil {
			return err
		}
		_, err = bp.NewStudioApplication(ctx, "default", &bp.StudioApplicationArgs{
			ApplicationName: pulumi.String(name),
			TemplateId:      pulumi.String("YAUUQIYRSV1CMFGX"),
			ResourceGroupId: pulumi.String(_default.Groups[0].Id),
			AreaId:          pulumi.String("cn-hangzhou"),
			Instances: bp.StudioApplicationInstanceArray{
				&bp.StudioApplicationInstanceArgs{
					Id:       pulumi.String("data.alicloud_instances.default.instances.0.id"),
					NodeName: pulumi.String("data.alicloud_instances.default.instances.0.name"),
					NodeType: pulumi.String("ecs"),
				},
			},
			Configuration: pulumi.StringMap{
				"enableMonitor": pulumi.String("1"),
			},
			Variables: pulumi.StringMap{
				"test": pulumi.String("1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf-example";
    var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();

    var defaultGetInstances = AliCloud.Ecs.GetInstances.Invoke(new()
    {
        Status = "Running",
    });

    var defaultStudioApplication = new AliCloud.Bp.StudioApplication("default", new()
    {
        ApplicationName = name,
        TemplateId = "YAUUQIYRSV1CMFGX",
        ResourceGroupId = @default.Apply(@default => @default.Apply(getResourceGroupsResult => getResourceGroupsResult.Groups[0]?.Id)),
        AreaId = "cn-hangzhou",
        Instances = new[]
        {
            new AliCloud.Bp.Inputs.StudioApplicationInstanceArgs
            {
                Id = "data.alicloud_instances.default.instances.0.id",
                NodeName = "data.alicloud_instances.default.instances.0.name",
                NodeType = "ecs",
            },
        },
        Configuration = 
        {
            { "enableMonitor", "1" },
        },
        Variables = 
        {
            { "test", "1" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetInstancesArgs;
import com.pulumi.alicloud.bp.StudioApplication;
import com.pulumi.alicloud.bp.StudioApplicationArgs;
import com.pulumi.alicloud.bp.inputs.StudioApplicationInstanceArgs;
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");
        final var default = ResourcemanagerFunctions.getResourceGroups();

        final var defaultGetInstances = EcsFunctions.getInstances(GetInstancesArgs.builder()
            .status("Running")
            .build());

        var defaultStudioApplication = new StudioApplication("defaultStudioApplication", StudioApplicationArgs.builder()
            .applicationName(name)
            .templateId("YAUUQIYRSV1CMFGX")
            .resourceGroupId(default_.groups()[0].id())
            .areaId("cn-hangzhou")
            .instances(StudioApplicationInstanceArgs.builder()
                .id("data.alicloud_instances.default.instances.0.id")
                .nodeName("data.alicloud_instances.default.instances.0.name")
                .nodeType("ecs")
                .build())
            .configuration(Map.of("enableMonitor", "1"))
            .variables(Map.of("test", "1"))
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf-example
resources:
  defaultStudioApplication:
    type: alicloud:bp:StudioApplication
    name: default
    properties:
      applicationName: ${name}
      templateId: YAUUQIYRSV1CMFGX
      resourceGroupId: ${default.groups[0].id}
      areaId: cn-hangzhou
      instances:
        - id: data.alicloud_instances.default.instances.0.id
          nodeName: data.alicloud_instances.default.instances.0.name
          nodeType: ecs
      configuration:
        enableMonitor: '1'
      variables:
        test: '1'
variables:
  default:
    fn::invoke:
      function: alicloud:resourcemanager:getResourceGroups
      arguments: {}
  defaultGetInstances:
    fn::invoke:
      function: alicloud:ecs:getInstances
      arguments:
        status: Running
Copy

Create StudioApplication Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StudioApplication(name: string, args: StudioApplicationArgs, opts?: CustomResourceOptions);
@overload
def StudioApplication(resource_name: str,
                      args: StudioApplicationArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def StudioApplication(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      application_name: Optional[str] = None,
                      template_id: Optional[str] = None,
                      area_id: Optional[str] = None,
                      configuration: Optional[Mapping[str, str]] = None,
                      instances: Optional[Sequence[StudioApplicationInstanceArgs]] = None,
                      resource_group_id: Optional[str] = None,
                      variables: Optional[Mapping[str, str]] = None)
func NewStudioApplication(ctx *Context, name string, args StudioApplicationArgs, opts ...ResourceOption) (*StudioApplication, error)
public StudioApplication(string name, StudioApplicationArgs args, CustomResourceOptions? opts = null)
public StudioApplication(String name, StudioApplicationArgs args)
public StudioApplication(String name, StudioApplicationArgs args, CustomResourceOptions options)
type: alicloud:bp:StudioApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StudioApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StudioApplicationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StudioApplicationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StudioApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StudioApplicationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var studioApplicationResource = new AliCloud.Bp.StudioApplication("studioApplicationResource", new()
{
    ApplicationName = "string",
    TemplateId = "string",
    AreaId = "string",
    Configuration = 
    {
        { "string", "string" },
    },
    Instances = new[]
    {
        new AliCloud.Bp.Inputs.StudioApplicationInstanceArgs
        {
            Id = "string",
            NodeName = "string",
            NodeType = "string",
        },
    },
    ResourceGroupId = "string",
    Variables = 
    {
        { "string", "string" },
    },
});
Copy
example, err := bp.NewStudioApplication(ctx, "studioApplicationResource", &bp.StudioApplicationArgs{
	ApplicationName: pulumi.String("string"),
	TemplateId:      pulumi.String("string"),
	AreaId:          pulumi.String("string"),
	Configuration: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Instances: bp.StudioApplicationInstanceArray{
		&bp.StudioApplicationInstanceArgs{
			Id:       pulumi.String("string"),
			NodeName: pulumi.String("string"),
			NodeType: pulumi.String("string"),
		},
	},
	ResourceGroupId: pulumi.String("string"),
	Variables: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var studioApplicationResource = new StudioApplication("studioApplicationResource", StudioApplicationArgs.builder()
    .applicationName("string")
    .templateId("string")
    .areaId("string")
    .configuration(Map.of("string", "string"))
    .instances(StudioApplicationInstanceArgs.builder()
        .id("string")
        .nodeName("string")
        .nodeType("string")
        .build())
    .resourceGroupId("string")
    .variables(Map.of("string", "string"))
    .build());
Copy
studio_application_resource = alicloud.bp.StudioApplication("studioApplicationResource",
    application_name="string",
    template_id="string",
    area_id="string",
    configuration={
        "string": "string",
    },
    instances=[{
        "id": "string",
        "node_name": "string",
        "node_type": "string",
    }],
    resource_group_id="string",
    variables={
        "string": "string",
    })
Copy
const studioApplicationResource = new alicloud.bp.StudioApplication("studioApplicationResource", {
    applicationName: "string",
    templateId: "string",
    areaId: "string",
    configuration: {
        string: "string",
    },
    instances: [{
        id: "string",
        nodeName: "string",
        nodeType: "string",
    }],
    resourceGroupId: "string",
    variables: {
        string: "string",
    },
});
Copy
type: alicloud:bp:StudioApplication
properties:
    applicationName: string
    areaId: string
    configuration:
        string: string
    instances:
        - id: string
          nodeName: string
          nodeType: string
    resourceGroupId: string
    templateId: string
    variables:
        string: string
Copy

StudioApplication Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StudioApplication resource accepts the following input properties:

ApplicationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application.
TemplateId
This property is required.
Changes to this property will trigger replacement.
string
The id of the template.
AreaId Changes to this property will trigger replacement. string
The id of the area.
Configuration Changes to this property will trigger replacement. Dictionary<string, string>
The configuration of the application.
Instances Changes to this property will trigger replacement. List<Pulumi.AliCloud.Bp.Inputs.StudioApplicationInstance>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
ResourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
Variables Changes to this property will trigger replacement. Dictionary<string, string>
The variables of the application.
ApplicationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application.
TemplateId
This property is required.
Changes to this property will trigger replacement.
string
The id of the template.
AreaId Changes to this property will trigger replacement. string
The id of the area.
Configuration Changes to this property will trigger replacement. map[string]string
The configuration of the application.
Instances Changes to this property will trigger replacement. []StudioApplicationInstanceArgs
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
ResourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
Variables Changes to this property will trigger replacement. map[string]string
The variables of the application.
applicationName
This property is required.
Changes to this property will trigger replacement.
String
The name of the application.
templateId
This property is required.
Changes to this property will trigger replacement.
String
The id of the template.
areaId Changes to this property will trigger replacement. String
The id of the area.
configuration Changes to this property will trigger replacement. Map<String,String>
The configuration of the application.
instances Changes to this property will trigger replacement. List<StudioApplicationInstance>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. String
The id of the resource group.
variables Changes to this property will trigger replacement. Map<String,String>
The variables of the application.
applicationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application.
templateId
This property is required.
Changes to this property will trigger replacement.
string
The id of the template.
areaId Changes to this property will trigger replacement. string
The id of the area.
configuration Changes to this property will trigger replacement. {[key: string]: string}
The configuration of the application.
instances Changes to this property will trigger replacement. StudioApplicationInstance[]
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
variables Changes to this property will trigger replacement. {[key: string]: string}
The variables of the application.
application_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the application.
template_id
This property is required.
Changes to this property will trigger replacement.
str
The id of the template.
area_id Changes to this property will trigger replacement. str
The id of the area.
configuration Changes to this property will trigger replacement. Mapping[str, str]
The configuration of the application.
instances Changes to this property will trigger replacement. Sequence[StudioApplicationInstanceArgs]
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resource_group_id Changes to this property will trigger replacement. str
The id of the resource group.
variables Changes to this property will trigger replacement. Mapping[str, str]
The variables of the application.
applicationName
This property is required.
Changes to this property will trigger replacement.
String
The name of the application.
templateId
This property is required.
Changes to this property will trigger replacement.
String
The id of the template.
areaId Changes to this property will trigger replacement. String
The id of the area.
configuration Changes to this property will trigger replacement. Map<String>
The configuration of the application.
instances Changes to this property will trigger replacement. List<Property Map>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. String
The id of the resource group.
variables Changes to this property will trigger replacement. Map<String>
The variables of the application.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the Application.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the Application.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the Application.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the Application.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the Application.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the Application.

Look up Existing StudioApplication Resource

Get an existing StudioApplication 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?: StudioApplicationState, opts?: CustomResourceOptions): StudioApplication
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_name: Optional[str] = None,
        area_id: Optional[str] = None,
        configuration: Optional[Mapping[str, str]] = None,
        instances: Optional[Sequence[StudioApplicationInstanceArgs]] = None,
        resource_group_id: Optional[str] = None,
        status: Optional[str] = None,
        template_id: Optional[str] = None,
        variables: Optional[Mapping[str, str]] = None) -> StudioApplication
func GetStudioApplication(ctx *Context, name string, id IDInput, state *StudioApplicationState, opts ...ResourceOption) (*StudioApplication, error)
public static StudioApplication Get(string name, Input<string> id, StudioApplicationState? state, CustomResourceOptions? opts = null)
public static StudioApplication get(String name, Output<String> id, StudioApplicationState state, CustomResourceOptions options)
resources:  _:    type: alicloud:bp:StudioApplication    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
The name of the application.
AreaId Changes to this property will trigger replacement. string
The id of the area.
Configuration Changes to this property will trigger replacement. Dictionary<string, string>
The configuration of the application.
Instances Changes to this property will trigger replacement. List<Pulumi.AliCloud.Bp.Inputs.StudioApplicationInstance>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
ResourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
Status string
The status of the Application.
TemplateId Changes to this property will trigger replacement. string
The id of the template.
Variables Changes to this property will trigger replacement. Dictionary<string, string>
The variables of the application.
ApplicationName Changes to this property will trigger replacement. string
The name of the application.
AreaId Changes to this property will trigger replacement. string
The id of the area.
Configuration Changes to this property will trigger replacement. map[string]string
The configuration of the application.
Instances Changes to this property will trigger replacement. []StudioApplicationInstanceArgs
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
ResourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
Status string
The status of the Application.
TemplateId Changes to this property will trigger replacement. string
The id of the template.
Variables Changes to this property will trigger replacement. map[string]string
The variables of the application.
applicationName Changes to this property will trigger replacement. String
The name of the application.
areaId Changes to this property will trigger replacement. String
The id of the area.
configuration Changes to this property will trigger replacement. Map<String,String>
The configuration of the application.
instances Changes to this property will trigger replacement. List<StudioApplicationInstance>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. String
The id of the resource group.
status String
The status of the Application.
templateId Changes to this property will trigger replacement. String
The id of the template.
variables Changes to this property will trigger replacement. Map<String,String>
The variables of the application.
applicationName Changes to this property will trigger replacement. string
The name of the application.
areaId Changes to this property will trigger replacement. string
The id of the area.
configuration Changes to this property will trigger replacement. {[key: string]: string}
The configuration of the application.
instances Changes to this property will trigger replacement. StudioApplicationInstance[]
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. string
The id of the resource group.
status string
The status of the Application.
templateId Changes to this property will trigger replacement. string
The id of the template.
variables Changes to this property will trigger replacement. {[key: string]: string}
The variables of the application.
application_name Changes to this property will trigger replacement. str
The name of the application.
area_id Changes to this property will trigger replacement. str
The id of the area.
configuration Changes to this property will trigger replacement. Mapping[str, str]
The configuration of the application.
instances Changes to this property will trigger replacement. Sequence[StudioApplicationInstanceArgs]
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resource_group_id Changes to this property will trigger replacement. str
The id of the resource group.
status str
The status of the Application.
template_id Changes to this property will trigger replacement. str
The id of the template.
variables Changes to this property will trigger replacement. Mapping[str, str]
The variables of the application.
applicationName Changes to this property will trigger replacement. String
The name of the application.
areaId Changes to this property will trigger replacement. String
The id of the area.
configuration Changes to this property will trigger replacement. Map<String>
The configuration of the application.
instances Changes to this property will trigger replacement. List<Property Map>
The instance list. Support the creation of instances in the existing vpc under the application. See the following Block instances.
resourceGroupId Changes to this property will trigger replacement. String
The id of the resource group.
status String
The status of the Application.
templateId Changes to this property will trigger replacement. String
The id of the template.
variables Changes to this property will trigger replacement. Map<String>
The variables of the application.

Supporting Types

StudioApplicationInstance
, StudioApplicationInstanceArgs

Id Changes to this property will trigger replacement. string
The id of the instance.
NodeName Changes to this property will trigger replacement. string
The name of the instance.
NodeType Changes to this property will trigger replacement. string
The type of the instance.
Id Changes to this property will trigger replacement. string
The id of the instance.
NodeName Changes to this property will trigger replacement. string
The name of the instance.
NodeType Changes to this property will trigger replacement. string
The type of the instance.
id Changes to this property will trigger replacement. String
The id of the instance.
nodeName Changes to this property will trigger replacement. String
The name of the instance.
nodeType Changes to this property will trigger replacement. String
The type of the instance.
id Changes to this property will trigger replacement. string
The id of the instance.
nodeName Changes to this property will trigger replacement. string
The name of the instance.
nodeType Changes to this property will trigger replacement. string
The type of the instance.
id Changes to this property will trigger replacement. str
The id of the instance.
node_name Changes to this property will trigger replacement. str
The name of the instance.
node_type Changes to this property will trigger replacement. str
The type of the instance.
id Changes to this property will trigger replacement. String
The id of the instance.
nodeName Changes to this property will trigger replacement. String
The name of the instance.
nodeType Changes to this property will trigger replacement. String
The type of the instance.

Import

Cloud Architect Design Tools Application can be imported using the id, e.g.

$ pulumi import alicloud:bp/studioApplication:StudioApplication example <id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.