Class: Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap
- 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
User workloads ConfigMap used by Airflow tasks that run with Kubernetes executor or KubernetesPodOperator.
Instance Attribute Summary collapse
-
#data ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Identifier.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserWorkloadsConfigMap
constructor
A new instance of UserWorkloadsConfigMap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserWorkloadsConfigMap
Returns a new instance of UserWorkloadsConfigMap.
2264 2265 2266 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ Hash<String,String>
Optional. The "data" field of Kubernetes ConfigMap, organized in key-value
pairs. For details see: https://kubernetes.io/docs/concepts/configuration/
configmap/
Corresponds to the JSON property data
2255 2256 2257 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2255 def data @data end |
#name ⇒ String
Identifier. The resource name of the ConfigMap, in the form: "projects/
projectId
/locations/locationId
/environments/environmentId
/
userWorkloadsConfigMaps/userWorkloadsConfigMapId
"
Corresponds to the JSON property name
2262 2263 2264 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2262 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2269 2270 2271 2272 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2269 def update!(**args) @data = args[:data] if args.key?(:data) @name = args[:name] if args.key?(:name) end |