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

com.pulumi.azure.netapp.kotlin.outputs.GetVolumeGroupSapHanaVolumeExportPolicyRule.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.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