google-apis-container_v1 0.46.0 → 0.47.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: 992721bfd0351264da95ba2ba78bf677704b2476c25ba283eb2d03e60be5b0e2
|
4
|
+
data.tar.gz: 76afff351b022516917a3da1e98cd26e8f010c2c44a550f9a7cb2c0ea2b11019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea38aef19683551329426cd5dcd42e7af2d0aad0f846ebb676bdd75db693d95fabafafb8089ccca0496146f2e3fb95d1c60cde9bc715f45a945b05980be8877c
|
7
|
+
data.tar.gz: 7b7b2759a22203b1d79036994db892d64fd35bbfc6efdfa30e8d6408b50c4308e49b9bd7d904226593efc541005c44cd8b290624f63bf55606a4c849ab22b429
|
data/CHANGELOG.md
CHANGED
@@ -2290,6 +2290,11 @@ module Google
|
|
2290
2290
|
# @return [String]
|
2291
2291
|
attr_accessor :node_ipv4_cidr_block
|
2292
2292
|
|
2293
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
2294
|
+
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
2295
|
+
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
2296
|
+
attr_accessor :pod_cidr_overprovision_config
|
2297
|
+
|
2293
2298
|
# This field is deprecated, use services_ipv4_cidr_block.
|
2294
2299
|
# Corresponds to the JSON property `servicesIpv4Cidr`
|
2295
2300
|
# @return [String]
|
@@ -2379,6 +2384,7 @@ module Google
|
|
2379
2384
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
2380
2385
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
2381
2386
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
2387
|
+
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
2382
2388
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
2383
2389
|
@services_ipv4_cidr_block = args[:services_ipv4_cidr_block] if args.key?(:services_ipv4_cidr_block)
|
2384
2390
|
@services_ipv6_cidr_block = args[:services_ipv6_cidr_block] if args.key?(:services_ipv6_cidr_block)
|
@@ -3705,6 +3711,11 @@ module Google
|
|
3705
3711
|
# @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
|
3706
3712
|
attr_accessor :network_performance_config
|
3707
3713
|
|
3714
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
3715
|
+
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
3716
|
+
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
3717
|
+
attr_accessor :pod_cidr_overprovision_config
|
3718
|
+
|
3708
3719
|
# The IP address range for pod IPs in this node pool. Only applicable if `
|
3709
3720
|
# create_pod_range` is true. Set to blank to have a range chosen with the
|
3710
3721
|
# default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
@@ -3734,6 +3745,7 @@ module Google
|
|
3734
3745
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
3735
3746
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
3736
3747
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
3748
|
+
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
3737
3749
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
3738
3750
|
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
3739
3751
|
end
|
@@ -4297,6 +4309,27 @@ module Google
|
|
4297
4309
|
end
|
4298
4310
|
end
|
4299
4311
|
|
4312
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
4313
|
+
class PodCidrOverprovisionConfig
|
4314
|
+
include Google::Apis::Core::Hashable
|
4315
|
+
|
4316
|
+
# Whether Pod CIDR overprovisioning is disabled. Note: Pod CIDR overprovisioning
|
4317
|
+
# is enabled by default.
|
4318
|
+
# Corresponds to the JSON property `disable`
|
4319
|
+
# @return [Boolean]
|
4320
|
+
attr_accessor :disable
|
4321
|
+
alias_method :disable?, :disable
|
4322
|
+
|
4323
|
+
def initialize(**args)
|
4324
|
+
update!(**args)
|
4325
|
+
end
|
4326
|
+
|
4327
|
+
# Update properties of this object
|
4328
|
+
def update!(**args)
|
4329
|
+
@disable = args[:disable] if args.key?(:disable)
|
4330
|
+
end
|
4331
|
+
end
|
4332
|
+
|
4300
4333
|
# Configuration options for private clusters.
|
4301
4334
|
class PrivateClusterConfig
|
4302
4335
|
include Google::Apis::Core::Hashable
|
@@ -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.47.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230317"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -598,6 +598,12 @@ module Google
|
|
598
598
|
include Google::Apis::Core::JsonObjectSupport
|
599
599
|
end
|
600
600
|
|
601
|
+
class PodCidrOverprovisionConfig
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
601
607
|
class PrivateClusterConfig
|
602
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
609
|
|
@@ -1480,6 +1486,8 @@ module Google
|
|
1480
1486
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
1481
1487
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
1482
1488
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
1489
|
+
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
1490
|
+
|
1483
1491
|
property :services_ipv4_cidr, as: 'servicesIpv4Cidr'
|
1484
1492
|
property :services_ipv4_cidr_block, as: 'servicesIpv4CidrBlock'
|
1485
1493
|
property :services_ipv6_cidr_block, as: 'servicesIpv6CidrBlock'
|
@@ -1856,6 +1864,8 @@ module Google
|
|
1856
1864
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
1857
1865
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
|
1858
1866
|
|
1867
|
+
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
1868
|
+
|
1859
1869
|
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
1860
1870
|
property :pod_range, as: 'podRange'
|
1861
1871
|
end
|
@@ -2001,6 +2011,13 @@ module Google
|
|
2001
2011
|
end
|
2002
2012
|
end
|
2003
2013
|
|
2014
|
+
class PodCidrOverprovisionConfig
|
2015
|
+
# @private
|
2016
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2017
|
+
property :disable, as: 'disable'
|
2018
|
+
end
|
2019
|
+
end
|
2020
|
+
|
2004
2021
|
class PrivateClusterConfig
|
2005
2022
|
# @private
|
2006
2023
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.47.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: 2023-
|
11
|
+
date: 2023-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-container_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.47.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|