class Google::Apis::GkehubV1beta::ConfigManagementConfigSyncState

State information for ConfigSync

Attributes

deployment_state[RW]

The state of ConfigSync's deployment on a cluster Corresponds to the JSON property `deploymentState` @return [Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState]

sync_state[RW]

State indicating an ACM's progress syncing configurations to a cluster Corresponds to the JSON property `syncState` @return [Google::Apis::GkehubV1beta::ConfigManagementSyncState]

version[RW]

Specific versioning information pertaining to ConfigSync's Pods Corresponds to the JSON property `version` @return [Google::Apis::GkehubV1beta::ConfigManagementConfigSyncVersion]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1beta/classes.rb, line 379
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gkehub_v1beta/classes.rb, line 384
def update!(**args)
  @deployment_state = args[:deployment_state] if args.key?(:deployment_state)
  @sync_state = args[:sync_state] if args.key?(:sync_state)
  @version = args[:version] if args.key?(:version)
end