All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.compute.kotlin.outputs.GetInstanceAttachedDisk.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property deviceName Name with which the attached disk is accessible
 * under `/dev/disk/by-id/`
 * @property diskEncryptionKeyRaw A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
 * @property diskEncryptionKeySha256 The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
 * encoded SHA-256 hash of the [customer-supplied encryption key]
 * () that protects this resource.
 * @property kmsKeySelfLink The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
 * @property mode Read/write mode for the disk. One of `"READ_ONLY"` or `"READ_WRITE"`.
 * @property source The name or self_link of the disk attached to this instance.
 */
public data class GetInstanceAttachedDisk(
    public val deviceName: String,
    public val diskEncryptionKeyRaw: String,
    public val diskEncryptionKeySha256: String,
    public val kmsKeySelfLink: String,
    public val mode: String,
    public val source: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetInstanceAttachedDisk): GetInstanceAttachedDisk = GetInstanceAttachedDisk(
            deviceName = javaType.deviceName(),
            diskEncryptionKeyRaw = javaType.diskEncryptionKeyRaw(),
            diskEncryptionKeySha256 = javaType.diskEncryptionKeySha256(),
            kmsKeySelfLink = javaType.kmsKeySelfLink(),
            mode = javaType.mode(),
            source = javaType.source(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy