GetChangeSetsPlainArgs

data class GetChangeSetsPlainArgs(val changeSetName: String? = null, val enableDetails: Boolean? = null, val ids: List<String>? = null, val nameRegex: String? = null, val outputFile: String? = null, val stackId: String, val status: String? = null) : ConvertibleToJava<GetChangeSetsPlainArgs>

A collection of arguments for invoking getChangeSets.

Constructors

Link copied to clipboard
constructor(changeSetName: String? = null, enableDetails: Boolean? = null, ids: List<String>? = null, nameRegex: String? = null, outputFile: String? = null, stackId: String, status: String? = null)

Properties

Link copied to clipboard
val changeSetName: String? = null

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.

Link copied to clipboard
val enableDetails: Boolean? = null

Default to false. Set it to true can output more details about resource attributes.

Link copied to clipboard
val ids: List<String>? = null

A list of Change Set IDs.

Link copied to clipboard
val nameRegex: String? = null

A regex string to filter results by Change Set name.

Link copied to clipboard
val outputFile: String? = null

File name where to save data source results (after running pulumi preview).

Link copied to clipboard

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.

Link copied to clipboard
val status: String? = null

The status of the change set. Valid Value: CREATE_COMPLETE, CREATE_FAILED, CREATE_IN_PROGRESS, CREATE_PENDING, DELETE_COMPLETE and DELETE_FAILED.

Functions

Link copied to clipboard
open override fun toJava(): GetChangeSetsPlainArgs