google-apis-run_v2 0.120.0 → 0.121.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: b2e968da6f1f8f4b3e134688dbb809e1826a61bc04052201083367ffe43653aa
4
- data.tar.gz: 0aaa893a50813d4540711110bea8947697891a61b255fe4aaedc879cf8872257
3
+ metadata.gz: 26e37c5566b2eb44e495e2ccbef58b3bf41a0a4413a946b71ff738ae78d0b628
4
+ data.tar.gz: ca3070f69f862cc03c2af0a0d6f23ccddaeb43e63528037ebc2f232a7ca6394f
5
5
  SHA512:
6
- metadata.gz: 27f2c76e8a47966083b25ea437c080a7f62047193946315d6ded2b4341fee532e647f0fa8077fd1ee49c5412a063f31050fbf547883809fb395d35f7353baad4
7
- data.tar.gz: 0da7925ad73d761036e4506597d4679345b65ed4fd2933733f84c52013fca26cbed05992524289c8f873c151595adbe01253ee3435630eb71e5bfdf52018efd4
6
+ metadata.gz: e503a046aadd938993b60c707c3f5baf9a59d01e683aa5de03e54ae9c7f1f926ef5e5b75e0c6d14fd5972bc8a85f896dc1ec55a5c896a55f859610708aa8e381
7
+ data.tar.gz: 5d0c6ef31a8f514e098f42d74f3da76836bb5fd2a15adab64cf99b4786c35c3e30b7c009f40b3ddd1a4352b58ed866ae057886146d9dfa5948b467d3d4426d3b
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
- ### v0.120.0 (2026-08-16)
3
+ ### v0.121.0 (2026-09-06)
4
4
 
5
- * Regenerated from discovery document revision 20260807
5
+ * Regenerated from discovery document revision 20260828
6
+
7
+ ### v0.120.0 (2026-08-23)
8
+
9
+ * Regenerated from discovery document revision 20260814
6
10
 
7
11
  ### v0.119.0 (2026-07-26)
8
12
 
@@ -1011,6 +1011,13 @@ module Google
1011
1011
  # @return [String]
1012
1012
  attr_accessor :client_version
1013
1013
 
1014
+ # Optional. If true, the system will start the execution within the next 12
1015
+ # hours depending on available capacity.
1016
+ # Corresponds to the JSON property `delayExecution`
1017
+ # @return [Boolean]
1018
+ attr_accessor :delay_execution
1019
+ alias_method :delay_execution?, :delay_execution
1020
+
1014
1021
  # Unstructured key value map that can be used to organize and categorize objects.
1015
1022
  # User-provided labels are shared with Google's billing system, so they can be
1016
1023
  # used to filter, or break down billing charges by team, component, environment,
@@ -1056,6 +1063,7 @@ module Google
1056
1063
  @annotations = args[:annotations] if args.key?(:annotations)
1057
1064
  @client = args[:client] if args.key?(:client)
1058
1065
  @client_version = args[:client_version] if args.key?(:client_version)
1066
+ @delay_execution = args[:delay_execution] if args.key?(:delay_execution)
1059
1067
  @labels = args[:labels] if args.key?(:labels)
1060
1068
  @parallelism = args[:parallelism] if args.key?(:parallelism)
1061
1069
  @task_count = args[:task_count] if args.key?(:task_count)
@@ -2229,6 +2237,13 @@ module Google
2229
2237
  # @return [Array<Google::Apis::RunV2::GoogleCloudRunV2ContainerOverride>]
2230
2238
  attr_accessor :container_overrides
2231
2239
 
2240
+ # Optional. If true, the system will start the execution within the next 12
2241
+ # hours depending on available capacity.
2242
+ # Corresponds to the JSON property `delayExecution`
2243
+ # @return [Boolean]
2244
+ attr_accessor :delay_execution
2245
+ alias_method :delay_execution?, :delay_execution
2246
+
2232
2247
  # Optional. The desired number of tasks the execution should run. Will replace
2233
2248
  # existing task_count value.
2234
2249
  # Corresponds to the JSON property `taskCount`
@@ -2249,6 +2264,7 @@ module Google
2249
2264
  # Update properties of this object
2250
2265
  def update!(**args)
2251
2266
  @container_overrides = args[:container_overrides] if args.key?(:container_overrides)
2267
+ @delay_execution = args[:delay_execution] if args.key?(:delay_execution)
2252
2268
  @task_count = args[:task_count] if args.key?(:task_count)
2253
2269
  @timeout = args[:timeout] if args.key?(:timeout)
2254
2270
  end
@@ -5868,6 +5884,14 @@ module Google
5868
5884
  # @return [String]
5869
5885
  attr_accessor :dest_path
5870
5886
 
5887
+ # Optional. True if remote tags should be fetched too (default false). Note:
5888
+ # when depth is 1 (default), git fetch only retrieves tags pointing to commits
5889
+ # within the shallow boundary. Set depth to -1 to fetch all historical tags.
5890
+ # Corresponds to the JSON property `fetchTags`
5891
+ # @return [Boolean]
5892
+ attr_accessor :fetch_tags
5893
+ alias_method :fetch_tags?, :fetch_tags
5894
+
5871
5895
  # Optional. True if submodules should be fetched too (default false).
5872
5896
  # Corresponds to the JSON property `recurseSubmodules`
5873
5897
  # @return [Boolean]
@@ -5892,6 +5916,7 @@ module Google
5892
5916
  def update!(**args)
5893
5917
  @depth = args[:depth] if args.key?(:depth)
5894
5918
  @dest_path = args[:dest_path] if args.key?(:dest_path)
5919
+ @fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
5895
5920
  @recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
5896
5921
  @repository = args[:repository] if args.key?(:repository)
5897
5922
  @revision = args[:revision] if args.key?(:revision)
@@ -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.120.0"
19
+ GEM_VERSION = "0.121.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260807"
25
+ REVISION = "20260828"
26
26
  end
27
27
  end
28
28
  end
@@ -1110,6 +1110,7 @@ module Google
1110
1110
  hash :annotations, as: 'annotations'
1111
1111
  property :client, as: 'client'
1112
1112
  property :client_version, as: 'clientVersion'
1113
+ property :delay_execution, as: 'delayExecution'
1113
1114
  hash :labels, as: 'labels'
1114
1115
  property :parallelism, as: 'parallelism'
1115
1116
  property :task_count, as: 'taskCount'
@@ -1413,6 +1414,7 @@ module Google
1413
1414
  class Representation < Google::Apis::Core::JsonRepresentation
1414
1415
  collection :container_overrides, as: 'containerOverrides', class: Google::Apis::RunV2::GoogleCloudRunV2ContainerOverride, decorator: Google::Apis::RunV2::GoogleCloudRunV2ContainerOverride::Representation
1415
1416
 
1417
+ property :delay_execution, as: 'delayExecution'
1416
1418
  property :task_count, as: 'taskCount'
1417
1419
  property :timeout, as: 'timeout'
1418
1420
  end
@@ -2228,6 +2230,7 @@ module Google
2228
2230
  class Representation < Google::Apis::Core::JsonRepresentation
2229
2231
  property :depth, :numeric_string => true, as: 'depth'
2230
2232
  property :dest_path, as: 'destPath'
2233
+ property :fetch_tags, as: 'fetchTags'
2231
2234
  property :recurse_submodules, as: 'recurseSubmodules'
2232
2235
  property :repository, as: 'repository', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSourceRepository, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSourceRepository::Representation
2233
2236
 
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.120.0
4
+ version: 0.121.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.120.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.121.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: