google-apis-container_v1beta1 0.82.0 → 0.83.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: 1a61cdc5981f3f29ad45cbab7932e1b9e546c078d18713279721a29513dc9951
4
- data.tar.gz: 59923e26c0094465a5ad3773b4fde11e9ac0fb1a42e9cd674424736c613f9165
3
+ metadata.gz: '058751f32d888288a29e171c01deb7ebdf46ce8c01fc2bde4a01d4f0c2f01b5c'
4
+ data.tar.gz: e57ca9915ff8ec8fe3aeeece9c47735950b490b57636acba26131888b9939b2b
5
5
  SHA512:
6
- metadata.gz: 74cb0141e953f73b3ee28951d04a8a01ed019e218daa3951cf930283403e298f9c130b3c6d948b4d40865b317cad8be8787d0c417270463bb80e3b740a167f6c
7
- data.tar.gz: ee925f0cfd8ac199eb2f66eaede01ec5c53a1753718aff3af58edd70e9fc678e8a1009e6a1c17e91e10a8447170767b2a9efbd0a42242e481528d1a6ab3ab937
6
+ metadata.gz: c8824e09c97d1ac165a6a3ec1614bb3bfae6e4bd003060e45960a32f579de64481229a075ec8009c11df4e11c3302051df6548656a69aee0a3d2fe308ae98bd3
7
+ data.tar.gz: 2e7fac37aa40f5bded5b9df1c5d434cf301a08ae3d958075260fbfb39d144b5dd6740fd7266b9cb5b1faef97dd7d74922ec5fb587b479b556d2c6dbe5d6fe42a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.83.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250429
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.82.0 (2025-04-20)
4
9
 
5
10
  * 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 2.7+.
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
 
@@ -4585,6 +4585,29 @@ module Google
4585
4585
  end
4586
4586
  end
4587
4587
 
4588
+ # The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
4589
+ # description about the feature can be found [here](https://kubernetes.io/docs/
4590
+ # tasks/administer-cluster/memory-manager/).
4591
+ class MemoryManager
4592
+ include Google::Apis::Core::Hashable
4593
+
4594
+ # Controls the memory management policy on the Node. See https://kubernetes.io/
4595
+ # docs/tasks/administer-cluster/memory-manager/#policies The following values
4596
+ # are allowed. * "none" * "static" The default value is 'none' if unspecified.
4597
+ # Corresponds to the JSON property `policy`
4598
+ # @return [String]
4599
+ attr_accessor :policy
4600
+
4601
+ def initialize(**args)
4602
+ update!(**args)
4603
+ end
4604
+
4605
+ # Update properties of this object
4606
+ def update!(**args)
4607
+ @policy = args[:policy] if args.key?(:policy)
4608
+ end
4609
+ end
4610
+
4588
4611
  # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
4589
4612
  class MeshCertificates
4590
4613
  include Google::Apis::Core::Hashable
@@ -5490,6 +5513,13 @@ module Google
5490
5513
  attr_accessor :insecure_kubelet_readonly_port_enabled
5491
5514
  alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
5492
5515
 
5516
+ # The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
5517
+ # description about the feature can be found [here](https://kubernetes.io/docs/
5518
+ # tasks/administer-cluster/memory-manager/).
5519
+ # Corresponds to the JSON property `memoryManager`
5520
+ # @return [Google::Apis::ContainerV1beta1::MemoryManager]
5521
+ attr_accessor :memory_manager
5522
+
5493
5523
  # Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
5494
5524
  # limiting/#pod-pid-limits Controls the maximum number of processes allowed to
5495
5525
  # run in a pod. The value must be greater than or equal to 1024 and less than
@@ -5498,6 +5528,12 @@ module Google
5498
5528
  # @return [Fixnum]
5499
5529
  attr_accessor :pod_pids_limit
5500
5530
 
5531
+ # TopologyManager defines the configuration options for Topology Manager feature.
5532
+ # See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
5533
+ # Corresponds to the JSON property `topologyManager`
5534
+ # @return [Google::Apis::ContainerV1beta1::TopologyManager]
5535
+ attr_accessor :topology_manager
5536
+
5501
5537
  def initialize(**args)
5502
5538
  update!(**args)
5503
5539
  end
@@ -5515,7 +5551,9 @@ module Google
5515
5551
  @image_maximum_gc_age = args[:image_maximum_gc_age] if args.key?(:image_maximum_gc_age)
5516
5552
  @image_minimum_gc_age = args[:image_minimum_gc_age] if args.key?(:image_minimum_gc_age)
5517
5553
  @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
