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

com.pulumi.azure.batch.kotlin.outputs.GetPoolCertificate.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.batch.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property id The fully qualified ID of the certificate installed on the pool.
 * @property storeLocation The location of the certificate store on the compute node into which the certificate is installed, either `CurrentUser` or `LocalMachine`.
 * @property storeName The name of the certificate store on the compute node into which the certificate is installed.
 * @property visibilities Which user accounts on the compute node have access to the private data of the certificate.
 */
public data class GetPoolCertificate(
    public val id: String,
    public val storeLocation: String,
    public val storeName: String,
    public val visibilities: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolCertificate): GetPoolCertificate = GetPoolCertificate(
            id = javaType.id(),
            storeLocation = javaType.storeLocation(),
            storeName = javaType.storeName(),
            visibilities = javaType.visibilities().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy