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

com.pulumi.azurenative.databox.kotlin.outputs.ExportDiskDetailsResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.databox.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Export disk details
 * @property backupManifestCloudPath Path to backed up manifest, only returned if enableManifestBackup is true.
 * @property manifestFile The relative path of the manifest file on the disk.
 * @property manifestHash The Base16-encoded MD5 hash of the manifest file on the disk.
 */
public data class ExportDiskDetailsResponse(
    public val backupManifestCloudPath: String,
    public val manifestFile: String,
    public val manifestHash: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.databox.outputs.ExportDiskDetailsResponse): ExportDiskDetailsResponse = ExportDiskDetailsResponse(
            backupManifestCloudPath = javaType.backupManifestCloudPath(),
            manifestFile = javaType.manifestFile(),
            manifestHash = javaType.manifestHash(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy