Class: Google::Apis::HealthcareV1beta1::ExportResourcesRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ExportResourcesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb
Overview
Request to export resources.
Instance Attribute Summary collapse
-
#_since ⇒ String
If provided, only resources updated after this time are exported.
-
#_type ⇒ String
String of comma-delimited FHIR resource types.
-
#bigquery_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination
The configuration for exporting to BigQuery.
-
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirGcsDestination
The configuration for exporting to Cloud Storage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportResourcesRequest
constructor
A new instance of ExportResourcesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportResourcesRequest
Returns a new instance of ExportResourcesRequest.
1762 1763 1764 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1762 def initialize(**args) update!(**args) end |
Instance Attribute Details
#_since ⇒ String
If provided, only resources updated after this time are exported. The time
uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz. For example, 2015-02-07T13:28:
17.239+02:00
or 2017-01-01T00:00:00Z
. The time must be specified to the
second and include a time zone.
Corresponds to the JSON property _since
1744 1745 1746 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1744 def _since @_since end |
#_type ⇒ String
String of comma-delimited FHIR resource types. If provided, only resources of
the specified resource type(s) are exported.
Corresponds to the JSON property _type
1750 1751 1752 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1750 def _type @_type end |
#bigquery_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination
The configuration for exporting to BigQuery.
Corresponds to the JSON property bigqueryDestination
1755 1756 1757 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1755 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirGcsDestination
The configuration for exporting to Cloud Storage.
Corresponds to the JSON property gcsDestination
1760 1761 1762 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1760 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1767 1768 1769 1770 1771 1772 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1767 def update!(**args) @_since = args[:_since] if args.key?(:_since) @_type = args[:_type] if args.key?(:_type) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |