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.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
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/v7/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
* ```
*
* ## 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 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 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()
.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 location: Output? = null
private var name: Output? = null
private var project: Output? = null
private var timeZone: Output? = null
/**
* @param value The location for the Dataset.
* - - -
*/
@JvmName("gilpqwcnywbxhpxd")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value The resource name for the Dataset.
*/
@JvmName("ktybqkltgfbrbmdj")
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("hatajfodldtsdjig")
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("ayampfjamnwcbtlp")
public suspend fun timeZone(`value`: Output) {
this.timeZone = value
}
/**
* @param value The location for the Dataset.
* - - -
*/
@JvmName("qsefdkkjuvugfxxo")
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("ednpwljijknfitcq")
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("rifhbaxprdotxwcg")
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("ksoyksgcvwnbeqkf")
public suspend fun timeZone(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timeZone = mapped
}
internal fun build(): DatasetArgs = DatasetArgs(
location = location,
name = name,
project = project,
timeZone = timeZone,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy