![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.machinelearningservices.kotlin.outputs.EnvironmentContainerResponse.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.machinelearningservices.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* Container for environment specification versions.
* @property description The asset description text.
* @property isArchived Is the asset archived?
* @property latestVersion The latest version inside this container.
* @property nextVersion The next auto incremental version
* @property properties The asset property dictionary.
* @property provisioningState Provisioning state for the environment container.
* @property tags Tag dictionary. Tags can be added, removed, and updated.
*/
public data class EnvironmentContainerResponse(
public val description: String? = null,
public val isArchived: Boolean? = null,
public val latestVersion: String,
public val nextVersion: String,
public val properties: Map? = null,
public val provisioningState: String,
public val tags: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.machinelearningservices.outputs.EnvironmentContainerResponse): EnvironmentContainerResponse = EnvironmentContainerResponse(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
isArchived = javaType.isArchived().map({ args0 -> args0 }).orElse(null),
latestVersion = javaType.latestVersion(),
nextVersion = javaType.nextVersion(),
properties = javaType.properties().map({ args0 -> args0.key.to(args0.value) }).toMap(),
provisioningState = javaType.provisioningState(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy