![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.blueprint.kotlin.outputs.GetDefinitionResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.blueprint.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getDefinition.
* @property description The description of the Blueprint Definition.
* @property displayName The display name of the Blueprint Definition.
* @property id The provider-assigned unique ID for this managed resource.
* @property lastModified The timestamp of when this last modification was saved to the Blueprint Definition.
* @property name
* @property scopeId
* @property targetScope The target scope.
* @property timeCreated The timestamp of when this Blueprint Definition was created.
* @property versions A list of versions published for this Blueprint Definition.
*/
public data class GetDefinitionResult(
public val description: String,
public val displayName: String,
public val id: String,
public val lastModified: String,
public val name: String,
public val scopeId: String,
public val targetScope: String,
public val timeCreated: String,
public val versions: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.blueprint.outputs.GetDefinitionResult): GetDefinitionResult = GetDefinitionResult(
description = javaType.description(),
displayName = javaType.displayName(),
id = javaType.id(),
lastModified = javaType.lastModified(),
name = javaType.name(),
scopeId = javaType.scopeId(),
targetScope = javaType.targetScope(),
timeCreated = javaType.timeCreated(),
versions = javaType.versions().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy