com.pulumi.azure.containerservice.kotlin.outputs.GetGroupResult.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getGroup.
* @property fqdn The FQDN of the Container Group instance derived from `dns_name_label`.
* @property id The provider-assigned unique ID for this managed resource.
* @property identities A `identity` block as defined below.
* @property ipAddress The IP address allocated to the Container Group instance.
* @property location The Azure Region where the Container Group instance exists.
* @property name
* @property resourceGroupName
* @property subnetIds The subnet resource IDs for a container group.
* @property tags A mapping of tags assigned to the Container Group instance.
* @property zones A list of Availability Zones in which this Container Group is located.
*/
public data class GetGroupResult(
public val fqdn: String,
public val id: String,
public val identities: List,
public val ipAddress: String,
public val location: String,
public val name: String,
public val resourceGroupName: String,
public val subnetIds: List,
public val tags: Map,
public val zones: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetGroupResult):
GetGroupResult = GetGroupResult(
fqdn = javaType.fqdn(),
id = javaType.id(),
identities = javaType.identities().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.containerservice.kotlin.outputs.GetGroupIdentity.Companion.toKotlin(args0)
})
}),
ipAddress = javaType.ipAddress(),
location = javaType.location(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
zones = javaType.zones().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy