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

com.pulumi.gcp.container.kotlin.outputs.ClusterAddonsConfigCloudrunConfig.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.container.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property disabled The status of the CloudRun addon. It is disabled by default. Set `disabled=false` to enable.
 * @property loadBalancerType The load balancer type of CloudRun ingress service. It is external load balancer by default.
 * Set `load_balancer_type=LOAD_BALANCER_TYPE_INTERNAL` to configure it as internal load balancer.
 */
public data class ClusterAddonsConfigCloudrunConfig(
    public val disabled: Boolean,
    public val loadBalancerType: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterAddonsConfigCloudrunConfig): ClusterAddonsConfigCloudrunConfig = ClusterAddonsConfigCloudrunConfig(
            disabled = javaType.disabled(),
            loadBalancerType = javaType.loadBalancerType().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy