google-apis-container_v1 0.112.0 → 0.113.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: 94d595f8bccabc387835a5428287f097caef589afa3456c3b9ef97ace5ebb977
|
|
4
|
+
data.tar.gz: 20a3735a0c210eb175a65221ede576958df8b31a6c7364f6a27f3e12f97cffae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70911923aeb3b7e93354accc1b1ac0a43793fb690009921a543ad9a308306874e27cc40f14759fcde537445b1327493cc8713a75e8dcbbd860bf04a941b22bb1
|
|
7
|
+
data.tar.gz: cb901299dfc6c2cb6368bf493fb1a17c8059560c882d7ac85517676a4bc310d76a7744254efa57f471795ffa613b7938c990b4431a2ff813d6c4f4dd46748b69
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -2948,6 +2979,25 @@ module Google
|
|
|
2948
2979
|
end
|
|
2949
2980
|
end
|
|
2950
2981
|
|
|
2982
|
+
# Provisions a new, separate local NVMe SSD exclusively for swap.
|
|
2983
|
+
class DedicatedLocalSsdProfile
|
|
2984
|
+
include Google::Apis::Core::Hashable
|
|
2985
|
+
|
|
2986
|
+
# The number of physical local NVMe SSD disks to attach.
|
|
2987
|
+
# Corresponds to the JSON property `diskCount`
|
|
2988
|
+
# @return [Fixnum]
|
|
2989
|
+
attr_accessor :disk_count
|
|
2990
|
+
|
|
2991
|
+
def initialize(**args)
|
|
2992
|
+
update!(**args)
|
|
2993
|
+
end
|
|
2994
|
+
|
|
2995
|
+
# Update properties of this object
|
|
2996
|
+
def update!(**args)
|
|
2997
|
+
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
|
2998
|
+
end
|
|
2999
|
+
end
|
|
3000
|
+
|
|
2951
3001
|
# DefaultComputeClassConfig defines default compute class configuration.
|
|
2952
3002
|
class DefaultComputeClassConfig
|
|
2953
3003
|
include Google::Apis::Core::Hashable
|
|
@@ -3109,6 +3159,27 @@ module Google
|
|
|
3109
3159
|
end
|
|
3110
3160
|
end
|
|
3111
3161
|
|
|
3162
|
+
# Defines encryption settings for the swap space.
|
|
3163
|
+
class EncryptionConfig
|
|
3164
|
+
include Google::Apis::Core::Hashable
|
|
3165
|
+
|
|
3166
|
+
# Optional. If true, swap space will not be encrypted. Defaults to false (
|
|
3167
|
+
# encrypted).
|
|
3168
|
+
# Corresponds to the JSON property `disabled`
|
|
3169
|
+
# @return [Boolean]
|
|
3170
|
+
attr_accessor :disabled
|
|
3171
|
+
alias_method :disabled?, :disabled
|
|
3172
|
+
|
|
3173
|
+
def initialize(**args)
|
|
3174
|
+
update!(**args)
|
|
3175
|
+
end
|
|
3176
|
+
|
|
3177
|
+
# Update properties of this object
|
|
3178
|
+
def update!(**args)
|
|
3179
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
|
3180
|
+
end
|
|
3181
|
+
end
|
|
3182
|
+
|
|
3112
3183
|
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
|
3113
3184
|
# Enterprise features are now available without an Enterprise tier.
|
|
3114
3185
|
class EnterpriseConfig
|
|
@@ -3135,6 +3206,32 @@ module Google
|
|
|
3135
3206
|
end
|
|
3136
3207
|
end
|
|
3137
3208
|
|
|
3209
|
+
# Swap on the local SSD shared with pod ephemeral storage.
|
|
3210
|
+
class EphemeralLocalSsdProfile
|
|
3211
|
+
include Google::Apis::Core::Hashable
|
|
3212
|
+
|
|
3213
|
+
# Specifies the size of the swap space in gibibytes (GiB).
|
|
3214
|
+
# Corresponds to the JSON property `swapSizeGib`
|
|
3215
|
+
# @return [Fixnum]
|
|
3216
|
+
attr_accessor :swap_size_gib
|
|
3217
|
+
|
|
3218
|
+
# Specifies the size of the swap space as a percentage of the ephemeral local
|
|
3219
|
+
# SSD capacity.
|
|
3220
|
+
# Corresponds to the JSON property `swapSizePercent`
|
|
3221
|
+
# @return [Fixnum]
|
|
3222
|
+
attr_accessor :swap_size_percent
|
|
3223
|
+
|
|
3224
|
+
def initialize(**args)
|
|
3225
|
+
update!(**args)
|
|
3226
|
+
end
|
|
3227
|
+
|
|
3228
|
+
# Update properties of this object
|
|
3229
|
+
def update!(**args)
|
|
3230
|
+
@swap_size_gib = args[:swap_size_gib] if args.key?(:swap_size_gib)
|
|
3231
|
+
@swap_size_percent = args[:swap_size_percent] if args.key?(:swap_size_percent)
|
|
3232
|
+
end
|
|
3233
|
+
end
|
|
3234
|
+
|
|
3138
3235
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
|
3139
3236
|
# storage using Local SSDs.
|
|
3140
3237
|
class EphemeralStorageLocalSsdConfig
|
|
@@ -3489,6 +3586,25 @@ module Google
|
|
|
3489
3586
|
end
|
|
3490
3587
|
end
|
|
3491
3588
|
|
|
3589
|
+
# GPUDirectConfig specifies the GPU direct strategy on the node pool.
|
|
3590
|
+
class GpuDirectConfig
|
|
3591
|
+
include Google::Apis::Core::Hashable
|
|
3592
|
+
|
|
3593
|
+
# The type of GPU direct strategy to enable on the node pool.
|
|
3594
|
+
# Corresponds to the JSON property `gpuDirectStrategy`
|
|
3595
|
+
# @return [String]
|
|
3596
|
+
attr_accessor :gpu_direct_strategy
|
|
3597
|
+
|
|
3598
|
+
def initialize(**args)
|
|
3599
|
+
update!(**args)
|
|
3600
|
+
end
|
|
3601
|
+
|
|
3602
|
+
# Update properties of this object
|
|
3603
|
+
def update!(**args)
|
|
3604
|
+
@gpu_direct_strategy = args[:gpu_direct_strategy] if args.key?(:gpu_direct_strategy)
|
|
3605
|
+
end
|
|
3606
|
+
end
|
|
3607
|
+
|
|
3492
3608
|
# GPUDriverInstallationConfig specifies the version of GPU driver to be auto
|
|
3493
3609
|
# installed.
|
|
3494
3610
|
class GpuDriverInstallationConfig
|
|
@@ -4432,6 +4548,11 @@ module Google
|
|
|
4432
4548
|
# @return [Google::Apis::ContainerV1::NodeKernelModuleLoading]
|
|
4433
4549
|
attr_accessor :node_kernel_module_loading
|
|
4434
4550
|
|
|
4551
|
+
# Configuration for swap memory on a node pool.
|
|
4552
|
+
# Corresponds to the JSON property `swapConfig`
|
|
4553
|
+
# @return [Google::Apis::ContainerV1::SwapConfig]
|
|
4554
|
+
attr_accessor :swap_config
|
|
4555
|
+
|
|
4435
4556
|
# The Linux kernel parameters to be applied to the nodes and all pods running on
|
|
4436
4557
|
# the nodes. The following parameters are supported. net.core.busy_poll net.core.
|
|
4437
4558
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
|
@@ -4481,6 +4602,7 @@ module Google
|
|
|
4481
4602
|
@cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
|
|
4482
4603
|
@hugepages = args[:hugepages] if args.key?(:hugepages)
|
|
4483
4604
|
@node_kernel_module_loading = args[:node_kernel_module_loading] if args.key?(:node_kernel_module_loading)
|
|
4605
|
+
@swap_config = args[:swap_config] if args.key?(:swap_config)
|
|
4484
4606
|
@sysctls = args[:sysctls] if args.key?(:sysctls)
|
|
4485
4607
|
@transparent_hugepage_defrag = args[:transparent_hugepage_defrag] if args.key?(:transparent_hugepage_defrag)
|
|
4486
4608
|
@transparent_hugepage_enabled = args[:transparent_hugepage_enabled] if args.key?(:transparent_hugepage_enabled)
|
|
@@ -5479,6 +5601,11 @@ module Google
|
|
|
5479
5601
|
# @return [Google::Apis::ContainerV1::GcfsConfig]
|
|
5480
5602
|
attr_accessor :gcfs_config
|
|
5481
5603
|
|
|
5604
|
+
# GPUDirectConfig specifies the GPU direct strategy on the node pool.
|
|
5605
|
+
# Corresponds to the JSON property `gpuDirectConfig`
|
|
5606
|
+
# @return [Google::Apis::ContainerV1::GpuDirectConfig]
|
|
5607
|
+
attr_accessor :gpu_direct_config
|
|
5608
|
+
|
|
5482
5609
|
# Configuration of gVNIC feature.
|
|
5483
5610
|
# Corresponds to the JSON property `gvnic`
|
|
5484
5611
|
# @return [Google::Apis::ContainerV1::VirtualNic]
|
|
@@ -5723,6 +5850,7 @@ module Google
|
|
|
5723
5850
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
|
5724
5851
|
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
|
5725
5852
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
|
5853
|
+
@gpu_direct_config = args[:gpu_direct_config] if args.key?(:gpu_direct_config)
|
|
5726
5854
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
|
5727
5855
|
@image_type = args[:image_type] if args.key?(:image_type)
|
|
5728
5856
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
|
@@ -8731,6 +8859,26 @@ module Google
|
|
|
8731
8859
|
end
|
|
8732
8860
|
end
|
|
8733
8861
|
|
|
8862
|
+
# Configuration for the Slice Controller.
|
|
8863
|
+
class SliceControllerConfig
|
|
8864
|
+
include Google::Apis::Core::Hashable
|
|
8865
|
+
|
|
8866
|
+
# Optional. Indicates whether Slice Controller is enabled in the cluster.
|
|
8867
|
+
# Corresponds to the JSON property `enabled`
|
|
8868
|
+
# @return [Boolean]
|
|
8869
|
+
attr_accessor :enabled
|
|
8870
|
+
alias_method :enabled?, :enabled
|
|
8871
|
+
|
|
8872
|
+
def initialize(**args)
|
|
8873
|
+
update!(**args)
|
|
8874
|
+
end
|
|
8875
|
+
|
|
8876
|
+
# Update properties of this object
|
|
8877
|
+
def update!(**args)
|
|
8878
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
8879
|
+
end
|
|
8880
|
+
end
|
|
8881
|
+
|
|
8734
8882
|
# SoleTenantConfig contains the NodeAffinities to specify what shared sole
|
|
8735
8883
|
# tenant node groups should back the node pool.
|
|
8736
8884
|
class SoleTenantConfig
|
|
@@ -8934,6 +9082,50 @@ module Google
|
|
|
8934
9082
|
end
|
|
8935
9083
|
end
|
|
8936
9084
|
|
|
9085
|
+
# Configuration for swap memory on a node pool.
|
|
9086
|
+
class SwapConfig
|
|
9087
|
+
include Google::Apis::Core::Hashable
|
|
9088
|
+
|
|
9089
|
+
# Swap on the node's boot disk.
|
|
9090
|
+
# Corresponds to the JSON property `bootDiskProfile`
|
|
9091
|
+
# @return [Google::Apis::ContainerV1::BootDiskProfile]
|
|
9092
|
+
attr_accessor :boot_disk_profile
|
|
9093
|
+
|
|
9094
|
+
# Provisions a new, separate local NVMe SSD exclusively for swap.
|
|
9095
|
+
# Corresponds to the JSON property `dedicatedLocalSsdProfile`
|
|
9096
|
+
# @return [Google::Apis::ContainerV1::DedicatedLocalSsdProfile]
|
|
9097
|
+
attr_accessor :dedicated_local_ssd_profile
|
|
9098
|
+
|
|
9099
|
+
# Optional. Enables or disables swap for the node pool.
|
|
9100
|
+
# Corresponds to the JSON property `enabled`
|
|
9101
|
+
# @return [Boolean]
|
|
9102
|
+
attr_accessor :enabled
|
|
9103
|
+
alias_method :enabled?, :enabled
|
|
9104
|
+
|
|
9105
|
+
# Defines encryption settings for the swap space.
|
|
9106
|
+
# Corresponds to the JSON property `encryptionConfig`
|
|
9107
|
+
# @return [Google::Apis::ContainerV1::EncryptionConfig]
|
|
9108
|
+
attr_accessor :encryption_config
|
|
9109
|
+
|
|
9110
|
+
# Swap on the local SSD shared with pod ephemeral storage.
|
|
9111
|
+
# Corresponds to the JSON property `ephemeralLocalSsdProfile`
|
|
9112
|
+
# @return [Google::Apis::ContainerV1::EphemeralLocalSsdProfile]
|
|
9113
|
+
attr_accessor :ephemeral_local_ssd_profile
|
|
9114
|
+
|
|
9115
|
+
def initialize(**args)
|
|
9116
|
+
update!(**args)
|
|
9117
|
+
end
|
|
9118
|
+
|
|
9119
|
+
# Update properties of this object
|
|
9120
|
+
def update!(**args)
|
|
9121
|
+
@boot_disk_profile = args[:boot_disk_profile] if args.key?(:boot_disk_profile)
|
|
9122
|
+
@dedicated_local_ssd_profile = args[:dedicated_local_ssd_profile] if args.key?(:dedicated_local_ssd_profile)
|
|
9123
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
9124
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
9125
|
+
@ephemeral_local_ssd_profile = args[:ephemeral_local_ssd_profile] if args.key?(:ephemeral_local_ssd_profile)
|
|
9126
|
+
end
|
|
9127
|
+
end
|
|
9128
|
+
|
|
8937
9129
|
# Represents an arbitrary window of time.
|
|
8938
9130
|
class TimeWindow
|
|
8939
9131
|
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.113.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 = "20260120"
|
|
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
|
|
|
@@ -340,6 +346,12 @@ module Google
|
|
|
340
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
341
347
|
end
|
|
342
348
|
|
|
349
|
+
class DedicatedLocalSsdProfile
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
343
355
|
class DefaultComputeClassConfig
|
|
344
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
357
|
|
|
@@ -382,12 +394,24 @@ module Google
|
|
|
382
394
|
include Google::Apis::Core::JsonObjectSupport
|
|
383
395
|
end
|
|
384
396
|
|
|
397
|
+
class EncryptionConfig
|
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
|
+
|
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
401
|
+
end
|
|
402
|
+
|
|
385
403
|
class EnterpriseConfig
|
|
386
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
405
|
|
|
388
406
|
include Google::Apis::Core::JsonObjectSupport
|
|
389
407
|
end
|
|
390
408
|
|
|
409
|
+
class EphemeralLocalSsdProfile
|
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
|
+
|
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
413
|
+
end
|
|
414
|
+
|
|
391
415
|
class EphemeralStorageLocalSsdConfig
|
|
392
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
417
|
|
|
@@ -436,6 +460,12 @@ module Google
|
|
|
436
460
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
461
|
end
|
|
438
462
|
|
|
463
|
+
class GpuDirectConfig
|
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
465
|
+
|
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
467
|
+
end
|
|
468
|
+
|
|
439
469
|
class GpuDriverInstallationConfig
|
|
440
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
471
|
|
|
@@ -1198,6 +1228,12 @@ module Google
|
|
|
1198
1228
|
include Google::Apis::Core::JsonObjectSupport
|
|
1199
1229
|
end
|
|
1200
1230
|
|
|
1231
|
+
class SliceControllerConfig
|
|
1232
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1233
|
+
|
|
1234
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1235
|
+
end
|
|
1236
|
+
|
|
1201
1237
|
class SoleTenantConfig
|
|
1202
1238
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1203
1239
|
|
|
@@ -1234,6 +1270,12 @@ module Google
|
|
|
1234
1270
|
include Google::Apis::Core::JsonObjectSupport
|
|
1235
1271
|
end
|
|
1236
1272
|
|
|
1273
|
+
class SwapConfig
|
|
1274
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1275
|
+
|
|
1276
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1277
|
+
end
|
|
1278
|
+
|
|
1237
1279
|
class TimeWindow
|
|
1238
1280
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1239
1281
|
|
|
@@ -1443,6 +1485,8 @@ module Google
|
|
|
1443
1485
|
|
|
1444
1486
|
property :ray_operator_config, as: 'rayOperatorConfig', class: Google::Apis::ContainerV1::RayOperatorConfig, decorator: Google::Apis::ContainerV1::RayOperatorConfig::Representation
|
|
1445
1487
|
|
|
1488
|
+
property :slice_controller_config, as: 'sliceControllerConfig', class: Google::Apis::ContainerV1::SliceControllerConfig, decorator: Google::Apis::ContainerV1::SliceControllerConfig::Representation
|
|
1489
|
+
|
|
1446
1490
|
property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1::StatefulHaConfig, decorator: Google::Apis::ContainerV1::StatefulHaConfig::Representation
|
|
1447
1491
|
|
|
1448
1492
|
end
|
|
@@ -1615,6 +1659,14 @@ module Google
|
|
|
1615
1659
|
end
|
|
1616
1660
|
end
|
|
1617
1661
|
|
|
1662
|
+
class BootDiskProfile
|
|
1663
|
+
# @private
|
|
1664
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1665
|
+
property :swap_size_gib, :numeric_string => true, as: 'swapSizeGib'
|
|
1666
|
+
property :swap_size_percent, as: 'swapSizePercent'
|
|
1667
|
+
end
|
|
1668
|
+
end
|
|
1669
|
+
|
|
1618
1670
|
class CancelOperationRequest
|
|
1619
1671
|
# @private
|
|
1620
1672
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2136,6 +2188,13 @@ module Google
|
|
|
2136
2188
|
end
|
|
2137
2189
|
end
|
|
2138
2190
|
|
|
2191
|
+
class DedicatedLocalSsdProfile
|
|
2192
|
+
# @private
|
|
2193
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2194
|
+
property :disk_count, :numeric_string => true, as: 'diskCount'
|
|
2195
|
+
end
|
|
2196
|
+
end
|
|
2197
|
+
|
|
2139
2198
|
class DefaultComputeClassConfig
|
|
2140
2199
|
# @private
|
|
2141
2200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2189,6 +2248,13 @@ module Google
|
|
|
2189
2248
|
end
|
|
2190
2249
|
end
|
|
2191
2250
|
|
|
2251
|
+
class EncryptionConfig
|
|
2252
|
+
# @private
|
|
2253
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2254
|
+
property :disabled, as: 'disabled'
|
|
2255
|
+
end
|
|
2256
|
+
end
|
|
2257
|
+
|
|
2192
2258
|
class EnterpriseConfig
|
|
2193
2259
|
# @private
|
|
2194
2260
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2197,6 +2263,14 @@ module Google
|
|
|
2197
2263
|
end
|
|
2198
2264
|
end
|
|
2199
2265
|
|
|
2266
|
+
class EphemeralLocalSsdProfile
|
|
2267
|
+
# @private
|
|
2268
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2269
|
+
property :swap_size_gib, :numeric_string => true, as: 'swapSizeGib'
|
|
2270
|
+
property :swap_size_percent, as: 'swapSizePercent'
|
|
2271
|
+
end
|
|
2272
|
+
end
|
|
2273
|
+
|
|
2200
2274
|
class EphemeralStorageLocalSsdConfig
|
|
2201
2275
|
# @private
|
|
2202
2276
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2272,6 +2346,13 @@ module Google
|
|
|
2272
2346
|
end
|
|
2273
2347
|
end
|
|
2274
2348
|
|
|
2349
|
+
class GpuDirectConfig
|
|
2350
|
+
# @private
|
|
2351
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2352
|
+
property :gpu_direct_strategy, as: 'gpuDirectStrategy'
|
|
2353
|
+
end
|
|
2354
|
+
end
|
|
2355
|
+
|
|
2275
2356
|
class GpuDriverInstallationConfig
|
|
2276
2357
|
# @private
|
|
2277
2358
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2528,6 +2609,8 @@ module Google
|
|
|
2528
2609
|
|
|
2529
2610
|
property :node_kernel_module_loading, as: 'nodeKernelModuleLoading', class: Google::Apis::ContainerV1::NodeKernelModuleLoading, decorator: Google::Apis::ContainerV1::NodeKernelModuleLoading::Representation
|
|
2530
2611
|
|
|
2612
|
+
property :swap_config, as: 'swapConfig', class: Google::Apis::ContainerV1::SwapConfig, decorator: Google::Apis::ContainerV1::SwapConfig::Representation
|
|
2613
|
+
|
|
2531
2614
|
hash :sysctls, as: 'sysctls'
|
|
2532
2615
|
property :transparent_hugepage_defrag, as: 'transparentHugepageDefrag'
|
|
2533
2616
|
property :transparent_hugepage_enabled, as: 'transparentHugepageEnabled'
|
|
@@ -2824,6 +2907,8 @@ module Google
|
|
|
2824
2907
|
property :flex_start, as: 'flexStart'
|
|
2825
2908
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
|
2826
2909
|
|
|
2910
|
+
property :gpu_direct_config, as: 'gpuDirectConfig', class: Google::Apis::ContainerV1::GpuDirectConfig, decorator: Google::Apis::ContainerV1::GpuDirectConfig::Representation
|
|
2911
|
+
|
|
2827
2912
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
|
2828
2913
|
|
|
2829
2914
|
property :image_type, as: 'imageType'
|
|
@@ -3622,6 +3707,13 @@ module Google
|
|
|
3622
3707
|
end
|
|
3623
3708
|
end
|
|
3624
3709
|
|
|
3710
|
+
class SliceControllerConfig
|
|
3711
|
+
# @private
|
|
3712
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3713
|
+
property :enabled, as: 'enabled'
|
|
3714
|
+
end
|
|
3715
|
+
end
|
|
3716
|
+
|
|
3625
3717
|
class SoleTenantConfig
|
|
3626
3718
|
# @private
|
|
3627
3719
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3676,6 +3768,21 @@ module Google
|
|
|
3676
3768
|
end
|
|
3677
3769
|
end
|
|
3678
3770
|
|
|
3771
|
+
class SwapConfig
|
|
3772
|
+
# @private
|
|
3773
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3774
|
+
property :boot_disk_profile, as: 'bootDiskProfile', class: Google::Apis::ContainerV1::BootDiskProfile, decorator: Google::Apis::ContainerV1::BootDiskProfile::Representation
|
|
3775
|
+
|
|
3776
|
+
property :dedicated_local_ssd_profile, as: 'dedicatedLocalSsdProfile', class: Google::Apis::ContainerV1::DedicatedLocalSsdProfile, decorator: Google::Apis::ContainerV1::DedicatedLocalSsdProfile::Representation
|
|
3777
|
+
|
|
3778
|
+
property :enabled, as: 'enabled'
|
|
3779
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ContainerV1::EncryptionConfig, decorator: Google::Apis::ContainerV1::EncryptionConfig::Representation
|
|
3780
|
+
|
|
3781
|
+
property :ephemeral_local_ssd_profile, as: 'ephemeralLocalSsdProfile', class: Google::Apis::ContainerV1::EphemeralLocalSsdProfile, decorator: Google::Apis::ContainerV1::EphemeralLocalSsdProfile::Representation
|
|
3782
|
+
|
|
3783
|
+
end
|
|
3784
|
+
end
|
|
3785
|
+
|
|
3679
3786
|
class TimeWindow
|
|
3680
3787
|
# @private
|
|
3681
3788
|
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.113.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.113.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:
|