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

com.pulumi.azurenative.providerhub.kotlin.outputs.SkuResourceResponseProperties.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.providerhub.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property provisioningState The provisioned state of the resource.
 * @property skuSettings
 */
public data class SkuResourceResponseProperties(
    public val provisioningState: String? = null,
    public val skuSettings: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.providerhub.outputs.SkuResourceResponseProperties): SkuResourceResponseProperties = SkuResourceResponseProperties(
            provisioningState = javaType.provisioningState().map({ args0 -> args0 }).orElse(null),
            skuSettings = javaType.skuSettings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.providerhub.kotlin.outputs.SkuSettingResponse.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy