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

com.pulumi.gcp.compute.kotlin.outputs.GetInstanceGroupManagerStatefulInternalIp.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property deleteRule A value that prescribes what should happen to an associated static Address resource when a VM instance is permanently deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the IP when the VM is deleted, but do not delete the address resource. ON_PERMANENT_INSTANCE_DELETION will delete the stateful address when the VM is permanently deleted from the instance group. The default is NEVER.
 * @property interfaceName The network interface name
 */
public data class GetInstanceGroupManagerStatefulInternalIp(
    public val deleteRule: String,
    public val interfaceName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetInstanceGroupManagerStatefulInternalIp): GetInstanceGroupManagerStatefulInternalIp = GetInstanceGroupManagerStatefulInternalIp(
            deleteRule = javaType.deleteRule(),
            interfaceName = javaType.interfaceName(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy