google-apis-container_v1beta1 0.86.0 → 0.87.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: 2c7bd42d78094859ebe28e301abd82d0e91abcbf04d740330136f49c564d6c2a
4
- data.tar.gz: 7a3bc5227bf3306df49795ff2a02e715d1e56c02c8e24c02da9501aa8b238938
3
+ metadata.gz: 02a8106e1f333f2507d4c0bb14e0661339f3877860c6ecf45b70ed171c7c10fe
4
+ data.tar.gz: e1bd7e9e13b548500105566a74a16e6e565613bada9ebec3db3767aa63cd6430
5
5
  SHA512:
6
- metadata.gz: a236c6d95ee09ea3d1d2e47280e8e97cc9ceee6a7ce2dbbdc5569ed747106cd200c0d85b845a8ba19e658917f6bf75ab051f6fc406d4d47e4f170ae2bd277130
7
- data.tar.gz: eb4e84f43390121b3e32218f2cc5d193815b6704cae3941f6388fc9ccfc41997248fcbcfb5a65c23a4dbb71401a2c06fd28bcc38457a8a09884562ffa02c1f79
6
+ metadata.gz: e5fa69cde50475fdfe1490f633b24cce41f3e71d255cef077f67e53f5e2fe1a927f5c425aff587879669ead8d876afe2edc6bbc83902645bfce9465cb6bb8587
7
+ data.tar.gz: 2ef04539a63b40ca77e0ef62687c1c0f0314b06586843bc51f8fa5dc4d07008aee8f51dc40f3db98e0194a29b052b0763720c6632755d9e6d5e8649e9c14a32e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.87.0 (2025-06-29)
4
+
5
+ * Regenerated from discovery document revision 20250617
6
+
3
7
  ### v0.86.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250603
@@ -5765,6 +5765,15 @@ module Google
5765
5765
  # @return [Fixnum]
5766
5766
  attr_accessor :pod_pids_limit
5767
5767
 
5768
+ # Optional. Defines whether to enable single process OOM killer. If true, will
5769
+ # prevent the memory.oom.group flag from being set for container cgroups in
5770
+ # cgroups v2. This causes processes in the container to be OOM killed
5771
+ # individually instead of as a group.
5772
+ # Corresponds to the JSON property `singleProcessOomKill`
5773
+ # @return [Boolean]
5774
+ attr_accessor :single_process_oom_kill
5775
+ alias_method :single_process_oom_kill?, :single_process_oom_kill
5776
+
5768
5777
  # TopologyManager defines the configuration options for Topology Manager feature.
5769
5778
  # See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
5770
5779
  # Corresponds to the JSON property `topologyManager`
@@ -5790,6 +5799,7 @@ module Google
5790
5799
  @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
5791
5800
  @memory_manager = args[:memory_manager] if args.key?(:memory_manager)
5792
5801
  @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
5802
+ @single_process_oom_kill = args[:single_process_oom_kill] if args.key?(:single_process_oom_kill)
5793
5803
  @topology_manager = args[:topology_manager] if args.key?(:topology_manager)
5794
5804
  end
5795
5805
  end
@@ -5921,6 +5931,14 @@ module Google
5921
5931
  # @return [String]
5922
5932
  attr_accessor :pod_range
5923
5933
 
5934
+ # Output only. The subnetwork path for the node pool. Format: projects/`project`/
5935
+ # regions/`region`/subnetworks/`subnetwork` If the cluster is associated with
5936
+ # multiple subnetworks, the subnetwork for the node pool is picked based on the
5937
+ # IP utilization during node pool creation and is immutable.
5938
+ # Corresponds to the JSON property `subnetwork`
5939
+ # @return [String]
5940
+ attr_accessor :subnetwork
5941
+
5924
5942
  def initialize(**args)
5925
5943
  update!(**args)
5926
5944
  end
@@ -5936,6 +5954,7 @@ module Google
5936
5954
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
5937
5955
  @pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
5938
5956
  @pod_range = args[:pod_range] if args.key?(:pod_range)
5957
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
5939
5958
  end
5940
5959
  end
5941
5960
 
@@ -8513,6 +8532,13 @@ module Google
8513
8532
  class SoleTenantConfig
8514
8533
  include Google::Apis::Core::Hashable
8515
8534
 
8535
+ # Optional. The minimum number of virtual CPUs this instance will consume when
8536
+ # running on a sole-tenant node. This field can only be set if the node pool is
8537
+ # created in a shared sole-tenant node group.
8538
+ # Corresponds to the JSON property `minNodeCpus`
8539
+ # @return [Fixnum]
8540
+ attr_accessor :min_node_cpus
8541
+
8516
8542
  # NodeAffinities used to match to a shared sole tenant node group.
8517
8543
  # Corresponds to the JSON property `nodeAffinities`
8518
8544
  # @return [Array<Google::Apis::ContainerV1beta1::NodeAffinity>]
@@ -8524,6 +8550,7 @@ module Google
8524
8550
 
8525
8551
  # Update properties of this object
8526
8552
  def update!(**args)
8553
+ @min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus)
8527
8554
  @node_affinities = args[:node_affinities] if args.key?(:node_affinities)
8528
8555
  end
8529
8556
  end
@@ -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.86.0"
19
+ GEM_VERSION = "0.87.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 = "20250603"
25
+ REVISION = "20250617"
26
26
  end
27
27
  end
28
28
  end
@@ -2899,6 +2899,7 @@ module Google
2899
2899
  property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1beta1::MemoryManager, decorator: Google::Apis::ContainerV1beta1::MemoryManager::Representation
2900
2900
 
2901
2901
  property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
2902
+ property :single_process_oom_kill, as: 'singleProcessOomKill'
2902
2903
  property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1beta1::TopologyManager, decorator: Google::Apis::ContainerV1beta1::TopologyManager::Representation
2903
2904
 
2904
2905
  end
@@ -2937,6 +2938,7 @@ module Google
2937
2938
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
2938
2939
  property :pod_ipv4_range_utilization, as: 'podIpv4RangeUtilization'
2939
2940
  property :pod_range, as: 'podRange'
2941
+ property :subnetwork, as: 'subnetwork'
2940
2942
  end
2941
2943
  end
2942
2944
 
@@ -3597,6 +3599,7 @@ module Google
3597
3599
  class SoleTenantConfig
3598
3600
  # @private
3599
3601
  class Representation < Google::Apis::Core::JsonRepresentation
3602
+ property :min_node_cpus, as: 'minNodeCpus'
3600
3603
  collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ContainerV1beta1::NodeAffinity, decorator: Google::Apis::ContainerV1beta1::NodeAffinity::Representation
3601
3604
 
3602
3605
  end
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.86.0
4
+ version: 0.87.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.86.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.87.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: