google-apis-composer_v1beta1 0.8.0 → 0.9.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49439d0c64e9d0d4268d831532eb21f0e8af367225e9c492843d5b891e8cb1d7
|
4
|
+
data.tar.gz: 87338360be668967a9d3cebffa9db264be26ff631386485637222a0ed0771541
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4d008dd3ecf4103ac5524e121014383144e9861482d02ebe9e088a84383d7dbdd55560a2ec0c6b737c4843a9e40204351c7e9ca6022847ee568d875799fa54c
|
7
|
+
data.tar.gz: 68261955a763ae89543e610b036230c4860a33618156bb765c0e43fcaf21970bb017824037a5a69ad5ee291a696cd8de12b0caa618158579d984d1c132b6b955
|
data/CHANGELOG.md
CHANGED
@@ -97,12 +97,23 @@ module Google
|
|
97
97
|
# @return [String]
|
98
98
|
attr_accessor :contains_pypi_modules_conflict
|
99
99
|
|
100
|
+
# Composer image for which the build was happening.
|
101
|
+
# Corresponds to the JSON property `imageVersion`
|
102
|
+
# @return [String]
|
103
|
+
attr_accessor :image_version
|
104
|
+
|
100
105
|
# Output only. Extract from a docker image build log containing information
|
101
106
|
# about pypi modules conflicts.
|
102
107
|
# Corresponds to the JSON property `pypiConflictBuildLogExtract`
|
103
108
|
# @return [String]
|
104
109
|
attr_accessor :pypi_conflict_build_log_extract
|
105
110
|
|
111
|
+
# Pypi dependencies specified in the environment configuration, at the time when
|
112
|
+
# the build was triggered.
|
113
|
+
# Corresponds to the JSON property `pypiDependencies`
|
114
|
+
# @return [Hash<String,String>]
|
115
|
+
attr_accessor :pypi_dependencies
|
116
|
+
|
106
117
|
def initialize(**args)
|
107
118
|
update!(**args)
|
108
119
|
end
|
@@ -111,7 +122,9 @@ module Google
|
|
111
122
|
def update!(**args)
|
112
123
|
@build_log_uri = args[:build_log_uri] if args.key?(:build_log_uri)
|
113
124
|
@contains_pypi_modules_conflict = args[:contains_pypi_modules_conflict] if args.key?(:contains_pypi_modules_conflict)
|
125
|
+
@image_version = args[:image_version] if args.key?(:image_version)
|
114
126
|
@pypi_conflict_build_log_extract = args[:pypi_conflict_build_log_extract] if args.key?(:pypi_conflict_build_log_extract)
|
127
|
+
@pypi_dependencies = args[:pypi_dependencies] if args.key?(:pypi_dependencies)
|
115
128
|
end
|
116
129
|
end
|
117
130
|
|
@@ -309,6 +322,13 @@ module Google
|
|
309
322
|
# @return [Google::Apis::ComposerV1beta1::EncryptionConfig]
|
310
323
|
attr_accessor :encryption_config
|
311
324
|
|
325
|
+
# Optional. The size of the Cloud Composer environment. This field is supported
|
326
|
+
# for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and
|
327
|
+
# newer.
|
328
|
+
# Corresponds to the JSON property `environmentSize`
|
329
|
+
# @return [String]
|
330
|
+
attr_accessor :environment_size
|
331
|
+
|
312
332
|
# Output only. The Kubernetes Engine cluster used to run this environment.
|
313
333
|
# Corresponds to the JSON property `gkeCluster`
|
314
334
|
# @return [String]
|
@@ -356,6 +376,13 @@ module Google
|
|
356
376
|
# @return [Google::Apis::ComposerV1beta1::WebServerNetworkAccessControl]
|
357
377
|
attr_accessor :web_server_network_access_control
|
358
378
|
|
379
|
+
# The Kubernetes workloads configuration for GKE cluster associated with the
|
380
|
+
# Cloud Composer environment. Supported for Cloud Composer environments in
|
381
|
+
# versions composer-2.*.*-airflow-*.*.* and newer.
|
382
|
+
# Corresponds to the JSON property `workloadsConfig`
|
383
|
+
# @return [Google::Apis::ComposerV1beta1::WorkloadsConfig]
|
384
|
+
attr_accessor :workloads_config
|
385
|
+
|
359
386
|
def initialize(**args)
|
360
387
|
update!(**args)
|
361
388
|
end
|
@@ -366,6 +393,7 @@ module Google
|
|
366
393
|
@dag_gcs_prefix = args[:dag_gcs_prefix] if args.key?(:dag_gcs_prefix)
|
367
394
|
@database_config = args[:database_config] if args.key?(:database_config)
|
368
395
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
396
|
+
@environment_size = args[:environment_size] if args.key?(:environment_size)
|
369
397
|
@gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
|
370
398
|
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
371
399
|
@node_config = args[:node_config] if args.key?(:node_config)
|
@@ -374,6 +402,7 @@ module Google
|
|
374
402
|
@software_config = args[:software_config] if args.key?(:software_config)
|
375
403
|
@web_server_config = args[:web_server_config] if args.key?(:web_server_config)
|
376
404
|
@web_server_network_access_control = args[:web_server_network_access_control] if args.key?(:web_server_network_access_control)
|
405
|
+
@workloads_config = args[:workloads_config] if args.key?(:workloads_config)
|
377
406
|
end
|
378
407
|
end
|
379
408
|
|
@@ -700,7 +729,7 @@ module Google
|
|
700
729
|
|
701
730
|
# Optional. The Google Cloud Platform Service Account to be used by the
|
702
731
|
# workloads. If a service account is not specified, the "default" Compute Engine
|
703
|
-
# service account is used. Cannot be updated
|
732
|
+
# service account is used. Cannot be updated.
|
704
733
|
# Corresponds to the JSON property `serviceAccount`
|
705
734
|
# @return [String]
|
706
735
|
attr_accessor :service_account
|
@@ -899,6 +928,22 @@ module Google
|
|
899
928
|
class PrivateEnvironmentConfig
|
900
929
|
include Google::Apis::Core::Hashable
|
901
930
|
|
931
|
+
# Optional. The CIDR block from which IP range for Cloud Composer Network in
|
932
|
+
# tenant project will be reserved. Needs to be disjoint from
|
933
|
+
# private_cluster_config.master_ipv4_cidr_block and cloud_sql_ipv4_cidr_block.
|
934
|
+
# This field is supported for Cloud Composer environments in versions composer-2.
|
935
|
+
# *.*-airflow-*.*.* and newer.
|
936
|
+
# Corresponds to the JSON property `cloudComposerNetworkIpv4CidrBlock`
|
937
|
+
# @return [String]
|
938
|
+
attr_accessor :cloud_composer_network_ipv4_cidr_block
|
939
|
+
|
940
|
+
# Output only. The IP range reserved for the tenant project's Cloud Composer
|
941
|
+
# network. This field is supported for Cloud Composer environments in versions
|
942
|
+
# composer-2.*.*-airflow-*.*.* and newer.
|
943
|
+
# Corresponds to the JSON property `cloudComposerNetworkIpv4ReservedRange`
|
944
|
+
# @return [String]
|
945
|
+
attr_accessor :cloud_composer_network_ipv4_reserved_range
|
946
|
+
|
902
947
|
# Optional. The CIDR block from which IP range in tenant project will be
|
903
948
|
# reserved for Cloud SQL. Needs to be disjoint from web_server_ipv4_cidr_block
|
904
949
|
# Corresponds to the JSON property `cloudSqlIpv4CidrBlock`
|
@@ -937,6 +982,8 @@ module Google
|
|
937
982
|
|
938
983
|
# Update properties of this object
|
939
984
|
def update!(**args)
|
985
|
+
@cloud_composer_network_ipv4_cidr_block = args[:cloud_composer_network_ipv4_cidr_block] if args.key?(:cloud_composer_network_ipv4_cidr_block)
|
986
|
+
@cloud_composer_network_ipv4_reserved_range = args[:cloud_composer_network_ipv4_reserved_range] if args.key?(:cloud_composer_network_ipv4_reserved_range)
|
940
987
|
@cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
|
941
988
|
@enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
|
942
989
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
@@ -958,6 +1005,44 @@ module Google
|
|
958
1005
|
end
|
959
1006
|
end
|
960
1007
|
|
1008
|
+
# Configuration for resources used by Airflow schedulers.
|
1009
|
+
class SchedulerResource
|
1010
|
+
include Google::Apis::Core::Hashable
|
1011
|
+
|
1012
|
+
# Optional. The number of schedulers.
|
1013
|
+
# Corresponds to the JSON property `count`
|
1014
|
+
# @return [Fixnum]
|
1015
|
+
attr_accessor :count
|
1016
|
+
|
1017
|
+
# Optional. CPU request and limit for a single Airflow scheduler replica.
|
1018
|
+
# Corresponds to the JSON property `cpu`
|
1019
|
+
# @return [Float]
|
1020
|
+
attr_accessor :cpu
|
1021
|
+
|
1022
|
+
# Optional. Memory (GB) request and limit for a single Airflow scheduler replica.
|
1023
|
+
# Corresponds to the JSON property `memoryGb`
|
1024
|
+
# @return [Float]
|
1025
|
+
attr_accessor :memory_gb
|
1026
|
+
|
1027
|
+
# Optional. Storage (GB) request and limit for a single Airflow scheduler
|
1028
|
+
# replica.
|
1029
|
+
# Corresponds to the JSON property `storageGb`
|
1030
|
+
# @return [Float]
|
1031
|
+
attr_accessor :storage_gb
|
1032
|
+
|
1033
|
+
def initialize(**args)
|
1034
|
+
update!(**args)
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
# Update properties of this object
|
1038
|
+
def update!(**args)
|
1039
|
+
@count = args[:count] if args.key?(:count)
|
1040
|
+
@cpu = args[:cpu] if args.key?(:cpu)
|
1041
|
+
@memory_gb = args[:memory_gb] if args.key?(:memory_gb)
|
1042
|
+
@storage_gb = args[:storage_gb] if args.key?(:storage_gb)
|
1043
|
+
end
|
1044
|
+
end
|
1045
|
+
|
961
1046
|
# Specifies the selection and configuration of software inside the environment.
|
962
1047
|
class SoftwareConfig
|
963
1048
|
include Google::Apis::Core::Hashable
|
@@ -1118,6 +1203,113 @@ module Google
|
|
1118
1203
|
@allowed_ip_ranges = args[:allowed_ip_ranges] if args.key?(:allowed_ip_ranges)
|
1119
1204
|
end
|
1120
1205
|
end
|
1206
|
+
|
1207
|
+
# Configuration for resources used by Airflow web server.
|
1208
|
+
class WebServerResource
|
1209
|
+
include Google::Apis::Core::Hashable
|
1210
|
+
|
1211
|
+
# Optional. CPU request and limit for Airflow web server.
|
1212
|
+
# Corresponds to the JSON property `cpu`
|
1213
|
+
# @return [Float]
|
1214
|
+
attr_accessor :cpu
|
1215
|
+
|
1216
|
+
# Optional. Memory (GB) request and limit for Airflow web server.
|
1217
|
+
# Corresponds to the JSON property `memoryGb`
|
1218
|
+
# @return [Float]
|
1219
|
+
attr_accessor :memory_gb
|
1220
|
+
|
1221
|
+
# Optional. Storage (GB) request and limit for Airflow web server.
|
1222
|
+
# Corresponds to the JSON property `storageGb`
|
1223
|
+
# @return [Float]
|
1224
|
+
attr_accessor :storage_gb
|
1225
|
+
|
1226
|
+
def initialize(**args)
|
1227
|
+
update!(**args)
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
# Update properties of this object
|
1231
|
+
def update!(**args)
|
1232
|
+
@cpu = args[:cpu] if args.key?(:cpu)
|
1233
|
+
@memory_gb = args[:memory_gb] if args.key?(:memory_gb)
|
1234
|
+
@storage_gb = args[:storage_gb] if args.key?(:storage_gb)
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# Configuration for resources used by Airflow workers.
|
1239
|
+
class WorkerResource
|
1240
|
+
include Google::Apis::Core::Hashable
|
1241
|
+
|
1242
|
+
# Optional. CPU request and limit for a single Airflow worker replica.
|
1243
|
+
# Corresponds to the JSON property `cpu`
|
1244
|
+
# @return [Float]
|
1245
|
+
attr_accessor :cpu
|
1246
|
+
|
1247
|
+
# Optional. Maximum number of workers for autoscaling.
|
1248
|
+
# Corresponds to the JSON property `maxCount`
|
1249
|
+
# @return [Fixnum]
|
1250
|
+
attr_accessor :max_count
|
1251
|
+
|
1252
|
+
# Optional. Memory (GB) request and limit for a single Airflow worker replica.
|
1253
|
+
# Corresponds to the JSON property `memoryGb`
|
1254
|
+
# @return [Float]
|
1255
|
+
attr_accessor :memory_gb
|
1256
|
+
|
1257
|
+
# Optional. Minimum number of workers for autoscaling.
|
1258
|
+
# Corresponds to the JSON property `minCount`
|
1259
|
+
# @return [Fixnum]
|
1260
|
+
attr_accessor :min_count
|
1261
|
+
|
1262
|
+
# Optional. Storage (GB) request and limit for a single Airflow worker replica.
|
1263
|
+
# Corresponds to the JSON property `storageGb`
|
1264
|
+
# @return [Float]
|
1265
|
+
attr_accessor :storage_gb
|
1266
|
+
|
1267
|
+
def initialize(**args)
|
1268
|
+
update!(**args)
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
# Update properties of this object
|
1272
|
+
def update!(**args)
|
1273
|
+
@cpu = args[:cpu] if args.key?(:cpu)
|
1274
|
+
@max_count = args[:max_count] if args.key?(:max_count)
|
1275
|
+
@memory_gb = args[:memory_gb] if args.key?(:memory_gb)
|
1276
|
+
@min_count = args[:min_count] if args.key?(:min_count)
|
1277
|
+
@storage_gb = args[:storage_gb] if args.key?(:storage_gb)
|
1278
|
+
end
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
# The Kubernetes workloads configuration for GKE cluster associated with the
|
1282
|
+
# Cloud Composer environment. Supported for Cloud Composer environments in
|
1283
|
+
# versions composer-2.*.*-airflow-*.*.* and newer.
|
1284
|
+
class WorkloadsConfig
|
1285
|
+
include Google::Apis::Core::Hashable
|
1286
|
+
|
1287
|
+
# Configuration for resources used by Airflow schedulers.
|
1288
|
+
# Corresponds to the JSON property `scheduler`
|
1289
|
+
# @return [Google::Apis::ComposerV1beta1::SchedulerResource]
|
1290
|
+
attr_accessor :scheduler
|
1291
|
+
|
1292
|
+
# Configuration for resources used by Airflow web server.
|
1293
|
+
# Corresponds to the JSON property `webServer`
|
1294
|
+
# @return [Google::Apis::ComposerV1beta1::WebServerResource]
|
1295
|
+
attr_accessor :web_server
|
1296
|
+
|
1297
|
+
# Configuration for resources used by Airflow workers.
|
1298
|
+
# Corresponds to the JSON property `worker`
|
1299
|
+
# @return [Google::Apis::ComposerV1beta1::WorkerResource]
|
1300
|
+
attr_accessor :worker
|
1301
|
+
|
1302
|
+
def initialize(**args)
|
1303
|
+
update!(**args)
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
# Update properties of this object
|
1307
|
+
def update!(**args)
|
1308
|
+
@scheduler = args[:scheduler] if args.key?(:scheduler)
|
1309
|
+
@web_server = args[:web_server] if args.key?(:web_server)
|
1310
|
+
@worker = args[:worker] if args.key?(:worker)
|
1311
|
+
end
|
1312
|
+
end
|
1121
1313
|
end
|
1122
1314
|
end
|
1123
1315
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
+
class SchedulerResource
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
151
157
|
class SoftwareConfig
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
159
|
|
@@ -172,6 +178,24 @@ module Google
|
|
172
178
|
include Google::Apis::Core::JsonObjectSupport
|
173
179
|
end
|
174
180
|
|
181
|
+
class WebServerResource
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
|
+
class WorkerResource
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
193
|
+
class WorkloadsConfig
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
175
199
|
class AllowedIpRange
|
176
200
|
# @private
|
177
201
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -192,7 +216,9 @@ module Google
|
|
192
216
|
class Representation < Google::Apis::Core::JsonRepresentation
|
193
217
|
property :build_log_uri, as: 'buildLogUri'
|
194
218
|
property :contains_pypi_modules_conflict, as: 'containsPypiModulesConflict'
|
219
|
+
property :image_version, as: 'imageVersion'
|
195
220
|
property :pypi_conflict_build_log_extract, as: 'pypiConflictBuildLogExtract'
|
221
|
+
hash :pypi_dependencies, as: 'pypiDependencies'
|
196
222
|
end
|
197
223
|
end
|
198
224
|
|
@@ -248,6 +274,7 @@ module Google
|
|
248
274
|
|
249
275
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ComposerV1beta1::EncryptionConfig, decorator: Google::Apis::ComposerV1beta1::EncryptionConfig::Representation
|
250
276
|
|
277
|
+
property :environment_size, as: 'environmentSize'
|
251
278
|
property :gke_cluster, as: 'gkeCluster'
|
252
279
|
property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::ComposerV1beta1::MaintenanceWindow, decorator: Google::Apis::ComposerV1beta1::MaintenanceWindow::Representation
|
253
280
|
|
@@ -262,6 +289,8 @@ module Google
|
|
262
289
|
|
263
290
|
property :web_server_network_access_control, as: 'webServerNetworkAccessControl', class: Google::Apis::ComposerV1beta1::WebServerNetworkAccessControl, decorator: Google::Apis::ComposerV1beta1::WebServerNetworkAccessControl::Representation
|
264
291
|
|
292
|
+
property :workloads_config, as: 'workloadsConfig', class: Google::Apis::ComposerV1beta1::WorkloadsConfig, decorator: Google::Apis::ComposerV1beta1::WorkloadsConfig::Representation
|
293
|
+
|
265
294
|
end
|
266
295
|
end
|
267
296
|
|
@@ -378,6 +407,8 @@ module Google
|
|
378
407
|
class PrivateEnvironmentConfig
|
379
408
|
# @private
|
380
409
|
class Representation < Google::Apis::Core::JsonRepresentation
|
410
|
+
property :cloud_composer_network_ipv4_cidr_block, as: 'cloudComposerNetworkIpv4CidrBlock'
|
411
|
+
property :cloud_composer_network_ipv4_reserved_range, as: 'cloudComposerNetworkIpv4ReservedRange'
|
381
412
|
property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
|
382
413
|
property :enable_private_environment, as: 'enablePrivateEnvironment'
|
383
414
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1beta1::PrivateClusterConfig::Representation
|
@@ -393,6 +424,16 @@ module Google
|
|
393
424
|
end
|
394
425
|
end
|
395
426
|
|
427
|
+
class SchedulerResource
|
428
|
+
# @private
|
429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
430
|
+
property :count, as: 'count'
|
431
|
+
property :cpu, as: 'cpu'
|
432
|
+
property :memory_gb, as: 'memoryGb'
|
433
|
+
property :storage_gb, as: 'storageGb'
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
396
437
|
class SoftwareConfig
|
397
438
|
# @private
|
398
439
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -427,6 +468,38 @@ module Google
|
|
427
468
|
|
428
469
|
end
|
429
470
|
end
|
471
|
+
|
472
|
+
class WebServerResource
|
473
|
+
# @private
|
474
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
475
|
+
property :cpu, as: 'cpu'
|
476
|
+
property :memory_gb, as: 'memoryGb'
|
477
|
+
property :storage_gb, as: 'storageGb'
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
481
|
+
class WorkerResource
|
482
|
+
# @private
|
483
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
484
|
+
property :cpu, as: 'cpu'
|
485
|
+
property :max_count, as: 'maxCount'
|
486
|
+
property :memory_gb, as: 'memoryGb'
|
487
|
+
property :min_count, as: 'minCount'
|
488
|
+
property :storage_gb, as: 'storageGb'
|
489
|
+
end
|
490
|
+
end
|
491
|
+
|
492
|
+
class WorkloadsConfig
|
493
|
+
# @private
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
495
|
+
property :scheduler, as: 'scheduler', class: Google::Apis::ComposerV1beta1::SchedulerResource, decorator: Google::Apis::ComposerV1beta1::SchedulerResource::Representation
|
496
|
+
|
497
|
+
property :web_server, as: 'webServer', class: Google::Apis::ComposerV1beta1::WebServerResource, decorator: Google::Apis::ComposerV1beta1::WebServerResource::Representation
|
498
|
+
|
499
|
+
property :worker, as: 'worker', class: Google::Apis::ComposerV1beta1::WorkerResource, decorator: Google::Apis::ComposerV1beta1::WorkerResource::Representation
|
500
|
+
|
501
|
+
end
|
502
|
+
end
|
430
503
|
end
|
431
504
|
end
|
432
505
|
end
|
@@ -285,13 +285,16 @@ module Google
|
|
285
285
|
# Additionally, the new image version cannot effect a version downgrade and must
|
286
286
|
# match the current image version's Composer major version and Airflow major and
|
287
287
|
# minor versions. Consult the Cloud Composer Version List for valid values. *
|
288
|
-
# config.
|
289
|
-
#
|
290
|
-
#
|
291
|
-
#
|
292
|
-
#
|
293
|
-
#
|
294
|
-
#
|
288
|
+
# config.softwareConfig.schedulerCount * Horizontally scale the number of
|
289
|
+
# schedulers in Airflow. A positive integer not greater than the number of nodes
|
290
|
+
# must be provided in the `config.softwareConfig.schedulerCount` field. * config.
|
291
|
+
# databaseConfig.machineType * Cloud SQL machine type used by Airflow database.
|
292
|
+
# It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8 or
|
293
|
+
# db-n1-standard-16. * config.webServerConfig.machineType * Machine type on
|
294
|
+
# which Airflow web server is running. It has to be one of: composer-n1-
|
295
|
+
# webserver-2, composer-n1-webserver-4 or composer-n1-webserver-8. * config.
|
296
|
+
# maintenanceWindow * Maintenance window during which Cloud Composer components
|
297
|
+
# may be under maintenance.
|
295
298
|
# @param [String] fields
|
296
299
|
# Selector specifying which fields to include in a partial response.
|
297
300
|
# @param [String] quota_user
|
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.
|
4
|
+
version: 0.9.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: 2021-07-
|
11
|
+
date: 2021-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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/master/generated/google-apis-composer_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|