commonMain.aws.sdk.kotlin.services.redshift.model.DescribeStorageResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeStorageResponse private constructor(builder: Builder) {
/**
* The total amount of storage currently used for snapshots.
*/
public val totalBackupSizeInMegaBytes: kotlin.Double? = builder.totalBackupSizeInMegaBytes
/**
* The total amount of storage currently provisioned.
*/
public val totalProvisionedStorageInMegaBytes: kotlin.Double? = builder.totalProvisionedStorageInMegaBytes
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeStorageResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeStorageResponse(")
append("totalBackupSizeInMegaBytes=$totalBackupSizeInMegaBytes,")
append("totalProvisionedStorageInMegaBytes=$totalProvisionedStorageInMegaBytes")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = totalBackupSizeInMegaBytes?.hashCode() ?: 0
result = 31 * result + (totalProvisionedStorageInMegaBytes?.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 DescribeStorageResponse
if (!(totalBackupSizeInMegaBytes?.equals(other.totalBackupSizeInMegaBytes) ?: (other.totalBackupSizeInMegaBytes == null))) return false
if (!(totalProvisionedStorageInMegaBytes?.equals(other.totalProvisionedStorageInMegaBytes) ?: (other.totalProvisionedStorageInMegaBytes == null))) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeStorageResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The total amount of storage currently used for snapshots.
*/
public var totalBackupSizeInMegaBytes: kotlin.Double? = null
/**
* The total amount of storage currently provisioned.
*/
public var totalProvisionedStorageInMegaBytes: kotlin.Double? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeStorageResponse) : this() {
this.totalBackupSizeInMegaBytes = x.totalBackupSizeInMegaBytes
this.totalProvisionedStorageInMegaBytes = x.totalProvisionedStorageInMegaBytes
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeStorageResponse = DescribeStorageResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}