google-apis-container_v1 0.118.0 → 0.120.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: 7c72b1b1ea76f918eaa7d96203706fa00a4116cbe46bbe2aac87feba4ee49426
|
|
4
|
+
data.tar.gz: ff08175d20132fdb353217175bb218b8730cc9d2a2134c3e281d2bd8a3fad196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9077f20953b2e0114511d18cfb93b49102cc65abc91af5ba590665c4289d83292500ceeced68a0ad31034a698ae6163ae50d2ce1c236e6d6af247f64b9a16d72
|
|
7
|
+
data.tar.gz: 4d533693db1f29bed767758d346cfc2594918f82524172996c93e94db24289358debf9a65ce7e321f635b1fdb759c4bdfdce7dfeef1781b101ddf23463ffa37a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1
|
|
2
2
|
|
|
3
|
+
### v0.120.0 (2026-08-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260818
|
|
6
|
+
|
|
7
|
+
### v0.119.0 (2026-08-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260727
|
|
10
|
+
|
|
3
11
|
### v0.118.0 (2026-07-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260630
|
|
@@ -6231,7 +6231,9 @@ module Google
|
|
|
6231
6231
|
attr_accessor :containerd_config
|
|
6232
6232
|
|
|
6233
6233
|
# Size of the disk attached to each node, specified in GB. The smallest allowed
|
|
6234
|
-
# disk size is
|
|
6234
|
+
# disk size is 15 GB for node pools running GKE versions 1.36.3-gke.1480000 or
|
|
6235
|
+
# later. Or, for earlier versions, the smallest allowed disk size is 12 GB. If
|
|
6236
|
+
# unspecified, the default disk size is 100GB.
|
|
6235
6237
|
# Corresponds to the JSON property `diskSizeGb`
|
|
6236
6238
|
# @return [Fixnum]
|
|
6237
6239
|
attr_accessor :disk_size_gb
|
|
@@ -8557,11 +8559,21 @@ module Google
|
|
|
8557
8559
|
# @return [String]
|
|
8558
8560
|
attr_accessor :channel
|
|
8559
8561
|
|
|
8562
|
+
# Output only. List of custom versions for the channel.
|
|
8563
|
+
# Corresponds to the JSON property `customVersions`
|
|
8564
|
+
# @return [Array<String>]
|
|
8565
|
+
attr_accessor :custom_versions
|
|
8566
|
+
|
|
8560
8567
|
# The default version for newly created clusters on the channel.
|
|
8561
8568
|
# Corresponds to the JSON property `defaultVersion`
|
|
8562
8569
|
# @return [String]
|
|
8563
8570
|
attr_accessor :default_version
|
|
8564
8571
|
|
|
8572
|
+
# Output only. List of preview versions for the channel.
|
|
8573
|
+
# Corresponds to the JSON property `previewVersions`
|
|
8574
|
+
# @return [Array<String>]
|
|
8575
|
+
attr_accessor :preview_versions
|
|
8576
|
+
|
|
8565
8577
|
# The auto upgrade target version for clusters on the channel.
|
|
8566
8578
|
# Corresponds to the JSON property `upgradeTargetVersion`
|
|
8567
8579
|
# @return [String]
|
|
@@ -8579,7 +8591,9 @@ module Google
|
|
|
8579
8591
|
# Update properties of this object
|
|
8580
8592
|
def update!(**args)
|
|
8581
8593
|
@channel = args[:channel] if args.key?(:channel)
|
|
8594
|
+
@custom_versions = args[:custom_versions] if args.key?(:custom_versions)
|
|
8582
8595
|
@default_version = args[:default_version] if args.key?(:default_version)
|
|
8596
|
+
@preview_versions = args[:preview_versions] if args.key?(:preview_versions)
|
|
8583
8597
|
@upgrade_target_version = args[:upgrade_target_version] if args.key?(:upgrade_target_version)
|
|
8584
8598
|
@valid_versions = args[:valid_versions] if args.key?(:valid_versions)
|
|
8585
8599
|
end
|
|
@@ -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.120.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260818"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3848,7 +3848,9 @@ module Google
|
|
|
3848
3848
|
# @private
|
|
3849
3849
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3850
3850
|
property :channel, as: 'channel'
|
|
3851
|
+
collection :custom_versions, as: 'customVersions'
|
|
3851
3852
|
property :default_version, as: 'defaultVersion'
|
|
3853
|
+
collection :preview_versions, as: 'previewVersions'
|
|
3852
3854
|
property :upgrade_target_version, as: 'upgradeTargetVersion'
|
|
3853
3855
|
collection :valid_versions, as: 'validVersions'
|
|
3854
3856
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.120.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.120.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|