google-apis-container_v1 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: 6489391d147638e8737b7557c36f5befeb8ec8373c6e4749d697fda911ccdf8a
4
- data.tar.gz: 38eb5e79f6001564f18e305f1e6b25ba8dba78230ca731ae0c1c6ff6a1d9043f
3
+ metadata.gz: ceef4636d459c69c05839696caf660501378a90b35f3f64e19101b6956335a5c
4
+ data.tar.gz: 065c114e8971fe317db9db0d104a30aff3ae3a5cf3a6e60702b4e71f6c53758d
5
5
  SHA512:
6
- metadata.gz: 39dd42150276f66e6ff167272d16fe79d0768b5848434c794fb9f40d43f5511d5e93f261e34edcc4eb77a0a74b158148cfac1db05085e905da19d44d54860803
7
- data.tar.gz: 5e7fc46202ee92bb95bf18282ced48bd321e517492060876eab00d9f970b6f4aa00a92d5ca2ee0a40c8141ddc24c95d6730cebd4f74b935d604d696eda1a90da
6
+ metadata.gz: c03557611b81c38015270d6d996388e85014782b59fa0066183cbb8c54e6fcf46400d8dc1396453d4d21b0fdab05e51f06eb4c071a6c41016d4db002e9554cd0
7
+ data.tar.gz: 22b0dcaa478df6811c46da049e9260174493b209049d84a882871f63c3d52203dd81fc3089aa79fb3660f91649108d46865b04f16988d950dd5141526925adf0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.105.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20250930
6
+
3
7
  ### v0.104.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250923
@@ -2561,6 +2561,11 @@ module Google
2561
2561
  # @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
2562
2562
  attr_accessor :private_registry_access_config
2563
2563
 
2564
+ # Defines writable cgroups configuration.
2565
+ # Corresponds to the JSON property `writableCgroups`
2566
+ # @return [Google::Apis::ContainerV1::WritableCgroups]
2567
+ attr_accessor :writable_cgroups
2568
+
2564
2569
  def initialize(**args)
2565
2570
  update!(**args)
2566
2571
  end
@@ -2568,6 +2573,7 @@ module Google
2568
2573
  # Update properties of this object
2569
2574
  def update!(**args)
2570
2575
  @private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
2576
+ @writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
2571
2577
  end
2572
2578
  end
2573
2579
 
@@ -5625,7 +5631,7 @@ module Google
5625
5631
  # Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a
5626
5632
  # sequence of decimal numbers, each with optional fraction and a unit suffix,
5627
5633
  # such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
5628
- # . The value must be a positive duration.
5634
+ # . The value must be a positive duration between 1ms and 1 second, inclusive.
5629
5635
  # Corresponds to the JSON property `cpuCfsQuotaPeriod`
5630
5636
  # @return [String]
5631
5637
  attr_accessor :cpu_cfs_quota_period
@@ -9703,6 +9709,26 @@ module Google
9703
9709
  @autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
9704
9710
  end
9705
9711
  end
9712
+
9713
+ # Defines writable cgroups configuration.
9714
+ class WritableCgroups
9715
+ include Google::Apis::Core::Hashable
9716
+
9717
+ # Optional. Whether writable cgroups is enabled.
9718
+ # Corresponds to the JSON property `enabled`
9719
+ # @return [Boolean]
9720
+ attr_accessor :enabled
9721
+ alias_method :enabled?, :enabled
9722
+
9723
+ def initialize(**args)
9724
+ update!(**args)
9725
+ end
9726
+
9727
+ # Update properties of this object
9728
+ def update!(**args)
9729
+ @enabled = args[:enabled] if args.key?(:enabled)
9730
+ end
9731
+ end
9706
9732
  end
9707
9733
  end
9708
9734
  end
@@ -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.104.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.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250923"
25
+ REVISION = "20250930"
26
26
  end
27
27
  end
28
28
  end
@@ -1294,6 +1294,12 @@ module Google
1294
1294
  include Google::Apis::Core::JsonObjectSupport
1295
1295
  end
1296
1296
 
1297
+ class WritableCgroups
1298
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1299
+
1300
+ include Google::Apis::Core::JsonObjectSupport
1301
+ end
1302
+
1297
1303
  class AcceleratorConfig
1298
1304
  # @private
1299
1305
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1958,6 +1964,8 @@ module Google
1958
1964
  class Representation < Google::Apis::Core::JsonRepresentation
1959
1965
  property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation
1960
1966
 
1967
+ property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1::WritableCgroups, decorator: Google::Apis::ContainerV1::WritableCgroups::Representation
1968
+
1961
1969
  end
1962
1970
  end
1963
1971
 
@@ -3753,6 +3761,13 @@ module Google
3753
3761
  property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
3754
3762
  end
3755
3763
  end
3764
+
3765
+ class WritableCgroups
3766
+ # @private
3767
+ class Representation < Google::Apis::Core::JsonRepresentation
3768
+ property :enabled, as: 'enabled'
3769
+ end
3770
+ end
3756
3771
  end
3757
3772
  end
3758
3773
  end
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.104.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.104.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.105.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: