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

com.pulumi.azurenative.batch.kotlin.enums.CertificateStoreLocation.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.batch.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * The default value is currentUser. This property is applicable only for pools configured with Windows nodes (that is, created with cloudServiceConfiguration, or with virtualMachineConfiguration using a Windows image reference). For Linux compute nodes, the certificates are stored in a directory inside the task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and certificates are placed in that directory.
 */
public enum class CertificateStoreLocation(
    public val javaValue: com.pulumi.azurenative.batch.enums.CertificateStoreLocation,
) : ConvertibleToJava {
    /**
     * Certificates should be installed to the CurrentUser certificate store.
     */
    CurrentUser(com.pulumi.azurenative.batch.enums.CertificateStoreLocation.CurrentUser),

    /**
     * Certificates should be installed to the LocalMachine certificate store.
     */
    LocalMachine(com.pulumi.azurenative.batch.enums.CertificateStoreLocation.LocalMachine),
    ;

    override fun toJava(): com.pulumi.azurenative.batch.enums.CertificateStoreLocation = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.batch.enums.CertificateStoreLocation): CertificateStoreLocation =
            CertificateStoreLocation.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy