google-apis-composer_v1beta1 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49439d0c64e9d0d4268d831532eb21f0e8af367225e9c492843d5b891e8cb1d7
4
- data.tar.gz: 87338360be668967a9d3cebffa9db264be26ff631386485637222a0ed0771541
3
+ metadata.gz: de20326b78593f4adb4b34941232dd5b83cda97efa72a6eaf83c689cfc5c7a35
4
+ data.tar.gz: b0e5dceeb857251949809f85849cf1fb400982636b09419c616c9c7d0b80c1b1
5
5
  SHA512:
6
- metadata.gz: e4d008dd3ecf4103ac5524e121014383144e9861482d02ebe9e088a84383d7dbdd55560a2ec0c6b737c4843a9e40204351c7e9ca6022847ee568d875799fa54c
7
- data.tar.gz: 68261955a763ae89543e610b036230c4860a33618156bb765c0e43fcaf21970bb017824037a5a69ad5ee291a696cd8de12b0caa618158579d984d1c132b6b955
6
+ metadata.gz: e90bb21287685f0861131394ae09fd0ab778b1a3d557666485a1d204f13804fdbf15ecb2fc056b2817aa4a2efda9bf20b650d9f0d975bb186cf436ffc6db8ca9
7
+ data.tar.gz: b2cf629311e059abaf37b30c858e2d87b2dd19161175012ad0fb88c64cd71d7e3186670b8269717a98911334a4e3f520b13d5c414f730c5cdcd51cda027ed8be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.10.0 (2021-07-14)
4
+
5
+ * Regenerated from discovery document revision 20210705
6
+
3
7
  ### v0.9.0 (2021-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20210625
@@ -1109,6 +1109,11 @@ module Google
1109
1109
  # @return [String]
1110
1110
  attr_accessor :python_version
1111
1111
 
1112
+ # Optional. The number of schedulers for Airflow.
1113
+ # Corresponds to the JSON property `schedulerCount`
1114
+ # @return [Fixnum]
1115
+ attr_accessor :scheduler_count
1116
+
1112
1117
  def initialize(**args)
1113
1118
  update!(**args)
1114
1119
  end
@@ -1120,6 +1125,7 @@ module Google
1120
1125
  @image_version = args[:image_version] if args.key?(:image_version)
1121
1126
  @pypi_packages = args[:pypi_packages] if args.key?(:pypi_packages)
1122
1127
  @python_version = args[:python_version] if args.key?(:python_version)
1128
+ @scheduler_count = args[:scheduler_count] if args.key?(:scheduler_count)
1123
1129
  end
1124
1130
  end
1125
1131
 
@@ -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.9.0"
19
+ GEM_VERSION = "0.10.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 = "20210625"
25
+ REVISION = "20210705"
26
26
  end
27
27
  end
28
28
  end
@@ -442,6 +442,7 @@ module Google
442
442
  property :image_version, as: 'imageVersion'
443
443
  hash :pypi_packages, as: 'pypiPackages'
444
444
  property :python_version, as: 'pythonVersion'
445
+ property :scheduler_count, as: 'schedulerCount'
445
446
  end
446
447
  end
447
448
 
@@ -246,55 +246,57 @@ module Google
246
246
  # pre-existing user-specified PyPI packages and install botocore at version 1.7.
247
247
  # 14, the `updateMask` would contain the path "config.softwareConfig.
248
248
  # pypiPackages", and the patch environment would be the following: ` "config":` "
249
- # softwareConfig":` "pypiPackages":` "botocore":"==1.7.14" ` ` ` ` *Note:* Only
250
- # the following fields can be updated: * config.softwareConfig.pypiPackages *
251
- # Replace all custom custom PyPI packages. If a replacement package map is not
252
- # included in `environment`, all custom PyPI packages are cleared. It is an
253
- # error to provide both this mask and a mask specifying an individual package. *
254
- # config.softwareConfig.pypiPackages.packagename * Update the custom PyPI
255
- # package packagename, preserving other packages. To delete the package, include
256
- # it in `updateMask`, and omit the mapping for it in `environment.config.
257
- # softwareConfig.pypiPackages`. It is an error to provide both a mask of this
258
- # form and the "config.softwareConfig.pypiPackages" mask. * labels * Replace all
259
- # environment labels. If a replacement labels map is not included in `
260
- # environment`, all labels are cleared. It is an error to provide both this mask
261
- # and a mask specifying one or more individual labels. * labels.labelName * Set
262
- # the label named labelName, while preserving other labels. To delete the label,
263
- # include it in `updateMask` and omit its mapping in `environment.labels`. It is
264
- # an error to provide both a mask of this form and the "labels" mask. * config.
265
- # nodeCount * Horizontally scale the number of nodes in the environment. An
266
- # integer greater than or equal to 3 must be provided in the `config.nodeCount`
267
- # field. * config.webServerNetworkAccessControl * Replace the environment's
268
- # current WebServerNetworkAccessControl. * config.softwareConfig.
269
- # airflowConfigOverrides * Replace all Apache Airflow config overrides. If a
270
- # replacement config overrides map is not included in `environment`, all config
271
- # overrides are cleared. It is an error to provide both this mask and a mask
272
- # specifying one or more individual config overrides. * config.softwareConfig.
273
- # airflowConfigOverrides.section- name * Override the Apache Airflow config
274
- # property name in the section named section, preserving other properties. To
275
- # delete the property override, include it in `updateMask` and omit its mapping
276
- # in `environment.config.softwareConfig.airflowConfigOverrides`. It is an error
277
- # to provide both a mask of this form and the "config.softwareConfig.
278
- # airflowConfigOverrides" mask. * config.softwareConfig.envVariables * Replace
249
+ # softwareConfig":` "pypiPackages":` "botocore":"==1.7.14" ` ` ` ` **Note:**
250
+ # Only the following fields can be updated: * `config.softwareConfig.
251
+ # pypiPackages` * Replace all custom custom PyPI packages. If a replacement
252
+ # package map is not included in `environment`, all custom PyPI packages are
253
+ # cleared. It is an error to provide both this mask and a mask specifying an
254
+ # individual package. * `config.softwareConfig.pypiPackages.`packagename *
255
+ # Update the custom PyPI package *packagename*, preserving other packages. To
256
+ # delete the package, include it in `updateMask`, and omit the mapping for it in
257
+ # `environment.config.softwareConfig.pypiPackages`. It is an error to provide
258
+ # both a mask of this form and the `config.softwareConfig.pypiPackages` mask. * `
259
+ # labels` * Replace all environment labels. If a replacement labels map is not
260
+ # included in `environment`, all labels are cleared. It is an error to provide
261
+ # both this mask and a mask specifying one or more individual labels. * `labels.`
262
+ # labelName * Set the label named *labelName*, while preserving other labels. To
263
+ # delete the label, include it in `updateMask` and omit its mapping in `
264
+ # environment.labels`. It is an error to provide both a mask of this form and
265
+ # the `labels` mask. * `config.nodeCount` * Horizontally scale the number of
266
+ # nodes in the environment. An integer greater than or equal to 3 must be
267
+ # provided in the `config.nodeCount` field. * `config.
268
+ # webServerNetworkAccessControl` * Replace the environment's current
269
+ # WebServerNetworkAccessControl. * `config.softwareConfig.airflowConfigOverrides`
270
+ # * Replace all Apache Airflow config overrides. If a replacement config
271
+ # overrides map is not included in `environment`, all config overrides are
272
+ # cleared. It is an error to provide both this mask and a mask specifying one or
273
+ # more individual config overrides. * `config.softwareConfig.
274
+ # airflowConfigOverrides.`section-name * Override the Apache Airflow config
275
+ # property *name* in the section named *section*, preserving other properties.
276
+ # To delete the property override, include it in `updateMask` and omit its
277
+ # mapping in `environment.config.softwareConfig.airflowConfigOverrides`. It is
278
+ # an error to provide both a mask of this form and the `config.softwareConfig.
279
+ # airflowConfigOverrides` mask. * `config.softwareConfig.envVariables` * Replace
279
280
  # all environment variables. If a replacement environment variable map is not
280
281
  # included in `environment`, all custom environment variables are cleared. It is
281
282
  # an error to provide both this mask and a mask specifying one or more
282
- # individual environment variables. * config.softwareConfig.imageVersion *
283
+ # individual environment variables. * `config.softwareConfig.imageVersion` *
283
284
  # Upgrade the version of the environment in-place. Refer to `SoftwareConfig.
284
285
  # image_version` for information on how to format the new image version.
285
286
  # Additionally, the new image version cannot effect a version downgrade and must
286
287
  # match the current image version's Composer major version and Airflow major and
287
- # minor versions. Consult the Cloud Composer Version List for valid values. *
288
- # config.softwareConfig.schedulerCount * Horizontally scale the number of
288
+ # minor versions. Consult the [Cloud Composer Version List](https://cloud.google.
289
+ # com/composer/docs/concepts/versioning/composer-versions) for valid values. * `
290
+ # config.softwareConfig.schedulerCount` * Horizontally scale the number of
289
291
  # 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.
292
+ # must be provided in the `config.softwareConfig.schedulerCount` field. * `
293
+ # config.databaseConfig.machineType` * Cloud SQL machine type used by Airflow
294
+ # database. It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-
295
+ # standard-8 or db-n1-standard-16. * `config.webServerConfig.machineType` *
296
+ # Machine type on which Airflow web server is running. It has to be one of:
297
+ # composer-n1-webserver-2, composer-n1-webserver-4 or composer-n1-webserver-8. *
298
+ # `config.maintenanceWindow` * Maintenance window during which Cloud Composer
299
+ # components may be under maintenance.
298
300
  # @param [String] fields
299
301
  # Selector specifying which fields to include in a partial response.
300
302
  # @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.9.0
4
+ version: 0.10.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-12 00:00:00.000000000 Z
11
+ date: 2021-07-19 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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.10.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: []