com.pulumi.gcp.healthcare.kotlin.DatasetArgs.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
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.healthcare.DatasetArgs.builder
import com.pulumi.gcp.healthcare.kotlin.inputs.DatasetEncryptionSpecArgs
import com.pulumi.gcp.healthcare.kotlin.inputs.DatasetEncryptionSpecArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* A Healthcare `Dataset` is a toplevel logical grouping of `dicomStores`, `fhirStores` and `hl7V2Stores`.
* To get more information about Dataset, see:
* * [API documentation](https://cloud.google.com/healthcare/docs/reference/rest/v1/projects.locations.datasets)
* * How-to Guides
* * [Creating a dataset](https://cloud.google.com/healthcare/docs/how-tos/datasets)
* ## Example Usage
* ### Healthcare Dataset Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.healthcare.Dataset("default", {
* name: "example-dataset",
* location: "us-central1",
* timeZone: "UTC",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.healthcare.Dataset("default",
* name="example-dataset",
* location="us-central1",
* time_zone="UTC")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.Healthcare.Dataset("default", new()
* {
* Name = "example-dataset",
* Location = "us-central1",
* TimeZone = "UTC",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/healthcare"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := healthcare.NewDataset(ctx, "default", &healthcare.DatasetArgs{
* Name: pulumi.String("example-dataset"),
* Location: pulumi.String("us-central1"),
* TimeZone: pulumi.String("UTC"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.healthcare.Dataset;
* import com.pulumi.gcp.healthcare.DatasetArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var default_ = new Dataset("default", DatasetArgs.builder()
* .name("example-dataset")
* .location("us-central1")
* .timeZone("UTC")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:healthcare:Dataset
* properties:
* name: example-dataset
* location: us-central1
* timeZone: UTC
* ```
*
* ### Healthcare Dataset Cmek
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const project = gcp.organizations.getProject({});
* const keyRing = new gcp.kms.KeyRing("key_ring", {
* name: "example-keyring",
* location: "us-central1",
* });
* const cryptoKey = new gcp.kms.CryptoKey("crypto_key", {
* name: "example-key",
* keyRing: keyRing.id,
* purpose: "ENCRYPT_DECRYPT",
* });
* const healthcareCmekKeyuser = new gcp.kms.CryptoKeyIAMBinding("healthcare_cmek_keyuser", {
* cryptoKeyId: cryptoKey.id,
* role: "roles/cloudkms.cryptoKeyEncrypterDecrypter",
* members: [project.then(project => `serviceAccount:service-${project.number}@gcp-sa-healthcare.iam.gserviceaccount.com`)],
* });
* const _default = new gcp.healthcare.Dataset("default", {
* name: "example-dataset",
* location: "us-central1",
* timeZone: "UTC",
* encryptionSpec: {
* kmsKeyName: cryptoKey.id,
* },
* }, {
* dependsOn: [healthcareCmekKeyuser],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* project = gcp.organizations.get_project()
* key_ring = gcp.kms.KeyRing("key_ring",
* name="example-keyring",
* location="us-central1")
* crypto_key = gcp.kms.CryptoKey("crypto_key",
* name="example-key",
* key_ring=key_ring.id,
* purpose="ENCRYPT_DECRYPT")
* healthcare_cmek_keyuser = gcp.kms.CryptoKeyIAMBinding("healthcare_cmek_keyuser",
* crypto_key_id=crypto_key.id,
* role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
* members=[f"serviceAccount:service-{project.number}@gcp-sa-healthcare.iam.gserviceaccount.com"])
* default = gcp.healthcare.Dataset("default",
* name="example-dataset",
* location="us-central1",
* time_zone="UTC",
* encryption_spec={
* "kms_key_name": crypto_key.id,
* },
* opts = pulumi.ResourceOptions(depends_on=[healthcare_cmek_keyuser]))
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var project = Gcp.Organizations.GetProject.Invoke();
* var keyRing = new Gcp.Kms.KeyRing("key_ring", new()
* {
* Name = "example-keyring",
* Location = "us-central1",
* });
* var cryptoKey = new Gcp.Kms.CryptoKey("crypto_key", new()
* {
* Name = "example-key",
* KeyRing = keyRing.Id,
* Purpose = "ENCRYPT_DECRYPT",
* });
* var healthcareCmekKeyuser = new Gcp.Kms.CryptoKeyIAMBinding("healthcare_cmek_keyuser", new()
* {
* CryptoKeyId = cryptoKey.Id,
* Role = "roles/cloudkms.cryptoKeyEncrypterDecrypter",
* Members = new[]
* {
* $"serviceAccount:service-{project.Apply(getProjectResult => getProjectResult.Number)}@gcp-sa-healthcare.iam.gserviceaccount.com",
* },
* });
* var @default = new Gcp.Healthcare.Dataset("default", new()
* {
* Name = "example-dataset",
* Location = "us-central1",
* TimeZone = "UTC",
* EncryptionSpec = new Gcp.Healthcare.Inputs.DatasetEncryptionSpecArgs
* {
* KmsKeyName = cryptoKey.Id,
* },
* }, new CustomResourceOptions
* {
* DependsOn =
* {
* healthcareCmekKeyuser,
* },
* });
* });
* ```
* ```go
* package main
* import (
* "fmt"
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/healthcare"
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/kms"
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* project, err := organizations.LookupProject(ctx, &organizations.LookupProjectArgs{}, nil)
* if err != nil {
* return err
* }
* keyRing, err := kms.NewKeyRing(ctx, "key_ring", &kms.KeyRingArgs{
* Name: pulumi.String("example-keyring"),
* Location: pulumi.String("us-central1"),
* })
* if err != nil {
* return err
* }
* cryptoKey, err := kms.NewCryptoKey(ctx, "crypto_key", &kms.CryptoKeyArgs{
* Name: pulumi.String("example-key"),
* KeyRing: keyRing.ID(),
* Purpose: pulumi.String("ENCRYPT_DECRYPT"),
* })
* if err != nil {
* return err
* }
* healthcareCmekKeyuser, err := kms.NewCryptoKeyIAMBinding(ctx, "healthcare_cmek_keyuser", &kms.CryptoKeyIAMBindingArgs{
* CryptoKeyId: cryptoKey.ID(),
* Role: pulumi.String("roles/cloudkms.cryptoKeyEncrypterDecrypter"),
* Members: pulumi.StringArray{
* pulumi.Sprintf("serviceAccount:service-%[email protected]", project.Number),
* },
* })
* if err != nil {
* return err
* }
* _, err = healthcare.NewDataset(ctx, "default", &healthcare.DatasetArgs{
* Name: pulumi.String("example-dataset"),
* Location: pulumi.String("us-central1"),
* TimeZone: pulumi.String("UTC"),
* EncryptionSpec: &healthcare.DatasetEncryptionSpecArgs{
* KmsKeyName: cryptoKey.ID(),
* },
* }, pulumi.DependsOn([]pulumi.Resource{
* healthcareCmekKeyuser,
* }))
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.organizations.OrganizationsFunctions;
* import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
* import com.pulumi.gcp.kms.KeyRing;
* import com.pulumi.gcp.kms.KeyRingArgs;
* import com.pulumi.gcp.kms.CryptoKey;
* import com.pulumi.gcp.kms.CryptoKeyArgs;
* import com.pulumi.gcp.kms.CryptoKeyIAMBinding;
* import com.pulumi.gcp.kms.CryptoKeyIAMBindingArgs;
* import com.pulumi.gcp.healthcare.Dataset;
* import com.pulumi.gcp.healthcare.DatasetArgs;
* import com.pulumi.gcp.healthcare.inputs.DatasetEncryptionSpecArgs;
* import com.pulumi.resources.CustomResourceOptions;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* final var project = OrganizationsFunctions.getProject();
* var keyRing = new KeyRing("keyRing", KeyRingArgs.builder()
* .name("example-keyring")
* .location("us-central1")
* .build());
* var cryptoKey = new CryptoKey("cryptoKey", CryptoKeyArgs.builder()
* .name("example-key")
* .keyRing(keyRing.id())
* .purpose("ENCRYPT_DECRYPT")
* .build());
* var healthcareCmekKeyuser = new CryptoKeyIAMBinding("healthcareCmekKeyuser", CryptoKeyIAMBindingArgs.builder()
* .cryptoKeyId(cryptoKey.id())
* .role("roles/cloudkms.cryptoKeyEncrypterDecrypter")
* .members(String.format("serviceAccount:service-%[email protected]", project.applyValue(getProjectResult -> getProjectResult.number())))
* .build());
* var default_ = new Dataset("default", DatasetArgs.builder()
* .name("example-dataset")
* .location("us-central1")
* .timeZone("UTC")
* .encryptionSpec(DatasetEncryptionSpecArgs.builder()
* .kmsKeyName(cryptoKey.id())
* .build())
* .build(), CustomResourceOptions.builder()
* .dependsOn(healthcareCmekKeyuser)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:healthcare:Dataset
* properties:
* name: example-dataset
* location: us-central1
* timeZone: UTC
* encryptionSpec:
* kmsKeyName: ${cryptoKey.id}
* options:
* dependsOn:
* - ${healthcareCmekKeyuser}
* cryptoKey:
* type: gcp:kms:CryptoKey
* name: crypto_key
* properties:
* name: example-key
* keyRing: ${keyRing.id}
* purpose: ENCRYPT_DECRYPT
* keyRing:
* type: gcp:kms:KeyRing
* name: key_ring
* properties:
* name: example-keyring
* location: us-central1
* healthcareCmekKeyuser:
* type: gcp:kms:CryptoKeyIAMBinding
* name: healthcare_cmek_keyuser
* properties:
* cryptoKeyId: ${cryptoKey.id}
* role: roles/cloudkms.cryptoKeyEncrypterDecrypter
* members:
* - serviceAccount:service-${project.number}@gcp-sa-healthcare.iam.gserviceaccount.com
* variables:
* project:
* fn::invoke:
* function: gcp:organizations:getProject
* arguments: {}
* ```
*
* ## Import
* Dataset can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/datasets/{{name}}`
* * `{{project}}/{{location}}/{{name}}`
* * `{{location}}/{{name}}`
* When using the `pulumi import` command, Dataset can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:healthcare/dataset:Dataset default projects/{{project}}/locations/{{location}}/datasets/{{name}}
* ```
* ```sh
* $ pulumi import gcp:healthcare/dataset:Dataset default {{project}}/{{location}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:healthcare/dataset:Dataset default {{location}}/{{name}}
* ```
* @property encryptionSpec A nested object resource.
* Structure is documented below.
* @property location The location for the Dataset.
* - - -
* @property name The resource name for the Dataset.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property timeZone The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
* "America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources
* (e.g., HL7 messages) where no explicit timezone is specified.
*/
public data class DatasetArgs(
public val encryptionSpec: Output? = null,
public val location: Output? = null,
public val name: Output? = null,
public val project: Output? = null,
public val timeZone: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.healthcare.DatasetArgs =
com.pulumi.gcp.healthcare.DatasetArgs.builder()
.encryptionSpec(encryptionSpec?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.location(location?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.timeZone(timeZone?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DatasetArgs].
*/
@PulumiTagMarker
public class DatasetArgsBuilder internal constructor() {
private var encryptionSpec: Output? = null
private var location: Output? = null
private var name: Output? = null
private var project: Output? = null
private var timeZone: Output? = null
/**
* @param value A nested object resource.
* Structure is documented below.
*/
@JvmName("jnbgwbibhoplaqca")
public suspend fun encryptionSpec(`value`: Output) {
this.encryptionSpec = value
}
/**
* @param value The location for the Dataset.
* - - -
*/
@JvmName("rkowyovqvjbradje")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value The resource name for the Dataset.
*/
@JvmName("wldqjnobguhctumw")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("rmekmtgeejtmrmus")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
* "America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources
* (e.g., HL7 messages) where no explicit timezone is specified.
*/
@JvmName("uxfxnctswrvjugam")
public suspend fun timeZone(`value`: Output) {
this.timeZone = value
}
/**
* @param value A nested object resource.
* Structure is documented below.
*/
@JvmName("wsytuthwvvjwhvdy")
public suspend fun encryptionSpec(`value`: DatasetEncryptionSpecArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.encryptionSpec = mapped
}
/**
* @param argument A nested object resource.
* Structure is documented below.
*/
@JvmName("cgcuuiqyexmymwni")
public suspend fun encryptionSpec(argument: suspend DatasetEncryptionSpecArgsBuilder.() -> Unit) {
val toBeMapped = DatasetEncryptionSpecArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.encryptionSpec = mapped
}
/**
* @param value The location for the Dataset.
* - - -
*/
@JvmName("lejlpjpchaphnkpk")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value The resource name for the Dataset.
*/
@JvmName("xmgoptqiexhxlhkw")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("uvfdpndsxhrhtndq")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
* "America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources
* (e.g., HL7 messages) where no explicit timezone is specified.
*/
@JvmName("vmlqybaavgkqlmdy")
public suspend fun timeZone(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timeZone = mapped
}
internal fun build(): DatasetArgs = DatasetArgs(
encryptionSpec = encryptionSpec,
location = location,
name = name,
project = project,
timeZone = timeZone,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy