Class: Google::Apis::ContainerV1beta1::GcsFuseCsiDriverConfig

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

Overview

Configuration for the Cloud Storage Fuse CSI driver.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GcsFuseCsiDriverConfig

Returns a new instance of GcsFuseCsiDriverConfig.



3002
3003
3004
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3002

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Whether the Cloud Storage Fuse CSI driver is enabled for this cluster. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


2999
3000
3001
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2999

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3007
3008
3009
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3007

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