DatasetArgs

data class DatasetArgs(val datasetId: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<DatasetArgs>

Creates a new health dataset. Results are returned through the Operation interface which returns either an Operation.response which contains a Dataset or Operation.error. The metadata field type is OperationMetadata.

Constructors

Link copied to clipboard
fun DatasetArgs(datasetId: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null, timeZone: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): DatasetArgs

Properties

Link copied to clipboard
val datasetId: Output<String>? = null

The ID of the dataset that is being created. The string must match the following regex: [\p{L}\p{N}_\-\&#46;]{1,256}.

Link copied to clipboard
val location: Output<String>? = null
Link copied to clipboard
val name: Output<String>? = null

Resource name of the dataset, of the form projects/{project_id}/locations/{location_id}/datasets/{dataset_id}.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val timeZone: Output<String>? = null

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, such as HL7 messages, where no explicit timezone is specified.