Class: Google::Apis::HealthcareV1::RollbackFhirResourceFilteringFields
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::HealthcareV1::RollbackFhirResourceFilteringFields
 
 
- 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
- 
  
    
      #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.
      4362 4363 4364  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4362 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#metadata_filter ⇒ String
Optional. A filter expression that matches data in the Resource.meta element.
Supports all filters in AIP-160 except the "has"
(:) operator. Supports the following custom functions: * tag("") = "" for
tag filtering. * extension_value_ts("") = for filtering extensions with a
timestamp, where `is a Unix timestamp. Supports the>,<,<=,>=,
and!=comparison operators.
Corresponds to the JSON propertymetadataFilter`
      4355 4356 4357  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4355 def @metadata_filter end  | 
  
#operation_ids ⇒ Array<Fixnum>
Optional. A list of operation IDs to roll back.
Corresponds to the JSON property operationIds
      4360 4361 4362  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4360 def operation_ids @operation_ids end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4367 4368 4369 4370  | 
    
      # File 'lib/google/apis/healthcare_v1/classes.rb', line 4367 def update!(**args) @metadata_filter = args[:metadata_filter] if args.key?(:metadata_filter) @operation_ids = args[:operation_ids] if args.key?(:operation_ids) end  |