Show / Hide Table of Contents

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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
Dataset
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Healthcare
Assembly: Pulumi.Gcp.dll
Syntax
public class Dataset : CustomResource

Constructors

View Source

Dataset(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 Source

Location

The location for the Dataset.

Declaration
public Output<string> Location { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The resource name for the Dataset.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

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>
View Source

SelfLink

The fully qualified name of this dataset

Declaration
public Output<string> SelfLink { get; }
Property Value
Type Description
Output<System.String>
View Source

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 Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.