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

com.pulumi.azure.blueprint.kotlin.outputs.GetPublishedVersionResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.blueprint.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getPublishedVersion.
 * @property blueprintName
 * @property description The description of the Blueprint Published Version
 * @property displayName The display name of the Blueprint Published Version
 * @property id The provider-assigned unique ID for this managed resource.
 * @property lastModified
 * @property scopeId
 * @property targetScope The target scope
 * @property timeCreated
 * @property type The type of the Blueprint
 * @property version
 */
public data class GetPublishedVersionResult(
    public val blueprintName: String,
    public val description: String,
    public val displayName: String,
    public val id: String,
    public val lastModified: String,
    public val scopeId: String,
    public val targetScope: String,
    public val timeCreated: String,
    public val type: String,
    public val version: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.blueprint.outputs.GetPublishedVersionResult):
            GetPublishedVersionResult = GetPublishedVersionResult(
            blueprintName = javaType.blueprintName(),
            description = javaType.description(),
            displayName = javaType.displayName(),
            id = javaType.id(),
            lastModified = javaType.lastModified(),
            scopeId = javaType.scopeId(),
            targetScope = javaType.targetScope(),
            timeCreated = javaType.timeCreated(),
            type = javaType.type(),
            version = javaType.version(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy