Class: Google::Apis::ComposerV1beta1::StorageConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::StorageConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb
Overview
The configuration for data storage in the environment.
Instance Attribute Summary collapse
-
#bucket ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorageConfig
constructor
A new instance of StorageConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorageConfig
Returns a new instance of StorageConfig.
2227 2228 2229 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2227 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
Optional. The name of the Cloud Storage bucket used by the environment. No gs:
// prefix.
Corresponds to the JSON property bucket
2225 2226 2227 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2225 def bucket @bucket end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2232 2233 2234 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2232 def update!(**args) @bucket = args[:bucket] if args.key?(:bucket) end |