Class: Google::Apis::GkehubV2::ConfigManagementConfigSyncState

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v2/classes.rb,
lib/google/apis/gkehub_v2/representations.rb,
lib/google/apis/gkehub_v2/representations.rb

Overview

State information for ConfigSync.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigManagementConfigSyncState

Returns a new instance of ConfigManagementConfigSyncState.



522
523
524
# File 'lib/google/apis/gkehub_v2/classes.rb', line 522

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cluster_level_stop_syncing_stateString

Whether syncing resources to the cluster is stopped at the cluster level. Corresponds to the JSON property clusterLevelStopSyncingState

Returns:

  • (String)


480
481
482
# File 'lib/google/apis/gkehub_v2/classes.rb', line 480

def cluster_level_stop_syncing_state
  @cluster_level_stop_syncing_state
end

#cr_countFixnum

Output only. The number of RootSync and RepoSync CRs in the cluster. Corresponds to the JSON property crCount

Returns:

  • (Fixnum)


485
486
487
# File 'lib/google/apis/gkehub_v2/classes.rb', line 485

def cr_count
  @cr_count
end

#deployment_stateGoogle::Apis::GkehubV2::ConfigManagementConfigSyncDeploymentState

The state of ConfigSync's deployment on a cluster. Corresponds to the JSON property deploymentState



490
491
492
# File 'lib/google/apis/gkehub_v2/classes.rb', line 490

def deployment_state
  @deployment_state
end

#errorsArray<Google::Apis::GkehubV2::ConfigManagementConfigSyncError>

Errors pertaining to the installation of Config Sync. Corresponds to the JSON property errors



495
496
497
# File 'lib/google/apis/gkehub_v2/classes.rb', line 495

def errors
  @errors
end

#reposync_crdString

The state of the Reposync CRD Corresponds to the JSON property reposyncCrd

Returns:

  • (String)


500
501
502
# File 'lib/google/apis/gkehub_v2/classes.rb', line 500

def reposync_crd
  @reposync_crd
end

#rootsync_crdString

The state of the RootSync CRD Corresponds to the JSON property rootsyncCrd

Returns:

  • (String)


505
506
507
# File 'lib/google/apis/gkehub_v2/classes.rb', line 505

def rootsync_crd
  @rootsync_crd
end

#stateString

The state of CS This field summarizes the other fields in this message. Corresponds to the JSON property state

Returns:

  • (String)


510
511
512
# File 'lib/google/apis/gkehub_v2/classes.rb', line 510

def state
  @state
end

#sync_stateGoogle::Apis::GkehubV2::ConfigManagementSyncState

State indicating an ACM's progress syncing configurations to a cluster. Corresponds to the JSON property syncState



515
516
517
# File 'lib/google/apis/gkehub_v2/classes.rb', line 515

def sync_state
  @sync_state
end

#versionGoogle::Apis::GkehubV2::ConfigManagementConfigSyncVersion

Specific versioning information pertaining to ConfigSync's Pods. Corresponds to the JSON property version



520
521
522
# File 'lib/google/apis/gkehub_v2/classes.rb', line 520

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



527
528
529
530
531
532
533
534
535
536
537
# File 'lib/google/apis/gkehub_v2/classes.rb', line 527

def update!(**args)
  @cluster_level_stop_syncing_state = args[:cluster_level_stop_syncing_state] if args.key?(:cluster_level_stop_syncing_state)
  @cr_count = args[:cr_count] if args.key?(:cr_count)
  @deployment_state = args[:deployment_state] if args.key?(:deployment_state)
  @errors = args[:errors] if args.key?(:errors)
  @reposync_crd = args[:reposync_crd] if args.key?(:reposync_crd)
  @rootsync_crd = args[:rootsync_crd] if args.key?(:rootsync_crd)
  @state = args[:state] if args.key?(:state)
  @sync_state = args[:sync_state] if args.key?(:sync_state)
  @version = args[:version] if args.key?(:version)
end