
com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesNodePoolSnapshotResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getKubernetesNodePoolSnapshot.
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property resourceGroupName
* @property sourceNodePoolId The ID of the source Node Pool.
* @property tags
*/
public data class GetKubernetesNodePoolSnapshotResult(
public val id: String,
public val name: String,
public val resourceGroupName: String,
public val sourceNodePoolId: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesNodePoolSnapshotResult): GetKubernetesNodePoolSnapshotResult = GetKubernetesNodePoolSnapshotResult(
id = javaType.id(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
sourceNodePoolId = javaType.sourceNodePoolId(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy