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

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",
});
import pulumi
import pulumi_gcp as gcp
default = gcp.healthcare.Dataset("default",
name="example-dataset",
location="us-central1",
time_zone="UTC")
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",
});
});
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
})
}
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());
}
}
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:

$ 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>