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.



3360
3361
3362
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3360

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)


3351
3352
3353
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3351

def included
  @included
end

#installationString

Configures the manner in which the template library is installed on the cluster. Corresponds to the JSON property installation

Returns:

  • (String)


3358
3359
3360
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3358

def installation
  @installation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3365
3366
3367
3368
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3365

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