googleHealthcareDataset
A Healthcare dataset
is a toplevel logical grouping of dicomStores
, fhirStores
and hl7V2Stores
.
To get more information about Dataset, see:
- API documentation
- How-to Guides
- Creating a dataset
Example Usage - Healthcare Dataset Basic
/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as google from "./.gen/providers/google";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: google.
For a more precise conversion please use the --provider flag in convert.*/
new google.healthcareDataset.HealthcareDataset(this, "default", {
location: "us-central1",
name: "example-dataset",
time_zone: "UTC",
});
Argument Reference
The following arguments are supported:
-
name
- (Required) The resource name for the Dataset. -
location
- (Required) The location for the Dataset.
-
timeZone
- (Optional) 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. -
project
- (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Attributes Reference
In addition to the arguments listed above, the following computed attributes are exported:
-
id
- an identifier for the resource with formatprojects/{{project}}/locations/{{location}}/datasets/{{name}}
-
selfLink
- The fully qualified name of this dataset
Timeouts
This resource provides the following Timeouts configuration options:
create
- Default is 20 minutes.update
- Default is 20 minutes.delete
- Default is 20 minutes.
Import
Dataset can be imported using any of these accepted formats:
$ terraform import google_healthcare_dataset.default projects/{{project}}/locations/{{location}}/datasets/{{name}}
$ terraform import google_healthcare_dataset.default {{project}}/{{location}}/{{name}}
$ terraform import google_healthcare_dataset.default {{location}}/{{name}}
User Project Overrides
This resource supports User Project Overrides.