Class: Google::Apis::GkehubV1::ConfigManagementHierarchyControllerConfig

Inherits:
Object
  • Object
show all
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

Configuration for Hierarchy Controller

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigManagementHierarchyControllerConfig

Returns a new instance of ConfigManagementHierarchyControllerConfig.



1257
1258
1259
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1257

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

Instance Attribute Details

#enable_hierarchical_resource_quotaBoolean Also known as: enable_hierarchical_resource_quota?

Whether hierarchical resource quota is enabled in this cluster. Corresponds to the JSON property enableHierarchicalResourceQuota

Returns:

  • (Boolean)


1242
1243
1244
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1242

def enable_hierarchical_resource_quota
  @enable_hierarchical_resource_quota
end

#enable_pod_tree_labelsBoolean Also known as: enable_pod_tree_labels?

Whether pod tree labels are enabled in this cluster. Corresponds to the JSON property enablePodTreeLabels

Returns:

  • (Boolean)


1248
1249
1250
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1248

def enable_pod_tree_labels
  @enable_pod_tree_labels
end

#enabledBoolean Also known as: enabled?

Whether Hierarchy Controller is enabled in this cluster. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1254
1255
1256
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1254

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1262
1263
1264
1265
1266
# File 'lib/google/apis/gkehub_v1/classes.rb', line 1262

def update!(**args)
  @enable_hierarchical_resource_quota = args[:enable_hierarchical_resource_quota] if args.key?(:enable_hierarchical_resource_quota)
  @enable_pod_tree_labels = args[:enable_pod_tree_labels] if args.key?(:enable_pod_tree_labels)
  @enabled = args[:enabled] if args.key?(:enabled)
end