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

com.pulumi.azure.nginx.kotlin.inputs.DeploymentLoggingStorageAccountArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.nginx.kotlin.inputs

import com.pulumi.azure.nginx.inputs.DeploymentLoggingStorageAccountArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property containerName Specify the container name in the Storage Account for logging.
 * @property name The name of the StorageAccount for NGINX Logging.
 */
public data class DeploymentLoggingStorageAccountArgs(
    public val containerName: Output? = null,
    public val name: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.nginx.inputs.DeploymentLoggingStorageAccountArgs =
        com.pulumi.azure.nginx.inputs.DeploymentLoggingStorageAccountArgs.builder()
            .containerName(containerName?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DeploymentLoggingStorageAccountArgs].
 */
@PulumiTagMarker
public class DeploymentLoggingStorageAccountArgsBuilder internal constructor() {
    private var containerName: Output? = null

    private var name: Output? = null

    /**
     * @param value Specify the container name in the Storage Account for logging.
     */
    @JvmName("olhthagqwwavqoei")
    public suspend fun containerName(`value`: Output) {
        this.containerName = value
    }

    /**
     * @param value The name of the StorageAccount for NGINX Logging.
     */
    @JvmName("dxgcyqtejdheogww")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Specify the container name in the Storage Account for logging.
     */
    @JvmName("bkeelhiqrcbdjnob")
    public suspend fun containerName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.containerName = mapped
    }

    /**
     * @param value The name of the StorageAccount for NGINX Logging.
     */
    @JvmName("rabxqkoxujwddqiq")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build(): DeploymentLoggingStorageAccountArgs = DeploymentLoggingStorageAccountArgs(
        containerName = containerName,
        name = name,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy