google-apis-container_v1 0.46.0 → 0.48.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: 542799f17bbda3779996040ba6e3264d719c406335fd0dbf6e128d019645b7cf
|
4
|
+
data.tar.gz: 408a6c27e30a07f76a30eccd30cdc58a3402d10c4b5ec69fa2da60455cf0695f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d825f7994bafc0bf606acc1dc8fbd204a2637175f2f0f76d87f1fad7f48fe2c729b64e255f5fefeeb6d4d80aa6be720d39effa4c4f6fadd3d707abc6c2214c7a
|
7
|
+
data.tar.gz: 8382fb497afd073de820f3082d191fc01d43b2092a048dbc05ee7c4f80f99ef568cfd07d7abc50bf827c23642172bc0f149b2bdc425bc870cf31e28d87cb4b79
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.48.0 (2023-04-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230326
|
6
|
+
|
7
|
+
### v0.47.0 (2023-04-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230317
|
10
|
+
|
3
11
|
### v0.46.0 (2023-03-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230304
|
@@ -63,6 +63,26 @@ module Google
|
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
+
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
67
|
+
# ranges supporting the ClusterUpdate message.
|
68
|
+
class AdditionalPodRangesConfig
|
69
|
+
include Google::Apis::Core::Hashable
|
70
|
+
|
71
|
+
# Name for pod secondary ipv4 range which has the actual range defined ahead.
|
72
|
+
# Corresponds to the JSON property `podRangeNames`
|
73
|
+
# @return [Array<String>]
|
74
|
+
attr_accessor :pod_range_names
|
75
|
+
|
76
|
+
def initialize(**args)
|
77
|
+
update!(**args)
|
78
|
+
end
|
79
|
+
|
80
|
+
# Update properties of this object
|
81
|
+
def update!(**args)
|
82
|
+
@pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
66
86
|
# Configuration for the addons that can be automatically spun up in the cluster,
|
67
87
|
# enabling additional functionality.
|
68
88
|
class AddonsConfig
|
@@ -1140,6 +1160,12 @@ module Google
|
|
1140
1160
|
class ClusterUpdate
|
1141
1161
|
include Google::Apis::Core::Hashable
|
1142
1162
|
|
1163
|
+
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
1164
|
+
# ranges supporting the ClusterUpdate message.
|
1165
|
+
# Corresponds to the JSON property `additionalPodRangesConfig`
|
1166
|
+
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1167
|
+
attr_accessor :additional_pod_ranges_config
|
1168
|
+
|
1143
1169
|
# Configuration for the addons that can be automatically spun up in the cluster,
|
1144
1170
|
# enabling additional functionality.
|
1145
1171
|
# Corresponds to the JSON property `desiredAddonsConfig`
|
@@ -1394,12 +1420,19 @@ module Google
|
|
1394
1420
|
# @return [String]
|
1395
1421
|
attr_accessor :etag
|
1396
1422
|
|
1423
|
+
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
1424
|
+
# ranges supporting the ClusterUpdate message.
|
1425
|
+
# Corresponds to the JSON property `removedAdditionalPodRangesConfig`
|
1426
|
+
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1427
|
+
attr_accessor :removed_additional_pod_ranges_config
|
1428
|
+
|
1397
1429
|
def initialize(**args)
|
1398
1430
|
update!(**args)
|
1399
1431
|
end
|
1400
1432
|
|
1401
1433
|
# Update properties of this object
|
1402
1434
|
def update!(**args)
|
1435
|
+
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
1403
1436
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
1404
1437
|
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
1405
1438
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
@@ -1440,6 +1473,7 @@ module Google
|
|
1440
1473
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
1441
1474
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
1442
1475
|
@etag = args[:etag] if args.key?(:etag)
|
1476
|
+
@removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
|
1443
1477
|
end
|
1444
1478
|
end
|
1445
1479
|
|
@@ -2237,6 +2271,12 @@ module Google
|
|
2237
2271
|
class IpAllocationPolicy
|
2238
2272
|
include Google::Apis::Core::Hashable
|
2239
2273
|
|
2274
|
+
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
2275
|
+
# ranges supporting the ClusterUpdate message.
|
2276
|
+
# Corresponds to the JSON property `additionalPodRangesConfig`
|
2277
|
+
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
2278
|
+
attr_accessor :additional_pod_ranges_config
|
2279
|
+
|
2240
2280
|
# This field is deprecated, use cluster_ipv4_cidr_block.
|
2241
2281
|
# Corresponds to the JSON property `clusterIpv4Cidr`
|
2242
2282
|
# @return [String]
|
@@ -2290,6 +2330,11 @@ module Google
|
|
2290
2330
|
# @return [String]
|
2291
2331
|
attr_accessor :node_ipv4_cidr_block
|
2292
2332
|
|
2333
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
2334
|
+
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
2335
|
+
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
2336
|
+
attr_accessor :pod_cidr_overprovision_config
|
2337
|
+
|
2293
2338
|
# This field is deprecated, use services_ipv4_cidr_block.
|
2294
2339
|
# Corresponds to the JSON property `servicesIpv4Cidr`
|
2295
2340
|
# @return [String]
|
@@ -2372,6 +2417,7 @@ module Google
|
|
2372
2417
|
|
2373
2418
|
# Update properties of this object
|
2374
2419
|
def update!(**args)
|
2420
|
+
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
2375
2421
|
@cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
|
2376
2422
|
@cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
|
2377
2423
|
@cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
|
@@ -2379,6 +2425,7 @@ module Google
|
|
2379
2425
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
2380
2426
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
2381
2427
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
2428
|
+
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
2382
2429
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
2383
2430
|
@services_ipv4_cidr_block = args[:services_ipv4_cidr_block] if args.key?(:services_ipv4_cidr_block)
|
2384
2431
|
@services_ipv6_cidr_block = args[:services_ipv6_cidr_block] if args.key?(:services_ipv6_cidr_block)
|
@@ -3705,6 +3752,11 @@ module Google
|
|
3705
3752
|
# @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
|
3706
3753
|
attr_accessor :network_performance_config
|
3707
3754
|
|
3755
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
3756
|
+
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
3757
|
+
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
3758
|
+
attr_accessor :pod_cidr_overprovision_config
|
3759
|
+
|
3708
3760
|
# The IP address range for pod IPs in this node pool. Only applicable if `
|
3709
3761
|
# create_pod_range` is true. Set to blank to have a range chosen with the
|
3710
3762
|
# default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
@@ -3734,6 +3786,7 @@ module Google
|
|
3734
3786
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
3735
3787
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
3736
3788
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
3789
|
+
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
3737
3790
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
3738
3791
|
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
3739
3792
|
end
|
@@ -4297,6 +4350,27 @@ module Google
|
|
4297
4350
|
end
|
4298
4351
|
end
|
4299
4352
|
|
4353
|
+
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
4354
|
+
class PodCidrOverprovisionConfig
|
4355
|
+
include Google::Apis::Core::Hashable
|
4356
|
+
|
4357
|
+
# Whether Pod CIDR overprovisioning is disabled. Note: Pod CIDR overprovisioning
|
4358
|
+
# is enabled by default.
|
4359
|
+
# Corresponds to the JSON property `disable`
|
4360
|
+
# @return [Boolean]
|
4361
|
+
attr_accessor :disable
|
4362
|
+
alias_method :disable?, :disable
|
4363
|
+
|
4364
|
+
def initialize(**args)
|
4365
|
+
update!(**args)
|
4366
|
+
end
|
4367
|
+
|
4368
|
+
# Update properties of this object
|
4369
|
+
def update!(**args)
|
4370
|
+
@disable = args[:disable] if args.key?(:disable)
|
4371
|
+
end
|
4372
|
+
end
|
4373
|
+
|
4300
4374
|
# Configuration options for private clusters.
|
4301
4375
|
class PrivateClusterConfig
|
4302
4376
|
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.48.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 = "20230326"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AdditionalPodRangesConfig
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AddonsConfig
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -598,6 +604,12 @@ module Google
|
|
598
604
|
include Google::Apis::Core::JsonObjectSupport
|
599
605
|
end
|
600
606
|
|
607
|
+
class PodCidrOverprovisionConfig
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
|
+
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
611
|
+
end
|
612
|
+
|
601
613
|
class PrivateClusterConfig
|
602
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
615
|
|
@@ -897,6 +909,13 @@ module Google
|
|
897
909
|
end
|
898
910
|
end
|
899
911
|
|
912
|
+
class AdditionalPodRangesConfig
|
913
|
+
# @private
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
915
|
+
collection :pod_range_names, as: 'podRangeNames'
|
916
|
+
end
|
917
|
+
end
|
918
|
+
|
900
919
|
class AddonsConfig
|
901
920
|
# @private
|
902
921
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1159,6 +1178,8 @@ module Google
|
|
1159
1178
|
class ClusterUpdate
|
1160
1179
|
# @private
|
1161
1180
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1181
|
+
property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1182
|
+
|
1162
1183
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
1163
1184
|
|
1164
1185
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
@@ -1227,6 +1248,8 @@ module Google
|
|
1227
1248
|
property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
1228
1249
|
|
1229
1250
|
property :etag, as: 'etag'
|
1251
|
+
property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1252
|
+
|
1230
1253
|
end
|
1231
1254
|
end
|
1232
1255
|
|
@@ -1473,6 +1496,8 @@ module Google
|
|
1473
1496
|
class IpAllocationPolicy
|
1474
1497
|
# @private
|
1475
1498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1499
|
+
property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1500
|
+
|
1476
1501
|
property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
|
1477
1502
|
property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
|
1478
1503
|
property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
|
@@ -1480,6 +1505,8 @@ module Google
|
|
1480
1505
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
1481
1506
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
1482
1507
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
1508
|
+
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
1509
|
+
|
1483
1510
|
property :services_ipv4_cidr, as: 'servicesIpv4Cidr'
|
1484
1511
|
property :services_ipv4_cidr_block, as: 'servicesIpv4CidrBlock'
|
1485
1512
|
property :services_ipv6_cidr_block, as: 'servicesIpv6CidrBlock'
|
@@ -1856,6 +1883,8 @@ module Google
|
|
1856
1883
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
1857
1884
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
|
1858
1885
|
|
1886
|
+
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
1887
|
+
|
1859
1888
|
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
1860
1889
|
property :pod_range, as: 'podRange'
|
1861
1890
|
end
|
@@ -2001,6 +2030,13 @@ module Google
|
|
2001
2030
|
end
|
2002
2031
|
end
|
2003
2032
|
|
2033
|
+
class PodCidrOverprovisionConfig
|
2034
|
+
# @private
|
2035
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2036
|
+
property :disable, as: 'disable'
|
2037
|
+
end
|
2038
|
+
end
|
2039
|
+
|
2004
2040
|
class PrivateClusterConfig
|
2005
2041
|
# @private
|
2006
2042
|
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.48.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-16 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.48.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: []
|