![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.maps.kotlin.outputs.CreatorPropertiesResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.maps.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Creator resource properties
* @property provisioningState The state of the resource provisioning, terminal states: Succeeded, Failed, Canceled
* @property storageUnits The storage units to be allocated. Integer values from 1 to 100, inclusive.
*/
public data class CreatorPropertiesResponse(
public val provisioningState: String,
public val storageUnits: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.maps.outputs.CreatorPropertiesResponse): CreatorPropertiesResponse = CreatorPropertiesResponse(
provisioningState = javaType.provisioningState(),
storageUnits = javaType.storageUnits(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy