Class: Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserWorkloadsConfigMap

Returns a new instance of UserWorkloadsConfigMap.



2257
2258
2259
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2257

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

Instance Attribute Details

#dataHash<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

Returns:

  • (Hash<String,String>)


2248
2249
2250
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2248

def data
  @data
end

#nameString

Identifier. The resource name of the ConfigMap, in the form: "projects/ projectId/locations/locationId/environments/environmentId/ userWorkloadsConfigMaps/userWorkloadsConfigMapId" Corresponds to the JSON property name

Returns:

  • (String)


2255
2256
2257
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2255

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2262
2263
2264
2265
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2262

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