5554
+ @memory_manager = args[:memory_manager] if args.key?(:memory_manager)
5518
5555
  @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
5556
+ @topology_manager = args[:topology_manager] if args.key?(:topology_manager)
5519
5557
  end
5520
5558
  end
5521
5559
 
@@ -8427,6 +8465,48 @@ module Google
8427
8465
  end
8428
8466
  end
8429
8467
 
8468
+ # TopologyManager defines the configuration options for Topology Manager feature.
8469
+ # See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
8470
+ class TopologyManager
8471
+ include Google::Apis::Core::Hashable
8472
+
8473
+ # Configures the strategy for resource alignment. Allowed values are: * none:
8474
+ # the default policy, and does not perform any topology alignment. * restricted:
8475
+ # the topology manager stores the preferred NUMA node affinity for the container,
8476
+ # and will reject the pod if the affinity if not preferred. * best-effort: the
8477
+ # topology manager stores the preferred NUMA node affinity for the container. If
8478
+ # the affinity is not preferred, the topology manager will admit the pod to the
8479
+ # node anyway. * single-numa-node: the topology manager determines if the single
8480
+ # NUMA node affinity is possible. If it is, Topology Manager will store this and
8481
+ # the Hint Providers can then use this information when making the resource
8482
+ # allocation decision. If, however, this is not possible then the Topology
8483
+ # Manager will reject the pod from the node. This will result in a pod in a
8484
+ # Terminated state with a pod admission failure. The default policy value is '
8485
+ # none' if unspecified. Details about each strategy can be found [here](https://
8486
+ # kubernetes.io/docs/tasks/administer-cluster/topology-manager/#topology-manager-
8487
+ # policies).
8488
+ # Corresponds to the JSON property `policy`
8489
+ # @return [String]
8490
+ attr_accessor :policy
8491
+
8492
+ # The Topology Manager aligns resources in following scopes: * container * pod
8493
+ # The default scope is 'container' if unspecified. See https://kubernetes.io/
8494
+ # docs/tasks/administer-cluster/topology-manager/#topology-manager-scopes
8495
+ # Corresponds to the JSON property `scope`
8496
+ # @return [String]
8497
+ attr_accessor :scope
8498
+
8499
+ def initialize(**args)
8500
+ update!(**args)
8501
+ end
8502
+
8503
+ # Update properties of this object
8504
+ def update!(**args)
8505
+ @policy = args[:policy] if args.key?(:policy)
8506
+ @scope = args[:scope] if args.key?(:scope)
8507
+ end
8508
+ end
8509
+
8430
8510
  # Configuration for Cloud TPU. This message is deprecated due to the deprecation
8431
8511
  # of 2VM TPU. The end of life date for 2VM TPU is 2025-04-25.
8432
8512
  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.82.0"
19
+ GEM_VERSION = "0.83.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250408"
25
+ REVISION = "20250429"
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
 
@@ -2567,6 +2579,13 @@ module Google
2567
2579
  end
2568
2580
  end
2569
2581
 
2582
+ class MemoryManager
2583
+ # @private
2584
+ class Representation < Google::Apis::Core::JsonRepresentation
2585
+ property :policy, as: 'policy'
2586
+ end
2587
+ end
2588
+
2570
2589
  class MeshCertificates
2571
2590
  # @private
2572
2591
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2776,7 +2795,11 @@ module Google
2776
2795
  property :image_maximum_gc_age, as: 'imageMaximumGcAge'
2777
2796
  property :image_minimum_gc_age, as: 'imageMinimumGcAge'
2778
2797
  property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
2798
+ property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1beta1::MemoryManager, decorator: Google::Apis::ContainerV1beta1::MemoryManager::Representation
2799
+
2779
2800
  property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
2801
+ property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1beta1::TopologyManager, decorator: Google::Apis::ContainerV1beta1::TopologyManager::Representation
2802
+
2780
2803
  end
2781
2804
  end
2782
2805
 
@@ -3533,6 +3556,14 @@ module Google
3533
3556
  end
3534
3557
  end
3535
3558
 
3559
+ class TopologyManager
3560
+ # @private
3561
+ class Representation < Google::Apis::Core::JsonRepresentation
3562
+ property :policy, as: 'policy'
3563
+ property :scope, as: 'scope'
3564
+ end
3565
+ end
3566
+
3536
3567
  class TpuConfig
3537
3568
  # @private
3538
3569
  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.82.0
4
+ version: 0.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
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.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.83.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: '2.7'
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.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Kubernetes Engine API V1beta1
79
79
  test_files: []