GetRandomPasswordResult

data class GetRandomPasswordResult(val excludeCharacters: String? = null, val excludeLowercase: Boolean? = null, val excludeNumbers: Boolean? = null, val excludePunctuation: Boolean? = null, val excludeUppercase: Boolean? = null, val id: String, val includeSpace: Boolean? = null, val passwordLength: Int? = null, val randomPassword: String, val requireEachIncludedType: Boolean? = null)

A collection of values returned by getRandomPassword.

Constructors

Link copied to clipboard
constructor(excludeCharacters: String? = null, excludeLowercase: Boolean? = null, excludeNumbers: Boolean? = null, excludePunctuation: Boolean? = null, excludeUppercase: Boolean? = null, id: String, includeSpace: Boolean? = null, passwordLength: Int? = null, randomPassword: String, requireEachIncludedType: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val excludeNumbers: Boolean? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard
val includeSpace: Boolean? = null
Link copied to clipboard
val passwordLength: Int? = null
Link copied to clipboard

Random password.

Link copied to clipboard