google-apis-run_v2 0.106.0 → 0.107.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: 820a8f2910f48b9e7b6a6a1515f01a8813c3826165136450fd37d260102c5ecc
4
- data.tar.gz: be88d3e774fa8f12ac91a250fe26847ca588697198f84658502b3e1957ab812a
3
+ metadata.gz: 89c90ce6131bc89a87db1a5473d41b2e57b95e0dbfeefab9c0e47e6bd4ab8549
4
+ data.tar.gz: 54d6d79958b98939c3d54c1a2d45584f0cf9070734294fc71cdcdba1c6ace469
5
5
  SHA512:
6
- metadata.gz: aeee9177d67f3f0072740d1e012557c9320c67c8d5b313ae18df1f67e86591d99228a6b1432af30017b1b4c104bf23b194b1b24cfef18fb529b925de35014d67
7
- data.tar.gz: 3e03b18d076f124c320af319fd7b5aa9231831dd31017b917fee2a0862c1d47ea1d0193e415ba5f2c4371cf47b224e9d85fc1e68f220c9fc29b5ab8e67a1152e
6
+ metadata.gz: 35ff513c0423eb8e742d7fe66fa5403ad72d1af7bcc483c15c73b1742955a34c0bec5398c6cd375649720d51bc224d585f48589c9da25914a09130093f2c9f3f
7
+ data.tar.gz: 179968d7190fe6f121ce282e5464db461d3f068e0ce8e7f68a035bacc1f5178c194f809309499c59ae845eed99a291d5a67f78eeaf3267f7ecdcd5fa293b8215
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.107.0 (2026-02-15)
4
+
5
+ * Regenerated from discovery document revision 20260206
6
+
3
7
  ### v0.106.0 (2026-02-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20260130
@@ -1484,6 +1484,12 @@ module Google
1484
1484
  # @return [Google::Apis::RunV2::GoogleCloudRunV2Condition]
1485
1485
  attr_accessor :terminal_condition
1486
1486
 
1487
+ # Optional. Duration the instance may be active before the system will shut it
1488
+ # down.
1489
+ # Corresponds to the JSON property `timeout`
1490
+ # @return [String]
1491
+ attr_accessor :timeout
1492
+
1487
1493
  # Output only. Server assigned unique identifier for the trigger. The value is a
1488
1494
  # UUID4 string and guaranteed to remain unchanged until the resource is deleted.
1489
1495
  # Corresponds to the JSON property `uid`
@@ -1549,6 +1555,7 @@ module Google
1549
1555
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1550
1556
  @service_account = args[:service_account] if args.key?(:service_account)
1551
1557
  @terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
1558
+ @timeout = args[:timeout] if args.key?(:timeout)
1552
1559
  @uid = args[:uid] if args.key?(:uid)
1553
1560
  @update_time = args[:update_time] if args.key?(:update_time)
1554
1561
  @urls = args[:urls] if args.key?(:urls)
@@ -2337,7 +2344,7 @@ module Google
2337
2344
  # @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Condition>]
2338
2345
  attr_accessor :conditions
2339
2346
 
2340
- # Holds the single container that defines the unit of execution for this
2347
+ # Containers holds the list which define the units of execution for this
2341
2348
  # Revision.
2342
2349
  # Corresponds to the JSON property `containers`
2343
2350
  # @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Container>]
@@ -2579,6 +2586,17 @@ module Google
2579
2586
  class GoogleCloudRunV2RevisionScaling
2580
2587
  include Google::Apis::Core::Hashable
2581
2588
 
2589
+ # Optional. Determines a threshold for concurrency utilization before scaling
2590
+ # begins.
2591
+ # Corresponds to the JSON property `concurrencyUtilization`
2592
+ # @return [Float]
2593
+ attr_accessor :concurrency_utilization
2594
+
2595
+ # Optional. Determines a threshold for CPU utilization before scaling begins.
2596
+ # Corresponds to the JSON property `cpuUtilization`
2597
+ # @return [Float]
2598
+ attr_accessor :cpu_utilization
2599
+
2582
2600
  # Optional. Maximum number of serving instances that this resource should have.
2583
2601
  # When unspecified, the field is set to the server default value of 100. For
2584
2602
  # more information see https://cloud.google.com/run/docs/configuring/max-
@@ -2598,6 +2616,8 @@ module Google
2598
2616
 
2599
2617
  # Update properties of this object
2600
2618
  def update!(**args)
2619
+ @concurrency_utilization = args[:concurrency_utilization] if args.key?(:concurrency_utilization)
2620
+ @cpu_utilization = args[:cpu_utilization] if args.key?(:cpu_utilization)
2601
2621
  @max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
2602
2622
  @min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
2603
2623
  end
@@ -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.106.0"
19
+ GEM_VERSION = "0.107.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260130"
25
+ REVISION = "20260206"
26
26
  end
27
27
  end
28
28
  end
@@ -1167,6 +1167,7 @@ module Google
1167
1167
  property :service_account, as: 'serviceAccount'
1168
1168
  property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::Representation
1169
1169
 
1170
+ property :timeout, as: 'timeout'
1170
1171
  property :uid, as: 'uid'
1171
1172
  property :update_time, as: 'updateTime'
1172
1173
  collection :urls, as: 'urls'
@@ -1424,6 +1425,8 @@ module Google
1424
1425
  class GoogleCloudRunV2RevisionScaling
1425
1426
  # @private
1426
1427
  class Representation < Google::Apis::Core::JsonRepresentation
1428
+ property :concurrency_utilization, as: 'concurrencyUtilization'
1429
+ property :cpu_utilization, as: 'cpuUtilization'
1427
1430
  property :max_instance_count, as: 'maxInstanceCount'
1428
1431
  property :min_instance_count, as: 'minInstanceCount'
1429
1432
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.106.0
4
+ version: 0.107.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.106.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.107.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
62
62
  rdoc_options: []
63
63
  require_paths: