1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. servicecatalog
  5. ProvisionedProduct
Alibaba Cloud v3.55.0 published on Tuesday, Apr 30, 2024 by Pulumi

alicloud.servicecatalog.ProvisionedProduct

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.55.0 published on Tuesday, Apr 30, 2024 by Pulumi

    Provides a Service Catalog Provisioned Product resource.

    For information about Service Catalog Provisioned Product and how to use it, see What is Provisioned Product.

    NOTE: Available in v1.196.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-testAccServiceCatalogProvisionedProduct";
    const _default = new alicloud.servicecatalog.ProvisionedProduct("default", {
        provisionedProductName: name,
        stackRegionId: "cn-hangzhou",
        productVersionId: "pv-bp1d7dxy2pcc1g",
        productId: "prod-bp1u3dkc282cwd",
        portfolioId: "port-bp119dvn27jccw",
        tags: {
            v1: "tf-test",
        },
        parameters: [{
            parameterKey: "role_name",
            parameterValue: name,
        }],
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-testAccServiceCatalogProvisionedProduct"
    default = alicloud.servicecatalog.ProvisionedProduct("default",
        provisioned_product_name=name,
        stack_region_id="cn-hangzhou",
        product_version_id="pv-bp1d7dxy2pcc1g",
        product_id="prod-bp1u3dkc282cwd",
        portfolio_id="port-bp119dvn27jccw",
        tags={
            "v1": "tf-test",
        },
        parameters=[alicloud.servicecatalog.ProvisionedProductParameterArgs(
            parameter_key="role_name",
            parameter_value=name,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/servicecatalog"
    	"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-testAccServiceCatalogProvisionedProduct"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := servicecatalog.NewProvisionedProduct(ctx, "default", &servicecatalog.ProvisionedProductArgs{
    			ProvisionedProductName: pulumi.String(name),
    			StackRegionId:          pulumi.String("cn-hangzhou"),
    			ProductVersionId:       pulumi.String("pv-bp1d7dxy2pcc1g"),
    			ProductId:              pulumi.String("prod-bp1u3dkc282cwd"),
    			PortfolioId:            pulumi.String("port-bp119dvn27jccw"),
    			Tags: pulumi.Map{
    				"v1": pulumi.Any("tf-test"),
    			},
    			Parameters: servicecatalog.ProvisionedProductParameterArray{
    				&servicecatalog.ProvisionedProductParameterArgs{
    					ParameterKey:   pulumi.String("role_name"),
    					ParameterValue: pulumi.String(name),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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-testAccServiceCatalogProvisionedProduct";
        var @default = new AliCloud.ServiceCatalog.ProvisionedProduct("default", new()
        {
            ProvisionedProductName = name,
            StackRegionId = "cn-hangzhou",
            ProductVersionId = "pv-bp1d7dxy2pcc1g",
            ProductId = "prod-bp1u3dkc282cwd",
            PortfolioId = "port-bp119dvn27jccw",
            Tags = 
            {
                { "v1", "tf-test" },
            },
            Parameters = new[]
            {
                new AliCloud.ServiceCatalog.Inputs.ProvisionedProductParameterArgs
                {
                    ParameterKey = "role_name",
                    ParameterValue = name,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.servicecatalog.ProvisionedProduct;
    import com.pulumi.alicloud.servicecatalog.ProvisionedProductArgs;
    import com.pulumi.alicloud.servicecatalog.inputs.ProvisionedProductParameterArgs;
    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-testAccServiceCatalogProvisionedProduct");
            var default_ = new ProvisionedProduct("default", ProvisionedProductArgs.builder()        
                .provisionedProductName(name)
                .stackRegionId("cn-hangzhou")
                .productVersionId("pv-bp1d7dxy2pcc1g")
                .productId("prod-bp1u3dkc282cwd")
                .portfolioId("port-bp119dvn27jccw")
                .tags(Map.of("v1", "tf-test"))
                .parameters(ProvisionedProductParameterArgs.builder()
                    .parameterKey("role_name")
                    .parameterValue(name)
                    .build())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-testAccServiceCatalogProvisionedProduct
    resources:
      default:
        type: alicloud:servicecatalog:ProvisionedProduct
        properties:
          provisionedProductName: ${name}
          stackRegionId: cn-hangzhou
          productVersionId: pv-bp1d7dxy2pcc1g
          productId: prod-bp1u3dkc282cwd
          portfolioId: port-bp119dvn27jccw
          tags:
            v1: tf-test
          parameters:
            - parameterKey: role_name
              parameterValue: ${name}
    

    Create ProvisionedProduct Resource

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

    Constructor syntax

    new ProvisionedProduct(name: string, args: ProvisionedProductArgs, opts?: CustomResourceOptions);
    @overload
    def ProvisionedProduct(resource_name: str,
                           args: ProvisionedProductArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProvisionedProduct(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           product_id: Optional[str] = None,
                           product_version_id: Optional[str] = None,
                           provisioned_product_name: Optional[str] = None,
                           stack_region_id: Optional[str] = None,
                           parameters: Optional[Sequence[ProvisionedProductParameterArgs]] = None,
                           portfolio_id: Optional[str] = None,
                           provisioned_product_id: Optional[str] = None,
                           tags: Optional[Mapping[str, Any]] = None)
    func NewProvisionedProduct(ctx *Context, name string, args ProvisionedProductArgs, opts ...ResourceOption) (*ProvisionedProduct, error)
    public ProvisionedProduct(string name, ProvisionedProductArgs args, CustomResourceOptions? opts = null)
    public ProvisionedProduct(String name, ProvisionedProductArgs args)
    public ProvisionedProduct(String name, ProvisionedProductArgs args, CustomResourceOptions options)
    
    type: alicloud:servicecatalog:ProvisionedProduct
    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 ProvisionedProductArgs
    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 ProvisionedProductArgs
    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 ProvisionedProductArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var provisionedProductResource = new AliCloud.ServiceCatalog.ProvisionedProduct("provisionedProductResource", new()
    {
        ProductId = "string",
        ProductVersionId = "string",
        ProvisionedProductName = "string",
        StackRegionId = "string",
        Parameters = new[]
        {
            new AliCloud.ServiceCatalog.Inputs.ProvisionedProductParameterArgs
            {
                ParameterKey = "string",
                ParameterValue = "string",
            },
        },
        PortfolioId = "string",
        ProvisionedProductId = "string",
        Tags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := servicecatalog.NewProvisionedProduct(ctx, "provisionedProductResource", &servicecatalog.ProvisionedProductArgs{
    	ProductId:              pulumi.String("string"),
    	ProductVersionId:       pulumi.String("string"),
    	ProvisionedProductName: pulumi.String("string"),
    	StackRegionId:          pulumi.String("string"),
    	Parameters: servicecatalog.ProvisionedProductParameterArray{
    		&servicecatalog.ProvisionedProductParameterArgs{
    			ParameterKey:   pulumi.String("string"),
    			ParameterValue: pulumi.String("string"),
    		},
    	},
    	PortfolioId:          pulumi.String("string"),
    	ProvisionedProductId: pulumi.String("string"),
    	Tags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var provisionedProductResource = new ProvisionedProduct("provisionedProductResource", ProvisionedProductArgs.builder()        
        .productId("string")
        .productVersionId("string")
        .provisionedProductName("string")
        .stackRegionId("string")
        .parameters(ProvisionedProductParameterArgs.builder()
            .parameterKey("string")
            .parameterValue("string")
            .build())
        .portfolioId("string")
        .provisionedProductId("string")
        .tags(Map.of("string", "any"))
        .build());
    
    provisioned_product_resource = alicloud.servicecatalog.ProvisionedProduct("provisionedProductResource",
        product_id="string",
        product_version_id="string",
        provisioned_product_name="string",
        stack_region_id="string",
        parameters=[alicloud.servicecatalog.ProvisionedProductParameterArgs(
            parameter_key="string",
            parameter_value="string",
        )],
        portfolio_id="string",
        provisioned_product_id="string",
        tags={
            "string": "any",
        })
    
    const provisionedProductResource = new alicloud.servicecatalog.ProvisionedProduct("provisionedProductResource", {
        productId: "string",
        productVersionId: "string",
        provisionedProductName: "string",
        stackRegionId: "string",
        parameters: [{
            parameterKey: "string",
            parameterValue: "string",
        }],
        portfolioId: "string",
        provisionedProductId: "string",
        tags: {
            string: "any",
        },
    });
    
    type: alicloud:servicecatalog:ProvisionedProduct
    properties:
        parameters:
            - parameterKey: string
              parameterValue: string
        portfolioId: string
        productId: string
        productVersionId: string
        provisionedProductId: string
        provisionedProductName: string
        stackRegionId: string
        tags:
            string: any
    

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

    ProductId string
    Product ID.
    ProductVersionId string
    Product version ID.
    ProvisionedProductName string
    The name of the instance.The length is 1~128 characters.
    StackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    Parameters List<Pulumi.AliCloud.ServiceCatalog.Inputs.ProvisionedProductParameter>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    PortfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    ProvisionedProductId string
    The ID of the instance.
    Tags Dictionary<string, object>
    A mapping of tags to assign to the resource.
    ProductId string
    Product ID.
    ProductVersionId string
    Product version ID.
    ProvisionedProductName string
    The name of the instance.The length is 1~128 characters.
    StackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    Parameters []ProvisionedProductParameterArgs
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    PortfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    ProvisionedProductId string
    The ID of the instance.
    Tags map[string]interface{}
    A mapping of tags to assign to the resource.
    productId String
    Product ID.
    productVersionId String
    Product version ID.
    provisionedProductName String
    The name of the instance.The length is 1~128 characters.
    stackRegionId String
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    parameters List<ProvisionedProductParameter>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId String
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    provisionedProductId String
    The ID of the instance.
    tags Map<String,Object>
    A mapping of tags to assign to the resource.
    productId string
    Product ID.
    productVersionId string
    Product version ID.
    provisionedProductName string
    The name of the instance.The length is 1~128 characters.
    stackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    parameters ProvisionedProductParameter[]
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    provisionedProductId string
    The ID of the instance.
    tags {[key: string]: any}
    A mapping of tags to assign to the resource.
    product_id str
    Product ID.
    product_version_id str
    Product version ID.
    provisioned_product_name str
    The name of the instance.The length is 1~128 characters.
    stack_region_id str
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    parameters Sequence[ProvisionedProductParameterArgs]
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolio_id str
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    provisioned_product_id str
    The ID of the instance.
    tags Mapping[str, Any]
    A mapping of tags to assign to the resource.
    productId String
    Product ID.
    productVersionId String
    Product version ID.
    provisionedProductName String
    The name of the instance.The length is 1~128 characters.
    stackRegionId String
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    parameters List<Property Map>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId String
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    provisionedProductId String
    The ID of the instance.
    tags Map<Any>
    A mapping of tags to assign to the resource.

    Outputs

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

    CreateTime string
    The creation time of the product instance
    Id string
    The provider-assigned unique ID for this managed resource.
    LastProvisioningTaskId string
    The ID of the last instance operation task
    LastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    LastTaskId string
    The ID of the last task
    Outputs List<Pulumi.AliCloud.ServiceCatalog.Outputs.ProvisionedProductOutput>
    The output value of the template.
    OwnerPrincipalId string
    The RAM entity ID of the owner
    OwnerPrincipalType string
    The RAM entity type of the owner
    ProductName string
    The name of the product
    ProductVersionName string
    The name of the product version
    ProvisionedProductArn string
    The ARN of the product instance
    ProvisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    StackId string
    The ID of the ROS stack
    Status string
    Instance status
    StatusMessage string
    The status message of the product instance
    CreateTime string
    The creation time of the product instance
    Id string
    The provider-assigned unique ID for this managed resource.
    LastProvisioningTaskId string
    The ID of the last instance operation task
    LastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    LastTaskId string
    The ID of the last task
    Outputs []ProvisionedProductOutputType
    The output value of the template.
    OwnerPrincipalId string
    The RAM entity ID of the owner
    OwnerPrincipalType string
    The RAM entity type of the owner
    ProductName string
    The name of the product
    ProductVersionName string
    The name of the product version
    ProvisionedProductArn string
    The ARN of the product instance
    ProvisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    StackId string
    The ID of the ROS stack
    Status string
    Instance status
    StatusMessage string
    The status message of the product instance
    createTime String
    The creation time of the product instance
    id String
    The provider-assigned unique ID for this managed resource.
    lastProvisioningTaskId String
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId String
    The ID of the last successful instance operation task
    lastTaskId String
    The ID of the last task
    outputs List<ProvisionedProductOutput>
    The output value of the template.
    ownerPrincipalId String
    The RAM entity ID of the owner
    ownerPrincipalType String
    The RAM entity type of the owner
    productName String
    The name of the product
    productVersionName String
    The name of the product version
    provisionedProductArn String
    The ARN of the product instance
    provisionedProductType String
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId String
    The ID of the ROS stack
    status String
    Instance status
    statusMessage String
    The status message of the product instance
    createTime string
    The creation time of the product instance
    id string
    The provider-assigned unique ID for this managed resource.
    lastProvisioningTaskId string
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    lastTaskId string
    The ID of the last task
    outputs ProvisionedProductOutput[]
    The output value of the template.
    ownerPrincipalId string
    The RAM entity ID of the owner
    ownerPrincipalType string
    The RAM entity type of the owner
    productName string
    The name of the product
    productVersionName string
    The name of the product version
    provisionedProductArn string
    The ARN of the product instance
    provisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId string
    The ID of the ROS stack
    status string
    Instance status
    statusMessage string
    The status message of the product instance
    create_time str
    The creation time of the product instance
    id str
    The provider-assigned unique ID for this managed resource.
    last_provisioning_task_id str
    The ID of the last instance operation task
    last_successful_provisioning_task_id str
    The ID of the last successful instance operation task
    last_task_id str
    The ID of the last task
    outputs Sequence[ProvisionedProductOutput]
    The output value of the template.
    owner_principal_id str
    The RAM entity ID of the owner
    owner_principal_type str
    The RAM entity type of the owner
    product_name str
    The name of the product
    product_version_name str
    The name of the product version
    provisioned_product_arn str
    The ARN of the product instance
    provisioned_product_type str
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stack_id str
    The ID of the ROS stack
    status str
    Instance status
    status_message str
    The status message of the product instance
    createTime String
    The creation time of the product instance
    id String
    The provider-assigned unique ID for this managed resource.
    lastProvisioningTaskId String
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId String
    The ID of the last successful instance operation task
    lastTaskId String
    The ID of the last task
    outputs List<Property Map>
    The output value of the template.
    ownerPrincipalId String
    The RAM entity ID of the owner
    ownerPrincipalType String
    The RAM entity type of the owner
    productName String
    The name of the product
    productVersionName String
    The name of the product version
    provisionedProductArn String
    The ARN of the product instance
    provisionedProductType String
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId String
    The ID of the ROS stack
    status String
    Instance status
    statusMessage String
    The status message of the product instance

    Look up Existing ProvisionedProduct Resource

    Get an existing ProvisionedProduct 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?: ProvisionedProductState, opts?: CustomResourceOptions): ProvisionedProduct
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            last_provisioning_task_id: Optional[str] = None,
            last_successful_provisioning_task_id: Optional[str] = None,
            last_task_id: Optional[str] = None,
            outputs: Optional[Sequence[ProvisionedProductOutputArgs]] = None,
            owner_principal_id: Optional[str] = None,
            owner_principal_type: Optional[str] = None,
            parameters: Optional[Sequence[ProvisionedProductParameterArgs]] = None,
            portfolio_id: Optional[str] = None,
            product_id: Optional[str] = None,
            product_name: Optional[str] = None,
            product_version_id: Optional[str] = None,
            product_version_name: Optional[str] = None,
            provisioned_product_arn: Optional[str] = None,
            provisioned_product_id: Optional[str] = None,
            provisioned_product_name: Optional[str] = None,
            provisioned_product_type: Optional[str] = None,
            stack_id: Optional[str] = None,
            stack_region_id: Optional[str] = None,
            status: Optional[str] = None,
            status_message: Optional[str] = None,
            tags: Optional[Mapping[str, Any]] = None) -> ProvisionedProduct
    func GetProvisionedProduct(ctx *Context, name string, id IDInput, state *ProvisionedProductState, opts ...ResourceOption) (*ProvisionedProduct, error)
    public static ProvisionedProduct Get(string name, Input<string> id, ProvisionedProductState? state, CustomResourceOptions? opts = null)
    public static ProvisionedProduct get(String name, Output<String> id, ProvisionedProductState 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:
    CreateTime string
    The creation time of the product instance
    LastProvisioningTaskId string
    The ID of the last instance operation task
    LastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    LastTaskId string
    The ID of the last task
    Outputs List<Pulumi.AliCloud.ServiceCatalog.Inputs.ProvisionedProductOutput>
    The output value of the template.
    OwnerPrincipalId string
    The RAM entity ID of the owner
    OwnerPrincipalType string
    The RAM entity type of the owner
    Parameters List<Pulumi.AliCloud.ServiceCatalog.Inputs.ProvisionedProductParameter>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    PortfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    ProductId string
    Product ID.
    ProductName string
    The name of the product
    ProductVersionId string
    Product version ID.
    ProductVersionName string
    The name of the product version
    ProvisionedProductArn string
    The ARN of the product instance
    ProvisionedProductId string
    The ID of the instance.
    ProvisionedProductName string
    The name of the instance.The length is 1~128 characters.
    ProvisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    StackId string
    The ID of the ROS stack
    StackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    Status string
    Instance status
    StatusMessage string
    The status message of the product instance
    Tags Dictionary<string, object>
    A mapping of tags to assign to the resource.
    CreateTime string
    The creation time of the product instance
    LastProvisioningTaskId string
    The ID of the last instance operation task
    LastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    LastTaskId string
    The ID of the last task
    Outputs []ProvisionedProductOutputTypeArgs
    The output value of the template.
    OwnerPrincipalId string
    The RAM entity ID of the owner
    OwnerPrincipalType string
    The RAM entity type of the owner
    Parameters []ProvisionedProductParameterArgs
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    PortfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    ProductId string
    Product ID.
    ProductName string
    The name of the product
    ProductVersionId string
    Product version ID.
    ProductVersionName string
    The name of the product version
    ProvisionedProductArn string
    The ARN of the product instance
    ProvisionedProductId string
    The ID of the instance.
    ProvisionedProductName string
    The name of the instance.The length is 1~128 characters.
    ProvisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    StackId string
    The ID of the ROS stack
    StackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    Status string
    Instance status
    StatusMessage string
    The status message of the product instance
    Tags map[string]interface{}
    A mapping of tags to assign to the resource.
    createTime String
    The creation time of the product instance
    lastProvisioningTaskId String
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId String
    The ID of the last successful instance operation task
    lastTaskId String
    The ID of the last task
    outputs List<ProvisionedProductOutput>
    The output value of the template.
    ownerPrincipalId String
    The RAM entity ID of the owner
    ownerPrincipalType String
    The RAM entity type of the owner
    parameters List<ProvisionedProductParameter>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId String
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    productId String
    Product ID.
    productName String
    The name of the product
    productVersionId String
    Product version ID.
    productVersionName String
    The name of the product version
    provisionedProductArn String
    The ARN of the product instance
    provisionedProductId String
    The ID of the instance.
    provisionedProductName String
    The name of the instance.The length is 1~128 characters.
    provisionedProductType String
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId String
    The ID of the ROS stack
    stackRegionId String
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    status String
    Instance status
    statusMessage String
    The status message of the product instance
    tags Map<String,Object>
    A mapping of tags to assign to the resource.
    createTime string
    The creation time of the product instance
    lastProvisioningTaskId string
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId string
    The ID of the last successful instance operation task
    lastTaskId string
    The ID of the last task
    outputs ProvisionedProductOutput[]
    The output value of the template.
    ownerPrincipalId string
    The RAM entity ID of the owner
    ownerPrincipalType string
    The RAM entity type of the owner
    parameters ProvisionedProductParameter[]
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId string
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    productId string
    Product ID.
    productName string
    The name of the product
    productVersionId string
    Product version ID.
    productVersionName string
    The name of the product version
    provisionedProductArn string
    The ARN of the product instance
    provisionedProductId string
    The ID of the instance.
    provisionedProductName string
    The name of the instance.The length is 1~128 characters.
    provisionedProductType string
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId string
    The ID of the ROS stack
    stackRegionId string
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    status string
    Instance status
    statusMessage string
    The status message of the product instance
    tags {[key: string]: any}
    A mapping of tags to assign to the resource.
    create_time str
    The creation time of the product instance
    last_provisioning_task_id str
    The ID of the last instance operation task
    last_successful_provisioning_task_id str
    The ID of the last successful instance operation task
    last_task_id str
    The ID of the last task
    outputs Sequence[ProvisionedProductOutputArgs]
    The output value of the template.
    owner_principal_id str
    The RAM entity ID of the owner
    owner_principal_type str
    The RAM entity type of the owner
    parameters Sequence[ProvisionedProductParameterArgs]
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolio_id str
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    product_id str
    Product ID.
    product_name str
    The name of the product
    product_version_id str
    Product version ID.
    product_version_name str
    The name of the product version
    provisioned_product_arn str
    The ARN of the product instance
    provisioned_product_id str
    The ID of the instance.
    provisioned_product_name str
    The name of the instance.The length is 1~128 characters.
    provisioned_product_type str
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stack_id str
    The ID of the ROS stack
    stack_region_id str
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    status str
    Instance status
    status_message str
    The status message of the product instance
    tags Mapping[str, Any]
    A mapping of tags to assign to the resource.
    createTime String
    The creation time of the product instance
    lastProvisioningTaskId String
    The ID of the last instance operation task
    lastSuccessfulProvisioningTaskId String
    The ID of the last successful instance operation task
    lastTaskId String
    The ID of the last task
    outputs List<Property Map>
    The output value of the template.
    ownerPrincipalId String
    The RAM entity ID of the owner
    ownerPrincipalType String
    The RAM entity type of the owner
    parameters List<Property Map>
    Template parameters entered by the user.The maximum value of N is 200.See the following Block Parameters.
    portfolioId String
    Product mix ID.> When there is a default Startup option, there is no need to fill in the portfolio. When there is no default Startup option, you must fill in the portfolio.
    productId String
    Product ID.
    productName String
    The name of the product
    productVersionId String
    Product version ID.
    productVersionName String
    The name of the product version
    provisionedProductArn String
    The ARN of the product instance
    provisionedProductId String
    The ID of the instance.
    provisionedProductName String
    The name of the instance.The length is 1~128 characters.
    provisionedProductType String
    Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
    stackId String
    The ID of the ROS stack
    stackRegionId String
    The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
    status String
    Instance status
    statusMessage String
    The status message of the product instance
    tags Map<Any>
    A mapping of tags to assign to the resource.

    Supporting Types

    ProvisionedProductOutput, ProvisionedProductOutputArgs

    Description string
    Description of the output value defined in the template.
    OutputKey string
    The name of the output value defined in the template.
    OutputValue string
    The content of the output value defined in the template.
    Description string
    Description of the output value defined in the template.
    OutputKey string
    The name of the output value defined in the template.
    OutputValue string
    The content of the output value defined in the template.
    description String
    Description of the output value defined in the template.
    outputKey String
    The name of the output value defined in the template.
    outputValue String
    The content of the output value defined in the template.
    description string
    Description of the output value defined in the template.
    outputKey string
    The name of the output value defined in the template.
    outputValue string
    The content of the output value defined in the template.
    description str
    Description of the output value defined in the template.
    output_key str
    The name of the output value defined in the template.
    output_value str
    The content of the output value defined in the template.
    description String
    Description of the output value defined in the template.
    outputKey String
    The name of the output value defined in the template.
    outputValue String
    The content of the output value defined in the template.

    ProvisionedProductParameter, ProvisionedProductParameterArgs

    Import

    Service Catalog Provisioned Product can be imported using the id, e.g.

    $ pulumi import alicloud:servicecatalog/provisionedProduct:ProvisionedProduct example <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.55.0 published on Tuesday, Apr 30, 2024 by Pulumi