Class Dataset
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
using Pulumi;
using Gcp = Pulumi.Gcp;
class MyStack : Stack
{
public MyStack()
{
var @default = new Gcp.Healthcare.Dataset("default", new Gcp.Healthcare.DatasetArgs
{
Location = "us-central1",
TimeZone = "UTC",
});
}
}
Inherited Members
Namespace: Pulumi.Gcp.Healthcare
Assembly: Pulumi.Gcp.dll
Syntax
public class Dataset : CustomResource
Constructors
View SourceDataset(String, DatasetArgs, CustomResourceOptions)
Create a Dataset resource with the given unique name, arguments, and options.
Declaration
public Dataset(string name, DatasetArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| DatasetArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceLocation
The location for the Dataset.
Declaration
public Output<string> Location { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Name
The resource name for the Dataset.
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Project
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Declaration
public Output<string> Project { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
SelfLink
The fully qualified name of this dataset
Declaration
public Output<string> SelfLink { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
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.
Declaration
public Output<string> TimeZone { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, DatasetState, CustomResourceOptions)
Get an existing Dataset resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Dataset Get(string name, Input<string> id, DatasetState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| DatasetState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Dataset |