google-apis-container_v1beta1 0.80.0 → 0.82.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: e8c2d2fe9e789a28c9745b4b5baaf5250e1903f770659b28de2ca31d14c730dd
4
- data.tar.gz: 45a1ca49bd87cad5db76a4fa1950e67ce95396fa175863404cde34d0db3fd56f
3
+ metadata.gz: 1a61cdc5981f3f29ad45cbab7932e1b9e546c078d18713279721a29513dc9951
4
+ data.tar.gz: 59923e26c0094465a5ad3773b4fde11e9ac0fb1a42e9cd674424736c613f9165
5
5
  SHA512:
6
- metadata.gz: 201ed7dfb9ae5e74ac3178b07006289a4d6d8f66ae98f63d19f17d24116da36d00d07443ede318036b492fb97eddd8577789ee03d9f74b5bbf7a3174571b805e
7
- data.tar.gz: a303781bdffb98d86eafa17dd00fca86f702f7f550ce6a5b84ee8d22aeb876961ad55b47055948d9ca7a9e1974a935eb823e22be22469ca5be2ba67392100b57
6
+ metadata.gz: 74cb0141e953f73b3ee28951d04a8a01ed019e218daa3951cf930283403e298f9c130b3c6d948b4d40865b317cad8be8787d0c417270463bb80e3b740a167f6c
7
+ data.tar.gz: ee925f0cfd8ac199eb2f66eaede01ec5c53a1753718aff3af58edd70e9fc678e8a1009e6a1c17e91e10a8447170767b2a9efbd0a42242e481528d1a6ab3ab937
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.82.0 (2025-04-20)
4
+
5
+ * Regenerated from discovery document revision 20250408
6
+
7
+ ### v0.81.0 (2025-04-06)
8
+
9
+ * Regenerated from discovery document revision 20250318
10
+
3
11
  ### v0.80.0 (2025-03-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20250311
@@ -2491,6 +2491,11 @@ module Google
2491
2491
  class ConfidentialNodes
2492
2492
  include Google::Apis::Core::Hashable
2493
2493
 
2494
+ # Defines the type of technology used by the confidential node.
2495
+ # Corresponds to the JSON property `confidentialInstanceType`
2496
+ # @return [String]
2497
+ attr_accessor :confidential_instance_type
2498
+
2494
2499
  # Whether Confidential Nodes feature is enabled.
2495
2500
  # Corresponds to the JSON property `enabled`
2496
2501
  # @return [Boolean]
@@ -2503,6 +2508,7 @@ module Google
2503
2508
 
2504
2509
  # Update properties of this object
2505
2510
  def update!(**args)
2511
+ @confidential_instance_type = args[:confidential_instance_type] if args.key?(:confidential_instance_type)
2506
2512
  @enabled = args[:enabled] if args.key?(:enabled)
2507
2513
  end
2508
2514
  end
@@ -3026,6 +3032,11 @@ module Google
3026
3032
  class EphemeralStorageLocalSsdConfig
3027
3033
  include Google::Apis::Core::Hashable
3028
3034
 
3035
+ # Number of local SSDs to use for GKE Data Cache.
3036
+ # Corresponds to the JSON property `dataCacheCount`
3037
+ # @return [Fixnum]
3038
+ attr_accessor :data_cache_count
3039
+
3029
3040
  # Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A
3030
3041
  # zero (or unset) value has different meanings depending on machine type being
3031
3042
  # used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
@@ -3048,6 +3059,7 @@ module Google
3048
3059
 
3049
3060
  # Update properties of this object
3050
3061
  def update!(**args)
3062
+ @data_cache_count = args[:data_cache_count] if args.key?(:data_cache_count)
3051
3063
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
3052
3064
  end
3053
3065
  end
@@ -5030,6 +5042,12 @@ module Google
5030
5042
  # @return [Google::Apis::ContainerV1beta1::FastSocket]
5031
5043
  attr_accessor :fast_socket
5032
5044
 
5045
+ # Flex Start flag for enabling Flex Start VM.
5046
+ # Corresponds to the JSON property `flexStart`
5047
+ # @return [Boolean]
5048
+ attr_accessor :flex_start
5049
+ alias_method :flex_start?, :flex_start
5050
+
5033
5051
  # GcfsConfig contains configurations of Google Container File System.
5034
5052
  # Corresponds to the JSON property `gcfsConfig`
5035
5053
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -5282,6 +5300,7 @@ module Google
5282
5300
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
5283
5301
  @ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
5284
5302
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
5303
+ @flex_start = args[:flex_start] if args.key?(:flex_start)
5285
5304
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5286
5305
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5287
5306
  @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
@@ -7168,6 +7187,33 @@ module Google
7168
7187
  end
7169
7188
  end
7170
7189
 
7190
+ # RotationConfig is config for secret manager auto rotation.
7191
+ class RotationConfig
7192
+ include Google::Apis::Core::Hashable
7193
+
7194
+ # Whether the rotation is enabled.
7195
+ # Corresponds to the JSON property `enabled`
7196
+ # @return [Boolean]
7197
+ attr_accessor :enabled
7198
+ alias_method :enabled?, :enabled
7199
+
7200
+ # The interval between two consecutive rotations. Default rotation interval is 2
7201
+ # minutes.
7202
+ # Corresponds to the JSON property `rotationInterval`
7203
+ # @return [String]
7204
+ attr_accessor :rotation_interval
7205
+
7206
+ def initialize(**args)
7207
+ update!(**args)
7208
+ end
7209
+
7210
+ # Update properties of this object
7211
+ def update!(**args)
7212
+ @enabled = args[:enabled] if args.key?(:enabled)
7213
+ @rotation_interval = args[:rotation_interval] if args.key?(:rotation_interval)
7214
+ end
7215
+ end
7216
+
7171
7217
  # SandboxConfig contains configurations of the sandbox to use for the node.
