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

com.pulumi.azure.managedlustre.kotlin.outputs.FileSystemHsmSetting.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.managedlustre.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property containerId The resource ID of the storage container that is used for hydrating the namespace and archiving from the namespace. Changing this forces a new resource to be created.
 * @property importPrefix The import prefix for the Azure Managed Lustre File System. Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace. Changing this forces a new resource to be created.
 * > **NOTE:** The roles `Contributor` and `Storage Blob Data Contributor` must be added to the Service Principal `HPC Cache Resource Provider` for the Storage Account. See official docs for more information.
 * @property loggingContainerId The resource ID of the storage container that is used for logging events and errors. Changing this forces a new resource to be created.
 */
public data class FileSystemHsmSetting(
    public val containerId: String,
    public val importPrefix: String? = null,
    public val loggingContainerId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.managedlustre.outputs.FileSystemHsmSetting): FileSystemHsmSetting = FileSystemHsmSetting(
            containerId = javaType.containerId(),
            importPrefix = javaType.importPrefix().map({ args0 -> args0 }).orElse(null),
            loggingContainerId = javaType.loggingContainerId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy