google-apis-container_v1 0.101.0 → 0.102.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: ed5b0555877d3a1665d644f4097074bcbb3779cbb97074e053ddb4786e4737df
|
4
|
+
data.tar.gz: 309eaa47d0027e6604973771fb21b1c024cb0851bb88e7802f251a9adfd50315
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c8284966a89a610c918914dd33dea38f9af3fbab7c2fd4d3d81a1902da63076cd8aab48716d4264c9cc046ed4ec9f74595eb678b98ea73d8ba13444fd897c09
|
7
|
+
data.tar.gz: 36d9f44c02eafc5c48281fed9cf62df732b999d1b56d14d571d066dfb335428c0f0ecaff3e43b60fc6dfc9e59d3d0a19ca68b5b35da4a55de94d0d77a31270b4
|
data/CHANGELOG.md
CHANGED
@@ -4427,7 +4427,10 @@ module Google
|
|
4427
4427
|
include Google::Apis::Core::Hashable
|
4428
4428
|
|
4429
4429
|
# If set to true, the Lustre CSI driver will install Lustre kernel modules using
|
4430
|
-
# port 6988.
|
4430
|
+
# port 6988. This serves as a workaround for a port conflict with the gke-
|
4431
|
+
# metadata-server. This field is required ONLY under the following conditions: 1.
|
4432
|
+
# The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
|
4433
|
+
# to a Lustre instance that has the 'gke-support-enabled' flag.
|
4431
4434
|
# Corresponds to the JSON property `enableLegacyLustrePort`
|
4432
4435
|
# @return [Boolean]
|
4433
4436
|
attr_accessor :enable_legacy_lustre_port
|
@@ -7300,6 +7303,33 @@ module Google
|
|
7300
7303
|
end
|
7301
7304
|
end
|
7302
7305
|
|
7306
|
+
# RotationConfig is config for secret manager auto rotation.
|
7307
|
+
class RotationConfig
|
7308
|
+
include Google::Apis::Core::Hashable
|
7309
|
+
|
7310
|
+
# Whether the rotation is enabled.
|
7311
|
+
# Corresponds to the JSON property `enabled`
|
7312
|
+
# @return [Boolean]
|
7313
|
+
attr_accessor :enabled
|
7314
|
+
alias_method :enabled?, :enabled
|
7315
|
+
|
7316
|
+
# The interval between two consecutive rotations. Default rotation interval is 2
|
7317
|
+
# minutes.
|
7318
|
+
# Corresponds to the JSON property `rotationInterval`
|
7319
|
+
# @return [String]
|
7320
|
+
attr_accessor :rotation_interval
|
7321
|
+
|
7322
|
+
def initialize(**args)
|
7323
|
+
update!(**args)
|
7324
|
+
end
|
7325
|
+
|
7326
|
+
# Update properties of this object
|
7327
|
+
def update!(**args)
|
7328
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
7329
|
+
@rotation_interval = args[:rotation_interval] if args.key?(:rotation_interval)
|
7330
|
+
end
|
7331
|
+
end
|
7332
|
+
|
7303
7333
|
# SandboxConfig contains configurations of the sandbox to use for the node.
|
7304
7334
|
class SandboxConfig
|
7305
7335
|
include Google::Apis::Core::Hashable
|
@@ -7369,6 +7399,11 @@ module Google
|
|
7369
7399
|
attr_accessor :enabled
|
7370
7400
|
alias_method :enabled?, :enabled
|
7371
7401
|
|
7402
|
+
# RotationConfig is config for secret manager auto rotation.
|
7403
|
+
# Corresponds to the JSON property `rotationConfig`
|
7404
|
+
# @return [Google::Apis::ContainerV1::RotationConfig]
|
7405
|
+
attr_accessor :rotation_config
|
7406
|
+
|
7372
7407
|
def initialize(**args)
|
7373
7408
|
update!(**args)
|
7374
7409
|
end
|
@@ -7376,6 +7411,7 @@ module Google
|
|
7376
7411
|
# Update properties of this object
|
7377
7412
|
def update!(**args)
|
7378
7413
|
@enabled = args[:enabled] if args.key?(:enabled)
|
7414
|
+
@rotation_config = args[:rotation_config] if args.key?(:rotation_config)
|
7379
7415
|
end
|
7380
7416
|
end
|
7381
7417
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.102.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 = "
|
25
|
+
REVISION = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -988,6 +988,12 @@ module Google
|
|
988
988
|
include Google::Apis::Core::JsonObjectSupport
|
989
989
|
end
|
990
990
|
|
991
|
+
class RotationConfig
|
992
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
993
|
+
|
994
|
+
include Google::Apis::Core::JsonObjectSupport
|
995
|
+
end
|
996
|
+
|
991
997
|
class SandboxConfig
|
992
998
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
993
999
|
|
@@ -3165,6 +3171,14 @@ module Google
|
|
3165
3171
|
end
|
3166
3172
|
end
|
3167
3173
|
|
3174
|
+
class RotationConfig
|
3175
|
+
# @private
|
3176
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3177
|
+
property :enabled, as: 'enabled'
|
3178
|
+
property :rotation_interval, as: 'rotationInterval'
|
3179
|
+
end
|
3180
|
+
end
|
3181
|
+
|
3168
3182
|
class SandboxConfig
|
3169
3183
|
# @private
|
3170
3184
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3190,6 +3204,8 @@ module Google
|
|
3190
3204
|
# @private
|
3191
3205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3192
3206
|
property :enabled, as: 'enabled'
|
3207
|
+
property :rotation_config, as: 'rotationConfig', class: Google::Apis::ContainerV1::RotationConfig, decorator: Google::Apis::ContainerV1::RotationConfig::Representation
|
3208
|
+
|
3193
3209
|
end
|
3194
3210
|
end
|
3195
3211
|
|
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.
|
4
|
+
version: 0.102.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.102.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:
|