google-apis-container_v1beta1 0.80.0 → 0.81.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44fa7a553bc4efaabc6a6aecf9bc3d6887e5f260d56111c146901acc174211b0
|
4
|
+
data.tar.gz: 20377a24a22be59078c8921f27dbe9794db07b5ffb7ae0c0f9ca73d5da649729
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35af017fe7720a8e9e047808f84a94a706041b386fdc91bd27ed396f1f927cdeb7d6d13438743d78d8f720003cf35a3d9f137f88ecb6a4696fb1b0dd7de8f535
|
7
|
+
data.tar.gz: 8baff9b44b6cd3d822478c781b8189e5a1eac2d6f06d7f435503bc646df94a4402298288ce1b1ff3845f6c5fc9fc26cba04ec3c8b4edd57f077c6d4396948f9f
|
data/CHANGELOG.md
CHANGED
@@ -3026,6 +3026,11 @@ module Google
|
|
3026
3026
|
class EphemeralStorageLocalSsdConfig
|
3027
3027
|
include Google::Apis::Core::Hashable
|
3028
3028
|
|
3029
|
+
# Number of local SSDs to use for GKE Data Cache.
|
3030
|
+
# Corresponds to the JSON property `dataCacheCount`
|
3031
|
+
# @return [Fixnum]
|
3032
|
+
attr_accessor :data_cache_count
|
3033
|
+
|
3029
3034
|
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A
|
3030
3035
|
# zero (or unset) value has different meanings depending on machine type being
|
3031
3036
|
# used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
|
@@ -3048,6 +3053,7 @@ module Google
|
|
3048
3053
|
|
3049
3054
|
# Update properties of this object
|
3050
3055
|
def update!(**args)
|
3056
|
+
@data_cache_count = args[:data_cache_count] if args.key?(:data_cache_count)
|
3051
3057
|
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
3052
3058
|
end
|
3053
3059
|
end
|
@@ -5030,6 +5036,12 @@ module Google
|
|
5030
5036
|
# @return [Google::Apis::ContainerV1beta1::FastSocket]
|
5031
5037
|
attr_accessor :fast_socket
|
5032
5038
|
|
5039
|
+
# Flex Start flag for enabling Flex Start VM.
|
5040
|
+
# Corresponds to the JSON property `flexStart`
|
5041
|
+
# @return [Boolean]
|
5042
|
+
attr_accessor :flex_start
|
5043
|
+
alias_method :flex_start?, :flex_start
|
5044
|
+
|
5033
5045
|
# GcfsConfig contains configurations of Google Container File System.
|
5034
5046
|
# Corresponds to the JSON property `gcfsConfig`
|
5035
5047
|
# @return [Google::Apis::ContainerV1beta1::GcfsConfig]
|
@@ -5282,6 +5294,7 @@ module Google
|
|
5282
5294
|
@ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
|
5283
5295
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
5284
5296
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
5297
|
+
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
5285
5298
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
5286
5299
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
5287
5300
|
@host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
|
@@ -7168,6 +7181,33 @@ module Google
|
|
7168
7181
|
end
|
7169
7182
|
end
|
7170
7183
|
|
7184
|
+
# RotationConfig is config for secret manager auto rotation.
|
7185
|
+
class RotationConfig
|
7186
|
+
include Google::Apis::Core::Hashable
|
7187
|
+
|
7188
|
+
# Whether the rotation is enabled.
|
7189
|
+
# Corresponds to the JSON property `enabled`
|
7190
|
+
# @return [Boolean]
|
7191
|
+
attr_accessor :enabled
|
7192
|
+
alias_method :enabled?, :enabled
|
7193
|
+
|
7194
|
+
# The interval between two consecutive rotations. Default rotation interval is 2
|
7195
|
+
# minutes.
|
7196
|
+
# Corresponds to the JSON property `rotationInterval`
|
7197
|
+
# @return [String]
|
7198
|
+
attr_accessor :rotation_interval
|
7199
|
+
|
7200
|
+
def initialize(**args)
|
7201
|
+
update!(**args)
|
7202
|
+
end
|
7203
|
+
|
7204
|
+
# Update properties of this object
|
7205
|
+
def update!(**args)
|
7206
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
7207
|
+
@rotation_interval = args[:rotation_interval] if args.key?(:rotation_interval)
|
7208
|
+
end
|
7209
|
+
end
|
7210
|
+
|
7171
7211
|
# SandboxConfig contains configurations of the sandbox to use for the node.
|
7172
7212
|
class SandboxConfig
|
7173
7213
|
include Google::Apis::Core::Hashable
|
@@ -7243,6 +7283,11 @@ module Google
|
|
7243
7283
|
attr_accessor :enabled
|
7244
7284
|
alias_method :enabled?, :enabled
|
7245
7285
|
|
7286
|
+
# RotationConfig is config for secret manager auto rotation.
|
7287
|
+
# Corresponds to the JSON property `rotationConfig`
|
7288
|
+
# @return [Google::Apis::ContainerV1beta1::RotationConfig]
|
7289
|
+
attr_accessor :rotation_config
|
7290
|
+
|
7246
7291
|
def initialize(**args)
|
7247
7292
|
update!(**args)
|
7248
7293
|
end
|
@@ -7250,6 +7295,7 @@ module Google
|
|
7250
7295
|
# Update properties of this object
|
7251
7296
|
def update!(**args)
|
7252
7297
|
@enabled = args[:enabled] if args.key?(:enabled)
|
7298
|
+
@rotation_config = args[:rotation_config] if args.key?(:rotation_config)
|
7253
7299
|
end
|
7254
7300
|
end
|
7255
7301
|
|
@@ -8587,6 +8633,12 @@ module Google
|
|
8587
8633
|
# @return [Google::Apis::ContainerV1beta1::FastSocket]
|
8588
8634
|
attr_accessor :fast_socket
|
8589
8635
|
|
8636
|
+
# Flex Start flag for enabling Flex Start VM.
|
8637
|
+
# Corresponds to the JSON property `flexStart`
|
8638
|
+
# @return [Boolean]
|
8639
|
+
attr_accessor :flex_start
|
8640
|
+
alias_method :flex_start?, :flex_start
|
8641
|
+
|
8590
8642
|
# GcfsConfig contains configurations of Google Container File System.
|
8591
8643
|
# Corresponds to the JSON property `gcfsConfig`
|
8592
8644
|
# @return [Google::Apis::ContainerV1beta1::GcfsConfig]
|
@@ -8790,6 +8842,7 @@ module Google
|
|
8790
8842
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
8791
8843
|
@etag = args[:etag] if args.key?(:etag)
|
8792
8844
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
8845
|
+
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
8793
8846
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
8794
8847
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
8795
8848
|
@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.
|
19
|
+
GEM_VERSION = "0.81.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 = "
|
25
|
+
REVISION = "20250318"
|
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
|
|
@@ -2122,6 +2128,7 @@ module Google
|
|
2122
2128
|
class EphemeralStorageLocalSsdConfig
|
2123
2129
|
# @private
|
2124
2130
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2131
|
+
property :data_cache_count, as: 'dataCacheCount'
|
2125
2132
|
property :local_ssd_count, as: 'localSsdCount'
|
2126
2133
|
end
|
2127
2134
|
end
|
@@ -2684,6 +2691,7 @@ module Google
|
|
2684
2691
|
|
2685
2692
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
|
2686
2693
|
|
2694
|
+
property :flex_start, as: 'flexStart'
|
2687
2695
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
2688
2696
|
|
2689
2697
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
|
@@ -3217,6 +3225,14 @@ module Google
|
|
3217
3225
|
end
|
3218
3226
|
end
|
3219
3227
|
|
3228
|
+
class RotationConfig
|
3229
|
+
# @private
|
3230
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3231
|
+
property :enabled, as: 'enabled'
|
3232
|
+
property :rotation_interval, as: 'rotationInterval'
|
3233
|
+
end
|
3234
|
+
end
|
3235
|
+
|
3220
3236
|
class SandboxConfig
|
3221
3237
|
# @private
|
3222
3238
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3243,6 +3259,8 @@ module Google
|
|
3243
3259
|
# @private
|
3244
3260
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3245
3261
|
property :enabled, as: 'enabled'
|
3262
|
+
property :rotation_config, as: 'rotationConfig', class: Google::Apis::ContainerV1beta1::RotationConfig, decorator: Google::Apis::ContainerV1beta1::RotationConfig::Representation
|
3263
|
+
|
3246
3264
|
end
|
3247
3265
|
end
|
3248
3266
|
|
@@ -3569,6 +3587,7 @@ module Google
|
|
3569
3587
|
property :etag, as: 'etag'
|
3570
3588
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
|
3571
3589
|
|
3590
|
+
property :flex_start, as: 'flexStart'
|
3572
3591
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
3573
3592
|
|
3574
3593
|
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.
|
4
|
+
version: 0.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.81.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:
|