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

com.pulumi.azure.management.kotlin.outputs.GetGroupTemplateDeploymentResult.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.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.management.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getGroupTemplateDeployment.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property managementGroupId
 * @property name
 * @property outputContent The JSON Content of the Outputs of the ARM Template Deployment.
 */
public data class GetGroupTemplateDeploymentResult(
    public val id: String,
    public val managementGroupId: String,
    public val name: String,
    public val outputContent: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.management.outputs.GetGroupTemplateDeploymentResult): GetGroupTemplateDeploymentResult = GetGroupTemplateDeploymentResult(
            id = javaType.id(),
            managementGroupId = javaType.managementGroupId(),
            name = javaType.name(),
            outputContent = javaType.outputContent(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy