
com.pulumi.gcp.compute.kotlin.outputs.GetBackendServiceSecuritySetting.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 awsV4Authentications 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.
* @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 GetBackendServiceSecuritySetting(
public val awsV4Authentications: List,
public val clientTlsPolicy: String,
public val subjectAltNames: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetBackendServiceSecuritySetting): GetBackendServiceSecuritySetting = GetBackendServiceSecuritySetting(
awsV4Authentications = javaType.awsV4Authentications().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.compute.kotlin.outputs.GetBackendServiceSecuritySettingAwsV4Authentication.Companion.toKotlin(args0)
})
}),
clientTlsPolicy = javaType.clientTlsPolicy(),
subjectAltNames = javaType.subjectAltNames().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy