google-apis-run_v1 0.103.0 → 0.104.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: 5f687823c91598834dc7f992fac386745f20c312c48976cc43e137014ae9fc1d
4
- data.tar.gz: baa5d86ebc05d810ddca3e147d50e5c57fa7fbb90f1d5fe19516df77aebb52a2
3
+ metadata.gz: f0caf2b9fd3171261bb1c925aae3300eb3ada609777546961f8ce6ee06765256
4
+ data.tar.gz: b47e42cbd927944755cd55bbcc737cda96c6d92ffb9e05e2672f6cd8c6e903a7
5
5
  SHA512:
6
- metadata.gz: 65d5603b3f57c0d1486851ea3c6ef3807596ab73910f16107489a246129cb9793cb7ee5aeb3942a00a0b551ea85ebda15b9c685e51c232cd83c4a0cfcb4a9752
7
- data.tar.gz: b296f266552e4c7fbbb9a7982c0901864ee492553fb41c0839406bd698982a6f3cc14457e3bf2fffa98afeffb88fa6d55e54d5ba9fcad82927cda8568d208226
6
+ metadata.gz: 014a833e1d8d2fd17976c901b3c32d0feb9f4e153606d2cecd103ad34449dc600df1c5aed7440400d70617bcc0b6e15ce94596354b2f9b3d44a15f128f9e9067
7
+ data.tar.gz: 7e121c4e9e49cfe83572e82850e34816794435af28bb93000e699a3a6c563b16224d85bdccc8deadbe73e2156771f832269f6737f57a2fef6a12282539d93a7e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.104.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260427
6
+
3
7
  ### v0.103.0 (2026-04-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260403
@@ -2169,6 +2169,11 @@ module Google
2169
2169
  # @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan]
2170
2170
  attr_accessor :pull_timing
2171
2171
 
2172
+ # Declaration of results for this build step.
2173
+ # Corresponds to the JSON property `results`
2174
+ # @return [Array<Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1StepResult>]
2175
+ attr_accessor :results
2176
+
2172
2177
  # A shell script to be executed in the step. When script is provided, the user
2173
2178
  # cannot specify the entrypoint or args.
2174
2179
  # Corresponds to the JSON property `script`
@@ -2235,6 +2240,7 @@ module Google
2235
2240
  @id = args[:id] if args.key?(:id)
2236
2241
  @name = args[:name] if args.key?(:name)
2237
2242
  @pull_timing = args[:pull_timing] if args.key?(:pull_timing)
2243
+ @results = args[:results] if args.key?(:results)
2238
2244
  @script = args[:script] if args.key?(:script)
2239
2245
  @secret_env = args[:secret_env] if args.key?(:secret_env)
2240
2246
  @status = args[:status] if args.key?(:status)
@@ -2245,6 +2251,25 @@ module Google
2245
2251
  end
2246
2252
  end
2247
2253
 
2254
+ # Results for a build step.
2255
+ class GoogleDevtoolsCloudbuildV1BuildStepResults
2256
+ include Google::Apis::Core::Hashable
2257
+
2258
+ # Results for a build step.
2259
+ # Corresponds to the JSON property `results`
2260
+ # @return [Hash<String,String>]
2261
+ attr_accessor :results
2262
+
2263
+ def initialize(**args)
2264
+ update!(**args)
2265
+ end
2266
+
2267
+ # Update properties of this object
2268
+ def update!(**args)
2269
+ @results = args[:results] if args.key?(:results)
2270
+ end
2271
+ end
2272
+
2248
2273
  # An image built by the pipeline.
2249
2274
  class GoogleDevtoolsCloudbuildV1BuiltImage
2250
2275
  include Google::Apis::Core::Hashable
@@ -3030,6 +3055,11 @@ module Google
3030
3055
  # @return [Array<String>]
3031
3056
  attr_accessor :build_step_outputs
3032
3057
 
3058
+ # Results for build steps. step_id ->
3059
+ # Corresponds to the JSON property `buildStepResults`
3060
+ # @return [Hash<String,Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuildStepResults>]
3061
+ attr_accessor :build_step_results
3062
+
3033
3063
  # Output only. Generic artifacts uploaded to Artifact Registry at the end of the
3034
3064
  # build.
3035
3065
  # Corresponds to the JSON property `genericArtifacts`
@@ -3078,6 +3108,7 @@ module Google
3078
3108
  @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
3079
3109
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
3080
3110
  @build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
3111
+ @build_step_results = args[:build_step_results] if args.key?(:build_step_results)
3081
3112
  @generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
3082
3113
  @go_modules = args[:go_modules] if args.key?(:go_modules)
3083
3114
  @images = args[:images] if args.key?(:images)
@@ -3281,6 +3312,37 @@ module Google
3281
3312
  end
3282
3313
  end
3283
3314
 
3315
+ # StepResult is the declaration of a result for a build step.
3316
+ class GoogleDevtoolsCloudbuildV1StepResult
3317
+ include Google::Apis::Core::Hashable
3318
+
3319
+ # Optional. The content of the attestation to be generated.
3320
+ # Corresponds to the JSON property `attestationContent`
3321
+ # @return [String]
3322
+ attr_accessor :attestation_content
3323
+
3324
+ # Optional. The type of attestation to be generated.
3325
+ # Corresponds to the JSON property `attestationType`
3326
+ # @return [String]
3327
+ attr_accessor :attestation_type
3328
+
3329
+ # Required. The name of the result.
3330
+ # Corresponds to the JSON property `name`
3331
+ # @return [String]
3332
+ attr_accessor :name
3333
+
3334
+ def initialize(**args)
3335
+ update!(**args)
3336
+ end
3337
+
3338
+ # Update properties of this object
3339
+ def update!(**args)
3340
+ @attestation_content = args[:attestation_content] if args.key?(:attestation_content)
3341
+ @attestation_type = args[:attestation_type] if args.key?(:attestation_type)
3342
+ @name = args[:name] if args.key?(:name)
3343
+ end
3344
+ end
3345
+
3284
3346
  # Location of the source in an archive file in Cloud Storage.
3285
3347
  class GoogleDevtoolsCloudbuildV1StorageSource
3286
3348
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV1
18
18
  # Version of the google-apis-run_v1 gem
19
- GEM_VERSION = "0.103.0"
19
+ GEM_VERSION = "0.104.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 = "20260403"
25
+ REVISION = "20260427"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GoogleDevtoolsCloudbuildV1BuildStepResults
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class GoogleDevtoolsCloudbuildV1BuiltImage
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -442,6 +448,12 @@ module Google
442
448
  include Google::Apis::Core::JsonObjectSupport
443
449
  end
444
450
 
451
+ class GoogleDevtoolsCloudbuildV1StepResult
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
445
457
  class GoogleDevtoolsCloudbuildV1StorageSource
446
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
447
459
 
@@ -1447,6 +1459,8 @@ module Google
1447
1459
  property :name, as: 'name'
1448
1460
  property :pull_timing, as: 'pullTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
1449
1461
 
1462
+ collection :results, as: 'results', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1StepResult::Representation
1463
+
1450
1464
  property :script, as: 'script'
1451
1465
  collection :secret_env, as: 'secretEnv'
1452
1466
  property :status, as: 'status'
@@ -1459,6 +1473,13 @@ module Google
1459
1473
  end
1460
1474
  end
1461
1475
 
1476
+ class GoogleDevtoolsCloudbuildV1BuildStepResults
1477
+ # @private
1478
+ class Representation < Google::Apis::Core::JsonRepresentation
1479
+ hash :results, as: 'results'
1480
+ end
1481
+ end
1482
+
1462
1483
  class GoogleDevtoolsCloudbuildV1BuiltImage
1463
1484
  # @private
1464
1485
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1670,6 +1691,8 @@ module Google
1670
1691
 
1671
1692
  collection :build_step_images, as: 'buildStepImages'
1672
1693
  collection :build_step_outputs, as: 'buildStepOutputs'
1694
+ hash :build_step_results, as: 'buildStepResults', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1BuildStepResults::Representation
1695
+
1673
1696
  collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
1674
1697
 
1675
1698
  collection :go_modules, as: 'goModules', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
@@ -1748,6 +1771,15 @@ module Google
1748
1771
  end
1749
1772
  end
1750
1773
 
1774
+ class GoogleDevtoolsCloudbuildV1StepResult
1775
+ # @private
1776
+ class Representation < Google::Apis::Core::JsonRepresentation
1777
+ property :attestation_content, as: 'attestationContent'
1778
+ property :attestation_type, as: 'attestationType'
1779
+ property :name, as: 'name'
1780
+ end
1781
+ end
1782
+
1751
1783
  class GoogleDevtoolsCloudbuildV1StorageSource
1752
1784
  # @private
1753
1785
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1808,8 +1808,8 @@ module Google
1808
1808
  end
1809
1809
 
1810
1810
  # Lists information about the supported locations for this service. This method
1811
- # lists locations based on the resource scope provided in the [
1812
- # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
1811
+ # lists locations based on the resource scope provided in the
1812
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
1813
1813
  # the method lists the public locations available to all projects. * **Project-
1814
1814
  # specific locations**: If `name` follows the format `projects/`project``, the
1815
1815
  # method lists locations visible to that specific project. This includes public,
@@ -1820,8 +1820,8 @@ module Google
1820
1820
  # @param [String] name
1821
1821
  # The resource that owns the locations collection, if applicable.
1822
1822
  # @param [Array<String>, String] extra_location_types
1823
- # Optional. Do not use this field. It is unsupported and is ignored unless
1824
- # explicitly documented otherwise. This is primarily for internal usage.
1823
+ # Optional. Do not use this field unless explicitly documented otherwise. This
1824
+ # is primarily for internal usage.
1825
1825
  # @param [String] filter
1826
1826
  # A filter to narrow down results to a preferred subset. The filtering language
1827
1827
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.103.0
4
+ version: 0.104.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.103.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.104.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
62
62
  rdoc_options: []
63
63
  require_paths: