google-apis-composer_v1beta1 0.39.0 → 0.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '01988a1162ddcf8cf7c0f46e5693f99d7790c63d447bc0659d204f35f22bc943'
4
- data.tar.gz: 9cee9f9bbddbb5d9a6210ae669e835269cf71a2bb8ec351a00dfe6e001a204e5
3
+ metadata.gz: ee40fd4726a8d9042eec5e03d6929a48f416bf16e74cdaf92d34fa1a94be41d5
4
+ data.tar.gz: 3235e706cf2375525e0cc0656c223c75badf2bd0e4adb357583571afc39826d8
5
5
  SHA512:
6
- metadata.gz: e3cf1c0ea2dccf4a8136c72e2758f966e18ecd83b989ae9184a7d85dbaed773ba7e0beae1ff24611761096aa91008f68c4505df4d122012ceb409ff6a30c57e3
7
- data.tar.gz: c1bdae28b3b3a20e172b6dbbf5a6797695e655cae005c12eedbc3610eaa72d3c8c17b5517ce5f2efe5664b6e763e17fc0f37e689b9b3d5d79f3945c62538349e
6
+ metadata.gz: 7f6da589c3565dd630b3537baadc9ac68bb8cb53fabafb2efe783eb073a6b326dc0e74507382129d13d3dd47280a36a7d96517e77b1b7331fa242aff4ffa7d73
7
+ data.tar.gz: d12dbbfb2651f303973ac5bd595a28390314c64ebb6b50eba840bcc50f676c12ae578c8836258dc306baedc05edc39184e7c74e1ac7d2572d1e427ea7d3d4488
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.41.0 (2024-02-04)
4
+
5
+ * Regenerated from discovery document revision 20240123
6
+ * Regenerated using generator version 0.13.1
7
+
8
+ ### v0.40.0 (2024-01-23)
9
+
10
+ * Regenerated from discovery document revision 20240106
11
+ * Regenerated using generator version 0.13.0
12
+
3
13
  ### v0.39.0 (2023-12-10)
4
14
 
5
15
  * Regenerated from discovery document revision 20231129
@@ -177,6 +177,68 @@ module Google
177
177
  end
178
178
  end
179
179
 
180
+ # Information about a single workload.
181
+ class ComposerWorkload
182
+ include Google::Apis::Core::Hashable
183
+
184
+ # Name of a workload.
185
+ # Corresponds to the JSON property `name`
186
+ # @return [String]
187
+ attr_accessor :name
188
+
189
+ # Workload status.
190
+ # Corresponds to the JSON property `status`
191
+ # @return [Google::Apis::ComposerV1beta1::ComposerWorkloadStatus]
192
+ attr_accessor :status
193
+
194
+ # Type of a workload.
195
+ # Corresponds to the JSON property `type`
196
+ # @return [String]
197
+ attr_accessor :type
198
+
199
+ def initialize(**args)
200
+ update!(**args)
201
+ end
202
+
203
+ # Update properties of this object
204
+ def update!(**args)
205
+ @name = args[:name] if args.key?(:name)
206
+ @status = args[:status] if args.key?(:status)
207
+ @type = args[:type] if args.key?(:type)
208
+ end
209
+ end
210
+
211
+ # Workload status.
212
+ class ComposerWorkloadStatus
213
+ include Google::Apis::Core::Hashable
214
+
215
+ # Output only. Detailed message of the status.
216
+ # Corresponds to the JSON property `detailedStatusMessage`
217
+ # @return [String]
218
+ attr_accessor :detailed_status_message
219
+
220
+ # Output only. Workload state.
221
+ # Corresponds to the JSON property `state`
222
+ # @return [String]
223
+ attr_accessor :state
224
+
225
+ # Output only. Text to provide more descriptive status.
226
+ # Corresponds to the JSON property `statusMessage`
227
+ # @return [String]
228
+ attr_accessor :status_message
229
+
230
+ def initialize(**args)
231
+ update!(**args)
232
+ end
233
+
234
+ # Update properties of this object
235
+ def update!(**args)
236
+ @detailed_status_message = args[:detailed_status_message] if args.key?(:detailed_status_message)
237
+ @state = args[:state] if args.key?(:state)
238
+ @status_message = args[:status_message] if args.key?(:status_message)
239
+ end
240
+ end
241
+
180
242
  # Configuration for resources used by Airflow DAG processors.
181
243
  class DagProcessorResource
182
244
  include Google::Apis::Core::Hashable
@@ -217,6 +279,25 @@ module Google
217
279
  end
218
280
  end
219
281
 
282
+ # The configuration setting for Airflow database data retention mechanism.
283
+ class DataRetentionConfig
284
+ include Google::Apis::Core::Hashable
285
+
286
+ # The configuration setting for Task Logs.
287
+ # Corresponds to the JSON property `taskLogsRetentionConfig`
288
+ # @return [Google::Apis::ComposerV1beta1::TaskLogsRetentionConfig]
289
+ attr_accessor :task_logs_retention_config
290
+
291
+ def initialize(**args)
292
+ update!(**args)
293
+ end
294
+
295
+ # Update properties of this object
296
+ def update!(**args)
297
+ @task_logs_retention_config = args[:task_logs_retention_config] if args.key?(:task_logs_retention_config)
298
+ end
299
+ end
300
+
220
301
  # The configuration of Cloud SQL instance that is used by the Apache Airflow
221
302
  # software.
222
303
  class DatabaseConfig
@@ -460,6 +541,11 @@ module Google
460
541
  # @return [String]
461
542
  attr_accessor :dag_gcs_prefix
462
543
 
544
+ # The configuration setting for Airflow database data retention mechanism.
545
+ # Corresponds to the JSON property `dataRetentionConfig`
546
+ # @return [Google::Apis::ComposerV1beta1::DataRetentionConfig]
547
+ attr_accessor :data_retention_config
548
+
463
549
  # The configuration of Cloud SQL instance that is used by the Apache Airflow
464
550
  # software.
465
551
  # Corresponds to the JSON property `databaseConfig`
@@ -566,6 +652,7 @@ module Google
566
652
  @airflow_byoid_uri = args[:airflow_byoid_uri] if args.key?(:airflow_byoid_uri)
567
653
  @airflow_uri = args[:airflow_uri] if args.key?(:airflow_uri)
568
654
  @dag_gcs_prefix = args[:dag_gcs_prefix] if args.key?(:dag_gcs_prefix)
655
+ @data_retention_config = args[:data_retention_config] if args.key?(:data_retention_config)
569
656
  @database_config = args[:database_config] if args.key?(:database_config)
570
657
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
571
658
  @environment_size = args[:environment_size] if args.key?(:environment_size)
@@ -947,6 +1034,81 @@ module Google
947
1034
  end
948
1035
  end
949
1036
 
1037
+ # The user workloads ConfigMaps for a given environment.
1038
+ class ListUserWorkloadsConfigMapsResponse
1039
+ include Google::Apis::Core::Hashable
1040
+
1041
+ # The page token used to query for the next page if one exists.
1042
+ # Corresponds to the JSON property `nextPageToken`
1043
+ # @return [String]
1044
+ attr_accessor :next_page_token
1045
+
1046
+ # The list of ConfigMaps returned by a ListUserWorkloadsConfigMapsRequest.
1047
+ # Corresponds to the JSON property `userWorkloadsConfigMaps`
1048
+ # @return [Array<Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap>]
1049
+ attr_accessor :user_workloads_config_maps
1050
+
1051
+ def initialize(**args)
1052
+ update!(**args)
1053
+ end
1054
+
1055
+ # Update properties of this object
1056
+ def update!(**args)
1057
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1058
+ @user_workloads_config_maps = args[:user_workloads_config_maps] if args.key?(:user_workloads_config_maps)
1059
+ end
1060
+ end
1061
+
1062
+ # The user workloads Secrets for a given environment.
1063
+ class ListUserWorkloadsSecretsResponse
1064
+ include Google::Apis::Core::Hashable
1065
+
1066
+ # The page token used to query for the next page if one exists.
1067
+ # Corresponds to the JSON property `nextPageToken`
1068
+ # @return [String]
1069
+ attr_accessor :next_page_token
1070
+
1071
+ # The list of Secrets returned by a ListUserWorkloadsSecretsRequest.
1072
+ # Corresponds to the JSON property `userWorkloadsSecrets`
1073
+ # @return [Array<Google::Apis::ComposerV1beta1::UserWorkloadsSecret>]
1074
+ attr_accessor :user_workloads_secrets
1075
+
1076
+ def initialize(**args)
1077
+ update!(**args)
1078
+ end
1079
+
1080
+ # Update properties of this object
1081
+ def update!(**args)
1082
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1083
+ @user_workloads_secrets = args[:user_workloads_secrets] if args.key?(:user_workloads_secrets)
1084
+ end
1085
+ end
1086
+
1087
+ # Response to ListWorkloadsRequest.
1088
+ class ListWorkloadsResponse
1089
+ include Google::Apis::Core::Hashable
1090
+
1091
+ # The page token used to query for the next page if one exists.
1092
+ # Corresponds to the JSON property `nextPageToken`
1093
+ # @return [String]
1094
+ attr_accessor :next_page_token
1095
+
1096
+ # The list of environment workloads.
1097
+ # Corresponds to the JSON property `workloads`
1098
+ # @return [Array<Google::Apis::ComposerV1beta1::ComposerWorkload>]
1099
+ attr_accessor :workloads
1100
+
1101
+ def initialize(**args)
1102
+ update!(**args)
1103
+ end
1104
+
1105
+ # Update properties of this object
1106
+ def update!(**args)
1107
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1108
+ @workloads = args[:workloads] if args.key?(:workloads)
1109
+ end
1110
+ end
1111
+
950
1112
  # Request to load a snapshot into a Cloud Composer environment.
951
1113
  class LoadSnapshotRequest
952
1114
  include Google::Apis::Core::Hashable
@@ -1982,6 +2144,26 @@ module Google
1982
2144
  end
1983
2145
  end
1984
2146
 
2147
+ # The configuration setting for Task Logs.
2148
+ class TaskLogsRetentionConfig
2149
+ include Google::Apis::Core::Hashable
2150
+
2151
+ # Optional. The mode of storage for Airflow workers task logs. For details, see
2152
+ # go/composer-store-task-logs-in-cloud-logging-only-design-doc
2153
+ # Corresponds to the JSON property `storageMode`
2154
+ # @return [String]
2155
+ attr_accessor :storage_mode
2156
+
2157
+ def initialize(**args)
2158
+ update!(**args)
2159
+ end
2160
+
2161
+ # Update properties of this object
2162
+ def update!(**args)
2163
+ @storage_mode = args[:storage_mode] if args.key?(:storage_mode)
2164
+ end
2165
+ end
2166
+
1985
2167
  # Configuration for resources used by Airflow triggerers.
1986
2168
  class TriggererResource
1987
2169
  include Google::Apis::Core::Hashable
@@ -2013,6 +2195,67 @@ module Google
2013
2195
  end
2014
2196
  end
2015
2197
 
2198
+ # User workloads ConfigMap used by Airflow tasks that run with Kubernetes
2199
+ # executor or KubernetesPodOperator.
2200
+ class UserWorkloadsConfigMap
2201
+ include Google::Apis::Core::Hashable
2202
+
2203
+ # Optional. The "data" field of Kubernetes ConfigMap, organized in key-value
2204
+ # pairs. For details see: https://kubernetes.io/docs/concepts/configuration/
2205
+ # configmap/
2206
+ # Corresponds to the JSON property `data`
2207
+ # @return [Hash<String,String>]
2208
+ attr_accessor :data
2209
+
2210
+ # Identifier. The resource name of the ConfigMap, in the form: "projects/`
2211
+ # projectId`/locations/`locationId`/environments/`environmentId`/
2212
+ # userWorkloadsConfigMaps/`userWorkloadsConfigMapId`"
2213
+ # Corresponds to the JSON property `name`
2214
+ # @return [String]
2215
+ attr_accessor :name
2216
+
2217
+ def initialize(**args)
2218
+ update!(**args)
2219
+ end
2220
+
2221
+ # Update properties of this object
2222
+ def update!(**args)
2223
+ @data = args[:data] if args.key?(:data)
2224
+ @name = args[:name] if args.key?(:name)
2225
+ end
2226
+ end
2227
+
2228
+ # User workloads Secret used by Airflow tasks that run with Kubernetes executor
2229
+ # or KubernetesPodOperator.
2230
+ class UserWorkloadsSecret
2231
+ include Google::Apis::Core::Hashable
2232
+
2233
+ # Optional. The "data" field of Kubernetes Secret, organized in key-value pairs,
2234
+ # which can contain sensitive values such as a password, a token, or a key. The
2235
+ # values for all keys have to be base64-encoded strings. For details see: https:/
2236
+ # /kubernetes.io/docs/concepts/configuration/secret/
2237
+ # Corresponds to the JSON property `data`
2238
+ # @return [Hash<String,String>]
2239
+ attr_accessor :data
2240
+
2241
+ # Identifier. The resource name of the Secret, in the form: "projects/`projectId`
2242
+ # /locations/`locationId`/environments/`environmentId`/userWorkloadsSecrets/`
2243
+ # userWorkloadsSecretId`"
2244
+ # Corresponds to the JSON property `name`
2245
+ # @return [String]
2246
+ attr_accessor :name
2247
+
2248
+ def initialize(**args)
2249
+ update!(**args)
2250
+ end
2251
+
2252
+ # Update properties of this object
2253
+ def update!(**args)
2254
+ @data = args[:data] if args.key?(:data)
2255
+ @name = args[:name] if args.key?(:name)
2256
+ end
2257
+ end
2258
+
2016
2259
  # The configuration settings for the Airflow web server App Engine instance.
2017
2260
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
2018
2261
  # *.*.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComposerV1beta1
18
18
  # Version of the google-apis-composer_v1beta1 gem
19
- GEM_VERSION = "0.39.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231129"
25
+ REVISION = "20240123"
26
26
  end
27
27
  end
28
28
  end
@@ -52,12 +52,30 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class ComposerWorkload
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class ComposerWorkloadStatus
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class DagProcessorResource
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
58
70
  include Google::Apis::Core::JsonObjectSupport
59
71
  end
60
72
 
73
+ class DataRetentionConfig
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
61
79
  class DatabaseConfig
62
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
81
 
@@ -166,6 +184,24 @@ module Google
166
184
  include Google::Apis::Core::JsonObjectSupport
167
185
  end
168
186
 
187
+ class ListUserWorkloadsConfigMapsResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
193
+ class ListUserWorkloadsSecretsResponse
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class ListWorkloadsResponse
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
169
205
  class LoadSnapshotRequest
170
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
207
 
@@ -304,12 +340,30 @@ module Google
304
340
  include Google::Apis::Core::JsonObjectSupport
305
341
  end
306
342
 
