google-apis-composer_v1beta1 0.26.0 → 0.27.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: 8608f0f06e201e71dc952ca10b9daedf4e949b371696db5590327fffd0f1c079
|
4
|
+
data.tar.gz: 642c75b6b32e3d2fc24599fb87cfba57be56aa089fcefc7d029c32870a22dfe9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f39c2ba4a2e5429f401e5743e84bb76c9bd81cd052739884c9ae80cd0405f51607a3289f4f15b3c9e708483a7d7685226154ddf2c27568c450f4431e43b9efc
|
7
|
+
data.tar.gz: e181fa5d5e048de6a03d353dce7dd7dbacadf22784e78cb05388745daf36917a159b3196c4203c21e317e002e682f373a0f650f96fba090d3b7b89a7051f7431
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.26.0 (2022-08-03)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220727
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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'
|
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.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-
|
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:
|
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:
|
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.
|
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: []
|