
com.pulumi.azurenative.azurelargeinstance.kotlin.outputs.StorageBillingPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.azurelargeinstance.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Describes the billing related details of the AzureLargeStorageInstance.
* @property billingMode the billing mode for the storage instance
* @property sku the SKU type that is provisioned
*/
public data class StorageBillingPropertiesResponse(
public val billingMode: String? = null,
public val sku: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurelargeinstance.outputs.StorageBillingPropertiesResponse): StorageBillingPropertiesResponse = StorageBillingPropertiesResponse(
billingMode = javaType.billingMode().map({ args0 -> args0 }).orElse(null),
sku = javaType.sku().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy