com.pulumi.gcp.gkeonprem.kotlin.inputs.BareMetalClusterProxyArgs.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.gkeonprem.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterProxyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property noProxies A list of IPs, hostnames, and domains that should skip the proxy.
* Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
* @property uri Specifies the address of your proxy server.
* Examples: http://domain
* WARNING: Do not provide credentials in the format
* http://(username:password@)domain these will be rejected by the server.
*/
public data class BareMetalClusterProxyArgs(
public val noProxies: Output>? = null,
public val uri: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterProxyArgs =
com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterProxyArgs.builder()
.noProxies(noProxies?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.uri(uri.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BareMetalClusterProxyArgs].
*/
@PulumiTagMarker
public class BareMetalClusterProxyArgsBuilder internal constructor() {
private var noProxies: Output>? = null
private var uri: Output? = null
/**
* @param value A list of IPs, hostnames, and domains that should skip the proxy.
* Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
*/
@JvmName("tvljcetobutdejtc")
public suspend fun noProxies(`value`: Output>) {
this.noProxies = value
}
@JvmName("kemlrxqtqfhsgjnx")
public suspend fun noProxies(vararg values: Output) {
this.noProxies = Output.all(values.asList())
}
/**
* @param values A list of IPs, hostnames, and domains that should skip the proxy.
* Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
*/
@JvmName("ppnelbbgwsbcmsps")
public suspend fun noProxies(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy