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

com.pulumi.azure.iot.kotlin.inputs.GetSharedAccessPolicyPlainArgs.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.iot.kotlin.inputs

import com.pulumi.azure.iot.inputs.GetSharedAccessPolicyPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getSharedAccessPolicy.
 * @property iothubName The name of the IoTHub to which this Shared Access Policy belongs.
 * @property name Specifies the name of the IotHub Shared Access Policy resource.
 * @property resourceGroupName The name of the resource group under which the IotHub Shared Access Policy resource has to be created.
 */
public data class GetSharedAccessPolicyPlainArgs(
    public val iothubName: String,
    public val name: String,
    public val resourceGroupName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.iot.inputs.GetSharedAccessPolicyPlainArgs =
        com.pulumi.azure.iot.inputs.GetSharedAccessPolicyPlainArgs.builder()
            .iothubName(iothubName.let({ args0 -> args0 }))
            .name(name.let({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetSharedAccessPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetSharedAccessPolicyPlainArgsBuilder internal constructor() {
    private var iothubName: String? = null

    private var name: String? = null

    private var resourceGroupName: String? = null

    /**
     * @param value The name of the IoTHub to which this Shared Access Policy belongs.
     */
    @JvmName("urylhdmepmcjaohk")
    public suspend fun iothubName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.iothubName = mapped
    }

    /**
     * @param value Specifies the name of the IotHub Shared Access Policy resource.
     */
    @JvmName("ngouaqsxqamhmmun")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.name = mapped
    }

    /**
     * @param value The name of the resource group under which the IotHub Shared Access Policy resource has to be created.
     */
    @JvmName("coroqdqmmowpgvym")
    public suspend fun resourceGroupName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.resourceGroupName = mapped
    }

    internal fun build(): GetSharedAccessPolicyPlainArgs = GetSharedAccessPolicyPlainArgs(
        iothubName = iothubName ?: throw PulumiNullFieldException("iothubName"),
        name = name ?: throw PulumiNullFieldException("name"),
        resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy