google-apis-container_v1 0.91.0 → 0.92.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: 61064adf54b3e99a0fc568d68e26e09107ee77693750caf83ef4a17b52b93026
4
- data.tar.gz: fa8eb2a79a24857df2b2fda82f355b26eb0046cee4db037d2bc165b1282eb3d1
3
+ metadata.gz: 439ea833bede15aa7a77650471ccf0cc170ee3cb21927419636c15d5aa45fe97
4
+ data.tar.gz: 2a351ebde5c1a4de998e2f58b56f56348948687e9be5278b100c314de4c9bcea
5
5
  SHA512:
6
- metadata.gz: abd35c0f521b5454906bb278365fe484c3ffc2a62344c4c3c9d8d554cbdfa5eb50e9e0662e92407b3986b073bf264c6786df73308545c4e0254c4a35644c4bdb
7
- data.tar.gz: ea29240bf7a77f25cdbcce80d31c49a672f465b7843da30751a96cb48f3975a5836d85c20bbde195d45527ab9481f96c5b6c3f230a2a436db45e438cc3ae80af
6
+ metadata.gz: a220347f7f4e83e90dbf5d742c9d4203792e77dc4c092884bc31237a96e12c0fc0b983a4e78644da4419a0fed5bcbc20ebfe87c60faa52071f2f63079ff79ff1
7
+ data.tar.gz: 7d1d3710f0487e0b3f1ee95baba739e7512e958835afcf3a7bd7dadec7dbc475fe02ab27edfbb135d51f720267fd3ef9d4358f268ba90c851f9e2336d4f463f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.92.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250318
6
+
3
7
  ### v0.91.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250311
@@ -2708,6 +2708,11 @@ module Google
2708
2708
  class EphemeralStorageLocalSsdConfig
2709
2709
  include Google::Apis::Core::Hashable
2710
2710
 
2711
+ # Number of local SSDs to use for GKE Data Cache.
2712
+ # Corresponds to the JSON property `dataCacheCount`
2713
+ # @return [Fixnum]
2714
+ attr_accessor :data_cache_count
2715
+
2711
2716
  # Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A
2712
2717
  # zero (or unset) value has different meanings depending on machine type being
2713
2718
  # used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
@@ -2730,6 +2735,7 @@ module Google
2730
2735
 
2731
2736
  # Update properties of this object
2732
2737
  def update!(**args)
2738
+ @data_cache_count = args[:data_cache_count] if args.key?(:data_cache_count)
2733
2739
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
2734
2740
  end
2735
2741
  end
@@ -4536,6 +4542,12 @@ module Google
4536
4542
  # @return [Google::Apis::ContainerV1::FastSocket]
4537
4543
  attr_accessor :fast_socket
4538
4544
 
4545
+ # Flex Start flag for enabling Flex Start VM.
4546
+ # Corresponds to the JSON property `flexStart`
4547
+ # @return [Boolean]
4548
+ attr_accessor :flex_start
4549
+ alias_method :flex_start?, :flex_start
4550
+
4539
4551
  # GcfsConfig contains configurations of Google Container File System (image
4540
4552
  # streaming).
4541
4553
  # Corresponds to the JSON property `gcfsConfig`
@@ -4782,6 +4794,7 @@ module Google
4782
4794
  @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
4783
4795
  @ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
4784
4796
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
4797
+ @flex_start = args[:flex_start] if args.key?(:flex_start)
4785
4798
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4786
4799
  @gvnic = args[:gvnic] if args.key?(:gvnic)
4787
4800
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -7926,6 +7939,12 @@ module Google
7926
7939
  # @return [Google::Apis::ContainerV1::FastSocket]
7927
7940
  attr_accessor :fast_socket
7928
7941
 
7942
+ # Flex Start flag for enabling Flex Start VM.
7943
+ # Corresponds to the JSON property `flexStart`
7944
+ # @return [Boolean]
7945
+ attr_accessor :flex_start
7946
+ alias_method :flex_start?, :flex_start
7947
+
7929
7948
  # GcfsConfig contains configurations of Google Container File System (image
7930
7949
  # streaming).
7931
7950
  # Corresponds to the JSON property `gcfsConfig`
@@ -8130,6 +8149,7 @@ module Google
8130
8149
  @disk_type = args[:disk_type] if args.key?(:disk_type)
8131
8150
  @etag = args[:etag] if args.key?(:etag)
8132
8151
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
8152
+ @flex_start = args[:flex_start] if args.key?(:flex_start)
8133
8153
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
8134
8154
  @gvnic = args[:gvnic] if args.key?(:gvnic)
8135
8155
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -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.91.0"
19
+ GEM_VERSION = "0.92.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250311"
25
+ REVISION = "20250318"
26
26
  end
27
27
  end
28
28
  end
@@ -1901,6 +1901,7 @@ module Google
1901
1901
  class EphemeralStorageLocalSsdConfig
1902
1902
  # @private
1903
1903
  class Representation < Google::Apis::Core::JsonRepresentation
1904
+ property :data_cache_count, as: 'dataCacheCount'
1904
1905
  property :local_ssd_count, as: 'localSsdCount'
1905
1906
  end
1906
1907
  end
@@ -2411,6 +2412,7 @@ module Google
2411
2412
 
2412
2413
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
2413
2414
 
2415
+ property :flex_start, as: 'flexStart'
2414
2416
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
2415
2417
 
2416
2418
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
@@ -3246,6 +3248,7 @@ module Google
3246
3248
  property :etag, as: 'etag'
3247
3249
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
3248
3250
 
3251
+ property :flex_start, as: 'flexStart'
3249
3252
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
3250
3253
 
3251
3254
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.91.0
4
+ version: 0.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 00:00:00.000000000 Z
10
+ date: 2025-03-30 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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.91.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.92.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: