google-apis-composer_v1 0.29.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33bbca7f55439980009cd098e7731acefa3905adebb7c0e03dde30d4514f0469
|
4
|
+
data.tar.gz: d6ebfd962e988c9b529ac7cce9dac6ad155e7c0832ccce237880d114272147a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e92469198ef38ec05c390a96c5c6db14651bce3a5e04f81794b040dffe04c47cdba02d6f9e749a089c63fc7f2a8bf1070cadc106bb7082fe57f5016cb8ccc2b
|
7
|
+
data.tar.gz: f67f8cc9fa049ab47112e27cf3fff8c70b6f7f69a6325860f867ab9f8ba75f938cc22d767e6f58a7b6dff273477a90a7d49b33d307dfd4da4fe31814c99f1fb5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.29.0 (2022-09-24)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220920
|
@@ -701,6 +701,27 @@ module Google
|
|
701
701
|
end
|
702
702
|
end
|
703
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
|
+
|
704
725
|
# The configuration information for the Kubernetes Engine nodes running the
|
705
726
|
# Apache Airflow software.
|
706
727
|
class NodeConfig
|
@@ -1032,6 +1053,11 @@ module Google
|
|
1032
1053
|
attr_accessor :enable_privately_used_public_ips
|
1033
1054
|
alias_method :enable_privately_used_public_ips?, :enable_privately_used_public_ips
|
1034
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
|
+
|
1035
1061
|
# Configuration options for the private GKE cluster in a Cloud Composer
|
1036
1062
|
# environment.
|
1037
1063
|
# Corresponds to the JSON property `privateClusterConfig`
|
@@ -1065,6 +1091,7 @@ module Google
|
|
1065
1091
|
@cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
|
1066
1092
|
@enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
|
1067
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)
|
1068
1095
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
1069
1096
|
@web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
|
1070
1097
|
@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 ComposerV1
|
18
18
|
# Version of the google-apis-composer_v1 gem
|
19
|
-
GEM_VERSION = "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.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221012"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class NetworkingConfig
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class NodeConfig
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -384,6 +390,13 @@ module Google
|
|
384
390
|
end
|
385
391
|
end
|
386
392
|
|
393
|
+
class NetworkingConfig
|
394
|
+
# @private
|
395
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
396
|
+
property :connection_type, as: 'connectionType'
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
387
400
|
class NodeConfig
|
388
401
|
# @private
|
389
402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -443,6 +456,8 @@ module Google
|
|
443
456
|
property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
|
444
457
|
property :enable_private_environment, as: 'enablePrivateEnvironment'
|
445
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
|
+
|
446
461
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1::PrivateClusterConfig::Representation
|
447
462
|
|
448
463
|
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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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.9.
|
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.9.
|
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.
|
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: []
|