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

com.pulumi.gcp.healthcare.kotlin.inputs.GetDicomStoreIamPolicyPlainArgs.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: 8.20.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.healthcare.kotlin.inputs

import com.pulumi.gcp.healthcare.inputs.GetDicomStoreIamPolicyPlainArgs.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 getDicomStoreIamPolicy.
 * @property dicomStoreId The DICOM store ID, in the form
 * `{project_id}/{location_name}/{dataset_name}/{dicom_store_name}` or
 * `{location_name}/{dataset_name}/{dicom_store_name}`. In the second form, the provider's
 * project setting will be used as a fallback.
 */
public data class GetDicomStoreIamPolicyPlainArgs(
    public val dicomStoreId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.healthcare.inputs.GetDicomStoreIamPolicyPlainArgs =
        com.pulumi.gcp.healthcare.inputs.GetDicomStoreIamPolicyPlainArgs.builder()
            .dicomStoreId(dicomStoreId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetDicomStoreIamPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetDicomStoreIamPolicyPlainArgsBuilder internal constructor() {
    private var dicomStoreId: String? = null

    /**
     * @param value The DICOM store ID, in the form
     * `{project_id}/{location_name}/{dataset_name}/{dicom_store_name}` or
     * `{location_name}/{dataset_name}/{dicom_store_name}`. In the second form, the provider's
     * project setting will be used as a fallback.
     */
    @JvmName("ccupwsfsbvequode")
    public suspend fun dicomStoreId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.dicomStoreId = mapped
    }

    internal fun build(): GetDicomStoreIamPolicyPlainArgs = GetDicomStoreIamPolicyPlainArgs(
        dicomStoreId = dicomStoreId ?: throw PulumiNullFieldException("dicomStoreId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy