google-apis-container_v1 0.82.0 → 0.84.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: e7a0d8ed3d7edbe0549d73bc0870d065c5737077d961bbfd14da6ff33f85c727
|
4
|
+
data.tar.gz: e07c90c3b09c98c15207700581d910bd4d23bae9c01d5391beef1c02840cb592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '081b15ff5e0c47cd3e8d8fc8cf7c833a622d176762c673fbaa23b2db4c42aa47122f67e6b334b70a56fa7548585279ca76122ca3be5db9cee274e3527e0737d1'
|
7
|
+
data.tar.gz: fe65ff9fc12318ea898d2a5e2e8d7f4ae5dd20d0b3c227d74c2d46729b2f47c087bc052e3c4333b41f50ef285ac95a2efd9b65d53fb16622d185b04fe8665135
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.84.0 (2024-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241017
|
6
|
+
|
7
|
+
### v0.83.0 (2024-10-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241008
|
10
|
+
|
3
11
|
### v0.82.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240923
|
@@ -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
|
@@ -1650,6 +1656,11 @@ module Google
|
|
1650
1656
|
attr_accessor :desired_enable_private_endpoint
|
1651
1657
|
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
1652
1658
|
|
1659
|
+
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
1660
|
+
# Corresponds to the JSON property `desiredEnterpriseConfig`
|
1661
|
+
# @return [Google::Apis::ContainerV1::DesiredEnterpriseConfig]
|
1662
|
+
attr_accessor :desired_enterprise_config
|
1663
|
+
|
1653
1664
|
# Fleet is the fleet configuration for the cluster.
|
1654
1665
|
# Corresponds to the JSON property `desiredFleet`
|
1655
1666
|
# @return [Google::Apis::ContainerV1::Fleet]
|
@@ -1954,6 +1965,7 @@ module Google
|
|
1954
1965
|
@desired_enable_fqdn_network_policy = args[:desired_enable_fqdn_network_policy] if args.key?(:desired_enable_fqdn_network_policy)
|
1955
1966
|
@desired_enable_multi_networking = args[:desired_enable_multi_networking] if args.key?(:desired_enable_multi_networking)
|
1956
1967
|
@desired_enable_private_endpoint = args[:desired_enable_private_endpoint] if args.key?(:desired_enable_private_endpoint)
|
1968
|
+
@desired_enterprise_config = args[:desired_enterprise_config] if args.key?(:desired_enterprise_config)
|
1957
1969
|
@desired_fleet = args[:desired_fleet] if args.key?(:desired_fleet)
|
1958
1970
|
@desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
|
1959
1971
|
@desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
|
@@ -2488,6 +2500,25 @@ module Google
|
|
2488
2500
|
end
|
2489
2501
|
end
|
2490
2502
|
|
2503
|
+
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2504
|
+
class DesiredEnterpriseConfig
|
2505
|
+
include Google::Apis::Core::Hashable
|
2506
|
+
|
2507
|
+
# desired_tier specifies the desired tier of the cluster.
|
2508
|
+
# Corresponds to the JSON property `desiredTier`
|
2509
|
+
# @return [String]
|
2510
|
+
attr_accessor :desired_tier
|
2511
|
+
|
2512
|
+
def initialize(**args)
|
2513
|
+
update!(**args)
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
# Update properties of this object
|
2517
|
+
def update!(**args)
|
2518
|
+
@desired_tier = args[:desired_tier] if args.key?(:desired_tier)
|
2519
|
+
end
|
2520
|
+
end
|
2521
|
+
|
2491
2522
|
# Configuration for NodeLocal DNSCache
|
2492
2523
|
class DnsCacheConfig
|
2493
2524
|
include Google::Apis::Core::Hashable
|
@@ -2533,6 +2564,11 @@ module Google
|
|
2533
2564
|
# @return [String]
|
2534
2565
|
attr_accessor :cluster_tier
|
2535
2566
|
|
2567
|
+
# desired_tier specifies the desired tier of the cluster.
|
2568
|
+
# Corresponds to the JSON property `desiredTier`
|
2569
|
+
# @return [String]
|
2570
|
+
attr_accessor :desired_tier
|
2571
|
+
|
2536
2572
|
def initialize(**args)
|
2537
2573
|
update!(**args)
|
2538
2574
|
end
|
@@ -2540,6 +2576,7 @@ module Google
|
|
2540
2576
|
# Update properties of this object
|
2541
2577
|
def update!(**args)
|
2542
2578
|
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
2579
|
+
@desired_tier = args[:desired_tier] if args.key?(:desired_tier)
|
2543
2580
|
end
|
2544
2581
|
end
|
2545
2582
|
|
@@ -5481,6 +5518,26 @@ module Google
|
|
5481
5518
|
end
|
5482
5519
|
end
|
5483
5520
|
|
5521
|
+
# Configuration for the Cloud Storage Parallelstore CSI driver.
|
5522
|
+
class ParallelstoreCsiDriverConfig
|
5523
|
+
include Google::Apis::Core::Hashable
|
5524
|
+
|
5525
|
+
# Whether the Cloud Storage Parallelstore CSI driver is enabled for this cluster.
|
5526
|
+
# Corresponds to the JSON property `enabled`
|
5527
|
+
# @return [Boolean]
|
5528
|
+
attr_accessor :enabled
|
5529
|
+
alias_method :enabled?, :enabled
|
5530
|
+
|
5531
|
+
def initialize(**args)
|
5532
|
+
update!(**args)
|
5533
|
+
end
|
5534
|
+
|
5535
|
+
# Update properties of this object
|
5536
|
+
def update!(**args)
|
5537
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
5538
|
+
end
|
5539
|
+
end
|
5540
|
+
|
5484
5541
|
# ParentProductConfig is the configuration of the parent product of the cluster.
|
5485
5542
|
# This field is used by Google internal products that are built on top of a GKE
|
5486
5543
|
# cluster and take the ownership of the cluster.
|
@@ -5948,6 +6005,11 @@ module Google
|
|
5948
6005
|
# @return [String]
|
5949
6006
|
attr_accessor :default_version
|
5950
6007
|
|
6008
|
+
# The auto upgrade target version for clusters on the channel.
|
6009
|
+
# Corresponds to the JSON property `upgradeTargetVersion`
|
6010
|
+
# @return [String]
|
6011
|
+
attr_accessor :upgrade_target_version
|
6012
|
+
|
5951
6013
|
# List of valid versions for the channel.
|
5952
6014
|
# Corresponds to the JSON property `validVersions`
|
5953
6015
|
# @return [Array<String>]
|
@@ -5961,6 +6023,7 @@ module Google
|
|
5961
6023
|
def update!(**args)
|
5962
6024
|
@channel = args[:channel] if args.key?(:channel)
|
5963
6025
|
@default_version = args[:default_version] if args.key?(:default_version)
|
6026
|
+
@upgrade_target_version = args[:upgrade_target_version] if args.key?(:upgrade_target_version)
|
5964
6027
|
@valid_versions = args[:valid_versions] if args.key?(:valid_versions)
|
5965
6028
|
end
|
5966
6029
|
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.84.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 = "20241017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class DesiredEnterpriseConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class DnsCacheConfig
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -730,6 +736,12 @@ module Google
|
|
730
736
|
include Google::Apis::Core::JsonObjectSupport
|
731
737
|
end
|
732
738
|
|
739
|
+
class ParallelstoreCsiDriverConfig
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
|
+
|
742
|
+
include Google::Apis::Core::JsonObjectSupport
|
743
|
+
end
|
744
|
+
|
733
745
|
class ParentProductConfig
|
734
746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
747
|
|
@@ -1198,6 +1210,8 @@ module Google
|
|
1198
1210
|
|
1199
1211
|
property :network_policy_config, as: 'networkPolicyConfig', class: Google::Apis::ContainerV1::NetworkPolicyConfig, decorator: Google::Apis::ContainerV1::NetworkPolicyConfig::Representation
|
1200
1212
|
|
1213
|
+
property :parallelstore_csi_driver_config, as: 'parallelstoreCsiDriverConfig', class: Google::Apis::ContainerV1::ParallelstoreCsiDriverConfig, decorator: Google::Apis::ContainerV1::ParallelstoreCsiDriverConfig::Representation
|
1214
|
+
|
1201
1215
|
property :ray_operator_config, as: 'rayOperatorConfig', class: Google::Apis::ContainerV1::RayOperatorConfig, decorator: Google::Apis::ContainerV1::RayOperatorConfig::Representation
|
1202
1216
|
|
1203
1217
|
property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1::StatefulHaConfig, decorator: Google::Apis::ContainerV1::StatefulHaConfig::Representation
|
@@ -1551,6 +1565,8 @@ module Google
|
|
1551
1565
|
property :desired_enable_fqdn_network_policy, as: 'desiredEnableFqdnNetworkPolicy'
|
1552
1566
|
property :desired_enable_multi_networking, as: 'desiredEnableMultiNetworking'
|
1553
1567
|
property :desired_enable_private_endpoint, as: 'desiredEnablePrivateEndpoint'
|
1568
|
+
property :desired_enterprise_config, as: 'desiredEnterpriseConfig', class: Google::Apis::ContainerV1::DesiredEnterpriseConfig, decorator: Google::Apis::ContainerV1::DesiredEnterpriseConfig::Representation
|
1569
|
+
|
1554
1570
|
property :desired_fleet, as: 'desiredFleet', class: Google::Apis::ContainerV1::Fleet, decorator: Google::Apis::ContainerV1::Fleet::Representation
|
1555
1571
|
|
1556
1572
|
property :desired_gateway_api_config, as: 'desiredGatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
|
@@ -1777,6 +1793,13 @@ module Google
|
|
1777
1793
|
end
|
1778
1794
|
end
|
1779
1795
|
|
1796
|
+
class DesiredEnterpriseConfig
|
1797
|
+
# @private
|
1798
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1799
|
+
property :desired_tier, as: 'desiredTier'
|
1800
|
+
end
|
1801
|
+
end
|
1802
|
+
|
1780
1803
|
class DnsCacheConfig
|
1781
1804
|
# @private
|
1782
1805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1794,6 +1817,7 @@ module Google
|
|
1794
1817
|
# @private
|
1795
1818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1796
1819
|
property :cluster_tier, as: 'clusterTier'
|
1820
|
+
property :desired_tier, as: 'desiredTier'
|
1797
1821
|
end
|
1798
1822
|
end
|
1799
1823
|
|
@@ -2567,6 +2591,13 @@ module Google
|
|
2567
2591
|
end
|
2568
2592
|
end
|
2569
2593
|
|
2594
|
+
class ParallelstoreCsiDriverConfig
|
2595
|
+
# @private
|
2596
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2597
|
+
property :enabled, as: 'enabled'
|
2598
|
+
end
|
2599
|
+
end
|
2600
|
+
|
2570
2601
|
class ParentProductConfig
|
2571
2602
|
# @private
|
2572
2603
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2701,6 +2732,7 @@ module Google
|
|
2701
2732
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2702
2733
|
property :channel, as: 'channel'
|
2703
2734
|
property :default_version, as: 'defaultVersion'
|
2735
|
+
property :upgrade_target_version, as: 'upgradeTargetVersion'
|
2704
2736
|
collection :valid_versions, as: 'validVersions'
|
2705
2737
|
end
|
2706
2738
|
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.84.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-
|
11
|
+
date: 2024-11-03 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.84.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: []
|