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

com.pulumi.azurenative.iotoperations.kotlin.outputs.InstancePropertiesResponse.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.iotoperations.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The properties of a Instance resource.
 * @property description Detailed description of the Instance.
 * @property provisioningState The status of the last operation.
 * @property version The Azure IoT Operations version.
 */
public data class InstancePropertiesResponse(
    public val description: String? = null,
    public val provisioningState: String,
    public val version: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.outputs.InstancePropertiesResponse): InstancePropertiesResponse = InstancePropertiesResponse(
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            provisioningState = javaType.provisioningState(),
            version = javaType.version(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy