Alibaba Cloud v3.87.0 published on Saturday, Oct 18, 2025 by Pulumi
alicloud.servicecatalog.getProvisionedProducts
This data source provides Service Catalog Provisioned Product available to the user. What is Provisioned Product
NOTE: Available since v1.196.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.servicecatalog.getProvisionedProducts({
ids: ["IdExample"],
nameRegex: "NameRegexExample",
});
export const alicloudServiceCatalogProvisionedProductExampleId = _default.then(_default => _default.provisionedProducts?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.servicecatalog.get_provisioned_products(ids=["IdExample"],
name_regex="NameRegexExample")
pulumi.export("alicloudServiceCatalogProvisionedProductExampleId", default.provisioned_products[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/servicecatalog"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := servicecatalog.GetProvisionedProducts(ctx, &servicecatalog.GetProvisionedProductsArgs{
Ids: []string{
"IdExample",
},
NameRegex: pulumi.StringRef("NameRegexExample"),
}, nil)
if err != nil {
return err
}
ctx.Export("alicloudServiceCatalogProvisionedProductExampleId", _default.ProvisionedProducts[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.ServiceCatalog.GetProvisionedProducts.Invoke(new()
{
Ids = new[]
{
"IdExample",
},
NameRegex = "NameRegexExample",
});
return new Dictionary<string, object?>
{
["alicloudServiceCatalogProvisionedProductExampleId"] = @default.Apply(@default => @default.Apply(getProvisionedProductsResult => getProvisionedProductsResult.ProvisionedProducts[0]?.Id)),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.servicecatalog.ServicecatalogFunctions;
import com.pulumi.alicloud.servicecatalog.inputs.GetProvisionedProductsArgs;
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 default = ServicecatalogFunctions.getProvisionedProducts(GetProvisionedProductsArgs.builder()
.ids("IdExample")
.nameRegex("NameRegexExample")
.build());
ctx.export("alicloudServiceCatalogProvisionedProductExampleId", default_.provisionedProducts()[0].id());
}
}
variables:
default:
fn::invoke:
function: alicloud:servicecatalog:getProvisionedProducts
arguments:
ids:
- IdExample
nameRegex: NameRegexExample
outputs:
alicloudServiceCatalogProvisionedProductExampleId: ${default.provisionedProducts[0].id}
Using getProvisionedProducts
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProvisionedProducts(args: GetProvisionedProductsArgs, opts?: InvokeOptions): Promise<GetProvisionedProductsResult>
function getProvisionedProductsOutput(args: GetProvisionedProductsOutputArgs, opts?: InvokeOptions): Output<GetProvisionedProductsResult>def get_provisioned_products(access_level_filter: Optional[str] = None,
enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
page_number: Optional[int] = None,
page_size: Optional[int] = None,
sort_by: Optional[str] = None,
sort_order: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProvisionedProductsResult
def get_provisioned_products_output(access_level_filter: Optional[pulumi.Input[str]] = None,
enable_details: Optional[pulumi.Input[bool]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
page_number: Optional[pulumi.Input[int]] = None,
page_size: Optional[pulumi.Input[int]] = None,
sort_by: Optional[pulumi.Input[str]] = None,
sort_order: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProvisionedProductsResult]func GetProvisionedProducts(ctx *Context, args *GetProvisionedProductsArgs, opts ...InvokeOption) (*GetProvisionedProductsResult, error)
func GetProvisionedProductsOutput(ctx *Context, args *GetProvisionedProductsOutputArgs, opts ...InvokeOption) GetProvisionedProductsResultOutput> Note: This function is named GetProvisionedProducts in the Go SDK.
public static class GetProvisionedProducts
{
public static Task<GetProvisionedProductsResult> InvokeAsync(GetProvisionedProductsArgs args, InvokeOptions? opts = null)
public static Output<GetProvisionedProductsResult> Invoke(GetProvisionedProductsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetProvisionedProductsResult> getProvisionedProducts(GetProvisionedProductsArgs args, InvokeOptions options)
public static Output<GetProvisionedProductsResult> getProvisionedProducts(GetProvisionedProductsArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:servicecatalog/getProvisionedProducts:getProvisionedProducts
arguments:
# arguments dictionaryThe following arguments are supported:
- Access
Level stringFilter - The access filter.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids List<string>
- A list of Provisioned Product IDs.
- Name
Regex string - A regex string to filter results by Product name.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Page
Number int - Page
Size int - Sort
By string - The field that is used to sort the queried data.
- Sort
Order string - The sorting method.
- Access
Level stringFilter - The access filter.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids []string
- A list of Provisioned Product IDs.
- Name
Regex string - A regex string to filter results by Product name.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Page
Number int - Page
Size int - Sort
By string - The field that is used to sort the queried data.
- Sort
Order string - The sorting method.
- access
Level StringFilter - The access filter.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Provisioned Product IDs.
- name
Regex String - A regex string to filter results by Product name.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Integer - page
Size Integer - sort
By String - The field that is used to sort the queried data.
- sort
Order String - The sorting method.
- access
Level stringFilter - The access filter.
- enable
Details boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids string[]
- A list of Provisioned Product IDs.
- name
Regex string - A regex string to filter results by Product name.
- output
File string - File name where to save data source results (after running
pulumi preview). - page
Number number - page
Size number - sort
By string - The field that is used to sort the queried data.
- sort
Order string - The sorting method.
- access_
level_ strfilter - The access filter.
- enable_
details bool - Default to
false. Set it totruecan output more details about resource attributes. - ids Sequence[str]
- A list of Provisioned Product IDs.
- name_
regex str - A regex string to filter results by Product name.
- output_
file str - File name where to save data source results (after running
pulumi preview). - page_
number int - page_
size int - sort_
by str - The field that is used to sort the queried data.
- sort_
order str - The sorting method.
- access
Level StringFilter - The access filter.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Provisioned Product IDs.
- name
Regex String - A regex string to filter results by Product name.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Number - page
Size Number - sort
By String - The field that is used to sort the queried data.
- sort
Order String - The sorting method.
getProvisionedProducts Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of Provisioned Product IDs.
- Names List<string>
- A list of name of Provisioned Products.
- Products
List<Pulumi.
Ali Cloud. Service Catalog. Outputs. Get Provisioned Products Product> - (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- Provisioned
Products List<Pulumi.Ali Cloud. Service Catalog. Outputs. Get Provisioned Products Provisioned Product> - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- Access
Level stringFilter - Enable
Details bool - Name
Regex string - Output
File string - Page
Number int - Page
Size int - Sort
By string - Sort
Order string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of Provisioned Product IDs.
- Names []string
- A list of name of Provisioned Products.
- Products
[]Get
Provisioned Products Product - (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- Provisioned
Products []GetProvisioned Products Provisioned Product - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- Access
Level stringFilter - Enable
Details bool - Name
Regex string - Output
File string - Page
Number int - Page
Size int - Sort
By string - Sort
Order string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Provisioned Product IDs.
- names List<String>
- A list of name of Provisioned Products.
- products
List<Get
Provisioned Products Product> - (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- provisioned
Products List<GetProvisioned Products Provisioned Product> - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- access
Level StringFilter - enable
Details Boolean - name
Regex String - output
File String - page
Number Integer - page
Size Integer - sort
By String - sort
Order String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of Provisioned Product IDs.
- names string[]
- A list of name of Provisioned Products.
- products
Get
Provisioned Products Product[] - (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- provisioned
Products GetProvisioned Products Provisioned Product[] - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- access
Level stringFilter - enable
Details boolean - name
Regex string - output
File string - page
Number number - page
Size number - sort
By string - sort
Order string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- A list of Provisioned Product IDs.
- names Sequence[str]
- A list of name of Provisioned Products.
- products
Sequence[Get
Provisioned Products Product] - (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- provisioned_
products Sequence[GetProvisioned Products Provisioned Product] - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- access_
level_ strfilter - enable_
details bool - name_
regex str - output_
file str - page_
number int - page_
size int - sort_
by str - sort_
order str
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Provisioned Product IDs.
- names List<String>
- A list of name of Provisioned Products.
- products List<Property Map>
- (Deprecated since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- provisioned
Products List<Property Map> - (Available since v1.197.0) A list of Provisioned Product Entries. Each element contains the following attributes:
- access
Level StringFilter - enable
Details Boolean - name
Regex String - output
File String - page
Number Number - page
Size Number - sort
By String - sort
Order String
Supporting Types
GetProvisionedProductsProduct
- Create
Time string - The creation time of the product instance
- Id string
- Last
Provisioning stringTask Id - The ID of the last instance operation task
- Last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- Last
Task stringId - The ID of the last task
- Outputs
List<Pulumi.
Ali Cloud. Service Catalog. Inputs. Get Provisioned Products Product Output> - Owner
Principal stringId - The RAM entity ID of the owner
- Owner
Principal stringType - The RAM entity type of the owner
- Parameters
List<Pulumi.
Ali Cloud. Service Catalog. Inputs. Get Provisioned Products Product Parameter> - Portfolio
Id 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.
- Product
Id string - Product ID.
- Product
Name string - The name of the product
- Product
Version stringId - Product version ID.
- Product
Version stringName - The name of the product version
- Provisioned
Product stringArn - The ARN of the product instance
- Provisioned
Product stringId - The ID of the instance.
- Provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- Provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- Stack
Id string - The ID of the ROS stack
- Stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- Status string
- Instance status
- Status
Message string - The status message of the product instance
- Dictionary<string, string>
- Create
Time string - The creation time of the product instance
- Id string
- Last
Provisioning stringTask Id - The ID of the last instance operation task
- Last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- Last
Task stringId - The ID of the last task
- Outputs
[]Get
Provisioned Products Product Output Type - Owner
Principal stringId - The RAM entity ID of the owner
- Owner
Principal stringType - The RAM entity type of the owner
- Parameters
[]Get
Provisioned Products Product Parameter - Portfolio
Id 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.
- Product
Id string - Product ID.
- Product
Name string - The name of the product
- Product
Version stringId - Product version ID.
- Product
Version stringName - The name of the product version
- Provisioned
Product stringArn - The ARN of the product instance
- Provisioned
Product stringId - The ID of the instance.
- Provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- Provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- Stack
Id string - The ID of the ROS stack
- Stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- Status string
- Instance status
- Status
Message string - The status message of the product instance
- map[string]string
- create
Time String - The creation time of the product instance
- id String
- last
Provisioning StringTask Id - The ID of the last instance operation task
- last
Successful StringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task StringId - The ID of the last task
- outputs
List<Get
Provisioned Products Product Output> - owner
Principal StringId - The RAM entity ID of the owner
- owner
Principal StringType - The RAM entity type of the owner
- parameters
List<Get
Provisioned Products Product Parameter> - portfolio
Id 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.
- product
Id String - Product ID.
- product
Name String - The name of the product
- product
Version StringId - Product version ID.
- product
Version StringName - The name of the product version
- provisioned
Product StringArn - The ARN of the product instance
- provisioned
Product StringId - The ID of the instance.
- provisioned
Product StringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product StringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id String - The ID of the ROS stack
- stack
Region StringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status String
- Instance status
- status
Message String - The status message of the product instance
- Map<String,String>
- create
Time string - The creation time of the product instance
- id string
- last
Provisioning stringTask Id - The ID of the last instance operation task
- last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task stringId - The ID of the last task
- outputs
Get
Provisioned Products Product Output[] - owner
Principal stringId - The RAM entity ID of the owner
- owner
Principal stringType - The RAM entity type of the owner
- parameters
Get
Provisioned Products Product Parameter[] - portfolio
Id 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.
- product
Id string - Product ID.
- product
Name string - The name of the product
- product
Version stringId - Product version ID.
- product
Version stringName - The name of the product version
- provisioned
Product stringArn - The ARN of the product instance
- provisioned
Product stringId - The ID of the instance.
- provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id string - The ID of the ROS stack
- stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status string
- Instance status
- status
Message string - The status message of the product instance
- {[key: string]: string}
- create_
time str - The creation time of the product instance
- id str
- last_
provisioning_ strtask_ id - The ID of the last instance operation task
- last_
successful_ strprovisioning_ task_ id - The ID of the last successful instance operation task
- last_
task_ strid - The ID of the last task
- outputs
Sequence[Get
Provisioned Products Product Output] - owner_
principal_ strid - The RAM entity ID of the owner
- owner_
principal_ strtype - The RAM entity type of the owner
- parameters
Sequence[Get
Provisioned Products Product Parameter] - 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_ strid - Product version ID.
- product_
version_ strname - The name of the product version
- provisioned_
product_ strarn - The ARN of the product instance
- provisioned_
product_ strid - The ID of the instance.
- provisioned_
product_ strname - The name of the instance.The length is 1~128 characters.
- provisioned_
product_ strtype - 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_ strid - 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
- Mapping[str, str]
- create
Time String - The creation time of the product instance
- id String
- last
Provisioning StringTask Id - The ID of the last instance operation task
- last
Successful StringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task StringId - The ID of the last task
- outputs List<Property Map>
- owner
Principal StringId - The RAM entity ID of the owner
- owner
Principal StringType - The RAM entity type of the owner
- parameters List<Property Map>
- portfolio
Id 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.
- product
Id String - Product ID.
- product
Name String - The name of the product
- product
Version StringId - Product version ID.
- product
Version StringName - The name of the product version
- provisioned
Product StringArn - The ARN of the product instance
- provisioned
Product StringId - The ID of the instance.
- provisioned
Product StringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product StringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id String - The ID of the ROS stack
- stack
Region StringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status String
- Instance status
- status
Message String - The status message of the product instance
- Map<String>
GetProvisionedProductsProductOutput
- Description string
- Output
Key string - Output
Value string
- Description string
- Output
Key string - Output
Value string
- description String
- output
Key String - output
Value String
- description string
- output
Key string - output
Value string
- description str
- output_
key str - output_
value str
- description String
- output
Key String - output
Value String
GetProvisionedProductsProductParameter
- Parameter
Key string - Parameter
Value string
- Parameter
Key string - Parameter
Value string
- parameter
Key String - parameter
Value String
- parameter
Key string - parameter
Value string
- parameter_
key str - parameter_
value str
- parameter
Key String - parameter
Value String
GetProvisionedProductsProvisionedProduct
- Create
Time string - The creation time of the product instance
- Id string
- Last
Provisioning stringTask Id - The ID of the last instance operation task
- Last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- Last
Task stringId - The ID of the last task
- Outputs
List<Pulumi.
Ali Cloud. Service Catalog. Inputs. Get Provisioned Products Provisioned Product Output> - Owner
Principal stringId - The RAM entity ID of the owner
- Owner
Principal stringType - The RAM entity type of the owner
- Parameters
List<Pulumi.
Ali Cloud. Service Catalog. Inputs. Get Provisioned Products Provisioned Product Parameter> - Portfolio
Id 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.
- Product
Id string - Product ID.
- Product
Name string - The name of the product
- Product
Version stringId - Product version ID.
- Product
Version stringName - The name of the product version
- Provisioned
Product stringArn - The ARN of the product instance
- Provisioned
Product stringId - The ID of the instance.
- Provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- Provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- Stack
Id string - The ID of the ROS stack
- Stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- Status string
- Instance status
- Status
Message string - The status message of the product instance
- Dictionary<string, string>
- Create
Time string - The creation time of the product instance
- Id string
- Last
Provisioning stringTask Id - The ID of the last instance operation task
- Last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- Last
Task stringId - The ID of the last task
- Outputs
[]Get
Provisioned Products Provisioned Product Output Type - Owner
Principal stringId - The RAM entity ID of the owner
- Owner
Principal stringType - The RAM entity type of the owner
- Parameters
[]Get
Provisioned Products Provisioned Product Parameter - Portfolio
Id 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.
- Product
Id string - Product ID.
- Product
Name string - The name of the product
- Product
Version stringId - Product version ID.
- Product
Version stringName - The name of the product version
- Provisioned
Product stringArn - The ARN of the product instance
- Provisioned
Product stringId - The ID of the instance.
- Provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- Provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- Stack
Id string - The ID of the ROS stack
- Stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- Status string
- Instance status
- Status
Message string - The status message of the product instance
- map[string]string
- create
Time String - The creation time of the product instance
- id String
- last
Provisioning StringTask Id - The ID of the last instance operation task
- last
Successful StringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task StringId - The ID of the last task
- outputs
List<Get
Provisioned Products Provisioned Product Output> - owner
Principal StringId - The RAM entity ID of the owner
- owner
Principal StringType - The RAM entity type of the owner
- parameters
List<Get
Provisioned Products Provisioned Product Parameter> - portfolio
Id 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.
- product
Id String - Product ID.
- product
Name String - The name of the product
- product
Version StringId - Product version ID.
- product
Version StringName - The name of the product version
- provisioned
Product StringArn - The ARN of the product instance
- provisioned
Product StringId - The ID of the instance.
- provisioned
Product StringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product StringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id String - The ID of the ROS stack
- stack
Region StringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status String
- Instance status
- status
Message String - The status message of the product instance
- Map<String,String>
- create
Time string - The creation time of the product instance
- id string
- last
Provisioning stringTask Id - The ID of the last instance operation task
- last
Successful stringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task stringId - The ID of the last task
- outputs
Get
Provisioned Products Provisioned Product Output[] - owner
Principal stringId - The RAM entity ID of the owner
- owner
Principal stringType - The RAM entity type of the owner
- parameters
Get
Provisioned Products Provisioned Product Parameter[] - portfolio
Id 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.
- product
Id string - Product ID.
- product
Name string - The name of the product
- product
Version stringId - Product version ID.
- product
Version stringName - The name of the product version
- provisioned
Product stringArn - The ARN of the product instance
- provisioned
Product stringId - The ID of the instance.
- provisioned
Product stringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product stringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id string - The ID of the ROS stack
- stack
Region stringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status string
- Instance status
- status
Message string - The status message of the product instance
- {[key: string]: string}
- create_
time str - The creation time of the product instance
- id str
- last_
provisioning_ strtask_ id - The ID of the last instance operation task
- last_
successful_ strprovisioning_ task_ id - The ID of the last successful instance operation task
- last_
task_ strid - The ID of the last task
- outputs
Sequence[Get
Provisioned Products Provisioned Product Output] - owner_
principal_ strid - The RAM entity ID of the owner
- owner_
principal_ strtype - The RAM entity type of the owner
- parameters
Sequence[Get
Provisioned Products Provisioned Product Parameter] - 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_ strid - Product version ID.
- product_
version_ strname - The name of the product version
- provisioned_
product_ strarn - The ARN of the product instance
- provisioned_
product_ strid - The ID of the instance.
- provisioned_
product_ strname - The name of the instance.The length is 1~128 characters.
- provisioned_
product_ strtype - 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_ strid - 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
- Mapping[str, str]
- create
Time String - The creation time of the product instance
- id String
- last
Provisioning StringTask Id - The ID of the last instance operation task
- last
Successful StringProvisioning Task Id - The ID of the last successful instance operation task
- last
Task StringId - The ID of the last task
- outputs List<Property Map>
- owner
Principal StringId - The RAM entity ID of the owner
- owner
Principal StringType - The RAM entity type of the owner
- parameters List<Property Map>
- portfolio
Id 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.
- product
Id String - Product ID.
- product
Name String - The name of the product
- product
Version StringId - Product version ID.
- product
Version StringName - The name of the product version
- provisioned
Product StringArn - The ARN of the product instance
- provisioned
Product StringId - The ID of the instance.
- provisioned
Product StringName - The name of the instance.The length is 1~128 characters.
- provisioned
Product StringType - Instance type.The value is RosStack, which indicates the stack of Alibaba Cloud resource orchestration service (ROS).
- stack
Id String - The ID of the ROS stack
- stack
Region StringId - The ID of the region to which the resource stack of the Alibaba Cloud resource orchestration service (ROS) belongs.
- status String
- Instance status
- status
Message String - The status message of the product instance
- Map<String>
GetProvisionedProductsProvisionedProductOutput
- Description string
- Output
Key string - Output
Value string
- Description string
- Output
Key string - Output
Value string
- description String
- output
Key String - output
Value String
- description string
- output
Key string - output
Value string
- description str
- output_
key str - output_
value str
- description String
- output
Key String - output
Value String
GetProvisionedProductsProvisionedProductParameter
- Parameter
Key string - Parameter
Value string
- Parameter
Key string - Parameter
Value string
- parameter
Key String - parameter
Value String
- parameter
Key string - parameter
Value string
- parameter_
key str - parameter_
value str
- parameter
Key String - parameter
Value String
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
