google-apis-run_v2 0.52.0 → 0.54.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: d76577a1cfa117a21f30d5bbf09f6fceed46816c14b542f340e0c21f516d8523
4
- data.tar.gz: 82aecd615b26f1db720c9cff562c20ec93f7d0ce73f24abb12ed583f75d45681
3
+ metadata.gz: 8a36971483ecfdb91799b4d2c0fda6680c6f04e19cbef68b85573f46ea008b2f
4
+ data.tar.gz: 7a9ef54ad06eee39d04f42a19e699422a45531e55071243c91e30525ccd32b84
5
5
  SHA512:
6
- metadata.gz: 18514062a115aa72de7f9dca523e4bd77b6a10ac5a1350c534ef71d1fdeb19aee5790e86d2f13852c9aa857c4f7d422f0fb2fd3ce72c134abf087f0cca3dc61b
7
- data.tar.gz: a0dca15b057a27a75e23bd36bb316849daa3ef5b300c06c247754c6ea01e8f1e6249887fe067bd5209277bf167e4737ea30a188ca998846b966c40adb7902072
6
+ metadata.gz: af1ced855b3a78d8985de793a9168f20089a3f50e6879457038fffa57a89ae870c2ff16f99e389da7f3fca12515d7d87387cc71fa4571985e678a73c09e917f2
7
+ data.tar.gz: b7a83b03de6e74a32734eeaa1063abb7995b594806eb5ab7571e3f6fa539690ea7c65e50a1d5304444435232f348ac58e24f998ec44242bdc8944a8d4c2fa07c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.54.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231203
6
+
7
+ ### v0.53.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231112
10
+
3
11
  ### v0.52.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231022
@@ -1296,17 +1296,19 @@ module Google
1296
1296
  class GoogleCloudRunV2ResourceRequirements
1297
1297
  include Google::Apis::Core::Hashable
1298
1298
 
1299
- # Determines whether CPU should be throttled or not outside of requests.
1299
+ # Determines whether CPU is only allocated during requests (true by default).
1300
+ # However, if ResourceRequirements is set, the caller must explicitly set this
1301
+ # field to true to preserve the default behavior.
1300
1302
  # Corresponds to the JSON property `cpuIdle`
1301
1303
  # @return [Boolean]
1302
1304
  attr_accessor :cpu_idle
1303
1305
  alias_method :cpu_idle?, :cpu_idle
1304
1306
 
1305
- # Only ´memory´ and 'cpu' are supported. Notes: * The only supported values for
1306
- # CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory.
1307
- # For more information, go to https://cloud.google.com/run/docs/configuring/cpu.
1308
- # * For supported 'memory' values and syntax, go to https://cloud.google.com/run/
1309
- # docs/configuring/memory-limits
1307
+ # Only `memory` and `cpu` keys in the map are supported. Notes: * The only
1308
+ # supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at
1309
+ # least 2Gi of memory. For more information, go to https://cloud.google.com/run/
1310
+ # docs/configuring/cpu. * For supported 'memory' values and syntax, go to https:/
1311
+ # /cloud.google.com/run/docs/configuring/memory-limits
1310
1312
  # Corresponds to the JSON property `limits`
1311
1313
  # @return [Hash<String,String>]
1312
1314
  attr_accessor :limits
@@ -2016,8 +2018,8 @@ module Google
2016
2018
  attr_accessor :satisfies_pzs
2017
2019
  alias_method :satisfies_pzs?, :satisfies_pzs
2018
2020
 
2019
- # Scaling settings that apply to the service as a whole rather than the
2020
- # individual revision.
2021
+ # Scaling settings applied at the service level rather than at the revision
2022
+ # level.
2021
2023
  # Corresponds to the JSON property `scaling`
2022
2024
  # @return [Google::Apis::RunV2::GoogleCloudRunV2ServiceScaling]
2023
2025
  attr_accessor :scaling
@@ -2103,14 +2105,14 @@ module Google
2103
2105
  end
2104
2106
  end
2105
2107
 
2106
- # Scaling settings that apply to the service as a whole rather than the
2107
- # individual revision.
2108
+ # Scaling settings applied at the service level rather than at the revision
2109
+ # level.
2108
2110
  class GoogleCloudRunV2ServiceScaling
2109
2111
  include Google::Apis::Core::Hashable
2110
2112
 
2111
- # total min instances for the service. This number of instances will be divide
2112
- # among all revisions with specified traffic based on the percent of traffic
2113
- # they are receiving. (ALPHA)
2113
+ # total min instances for the service. This number of instances is divided among
2114
+ # all revisions with specified traffic based on the percent of traffic they are
2115
+ # receiving. (ALPHA)
2114
2116
  # Corresponds to the JSON property `minInstanceCount`
2115
2117
  # @return [Fixnum]
2116
2118
  attr_accessor :min_instance_count
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV2
18
18
  # Version of the google-apis-run_v2 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.54.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 = "20231022"
25
+ REVISION = "20231203"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.54.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-10-29 00:00:00.000000000 Z
11
+ date: 2023-12-10 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-run_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.54.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
63
63
  post_install_message:
64
64
  rdoc_options: []