GetStacksPlainArgs

data class GetStacksPlainArgs(val enableDetails: Boolean? = null, val ids: List<String>? = null, val nameRegex: String? = null, val outputFile: String? = null, val parentStackId: String? = null, val showNestedStack: Boolean? = null, val stackName: String? = null, val status: String? = null, val tags: Map<String, String>? = null) : ConvertibleToJava<GetStacksPlainArgs>

A collection of arguments for invoking getStacks.

Constructors

Link copied to clipboard
constructor(enableDetails: Boolean? = null, ids: List<String>? = null, nameRegex: String? = null, outputFile: String? = null, parentStackId: String? = null, showNestedStack: Boolean? = null, stackName: String? = null, status: String? = null, tags: Map<String, String>? = null)

Properties

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 Stack IDs.

Link copied to clipboard
val nameRegex: String? = null

A regex string to filter results by Stack 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
val parentStackId: String? = null

ParentStackId.

Link copied to clipboard

The show nested stack.

Link copied to clipboard
val stackName: String? = null

StackName.

Link copied to clipboard
val status: String? = null

The status of Stack. Valid Values: CREATE_COMPLETE, CREATE_FAILED, CREATE_IN_PROGRESS, DELETE_COMPLETE, DELETE_FAILED, DELETE_IN_PROGRESS, ROLLBACK_COMPLETE, ROLLBACK_FAILED, ROLLBACK_IN_PROGRESS.

Link copied to clipboard
val tags: Map<String, String>? = null

Query the instance bound to the tag. The format of the incoming value is json string, including TagKey and TagValue. TagKey cannot be null, and TagValue can be empty. Format example {"key1":"value1"}.

Functions

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