Alibaba Cloud v3.62.1 published on Monday, Sep 16, 2024 by Pulumi
alicloud.ros.getChangeSets
Explore with Pulumi AI
This data source provides the Ros Change Sets of the current Alibaba Cloud user.
NOTE: Available in v1.105.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = alicloud.ros.getChangeSets({
stackId: "example_value",
ids: ["example_value"],
nameRegex: "the_resource_name",
});
export const firstRosChangeSetId = example.then(example => example.sets?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.ros.get_change_sets(stack_id="example_value",
ids=["example_value"],
name_regex="the_resource_name")
pulumi.export("firstRosChangeSetId", example.sets[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := ros.GetChangeSets(ctx, &ros.GetChangeSetsArgs{
StackId: "example_value",
Ids: []string{
"example_value",
},
NameRegex: pulumi.StringRef("the_resource_name"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstRosChangeSetId", example.Sets[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = AliCloud.Ros.GetChangeSets.Invoke(new()
{
StackId = "example_value",
Ids = new[]
{
"example_value",
},
NameRegex = "the_resource_name",
});
return new Dictionary<string, object?>
{
["firstRosChangeSetId"] = example.Apply(getChangeSetsResult => getChangeSetsResult.Sets[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ros.RosFunctions;
import com.pulumi.alicloud.ros.inputs.GetChangeSetsArgs;
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 example = RosFunctions.getChangeSets(GetChangeSetsArgs.builder()
.stackId("example_value")
.ids("example_value")
.nameRegex("the_resource_name")
.build());
ctx.export("firstRosChangeSetId", example.applyValue(getChangeSetsResult -> getChangeSetsResult.sets()[0].id()));
}
}
variables:
example:
fn::invoke:
Function: alicloud:ros:getChangeSets
Arguments:
stackId: example_value
ids:
- example_value
nameRegex: the_resource_name
outputs:
firstRosChangeSetId: ${example.sets[0].id}
Using getChangeSets
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 getChangeSets(args: GetChangeSetsArgs, opts?: InvokeOptions): Promise<GetChangeSetsResult>
function getChangeSetsOutput(args: GetChangeSetsOutputArgs, opts?: InvokeOptions): Output<GetChangeSetsResult>
def get_change_sets(change_set_name: Optional[str] = None,
enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
stack_id: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetChangeSetsResult
def get_change_sets_output(change_set_name: 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,
stack_id: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetChangeSetsResult]
func GetChangeSets(ctx *Context, args *GetChangeSetsArgs, opts ...InvokeOption) (*GetChangeSetsResult, error)
func GetChangeSetsOutput(ctx *Context, args *GetChangeSetsOutputArgs, opts ...InvokeOption) GetChangeSetsResultOutput
> Note: This function is named GetChangeSets
in the Go SDK.
public static class GetChangeSets
{
public static Task<GetChangeSetsResult> InvokeAsync(GetChangeSetsArgs args, InvokeOptions? opts = null)
public static Output<GetChangeSetsResult> Invoke(GetChangeSetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetChangeSetsResult> getChangeSets(GetChangeSetsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:ros/getChangeSets:getChangeSets
arguments:
# arguments dictionary
The following arguments are supported:
- Stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- Change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- Enable
Details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - Ids List<string>
- A list of Change Set IDs.
- Name
Regex string - A regex string to filter results by Change Set name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status string
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
- Stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- Change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- Enable
Details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - Ids []string
- A list of Change Set IDs.
- Name
Regex string - A regex string to filter results by Change Set name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status string
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
- stack
Id String - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- change
Set StringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- enable
Details Boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids List<String>
- A list of Change Set IDs.
- name
Regex String - A regex string to filter results by Change Set name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status String
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
- stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- enable
Details boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids string[]
- A list of Change Set IDs.
- name
Regex string - A regex string to filter results by Change Set name.
- output
File string - File name where to save data source results (after running
pulumi preview
). - status string
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
- stack_
id str - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- change_
set_ strname - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- enable_
details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - ids Sequence[str]
- A list of Change Set IDs.
- name_
regex str - A regex string to filter results by Change Set name.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - status str
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
- stack
Id String - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- change
Set StringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- enable
Details Boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids List<String>
- A list of Change Set IDs.
- name
Regex String - A regex string to filter results by Change Set name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status String
- The status of the change set. Valid Value:
CREATE_COMPLETE
,CREATE_FAILED
,CREATE_IN_PROGRESS
,CREATE_PENDING
,DELETE_COMPLETE
andDELETE_FAILED
.
getChangeSets Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- Sets
List<Pulumi.
Ali Cloud. Ros. Outputs. Get Change Sets Set> - Stack
Id string - Change
Set stringName - Enable
Details bool - Name
Regex string - Output
File string - Status string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Sets
[]Get
Change Sets Set - Stack
Id string - Change
Set stringName - Enable
Details bool - Name
Regex string - Output
File string - Status string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- sets
List<Get
Change Sets Set> - stack
Id String - change
Set StringName - enable
Details Boolean - name
Regex String - output
File String - status String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- sets
Get
Change Sets Set[] - stack
Id string - change
Set stringName - enable
Details boolean - name
Regex string - output
File string - status string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- sets
Sequence[Get
Change Sets Set] - stack_
id str - change_
set_ strname - enable_
details bool - name_
regex str - output_
file str - status str
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- sets List<Property Map>
- stack
Id String - change
Set StringName - enable
Details Boolean - name
Regex String - output
File String - status String
Supporting Types
GetChangeSetsSet
- Change
Set stringId - The ID of the change set.
- Change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- Change
Set stringType - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- Description string
- The description of the change set. The description can be up to 1,024 bytes in length.
- Disable
Rollback bool - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- Execution
Status string - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- Id string
- The ID of the Change Set.
- Parameters
List<Pulumi.
Ali Cloud. Ros. Inputs. Get Change Sets Set Parameter> - Parameters.
- Stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- Stack
Name string - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- Status string
- The status of the change set.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- Timeout
In intMinutes - Timeout In Minutes.
- Change
Set stringId - The ID of the change set.
- Change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- Change
Set stringType - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- Description string
- The description of the change set. The description can be up to 1,024 bytes in length.
- Disable
Rollback bool - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- Execution
Status string - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- Id string
- The ID of the Change Set.
- Parameters
[]Get
Change Sets Set Parameter - Parameters.
- Stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- Stack
Name string - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- Status string
- The status of the change set.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- Timeout
In intMinutes - Timeout In Minutes.
- change
Set StringId - The ID of the change set.
- change
Set StringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- change
Set StringType - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- description String
- The description of the change set. The description can be up to 1,024 bytes in length.
- disable
Rollback Boolean - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- execution
Status String - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- id String
- The ID of the Change Set.
- parameters
List<Get
Change Sets Set Parameter> - Parameters.
- stack
Id String - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- stack
Name String - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- status String
- The status of the change set.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- timeout
In IntegerMinutes - Timeout In Minutes.
- change
Set stringId - The ID of the change set.
- change
Set stringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- change
Set stringType - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- description string
- The description of the change set. The description can be up to 1,024 bytes in length.
- disable
Rollback boolean - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- execution
Status string - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- id string
- The ID of the Change Set.
- parameters
Get
Change Sets Set Parameter[] - Parameters.
- stack
Id string - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- stack
Name string - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- status string
- The status of the change set.
- template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- timeout
In numberMinutes - Timeout In Minutes.
- change_
set_ strid - The ID of the change set.
- change_
set_ strname - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- change_
set_ strtype - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- description str
- The description of the change set. The description can be up to 1,024 bytes in length.
- disable_
rollback bool - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- execution_
status str - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- id str
- The ID of the Change Set.
- parameters
Sequence[Get
Change Sets Set Parameter] - Parameters.
- stack_
id str - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- stack_
name str - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- status str
- The status of the change set.
- template_
body str - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- timeout_
in_ intminutes - Timeout In Minutes.
- change
Set StringId - The ID of the change set.
- change
Set StringName - The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.
- change
Set StringType - The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.
- description String
- The description of the change set. The description can be up to 1,024 bytes in length.
- disable
Rollback Boolean - Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- execution
Status String - The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.
- id String
- The ID of the Change Set.
- parameters List<Property Map>
- Parameters.
- stack
Id String - The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.
- stack
Name String - The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.
- status String
- The status of the change set.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.
- timeout
In NumberMinutes - Timeout In Minutes.
GetChangeSetsSetParameter
- Parameter
Key string - The parameters.
- Parameter
Value string - The parameters.
- Parameter
Key string - The parameters.
- Parameter
Value string - The parameters.
- parameter
Key String - The parameters.
- parameter
Value String - The parameters.
- parameter
Key string - The parameters.
- parameter
Value string - The parameters.
- parameter_
key str - The parameters.
- parameter_
value str - The parameters.
- parameter
Key String - The parameters.
- parameter
Value String - The parameters.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.