google-apis-container_v1beta1 0.63.0 → 0.65.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: 91ddb50328baf2820305b84e057a0fe7f120153e788aa167c71c4968b95b7612
4
- data.tar.gz: f14fb2172e7daf6250d46e7a7089753a8d663420f8daa7bbbcffe19a818a0198
3
+ metadata.gz: 1309593dd9dc82daf020ee364b42cd13af85cffdb97891145d7c1396562381fa
4
+ data.tar.gz: adb069898fdcbd5d4295afe871583a853d2688bad79f48bb5cf01cafefca7923
5
5
  SHA512:
6
- metadata.gz: fafefc5a379442b69a788649a206af3e5c5e3c4e0ada45be783bef9f49187bc706949d109f8f5c987915c64790924f26ec560fbd45ccc1b781675bf8fab3a434
7
- data.tar.gz: 565cad0f602f96d694f547412c5c2856eb0034d545cdb025aa06d3554487cab2605e2af6438dff99b3aa446bed312b841bb2de02c18d5257411292941ec697cd
6
+ metadata.gz: dff926b9462564b9c5bebe2fc00416ca226ee403a6bc6fb10e8b89891bf688f73ca6c888bfddc214f0234f2151490bb043e907b9c829bbcbb5af13e0f95907ad
7
+ data.tar.gz: b9a12ef692eaa87252f782b451ac0168419bc935b7975ed28bbc1c0e82da7adcde8ad0b2bfb45ee4ac50f7bf8c5a2990d416b63c10e02d311ae6dc9a4b7902a2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.65.0 (2024-01-23)
4
+
5
+ * Regenerated using generator version 0.13.0
6
+
7
+ ### v0.64.0 (2023-12-17)
8
+
9
+ * Regenerated from discovery document revision 20231201
10
+
3
11
  ### v0.63.0 (2023-12-10)
4
12
 
5
13
  * 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.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.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
 
@@ -33,6 +33,8 @@ module Google
33
33
  #
34
34
  # @see https://cloud.google.com/container-engine/
35
35
  class ContainerService < Google::Apis::Core::BaseService
36
+ DEFAULT_ENDPOINT_TEMPLATE = "https://container.$UNIVERSE_DOMAIN$/"
37
+
36
38
  # @return [String]
37
39
  # API key. Your API key identifies your project and provides you with API access,
38
40
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -44,7 +46,7 @@ module Google
44
46
  attr_accessor :quota_user
45
47
 
46
48
  def initialize
47
- super('https://container.googleapis.com/', '',
49
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
48
50
  client_name: 'google-apis-container_v1beta1',
49
51
  client_version: Google::Apis::ContainerV1beta1::GEM_VERSION)
50
52
  @batch_path = 'batch'
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.65.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: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.65.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Kubernetes Engine API V1beta1