google-apis-container_v1 0.9.0 → 0.10.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: 2c537a2c54508138e2278f6d7f9e1a9e121e5f0a3b033a68b5c8d9a13b51a404
|
4
|
+
data.tar.gz: c2d058841f98364040549f151d1b3e838e0327ba52a01c01df2abf4c7a15728f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 908ab43b8cbf1d38fc8d431e07d9413cd733b5d4fbe4000263a75d8ce09441e25f53d5366c2ec8fabe99841f89cc8925533d3f557777a845d86a974f0179f725
|
7
|
+
data.tar.gz: 42f6931169975f1fe10686301ecdbaa28cbab3eb72d4dc4f8f48f76c33e9ef0a41d6dd1d1c95b77de0699cae126b1c9c22b2052cd94281d6afcfc39f6ace9630
|
data/CHANGELOG.md
CHANGED
@@ -977,6 +977,12 @@ module Google
|
|
977
977
|
# @return [Google::Apis::ContainerV1::IntraNodeVisibilityConfig]
|
978
978
|
attr_accessor :desired_intra_node_visibility_config
|
979
979
|
|
980
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
981
|
+
# subsetting on this cluster.
|
982
|
+
# Corresponds to the JSON property `desiredL4ilbSubsettingConfig`
|
983
|
+
# @return [Google::Apis::ContainerV1::IlbSubsettingConfig]
|
984
|
+
attr_accessor :desired_l4ilb_subsetting_config
|
985
|
+
|
980
986
|
# The desired list of Google Compute Engine [zones](https://cloud.google.com/
|
981
987
|
# compute/docs/zones#available) in which the cluster's nodes should be located.
|
982
988
|
# This list must always include the cluster's primary zone. Warning: changing
|
@@ -1111,6 +1117,7 @@ module Google
|
|
1111
1117
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1112
1118
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1113
1119
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1120
|
+
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
1114
1121
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
1115
1122
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
1116
1123
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
@@ -1627,6 +1634,27 @@ module Google
|
|
1627
1634
|
end
|
1628
1635
|
end
|
1629
1636
|
|
1637
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
1638
|
+
# subsetting on this cluster.
|
1639
|
+
class IlbSubsettingConfig
|
1640
|
+
include Google::Apis::Core::Hashable
|
1641
|
+
|
1642
|
+
# Enables l4 ILB subsetting for this cluster.
|
1643
|
+
# Corresponds to the JSON property `enabled`
|
1644
|
+
# @return [Boolean]
|
1645
|
+
attr_accessor :enabled
|
1646
|
+
alias_method :enabled?, :enabled
|
1647
|
+
|
1648
|
+
def initialize(**args)
|
1649
|
+
update!(**args)
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
# Update properties of this object
|
1653
|
+
def update!(**args)
|
1654
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1655
|
+
end
|
1656
|
+
end
|
1657
|
+
|
1630
1658
|
# Configuration for controlling how IPs are allocated in the cluster.
|
1631
1659
|
class IpAllocationPolicy
|
1632
1660
|
include Google::Apis::Core::Hashable
|
@@ -2249,6 +2277,12 @@ module Google
|
|
2249
2277
|
attr_accessor :enable_intra_node_visibility
|
2250
2278
|
alias_method :enable_intra_node_visibility?, :enable_intra_node_visibility
|
2251
2279
|
|
2280
|
+
# Whether L4ILB Subsetting is enabled for this cluster.
|
2281
|
+
# Corresponds to the JSON property `enableL4ilbSubsetting`
|
2282
|
+
# @return [Boolean]
|
2283
|
+
attr_accessor :enable_l4ilb_subsetting
|
2284
|
+
alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
|
2285
|
+
|
2252
2286
|
# Output only. The relative name of the Google Compute Engine network(https://
|
2253
2287
|
# cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
|
2254
2288
|
# cluster is connected. Example: projects/my-project/global/networks/my-network
|
@@ -2278,6 +2312,7 @@ module Google
|
|
2278
2312
|
@datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
|
2279
2313
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
2280
2314
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
2315
|
+
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2281
2316
|
@network = args[:network] if args.key?(:network)
|
2282
2317
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2283
2318
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210607"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class IlbSubsettingConfig
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class IpAllocationPolicy
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -864,6 +870,8 @@ module Google
|
|
864
870
|
property :desired_image_type, as: 'desiredImageType'
|
865
871
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1::IntraNodeVisibilityConfig::Representation
|
866
872
|
|
873
|
+
property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1::IlbSubsettingConfig::Representation
|
874
|
+
|
867
875
|
collection :desired_locations, as: 'desiredLocations'
|
868
876
|
property :desired_logging_service, as: 'desiredLoggingService'
|
869
877
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
@@ -1037,6 +1045,13 @@ module Google
|
|
1037
1045
|
end
|
1038
1046
|
end
|
1039
1047
|
|
1048
|
+
class IlbSubsettingConfig
|
1049
|
+
# @private
|
1050
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1051
|
+
property :enabled, as: 'enabled'
|
1052
|
+
end
|
1053
|
+
end
|
1054
|
+
|
1040
1055
|
class IpAllocationPolicy
|
1041
1056
|
# @private
|
1042
1057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1201,6 +1216,7 @@ module Google
|
|
1201
1216
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
1202
1217
|
|
1203
1218
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
1219
|
+
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1204
1220
|
property :network, as: 'network'
|
1205
1221
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1206
1222
|
property :subnetwork, as: 'subnetwork'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-06-
|
11
|
+
date: 2021-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.10.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|