google-apis-container_v1 0.47.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
@@ -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]
|
@@ -2377,6 +2417,7 @@ module Google
|
|
2377
2417
|
|
2378
2418
|
# Update properties of this object
|
2379
2419
|
def update!(**args)
|
2420
|
+
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
2380
2421
|
@cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
|
2381
2422
|
@cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
|
2382
2423
|
@cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
|
@@ -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
|
|
@@ -903,6 +909,13 @@ module Google
|
|
903
909
|
end
|
904
910
|
end
|
905
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
|
+
|
906
919
|
class AddonsConfig
|
907
920
|
# @private
|
908
921
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1165,6 +1178,8 @@ module Google
|
|
1165
1178
|
class ClusterUpdate
|
1166
1179
|
# @private
|
1167
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
|
+
|
1168
1183
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
1169
1184
|
|
1170
1185
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
@@ -1233,6 +1248,8 @@ module Google
|
|
1233
1248
|
property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
1234
1249
|
|
1235
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
|
+
|
1236
1253
|
end
|
1237
1254
|
end
|
1238
1255
|
|
@@ -1479,6 +1496,8 @@ module Google
|
|
1479
1496
|
class IpAllocationPolicy
|
1480
1497
|
# @private
|
1481
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
|
+
|
1482
1501
|
property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
|
1483
1502
|
property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
|
1484
1503
|
property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
|
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-04-
|
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: []
|