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

com.pulumi.aws.fsx.kotlin.outputs.OpenZfsFileSystemRootVolumeConfigurationUserAndGroupQuota.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.fsx.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property id The ID of the user or group. Valid values between `0` and `2147483647`
 * @property storageCapacityQuotaGib The amount of storage that the user or group can use in gibibytes (GiB). Valid values between `0` and `2147483647`
 * @property type A value that specifies whether the quota applies to a user or group. Valid values are `USER` or `GROUP`.
 */
public data class OpenZfsFileSystemRootVolumeConfigurationUserAndGroupQuota(
    public val id: Int,
    public val storageCapacityQuotaGib: Int,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.fsx.outputs.OpenZfsFileSystemRootVolumeConfigurationUserAndGroupQuota): OpenZfsFileSystemRootVolumeConfigurationUserAndGroupQuota =
            OpenZfsFileSystemRootVolumeConfigurationUserAndGroupQuota(
                id = javaType.id(),
                storageCapacityQuotaGib = javaType.storageCapacityQuotaGib(),
                type = javaType.type(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy