commonMain.aws.sdk.kotlin.services.secretsmanager.model.PutSecretValueResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secretsmanager-jvm Show documentation
Show all versions of secretsmanager-jvm Show documentation
The AWS SDK for Kotlin client for Secrets Manager
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.secretsmanager.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutSecretValueResponse private constructor(builder: Builder) {
/**
* The ARN of the secret.
*/
public val arn: kotlin.String? = builder.arn
/**
* The name of the secret.
*/
public val name: kotlin.String? = builder.name
/**
* The unique identifier of the version of the secret.
*/
public val versionId: kotlin.String? = builder.versionId
/**
* The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.
*/
public val versionStages: List? = builder.versionStages
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.secretsmanager.model.PutSecretValueResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutSecretValueResponse(")
append("arn=$arn,")
append("name=$name,")
append("versionId=$versionId,")
append("versionStages=$versionStages")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (versionId?.hashCode() ?: 0)
result = 31 * result + (versionStages?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as PutSecretValueResponse
if (arn != other.arn) return false
if (name != other.name) return false
if (versionId != other.versionId) return false
if (versionStages != other.versionStages) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.secretsmanager.model.PutSecretValueResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the secret.
*/
public var arn: kotlin.String? = null
/**
* The name of the secret.
*/
public var name: kotlin.String? = null
/**
* The unique identifier of the version of the secret.
*/
public var versionId: kotlin.String? = null
/**
* The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.
*/
public var versionStages: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.secretsmanager.model.PutSecretValueResponse) : this() {
this.arn = x.arn
this.name = x.name
this.versionId = x.versionId
this.versionStages = x.versionStages
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.secretsmanager.model.PutSecretValueResponse = PutSecretValueResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}