class Google::Apis::GkehubV1::ConfigManagementConfigSync

Configuration for Config Sync

Attributes

git[RW]

Git repo configuration for a single cluster. Corresponds to the JSON property `git` @return [Google::Apis::GkehubV1::ConfigManagementGitConfig]

source_format[RW]

Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode. Corresponds to the JSON property `sourceFormat` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1/classes.rb, line 290
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_v1/classes.rb, line 295
def update!(**args)
  @git = args[:git] if args.key?(:git)
  @source_format = args[:source_format] if args.key?(:source_format)
end