google-apis-composer_v1beta1 0.25.0 → 0.27.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: 589cedcac8a5580d3a2bb8c1a9d915aa7f7528712135edbf2eb7e805557b0825
4
- data.tar.gz: bddcc5db35a6a35d02b93a9ead99cd43bac4166adb6f10d30079192355875b64
3
+ metadata.gz: 8608f0f06e201e71dc952ca10b9daedf4e949b371696db5590327fffd0f1c079
4
+ data.tar.gz: 642c75b6b32e3d2fc24599fb87cfba57be56aa089fcefc7d029c32870a22dfe9
5
5
  SHA512:
6
- metadata.gz: fcc39abe6bc2aa76a803d494f151b0894eaa415866a1e4f05357397d97fabd082762329fe142c73fa1000ed22af4ccfa727f09715cede3c391224bfa45ac95e3
7
- data.tar.gz: 47560e65596126a28f895d168deae9f078aa578007692d2ab33c2926236979a47d681b3087f7e4196727ab95a27ac35edd85e1cc28bacafa6603621224e4aac4
6
+ metadata.gz: 3f39c2ba4a2e5429f401e5743e84bb76c9bd81cd052739884c9ae80cd0405f51607a3289f4f15b3c9e708483a7d7685226154ddf2c27568c450f4431e43b9efc
7
+ data.tar.gz: e181fa5d5e048de6a03d353dce7dd7dbacadf22784e78cb05388745daf36917a159b3196c4203c21e317e002e682f373a0f650f96fba090d3b7b89a7051f7431
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.27.0 (2022-09-24)
4
+
5
+ * Regenerated from discovery document revision 20220920
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.26.0 (2022-08-03)
9
+
10
+ * Regenerated from discovery document revision 20220727
11
+ * Regenerated using generator version 0.9.0
12
+
3
13
  ### v0.25.0 (2022-07-01)
4
14
 
5
15
  * Regenerated using generator version 0.8.0
@@ -769,6 +769,27 @@ module Google
769
769
  end
770
770
  end
771
771
 
772
+ # Configuration options for networking connections in the Composer 2 environment.
773
+ class NetworkingConfig
774
+ include Google::Apis::Core::Hashable
775
+
776
+ # Optional. Indicates the user requested specifc connection type between Tenant
777
+ # and Customer projects. You cannot set networking connection type in public IP
778
+ # environment.
779
+ # Corresponds to the JSON property `connectionType`
780
+ # @return [String]
781
+ attr_accessor :connection_type
782
+
783
+ def initialize(**args)
784
+ update!(**args)
785
+ end
786
+
787
+ # Update properties of this object
788
+ def update!(**args)
789
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
790
+ end
791
+ end
792
+
772
793
  # The configuration information for the Kubernetes Engine nodes running the
773
794
  # Apache Airflow software.
774
795
  class NodeConfig
@@ -1113,6 +1134,11 @@ module Google
1113
1134
  attr_accessor :enable_privately_used_public_ips
1114
1135
  alias_method :enable_privately_used_public_ips?, :enable_privately_used_public_ips
1115
1136
 
1137
+ # Configuration options for networking connections in the Composer 2 environment.
1138
+ # Corresponds to the JSON property `networkingConfig`
1139
+ # @return [Google::Apis::ComposerV1beta1::NetworkingConfig]
1140
+ attr_accessor :networking_config
1141
+
1116
1142
  # Configuration options for the private GKE cluster in a Cloud Composer
1117
1143
  # environment.
1118
1144
  # Corresponds to the JSON property `privateClusterConfig`
@@ -1146,6 +1172,7 @@ module Google
1146
1172
  @cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
1147
1173
  @enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
1148
1174
  @enable_privately_used_public_ips = args[:enable_privately_used_public_ips] if args.key?(:enable_privately_used_public_ips)
1175
+ @networking_config = args[:networking_config] if args.key?(:networking_config)
1149
1176
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
1150
1177
  @web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
1151
1178
  @web_server_ipv4_reserved_range = args[:web_server_ipv4_reserved_range] if args.key?(:web_server_ipv4_reserved_range)
@@ -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.25.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220622"
25
+ REVISION = "20220920"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class NetworkingConfig
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class NodeConfig
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -423,6 +429,13 @@ module Google
423
429
  end
424
430
  end
425
431
 
432
+ class NetworkingConfig
433
+ # @private
434
+ class Representation < Google::Apis::Core::JsonRepresentation
435
+ property :connection_type, as: 'connectionType'
436
+ end
437
+ end
438
+
426
439
  class NodeConfig
427
440
  # @private
428
441
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -483,6 +496,8 @@ module Google
483
496
  property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
484
497
  property :enable_private_environment, as: 'enablePrivateEnvironment'
485
498
  property :enable_privately_used_public_ips, as: 'enablePrivatelyUsedPublicIps'
499
+ property :networking_config, as: 'networkingConfig', class: Google::Apis::ComposerV1beta1::NetworkingConfig, decorator: Google::Apis::ComposerV1beta1::NetworkingConfig::Representation
500
+
486
501
  property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1beta1::PrivateClusterConfig::Representation
487
502
 
488
503
  property :web_server_ipv4_cidr_block, as: 'webServerIpv4CidrBlock'
@@ -315,35 +315,33 @@ module Google
315
315
  # an error to provide both a mask of this form and the `config.softwareConfig.
316
316
  # airflowConfigOverrides` mask. * `config.softwareConfig.envVariables` * Replace
317
317
  # all environment variables. If a replacement environment variable map is not
318
- # included in `environment`, all custom environment variables are cleared. It is
319
- # an error to provide both this mask and a mask specifying one or more
320
- # individual environment variables. * `config.softwareConfig.imageVersion` *
321
- # Upgrade the version of the environment in-place. Refer to `SoftwareConfig.
322
- # image_version` for information on how to format the new image version.
323
- # Additionally, the new image version cannot effect a version downgrade, and
324
- # must match the current image version's Composer and Airflow major versions.
325
- # Consult the [Cloud Composer version list](/composer/docs/concepts/versioning/
326
- # composer-versions) for valid values. * `config.softwareConfig.schedulerCount` *
327
- # Horizontally scale the number of schedulers in Airflow. A positive integer
328
- # not greater than the number of nodes must be provided in the `config.
329
- # softwareConfig.schedulerCount` field. Supported for Cloud Composer
330
- # environments in versions composer-1.*.*-airflow-2.*.*. * `config.
331
- # softwareConfig.cloudDataLineageIntegration` * Configuration for Cloud Data
332
- # Lineage integration. * `config.databaseConfig.machineType` * Cloud SQL machine
333
- # type used by Airflow database. It has to be one of: db-n1-standard-2, db-n1-
334
- # standard-4, db-n1-standard-8 or db-n1-standard-16. Supported for Cloud
335
- # Composer environments in versions composer-1.*.*-airflow-*.*.*. * `config.
336
- # webServerConfig.machineType` * Machine type on which Airflow web server is
337
- # running. It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4
338
- # or composer-n1-webserver-8. Supported for Cloud Composer environments in
339
- # versions composer-1.*.*-airflow-*.*.*. * `config.maintenanceWindow` *
340
- # Maintenance window during which Cloud Composer components may be under
341
- # maintenance. * `config.workloadsConfig` * The workloads configuration settings
342
- # for the GKE cluster associated with the Cloud Composer environment. Supported
343
- # for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and
344
- # newer. * `config.environmentSize` * The size of the Cloud Composer environment.
345
- # Supported for Cloud Composer environments in versions composer-2.*.*-airflow-*
346
- # .*.* and newer.
318
+ # included in `environment`, all custom environment variables are cleared. * `
319
+ # config.softwareConfig.imageVersion` * Upgrade the version of the environment
320
+ # in-place. Refer to `SoftwareConfig.image_version` for information on how to
321
+ # format the new image version. Additionally, the new image version cannot
322
+ # effect a version downgrade, and must match the current image version's
323
+ # Composer and Airflow major versions. Consult the [Cloud Composer version list](
324
+ # /composer/docs/concepts/versioning/composer-versions) for valid values. * `
325
+ # config.softwareConfig.schedulerCount` * Horizontally scale the number of
326
+ # schedulers in Airflow. A positive integer not greater than the number of nodes
327
+ # must be provided in the `config.softwareConfig.schedulerCount` field.
328
+ # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-2.
329
+ # *.*. * `config.softwareConfig.cloudDataLineageIntegration` * Configuration for
330
+ # Cloud Data Lineage integration. * `config.databaseConfig.machineType` * Cloud
331
+ # SQL machine type used by Airflow database. It has to be one of: db-n1-standard-
332
+ # 2, db-n1-standard-4, db-n1-standard-8 or db-n1-standard-16. Supported for
333
+ # Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*. * `
334
+ # config.webServerConfig.machineType` * Machine type on which Airflow web server
335
+ # is running. It has to be one of: composer-n1-webserver-2, composer-n1-
336
+ # webserver-4 or composer-n1-webserver-8. Supported for Cloud Composer
337
+ # environments in versions composer-1.*.*-airflow-*.*.*. * `config.
338
+ # maintenanceWindow` * Maintenance window during which Cloud Composer components
339
+ # may be under maintenance. * `config.workloadsConfig` * The workloads
340
+ # configuration settings for the GKE cluster associated with the Cloud Composer
341
+ # environment. Supported for Cloud Composer environments in versions composer-2.*
342
+ # .*-airflow-*.*.* and newer. * `config.environmentSize` * The size of the Cloud
343
+ # Composer environment. Supported for Cloud Composer environments in versions
344
+ # composer-2.*.*-airflow-*.*.* and newer.
347
345
  # @param [String] fields
348
346
  # Selector specifying which fields to include in a partial response.
349
347
  # @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.25.0
4
+ version: 0.27.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: 2022-07-04 00:00:00.000000000 Z
11
+ date: 2022-09-26 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.7'
19
+ version: 0.9.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.7'
29
+ version: 0.9.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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.27.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: []