Class: Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
Filters to select resources that need to be rolled back.
Instance Attribute Summary collapse
-
#metadata_filter ⇒ String
Optional.
-
#operation_ids ⇒ Array<Fixnum>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RollbackFhirResourceFilteringFields
constructor
A new instance of RollbackFhirResourceFilteringFields.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RollbackFhirResourceFilteringFields
Returns a new instance of RollbackFhirResourceFilteringFields.
6002 6003 6004 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6002 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata_filter ⇒ String
Optional. A string to use for filtering resource metadata. Complies with AIP-
160 except without the has operator. Additionally, supports 2 functions:
hastag("system") = "code" for tag filtering and extension_ts_value("uri") =
timestamp for filtering extensions with timestamp, which is given as a unix
timestamp. extension_ts_url can be used with >, <, <=, >=, != comparisons as
well.
Corresponds to the JSON property metadataFilter
5994 5995 5996 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5994 def @metadata_filter end |
#operation_ids ⇒ Array<Fixnum>
Optional. A list of operation IDs to roll back. Only changes made by these
operations will be rolled back.
Corresponds to the JSON property operationIds
6000 6001 6002 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6000 def operation_ids @operation_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6007 6008 6009 6010 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6007 def update!(**args) @metadata_filter = args[:metadata_filter] if args.key?(:metadata_filter) @operation_ids = args[:operation_ids] if args.key?(:operation_ids) end |