![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.compute.kotlin.outputs.BackendServiceSecuritySettings.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.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property awsV4Authentication The configuration needed to generate a signature for access to private storage buckets that support AWS's Signature Version 4 for authentication.
* Allowed only for INTERNET_IP_PORT and INTERNET_FQDN_PORT NEG backends.
* Structure is documented below.
* The `aws_v4_authentication` block supports:
* @property clientTlsPolicy ClientTlsPolicy is a resource that specifies how a client should authenticate
* connections to backends of a service. This resource itself does not affect
* configuration unless it is attached to a backend service resource.
* @property subjectAltNames A list of alternate names to verify the subject identity in the certificate.
* If specified, the client will verify that the server certificate's subject
* alt name matches one of the specified values.
*/
public data class BackendServiceSecuritySettings(
public val awsV4Authentication: BackendServiceSecuritySettingsAwsV4Authentication? = null,
public val clientTlsPolicy: String? = null,
public val subjectAltNames: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.BackendServiceSecuritySettings): BackendServiceSecuritySettings = BackendServiceSecuritySettings(
awsV4Authentication = javaType.awsV4Authentication().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.compute.kotlin.outputs.BackendServiceSecuritySettingsAwsV4Authentication.Companion.toKotlin(args0)
})
}).orElse(null),
clientTlsPolicy = javaType.clientTlsPolicy().map({ args0 -> args0 }).orElse(null),
subjectAltNames = javaType.subjectAltNames().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy