google-apis-container_v1 0.82.0 → 0.83.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: 0d3c8aa1f33b2e17a06bba1bd8dbe6640b7c96132901865906f18f1f7d2e3fe7
|
4
|
+
data.tar.gz: '0876a17d400b96acd34690a77f835ac81de99294ac5a5cd73dd8caa01e71de74'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d4441e76dc1a1bc2c2b1720fe2dfdfa2533be9e9c13e87e761d2c0b0716bfcdbb8af66807f98c93ea34a87be7911de6ad0bbc0481d9e926453e1da258a72284
|
7
|
+
data.tar.gz: 3716a5f95a73b40d1218ce791a1bcecd4c8134d21a50145932e9d4b023980e4cd1918b1e1cccd75a9c4e3d62e1cd9a57a67b72acf5dde9da50273dbef7bf05aa
|
data/CHANGELOG.md
CHANGED
@@ -227,6 +227,11 @@ module Google
|
|
227
227
|
# @return [Google::Apis::ContainerV1::NetworkPolicyConfig]
|
228
228
|
attr_accessor :network_policy_config
|
229
229
|
|
230
|
+
# Configuration for the Cloud Storage Parallelstore CSI driver.
|
231
|
+
# Corresponds to the JSON property `parallelstoreCsiDriverConfig`
|
232
|
+
# @return [Google::Apis::ContainerV1::ParallelstoreCsiDriverConfig]
|
233
|
+
attr_accessor :parallelstore_csi_driver_config
|
234
|
+
|
230
235
|
# Configuration options for the Ray Operator add-on.
|
231
236
|
# Corresponds to the JSON property `rayOperatorConfig`
|
232
237
|
# @return [Google::Apis::ContainerV1::RayOperatorConfig]
|
@@ -254,6 +259,7 @@ module Google
|
|
254
259
|
@http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
|
255
260
|
@kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
|
256
261
|
@network_policy_config = args[:network_policy_config] if args.key?(:network_policy_config)
|
262
|
+
@parallelstore_csi_driver_config = args[:parallelstore_csi_driver_config] if args.key?(:parallelstore_csi_driver_config)
|
257
263
|
@ray_operator_config = args[:ray_operator_config] if args.key?(:ray_operator_config)
|
258
264
|
@stateful_ha_config = args[:stateful_ha_config] if args.key?(:stateful_ha_config)
|
259
265
|
end
|
@@ -5481,6 +5487,26 @@ module Google
|
|
5481
5487
|
end
|
5482
5488
|
end
|
5483
5489
|
|
5490
|
+
# Configuration for the Cloud Storage Parallelstore CSI driver.
|
5491
|
+
class ParallelstoreCsiDriverConfig
|
5492
|
+
include Google::Apis::Core::Hashable
|
5493
|
+
|
5494
|
+
# Whether the Cloud Storage Parallelstore CSI driver is enabled for this cluster.
|
5495
|
+
# Corresponds to the JSON property `enabled`
|
5496
|
+
# @return [Boolean]
|
5497
|
+
attr_accessor :enabled
|
5498
|
+
alias_method :enabled?, :enabled
|
5499
|
+
|
5500
|
+
def initialize(**args)
|
5501
|
+
update!(**args)
|
5502
|
+
end
|
5503
|
+
|
5504
|
+
# Update properties of this object
|
5505
|
+
def update!(**args)
|
5506
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
5507
|
+
end
|
5508
|
+
end
|
5509
|
+
|
5484
5510
|
# ParentProductConfig is the configuration of the parent product of the cluster.
|
5485
5511
|
# This field is used by Google internal products that are built on top of a GKE
|
5486
5512
|
# cluster and take the ownership of the cluster.
|
@@ -5948,6 +5974,11 @@ module Google
|
|
5948
5974
|
# @return [String]
|
5949
5975
|
attr_accessor :default_version
|
5950
5976
|
|
5977
|
+
# The auto upgrade target version for clusters on the channel.
|
5978
|
+
# Corresponds to the JSON property `upgradeTargetVersion`
|
5979
|
+
# @return [String]
|
5980
|
+
attr_accessor :upgrade_target_version
|
5981
|
+
|
5951
5982
|
# List of valid versions for the channel.
|
5952
5983
|
# Corresponds to the JSON property `validVersions`
|
5953
5984
|
# @return [Array<String>]
|
@@ -5961,6 +5992,7 @@ module Google
|
|
5961
5992
|
def update!(**args)
|
5962
5993
|
@channel = args[:channel] if args.key?(:channel)
|
5963
5994
|
@default_version = args[:default_version] if args.key?(:default_version)
|
5995
|
+
@upgrade_target_version = args[:upgrade_target_version] if args.key?(:upgrade_target_version)
|
5964
5996
|
@valid_versions = args[:valid_versions] if args.key?(:valid_versions)
|
5965
5997
|
end
|
5966
5998
|
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.83.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241008"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -730,6 +730,12 @@ module Google
|
|
730
730
|
include Google::Apis::Core::JsonObjectSupport
|
731
731
|
end
|
732
732
|
|
733
|
+
class ParallelstoreCsiDriverConfig
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
733
739
|
class ParentProductConfig
|
734
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
741
|
|
@@ -1198,6 +1204,8 @@ module Google
|
|
1198
1204
|
|
1199
1205
|
property :network_policy_config, as: 'networkPolicyConfig', class: Google::Apis::ContainerV1::NetworkPolicyConfig, decorator: Google::Apis::ContainerV1::NetworkPolicyConfig::Representation
|
1200
1206
|
|
1207
|
+
property :parallelstore_csi_driver_config, as: 'parallelstoreCsiDriverConfig', class: Google::Apis::ContainerV1::ParallelstoreCsiDriverConfig, decorator: Google::Apis::ContainerV1::ParallelstoreCsiDriverConfig::Representation
|
1208
|
+
|
1201
1209
|
property :ray_operator_config, as: 'rayOperatorConfig', class: Google::Apis::ContainerV1::RayOperatorConfig, decorator: Google::Apis::ContainerV1::RayOperatorConfig::Representation
|
1202
1210
|
|
1203
1211
|
property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1::StatefulHaConfig, decorator: Google::Apis::ContainerV1::StatefulHaConfig::Representation
|
@@ -2567,6 +2575,13 @@ module Google
|
|
2567
2575
|
end
|
2568
2576
|
end
|
2569
2577
|
|
2578
|
+
class ParallelstoreCsiDriverConfig
|
2579
|
+
# @private
|
2580
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2581
|
+
property :enabled, as: 'enabled'
|
2582
|
+
end
|
2583
|
+
end
|
2584
|
+
|
2570
2585
|
class ParentProductConfig
|
2571
2586
|
# @private
|
2572
2587
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2701,6 +2716,7 @@ module Google
|
|
2701
2716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2702
2717
|
property :channel, as: 'channel'
|
2703
2718
|
property :default_version, as: 'defaultVersion'
|
2719
|
+
property :upgrade_target_version, as: 'upgradeTargetVersion'
|
2704
2720
|
collection :valid_versions, as: 'validVersions'
|
2705
2721
|
end
|
2706
2722
|
end
|
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.83.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: 2024-10-
|
11
|
+
date: 2024-10-27 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.83.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: []
|