google-apis-container_v1 0.43.0 → 0.44.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b04aaaf2d4497dccf881c1508d0fd9180fcc22185566a02d451d8ca28b31146
|
4
|
+
data.tar.gz: 377a65dc2223e437985ad133f7f638137366b70917e458bb676517c120416600
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0252469ac2fa59adb6b915d4f55c52e062018b1ef0899c1b764464c16f485c607131fa26593990803197a598dbf7845e02c9756e28d55dd3da8ac529483e0e10'
|
7
|
+
data.tar.gz: a20ae4d0a92094b46d3656aa07411a3606bdee7ba2ee3d7093bb61fe41fa6f6cf4a920185e11c6de95de464064947f643040b14deca7d2eb37fce574e88e0f7d
|
data/CHANGELOG.md
CHANGED
@@ -266,7 +266,8 @@ module Google
|
|
266
266
|
# @return [String]
|
267
267
|
attr_accessor :disk_type
|
268
268
|
|
269
|
-
# The image type to use for NAP created node.
|
269
|
+
# The image type to use for NAP created node. Please see https://cloud.google.
|
270
|
+
# com/kubernetes-engine/docs/concepts/node-images for available image types.
|
270
271
|
# Corresponds to the JSON property `imageType`
|
271
272
|
# @return [String]
|
272
273
|
attr_accessor :image_type
|
@@ -283,7 +284,7 @@ module Google
|
|
283
284
|
# Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
|
284
285
|
# to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
|
285
286
|
# specify-min-cpu-platform). This field is deprecated, min_cpu_platform should
|
286
|
-
# be specified using
|
287
|
+
# be specified using `cloud.google.com/requested-min-cpu-platform` label
|
287
288
|
# selector on the pod. To unset the min cpu platform field pass "automatic" as
|
288
289
|
# field value.
|
289
290
|
# Corresponds to the JSON property `minCpuPlatform`
|
@@ -2264,6 +2265,11 @@ module Google
|
|
2264
2265
|
# @return [String]
|
2265
2266
|
attr_accessor :services_ipv4_cidr_block
|
2266
2267
|
|
2268
|
+
# Output only. [Output only] The services IPv6 CIDR block for the cluster.
|
2269
|
+
# Corresponds to the JSON property `servicesIpv6CidrBlock`
|
2270
|
+
# @return [String]
|
2271
|
+
attr_accessor :services_ipv6_cidr_block
|
2272
|
+
|
2267
2273
|
# The name of the secondary range to be used as for the services CIDR block. The
|
2268
2274
|
# secondary range will be used for service ClusterIPs. This must be an existing
|
2269
2275
|
# secondary range associated with the cluster subnetwork. This field is only
|
@@ -2277,6 +2283,11 @@ module Google
|
|
2277
2283
|
# @return [String]
|
2278
2284
|
attr_accessor :stack_type
|
2279
2285
|
|
2286
|
+
# Output only. [Output only] The subnet's IPv6 CIDR block used by nodes and pods.
|
2287
|
+
# Corresponds to the JSON property `subnetIpv6CidrBlock`
|
2288
|
+
# @return [String]
|
2289
|
+
attr_accessor :subnet_ipv6_cidr_block
|
2290
|
+
|
2280
2291
|
# A custom subnetwork name to be used if `create_subnetwork` is true. If this
|
2281
2292
|
# field is empty, then an automatic name will be chosen for the new subnetwork.
|
2282
2293
|
# Corresponds to the JSON property `subnetworkName`
|
@@ -2328,8 +2339,10 @@ module Google
|
|
2328
2339
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
2329
2340
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
2330
2341
|
@services_ipv4_cidr_block = args[:services_ipv4_cidr_block] if args.key?(:services_ipv4_cidr_block)
|
2342
|
+
@services_ipv6_cidr_block = args[:services_ipv6_cidr_block] if args.key?(:services_ipv6_cidr_block)
|
2331
2343
|
@services_secondary_range_name = args[:services_secondary_range_name] if args.key?(:services_secondary_range_name)
|
2332
2344
|
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
2345
|
+
@subnet_ipv6_cidr_block = args[:subnet_ipv6_cidr_block] if args.key?(:subnet_ipv6_cidr_block)
|
2333
2346
|
@subnetwork_name = args[:subnetwork_name] if args.key?(:subnetwork_name)
|
2334
2347
|
@tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
|
2335
2348
|
@use_ip_aliases = args[:use_ip_aliases] if args.key?(:use_ip_aliases)
|
@@ -3265,7 +3278,8 @@ module Google
|
|
3265
3278
|
attr_accessor :gvnic
|
3266
3279
|
|
3267
3280
|
# The image type to use for this node. Note that for a given image type, the
|
3268
|
-
# latest version of it will be used.
|
3281
|
+
# latest version of it will be used. Please see https://cloud.google.com/
|
3282
|
+
# kubernetes-engine/docs/concepts/node-images for available image types.
|
3269
3283
|
# Corresponds to the JSON property `imageType`
|
3270
3284
|
# @return [String]
|
3271
3285
|
attr_accessor :image_type
|
@@ -3831,7 +3845,9 @@ module Google
|
|
3831
3845
|
# @return [Google::Apis::ContainerV1::UpgradeSettings]
|
3832
3846
|
attr_accessor :upgrade_settings
|
3833
3847
|
|
3834
|
-
# The version of
|
3848
|
+
# The version of Kubernetes running on this NodePool's nodes. If unspecified, it
|
3849
|
+
# defaults as described [here](https://cloud.google.com/kubernetes-engine/
|
3850
|
+
# versioning#specifying_node_version).
|
3835
3851
|
# Corresponds to the JSON property `version`
|
3836
3852
|
# @return [String]
|
3837
3853
|
attr_accessor :version
|
@@ -5863,7 +5879,9 @@ module Google
|
|
5863
5879
|
# @return [Google::Apis::ContainerV1::VirtualNic]
|
5864
5880
|
attr_accessor :gvnic
|
5865
5881
|
|
5866
|
-
# Required. The desired image type for the node pool.
|
5882
|
+
# Required. The desired image type for the node pool. Please see https://cloud.
|
5883
|
+
# google.com/kubernetes-engine/docs/concepts/node-images for available image
|
5884
|
+
# types.
|
5867
5885
|
# Corresponds to the JSON property `imageType`
|
5868
5886
|
# @return [String]
|
5869
5887
|
attr_accessor :image_type
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1465,8 +1465,10 @@ module Google
|
|
1465
1465
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
1466
1466
|
property :services_ipv4_cidr, as: 'servicesIpv4Cidr'
|
1467
1467
|
property :services_ipv4_cidr_block, as: 'servicesIpv4CidrBlock'
|
1468
|
+
property :services_ipv6_cidr_block, as: 'servicesIpv6CidrBlock'
|
1468
1469
|
property :services_secondary_range_name, as: 'servicesSecondaryRangeName'
|
1469
1470
|
property :stack_type, as: 'stackType'
|
1471
|
+
property :subnet_ipv6_cidr_block, as: 'subnetIpv6CidrBlock'
|
1470
1472
|
property :subnetwork_name, as: 'subnetworkName'
|
1471
1473
|
property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
|
1472
1474
|
property :use_ip_aliases, as: 'useIpAliases'
|
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.44.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-01-
|
11
|
+
date: 2023-01-29 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.44.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: []
|