Class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1::ConfigManagementMembershipSpec
- 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
Anthos Config Management: Configuration for a single cluster. Intended to parallel the ConfigManagement CR.
Instance Attribute Summary collapse
-
#cluster ⇒ String
Optional.
-
#config_sync ⇒ Google::Apis::GkehubV1::ConfigManagementConfigSync
Configuration for Config Sync Corresponds to the JSON property
configSync. -
#hierarchy_controller ⇒ Google::Apis::GkehubV1::ConfigManagementHierarchyControllerConfig
Configuration for Hierarchy Controller Corresponds to the JSON property
hierarchyController. -
#management ⇒ String
Optional.
-
#policy_controller ⇒ Google::Apis::GkehubV1::ConfigManagementPolicyController
Configuration for Policy Controller Corresponds to the JSON property
policyController. -
#version ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConfigManagementMembershipSpec
constructor
A new instance of ConfigManagementMembershipSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConfigManagementMembershipSpec
Returns a new instance of ConfigManagementMembershipSpec.
1634 1635 1636 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1634 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster ⇒ String
Optional. User-specified cluster name used by the Config Sync cluster-name-
selector annotation or ClusterSelector object, for applying configs to only a
subset of clusters. Read more about the cluster-name-selector annotation and
ClusterSelector object at https://docs.cloud.google.com/kubernetes-engine/
config-sync/docs/how-to/cluster-scoped-objects#limiting-configs. Only set this
field if a name different from the cluster's fleet membership name is used by
the Config Sync cluster-name-selector annotation or ClusterSelector.
Corresponds to the JSON property cluster
1603 1604 1605 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1603 def cluster @cluster end |
#config_sync ⇒ Google::Apis::GkehubV1::ConfigManagementConfigSync
Configuration for Config Sync
Corresponds to the JSON property configSync
1608 1609 1610 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1608 def config_sync @config_sync end |
#hierarchy_controller ⇒ Google::Apis::GkehubV1::ConfigManagementHierarchyControllerConfig
Configuration for Hierarchy Controller
Corresponds to the JSON property hierarchyController
1613 1614 1615 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1613 def hierarchy_controller @hierarchy_controller end |
#management ⇒ String
Optional. Deprecated: From version 1.21.0, automatic Feature management is
unavailable, and Config Sync only supports manual upgrades.
Corresponds to the JSON property management
1619 1620 1621 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1619 def management @management end |
#policy_controller ⇒ Google::Apis::GkehubV1::ConfigManagementPolicyController
Configuration for Policy Controller
Corresponds to the JSON property policyController
1624 1625 1626 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1624 def policy_controller @policy_controller end |
#version ⇒ String
Optional. Version of Config Sync to install. Defaults to the latest supported
Config Sync version if the config_sync field is enabled. See supported
versions at https://cloud.google.com/kubernetes-engine/config-sync/docs/get-
support-config-sync#version_support_policy.
Corresponds to the JSON property version
1632 1633 1634 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1632 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1639 1640 1641 1642 1643 1644 1645 1646 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1639 def update!(**args) @cluster = args[:cluster] if args.key?(:cluster) @config_sync = args[:config_sync] if args.key?(:config_sync) @hierarchy_controller = args[:hierarchy_controller] if args.key?(:hierarchy_controller) @management = args[:management] if args.key?(:management) @policy_controller = args[:policy_controller] if args.key?(:policy_controller) @version = args[:version] if args.key?(:version) end |