google-apis-container_v1 0.112.0 → 0.114.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/container_v1/classes.rb +312 -11
- data/lib/google/apis/container_v1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1/representations.rb +142 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8eb9121cfec26adacda1a1eecfb585ddceafb0ac38b2ee31fb05c7fa45dc6f1c
|
|
4
|
+
data.tar.gz: c5bb013c2bfab37fae7b1aba4c3a964f03207d8fef6173c7a459c592608f3f33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f201ba0d3a96468fabaca065974dcb898dc8f2fb87c3c3b421051b87eac9a5379e97a0afc41d390e3eb951056e4620f3da2dce1fc7ce0e0d3ddaad494cc7c5b
|
|
7
|
+
data.tar.gz: a78eb4a861692922c872970e08128d6512edccdc4df134b0af905d2901a746b4a524548596dd7740591ff6e45169a97a90e5b2fedeaa22e52f2f58d725fa3e1f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1
|
|
2
2
|
|
|
3
|
+
### v0.114.0 (2026-02-15)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260209
|
|
6
|
+
|
|
7
|
+
### v0.113.0 (2026-02-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260120
|
|
10
|
+
|
|
3
11
|
### v0.112.0 (2026-01-25)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260113
|
|
@@ -282,6 +282,11 @@ module Google
|
|
|
282
282
|
# @return [Google::Apis::ContainerV1::RayOperatorConfig]
|
|
283
283
|
attr_accessor :ray_operator_config
|
|
284
284
|
|
|
285
|
+
# Configuration for the Slice Controller.
|
|
286
|
+
# Corresponds to the JSON property `sliceControllerConfig`
|
|
287
|
+
# @return [Google::Apis::ContainerV1::SliceControllerConfig]
|
|
288
|
+
attr_accessor :slice_controller_config
|
|
289
|
+
|
|
285
290
|
# Configuration for the Stateful HA add-on.
|
|
286
291
|
# Corresponds to the JSON property `statefulHaConfig`
|
|
287
292
|
# @return [Google::Apis::ContainerV1::StatefulHaConfig]
|
|
@@ -308,6 +313,7 @@ module Google
|
|
|
308
313
|
@network_policy_config = args[:network_policy_config] if args.key?(:network_policy_config)
|
|
309
314
|
@parallelstore_csi_driver_config = args[:parallelstore_csi_driver_config] if args.key?(:parallelstore_csi_driver_config)
|
|
310
315
|
@ray_operator_config = args[:ray_operator_config] if args.key?(:ray_operator_config)
|
|
316
|
+
@slice_controller_config = args[:slice_controller_config] if args.key?(:slice_controller_config)
|
|
311
317
|
@stateful_ha_config = args[:stateful_ha_config] if args.key?(:stateful_ha_config)
|
|
312
318
|
end
|
|
313
319
|
end
|
|
@@ -943,6 +949,31 @@ module Google
|
|
|
943
949
|
end
|
|
944
950
|
end
|
|
945
951
|
|
|
952
|
+
# Swap on the node's boot disk.
|
|
953
|
+
class BootDiskProfile
|
|
954
|
+
include Google::Apis::Core::Hashable
|
|
955
|
+
|
|
956
|
+
# Specifies the size of the swap space in gibibytes (GiB).
|
|
957
|
+
# Corresponds to the JSON property `swapSizeGib`
|
|
958
|
+
# @return [Fixnum]
|
|
959
|
+
attr_accessor :swap_size_gib
|
|
960
|
+
|
|
961
|
+
# Specifies the size of the swap space as a percentage of the boot disk size.
|
|
962
|
+
# Corresponds to the JSON property `swapSizePercent`
|
|
963
|
+
# @return [Fixnum]
|
|
964
|
+
attr_accessor :swap_size_percent
|
|
965
|
+
|
|
966
|
+
def initialize(**args)
|
|
967
|
+
update!(**args)
|
|
968
|
+
end
|
|
969
|
+
|
|
970
|
+
# Update properties of this object
|
|
971
|
+
def update!(**args)
|
|
972
|
+
@swap_size_gib = args[:swap_size_gib] if args.key?(:swap_size_gib)
|
|
973
|
+
@swap_size_percent = args[:swap_size_percent] if args.key?(:swap_size_percent)
|
|
974
|
+
end
|
|
975
|
+
end
|
|
976
|
+
|
|
946
977
|
# CancelOperationRequest cancels a single operation.
|
|
947
978
|
class CancelOperationRequest
|
|
948
979
|
include Google::Apis::Core::Hashable
|
|
@@ -1212,8 +1243,10 @@ module Google
|
|
|
1212
1243
|
# @return [String]
|
|
1213
1244
|
attr_accessor :cluster_ipv4_cidr
|
|
1214
1245
|
|
|
1215
|
-
#
|
|
1216
|
-
#
|
|
1246
|
+
# Deprecated: Compliance Posture is no longer supported. For more details, see
|
|
1247
|
+
# https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-
|
|
1248
|
+
# management-deprecation. CompliancePostureConfig defines the settings needed to
|
|
1249
|
+
# enable/disable features for the Compliance Posture.
|
|
1217
1250
|
# Corresponds to the JSON property `compliancePostureConfig`
|
|
1218
1251
|
# @return [Google::Apis::ContainerV1::CompliancePostureConfig]
|
|
1219
1252
|
attr_accessor :compliance_posture_config
|
|
@@ -1901,8 +1934,10 @@ module Google
|
|
|
1901
1934
|
# @return [Google::Apis::ContainerV1::ClusterAutoscaling]
|
|
1902
1935
|
attr_accessor :desired_cluster_autoscaling
|
|
1903
1936
|
|
|
1904
|
-
#
|
|
1905
|
-
#
|
|
1937
|
+
# Deprecated: Compliance Posture is no longer supported. For more details, see
|
|
1938
|
+
# https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-
|
|
1939
|
+
# management-deprecation. CompliancePostureConfig defines the settings needed to
|
|
1940
|
+
# enable/disable features for the Compliance Posture.
|
|
1906
1941
|
# Corresponds to the JSON property `desiredCompliancePostureConfig`
|
|
1907
1942
|
# @return [Google::Apis::ContainerV1::CompliancePostureConfig]
|
|
1908
1943
|
attr_accessor :desired_compliance_posture_config
|
|
@@ -2505,8 +2540,10 @@ module Google
|
|
|
2505
2540
|
end
|
|
2506
2541
|
end
|
|
2507
2542
|
|
|
2508
|
-
#
|
|
2509
|
-
#
|
|
2543
|
+
# Deprecated: Compliance Posture is no longer supported. For more details, see
|
|
2544
|
+
# https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-
|
|
2545
|
+
# management-deprecation. CompliancePostureConfig defines the settings needed to
|
|
2546
|
+
# enable/disable features for the Compliance Posture.
|
|
2510
2547
|
class CompliancePostureConfig
|
|
2511
2548
|
include Google::Apis::Core::Hashable
|
|
2512
2549
|
|
|
@@ -2697,6 +2734,31 @@ module Google
|
|
|
2697
2734
|
end
|
|
2698
2735
|
end
|
|
2699
2736
|
|
|
2737
|
+
# Contains config to modify node-level parameters for container restart behavior.
|
|
2738
|
+
class CrashLoopBackOffConfig
|
|
2739
|
+
include Google::Apis::Core::Hashable
|
|
2740
|
+
|
|
2741
|
+
# Optional. The maximum duration the backoff delay can accrue to for container
|
|
2742
|
+
# restarts, minimum 1 second, maximum 300 seconds. If not set, defaults to the
|
|
2743
|
+
# internal crashloopbackoff maximum. The string must be a sequence of decimal
|
|
2744
|
+
# numbers, each with optional fraction and a unit suffix, such as "300ms". Valid
|
|
2745
|
+
# time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". See https://
|
|
2746
|
+
# kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#configurable-
|
|
2747
|
+
# container-restart-delay for more details.
|
|
2748
|
+
# Corresponds to the JSON property `maxContainerRestartPeriod`
|
|
2749
|
+
# @return [String]
|
|
2750
|
+
attr_accessor :max_container_restart_period
|
|
2751
|
+
|
|
2752
|
+
def initialize(**args)
|
|
2753
|
+
update!(**args)
|
|
2754
|
+
end
|
|
2755
|
+
|
|
2756
|
+
# Update properties of this object
|
|
2757
|
+
def update!(**args)
|
|
2758
|
+
@max_container_restart_period = args[:max_container_restart_period] if args.key?(:max_container_restart_period)
|
|
2759
|
+
end
|
|
2760
|
+
end
|
|
2761
|
+
|
|
2700
2762
|
# CreateClusterRequest creates a cluster.
|
|
2701
2763
|
class CreateClusterRequest
|
|
2702
2764
|
include Google::Apis::Core::Hashable
|
|
@@ -2948,6 +3010,25 @@ module Google
|
|
|
2948
3010
|
end
|
|
2949
3011
|
end
|
|
2950
3012
|
|
|
3013
|
+
# Provisions a new, separate local NVMe SSD exclusively for swap.
|
|
3014
|
+
class DedicatedLocalSsdProfile
|
|
3015
|
+
include Google::Apis::Core::Hashable
|
|
3016
|
+
|
|
3017
|
+
# The number of physical local NVMe SSD disks to attach.
|
|
3018
|
+
# Corresponds to the JSON property `diskCount`
|
|
3019
|
+
# @return [Fixnum]
|
|
3020
|
+
attr_accessor :disk_count
|
|
3021
|
+
|
|
3022
|
+
def initialize(**args)
|
|
3023
|
+
update!(**args)
|
|
3024
|
+
end
|
|
3025
|
+
|
|
3026
|
+
# Update properties of this object
|
|
3027
|
+
def update!(**args)
|
|
3028
|
+
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
|
3029
|
+
end
|
|
3030
|
+
end
|
|
3031
|
+
|
|
2951
3032
|
# DefaultComputeClassConfig defines default compute class configuration.
|
|
2952
3033
|
class DefaultComputeClassConfig
|
|
2953
3034
|
include Google::Apis::Core::Hashable
|
|
@@ -3031,6 +3112,47 @@ module Google
|
|
|
3031
3112
|
end
|
|
3032
3113
|
end
|
|
3033
3114
|
|
|
3115
|
+
# DisruptionBudget defines the upgrade disruption budget for the cluster control
|
|
3116
|
+
# plane.
|
|
3117
|
+
class DisruptionBudget
|
|
3118
|
+
include Google::Apis::Core::Hashable
|
|
3119
|
+
|
|
3120
|
+
# Output only. The last time a disruption was performed on the control plane.
|
|
3121
|
+
# Corresponds to the JSON property `lastDisruptionTime`
|
|
3122
|
+
# @return [String]
|
|
3123
|
+
attr_accessor :last_disruption_time
|
|
3124
|
+
|
|
3125
|
+
# Output only. The last time a minor version upgrade was performed on the
|
|
3126
|
+
# control plane.
|
|
3127
|
+
# Corresponds to the JSON property `lastMinorVersionDisruptionTime`
|
|
3128
|
+
# @return [String]
|
|
3129
|
+
attr_accessor :last_minor_version_disruption_time
|
|
3130
|
+
|
|
3131
|
+
# Optional. The minimum duration between two minor version upgrades of the
|
|
3132
|
+
# control plane.
|
|
3133
|
+
# Corresponds to the JSON property `minorVersionDisruptionInterval`
|
|
3134
|
+
# @return [String]
|
|
3135
|
+
attr_accessor :minor_version_disruption_interval
|
|
3136
|
+
|
|
3137
|
+
# Optional. The minimum duration between two patch version upgrades of the
|
|
3138
|
+
# control plane.
|
|
3139
|
+
# Corresponds to the JSON property `patchVersionDisruptionInterval`
|
|
3140
|
+
# @return [String]
|
|
3141
|
+
attr_accessor :patch_version_disruption_interval
|
|
3142
|
+
|
|
3143
|
+
def initialize(**args)
|
|
3144
|
+
update!(**args)
|
|
3145
|
+
end
|
|
3146
|
+
|
|
3147
|
+
# Update properties of this object
|
|
3148
|
+
def update!(**args)
|
|
3149
|
+
@last_disruption_time = args[:last_disruption_time] if args.key?(:last_disruption_time)
|
|
3150
|
+
@last_minor_version_disruption_time = args[:last_minor_version_disruption_time] if args.key?(:last_minor_version_disruption_time)
|
|
3151
|
+
@minor_version_disruption_interval = args[:minor_version_disruption_interval] if args.key?(:minor_version_disruption_interval)
|
|
3152
|
+
@patch_version_disruption_interval = args[:patch_version_disruption_interval] if args.key?(:patch_version_disruption_interval)
|
|
3153
|
+
end
|
|
3154
|
+
end
|
|
3155
|
+
|
|
3034
3156
|
# DisruptionEvent is a notification sent to customers about the disruption event
|
|
3035
3157
|
# of a resource.
|
|
3036
3158
|
class DisruptionEvent
|
|
@@ -3109,6 +3231,27 @@ module Google
|
|
|
3109
3231
|
end
|
|
3110
3232
|
end
|
|
3111
3233
|
|
|
3234
|
+
# Defines encryption settings for the swap space.
|
|
3235
|
+
class EncryptionConfig
|
|
3236
|
+
include Google::Apis::Core::Hashable
|
|
3237
|
+
|
|
3238
|
+
# Optional. If true, swap space will not be encrypted. Defaults to false (
|
|
3239
|
+
# encrypted).
|
|
3240
|
+
# Corresponds to the JSON property `disabled`
|
|
3241
|
+
# @return [Boolean]
|
|
3242
|
+
attr_accessor :disabled
|
|
3243
|
+
alias_method :disabled?, :disabled
|
|
3244
|
+
|
|
3245
|
+
def initialize(**args)
|
|
3246
|
+
update!(**args)
|
|
3247
|
+
end
|
|
3248
|
+
|
|
3249
|
+
# Update properties of this object
|
|
3250
|
+
def update!(**args)
|
|
3251
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
|
3252
|
+
end
|
|
3253
|
+
end
|
|
3254
|
+
|
|
3112
3255
|
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
|
3113
3256
|
# Enterprise features are now available without an Enterprise tier.
|
|
3114
3257
|
class EnterpriseConfig
|
|
@@ -3135,6 +3278,32 @@ module Google
|
|
|
3135
3278
|
end
|
|
3136
3279
|
end
|
|
3137
3280
|
|
|
3281
|
+
# Swap on the local SSD shared with pod ephemeral storage.
|
|
3282
|
+
class EphemeralLocalSsdProfile
|
|
3283
|
+
include Google::Apis::Core::Hashable
|
|
3284
|
+
|
|
3285
|
+
# Specifies the size of the swap space in gibibytes (GiB).
|
|
3286
|
+
# Corresponds to the JSON property `swapSizeGib`
|
|
3287
|
+
# @return [Fixnum]
|
|
3288
|
+
attr_accessor :swap_size_gib
|
|
3289
|
+
|
|
3290
|
+
# Specifies the size of the swap space as a percentage of the ephemeral local
|
|
3291
|
+
# SSD capacity.
|
|
3292
|
+
# Corresponds to the JSON property `swapSizePercent`
|
|
3293
|
+
# @return [Fixnum]
|
|
3294
|
+
attr_accessor :swap_size_percent
|
|
3295
|
+
|
|
3296
|
+
def initialize(**args)
|
|
3297
|
+
update!(**args)
|
|
3298
|
+
end
|
|
3299
|
+
|
|
3300
|
+
# Update properties of this object
|
|
3301
|
+
def update!(**args)
|
|
3302
|
+
@swap_size_gib = args[:swap_size_gib] if args.key?(:swap_size_gib)
|
|
3303
|
+
@swap_size_percent = args[:swap_size_percent] if args.key?(:swap_size_percent)
|
|
3304
|
+
end
|
|
3305
|
+
end
|
|
3306
|
+
|
|
3138
3307
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
|
3139
3308
|
# storage using Local SSDs.
|
|
3140
3309
|
class EphemeralStorageLocalSsdConfig
|
|
@@ -3489,6 +3658,25 @@ module Google
|
|
|
3489
3658
|
end
|
|
3490
3659
|
end
|
|
3491
3660
|
|
|
3661
|
+
# GPUDirectConfig specifies the GPU direct strategy on the node pool.
|
|
3662
|
+
class GpuDirectConfig
|
|
3663
|
+
include Google::Apis::Core::Hashable
|
|
3664
|
+
|
|
3665
|
+
# The type of GPU direct strategy to enable on the node pool.
|
|
3666
|
+
# Corresponds to the JSON property `gpuDirectStrategy`
|
|
3667
|
+
# @return [String]
|
|
3668
|
+
attr_accessor :gpu_direct_strategy
|
|
3669
|
+
|
|
3670
|
+
def initialize(**args)
|
|
3671
|
+
update!(**args)
|
|
3672
|
+
end
|
|
3673
|
+
|
|
3674
|
+
# Update properties of this object
|
|
3675
|
+
def update!(**args)
|
|
3676
|
+
@gpu_direct_strategy = args[:gpu_direct_strategy] if args.key?(:gpu_direct_strategy)
|
|
3677
|
+
end
|
|
3678
|
+
end
|
|
3679
|
+
|
|
3492
3680
|
# GPUDriverInstallationConfig specifies the version of GPU driver to be auto
|
|
3493
3681
|
# installed.
|
|
3494
3682
|
class GpuDriverInstallationConfig
|
|
@@ -4432,6 +4620,11 @@ module Google
|
|
|
4432
4620
|
# @return [Google::Apis::ContainerV1::NodeKernelModuleLoading]
|
|
4433
4621
|
attr_accessor :node_kernel_module_loading
|
|
4434
4622
|
|
|
4623
|
+
# Configuration for swap memory on a node pool.
|
|
4624
|
+
# Corresponds to the JSON property `swapConfig`
|
|
4625
|
+
# @return [Google::Apis::ContainerV1::SwapConfig]
|
|
4626
|
+
attr_accessor :swap_config
|
|
4627
|
+
|
|
4435
4628
|
# The Linux kernel parameters to be applied to the nodes and all pods running on
|
|
4436
4629
|
# the nodes. The following parameters are supported. net.core.busy_poll net.core.
|
|
4437
4630
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
|
@@ -4481,6 +4674,7 @@ module Google
|
|
|
4481
4674
|
@cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
|
|
4482
4675
|
@hugepages = args[:hugepages] if args.key?(:hugepages)
|
|
4483
4676
|
@node_kernel_module_loading = args[:node_kernel_module_loading] if args.key?(:node_kernel_module_loading)
|
|
4677
|
+
@swap_config = args[:swap_config] if args.key?(:swap_config)
|
|
4484
4678
|
@sysctls = args[:sysctls] if args.key?(:sysctls)
|
|
4485
4679
|
@transparent_hugepage_defrag = args[:transparent_hugepage_defrag] if args.key?(:transparent_hugepage_defrag)
|
|
4486
4680
|
@transparent_hugepage_enabled = args[:transparent_hugepage_enabled] if args.key?(:transparent_hugepage_enabled)
|
|
@@ -4737,6 +4931,12 @@ module Google
|
|
|
4737
4931
|
class MaintenancePolicy
|
|
4738
4932
|
include Google::Apis::Core::Hashable
|
|
4739
4933
|
|
|
4934
|
+
# DisruptionBudget defines the upgrade disruption budget for the cluster control
|
|
4935
|
+
# plane.
|
|
4936
|
+
# Corresponds to the JSON property `disruptionBudget`
|
|
4937
|
+
# @return [Google::Apis::ContainerV1::DisruptionBudget]
|
|
4938
|
+
attr_accessor :disruption_budget
|
|
4939
|
+
|
|
4740
4940
|
# A hash identifying the version of this policy, so that updates to fields of
|
|
4741
4941
|
# the policy won't accidentally undo intermediate changes (and so that users of
|
|
4742
4942
|
# the API unaware of some fields won't accidentally remove other fields). Make a
|
|
@@ -4757,6 +4957,7 @@ module Google
|
|
|
4757
4957
|
|
|
4758
4958
|
# Update properties of this object
|
|
4759
4959
|
def update!(**args)
|
|
4960
|
+
@disruption_budget = args[:disruption_budget] if args.key?(:disruption_budget)
|
|
4760
4961
|
@resource_version = args[:resource_version] if args.key?(:resource_version)
|
|
4761
4962
|
@window = args[:window] if args.key?(:window)
|
|
4762
4963
|
end
|
|
@@ -5479,6 +5680,11 @@ module Google
|
|
|
5479
5680
|
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
|
5480
5681
|
attr_accessor :gcfs_config
|
|
5481
5682
|
|
|
5683
|
+
# GPUDirectConfig specifies the GPU direct strategy on the node pool.
|
|
5684
|
+
# Corresponds to the JSON property `gpuDirectConfig`
|
|
5685
|
+
# @return [Google::Apis::ContainerV1::GpuDirectConfig]
|
|
5686
|
+
attr_accessor :gpu_direct_config
|
|
5687
|
+
|
|
5482
5688
|
# Configuration of gVNIC feature.
|
|
5483
5689
|
# Corresponds to the JSON property `gvnic`
|
|
5484
5690
|
# @return [Google::Apis::ContainerV1::VirtualNic]
|
|
@@ -5723,6 +5929,7 @@ module Google
|
|
|
5723
5929
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
|
5724
5930
|
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
|
5725
5931
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
|
5932
|
+
@gpu_direct_config = args[:gpu_direct_config] if args.key?(:gpu_direct_config)
|
|
5726
5933
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
|
5727
5934
|
@image_type = args[:image_type] if args.key?(:image_type)
|
|
5728
5935
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
|
@@ -5900,6 +6107,11 @@ module Google
|
|
|
5900
6107
|
# @return [String]
|
|
5901
6108
|
attr_accessor :cpu_manager_policy
|
|
5902
6109
|
|
|
6110
|
+
# Contains config to modify node-level parameters for container restart behavior.
|
|
6111
|
+
# Corresponds to the JSON property `crashLoopBackOff`
|
|
6112
|
+
# @return [Google::Apis::ContainerV1::CrashLoopBackOffConfig]
|
|
6113
|
+
attr_accessor :crash_loop_back_off
|
|
6114
|
+
|
|
5903
6115
|
# Optional. eviction_max_pod_grace_period_seconds is the maximum allowed grace
|
|
5904
6116
|
# period (in seconds) to use when terminating pods in response to a soft
|
|
5905
6117
|
# eviction threshold being met. This value effectively caps the Pod's
|
|
@@ -5995,6 +6207,26 @@ module Google
|
|
|
5995
6207
|
# @return [Fixnum]
|
|
5996
6208
|
attr_accessor :pod_pids_limit
|
|
5997
6209
|
|
|
6210
|
+
# Optional. shutdown_grace_period_critical_pods_seconds is the maximum allowed
|
|
6211
|
+
# grace period (in seconds) used to terminate critical pods during a node
|
|
6212
|
+
# shutdown. This value should be <= shutdown_grace_period_seconds, and is only
|
|
6213
|
+
# valid if shutdown_grace_period_seconds is set. https://kubernetes.io/docs/
|
|
6214
|
+
# concepts/cluster-administration/node-shutdown/ Range: [0, 120].
|
|
6215
|
+
# Corresponds to the JSON property `shutdownGracePeriodCriticalPodsSeconds`
|
|
6216
|
+
# @return [Fixnum]
|
|
6217
|
+
attr_accessor :shutdown_grace_period_critical_pods_seconds
|
|
6218
|
+
|
|
6219
|
+
# Optional. shutdown_grace_period_seconds is the maximum allowed grace period (
|
|
6220
|
+
# in seconds) the total duration that the node should delay the shutdown during
|
|
6221
|
+
# a graceful shutdown. This is the total grace period for pod termination for
|
|
6222
|
+
# both regular and critical pods. https://kubernetes.io/docs/concepts/cluster-
|
|
6223
|
+
# administration/node-shutdown/ If set to 0, node will not enable the graceful
|
|
6224
|
+
# node shutdown functionality. This field is only valid for Spot VMs. Allowed
|
|
6225
|
+
# values: 0, 30, 120.
|
|
6226
|
+
# Corresponds to the JSON property `shutdownGracePeriodSeconds`
|
|
6227
|
+
# @return [Fixnum]
|
|
6228
|
+
attr_accessor :shutdown_grace_period_seconds
|
|
6229
|
+
|
|
5998
6230
|
# Optional. Defines whether to enable single process OOM killer. If true, will
|
|
5999
6231
|
# prevent the memory.oom.group flag from being set for container cgroups in
|
|
6000
6232
|
# cgroups v2. This causes processes in the container to be OOM killed
|
|
@@ -6022,6 +6254,7 @@ module Google
|
|
|
6022
6254
|
@cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
|
|
6023
6255
|
@cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
|
|
6024
6256
|
@cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
|
|
6257
|
+
@crash_loop_back_off = args[:crash_loop_back_off] if args.key?(:crash_loop_back_off)
|
|
6025
6258
|
@eviction_max_pod_grace_period_seconds = args[:eviction_max_pod_grace_period_seconds] if args.key?(:eviction_max_pod_grace_period_seconds)
|
|
6026
6259
|
@eviction_minimum_reclaim = args[:eviction_minimum_reclaim] if args.key?(:eviction_minimum_reclaim)
|
|
6027
6260
|
@eviction_soft = args[:eviction_soft] if args.key?(:eviction_soft)
|
|
@@ -6034,6 +6267,8 @@ module Google
|
|
|
6034
6267
|
@max_parallel_image_pulls = args[:max_parallel_image_pulls] if args.key?(:max_parallel_image_pulls)
|
|
6035
6268
|
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
|
6036
6269
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
|
6270
|
+
@shutdown_grace_period_critical_pods_seconds = args[:shutdown_grace_period_critical_pods_seconds] if args.key?(:shutdown_grace_period_critical_pods_seconds)
|
|
6271
|
+
@shutdown_grace_period_seconds = args[:shutdown_grace_period_seconds] if args.key?(:shutdown_grace_period_seconds)
|
|
6037
6272
|
@single_process_oom_kill = args[:single_process_oom_kill] if args.key?(:single_process_oom_kill)
|
|
6038
6273
|
@topology_manager = args[:topology_manager] if args.key?(:topology_manager)
|
|
6039
6274
|
end
|
|
@@ -6178,11 +6413,13 @@ module Google
|
|
|
6178
6413
|
|
|
6179
6414
|
# Optional. The subnetwork name/path for the node pool. Format: projects/`
|
|
6180
6415
|
# project`/regions/`region`/subnetworks/`subnetwork` If the cluster is
|
|
6181
|
-
# associated with multiple subnetworks, the subnetwork can be either:
|
|
6182
|
-
# supplied subnetwork name
|
|
6183
|
-
#
|
|
6184
|
-
#
|
|
6185
|
-
# pool creation
|
|
6416
|
+
# associated with multiple subnetworks, the subnetwork can be either: - A user
|
|
6417
|
+
# supplied subnetwork name during node pool creation (e.g., `my-subnet`). The
|
|
6418
|
+
# name must be between 1 and 63 characters long, start with a letter, contain
|
|
6419
|
+
# only letters, numbers, and hyphens, and end with a letter or a number. - A
|
|
6420
|
+
# full subnetwork path during node pool creation, such as `projects/gke-project/
|
|
6421
|
+
# regions/us-central1/subnetworks/my-subnet` - A subnetwork path picked based on
|
|
6422
|
+
# the IP utilization during node pool creation and is immutable.
|
|
6186
6423
|
# Corresponds to the JSON property `subnetwork`
|
|
6187
6424
|
# @return [String]
|
|
6188
6425
|
attr_accessor :subnetwork
|
|
@@ -8731,6 +8968,26 @@ module Google
|
|
|
8731
8968
|
end
|
|
8732
8969
|
end
|
|
8733
8970
|
|
|
8971
|
+
# Configuration for the Slice Controller.
|
|
8972
|
+
class SliceControllerConfig
|
|
8973
|
+
include Google::Apis::Core::Hashable
|
|
8974
|
+
|
|
8975
|
+
# Optional. Indicates whether Slice Controller is enabled in the cluster.
|
|
8976
|
+
# Corresponds to the JSON property `enabled`
|
|
8977
|
+
# @return [Boolean]
|
|
8978
|
+
attr_accessor :enabled
|
|
8979
|
+
alias_method :enabled?, :enabled
|
|
8980
|
+
|
|
8981
|
+
def initialize(**args)
|
|
8982
|
+
update!(**args)
|
|
8983
|
+
end
|
|
8984
|
+
|
|
8985
|
+
# Update properties of this object
|
|
8986
|
+
def update!(**args)
|
|
8987
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
8988
|
+
end
|
|
8989
|
+
end
|
|
8990
|
+
|
|
8734
8991
|
# SoleTenantConfig contains the NodeAffinities to specify what shared sole
|
|
8735
8992
|
# tenant node groups should back the node pool.
|
|
8736
8993
|
class SoleTenantConfig
|
|
@@ -8934,6 +9191,50 @@ module Google
|
|
|
8934
9191
|
end
|
|
8935
9192
|
end
|
|
8936
9193
|
|
|
9194
|
+
# Configuration for swap memory on a node pool.
|
|
9195
|
+
class SwapConfig
|
|
9196
|
+
include Google::Apis::Core::Hashable
|
|
9197
|
+
|
|
9198
|
+
# Swap on the node's boot disk.
|
|
9199
|
+
# Corresponds to the JSON property `bootDiskProfile`
|
|
9200
|
+
# @return [Google::Apis::ContainerV1::BootDiskProfile]
|
|
9201
|
+
attr_accessor :boot_disk_profile
|
|
9202
|
+
|
|
9203
|
+
# Provisions a new, separate local NVMe SSD exclusively for swap.
|
|
9204
|
+
# Corresponds to the JSON property `dedicatedLocalSsdProfile`
|
|
9205
|
+
# @return [Google::Apis::ContainerV1::DedicatedLocalSsdProfile]
|
|
9206
|
+
attr_accessor :dedicated_local_ssd_profile
|
|
9207
|
+
|
|
9208
|
+
# Optional. Enables or disables swap for the node pool.
|
|
9209
|
+
# Corresponds to the JSON property `enabled`
|
|
9210
|
+
# @return [Boolean]
|
|
9211
|
+
attr_accessor :enabled
|
|
9212
|
+
alias_method :enabled?, :enabled
|
|
9213
|
+
|
|
9214
|
+
# Defines encryption settings for the swap space.
|
|
9215
|
+
# Corresponds to the JSON property `encryptionConfig`
|
|
9216
|
+
# @return [Google::Apis::ContainerV1::EncryptionConfig]
|
|
9217
|
+
attr_accessor :encryption_config
|
|
9218
|
+
|
|
9219
|
+
# Swap on the local SSD shared with pod ephemeral storage.
|
|
9220
|
+
# Corresponds to the JSON property `ephemeralLocalSsdProfile`
|
|
9221
|
+
# @return [Google::Apis::ContainerV1::EphemeralLocalSsdProfile]
|
|
9222
|
+
attr_accessor :ephemeral_local_ssd_profile
|
|
9223
|
+
|
|
9224
|
+
def initialize(**args)
|
|
9225
|
+
update!(**args)
|
|
9226
|
+
end
|
|
9227
|
+
|
|
9228
|
+
# Update properties of this object
|
|
9229
|
+
def update!(**args)
|
|
9230
|
+
@boot_disk_profile = args[:boot_disk_profile] if args.key?(:boot_disk_profile)
|
|
9231
|
+
@dedicated_local_ssd_profile = args[:dedicated_local_ssd_profile] if args.key?(:dedicated_local_ssd_profile)
|
|
9232
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
9233
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
9234
|
+
@ephemeral_local_ssd_profile = args[:ephemeral_local_ssd_profile] if args.key?(:ephemeral_local_ssd_profile)
|
|
9235
|
+
end
|
|
9236
|
+
end
|
|
9237
|
+
|
|
8937
9238
|
# Represents an arbitrary window of time.
|
|
8938
9239
|
class TimeWindow
|
|
8939
9240
|
include Google::Apis::Core::Hashable
|
|
@@ -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.114.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260209"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -166,6 +166,12 @@ module Google
|
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
+
class BootDiskProfile
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
169
175
|
class CancelOperationRequest
|
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
177
|
|
|
@@ -304,6 +310,12 @@ module Google
|
|
|
304
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
305
311
|
end
|
|
306
312
|
|
|
313
|
+
class CrashLoopBackOffConfig
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
307
319
|
class CreateClusterRequest
|
|
308
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
321
|
|
|
@@ -340,6 +352,12 @@ module Google
|
|
|
340
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
341
353
|
end
|
|
342
354
|
|
|
355
|
+
class DedicatedLocalSsdProfile
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
343
361
|
class DefaultComputeClassConfig
|
|
344
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
363
|
|
|
@@ -364,6 +382,12 @@ module Google
|
|
|
364
382
|
include Google::Apis::Core::JsonObjectSupport
|
|
365
383
|
end
|
|
366
384
|
|
|
385
|
+
class DisruptionBudget
|
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
|
+
|
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
389
|
+
end
|
|
390
|
+
|
|
367
391
|
class DisruptionEvent
|
|
368
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
369
393
|
|
|
@@ -382,12 +406,24 @@ module Google
|
|
|
382
406
|
include Google::Apis::Core::JsonObjectSupport
|
|
383
407
|
end
|
|
384
408
|
|
|
409
|
+
class EncryptionConfig
|
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
|
+
|
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
413
|
+
end
|
|
414
|
+
|
|
385
415
|
class EnterpriseConfig
|
|
386
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
417
|
|
|
388
418
|
include Google::Apis::Core::JsonObjectSupport
|
|
389
419
|
end
|
|
390
420
|
|
|
421
|
+
class EphemeralLocalSsdProfile
|
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
|
+
|
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
425
|
+
end
|
|
426
|
+
|
|
391
427
|
class EphemeralStorageLocalSsdConfig
|
|
392
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
429
|
|
|
@@ -436,6 +472,12 @@ module Google
|
|
|
436
472
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
473
|
end
|
|
438
474
|
|
|
475
|
+
class GpuDirectConfig
|
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
477
|
+
|
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
479
|
+
end
|
|
480
|
+
|
|
439
481
|
class GpuDriverInstallationConfig
|
|
440
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
483
|
|
|
@@ -1198,6 +1240,12 @@ module Google
|
|
|
1198
1240
|
include Google::Apis::Core::JsonObjectSupport
|
|
1199
1241
|
end
|
|
1200
1242
|
|
|
1243
|
+
class SliceControllerConfig
|
|
1244
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1245
|
+
|
|
1246
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1247
|
+
end
|
|
1248
|
+
|
|
1201
1249
|
class SoleTenantConfig
|
|
1202
1250
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1203
1251
|
|
|
@@ -1234,6 +1282,12 @@ module Google
|
|
|
1234
1282
|
include Google::Apis::Core::JsonObjectSupport
|
|
1235
1283
|
end
|
|
1236
1284
|
|
|
1285
|
+
class SwapConfig
|
|
1286
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1287
|
+
|
|
1288
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1289
|
+
end
|
|
1290
|
+
|
|
1237
1291
|
class TimeWindow
|
|
1238
1292
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1239
1293
|
|
|
@@ -1443,6 +1497,8 @@ module Google
|
|
|
1443
1497
|
|
|
1444
1498
|
property :ray_operator_config, as: 'rayOperatorConfig', class: Google::Apis::ContainerV1::RayOperatorConfig, decorator: Google::Apis::ContainerV1::RayOperatorConfig::Representation
|
|
1445
1499
|
|
|
1500
|
+
property :slice_controller_config, as: 'sliceControllerConfig', class: Google::Apis::ContainerV1::SliceControllerConfig, decorator: Google::Apis::ContainerV1::SliceControllerConfig::Representation
|
|
1501
|
+
|
|
1446
1502
|
property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1::StatefulHaConfig, decorator: Google::Apis::ContainerV1::StatefulHaConfig::Representation
|
|
1447
1503
|
|
|
1448
1504
|
end
|
|
@@ -1615,6 +1671,14 @@ module Google
|
|
|
1615
1671
|
end
|
|
1616
1672
|
end
|
|
1617
1673
|
|
|
1674
|
+
class BootDiskProfile
|
|
1675
|
+
# @private
|
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1677
|
+
property :swap_size_gib, :numeric_string => true, as: 'swapSizeGib'
|
|
1678
|
+
property :swap_size_percent, as: 'swapSizePercent'
|
|
1679
|
+
end
|
|
1680
|
+
end
|
|
1681
|
+
|
|
1618
1682
|
class CancelOperationRequest
|
|
1619
1683
|
# @private
|
|
1620
1684
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2073,6 +2137,13 @@ module Google
|
|
|
2073
2137
|
end
|
|
2074
2138
|
end
|
|
2075
2139
|
|
|
2140
|
+
class CrashLoopBackOffConfig
|
|
2141
|
+
# @private
|
|
2142
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2143
|
+
property :max_container_restart_period, as: 'maxContainerRestartPeriod'
|
|
2144
|
+
end
|
|
2145
|
+
end
|
|
2146
|
+
|
|
2076
2147
|
class CreateClusterRequest
|
|
2077
2148
|
# @private
|
|
2078
2149
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2136,6 +2207,13 @@ module Google
|
|
|
2136
2207
|
end
|
|
2137
2208
|
end
|
|
2138
2209
|
|
|
2210
|
+
class DedicatedLocalSsdProfile
|
|
2211
|
+
# @private
|
|
2212
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2213
|
+
property :disk_count, :numeric_string => true, as: 'diskCount'
|
|
2214
|
+
end
|
|
2215
|
+
end
|
|
2216
|
+
|
|
2139
2217
|
class DefaultComputeClassConfig
|
|
2140
2218
|
# @private
|
|
2141
2219
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2165,6 +2243,16 @@ module Google
|
|
|
2165
2243
|
end
|
|
2166
2244
|
end
|
|
2167
2245
|
|
|
2246
|
+
class DisruptionBudget
|
|
2247
|
+
# @private
|
|
2248
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2249
|
+
property :last_disruption_time, as: 'lastDisruptionTime'
|
|
2250
|
+
property :last_minor_version_disruption_time, as: 'lastMinorVersionDisruptionTime'
|
|
2251
|
+
property :minor_version_disruption_interval, as: 'minorVersionDisruptionInterval'
|
|
2252
|
+
property :patch_version_disruption_interval, as: 'patchVersionDisruptionInterval'
|
|
2253
|
+
end
|
|
2254
|
+
end
|
|
2255
|
+
|
|
2168
2256
|
class DisruptionEvent
|
|
2169
2257
|
# @private
|
|
2170
2258
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2189,6 +2277,13 @@ module Google
|
|
|
2189
2277
|
end
|
|
2190
2278
|
end
|
|
2191
2279
|
|
|
2280
|
+
class EncryptionConfig
|
|
2281
|
+
# @private
|
|
2282
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2283
|
+
property :disabled, as: 'disabled'
|
|
2284
|
+
end
|
|
2285
|
+
end
|
|
2286
|
+
|
|
2192
2287
|
class EnterpriseConfig
|
|
2193
2288
|
# @private
|
|
2194
2289
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2197,6 +2292,14 @@ module Google
|
|
|
2197
2292
|
end
|
|
2198
2293
|
end
|
|
2199
2294
|
|
|
2295
|
+
class EphemeralLocalSsdProfile
|
|
2296
|
+
# @private
|
|
2297
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2298
|
+
property :swap_size_gib, :numeric_string => true, as: 'swapSizeGib'
|
|
2299
|
+
property :swap_size_percent, as: 'swapSizePercent'
|
|
2300
|
+
end
|
|
2301
|
+
end
|
|
2302
|
+
|
|
2200
2303
|
class EphemeralStorageLocalSsdConfig
|
|
2201
2304
|
# @private
|
|
2202
2305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2272,6 +2375,13 @@ module Google
|
|
|
2272
2375
|
end
|
|
2273
2376
|
end
|
|
2274
2377
|
|
|
2378
|
+
class GpuDirectConfig
|
|
2379
|
+
# @private
|
|
2380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2381
|
+
property :gpu_direct_strategy, as: 'gpuDirectStrategy'
|
|
2382
|
+
end
|
|
2383
|
+
end
|
|
2384
|
+
|
|
2275
2385
|
class GpuDriverInstallationConfig
|
|
2276
2386
|
# @private
|
|
2277
2387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2528,6 +2638,8 @@ module Google
|
|
|
2528
2638
|
|
|
2529
2639
|
property :node_kernel_module_loading, as: 'nodeKernelModuleLoading', class: Google::Apis::ContainerV1::NodeKernelModuleLoading, decorator: Google::Apis::ContainerV1::NodeKernelModuleLoading::Representation
|
|
2530
2640
|
|
|
2641
|
+
property :swap_config, as: 'swapConfig', class: Google::Apis::ContainerV1::SwapConfig, decorator: Google::Apis::ContainerV1::SwapConfig::Representation
|
|
2642
|
+
|
|
2531
2643
|
hash :sysctls, as: 'sysctls'
|
|
2532
2644
|
property :transparent_hugepage_defrag, as: 'transparentHugepageDefrag'
|
|
2533
2645
|
property :transparent_hugepage_enabled, as: 'transparentHugepageEnabled'
|
|
@@ -2617,6 +2729,8 @@ module Google
|
|
|
2617
2729
|
class MaintenancePolicy
|
|
2618
2730
|
# @private
|
|
2619
2731
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2732
|
+
property :disruption_budget, as: 'disruptionBudget', class: Google::Apis::ContainerV1::DisruptionBudget, decorator: Google::Apis::ContainerV1::DisruptionBudget::Representation
|
|
2733
|
+
|
|
2620
2734
|
property :resource_version, as: 'resourceVersion'
|
|
2621
2735
|
property :window, as: 'window', class: Google::Apis::ContainerV1::MaintenanceWindow, decorator: Google::Apis::ContainerV1::MaintenanceWindow::Representation
|
|
2622
2736
|
|
|
@@ -2824,6 +2938,8 @@ module Google
|
|
|
2824
2938
|
property :flex_start, as: 'flexStart'
|
|
2825
2939
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
|
2826
2940
|
|
|
2941
|
+
property :gpu_direct_config, as: 'gpuDirectConfig', class: Google::Apis::ContainerV1::GpuDirectConfig, decorator: Google::Apis::ContainerV1::GpuDirectConfig::Representation
|
|
2942
|
+
|
|
2827
2943
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
|
2828
2944
|
|
|
2829
2945
|
property :image_type, as: 'imageType'
|
|
@@ -2910,6 +3026,8 @@ module Google
|
|
|
2910
3026
|
property :cpu_cfs_quota, as: 'cpuCfsQuota'
|
|
2911
3027
|
property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
|
|
2912
3028
|
property :cpu_manager_policy, as: 'cpuManagerPolicy'
|
|
3029
|
+
property :crash_loop_back_off, as: 'crashLoopBackOff', class: Google::Apis::ContainerV1::CrashLoopBackOffConfig, decorator: Google::Apis::ContainerV1::CrashLoopBackOffConfig::Representation
|
|
3030
|
+
|
|
2913
3031
|
property :eviction_max_pod_grace_period_seconds, as: 'evictionMaxPodGracePeriodSeconds'
|
|
2914
3032
|
property :eviction_minimum_reclaim, as: 'evictionMinimumReclaim', class: Google::Apis::ContainerV1::EvictionMinimumReclaim, decorator: Google::Apis::ContainerV1::EvictionMinimumReclaim::Representation
|
|
2915
3033
|
|
|
@@ -2926,6 +3044,8 @@ module Google
|
|
|
2926
3044
|
property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1::MemoryManager, decorator: Google::Apis::ContainerV1::MemoryManager::Representation
|
|
2927
3045
|
|
|
2928
3046
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
|
3047
|
+
property :shutdown_grace_period_critical_pods_seconds, as: 'shutdownGracePeriodCriticalPodsSeconds'
|
|
3048
|
+
property :shutdown_grace_period_seconds, as: 'shutdownGracePeriodSeconds'
|
|
2929
3049
|
property :single_process_oom_kill, as: 'singleProcessOomKill'
|
|
2930
3050
|
property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1::TopologyManager, decorator: Google::Apis::ContainerV1::TopologyManager::Representation
|
|
2931
3051
|
|
|
@@ -3622,6 +3742,13 @@ module Google
|
|
|
3622
3742
|
end
|
|
3623
3743
|
end
|
|
3624
3744
|
|
|
3745
|
+
class SliceControllerConfig
|
|
3746
|
+
# @private
|
|
3747
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3748
|
+
property :enabled, as: 'enabled'
|
|
3749
|
+
end
|
|
3750
|
+
end
|
|
3751
|
+
|
|
3625
3752
|
class SoleTenantConfig
|
|
3626
3753
|
# @private
|
|
3627
3754
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3676,6 +3803,21 @@ module Google
|
|
|
3676
3803
|
end
|
|
3677
3804
|
end
|
|
3678
3805
|
|
|
3806
|
+
class SwapConfig
|
|
3807
|
+
# @private
|
|
3808
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3809
|
+
property :boot_disk_profile, as: 'bootDiskProfile', class: Google::Apis::ContainerV1::BootDiskProfile, decorator: Google::Apis::ContainerV1::BootDiskProfile::Representation
|
|
3810
|
+
|
|
3811
|
+
property :dedicated_local_ssd_profile, as: 'dedicatedLocalSsdProfile', class: Google::Apis::ContainerV1::DedicatedLocalSsdProfile, decorator: Google::Apis::ContainerV1::DedicatedLocalSsdProfile::Representation
|
|
3812
|
+
|
|
3813
|
+
property :enabled, as: 'enabled'
|
|
3814
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ContainerV1::EncryptionConfig, decorator: Google::Apis::ContainerV1::EncryptionConfig::Representation
|
|
3815
|
+
|
|
3816
|
+
property :ephemeral_local_ssd_profile, as: 'ephemeralLocalSsdProfile', class: Google::Apis::ContainerV1::EphemeralLocalSsdProfile, decorator: Google::Apis::ContainerV1::EphemeralLocalSsdProfile::Representation
|
|
3817
|
+
|
|
3818
|
+
end
|
|
3819
|
+
end
|
|
3820
|
+
|
|
3679
3821
|
class TimeWindow
|
|
3680
3822
|
# @private
|
|
3681
3823
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.114.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.114.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:
|