Dataset

class Dataset : KotlinCustomResource

A Healthcare Dataset is a toplevel logical grouping of dicomStores, fhirStores and hl7V2Stores. To get more information about Dataset, see:

Example Usage

Healthcare Dataset Basic

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()
.location("us-central1")
.timeZone("UTC")
.build());
}
}

Import

Dataset can be imported using any of these accepted formats

$ pulumi import gcp:healthcare/dataset:Dataset default projects/{{project}}/locations/{{location}}/datasets/{{name}}
$ pulumi import gcp:healthcare/dataset:Dataset default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:healthcare/dataset:Dataset default {{location}}/{{name}}

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

The location for the Dataset.

Link copied to clipboard
val name: Output<String>

The resource name for the Dataset.

Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val selfLink: Output<String>

The fully qualified name of this dataset

Link copied to clipboard
val timeZone: Output<String>

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.

Link copied to clipboard
val urn: Output<String>