Class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig

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

Overview

The config specifying which default library templates to install.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PolicyControllerTemplateLibraryConfig

Returns a new instance of PolicyControllerTemplateLibraryConfig.



2326
2327
2328
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2326

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

Instance Attribute Details

#includedBoolean Also known as: included?

Whether the standard template library should be installed or not. Corresponds to the JSON property included

Returns:

  • (Boolean)


2323
2324
2325
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2323

def included
  @included
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2331
2332
2333
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2331

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