google-apis-composer_v1beta1 0.15.0 → 0.16.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: 8de9c3df4cdf33b64ea91c625b1b1a72795294237e8e3d630f343049fb02fac2
4
- data.tar.gz: 43e3373b344e999fcd3b2857c127114ca79a1114782e2feb1c523c8b0f98bfdd
3
+ metadata.gz: 26728918f871af2b106342f96e570606002631848f46d48efe74e8a7be093bd4
4
+ data.tar.gz: 4814e47ff25be828c777f51484df0a1eae0f6c34df0d94d414432d2622052500
5
5
  SHA512:
6
- metadata.gz: 19c88dc518ca0b90388621dd550caad027960e5b08c1120ff3977825b10f6eb94384e84aa3c44d44e6720f0eb5569145cccbf87019626bfd1a105bb998c2b1c8
7
- data.tar.gz: c74aeeed9c4278ed56c86ea421bd091fa4d8fc2c60653468095f3f8d0bcddba154c7f9cf2c75f79c1b2c998be97b62d3c00a0e6822ae7470b43476022a15be67
6
+ metadata.gz: 75760e6e9521e07b26715736e2072a69908d7f43eefd2e73954b168e4ff79b630ba8178d2583cd0694e59f1c492948cbf6615def83a642ad5116e570dfd465c1
7
+ data.tar.gz: 8e77d76d3d9e6ec185af11e5cbf0ae37b9fcfa059e99db8e4409a478873d9e17a9c99f202ec8e42df0646b3bcd5cac25c119f233a20edc5cbbf63eb5f9a3edb1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.16.0 (2021-11-20)
4
+
5
+ * Regenerated from discovery document revision 20211113
6
+
3
7
  ### v0.15.0 (2021-11-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20211102
@@ -413,8 +413,7 @@ module Google
413
413
  # @return [Google::Apis::ComposerV1beta1::WebServerConfig]
414
414
  attr_accessor :web_server_config
415
415
 
416
- # Network-level access control policy for the Airflow web server. Supported for
417
- # Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
416
+ # Network-level access control policy for the Airflow web server.
418
417
  # Corresponds to the JSON property `webServerNetworkAccessControl`
419
418
  # @return [Google::Apis::ComposerV1beta1::WebServerNetworkAccessControl]
420
419
  attr_accessor :web_server_network_access_control
@@ -658,6 +657,19 @@ module Google
658
657
  end
659
658
  end
660
659
 
660
+ # Load environment state response.
661
+ class LoadEnvironmentStateResponse
662
+ include Google::Apis::Core::Hashable
663
+
664
+ def initialize(**args)
665
+ update!(**args)
666
+ end
667
+
668
+ # Update properties of this object
669
+ def update!(**args)
670
+ end
671
+ end
672
+
661
673
  # The configuration settings for Cloud Composer maintenance window. The
662
674
  # following example: ``` ` "startTime":"2019-08-01T01:00:00Z" "endTime":"2019-08-
663
675
  # 01T07:00:00Z" "recurrence":"FREQ=WEEKLY;BYDAY=TU,WE" ` ``` would define a
@@ -1026,6 +1038,14 @@ module Google
1026
1038
  class PrivateEnvironmentConfig
1027
1039
  include Google::Apis::Core::Hashable
1028
1040
 
1041
+ # Optional. When specified, the environment will use Private Service Connect
1042
+ # instead of VPC peerings to connect to Cloud SQL in the Tenant Project, and the
1043
+ # PSC endpoint in the Customer Project will use an IP address from this
1044
+ # subnetwork.
1045
+ # Corresponds to the JSON property `cloudComposerConnectionSubnetwork`
1046
+ # @return [String]
1047
+ attr_accessor :cloud_composer_connection_subnetwork
1048
+
1029
1049
  # Optional. The CIDR block from which IP range for Cloud Composer Network in
1030
1050
  # tenant project will be reserved. Needs to be disjoint from
1031
1051
  # private_cluster_config.master_ipv4_cidr_block and cloud_sql_ipv4_cidr_block.
@@ -1091,6 +1111,7 @@ module Google
1091
1111
 
1092
1112
  # Update properties of this object
1093
1113
  def update!(**args)
1114
+ @cloud_composer_connection_subnetwork = args[:cloud_composer_connection_subnetwork] if args.key?(:cloud_composer_connection_subnetwork)
1094
1115
  @cloud_composer_network_ipv4_cidr_block = args[:cloud_composer_network_ipv4_cidr_block] if args.key?(:cloud_composer_network_ipv4_cidr_block)
1095
1116
  @cloud_composer_network_ipv4_reserved_range = args[:cloud_composer_network_ipv4_reserved_range] if args.key?(:cloud_composer_network_ipv4_reserved_range)
1096
1117
  @cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
@@ -1281,6 +1302,27 @@ module Google
1281
1302
  end
1282
1303
  end
1283
1304
 
1305
+ # Store environment state response.
1306
+ class StoreEnvironmentStateResponse
1307
+ include Google::Apis::Core::Hashable
1308
+
1309
+ # The fully-resolved Cloud Storage location of the created snapshot, e.g.: "gs://
1310
+ # my-bucket/snapshots/project_id/location/environment_uuid/timestamp". This
1311
+ # field is populated only if the snapshot creation was successful.
1312
+ # Corresponds to the JSON property `snapshotLocation`
1313
+ # @return [String]
1314
+ attr_accessor :snapshot_location
1315
+
1316
+ def initialize(**args)
1317
+ update!(**args)
1318
+ end
1319
+
1320
+ # Update properties of this object
1321
+ def update!(**args)
1322
+ @snapshot_location = args[:snapshot_location] if args.key?(:snapshot_location)
1323
+ end
1324
+ end
1325
+
1284
1326
  # The configuration settings for the Airflow web server App Engine instance.
1285
1327
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1286
1328
  # *.*.
@@ -1306,8 +1348,7 @@ module Google
1306
1348
  end
1307
1349
  end
1308
1350
 
1309
- # Network-level access control policy for the Airflow web server. Supported for
1310
- # Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
1351
+ # Network-level access control policy for the Airflow web server.
1311
1352
  class WebServerNetworkAccessControl
1312
1353
  include Google::Apis::Core::Hashable
1313
1354
 
@@ -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.15.0"
19
+ GEM_VERSION = "0.16.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 = "20211102"
25
+ REVISION = "20211113"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class LoadEnvironmentStateResponse
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class MaintenanceWindow
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -178,6 +184,12 @@ module Google
178
184
  include Google::Apis::Core::JsonObjectSupport
179
185
  end
180
186
 
187
+ class StoreEnvironmentStateResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class WebServerConfig
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -367,6 +379,12 @@ module Google
367
379
  end
368
380
  end
369
381
 
382
+ class LoadEnvironmentStateResponse
383
+ # @private
384
+ class Representation < Google::Apis::Core::JsonRepresentation
385
+ end
386
+ end
387
+
370
388
  class MaintenanceWindow
371
389
  # @private
372
390
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -439,6 +457,7 @@ module Google
439
457
  class PrivateEnvironmentConfig
440
458
  # @private
441
459
  class Representation < Google::Apis::Core::JsonRepresentation
460
+ property :cloud_composer_connection_subnetwork, as: 'cloudComposerConnectionSubnetwork'
442
461
  property :cloud_composer_network_ipv4_cidr_block, as: 'cloudComposerNetworkIpv4CidrBlock'
443
462
  property :cloud_composer_network_ipv4_reserved_range, as: 'cloudComposerNetworkIpv4ReservedRange'
444
463
  property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
@@ -488,6 +507,13 @@ module Google
488
507
  end
489
508
  end
490
509
 
510
+ class StoreEnvironmentStateResponse
511
+ # @private
512
+ class Representation < Google::Apis::Core::JsonRepresentation
513
+ property :snapshot_location, as: 'snapshotLocation'
514
+ end
515
+ end
516
+
491
517
  class WebServerConfig
492
518
  # @private
493
519
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -267,12 +267,11 @@ module Google
267
267
  # provided in the `config.nodeCount` field. Supported for Cloud Composer
268
268
  # environments in versions composer-1.*.*-airflow-*.*.*. * `config.
269
269
  # webServerNetworkAccessControl` * Replace the environment's current
270
- # WebServerNetworkAccessControl. Supported for Cloud Composer environments in
271
- # versions composer-1.*.*-airflow-*.*.*. * `config.softwareConfig.
272
- # airflowConfigOverrides` * Replace all Apache Airflow config overrides. If a
273
- # replacement config overrides map is not included in `environment`, all config
274
- # overrides are cleared. It is an error to provide both this mask and a mask
275
- # specifying one or more individual config overrides. * `config.softwareConfig.
270
+ # WebServerNetworkAccessControl. * `config.softwareConfig.airflowConfigOverrides`
271
+ # * Replace all Apache Airflow config overrides. If a replacement config
272
+ # overrides map is not included in `environment`, all config overrides are
273
+ # cleared. It is an error to provide both this mask and a mask specifying one or
274
+ # more individual config overrides. * `config.softwareConfig.
276
275
  # airflowConfigOverrides.`section-name * Override the Apache Airflow config
277
276
  # property *name* in the section named *section*, preserving other properties.
278
277
  # To delete the property override, include it in `updateMask` and omit its
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.15.0
4
+ version: 0.16.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-11-15 00:00:00.000000000 Z
11
+ date: 2021-12-06 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/main/generated/google-apis-composer_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.16.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: []