343
+ class TaskLogsRetentionConfig
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
307
349
  class TriggererResource
308
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
351
 
310
352
  include Google::Apis::Core::JsonObjectSupport
311
353
  end
312
354
 
355
+ class UserWorkloadsConfigMap
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
361
+ class UserWorkloadsSecret
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
313
367
  class WebServerConfig
314
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
369
 
@@ -381,6 +435,25 @@ module Google
381
435
  end
382
436
  end
383
437
 
438
+ class ComposerWorkload
439
+ # @private
440
+ class Representation < Google::Apis::Core::JsonRepresentation
441
+ property :name, as: 'name'
442
+ property :status, as: 'status', class: Google::Apis::ComposerV1beta1::ComposerWorkloadStatus, decorator: Google::Apis::ComposerV1beta1::ComposerWorkloadStatus::Representation
443
+
444
+ property :type, as: 'type'
445
+ end
446
+ end
447
+
448
+ class ComposerWorkloadStatus
449
+ # @private
450
+ class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :detailed_status_message, as: 'detailedStatusMessage'
452
+ property :state, as: 'state'
453
+ property :status_message, as: 'statusMessage'
454
+ end
455
+ end
456
+
384
457
  class DagProcessorResource
385
458
  # @private
386
459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -391,6 +464,14 @@ module Google
391
464
  end
392
465
  end
393
466
 
467
+ class DataRetentionConfig
468
+ # @private
469
+ class Representation < Google::Apis::Core::JsonRepresentation
470
+ property :task_logs_retention_config, as: 'taskLogsRetentionConfig', class: Google::Apis::ComposerV1beta1::TaskLogsRetentionConfig, decorator: Google::Apis::ComposerV1beta1::TaskLogsRetentionConfig::Representation
471
+
472
+ end
473
+ end
474
+
394
475
  class DatabaseConfig
395
476
  # @private
396
477
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -456,6 +537,8 @@ module Google
456
537
  property :airflow_byoid_uri, as: 'airflowByoidUri'
457
538
  property :airflow_uri, as: 'airflowUri'
458
539
  property :dag_gcs_prefix, as: 'dagGcsPrefix'
540
+ property :data_retention_config, as: 'dataRetentionConfig', class: Google::Apis::ComposerV1beta1::DataRetentionConfig, decorator: Google::Apis::ComposerV1beta1::DataRetentionConfig::Representation
541
+
459
542
  property :database_config, as: 'databaseConfig', class: Google::Apis::ComposerV1beta1::DatabaseConfig, decorator: Google::Apis::ComposerV1beta1::DatabaseConfig::Representation
460
543
 
461
544
  property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ComposerV1beta1::EncryptionConfig, decorator: Google::Apis::ComposerV1beta1::EncryptionConfig::Representation
@@ -580,6 +663,33 @@ module Google
580
663
  end
581
664
  end
582
665
 
666
+ class ListUserWorkloadsConfigMapsResponse
667
+ # @private
668
+ class Representation < Google::Apis::Core::JsonRepresentation
669
+ property :next_page_token, as: 'nextPageToken'
670
+ collection :user_workloads_config_maps, as: 'userWorkloadsConfigMaps', class: Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap, decorator: Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
671
+
672
+ end
673
+ end
674
+
675
+ class ListUserWorkloadsSecretsResponse
676
+ # @private
677
+ class Representation < Google::Apis::Core::JsonRepresentation
678
+ property :next_page_token, as: 'nextPageToken'
679
+ collection :user_workloads_secrets, as: 'userWorkloadsSecrets', class: Google::Apis::ComposerV1beta1::UserWorkloadsSecret, decorator: Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
680
+
681
+ end
682
+ end
683
+
684
+ class ListWorkloadsResponse
685
+ # @private
686
+ class Representation < Google::Apis::Core::JsonRepresentation
687
+ property :next_page_token, as: 'nextPageToken'
688
+ collection :workloads, as: 'workloads', class: Google::Apis::ComposerV1beta1::ComposerWorkload, decorator: Google::Apis::ComposerV1beta1::ComposerWorkload::Representation
689
+
690
+ end
691
+ end
692
+
583
693
  class LoadSnapshotRequest
584
694
  # @private
585
695
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -812,6 +922,13 @@ module Google
812
922
  end
813
923
  end
814
924
 
925
+ class TaskLogsRetentionConfig
926
+ # @private
927
+ class Representation < Google::Apis::Core::JsonRepresentation
928
+ property :storage_mode, as: 'storageMode'
929
+ end
930
+ end
931
+
815
932
  class TriggererResource
816
933
  # @private
817
934
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -821,6 +938,22 @@ module Google
821
938
  end
822
939
  end
823
940
 
941
+ class UserWorkloadsConfigMap
942
+ # @private
943
+ class Representation < Google::Apis::Core::JsonRepresentation
944
+ hash :data, as: 'data'
945
+ property :name, as: 'name'
946
+ end
947
+ end
948
+
949
+ class UserWorkloadsSecret
950
+ # @private
951
+ class Representation < Google::Apis::Core::JsonRepresentation
952
+ hash :data, as: 'data'
953
+ property :name, as: 'name'
954
+ end
955
+ end
956
+
824
957
  class WebServerConfig