7172
7218
  class SandboxConfig
7173
7219
  include Google::Apis::Core::Hashable
@@ -7243,6 +7289,11 @@ module Google
7243
7289
  attr_accessor :enabled
7244
7290
  alias_method :enabled?, :enabled
7245
7291
 
7292
+ # RotationConfig is config for secret manager auto rotation.
7293
+ # Corresponds to the JSON property `rotationConfig`
7294
+ # @return [Google::Apis::ContainerV1beta1::RotationConfig]
7295
+ attr_accessor :rotation_config
7296
+
7246
7297
  def initialize(**args)
7247
7298
  update!(**args)
7248
7299
  end
@@ -7250,6 +7301,7 @@ module Google
7250
7301
  # Update properties of this object
7251
7302
  def update!(**args)
7252
7303
  @enabled = args[:enabled] if args.key?(:enabled)
7304
+ @rotation_config = args[:rotation_config] if args.key?(:rotation_config)
7253
7305
  end
7254
7306
  end
7255
7307
 
@@ -8587,6 +8639,12 @@ module Google
8587
8639
  # @return [Google::Apis::ContainerV1beta1::FastSocket]
8588
8640
  attr_accessor :fast_socket
8589
8641
 
8642
+ # Flex Start flag for enabling Flex Start VM.
8643
+ # Corresponds to the JSON property `flexStart`
8644
+ # @return [Boolean]
8645
+ attr_accessor :flex_start
8646
+ alias_method :flex_start?, :flex_start
8647
+
8590
8648
  # GcfsConfig contains configurations of Google Container File System.
8591
8649
  # Corresponds to the JSON property `gcfsConfig`
8592
8650
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -8790,6 +8848,7 @@ module Google
8790
8848
  @disk_type = args[:disk_type] if args.key?(:disk_type)
8791
8849
  @etag = args[:etag] if args.key?(:etag)
8792
8850
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
8851
+ @flex_start = args[:flex_start] if args.key?(:flex_start)
8793
8852
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
8794
8853
  @gvnic = args[:gvnic] if args.key?(:gvnic)
8795
8854
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -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.80.0"
19
+ GEM_VERSION = "0.82.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 = "20250408"
26
26
  end
27
27
  end
28
28
  end
@@ -1000,6 +1000,12 @@ module Google
1000
1000
  include Google::Apis::Core::JsonObjectSupport
1001
1001
  end
1002
1002
 
1003
+ class RotationConfig
1004
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1005
+
1006
+ include Google::Apis::Core::JsonObjectSupport
1007
+ end
1008
+
1003
1009
  class SandboxConfig
1004
1010
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1011
 
@@ -1964,6 +1970,7 @@ module Google
1964
1970
  class ConfidentialNodes
1965
1971
  # @private
1966
1972
  class Representation < Google::Apis::Core::JsonRepresentation
1973
+ property :confidential_instance_type, as: 'confidentialInstanceType'
1967
1974
  property :enabled, as: 'enabled'
1968
1975
  end
1969
1976
  end
@@ -2122,6 +2129,7 @@ module Google
2122
2129
  class EphemeralStorageLocalSsdConfig
2123
2130
  # @private
2124
2131
  class Representation < Google::Apis::Core::JsonRepresentation
2132
+ property :data_cache_count, as: 'dataCacheCount'
2125
2133
  property :local_ssd_count, as: 'localSsdCount'
2126
2134
  end
2127
2135
  end
@@ -2684,6 +2692,7 @@ module Google
2684
2692
 
2685
2693
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
2686
2694
 
2695
+ property :flex_start, as: 'flexStart'
2687
2696
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2688
2697
 
2689
2698
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
@@ -3217,6 +3226,14 @@ module Google
3217
3226
  end
3218
3227
  end
3219
3228
 
3229
+ class RotationConfig
3230
+ # @private
3231
+ class Representation < Google::Apis::Core::JsonRepresentation
3232
+ property :enabled, as: 'enabled'
3233
+ property :rotation_interval, as: 'rotationInterval'
3234
+ end
3235
+ end
3236
+
3220
3237
  class SandboxConfig
3221
3238
  # @private
3222
3239
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3243,6 +3260,8 @@ module Google
3243
3260
  # @private
3244
3261
  class Representation < Google::Apis::Core::JsonRepresentation
3245
3262
  property :enabled, as: 'enabled'
3263
+ property :rotation_config, as: 'rotationConfig', class: Google::Apis::ContainerV1beta1::RotationConfig, decorator: Google::Apis::ContainerV1beta1::RotationConfig::Representation
3264
+
3246
3265
  end
3247
3266
  end
3248
3267
 
@@ -3569,6 +3588,7 @@ module Google
3569
3588
  property :etag, as: 'etag'
3570
3589
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
3571
3590
 
3591
+ property :flex_start, as: 'flexStart'
3572
3592
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
3573
3593
 
3574
3594
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
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.80.0
4
+ version: 0.82.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-04-20 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.80.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.82.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: