![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.netapp.kotlin.outputs.GetVolumeGroupSapHanaVolumeExportPolicyRule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.netapp.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property allowedClients A list of allowed clients IPv4 addresses.
* @property nfsv3Enabled Is the NFSv3 protocol enabled?
* @property nfsv41Enabled Is the NFSv4.1 enabled?
* @property rootAccessEnabled Is root access permitted to this volume?
* @property ruleIndex The index number of the rule.
* @property unixReadOnly Is the file system on unix read only?.
* @property unixReadWrite Is the file system on unix read and write?.
*/
public data class GetVolumeGroupSapHanaVolumeExportPolicyRule(
public val allowedClients: String,
public val nfsv3Enabled: Boolean,
public val nfsv41Enabled: Boolean,
public val rootAccessEnabled: Boolean,
public val ruleIndex: Int,
public val unixReadOnly: Boolean,
public val unixReadWrite: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.netapp.outputs.GetVolumeGroupSapHanaVolumeExportPolicyRule): GetVolumeGroupSapHanaVolumeExportPolicyRule = GetVolumeGroupSapHanaVolumeExportPolicyRule(
allowedClients = javaType.allowedClients(),
nfsv3Enabled = javaType.nfsv3Enabled(),
nfsv41Enabled = javaType.nfsv41Enabled(),
rootAccessEnabled = javaType.rootAccessEnabled(),
ruleIndex = javaType.ruleIndex(),
unixReadOnly = javaType.unixReadOnly(),
unixReadWrite = javaType.unixReadWrite(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy