com.pulumi.googlenative.compute.beta.kotlin.outputs.PublicDelegatedPrefixPublicDelegatedSubPrefixResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.beta.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* Represents a sub PublicDelegatedPrefix.
* @property delegateeProject Name of the project scoping this PublicDelegatedSubPrefix.
* @property description An optional description of this resource. Provide this property when you create the resource.
* @property ipCidrRange The IPv4 address range, in CIDR format, represented by this sub public delegated prefix.
* @property isAddress Whether the sub prefix is delegated to create Address resources in the delegatee project.
* @property name The name of the sub public delegated prefix.
* @property region The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
* @property status The status of the sub public delegated prefix.
*/
public data class PublicDelegatedPrefixPublicDelegatedSubPrefixResponse(
public val delegateeProject: String,
public val description: String,
public val ipCidrRange: String,
public val isAddress: Boolean,
public val name: String,
public val region: String,
public val status: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.beta.outputs.PublicDelegatedPrefixPublicDelegatedSubPrefixResponse): PublicDelegatedPrefixPublicDelegatedSubPrefixResponse =
PublicDelegatedPrefixPublicDelegatedSubPrefixResponse(
delegateeProject = javaType.delegateeProject(),
description = javaType.description(),
ipCidrRange = javaType.ipCidrRange(),
isAddress = javaType.isAddress(),
name = javaType.name(),
region = javaType.region(),
status = javaType.status(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy