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

com.pulumi.azure.network.kotlin.outputs.ApplicationGatewayAuthenticationCertificate.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property data The contents of the Authentication Certificate which should be used.
 * @property id The ID of the Rewrite Rule Set
 * @property name The Name of the Authentication Certificate to use.
 */
public data class ApplicationGatewayAuthenticationCertificate(
    public val `data`: String,
    public val id: String? = null,
    public val name: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.ApplicationGatewayAuthenticationCertificate): ApplicationGatewayAuthenticationCertificate = ApplicationGatewayAuthenticationCertificate(
            `data` = javaType.`data`(),
            id = javaType.id().map({ args0 -> args0 }).orElse(null),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy