google-apis-container_v1beta1 0.62.0 → 0.64.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: 9ee53300e4a7e86d5dade99bbd08269fea806a02f037493b22166186e2a35418
4
- data.tar.gz: 2d3332ef38ede37b1957a7bda1a9cd31e3ea6c841659c6a03e77e08fd5f6dbe0
3
+ metadata.gz: 1a433398e4a76a50f2f8cd68a3af36237007bf6d860389885b60ea40ab7f84f8
4
+ data.tar.gz: 2cdd4e0f5afc117fdfc873a4296154fc45478fcbe5a179b7878c9af26d285cd5
5
5
  SHA512:
6
- metadata.gz: 1731604f80888a4db4513b868a1831be64149499e037d934e3eebfbf603a08bc710509f7490f96d021a17a913eb681ba0b09b75d18b34a6356c9bb2af2560d86
7
- data.tar.gz: d8a21afb2a3c1a6ae0ddbbb6d9f8aa0ea5aa5fac984d0606380c79bd0f64fa9bf9f529a6765071c883949cfdd8d56ffba2d4adda2fa692cc1f1190dfb671c28f
6
+ metadata.gz: 76eb9fa1f9d135e031f74c9d47e12ebc114447561409b14308149e7b565edd4fd1798c079fed0e99b2ca667452ef88c10e3eff718a1a891a18a24e02a7c53990
7
+ data.tar.gz: 4d635c8de313b40c8f758b57517b636bdbf2ce0b9389169966e1c0bd4da5c93a33e383b2cde6326c77f53b94ac1fc992111b5ca25df87564e0e45b40a2a24d0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.64.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231201
6
+
7
+ ### v0.63.0 (2023-12-10)
8
+
9
+ * Regenerated from discovery document revision 20231122
10
+
3
11
  ### v0.62.0 (2023-11-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20231030
@@ -269,6 +269,12 @@ module Google
269
269
  attr_accessor :enable_metrics
270
270
  alias_method :enable_metrics?, :enable_metrics
271
271
 
272
+ # Enable Relay component
273
+ # Corresponds to the JSON property `enableRelay`
274
+ # @return [Boolean]
275
+ attr_accessor :enable_relay
276
+ alias_method :enable_relay?, :enable_relay
277
+
272
278
  # Method used to make Relay available
273
279
  # Corresponds to the JSON property `relayMode`
274
280
  # @return [String]
@@ -281,6 +287,7 @@ module Google
281
287
  # Update properties of this object
282
288
  def update!(**args)
283
289
  @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
290
+ @enable_relay = args[:enable_relay] if args.key?(:enable_relay)
284
291
  @relay_mode = args[:relay_mode] if args.key?(:relay_mode)
285
292
  end
286
293
  end
@@ -602,6 +609,20 @@ module Google
602
609
  end
603
610
  end
604
611
 
612
+ # Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
613
+ # to scale both the green and blue pools.
614
+ class AutoscaledRolloutPolicy
615
+ include Google::Apis::Core::Hashable
616
+
617
+ def initialize(**args)
618
+ update!(**args)
619
+ end
620
+
621
+ # Update properties of this object
622
+ def update!(**args)
623
+ end
624
+ end
625
+
605
626
  # Deprecated.
606
627
  class AvailableVersion
607
628
  include Google::Apis::Core::Hashable
@@ -761,6 +782,12 @@ module Google
761
782
  class BlueGreenSettings
762
783
  include Google::Apis::Core::Hashable
763
784
 
785
+ # Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
786
+ # to scale both the green and blue pools.
787
+ # Corresponds to the JSON property `autoscaledRolloutPolicy`
788
+ # @return [Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy]
789
+ attr_accessor :autoscaled_rollout_policy
790
+
764
791
  # Time needed after draining entire blue pool. After this period, blue pool will
765
792
  # be cleaned up.
766
793
  # Corresponds to the JSON property `nodePoolSoakDuration`
@@ -778,6 +805,7 @@ module Google
778
805
 
779
806
  # Update properties of this object
780
807
  def update!(**args)
808
+ @autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
781
809
  @node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
782
810
  @standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
783
811
  end
@@ -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.62.0"
19
+ GEM_VERSION = "0.64.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 = "20231030"
25
+ REVISION = "20231201"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,12 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class AutoscaledRolloutPolicy
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class AvailableVersion
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
@@ -1215,6 +1221,7 @@ module Google
1215
1221
  # @private
1216
1222
  class Representation < Google::Apis::Core::JsonRepresentation
1217
1223
  property :enable_metrics, as: 'enableMetrics'
1224
+ property :enable_relay, as: 'enableRelay'
1218
1225
  property :relay_mode, as: 'relayMode'
1219
1226
  end
1220
1227
  end
@@ -1292,6 +1299,12 @@ module Google
1292
1299
  end
1293
1300
  end
1294
1301
 
1302
+ class AutoscaledRolloutPolicy
1303
+ # @private
1304
+ class Representation < Google::Apis::Core::JsonRepresentation
1305
+ end
1306
+ end
1307
+
1295
1308
  class AvailableVersion
1296
1309
  # @private
1297
1310
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1339,6 +1352,8 @@ module Google
1339
1352
  class BlueGreenSettings
1340
1353
  # @private
1341
1354
  class Representation < Google::Apis::Core::JsonRepresentation
1355
+ property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy::Representation
1356
+
1342
1357
  property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
1343
1358
  property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
1344
1359
 
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.62.0
4
+ version: 0.64.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-19 00:00:00.000000000 Z
11
+ date: 2023-12-17 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.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.64.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: []