![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.management.kotlin.outputs.GetGroupTemplateDeploymentResult.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.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