google-apis-container_v1beta1 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: 06fa6fb50e65e6849a8b74884d6654a441f468b95e62bc0273d11e98f36527eb
|
4
|
+
data.tar.gz: 3b572f0ae8f9cd493800e7628b62639c0a02235e2555533a8792a6ce9325a12b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62e5273586cc35a2cd9ed9275e73cfeb4eca9e711320d803c08866a8406db5df2358f8c22e2a41a2a2d5574fad33c135d5f431f81b520a90ab24843fec72aa9e
|
7
|
+
data.tar.gz: 26941597228101d8a1d5d93018566c966d46970fad60b1c9a04f77e9d1d2f945c74f6c97c0d69e1fc72031cad2485e20538807294f68da28df36df1b90ae7f64
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.84.0 (2025-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250506
|
6
|
+
|
7
|
+
### v0.83.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250429
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.82.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250408
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/kubernetes-engine/docs/) ma
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -1059,6 +1059,13 @@ module Google
|
|
1059
1059
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
1060
1060
|
attr_accessor :addons_config
|
1061
1061
|
|
1062
|
+
# The list of user specified Kubernetes feature gates. Each string represents
|
1063
|
+
# the activation status of a feature gate (e.g. "featureX=true" or "featureX=
|
1064
|
+
# false")
|
1065
|
+
# Corresponds to the JSON property `alphaClusterFeatureGates`
|
1066
|
+
# @return [Array<String>]
|
1067
|
+
attr_accessor :alpha_cluster_feature_gates
|
1068
|
+
|
1062
1069
|
# Configuration for returning group information from authenticators.
|
1063
1070
|
# Corresponds to the JSON property `authenticatorGroupsConfig`
|
1064
1071
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
@@ -1603,6 +1610,7 @@ module Google
|
|
1603
1610
|
# Update properties of this object
|
1604
1611
|
def update!(**args)
|
1605
1612
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
1613
|
+
@alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
|
1606
1614
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
1607
1615
|
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
1608
1616
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
@@ -4585,6 +4593,29 @@ module Google
|
|
4585
4593
|
end
|
4586
4594
|
end
|
4587
4595
|
|
4596
|
+
# The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
|
4597
|
+
# description about the feature can be found [here](https://kubernetes.io/docs/
|
4598
|
+
# tasks/administer-cluster/memory-manager/).
|
4599
|
+
class MemoryManager
|
4600
|
+
include Google::Apis::Core::Hashable
|
4601
|
+
|
4602
|
+
# Controls the memory management policy on the Node. See https://kubernetes.io/
|
4603
|
+
# docs/tasks/administer-cluster/memory-manager/#policies The following values
|
4604
|
+
# are allowed. * "none" * "static" The default value is 'none' if unspecified.
|
4605
|
+
# Corresponds to the JSON property `policy`
|
4606
|
+
# @return [String]
|
4607
|
+
attr_accessor :policy
|
4608
|
+
|
4609
|
+
def initialize(**args)
|
4610
|
+
update!(**args)
|
4611
|
+
end
|
4612
|
+
|
4613
|
+
# Update properties of this object
|
4614
|
+
def update!(**args)
|
4615
|
+
@policy = args[:policy] if args.key?(:policy)
|
4616
|
+
end
|
4617
|
+
end
|
4618
|
+
|
4588
4619
|
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
4589
4620
|
class MeshCertificates
|
4590
4621
|
include Google::Apis::Core::Hashable
|
@@ -5490,6 +5521,13 @@ module Google
|
|
5490
5521
|
attr_accessor :insecure_kubelet_readonly_port_enabled
|
5491
5522
|
alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
|
5492
5523
|
|
5524
|
+
# The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
|
5525
|
+
# description about the feature can be found [here](https://kubernetes.io/docs/
|
5526
|
+
# tasks/administer-cluster/memory-manager/).
|
5527
|
+
# Corresponds to the JSON property `memoryManager`
|
5528
|
+
# @return [Google::Apis::ContainerV1beta1::MemoryManager]
|
5529
|
+
attr_accessor :memory_manager
|
5530
|
+
|
5493
5531
|
# Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
|
5494
5532
|
# limiting/#pod-pid-limits Controls the maximum number of processes allowed to
|
5495
5533
|
# run in a pod. The value must be greater than or equal to 1024 and less than
|
@@ -5498,6 +5536,12 @@ module Google
|
|
5498
5536
|
# @return [Fixnum]
|
5499
5537
|
attr_accessor :pod_pids_limit
|
5500
5538
|
|
5539
|
+
# TopologyManager defines the configuration options for Topology Manager feature.
|
5540
|
+
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
5541
|
+
# Corresponds to the JSON property `topologyManager`
|
5542
|
+
# @return [Google::Apis::ContainerV1beta1::TopologyManager]
|
5543
|
+
attr_accessor :topology_manager
|
5544
|
+
|
5501
5545
|
def initialize(**args)
|
5502
5546
|
update!(**args)
|
5503
5547
|
end
|
@@ -5515,7 +5559,9 @@ module Google
|
|
5515
5559
|
@image_maximum_gc_age = args[:image_maximum_gc_age] if args.key?(:image_maximum_gc_age)
|
5516
5560
|
@image_minimum_gc_age = args[:image_minimum_gc_age] if args.key?(:image_minimum_gc_age)
|
5517
5561
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
5562
|
+
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
5518
5563
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
5564
|
+
@topology_manager = args[:topology_manager] if args.key?(:topology_manager)
|
5519
5565
|
end
|
5520
5566
|
end
|
5521
5567
|
|
@@ -8427,6 +8473,48 @@ module Google
|
|
8427
8473
|
end
|
8428
8474
|
end
|
8429
8475
|
|
8476
|
+
# TopologyManager defines the configuration options for Topology Manager feature.
|
8477
|
+
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
8478
|
+
class TopologyManager
|
8479
|
+
include Google::Apis::Core::Hashable
|
8480
|
+
|
8481
|
+
# Configures the strategy for resource alignment. Allowed values are: * none:
|
8482
|
+
# the default policy, and does not perform any topology alignment. * restricted:
|
8483
|
+
# the topology manager stores the preferred NUMA node affinity for the container,
|
8484
|
+
# and will reject the pod if the affinity if not preferred. * best-effort: the
|
8485
|
+
# topology manager stores the preferred NUMA node affinity for the container. If
|
8486
|
+
# the affinity is not preferred, the topology manager will admit the pod to the
|
8487
|
+
# node anyway. * single-numa-node: the topology manager determines if the single
|
8488
|
+
# NUMA node affinity is possible. If it is, Topology Manager will store this and
|
8489
|
+
# the Hint Providers can then use this information when making the resource
|
8490
|
+
# allocation decision. If, however, this is not possible then the Topology
|
8491
|
+
# Manager will reject the pod from the node. This will result in a pod in a
|
8492
|
+
# Terminated state with a pod admission failure. The default policy value is '
|
8493
|
+
# none' if unspecified. Details about each strategy can be found [here](https://
|
8494
|
+
# kubernetes.io/docs/tasks/administer-cluster/topology-manager/#topology-manager-
|
8495
|
+
# policies).
|
8496
|
+
# Corresponds to the JSON property `policy`
|
8497
|
+
# @return [String]
|
8498
|
+
attr_accessor :policy
|
8499
|
+
|
8500
|
+
# The Topology Manager aligns resources in following scopes: * container * pod
|
8501
|
+
# The default scope is 'container' if unspecified. See https://kubernetes.io/
|
8502
|
+
# docs/tasks/administer-cluster/topology-manager/#topology-manager-scopes
|
8503
|
+
# Corresponds to the JSON property `scope`
|
8504
|
+
# @return [String]
|
8505
|
+
attr_accessor :scope
|
8506
|
+
|
8507
|
+
def initialize(**args)
|
8508
|
+
update!(**args)
|
8509
|
+
end
|
8510
|
+
|
8511
|
+
# Update properties of this object
|
8512
|
+
def update!(**args)
|
8513
|
+
@policy = args[:policy] if args.key?(:policy)
|
8514
|
+
@scope = args[:scope] if args.key?(:scope)
|
8515
|
+
end
|
8516
|
+
end
|
8517
|
+
|
8430
8518
|
# Configuration for Cloud TPU. This message is deprecated due to the deprecation
|
8431
8519
|
# of 2VM TPU. The end of life date for 2VM TPU is 2025-04-25.
|
8432
8520
|
class TpuConfig
|
@@ -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.84.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250506"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -664,6 +664,12 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class MemoryManager
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
667
673
|
class MeshCertificates
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
675
|
|
@@ -1180,6 +1186,12 @@ module Google
|
|
1180
1186
|
include Google::Apis::Core::JsonObjectSupport
|
1181
1187
|
end
|
1182
1188
|
|
1189
|
+
class TopologyManager
|
1190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
|
+
|
1192
|
+
include Google::Apis::Core::JsonObjectSupport
|
1193
|
+
end
|
1194
|
+
|
1183
1195
|
class TpuConfig
|
1184
1196
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1185
1197
|
|
@@ -1618,6 +1630,7 @@ module Google
|
|
1618
1630
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1619
1631
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
1620
1632
|
|
1633
|
+
collection :alpha_cluster_feature_gates, as: 'alphaClusterFeatureGates'
|
1621
1634
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1622
1635
|
|
1623
1636
|
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
@@ -2567,6 +2580,13 @@ module Google
|
|
2567
2580
|
end
|
2568
2581
|
end
|
2569
2582
|
|
2583
|
+
class MemoryManager
|
2584
|
+
# @private
|
2585
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2586
|
+
property :policy, as: 'policy'
|
2587
|
+
end
|
2588
|
+
end
|
2589
|
+
|
2570
2590
|
class MeshCertificates
|
2571
2591
|
# @private
|
2572
2592
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2776,7 +2796,11 @@ module Google
|
|
2776
2796
|
property :image_maximum_gc_age, as: 'imageMaximumGcAge'
|
2777
2797
|
property :image_minimum_gc_age, as: 'imageMinimumGcAge'
|
2778
2798
|
property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
|
2799
|
+
property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1beta1::MemoryManager, decorator: Google::Apis::ContainerV1beta1::MemoryManager::Representation
|
2800
|
+
|
2779
2801
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
2802
|
+
property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1beta1::TopologyManager, decorator: Google::Apis::ContainerV1beta1::TopologyManager::Representation
|
2803
|
+
|
2780
2804
|
end
|
2781
2805
|
end
|
2782
2806
|
|
@@ -3533,6 +3557,14 @@ module Google
|
|
3533
3557
|
end
|
3534
3558
|
end
|
3535
3559
|
|
3560
|
+
class TopologyManager
|
3561
|
+
# @private
|
3562
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3563
|
+
property :policy, as: 'policy'
|
3564
|
+
property :scope, as: 'scope'
|
3565
|
+
end
|
3566
|
+
end
|
3567
|
+
|
3536
3568
|
class TpuConfig
|
3537
3569
|
# @private
|
3538
3570
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.84.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.84.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:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Kubernetes Engine API V1beta1
|
79
79
|
test_files: []
|