google-apis-container_v1beta1 0.104.0 → 0.105.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: 38e5fec5ce3a80bbc5df6c4f6639b068a91e469116909ccb0b73114e0affcd8a
|
|
4
|
+
data.tar.gz: 7a7e7acb2cfb9e560d551022a2c963bf250dc60acf0854cd5f8e3c82d245f1a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdd9e6ee16be829b89d6a6a4db993d1877ef972d582dfb9dbcd7a03f51ae8d7895cfaf2a6cd56e00c47ccff6374e5768f52ab2fa6f7f0cdcab33e47ee6096f24
|
|
7
|
+
data.tar.gz: 55a90b0fdc53f7c41f45a87a8dc7d98acac65783f52ea873cec6c4f1f2bdf12ce92b168b59f04f5f606f49a45b2b797f4e26f1851d322fc4dceac0306521c410
|
data/CHANGELOG.md
CHANGED
|
@@ -2344,6 +2344,11 @@ module Google
|
|
|
2344
2344
|
# @return [Google::Apis::ContainerV1beta1::DnsConfig]
|
|
2345
2345
|
attr_accessor :desired_dns_config
|
|
2346
2346
|
|
|
2347
|
+
# Optional. The desired emulated version for the cluster.
|
|
2348
|
+
# Corresponds to the JSON property `desiredEmulatedVersion`
|
|
2349
|
+
# @return [String]
|
|
2350
|
+
attr_accessor :desired_emulated_version
|
|
2351
|
+
|
|
2347
2352
|
# Enable/Disable Cilium Clusterwide Network Policy for the cluster.
|
|
2348
2353
|
# Corresponds to the JSON property `desiredEnableCiliumClusterwideNetworkPolicy`
|
|
2349
2354
|
# @return [Boolean]
|
|
@@ -2816,6 +2821,7 @@ module Google
|
|
|
2816
2821
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
|
2817
2822
|
@desired_disable_l4_lb_firewall_reconciliation = args[:desired_disable_l4_lb_firewall_reconciliation] if args.key?(:desired_disable_l4_lb_firewall_reconciliation)
|
|
2818
2823
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
|
2824
|
+
@desired_emulated_version = args[:desired_emulated_version] if args.key?(:desired_emulated_version)
|
|
2819
2825
|
@desired_enable_cilium_clusterwide_network_policy = args[:desired_enable_cilium_clusterwide_network_policy] if args.key?(:desired_enable_cilium_clusterwide_network_policy)
|
|
2820
2826
|
@desired_enable_fqdn_network_policy = args[:desired_enable_fqdn_network_policy] if args.key?(:desired_enable_fqdn_network_policy)
|
|
2821
2827
|
@desired_enable_multi_networking = args[:desired_enable_multi_networking] if args.key?(:desired_enable_multi_networking)
|
|
@@ -3772,6 +3778,34 @@ module Google
|
|
|
3772
3778
|
end
|
|
3773
3779
|
end
|
|
3774
3780
|
|
|
3781
|
+
# DiskIoScheduler contains the configuration for the disk IO scheduler.
|
|
3782
|
+
class DiskIoScheduler
|
|
3783
|
+
include Google::Apis::Core::Hashable
|
|
3784
|
+
|
|
3785
|
+
# Optional. Configures the IO scheduler for the attached disks. Supported values
|
|
3786
|
+
# are `mq-deadline`, `bfq`, `kyber`, `none`.
|
|
3787
|
+
# Corresponds to the JSON property `nodeAttachedDiskIoScheduler`
|
|
3788
|
+
# @return [String]
|
|
3789
|
+
attr_accessor :node_attached_disk_io_scheduler
|
|
3790
|
+
|
|
3791
|
+
# Optional. Configures the IO scheduler for the boot disk or ephemeral lssd that
|
|
3792
|
+
# runs node system workloads. Supported values are `mq-deadline`, `bfq`, `kyber`,
|
|
3793
|
+
# `none`.
|
|
3794
|
+
# Corresponds to the JSON property `nodeSystemIoScheduler`
|
|
3795
|
+
# @return [String]
|
|
3796
|
+
attr_accessor :node_system_io_scheduler
|
|
3797
|
+
|
|
3798
|
+
def initialize(**args)
|
|
3799
|
+
update!(**args)
|
|
3800
|
+
end
|
|
3801
|
+
|
|
3802
|
+
# Update properties of this object
|
|
3803
|
+
def update!(**args)
|
|
3804
|
+
@node_attached_disk_io_scheduler = args[:node_attached_disk_io_scheduler] if args.key?(:node_attached_disk_io_scheduler)
|
|
3805
|
+
@node_system_io_scheduler = args[:node_system_io_scheduler] if args.key?(:node_system_io_scheduler)
|
|
3806
|
+
end
|
|
3807
|
+
end
|
|
3808
|
+
|
|
3775
3809
|
# DisruptionBudget defines the upgrade disruption budget for the cluster control
|
|
3776
3810
|
# plane.
|
|
3777
3811
|
class DisruptionBudget
|
|
@@ -5416,6 +5450,31 @@ module Google
|
|
|
5416
5450
|
end
|
|
5417
5451
|
end
|
|
5418
5452
|
|
|
5453
|
+
# Contains expiry information about the kubelet certificate.
|
|
5454
|
+
class KubeletCertInfo
|
|
5455
|
+
include Google::Apis::Core::Hashable
|
|
5456
|
+
|
|
5457
|
+
# Output only.
|
|
5458
|
+
# Corresponds to the JSON property `nonTpmBootstrapCertExpireTime`
|
|
5459
|
+
# @return [String]
|
|
5460
|
+
attr_accessor :non_tpm_bootstrap_cert_expire_time
|
|
5461
|
+
|
|
5462
|
+
# Output only.
|
|
5463
|
+
# Corresponds to the JSON property `tpmBootstrapCertExpireTime`
|
|
5464
|
+
# @return [String]
|
|
5465
|
+
attr_accessor :tpm_bootstrap_cert_expire_time
|
|
5466
|
+
|
|
5467
|
+
def initialize(**args)
|
|
5468
|
+
update!(**args)
|
|
5469
|
+
end
|
|
5470
|
+
|
|
5471
|
+
# Update properties of this object
|
|
5472
|
+
def update!(**args)
|
|
5473
|
+
@non_tpm_bootstrap_cert_expire_time = args[:non_tpm_bootstrap_cert_expire_time] if args.key?(:non_tpm_bootstrap_cert_expire_time)
|
|
5474
|
+
@tpm_bootstrap_cert_expire_time = args[:tpm_bootstrap_cert_expire_time] if args.key?(:tpm_bootstrap_cert_expire_time)
|
|
5475
|
+
end
|
|
5476
|
+
end
|
|
5477
|
+
|
|
5419
5478
|
# Configuration for the Kubernetes Dashboard.
|
|
5420
5479
|
class KubernetesDashboard
|
|
5421
5480
|
include Google::Apis::Core::Hashable
|
|
@@ -5479,6 +5538,11 @@ module Google
|
|
|
5479
5538
|
# @return [Google::Apis::ContainerV1beta1::CustomNodeInit]
|
|
5480
5539
|
attr_accessor :custom_node_init
|
|
5481
5540
|
|
|
5541
|
+
# DiskIoScheduler contains the configuration for the disk IO scheduler.
|
|
5542
|
+
# Corresponds to the JSON property `diskIoScheduler`
|
|
5543
|
+
# @return [Google::Apis::ContainerV1beta1::DiskIoScheduler]
|
|
5544
|
+
attr_accessor :disk_io_scheduler
|
|
5545
|
+
|
|
5482
5546
|
# Hugepages amount in both 2m and 1g size
|
|
5483
5547
|
# Corresponds to the JSON property `hugepages`
|
|
5484
5548
|
# @return [Google::Apis::ContainerV1beta1::HugepagesConfig]
|
|
@@ -5489,6 +5553,12 @@ module Google
|
|
|
5489
5553
|
# @return [Google::Apis::ContainerV1beta1::NodeKernelModuleLoading]
|
|
5490
5554
|
attr_accessor :node_kernel_module_loading
|
|
5491
5555
|
|
|
5556
|
+
# Configuration settings for VFIO (Virtual Function I/O) on a node. VFIO allows
|
|
5557
|
+
# safe, unprivileged, userspace drivers to access I/O devices.
|
|
5558
|
+
# Corresponds to the JSON property `nodeVfioConfig`
|
|
5559
|
+
# @return [Google::Apis::ContainerV1beta1::NodeVfioConfig]
|
|
5560
|
+
attr_accessor :node_vfio_config
|
|
5561
|
+
|
|
5492
5562
|
# Configuration for swap memory on a node pool.
|
|
5493
5563
|
# Corresponds to the JSON property `swapConfig`
|
|
5494
5564
|
# @return [Google::Apis::ContainerV1beta1::SwapConfig]
|
|
@@ -5507,14 +5577,14 @@ module Google
|
|
|
5507
5577
|
# netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
|
5508
5578
|
# nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
|
|
5509
5579
|
# keys.maxkeys kernel.keys.maxbytes kernel.shmmni kernel.shmmax kernel.shmall
|
|
5510
|
-
# kernel.
|
|
5511
|
-
# kernel.yama.ptrace_scope kernel.kptr_restrict kernel.
|
|
5512
|
-
# sysrq fs.aio-max-nr fs.file-max fs.inotify.
|
|
5513
|
-
# max_user_watches fs.nr_open vm.
|
|
5514
|
-
#
|
|
5515
|
-
# vm.
|
|
5516
|
-
# overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
|
|
5517
|
-
# vm.min_free_kbytes
|
|
5580
|
+
# kernel.core_pattern kernel.perf_event_paranoid kernel.sched_rt_runtime_us
|
|
5581
|
+
# kernel.softlockup_panic kernel.yama.ptrace_scope kernel.kptr_restrict kernel.
|
|
5582
|
+
# dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max fs.inotify.
|
|
5583
|
+
# max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
|
|
5584
|
+
# dirty_background_ratio vm.dirty_background_bytes vm.dirty_expire_centisecs vm.
|
|
5585
|
+
# dirty_ratio vm.dirty_bytes vm.dirty_writeback_centisecs vm.max_map_count vm.
|
|
5586
|
+
# overcommit_memory vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
|
|
5587
|
+
# watermark_scale_factor vm.min_free_kbytes
|
|
5518
5588
|
# Corresponds to the JSON property `sysctls`
|
|
5519
5589
|
# @return [Hash<String,String>]
|
|
5520
5590
|
attr_accessor :sysctls
|
|
@@ -5545,8 +5615,10 @@ module Google
|
|
|
5545
5615
|
@accurate_time_config = args[:accurate_time_config] if args.key?(:accurate_time_config)
|
|
5546
5616
|
@cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
|
|
5547
5617
|
@custom_node_init = args[:custom_node_init] if args.key?(:custom_node_init)
|
|
5618
|
+
@disk_io_scheduler = args[:disk_io_scheduler] if args.key?(:disk_io_scheduler)
|
|
5548
5619
|
@hugepages = args[:hugepages] if args.key?(:hugepages)
|
|
5549
5620
|
@node_kernel_module_loading = args[:node_kernel_module_loading] if args.key?(:node_kernel_module_loading)
|
|
5621
|
+
@node_vfio_config = args[:node_vfio_config] if args.key?(:node_vfio_config)
|
|
5550
5622
|
@swap_config = args[:swap_config] if args.key?(:swap_config)
|
|
5551
5623
|
@sysctls = args[:sysctls] if args.key?(:sysctls)
|
|
5552
5624
|
@transparent_hugepage_defrag = args[:transparent_hugepage_defrag] if args.key?(:transparent_hugepage_defrag)
|
|
@@ -7308,8 +7380,12 @@ module Google
|
|
|
7308
7380
|
attr_accessor :single_process_oom_kill
|
|
7309
7381
|
alias_method :single_process_oom_kill?, :single_process_oom_kill
|
|
7310
7382
|
|
|
7311
|
-
# TopologyManager defines the configuration options for
|
|
7312
|
-
#
|
|
7383
|
+
# TopologyManager defines the configuration options for the [`kubelet` Topology
|
|
7384
|
+
# Manager component](https://kubernetes.io/docs/tasks/administer-cluster/
|
|
7385
|
+
# topology-manager/). For more information about the supported machine types and
|
|
7386
|
+
# versions for the Topology Manager in GKE, see [Customizing node system
|
|
7387
|
+
# configuration](https://docs.cloud.google.com/kubernetes-engine/docs/how-to/
|
|
7388
|
+
# node-system-config#kubelet-resource-managers).
|
|
7313
7389
|
# Corresponds to the JSON property `topologyManager`
|
|
7314
7390
|
# @return [Google::Apis::ContainerV1beta1::TopologyManager]
|
|
7315
7391
|
attr_accessor :topology_manager
|
|
@@ -7586,6 +7662,11 @@ module Google
|
|
|
7586
7662
|
# @return [Array<String>]
|
|
7587
7663
|
attr_accessor :instance_group_urls
|
|
7588
7664
|
|
|
7665
|
+
# Contains expiry information about the kubelet certificate.
|
|
7666
|
+
# Corresponds to the JSON property `kubeletCertInfo`
|
|
7667
|
+
# @return [Google::Apis::ContainerV1beta1::KubeletCertInfo]
|
|
7668
|
+
attr_accessor :kubelet_cert_info
|
|
7669
|
+
|
|
7589
7670
|
# The list of Google Compute Engine [zones](https://cloud.google.com/compute/
|
|
7590
7671
|
# docs/zones#available) in which the NodePool's nodes should be located. If this
|
|
7591
7672
|
# value is unspecified during node pool creation, the [Cluster.Locations](https:/
|
|
@@ -7721,6 +7802,7 @@ module Google
|
|
|
7721
7802
|
@etag = args[:etag] if args.key?(:etag)
|
|
7722
7803
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
|
7723
7804
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
|
7805
|
+
@kubelet_cert_info = args[:kubelet_cert_info] if args.key?(:kubelet_cert_info)
|
|
7724
7806
|
@locations = args[:locations] if args.key?(:locations)
|
|
7725
7807
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
7726
7808
|
@management = args[:management] if args.key?(:management)
|
|
@@ -8062,6 +8144,33 @@ module Google
|
|
|
8062
8144
|
end
|
|
8063
8145
|
end
|
|
8064
8146
|
|
|
8147
|
+
# Configuration settings for VFIO (Virtual Function I/O) on a node. VFIO allows
|
|
8148
|
+
# safe, unprivileged, userspace drivers to access I/O devices.
|
|
8149
|
+
class NodeVfioConfig
|
|
8150
|
+
include Google::Apis::Core::Hashable
|
|
8151
|
+
|
|
8152
|
+
# Optional. Specifies the maximum number of DMA entries (pages) that can be
|
|
8153
|
+
# mapped by the VFIO IOMMU type 1 driver for a container. This limit affects the
|
|
8154
|
+
# total amount of host memory that can be pinned for direct device access, which
|
|
8155
|
+
# is often critical for high-performance devices like TPUs and GPUs. This
|
|
8156
|
+
# setting corresponds to the kernel parameter at: `/sys/module/vfio_iommu_type1/
|
|
8157
|
+
# parameters/dma_entry_limit`. The default value in the kernel is `65535`.
|
|
8158
|
+
# Higher values may be needed for workloads mapping large memory regions.
|
|
8159
|
+
# Supported values are integers between `65535` and `4194304`.
|
|
8160
|
+
# Corresponds to the JSON property `dmaEntryLimit`
|
|
8161
|
+
# @return [Fixnum]
|
|
8162
|
+
attr_accessor :dma_entry_limit
|
|
8163
|
+
|
|
8164
|
+
def initialize(**args)
|
|
8165
|
+
update!(**args)
|
|
8166
|
+
end
|
|
8167
|
+
|
|
8168
|
+
# Update properties of this object
|
|
8169
|
+
def update!(**args)
|
|
8170
|
+
@dma_entry_limit = args[:dma_entry_limit] if args.key?(:dma_entry_limit)
|
|
8171
|
+
end
|
|
8172
|
+
end
|
|
8173
|
+
|
|
8065
8174
|
# NotificationConfig is the configuration of notifications.
|
|
8066
8175
|
class NotificationConfig
|
|
8067
8176
|
include Google::Apis::Core::Hashable
|
|
@@ -10828,8 +10937,12 @@ module Google
|
|
|
10828
10937
|
end
|
|
10829
10938
|
end
|
|
10830
10939
|
|
|
10831
|
-
# TopologyManager defines the configuration options for
|
|
10832
|
-
#
|
|
10940
|
+
# TopologyManager defines the configuration options for the [`kubelet` Topology
|
|
10941
|
+
# Manager component](https://kubernetes.io/docs/tasks/administer-cluster/
|
|
10942
|
+
# topology-manager/). For more information about the supported machine types and
|
|
10943
|
+
# versions for the Topology Manager in GKE, see [Customizing node system
|
|
10944
|
+
# configuration](https://docs.cloud.google.com/kubernetes-engine/docs/how-to/
|
|
10945
|
+
# node-system-config#kubelet-resource-managers).
|
|
10833
10946
|
class TopologyManager
|
|
10834
10947
|
include Google::Apis::Core::Hashable
|
|
10835
10948
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContainerV1beta1
|
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.105.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 = "20260630"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -466,6 +466,12 @@ module Google
|
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
|
467
467
|
end
|
|
468
468
|
|
|
469
|
+
class DiskIoScheduler
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
|
+
|
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
473
|
+
end
|
|
474
|
+
|
|
469
475
|
class DisruptionBudget
|
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
477
|
|
|
@@ -742,6 +748,12 @@ module Google
|
|
|
742
748
|
include Google::Apis::Core::JsonObjectSupport
|
|
743
749
|
end
|
|
744
750
|
|
|
751
|
+
class KubeletCertInfo
|
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
753
|
+
|
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
755
|
+
end
|
|
756
|
+
|
|
745
757
|
class KubernetesDashboard
|
|
746
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
747
759
|
|
|
@@ -1078,6 +1090,12 @@ module Google
|
|
|
1078
1090
|
include Google::Apis::Core::JsonObjectSupport
|
|
1079
1091
|
end
|
|
1080
1092
|
|
|
1093
|
+
class NodeVfioConfig
|
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1095
|
+
|
|
1096
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1097
|
+
end
|
|
1098
|
+
|
|
1081
1099
|
class NotificationConfig
|
|
1082
1100
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1083
1101
|
|
|
@@ -2330,6 +2348,7 @@ module Google
|
|
|
2330
2348
|
property :desired_disable_l4_lb_firewall_reconciliation, as: 'desiredDisableL4LbFirewallReconciliation'
|
|
2331
2349
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
|
|
2332
2350
|
|
|
2351
|
+
property :desired_emulated_version, as: 'desiredEmulatedVersion'
|
|
2333
2352
|
property :desired_enable_cilium_clusterwide_network_policy, as: 'desiredEnableCiliumClusterwideNetworkPolicy'
|
|
2334
2353
|
property :desired_enable_fqdn_network_policy, as: 'desiredEnableFqdnNetworkPolicy'
|
|
2335
2354
|
property :desired_enable_multi_networking, as: 'desiredEnableMultiNetworking'
|
|
@@ -2726,6 +2745,14 @@ module Google
|
|
|
2726
2745
|
end
|
|
2727
2746
|
end
|
|
2728
2747
|
|
|
2748
|
+
class DiskIoScheduler
|
|
2749
|
+
# @private
|
|
2750
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2751
|
+
property :node_attached_disk_io_scheduler, as: 'nodeAttachedDiskIoScheduler'
|
|
2752
|
+
property :node_system_io_scheduler, as: 'nodeSystemIoScheduler'
|
|
2753
|
+
end
|
|
2754
|
+
end
|
|
2755
|
+
|
|
2729
2756
|
class DisruptionBudget
|
|
2730
2757
|
# @private
|
|
2731
2758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3150,6 +3177,14 @@ module Google
|
|
|
3150
3177
|
end
|
|
3151
3178
|
end
|
|
3152
3179
|
|
|
3180
|
+
class KubeletCertInfo
|
|
3181
|
+
# @private
|
|
3182
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3183
|
+
property :non_tpm_bootstrap_cert_expire_time, as: 'nonTpmBootstrapCertExpireTime'
|
|
3184
|
+
property :tpm_bootstrap_cert_expire_time, as: 'tpmBootstrapCertExpireTime'
|
|
3185
|
+
end
|
|
3186
|
+
end
|
|
3187
|
+
|
|
3153
3188
|
class KubernetesDashboard
|
|
3154
3189
|
# @private
|
|
3155
3190
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3172,10 +3207,14 @@ module Google
|
|
|
3172
3207
|
property :cgroup_mode, as: 'cgroupMode'
|
|
3173
3208
|
property :custom_node_init, as: 'customNodeInit', class: Google::Apis::ContainerV1beta1::CustomNodeInit, decorator: Google::Apis::ContainerV1beta1::CustomNodeInit::Representation
|
|
3174
3209
|
|
|
3210
|
+
property :disk_io_scheduler, as: 'diskIoScheduler', class: Google::Apis::ContainerV1beta1::DiskIoScheduler, decorator: Google::Apis::ContainerV1beta1::DiskIoScheduler::Representation
|
|
3211
|
+
|
|
3175
3212
|
property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1beta1::HugepagesConfig, decorator: Google::Apis::ContainerV1beta1::HugepagesConfig::Representation
|
|
3176
3213
|
|
|
3177
3214
|
property :node_kernel_module_loading, as: 'nodeKernelModuleLoading', class: Google::Apis::ContainerV1beta1::NodeKernelModuleLoading, decorator: Google::Apis::ContainerV1beta1::NodeKernelModuleLoading::Representation
|
|
3178
3215
|
|
|
3216
|
+
property :node_vfio_config, as: 'nodeVfioConfig', class: Google::Apis::ContainerV1beta1::NodeVfioConfig, decorator: Google::Apis::ContainerV1beta1::NodeVfioConfig::Representation
|
|
3217
|
+
|
|
3179
3218
|
property :swap_config, as: 'swapConfig', class: Google::Apis::ContainerV1beta1::SwapConfig, decorator: Google::Apis::ContainerV1beta1::SwapConfig::Representation
|
|
3180
3219
|
|
|
3181
3220
|
hash :sysctls, as: 'sysctls'
|
|
@@ -3705,6 +3744,8 @@ module Google
|
|
|
3705
3744
|
property :etag, as: 'etag'
|
|
3706
3745
|
property :initial_node_count, as: 'initialNodeCount'
|
|
3707
3746
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
|
3747
|
+
property :kubelet_cert_info, as: 'kubeletCertInfo', class: Google::Apis::ContainerV1beta1::KubeletCertInfo, decorator: Google::Apis::ContainerV1beta1::KubeletCertInfo::Representation
|
|
3748
|
+
|
|
3708
3749
|
collection :locations, as: 'locations'
|
|
3709
3750
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1beta1::NodePoolMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::NodePoolMaintenancePolicy::Representation
|
|
3710
3751
|
|
|
@@ -3831,6 +3872,13 @@ module Google
|
|
|
3831
3872
|
end
|
|
3832
3873
|
end
|
|
3833
3874
|
|
|
3875
|
+
class NodeVfioConfig
|
|
3876
|
+
# @private
|
|
3877
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3878
|
+
property :dma_entry_limit, as: 'dmaEntryLimit'
|
|
3879
|
+
end
|
|
3880
|
+
end
|
|
3881
|
+
|
|
3834
3882
|
class NotificationConfig
|
|
3835
3883
|
# @private
|
|
3836
3884
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-container_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.105.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.105.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|