Class: Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::IndexConfigDelta
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::IndexConfigDelta
 
 
- Extended by:
 - Protobuf::MessageExts::ClassMethods
 
- Includes:
 - Protobuf::MessageExts
 
- Defined in:
 - proto_docs/google/firestore/admin/v1/operation.rb
 
Overview
Information about an index configuration change.
Defined Under Namespace
Modules: ChangeType
Instance Attribute Summary collapse
- 
  
    
      #change_type  ⇒ ::Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::IndexConfigDelta::ChangeType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies how the index is changing.
 - 
  
    
      #index  ⇒ ::Google::Cloud::Firestore::Admin::V1::Index 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The index being changed.
 
Instance Attribute Details
#change_type ⇒ ::Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::IndexConfigDelta::ChangeType
Returns Specifies how the index is changing.
      95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110  | 
    
      # File 'proto_docs/google/firestore/admin/v1/operation.rb', line 95 class IndexConfigDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how the index is changing. module ChangeType # The type of change is not specified or known. CHANGE_TYPE_UNSPECIFIED = 0 # The single field index is being added. ADD = 1 # The single field index is being removed. REMOVE = 2 end end  | 
  
#index ⇒ ::Google::Cloud::Firestore::Admin::V1::Index
Returns The index being changed.
      95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110  | 
    
      # File 'proto_docs/google/firestore/admin/v1/operation.rb', line 95 class IndexConfigDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how the index is changing. module ChangeType # The type of change is not specified or known. CHANGE_TYPE_UNSPECIFIED = 0 # The single field index is being added. ADD = 1 # The single field index is being removed. REMOVE = 2 end end  |