com.pulumi.gcp.container.kotlin.outputs.AwsClusterControlPlaneRootVolume.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.container.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property iops Optional. The number of I/O operations per second (IOPS) to provision for GP3 volume.
* @property kmsKeyArn Optional. The Amazon Resource Name (ARN) of the Customer Managed Key (CMK) used to encrypt AWS EBS volumes. If not specified, the default Amazon managed key associated to the AWS region where this cluster runs will be used.
* @property sizeGib Optional. The size of the volume, in GiBs. When unspecified, a default value is provided. See the specific reference in the parent resource.
* @property throughput Optional. The throughput to provision for the volume, in MiB/s. Only valid if the volume type is GP3. If volume type is gp3 and throughput is not specified, the throughput will defaults to 125.
* @property volumeType Optional. Type of the EBS volume. When unspecified, it defaults to GP2 volume. Possible values: VOLUME_TYPE_UNSPECIFIED, GP2, GP3
*/
public data class AwsClusterControlPlaneRootVolume(
public val iops: Int? = null,
public val kmsKeyArn: String? = null,
public val sizeGib: Int? = null,
public val throughput: Int? = null,
public val volumeType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.AwsClusterControlPlaneRootVolume): AwsClusterControlPlaneRootVolume = AwsClusterControlPlaneRootVolume(
iops = javaType.iops().map({ args0 -> args0 }).orElse(null),
kmsKeyArn = javaType.kmsKeyArn().map({ args0 -> args0 }).orElse(null),
sizeGib = javaType.sizeGib().map({ args0 -> args0 }).orElse(null),
throughput = javaType.throughput().map({ args0 -> args0 }).orElse(null),
volumeType = javaType.volumeType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy