google-apis-container_v1beta1 0.63.0 → 0.64.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: 91ddb50328baf2820305b84e057a0fe7f120153e788aa167c71c4968b95b7612
4
- data.tar.gz: f14fb2172e7daf6250d46e7a7089753a8d663420f8daa7bbbcffe19a818a0198
3
+ metadata.gz: 1a433398e4a76a50f2f8cd68a3af36237007bf6d860389885b60ea40ab7f84f8
4
+ data.tar.gz: 2cdd4e0f5afc117fdfc873a4296154fc45478fcbe5a179b7878c9af26d285cd5
5
5
  SHA512:
6
- metadata.gz: fafefc5a379442b69a788649a206af3e5c5e3c4e0ada45be783bef9f49187bc706949d109f8f5c987915c64790924f26ec560fbd45ccc1b781675bf8fab3a434
7
- data.tar.gz: 565cad0f602f96d694f547412c5c2856eb0034d545cdb025aa06d3554487cab2605e2af6438dff99b3aa446bed312b841bb2de02c18d5257411292941ec697cd
6
+ metadata.gz: 76eb9fa1f9d135e031f74c9d47e12ebc114447561409b14308149e7b565edd4fd1798c079fed0e99b2ca667452ef88c10e3eff718a1a891a18a24e02a7c53990
7
+ data.tar.gz: 4d635c8de313b40c8f758b57517b636bdbf2ce0b9389169966e1c0bd4da5c93a33e383b2cde6326c77f53b94ac1fc992111b5ca25df87564e0e45b40a2a24d0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.63.0 (2023-12-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20231122
@@ -609,6 +609,20 @@ module Google
609
609
  end
610
610
  end
611
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
+
612
626
  # Deprecated.
613
627
  class AvailableVersion
614
628
  include Google::Apis::Core::Hashable
@@ -768,6 +782,12 @@ module Google
768
782
  class BlueGreenSettings
769
783
  include Google::Apis::Core::Hashable
770
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
+
771
791
  # Time needed after draining entire blue pool. After this period, blue pool will
772
792
  # be cleaned up.
773
793
  # Corresponds to the JSON property `nodePoolSoakDuration`
@@ -785,6 +805,7 @@ module Google
785
805
 
786
806
  # Update properties of this object
787
807
  def update!(**args)
808
+ @autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
788
809
  @node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
789
810
  @standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
790
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.63.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 = "20231122"
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
 
@@ -1293,6 +1299,12 @@ module Google
1293
1299
  end
1294
1300
  end
1295
1301
 
1302
+ class AutoscaledRolloutPolicy
1303
+ # @private
1304
+ class Representation < Google::Apis::Core::JsonRepresentation
1305
+ end
1306
+ end
1307
+
1296
1308
  class AvailableVersion
1297
1309
  # @private
1298
1310
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1340,6 +1352,8 @@ module Google
1340
1352
  class BlueGreenSettings
1341
1353
  # @private
1342
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
+
1343
1357
  property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
1344
1358
  property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
1345
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.63.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-12-10 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.63.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: []