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

com.pulumi.azure.netapp.kotlin.outputs.GetPoolResult.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 getPool.
 * @property accountName
 * @property encryptionType The encryption type of the pool.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location The Azure Region where the NetApp Pool exists.
 * @property name
 * @property resourceGroupName
 * @property serviceLevel The service level of the file system.
 * @property sizeInTb Provisioned size of the pool in TB.
 */
public data class GetPoolResult(
    public val accountName: String,
    public val encryptionType: String,
    public val id: String,
    public val location: String,
    public val name: String,
    public val resourceGroupName: String,
    public val serviceLevel: String,
    public val sizeInTb: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.netapp.outputs.GetPoolResult): GetPoolResult =
            GetPoolResult(
                accountName = javaType.accountName(),
                encryptionType = javaType.encryptionType(),
                id = javaType.id(),
                location = javaType.location(),
                name = javaType.name(),
                resourceGroupName = javaType.resourceGroupName(),
                serviceLevel = javaType.serviceLevel(),
                sizeInTb = javaType.sizeInTb(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy