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

com.pulumi.azure.netapp.kotlin.outputs.GetVolumeQuotaRuleResult.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.netapp.kotlin.outputs

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

/**
 * A collection of values returned by getVolumeQuotaRule.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location The Azure Region where the Volume Quota Rule exists.
 * @property name
 * @property quotaSizeInKib The quota size in kibibytes.
 * @property quotaTarget The quota Target.
 * @property quotaType The quota type.
 * @property volumeId
 */
public data class GetVolumeQuotaRuleResult(
    public val id: String,
    public val location: String,
    public val name: String,
    public val quotaSizeInKib: Int,
    public val quotaTarget: String,
    public val quotaType: String,
    public val volumeId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.netapp.outputs.GetVolumeQuotaRuleResult): GetVolumeQuotaRuleResult = GetVolumeQuotaRuleResult(
            id = javaType.id(),
            location = javaType.location(),
            name = javaType.name(),
            quotaSizeInKib = javaType.quotaSizeInKib(),
            quotaTarget = javaType.quotaTarget(),
            quotaType = javaType.quotaType(),
            volumeId = javaType.volumeId(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy