google-apis-composer_v1beta1 0.57.0 → 0.58.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: a8787fa2fa8eaa64aaa87b531b2a5e2a76d14cf84a3cd9c565562c543bb02081
|
|
4
|
+
data.tar.gz: b7154f629d990164128dd10a0bf8bfffe8c337812d7a2c89795e3ad07b406e21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44e13cbf8e9565a804795780358639969d6d324f693a0ad70d35327fe8de0526794e72f68a3b60711d1a84c77ee3e22c9fb6466d41bf35eb3202865ae89442c6
|
|
7
|
+
data.tar.gz: 38c10c1f1d2631119452b1214643229cfccdf5a37efa17a5a27f60a5e20526207b1c3009ac44eb3b99d17a626757144ffe7c96134286e45cf501e91446b37b2f
|
data/CHANGELOG.md
CHANGED
|
@@ -1810,6 +1810,11 @@ module Google
|
|
|
1810
1810
|
# @return [Google::Apis::ComposerV1beta1::NetworkingConfig]
|
|
1811
1811
|
attr_accessor :networking_config
|
|
1812
1812
|
|
|
1813
|
+
# Optional. Networking type for the environment, either private or public.
|
|
1814
|
+
# Corresponds to the JSON property `networkingType`
|
|
1815
|
+
# @return [String]
|
|
1816
|
+
attr_accessor :networking_type
|
|
1817
|
+
|
|
1813
1818
|
# Configuration options for the private GKE cluster in a Cloud Composer
|
|
1814
1819
|
# environment.
|
|
1815
1820
|
# Corresponds to the JSON property `privateClusterConfig`
|
|
@@ -1845,6 +1850,7 @@ module Google
|
|
|
1845
1850
|
@enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
|
|
1846
1851
|
@enable_privately_used_public_ips = args[:enable_privately_used_public_ips] if args.key?(:enable_privately_used_public_ips)
|
|
1847
1852
|
@networking_config = args[:networking_config] if args.key?(:networking_config)
|
|
1853
|
+
@networking_type = args[:networking_type] if args.key?(:networking_type)
|
|
1848
1854
|
@private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
|
|
1849
1855
|
@web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
|
|
1850
1856
|
@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.58.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260219"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -853,6 +853,7 @@ module Google
|
|
|
853
853
|
property :enable_privately_used_public_ips, as: 'enablePrivatelyUsedPublicIps'
|
|
854
854
|
property :networking_config, as: 'networkingConfig', class: Google::Apis::ComposerV1beta1::NetworkingConfig, decorator: Google::Apis::ComposerV1beta1::NetworkingConfig::Representation
|
|
855
855
|
|
|
856
|
+
property :networking_type, as: 'networkingType'
|
|
856
857
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1beta1::PrivateClusterConfig::Representation
|
|
857
858
|
|
|
858
859
|
property :web_server_ipv4_cidr_block, as: 'webServerIpv4CidrBlock'
|
|
@@ -31,6 +31,9 @@ module Google
|
|
|
31
31
|
|
|
32
32
|
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
|
34
|
+
|
|
35
|
+
# See, edit, configure, and delete your Google Cloud Composer data and see the email address for your Google Account
|
|
36
|
+
AUTH_CLOUDCOMPOSER = 'https://www.googleapis.com/auth/cloudcomposer'
|
|
34
37
|
end
|
|
35
38
|
end
|
|
36
39
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.58.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.58.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|