1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudcontrol
  5. Resource
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.cloudcontrol.Resource

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Cloud Control Resource resource.

    For information about Cloud Control Resource and how to use it, see What is Resource.

    NOTE: Available since v1.241.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") || "terraform-example";
    const mqInstance = new alicloud.cloudcontrol.Resource("mq_instance", {
        desireAttributes: JSON.stringify({
            InstanceName: "terraform-example-ons-instance",
        }),
        product: "Ons",
        resourceCode: "Instance",
    });
    const _default = new alicloud.cloudcontrol.Resource("default", {
        product: "Ons",
        resourceCode: "Instance::Topic",
        resourceId: mqInstance.resourceId,
        desireAttributes: pulumi.jsonStringify({
            InstanceId: mqInstance.resourceId,
            TopicName: "terraform-example-ons-topic",
            MessageType: "1",
        }),
    });
    
    import pulumi
    import json
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    mq_instance = alicloud.cloudcontrol.Resource("mq_instance",
        desire_attributes=json.dumps({
            "InstanceName": "terraform-example-ons-instance",
        }),
        product="Ons",
        resource_code="Instance")
    default = alicloud.cloudcontrol.Resource("default",
        product="Ons",
        resource_code="Instance::Topic",
        resource_id=mq_instance.resource_id,
        desire_attributes=pulumi.Output.json_dumps({
            "InstanceId": mq_instance.resource_id,
            "TopicName": "terraform-example-ons-topic",
            "MessageType": "1",
        }))
    
    package main
    
    import (
    	"encoding/json"
    
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudcontrol"
    	"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 := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		tmpJSON0, err := json.Marshal(map[string]interface{}{
    			"InstanceName": "terraform-example-ons-instance",
    		})
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		mqInstance, err := cloudcontrol.NewResource(ctx, "mq_instance", &cloudcontrol.ResourceArgs{
    			DesireAttributes: pulumi.String(json0),
    			Product:          pulumi.String("Ons"),
    			ResourceCode:     pulumi.String("Instance"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cloudcontrol.NewResource(ctx, "default", &cloudcontrol.ResourceArgs{
    			Product:      pulumi.String("Ons"),
    			ResourceCode: pulumi.String("Instance::Topic"),
    			ResourceId:   mqInstance.ResourceId,
    			DesireAttributes: mqInstance.ResourceId.ApplyT(func(resourceId string) (pulumi.String, error) {
    				var _zero pulumi.String
    				tmpJSON1, err := json.Marshal(map[string]interface{}{
    					"InstanceId":  resourceId,
    					"TopicName":   "terraform-example-ons-topic",
    					"MessageType": "1",
    				})
    				if err != nil {
    					return _zero, err
    				}
    				json1 := string(tmpJSON1)
    				return pulumi.String(json1), nil
    			}).(pulumi.StringOutput),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var mqInstance = new AliCloud.CloudControl.Resource("mq_instance", new()
        {
            DesireAttributes = JsonSerializer.Serialize(new Dictionary<string, object?>
            {
                ["InstanceName"] = "terraform-example-ons-instance",
            }),
            Product = "Ons",
            ResourceCode = "Instance",
        });
    
        var @default = new AliCloud.CloudControl.Resource("default", new()
        {
            Product = "Ons",
            ResourceCode = "Instance::Topic",
            ResourceId = mqInstance.ResourceId,
            DesireAttributes = Output.JsonSerialize(Output.Create(new Dictionary<string, object?>
            {
                ["InstanceId"] = mqInstance.ResourceId,
                ["TopicName"] = "terraform-example-ons-topic",
                ["MessageType"] = "1",
            })),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cloudcontrol.Resource;
    import com.pulumi.alicloud.cloudcontrol.ResourceArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    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("terraform-example");
            var mqInstance = new Resource("mqInstance", ResourceArgs.builder()
                .desireAttributes(serializeJson(
                    jsonObject(
                        jsonProperty("InstanceName", "terraform-example-ons-instance")
                    )))
                .product("Ons")
                .resourceCode("Instance")
                .build());
    
            var default_ = new Resource("default", ResourceArgs.builder()
                .product("Ons")
                .resourceCode("Instance::Topic")
                .resourceId(mqInstance.resourceId())
                .desireAttributes(mqInstance.resourceId().applyValue(resourceId -> serializeJson(
                    jsonObject(
                        jsonProperty("InstanceId", resourceId),
                        jsonProperty("TopicName", "terraform-example-ons-topic"),
                        jsonProperty("MessageType", "1")
                    ))))
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      mqInstance:
        type: alicloud:cloudcontrol:Resource
        name: mq_instance
        properties:
          desireAttributes:
            fn::toJSON:
              InstanceName: terraform-example-ons-instance
          product: Ons
          resourceCode: Instance
      default:
        type: alicloud:cloudcontrol:Resource
        properties:
          product: Ons
          resourceCode: Instance::Topic
          resourceId: ${mqInstance.resourceId}
          desireAttributes:
            fn::toJSON:
              InstanceId: ${mqInstance.resourceId}
              TopicName: terraform-example-ons-topic
              MessageType: '1'
    

    Create Resource Resource

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

    Constructor syntax

    new Resource(name: string, args: ResourceArgs, opts?: CustomResourceOptions);
    @overload
    def Resource(resource_name: str,
                 args: ResourceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Resource(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 product: Optional[str] = None,
                 resource_code: Optional[str] = None,
                 desire_attributes: Optional[str] = None,
                 resource_id: Optional[str] = None)
    func NewResource(ctx *Context, name string, args ResourceArgs, opts ...ResourceOption) (*Resource, error)
    public Resource(string name, ResourceArgs args, CustomResourceOptions? opts = null)
    public Resource(String name, ResourceArgs args)
    public Resource(String name, ResourceArgs args, CustomResourceOptions options)
    
    type: alicloud:cloudcontrol:Resource
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ResourceArgs
    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 ResourceArgs
    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 ResourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResourceArgs
    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 resourceResource = new AliCloud.CloudControl.Resource("resourceResource", new()
    {
        Product = "string",
        ResourceCode = "string",
        DesireAttributes = "string",
        ResourceId = "string",
    });
    
    example, err := cloudcontrol.NewResource(ctx, "resourceResource", &cloudcontrol.ResourceArgs{
    	Product:          pulumi.String("string"),
    	ResourceCode:     pulumi.String("string"),
    	DesireAttributes: pulumi.String("string"),
    	ResourceId:       pulumi.String("string"),
    })
    
    var resourceResource = new Resource("resourceResource", ResourceArgs.builder()
        .product("string")
        .resourceCode("string")
        .desireAttributes("string")
        .resourceId("string")
        .build());
    
    resource_resource = alicloud.cloudcontrol.Resource("resourceResource",
        product="string",
        resource_code="string",
        desire_attributes="string",
        resource_id="string")
    
    const resourceResource = new alicloud.cloudcontrol.Resource("resourceResource", {
        product: "string",
        resourceCode: "string",
        desireAttributes: "string",
        resourceId: "string",
    });
    
    type: alicloud:cloudcontrol:Resource
    properties:
        desireAttributes: string
        product: string
        resourceCode: string
        resourceId: string
    

    Resource 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 Resource resource accepts the following input properties:

    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    DesireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    ResourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    DesireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    ResourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes String
    Resource attributes specified when a user creates or updates a resource.
    resourceId String
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    resourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    product str
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resource_code str
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desire_attributes str
    Resource attributes specified when a user creates or updates a resource.
    resource_id str
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes String
    Resource attributes specified when a user creates or updates a resource.
    resourceId String
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAttributes string
    The collection of properties for the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAttributes string
    The collection of properties for the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAttributes String
    The collection of properties for the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAttributes string
    The collection of properties for the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_attributes str
    The collection of properties for the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAttributes String
    The collection of properties for the resource.

    Look up Existing Resource Resource

    Get an existing Resource 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?: ResourceState, opts?: CustomResourceOptions): Resource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            desire_attributes: Optional[str] = None,
            product: Optional[str] = None,
            resource_attributes: Optional[str] = None,
            resource_code: Optional[str] = None,
            resource_id: Optional[str] = None) -> Resource
    func GetResource(ctx *Context, name string, id IDInput, state *ResourceState, opts ...ResourceOption) (*Resource, error)
    public static Resource Get(string name, Input<string> id, ResourceState? state, CustomResourceOptions? opts = null)
    public static Resource get(String name, Output<String> id, ResourceState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:cloudcontrol:Resource    get:      id: ${id}
    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:
    DesireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceAttributes string
    The collection of properties for the resource.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    ResourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    DesireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceAttributes string
    The collection of properties for the resource.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    ResourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    desireAttributes String
    Resource attributes specified when a user creates or updates a resource.
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceAttributes String
    The collection of properties for the resource.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    resourceId String
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    desireAttributes string
    Resource attributes specified when a user creates or updates a resource.
    product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceAttributes string
    The collection of properties for the resource.
    resourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    resourceId string
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    desire_attributes str
    Resource attributes specified when a user creates or updates a resource.
    product str
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resource_attributes str
    The collection of properties for the resource.
    resource_code str
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    resource_id str
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.
    desireAttributes String
    Resource attributes specified when a user creates or updates a resource.
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceAttributes String
    The collection of properties for the resource.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    resourceId String
    If there is a parent resource, you need to enter the id of the parent resource, for example, in the VPC::VSwtich resource, you need to enter the id of the VPC: vpc-dexadfe3r4ad. If there are more than one level of parent resources, you need to use : to split.

    Import

    Cloud Control Resource can be imported using the id, e.g.

    $ pulumi import alicloud:cloudcontrol/resource:Resource example <provider>:<product>:<resource_code>:<resource_id>
    

    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.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi