google-apis-composer_v1 0.28.0 → 0.30.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: 6c1d05c3957db0f870231bef431c08feb99ed3bf17aebbd89bb650084c1c2eed
4
- data.tar.gz: 9ad04f2de9a410a68ca817cdd9a40c38c52c90f2973079394a1492ada6f357d9
3
+ metadata.gz: 33bbca7f55439980009cd098e7731acefa3905adebb7c0e03dde30d4514f0469
4
+ data.tar.gz: d6ebfd962e988c9b529ac7cce9dac6ad155e7c0832ccce237880d114272147a8
5
5
  SHA512:
6
- metadata.gz: a41fd740bf8a736108e38ed5006e0858269eb0d647f0d37d1fb6bb2879d6e7dab755904acfc9990e213d77d127c74f06a30eab450281970d705f4a0cfa5e9cf0
7
- data.tar.gz: 98f5e1db7abe4d1f42699c6c5672fca881bd4332df1e829481dd6358f0c656e36de6c5fca08790cc567b816d0c5e886e140d30137e675c1373c2ea1627e4cc33
6
+ metadata.gz: 7e92469198ef38ec05c390a96c5c6db14651bce3a5e04f81794b040dffe04c47cdba02d6f9e749a089c63fc7f2a8bf1070cadc106bb7082fe57f5016cb8ccc2b
7
+ data.tar.gz: f67f8cc9fa049ab47112e27cf3fff8c70b6f7f69a6325860f867ab9f8ba75f938cc22d767e6f58a7b6dff273477a90a7d49b33d307dfd4da4fe31814c99f1fb5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Release history for google-apis-composer_v1
2
2
 
3
+ ### v0.30.0 (2022-10-28)
4
+
5
+ * Regenerated from discovery document revision 20221012
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.29.0 (2022-09-24)
9
+
10
+ * Regenerated from discovery document revision 20220920
11
+ * Regenerated using generator version 0.10.0
12
+ * Unspecified changes
13
+
3
14
  ### v0.28.0 (2022-08-03)
4
15
 
5
16
  * Regenerated from discovery document revision 20220727
@@ -619,6 +619,19 @@ module Google
619
619
  end
620
620
  end
621
621
 
622
+ # Response to LoadSnapshotRequest.
623
+ class LoadSnapshotResponse
624
+ include Google::Apis::Core::Hashable
625
+
626
+ def initialize(**args)
627
+ update!(**args)
628
+ end
629
+
630
+ # Update properties of this object
631
+ def update!(**args)
632
+ end
633
+ end
634
+
622
635
  # The configuration settings for Cloud Composer maintenance window. The
623
636
  # following example: ``` ` "startTime":"2019-08-01T01:00:00Z" "endTime":"2019-08-
624
637
  # 01T07:00:00Z" "recurrence":"FREQ=WEEKLY;BYDAY=TU,WE" ` ``` would define a
@@ -688,6 +701,27 @@ module Google
688
701
  end
689
702
  end
690
703
 
704
+ # Configuration options for networking connections in the Composer 2 environment.
705
+ class NetworkingConfig
706
+ include Google::Apis::Core::Hashable
707
+
708
+ # Optional. Indicates the user requested specifc connection type between Tenant
709
+ # and Customer projects. You cannot set networking connection type in public IP
710
+ # environment.
711
+ # Corresponds to the JSON property `connectionType`
712
+ # @return [String]
713
+ attr_accessor :connection_type
714
+
715
+ def initialize(**args)
716
+ update!(**args)
717
+ end
718
+
719
+ # Update properties of this object
720
+ def update!(**args)
721
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
722
+ end
723
+ end
724
+
691
725
  # The configuration information for the Kubernetes Engine nodes running the
692
726
  # Apache Airflow software.
693
727
  class NodeConfig
@@ -1019,6 +1053,11 @@ module Google
1019
1053
  attr_accessor :enable_privately_used_public_ips
1020
1054
  alias_method :enable_privately_used_public_ips?, :enable_privately_used_public_ips
1021
1055
 
1056
+ # Configuration options for networking connections in the Composer 2 environment.
1057
+ # Corresponds to the JSON property `networkingConfig`
1058
+ # @return [Google::Apis::ComposerV1::NetworkingConfig]
1059
+ attr_accessor :networking_config
1060
+
1022
1061
  # Configuration options for the private GKE cluster in a Cloud Composer
1023
1062
  # environment.
1024
1063
  # Corresponds to the JSON property `privateClusterConfig`
@@ -1052,12 +1091,34 @@ module Google
1052
1091
  @cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
1053
1092
  @enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
1054
1093
  @enable_privately_used_public_ips = args[:enable_privately_used_public_ips] if args.key?(:enable_privately_used_public_ips)
1094
+ @networking_config = args[:networking_config] if args.key?(:networking_config)
1055
1095
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
1056
1096
  @web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
1057
1097
  @web_server_ipv4_reserved_range = args[:web_server_ipv4_reserved_range] if args.key?(:web_server_ipv4_reserved_range)
1058
1098
  end
1059
1099
  end
1060
1100
 
1101
+ # Response to SaveSnapshotRequest.
1102
+ class SaveSnapshotResponse
1103
+ include Google::Apis::Core::Hashable
1104
+
1105
+ # The fully-resolved Cloud Storage path of the created snapshot, e.g.: "gs://my-
1106
+ # bucket/snapshots/project_location_environment_timestamp". This field is
1107
+ # populated only if the snapshot creation was successful.
1108
+ # Corresponds to the JSON property `snapshotPath`
1109
+ # @return [String]
1110
+ attr_accessor :snapshot_path
1111
+
1112
+ def initialize(**args)
1113
+ update!(**args)
1114
+ end
1115
+
1116
+ # Update properties of this object
1117
+ def update!(**args)
1118
+ @snapshot_path = args[:snapshot_path] if args.key?(:snapshot_path)
1119
+ end
1120
+ end
1121
+
1061
1122
  # Configuration for resources used by Airflow schedulers.
1062
1123
  class SchedulerResource
1063
1124
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComposerV1
18
18
  # Version of the google-apis-composer_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220727"
25
+ REVISION = "20221012"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,12 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class LoadSnapshotResponse
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
109
115
  class MaintenanceWindow
110
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
117
 
@@ -118,6 +124,12 @@ module Google
118
124
  include Google::Apis::Core::JsonObjectSupport
119
125
  end
120
126
 
127
+ class NetworkingConfig
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
121
133
  class NodeConfig
122
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
135
 
@@ -148,6 +160,12 @@ module Google
148
160
  include Google::Apis::Core::JsonObjectSupport
149
161
  end
150
162
 
163
+ class SaveSnapshotResponse
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
151
169
  class SchedulerResource
152
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
171
 
@@ -348,6 +366,12 @@ module Google
348
366
  end
349
367
  end
350
368
 
369
+ class LoadSnapshotResponse
370
+ # @private
371
+ class Representation < Google::Apis::Core::JsonRepresentation
372
+ end
373
+ end
374
+
351
375
  class MaintenanceWindow
352
376
  # @private
353
377
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -366,6 +390,13 @@ module Google
366
390
  end
367
391
  end
368
392
 
393
+ class NetworkingConfig
394
+ # @private
395
+ class Representation < Google::Apis::Core::JsonRepresentation
396
+ property :connection_type, as: 'connectionType'
397
+ end
398
+ end
399
+
369
400
  class NodeConfig
370
401
  # @private
371
402
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -425,6 +456,8 @@ module Google
425
456
  property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
426
457
  property :enable_private_environment, as: 'enablePrivateEnvironment'
427
458
  property :enable_privately_used_public_ips, as: 'enablePrivatelyUsedPublicIps'
459
+ property :networking_config, as: 'networkingConfig', class: Google::Apis::ComposerV1::NetworkingConfig, decorator: Google::Apis::ComposerV1::NetworkingConfig::Representation
460
+
428
461
  property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1::PrivateClusterConfig::Representation
429
462
 
430
463
  property :web_server_ipv4_cidr_block, as: 'webServerIpv4CidrBlock'
@@ -432,6 +465,13 @@ module Google
432
465
  end
433
466
  end
434
467
 
468
+ class SaveSnapshotResponse
469
+ # @private
470
+ class Representation < Google::Apis::Core::JsonRepresentation
471
+ property :snapshot_path, as: 'snapshotPath'
472
+ end
473
+ end
474
+
435
475
  class SchedulerResource
436
476
  # @private
437
477
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.30.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-08-08 00:00:00.000000000 Z
11
+ date: 2022-10-31 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.1
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.1
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1
63
63
  post_install_message:
64
64
  rdoc_options: []