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

com.pulumi.azure.containerapp.kotlin.outputs.GetEnvironmentCertificateResult.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerapp.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map

/**
 * A collection of values returned by getEnvironmentCertificate.
 * @property containerAppEnvironmentId
 * @property expirationDate The expiration date for the Certificate.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property issueDate The date of issue for the Certificate.
 * @property issuer The Certificate Issuer.
 * @property name
 * @property subjectName The Subject Name for the Certificate.
 * @property tags A mapping of tags assigned to the resource.
 * @property thumbprint The Thumbprint of the Certificate.
 */
public data class GetEnvironmentCertificateResult(
    public val containerAppEnvironmentId: String,
    public val expirationDate: String,
    public val id: String,
    public val issueDate: String,
    public val issuer: String,
    public val name: String,
    public val subjectName: String,
    public val tags: Map,
    public val thumbprint: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerapp.outputs.GetEnvironmentCertificateResult): GetEnvironmentCertificateResult = GetEnvironmentCertificateResult(
            containerAppEnvironmentId = javaType.containerAppEnvironmentId(),
            expirationDate = javaType.expirationDate(),
            id = javaType.id(),
            issueDate = javaType.issueDate(),
            issuer = javaType.issuer(),
            name = javaType.name(),
            subjectName = javaType.subjectName(),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            thumbprint = javaType.thumbprint(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy