google-apis-container_v1beta1 0.57.0 → 0.58.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94274995caa757c4019fd90f3379112237db206864b480dc1256dd9927a77c7d
|
4
|
+
data.tar.gz: 355cbf1f475c58fe890251cb21df8dcf7cbc801b5643781e813fd5a891177def
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96f48f0fc141625a9ee64e7aced7b315b3ce80cebcd8c09978f9cac1779f95d875a869adf390b160726656e74af2dcb87f8878607ec399938be6eae97b7ff1de
|
7
|
+
data.tar.gz: b12abf451226f30138f87459d91dfb48471c4d849a76516d73a4c34a87b3faeed1960fba26dc91dc567e0e14b849c9e69897d6fb1bdda1f0af987ff9f0a0c084
|
data/CHANGELOG.md
CHANGED
@@ -563,20 +563,6 @@ module Google
|
|
563
563
|
end
|
564
564
|
end
|
565
565
|
|
566
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
567
|
-
# to scale both the green and blue pools.
|
568
|
-
class AutoscaledRolloutPolicy
|
569
|
-
include Google::Apis::Core::Hashable
|
570
|
-
|
571
|
-
def initialize(**args)
|
572
|
-
update!(**args)
|
573
|
-
end
|
574
|
-
|
575
|
-
# Update properties of this object
|
576
|
-
def update!(**args)
|
577
|
-
end
|
578
|
-
end
|
579
|
-
|
580
566
|
# Deprecated.
|
581
567
|
class AvailableVersion
|
582
568
|
include Google::Apis::Core::Hashable
|
@@ -736,12 +722,6 @@ module Google
|
|
736
722
|
class BlueGreenSettings
|
737
723
|
include Google::Apis::Core::Hashable
|
738
724
|
|
739
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
740
|
-
# to scale both the green and blue pools.
|
741
|
-
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
742
|
-
# @return [Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy]
|
743
|
-
attr_accessor :autoscaled_rollout_policy
|
744
|
-
|
745
725
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
746
726
|
# be cleaned up.
|
747
727
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -759,7 +739,6 @@ module Google
|
|
759
739
|
|
760
740
|
# Update properties of this object
|
761
741
|
def update!(**args)
|
762
|
-
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
763
742
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
764
743
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
765
744
|
end
|
@@ -4211,6 +4190,14 @@ module Google
|
|
4211
4190
|
# @return [String]
|
4212
4191
|
attr_accessor :disk_type
|
4213
4192
|
|
4193
|
+
# Optional. Enable confidential storage on Hyperdisk. boot_disk_kms_key is
|
4194
|
+
# required when enable_confidential_storage is true. This is only available for
|
4195
|
+
# private preview.
|
4196
|
+
# Corresponds to the JSON property `enableConfidentialStorage`
|
4197
|
+
# @return [Boolean]
|
4198
|
+
attr_accessor :enable_confidential_storage
|
4199
|
+
alias_method :enable_confidential_storage?, :enable_confidential_storage
|
4200
|
+
|
4214
4201
|
# EphemeralStorageConfig contains configuration for the ephemeral storage
|
4215
4202
|
# filesystem.
|
4216
4203
|
# Corresponds to the JSON property `ephemeralStorageConfig`
|
@@ -4437,6 +4424,7 @@ module Google
|
|
4437
4424
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
4438
4425
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
4439
4426
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
4427
|
+
@enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
|
4440
4428
|
@ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
|
4441
4429
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
4442
4430
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
@@ -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.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230914"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,12 +94,6 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
-
class AutoscaledRolloutPolicy
|
98
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
-
|
100
|
-
include Google::Apis::Core::JsonObjectSupport
|
101
|
-
end
|
102
|
-
|
103
97
|
class AvailableVersion
|
104
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
99
|
|
@@ -1253,12 +1247,6 @@ module Google
|
|
1253
1247
|
end
|
1254
1248
|
end
|
1255
1249
|
|
1256
|
-
class AutoscaledRolloutPolicy
|
1257
|
-
# @private
|
1258
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1259
|
-
end
|
1260
|
-
end
|
1261
|
-
|
1262
1250
|
class AvailableVersion
|
1263
1251
|
# @private
|
1264
1252
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1306,8 +1294,6 @@ module Google
|
|
1306
1294
|
class BlueGreenSettings
|
1307
1295
|
# @private
|
1308
1296
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1309
|
-
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy::Representation
|
1310
|
-
|
1311
1297
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1312
1298
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
|
1313
1299
|
|
@@ -2256,6 +2242,7 @@ module Google
|
|
2256
2242
|
|
2257
2243
|
property :disk_size_gb, as: 'diskSizeGb'
|
2258
2244
|
property :disk_type, as: 'diskType'
|
2245
|
+
property :enable_confidential_storage, as: 'enableConfidentialStorage'
|
2259
2246
|
property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
|
2260
2247
|
|
2261
2248
|
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.58.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|