Class: Google::Apis::GkehubV1::ConfigManagementSyncState
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::ConfigManagementSyncState
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb 
Overview
State indicating an ACM's progress syncing configurations to a cluster
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Sync status code Corresponds to the JSON property
code. - 
  
    
      #errors  ⇒ Array<Google::Apis::GkehubV1::ConfigManagementSyncError> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of errors resulting from problematic configs.
 - 
  
    
      #import_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token indicating the state of the importer.
 - 
  
    
      #last_sync  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Deprecated: use last_sync_time instead.
 - 
  
    
      #last_sync_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Timestamp type of when ACM last successfully synced the repo Corresponds to the JSON property
lastSyncTime. - 
  
    
      #source_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token indicating the state of the repo.
 - 
  
    
      #sync_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token indicating the state of the syncer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConfigManagementSyncState 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ConfigManagementSyncState.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ConfigManagementSyncState
Returns a new instance of ConfigManagementSyncState.
      1821 1822 1823  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1821 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#code ⇒ String
Sync status code
Corresponds to the JSON property code
      1785 1786 1787  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1785 def code @code end  | 
  
#errors ⇒ Array<Google::Apis::GkehubV1::ConfigManagementSyncError>
A list of errors resulting from problematic configs. This list will be
truncated after 100 errors, although it is unlikely for that many errors to
simultaneously exist.
Corresponds to the JSON property errors
      1792 1793 1794  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1792 def errors @errors end  | 
  
#import_token ⇒ String
Token indicating the state of the importer.
Corresponds to the JSON property importToken
      1797 1798 1799  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1797 def import_token @import_token end  | 
  
#last_sync ⇒ String
Deprecated: use last_sync_time instead. Timestamp of when ACM last
successfully synced the repo The time format is specified in https://golang.
org/pkg/time/#Time.String
Corresponds to the JSON property lastSync
      1804 1805 1806  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1804 def last_sync @last_sync end  | 
  
#last_sync_time ⇒ String
Timestamp type of when ACM last successfully synced the repo
Corresponds to the JSON property lastSyncTime
      1809 1810 1811  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1809 def last_sync_time @last_sync_time end  | 
  
#source_token ⇒ String
Token indicating the state of the repo.
Corresponds to the JSON property sourceToken
      1814 1815 1816  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1814 def source_token @source_token end  | 
  
#sync_token ⇒ String
Token indicating the state of the syncer.
Corresponds to the JSON property syncToken
      1819 1820 1821  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1819 def sync_token @sync_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1826 1827 1828 1829 1830 1831 1832 1833 1834  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1826 def update!(**args) @code = args[:code] if args.key?(:code) @errors = args[:errors] if args.key?(:errors) @import_token = args[:import_token] if args.key?(:import_token) @last_sync = args[:last_sync] if args.key?(:last_sync) @last_sync_time = args[:last_sync_time] if args.key?(:last_sync_time) @source_token = args[:source_token] if args.key?(:source_token) @sync_token = args[:sync_token] if args.key?(:sync_token) end  |