825
958
  # @private
826
959
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -32,6 +32,8 @@ module Google
32
32
  #
33
33
  # @see https://cloud.google.com/composer/
34
34
  class CloudComposerService < Google::Apis::Core::BaseService
35
+ DEFAULT_ENDPOINT_TEMPLATE = "https://composer.$UNIVERSE_DOMAIN$/"
36
+
35
37
  # @return [String]
36
38
  # API key. Your API key identifies your project and provides you with API access,
37
39
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -43,7 +45,7 @@ module Google
43
45
  attr_accessor :quota_user
44
46
 
45
47
  def initialize
46
- super('https://composer.googleapis.com/', '',
48
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
47
49
  client_name: 'google-apis-composer_v1beta1',
48
50
  client_version: Google::Apis::ComposerV1beta1::GEM_VERSION)
49
51
  @batch_path = 'batch'
@@ -610,6 +612,406 @@ module Google
610
612
  execute_or_queue_command(command, &block)
611
613
  end
612
614
 
615
+ # Creates a user workloads ConfigMap. This method is supported for Cloud
616
+ # Composer environments in versions composer-3.*.*-airflow-*.*.* and newer.
617
+ # @param [String] parent
618
+ # Required. The environment name to create a ConfigMap for, in the form: "
619
+ # projects/`projectId`/locations/`locationId`/environments/`environmentId`"
620
+ # @param [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap] user_workloads_config_map_object
621
+ # @param [String] fields
622
+ # Selector specifying which fields to include in a partial response.
623
+ # @param [String] quota_user
624
+ # Available to use for quota purposes for server-side applications. Can be any
625
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
626
+ # @param [Google::Apis::RequestOptions] options
627
+ # Request-specific options
628
+ #
629
+ # @yield [result, err] Result & error if block supplied
630
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap] parsed result object
631
+ # @yieldparam err [StandardError] error object if request failed
632
+ #
633
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap]
634
+ #
635
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
636
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
637
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
638
+ def create_project_location_environment_user_workloads_config_map(parent, user_workloads_config_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
639
+ command = make_simple_command(:post, 'v1beta1/{+parent}/userWorkloadsConfigMaps', options)
640
+ command.request_representation = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
641
+ command.request_object = user_workloads_config_map_object
642
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
643
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap
644
+ command.params['parent'] = parent unless parent.nil?
645
+ command.query['fields'] = fields unless fields.nil?
646
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
647
+ execute_or_queue_command(command, &block)
648
+ end
649
+
650
+ # Deletes a user workloads ConfigMap. This method is supported for Cloud
651
+ # Composer environments in versions composer-3.*.*-airflow-*.*.* and newer.
652
+ # @param [String] name
653
+ # Required. The ConfigMap to delete, in the form: "projects/`projectId`/
654
+ # locations/`locationId`/environments/`environmentId`/userWorkloadsConfigMaps/`
655
+ # userWorkloadsConfigMapId`"
656
+ # @param [String] fields
657
+ # Selector specifying which fields to include in a partial response.
658
+ # @param [String] quota_user
659
+ # Available to use for quota purposes for server-side applications. Can be any
660
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
661
+ # @param [Google::Apis::RequestOptions] options
662
+ # Request-specific options
663
+ #
664
+ # @yield [result, err] Result & error if block supplied
665
+ # @yieldparam result [Google::Apis::ComposerV1beta1::Empty] parsed result object
666
+ # @yieldparam err [StandardError] error object if request failed
667
+ #
668
+ # @return [Google::Apis::ComposerV1beta1::Empty]
669
+ #
670
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
671
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
672
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
673
+ def delete_project_location_environment_user_workloads_config_map(name, fields: nil, quota_user: nil, options: nil, &block)
674
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
675
+ command.response_representation = Google::Apis::ComposerV1beta1::Empty::Representation
676
+ command.response_class = Google::Apis::ComposerV1beta1::Empty
677
+ command.params['name'] = name unless name.nil?
678
+ command.query['fields'] = fields unless fields.nil?
679
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
680
+ execute_or_queue_command(command, &block)
681
+ end
682
+
683
+ # Gets an existing user workloads ConfigMap. This method is supported for Cloud
684
+ # Composer environments in versions composer-3.*.*-airflow-*.*.* and newer.
685
+ # @param [String] name
686
+ # Required. The resource name of the ConfigMap to get, in the form: "projects/`
687
+ # projectId`/locations/`locationId`/environments/`environmentId`/
688
+ # userWorkloadsConfigMaps/`userWorkloadsConfigMapId`"
689
+ # @param [String] fields
690
+ # Selector specifying which fields to include in a partial response.
691
+ # @param [String] quota_user
692
+ # Available to use for quota purposes for server-side applications. Can be any
693
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
694
+ # @param [Google::Apis::RequestOptions] options
695
+ # Request-specific options
696
+ #
697
+ # @yield [result, err] Result & error if block supplied
698
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap] parsed result object
699
+ # @yieldparam err [StandardError] error object if request failed
700
+ #
701
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap]
702
+ #
703
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
704
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
705
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
706
+ def get_project_location_environment_user_workloads_config_map(name, fields: nil, quota_user: nil, options: nil, &block)
707
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
708
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
709
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap
710
+ command.params['name'] = name unless name.nil?
711
+ command.query['fields'] = fields unless fields.nil?
712
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
713
+ execute_or_queue_command(command, &block)
714
+ end
715
+
716
+ # Lists user workloads ConfigMaps. This method is supported for Cloud Composer
717
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
718
+ # @param [String] parent
719
+ # Required. List ConfigMaps in the given environment, in the form: "projects/`
720
+ # projectId`/locations/`locationId`/environments/`environmentId`"
721
+ # @param [Fixnum] page_size
722
+ # Optional. The maximum number of ConfigMaps to return.
723
+ # @param [String] page_token
724
+ # Optional. The next_page_token value returned from a previous List request, if
725
+ # any.
726
+ # @param [String] fields
727
+ # Selector specifying which fields to include in a partial response.
728
+ # @param [String] quota_user
729
+ # Available to use for quota purposes for server-side applications. Can be any
730
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
731
+ # @param [Google::Apis::RequestOptions] options
732
+ # Request-specific options
733
+ #
734
+ # @yield [result, err] Result & error if block supplied
735
+ # @yieldparam result [Google::Apis::ComposerV1beta1::ListUserWorkloadsConfigMapsResponse] parsed result object
736
+ # @yieldparam err [StandardError] error object if request failed
737
+ #
738
+ # @return [Google::Apis::ComposerV1beta1::ListUserWorkloadsConfigMapsResponse]
739
+ #
740
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
741
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
742
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
743
+ def list_project_location_environment_user_workloads_config_maps(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
744
+ command = make_simple_command(:get, 'v1beta1/{+parent}/userWorkloadsConfigMaps', options)
745
+ command.response_representation = Google::Apis::ComposerV1beta1::ListUserWorkloadsConfigMapsResponse::Representation
746
+ command.response_class = Google::Apis::ComposerV1beta1::ListUserWorkloadsConfigMapsResponse
747
+ command.params['parent'] = parent unless parent.nil?
748
+ command.query['pageSize'] = page_size unless page_size.nil?
749
+ command.query['pageToken'] = page_token unless page_token.nil?
750
+ command.query['fields'] = fields unless fields.nil?
751
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
752
+ execute_or_queue_command(command, &block)
753
+ end
754
+
755
+ # Updates a user workloads ConfigMap. This method is supported for Cloud
756
+ # Composer environments in versions composer-3.*.*-airflow-*.*.* and newer.
757
+ # @param [String] name
758
+ # Identifier. The resource name of the ConfigMap, in the form: "projects/`
759
+ # projectId`/locations/`locationId`/environments/`environmentId`/
760
+ # userWorkloadsConfigMaps/`userWorkloadsConfigMapId`"
761
+ # @param [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap] user_workloads_config_map_object
762
+ # @param [String] fields
763
+ # Selector specifying which fields to include in a partial response.
764
+ # @param [String] quota_user
765
+ # Available to use for quota purposes for server-side applications. Can be any
766
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
767
+ # @param [Google::Apis::RequestOptions] options
768
+ # Request-specific options
769
+ #
770
+ # @yield [result, err] Result & error if block supplied
771
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap] parsed result object
772
+ # @yieldparam err [StandardError] error object if request failed
773
+ #
774
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap]
775
+ #
776
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
777
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
778
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
779
+ def update_project_location_environment_user_workloads_config_map(name, user_workloads_config_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
780
+ command = make_simple_command(:put, 'v1beta1/{+name}', options)
781
+ command.request_representation = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
782
+ command.request_object = user_workloads_config_map_object
783
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap::Representation
784
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsConfigMap
785
+ command.params['name'] = name unless name.nil?
786
+ command.query['fields'] = fields unless fields.nil?
787
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
788
+ execute_or_queue_command(command, &block)
789
+ end
790
+
791
+ # Creates a user workloads Secret. This method is supported for Cloud Composer
792
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
793
+ # @param [String] parent
794
+ # Required. The environment name to create a Secret for, in the form: "projects/`
795
+ # projectId`/locations/`locationId`/environments/`environmentId`"
796
+ # @param [Google::Apis::ComposerV1beta1::UserWorkloadsSecret] user_workloads_secret_object
797
+ # @param [String] fields
798
+ # Selector specifying which fields to include in a partial response.
799
+ # @param [String] quota_user
800
+ # Available to use for quota purposes for server-side applications. Can be any
801
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
802
+ # @param [Google::Apis::RequestOptions] options
803
+ # Request-specific options
804
+ #
805
+ # @yield [result, err] Result & error if block supplied
806
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsSecret] parsed result object
807
+ # @yieldparam err [StandardError] error object if request failed
808
+ #
809
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsSecret]
810
+ #
811
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
812
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
813
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
814
+ def create_project_location_environment_user_workloads_secret(parent, user_workloads_secret_object = nil, fields: nil, quota_user: nil, options: nil, &block)
815
+ command = make_simple_command(:post, 'v1beta1/{+parent}/userWorkloadsSecrets', options)
816
+ command.request_representation = Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
817
+ command.request_object = user_workloads_secret_object
818
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
819
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsSecret
820
+ command.params['parent'] = parent unless parent.nil?
821
+ command.query['fields'] = fields unless fields.nil?
822
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
823
+ execute_or_queue_command(command, &block)
824
+ end
825
+
826
+ # Deletes a user workloads Secret. This method is supported for Cloud Composer
827
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
828
+ # @param [String] name
829
+ # Required. The Secret to delete, in the form: "projects/`projectId`/locations/`
830
+ # locationId`/environments/`environmentId`/userWorkloadsSecrets/`
831
+ # userWorkloadsSecretId`"
832
+ # @param [String] fields
833
+ # Selector specifying which fields to include in a partial response.
834
+ # @param [String] quota_user
835
+ # Available to use for quota purposes for server-side applications. Can be any
836
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
837
+ # @param [Google::Apis::RequestOptions] options
838
+ # Request-specific options
839
+ #
840
+ # @yield [result, err] Result & error if block supplied
841
+ # @yieldparam result [Google::Apis::ComposerV1beta1::Empty] parsed result object
842
+ # @yieldparam err [StandardError] error object if request failed
843
+ #
844
+ # @return [Google::Apis::ComposerV1beta1::Empty]
845
+ #
846
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
847
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
848
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
849
+ def delete_project_location_environment_user_workloads_secret(name, fields: nil, quota_user: nil, options: nil, &block)
850
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
851
+ command.response_representation = Google::Apis::ComposerV1beta1::Empty::Representation
852
+ command.response_class = Google::Apis::ComposerV1beta1::Empty
853
+ command.params['name'] = name unless name.nil?
854
+ command.query['fields'] = fields unless fields.nil?
855
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
856
+ execute_or_queue_command(command, &block)
857
+ end
858
+
859
+ # Gets an existing user workloads Secret. Values of the "data" field in the
860
+ # response are cleared. This method is supported for Cloud Composer environments
861
+ # in versions composer-3.*.*-airflow-*.*.* and newer.
862
+ # @param [String] name
863
+ # Required. The resource name of the Secret to get, in the form: "projects/`
864
+ # projectId`/locations/`locationId`/environments/`environmentId`/
865
+ # userWorkloadsSecrets/`userWorkloadsSecretId`"
866
+ # @param [String] fields
867
+ # Selector specifying which fields to include in a partial response.
868
+ # @param [String] quota_user
869
+ # Available to use for quota purposes for server-side applications. Can be any
870
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
871
+ # @param [Google::Apis::RequestOptions] options
872
+ # Request-specific options
873
+ #
874
+ # @yield [result, err] Result & error if block supplied
875
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsSecret] parsed result object
876
+ # @yieldparam err [StandardError] error object if request failed
877
+ #
878
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsSecret]
879
+ #
880
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
881
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
882
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
883
+ def get_project_location_environment_user_workloads_secret(name, fields: nil, quota_user: nil, options: nil, &block)
884
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
885
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
886
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsSecret
887
+ command.params['name'] = name unless name.nil?
888
+ command.query['fields'] = fields unless fields.nil?
889
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
890
+ execute_or_queue_command(command, &block)
891
+ end
892
+
893
+ # Lists user workloads Secrets. This method is supported for Cloud Composer
894
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
895
+ # @param [String] parent
896
+ # Required. List Secrets in the given environment, in the form: "projects/`
897
+ # projectId`/locations/`locationId`/environments/`environmentId`"
898
+ # @param [Fixnum] page_size
899
+ # Optional. The maximum number of Secrets to return.
900
+ # @param [String] page_token
901
+ # Optional. The next_page_token value returned from a previous List request, if
902
+ # any.
903
+ # @param [String] fields
904
+ # Selector specifying which fields to include in a partial response.
905
+ # @param [String] quota_user
906
+ # Available to use for quota purposes for server-side applications. Can be any
907
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
908
+ # @param [Google::Apis::RequestOptions] options
909
+ # Request-specific options
910
+ #
911
+ # @yield [result, err] Result & error if block supplied
912
+ # @yieldparam result [Google::Apis::ComposerV1beta1::ListUserWorkloadsSecretsResponse] parsed result object
913
+ # @yieldparam err [StandardError] error object if request failed
914
+ #
915
+ # @return [Google::Apis::ComposerV1beta1::ListUserWorkloadsSecretsResponse]
916
+ #
917
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
918
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
919
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
920
+ def list_project_location_environment_user_workloads_secrets(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
921
+ command = make_simple_command(:get, 'v1beta1/{+parent}/userWorkloadsSecrets', options)
922
+ command.response_representation = Google::Apis::ComposerV1beta1::ListUserWorkloadsSecretsResponse::Representation
923
+ command.response_class = Google::Apis::ComposerV1beta1::ListUserWorkloadsSecretsResponse
924
+ command.params['parent'] = parent unless parent.nil?
925
+ command.query['pageSize'] = page_size unless page_size.nil?
926
+ command.query['pageToken'] = page_token unless page_token.nil?
927
+ command.query['fields'] = fields unless fields.nil?
928
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
929
+ execute_or_queue_command(command, &block)
930
+ end
931
+
932
+ # Updates a user workloads Secret. This method is supported for Cloud Composer
933
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
934
+ # @param [String] name
935
+ # Identifier. The resource name of the Secret, in the form: "projects/`projectId`
936
+ # /locations/`locationId`/environments/`environmentId`/userWorkloadsSecrets/`
937
+ # userWorkloadsSecretId`"
938
+ # @param [Google::Apis::ComposerV1beta1::UserWorkloadsSecret] user_workloads_secret_object
939
+ # @param [String] fields
940
+ # Selector specifying which fields to include in a partial response.
941
+ # @param [String] quota_user
942
+ # Available to use for quota purposes for server-side applications. Can be any
943
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
944
+ # @param [Google::Apis::RequestOptions] options
945
+ # Request-specific options
946
+ #
947
+ # @yield [result, err] Result & error if block supplied
948
+ # @yieldparam result [Google::Apis::ComposerV1beta1::UserWorkloadsSecret] parsed result object
949
+ # @yieldparam err [StandardError] error object if request failed
950
+ #
951
+ # @return [Google::Apis::ComposerV1beta1::UserWorkloadsSecret]
952
+ #
953
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
954
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
955
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
956
+ def update_project_location_environment_user_workloads_secret(name, user_workloads_secret_object = nil, fields: nil, quota_user: nil, options: nil, &block)
957
+ command = make_simple_command(:put, 'v1beta1/{+name}', options)
958
+ command.request_representation = Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
959
+ command.request_object = user_workloads_secret_object
960
+ command.response_representation = Google::Apis::ComposerV1beta1::UserWorkloadsSecret::Representation
961
+ command.response_class = Google::Apis::ComposerV1beta1::UserWorkloadsSecret
962
+ command.params['name'] = name unless name.nil?
963
+ command.query['fields'] = fields unless fields.nil?
964
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
965
+ execute_or_queue_command(command, &block)
966
+ end
967
+
968
+ # Lists workloads in a Cloud Composer environment. Workload is a unit that runs
969
+ # a single Composer component. This method is supported for Cloud Composer
970
+ # environments in versions composer-3.*.*-airflow-*.*.* and newer.
971
+ # @param [String] parent
972
+ # Required. The environment name to get workloads for, in the form: "projects/`
973
+ # projectId`/locations/`locationId`/environments/`environmentId`"
974
+ # @param [String] filter
975
+ # Optional. The list filter. Currently only supports equality on the type field.
976
+ # The value of a field specified in the filter expression must be one
977
+ # ComposerWorkloadType enum option. It's possible to get multiple types using "
978
+ # OR" operator, e.g.: "type=SCHEDULER OR type=CELERY_WORKER". If not specified,
979
+ # all items are returned.
980
+ # @param [Fixnum] page_size
981
+ # Optional. The maximum number of environments to return.
982
+ # @param [String] page_token
983
+ # Optional. The next_page_token value returned from a previous List request, if
984
+ # any.
985
+ # @param [String] fields
986
+ # Selector specifying which fields to include in a partial response.
987
+ # @param [String] quota_user
988
+ # Available to use for quota purposes for server-side applications. Can be any
989
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
990
+ # @param [Google::Apis::RequestOptions] options
991
+ # Request-specific options
992
+ #
993
+ # @yield [result, err] Result & error if block supplied
994
+ # @yieldparam result [Google::Apis::ComposerV1beta1::ListWorkloadsResponse] parsed result object
995
+ # @yieldparam err [StandardError] error object if request failed
996
+ #
997
+ # @return [Google::Apis::ComposerV1beta1::ListWorkloadsResponse]
998
+ #
999
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1000
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1001
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1002
+ def list_project_location_environment_workloads(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1003
+ command = make_simple_command(:get, 'v1beta1/{+parent}/workloads', options)
1004
+ command.response_representation = Google::Apis::ComposerV1beta1::ListWorkloadsResponse::Representation
1005
+ command.response_class = Google::Apis::ComposerV1beta1::ListWorkloadsResponse
1006
+ command.params['parent'] = parent unless parent.nil?
1007
+ command.query['filter'] = filter unless filter.nil?
1008
+ command.query['pageSize'] = page_size unless page_size.nil?
1009
+ command.query['pageToken'] = page_token unless page_token.nil?
1010
+ command.query['fields'] = fields unless fields.nil?
1011
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1012
+ execute_or_queue_command(command, &block)
1013
+ end
1014
+
613
1015
  # List ImageVersions for provided location.
614
1016
  # @param [String] parent
615
1017
  # List ImageVersions in the given project and location, in the form: "projects/`
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-10 00:00:00.000000000 Z
11
+ date: 2024-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Composer API V1beta1