GetSecretsPlainArgs

data class GetSecretsPlainArgs(val enableDetails: Boolean? = null, val fetchTags: Boolean? = null, val filters: String? = null, val ids: List<String>? = null, val nameRegex: String? = null, val outputFile: String? = null, val tags: Map<String, String>? = null) : ConvertibleToJava<GetSecretsPlainArgs>

A collection of arguments for invoking getSecrets.

Constructors

Link copied to clipboard
constructor(enableDetails: Boolean? = null, fetchTags: Boolean? = null, filters: String? = null, ids: List<String>? = null, nameRegex: String? = null, outputFile: 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.

Link copied to clipboard
val fetchTags: Boolean? = null

Whether to include the predetermined resource tag in the return value. Default to false.

Link copied to clipboard
val filters: String? = null

The secret filter. The filter consists of one or more key-value pairs. More details see API ListSecrets.

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

A list of KMS Secret ids. The value is same as KMS secret_name.

Link copied to clipboard
val nameRegex: String? = null

A regex string to filter the results by the KMS secret_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 tags: Map<String, String>? = null

A mapping of tags to assign to the resource, and can be used to filter secrets.

Functions

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