
com.pulumi.gcp.looker.kotlin.outputs.InstancePscConfig.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.looker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property allowedVpcs List of VPCs that are allowed ingress into the Looker instance.
* @property lookerServiceAttachmentUri (Output)
* URI of the Looker service attachment.
* @property serviceAttachments List of egress service attachment configurations.
* Structure is documented below.
*/
public data class InstancePscConfig(
public val allowedVpcs: List? = null,
public val lookerServiceAttachmentUri: String? = null,
public val serviceAttachments: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.looker.outputs.InstancePscConfig): InstancePscConfig = InstancePscConfig(
allowedVpcs = javaType.allowedVpcs().map({ args0 -> args0 }),
lookerServiceAttachmentUri = javaType.lookerServiceAttachmentUri().map({ args0 ->
args0
}).orElse(null),
serviceAttachments = javaType.serviceAttachments().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.looker.kotlin.outputs.InstancePscConfigServiceAttachment.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy