Class: Google::Apis::ContainerV1beta1::NodeConfigDefaults
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::NodeConfigDefaults
- 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
Subset of NodeConfig message that has defaults.
Instance Attribute Summary collapse
-
#gcfs_config ⇒ Google::Apis::ContainerV1beta1::GcfsConfig
GcfsConfig contains configurations of Google Container File System.
-
#logging_config ⇒ Google::Apis::ContainerV1beta1::NodePoolLoggingConfig
NodePoolLoggingConfig specifies logging configuration for nodepools.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeConfigDefaults
constructor
A new instance of NodeConfigDefaults.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeConfigDefaults
Returns a new instance of NodeConfigDefaults.
3900 3901 3902 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3900 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcfs_config ⇒ Google::Apis::ContainerV1beta1::GcfsConfig
GcfsConfig contains configurations of Google Container File System.
Corresponds to the JSON property gcfsConfig
3893 3894 3895 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3893 def gcfs_config @gcfs_config end |
#logging_config ⇒ Google::Apis::ContainerV1beta1::NodePoolLoggingConfig
NodePoolLoggingConfig specifies logging configuration for nodepools.
Corresponds to the JSON property loggingConfig
3898 3899 3900 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3898 def logging_config @logging_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3905 3906 3907 3908 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3905 def update!(**args) @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config) @logging_config = args[:logging_config] if args.key?(:logging_config) end |