Class: Google::Apis::HealthcareV1::RollbackFhirResourcesRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::RollbackFhirResourcesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Instance Attribute Summary collapse
-
#change_type ⇒ String
Optional.
-
#exclude_rollbacks ⇒ Boolean
(also: #exclude_rollbacks?)
Optional.
-
#filtering_fields ⇒ Google::Apis::HealthcareV1::RollbackFhirResourceFilteringFields
Optional.
-
#force ⇒ Boolean
(also: #force?)
Optional.
-
#input_gcs_object ⇒ String
Optional.
-
#result_gcs_bucket ⇒ String
Required.
-
#rollback_time ⇒ String
Required.
-
#type ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RollbackFhirResourcesRequest
constructor
A new instance of RollbackFhirResourcesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RollbackFhirResourcesRequest
Returns a new instance of RollbackFhirResourcesRequest.
4389 4390 4391 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4389 def initialize(**args) update!(**args) end |
Instance Attribute Details
#change_type ⇒ String
Optional. CREATE/UPDATE/DELETE/ALL for reverting all txns of a certain type.
Corresponds to the JSON property changeType
4349 4350 4351 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4349 def change_type @change_type end |
#exclude_rollbacks ⇒ Boolean Also known as: exclude_rollbacks?
Optional. Specifies whether to exclude earlier rollbacks.
Corresponds to the JSON property excludeRollbacks
4354 4355 4356 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4354 def exclude_rollbacks @exclude_rollbacks end |
#filtering_fields ⇒ Google::Apis::HealthcareV1::RollbackFhirResourceFilteringFields
Optional. Parameters for filtering resources
Corresponds to the JSON property filteringFields
4360 4361 4362 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4360 def filtering_fields @filtering_fields end |
#force ⇒ Boolean Also known as: force?
Optional. When enabled, changes will be reverted without explicit confirmation
Corresponds to the JSON property force
4365 4366 4367 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4365 def force @force end |
#input_gcs_object ⇒ String
Optional. Cloud Storage object containing list of resourceType
/resourceId
lines, identifying resources to be reverted
Corresponds to the JSON property inputGcsObject
4372 4373 4374 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4372 def input_gcs_object @input_gcs_object end |
#result_gcs_bucket ⇒ String
Required. Bucket to deposit result
Corresponds to the JSON property resultGcsBucket
4377 4378 4379 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4377 def result_gcs_bucket @result_gcs_bucket end |
#rollback_time ⇒ String
Required. Time point to rollback to.
Corresponds to the JSON property rollbackTime
4382 4383 4384 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4382 def rollback_time @rollback_time end |
#type ⇒ Array<String>
Optional. If specified, revert only resources of these types
Corresponds to the JSON property type
4387 4388 4389 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4387 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 4394 def update!(**args) @change_type = args[:change_type] if args.key?(:change_type) @exclude_rollbacks = args[:exclude_rollbacks] if args.key?(:exclude_rollbacks) @filtering_fields = args[:filtering_fields] if args.key?(:filtering_fields) @force = args[:force] if args.key?(:force) @input_gcs_object = args[:input_gcs_object] if args.key?(:input_gcs_object) @result_gcs_bucket = args[:result_gcs_bucket] if args.key?(:result_gcs_bucket) @rollback_time = args[:rollback_time] if args.key?(:rollback_time) @type = args[:type] if args.key?(:type) end |