
com.pulumi.azure.batch.kotlin.outputs.GetPoolMountAzureBlobFileSystem.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accountKey The Azure Storage Account key.
* @property accountName The Azure Storage Account name.
* @property blobfuseOptions Additional command line options to pass to the mount command. These are 'net use' options in Windows and 'mount' options in Linux.
* @property containerName The Azure Blob Storage Container name.
* @property identityId The ARM resource id of the user assigned identity. This property is mutually exclusive with both `account_key` and `sas_key`; exactly one must be specified.
* @property relativeMountPath The relative path on compute node where the file system will be mounted All file systems are mounted relative to the Batch mounts directory, accessible via the `AZ_BATCH_NODE_MOUNTS_DIR` environment variable.
* @property sasKey The Azure Storage SAS token. This property is mutually exclusive with both `account_key` and `identity_id`; exactly one must be specified.
*/
public data class GetPoolMountAzureBlobFileSystem(
public val accountKey: String,
public val accountName: String,
public val blobfuseOptions: String,
public val containerName: String,
public val identityId: String,
public val relativeMountPath: String,
public val sasKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolMountAzureBlobFileSystem): GetPoolMountAzureBlobFileSystem = GetPoolMountAzureBlobFileSystem(
accountKey = javaType.accountKey(),
accountName = javaType.accountName(),
blobfuseOptions = javaType.blobfuseOptions(),
containerName = javaType.containerName(),
identityId = javaType.identityId(),
relativeMountPath = javaType.relativeMountPath(),
sasKey = javaType.sasKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy