com.pulumi.gcp.healthcare.kotlin.inputs.GetFhirStoreIamPolicyPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.healthcare.kotlin.inputs
import com.pulumi.gcp.healthcare.inputs.GetFhirStoreIamPolicyPlainArgs.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 getFhirStoreIamPolicy.
* @property fhirStoreId The FHIR store ID, in the form
* `{project_id}/{location_name}/{dataset_name}/{fhir_store_name}` or
* `{location_name}/{dataset_name}/{fhir_store_name}`. In the second form, the provider's
* project setting will be used as a fallback.
*/
public data class GetFhirStoreIamPolicyPlainArgs(
public val fhirStoreId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.healthcare.inputs.GetFhirStoreIamPolicyPlainArgs =
com.pulumi.gcp.healthcare.inputs.GetFhirStoreIamPolicyPlainArgs.builder()
.fhirStoreId(fhirStoreId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetFhirStoreIamPolicyPlainArgs].
*/
@PulumiTagMarker
public class GetFhirStoreIamPolicyPlainArgsBuilder internal constructor() {
private var fhirStoreId: String? = null
/**
* @param value The FHIR store ID, in the form
* `{project_id}/{location_name}/{dataset_name}/{fhir_store_name}` or
* `{location_name}/{dataset_name}/{fhir_store_name}`. In the second form, the provider's
* project setting will be used as a fallback.
*/
@JvmName("byqqlphhonbrdesu")
public suspend fun fhirStoreId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.fhirStoreId = mapped
}
internal fun build(): GetFhirStoreIamPolicyPlainArgs = GetFhirStoreIamPolicyPlainArgs(
fhirStoreId = fhirStoreId ?: throw PulumiNullFieldException("fhirStoreId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy