google-apis-container_v1 0.94.0 → 0.96.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: d6b2f009dc7d7e6eaa0249a88e40f6afafaecbfb71daa55d0e39066010384012
|
4
|
+
data.tar.gz: 3e9bdd9379e649249c6dc9cddaa2581adf08ad0cddaaaf50e7f65daf2a49cedf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 161c70f5bdddf3fe571d3044681709c4b8d53b4c533471449721c8fe834cba3b5b474432f67698f8c30b922666311bac0f98a4605e27a4e0b56b0ad065e4dd14
|
7
|
+
data.tar.gz: adef02e0bb821305c3ecdad01bf8f1b427ea59092cab86d51810b562aecb69845883602094936e594e861cf6804a2d2b5fb11c0ee60e59688f43e2c50f0a994e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.96.0 (2025-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250506
|
6
|
+
|
7
|
+
### v0.95.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250429
|
10
|
+
|
3
11
|
### v0.94.0 (2025-05-04)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.17.0
|
@@ -954,6 +954,13 @@ module Google
|
|
954
954
|
# @return [Google::Apis::ContainerV1::AddonsConfig]
|
955
955
|
attr_accessor :addons_config
|
956
956
|
|
957
|
+
# The list of user specified Kubernetes feature gates. Each string represents
|
958
|
+
# the activation status of a feature gate (e.g. "featureX=true" or "featureX=
|
959
|
+
# false")
|
960
|
+
# Corresponds to the JSON property `alphaClusterFeatureGates`
|
961
|
+
# @return [Array<String>]
|
962
|
+
attr_accessor :alpha_cluster_feature_gates
|
963
|
+
|
957
964
|
# Configuration for returning group information from authenticators.
|
958
965
|
# Corresponds to the JSON property `authenticatorGroupsConfig`
|
959
966
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
@@ -1442,6 +1449,7 @@ module Google
|
|
1442
1449
|
# Update properties of this object
|
1443
1450
|
def update!(**args)
|
1444
1451
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
1452
|
+
@alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
|
1445
1453
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
1446
1454
|
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
1447
1455
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
@@ -4105,6 +4113,29 @@ module Google
|
|
4105
4113
|
end
|
4106
4114
|
end
|
4107
4115
|
|
4116
|
+
# The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
|
4117
|
+
# description about the feature can be found [here](https://kubernetes.io/docs/
|
4118
|
+
# tasks/administer-cluster/memory-manager/).
|
4119
|
+
class MemoryManager
|
4120
|
+
include Google::Apis::Core::Hashable
|
4121
|
+
|
4122
|
+
# Controls the memory management policy on the Node. See https://kubernetes.io/
|
4123
|
+
# docs/tasks/administer-cluster/memory-manager/#policies The following values
|
4124
|
+
# are allowed. * "none" * "static" The default value is 'none' if unspecified.
|
4125
|
+
# Corresponds to the JSON property `policy`
|
4126
|
+
# @return [String]
|
4127
|
+
attr_accessor :policy
|
4128
|
+
|
4129
|
+
def initialize(**args)
|
4130
|
+
update!(**args)
|
4131
|
+
end
|
4132
|
+
|
4133
|
+
# Update properties of this object
|
4134
|
+
def update!(**args)
|
4135
|
+
@policy = args[:policy] if args.key?(:policy)
|
4136
|
+
end
|
4137
|
+
end
|
4138
|
+
|
4108
4139
|
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
4109
4140
|
class MeshCertificates
|
4110
4141
|
include Google::Apis::Core::Hashable
|
@@ -4983,6 +5014,13 @@ module Google
|
|
4983
5014
|
attr_accessor :insecure_kubelet_readonly_port_enabled
|
4984
5015
|
alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
|
4985
5016
|
|
5017
|
+
# The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
|
5018
|
+
# description about the feature can be found [here](https://kubernetes.io/docs/
|
5019
|
+
# tasks/administer-cluster/memory-manager/).
|
5020
|
+
# Corresponds to the JSON property `memoryManager`
|
5021
|
+
# @return [Google::Apis::ContainerV1::MemoryManager]
|
5022
|
+
attr_accessor :memory_manager
|
5023
|
+
|
4986
5024
|
# Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
|
4987
5025
|
# limiting/#pod-pid-limits Controls the maximum number of processes allowed to
|
4988
5026
|
# run in a pod. The value must be greater than or equal to 1024 and less than
|
@@ -4991,6 +5029,12 @@ module Google
|
|
4991
5029
|
# @return [Fixnum]
|
4992
5030
|
attr_accessor :pod_pids_limit
|
4993
5031
|
|
5032
|
+
# TopologyManager defines the configuration options for Topology Manager feature.
|
5033
|
+
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
5034
|
+
# Corresponds to the JSON property `topologyManager`
|
5035
|
+
# @return [Google::Apis::ContainerV1::TopologyManager]
|
5036
|
+
attr_accessor :topology_manager
|
5037
|
+
|
4994
5038
|
def initialize(**args)
|
4995
5039
|
update!(**args)
|
4996
5040
|
end
|
@@ -5008,7 +5052,9 @@ module Google
|
|
5008
5052
|
@image_maximum_gc_age = args[:image_maximum_gc_age] if args.key?(:image_maximum_gc_age)
|
5009
5053
|
@image_minimum_gc_age = args[:image_minimum_gc_age] if args.key?(:image_minimum_gc_age)
|
5010
5054
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
5055
|
+
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
5011
5056
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
5057
|
+
@topology_manager = args[:topology_manager] if args.key?(:topology_manager)
|
5012
5058
|
end
|
5013
5059
|
end
|
5014
5060
|
|
@@ -7767,6 +7813,48 @@ module Google
|
|
7767
7813
|
end
|
7768
7814
|
end
|
7769
7815
|
|
7816
|
+
# TopologyManager defines the configuration options for Topology Manager feature.
|
7817
|
+
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
7818
|
+
class TopologyManager
|
7819
|
+
include Google::Apis::Core::Hashable
|
7820
|
+
|
7821
|
+
# Configures the strategy for resource alignment. Allowed values are: * none:
|
7822
|
+
# the default policy, and does not perform any topology alignment. * restricted:
|
7823
|
+
# the topology manager stores the preferred NUMA node affinity for the container,
|
7824
|
+
# and will reject the pod if the affinity if not preferred. * best-effort: the
|
7825
|
+
# topology manager stores the preferred NUMA node affinity for the container. If
|
7826
|
+
# the affinity is not preferred, the topology manager will admit the pod to the
|
7827
|
+
# node anyway. * single-numa-node: the topology manager determines if the single
|
7828
|
+
# NUMA node affinity is possible. If it is, Topology Manager will store this and
|
7829
|
+
# the Hint Providers can then use this information when making the resource
|
7830
|
+
# allocation decision. If, however, this is not possible then the Topology
|
7831
|
+
# Manager will reject the pod from the node. This will result in a pod in a
|
7832
|
+
# Terminated state with a pod admission failure. The default policy value is '
|
7833
|
+
# none' if unspecified. Details about each strategy can be found [here](https://
|
7834
|
+
# kubernetes.io/docs/tasks/administer-cluster/topology-manager/#topology-manager-
|
7835
|
+
# policies).
|
7836
|
+
# Corresponds to the JSON property `policy`
|
7837
|
+
# @return [String]
|
7838
|
+
attr_accessor :policy
|
7839
|
+
|
7840
|
+
# The Topology Manager aligns resources in following scopes: * container * pod
|
7841
|
+
# The default scope is 'container' if unspecified. See https://kubernetes.io/
|
7842
|
+
# docs/tasks/administer-cluster/topology-manager/#topology-manager-scopes
|
7843
|
+
# Corresponds to the JSON property `scope`
|
7844
|
+
# @return [String]
|
7845
|
+
attr_accessor :scope
|
7846
|
+
|
7847
|
+
def initialize(**args)
|
7848
|
+
update!(**args)
|
7849
|
+
end
|
7850
|
+
|
7851
|
+
# Update properties of this object
|
7852
|
+
def update!(**args)
|
7853
|
+
@policy = args[:policy] if args.key?(:policy)
|
7854
|
+
@scope = args[:scope] if args.key?(:scope)
|
7855
|
+
end
|
7856
|
+
end
|
7857
|
+
|
7770
7858
|
# UpdateClusterRequest updates the settings of a cluster.
|
7771
7859
|
class UpdateClusterRequest
|
7772
7860
|
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.96.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
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
|
@@ -592,6 +592,12 @@ module Google
|
|
592
592
|
include Google::Apis::Core::JsonObjectSupport
|
593
593
|
end
|
594
594
|
|
595
|
+
class MemoryManager
|
596
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
|
+
|
598
|
+
include Google::Apis::Core::JsonObjectSupport
|
599
|
+
end
|
600
|
+
|
595
601
|
class MeshCertificates
|
596
602
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
603
|
|
@@ -1078,6 +1084,12 @@ module Google
|
|
1078
1084
|
include Google::Apis::Core::JsonObjectSupport
|
1079
1085
|
end
|
1080
1086
|
|
1087
|
+
class TopologyManager
|
1088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1089
|
+
|
1090
|
+
include Google::Apis::Core::JsonObjectSupport
|
1091
|
+
end
|
1092
|
+
|
1081
1093
|
class UpdateClusterRequest
|
1082
1094
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
1095
|
|
@@ -1448,6 +1460,7 @@ module Google
|
|
1448
1460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1449
1461
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
1450
1462
|
|
1463
|
+
collection :alpha_cluster_feature_gates, as: 'alphaClusterFeatureGates'
|
1451
1464
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
1452
1465
|
|
1453
1466
|
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1::Autopilot, decorator: Google::Apis::ContainerV1::Autopilot::Representation
|
@@ -2291,6 +2304,13 @@ module Google
|
|
2291
2304
|
end
|
2292
2305
|
end
|
2293
2306
|
|
2307
|
+
class MemoryManager
|
2308
|
+
# @private
|
2309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2310
|
+
property :policy, as: 'policy'
|
2311
|
+
end
|
2312
|
+
end
|
2313
|
+
|
2294
2314
|
class MeshCertificates
|
2295
2315
|
# @private
|
2296
2316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2493,7 +2513,11 @@ module Google
|
|
2493
2513
|
property :image_maximum_gc_age, as: 'imageMaximumGcAge'
|
2494
2514
|
property :image_minimum_gc_age, as: 'imageMinimumGcAge'
|
2495
2515
|
property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
|
2516
|
+
property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1::MemoryManager, decorator: Google::Apis::ContainerV1::MemoryManager::Representation
|
2517
|
+
|
2496
2518
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
2519
|
+
property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1::TopologyManager, decorator: Google::Apis::ContainerV1::TopologyManager::Representation
|
2520
|
+
|
2497
2521
|
end
|
2498
2522
|
end
|
2499
2523
|
|
@@ -3203,6 +3227,14 @@ module Google
|
|
3203
3227
|
end
|
3204
3228
|
end
|
3205
3229
|
|
3230
|
+
class TopologyManager
|
3231
|
+
# @private
|
3232
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3233
|
+
property :policy, as: 'policy'
|
3234
|
+
property :scope, as: 'scope'
|
3235
|
+
end
|
3236
|
+
end
|
3237
|
+
|
3206
3238
|
class UpdateClusterRequest
|
3207
3239
|
# @private
|
3208
3240
|
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.96.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.96.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
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 V1
|
79
79
|
test_files: []
|