com.pulumi.gcp.compute.kotlin.outputs.InstanceReservationAffinitySpecificReservation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property key Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
* @property values Corresponds to the label values of a reservation resource.
*/
public data class InstanceReservationAffinitySpecificReservation(
public val key: String,
public val values: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.InstanceReservationAffinitySpecificReservation): InstanceReservationAffinitySpecificReservation =
InstanceReservationAffinitySpecificReservation(
key = javaType.key(),
values = javaType.values().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy