![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.batch.kotlin.outputs.GetPoolCertificate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.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