google-apis-run_v1 0.73.0 → 0.74.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: acebbed4f91915c181b4a6b31c75f72d14096f76081e7430c519ba5d1f0c4de0
4
- data.tar.gz: 49b118d1016a3e20431fefa6e775f737f69e51054e19316e7bacf325ddd85f5d
3
+ metadata.gz: 560cffc99faa8bb1c5b25d1f70d191fe8f94df9d4bff3a4a3b80bfa32a9f4477
4
+ data.tar.gz: a183e8bcb43fe7cdfd9c046b5bfac3dc6089e4c5da47bc8e5aecbd1a36d7dc5a
5
5
  SHA512:
6
- metadata.gz: d992b150522c0154f239cbf04e5cf32e250cd38589a1f341264e0a4023ac0f1ba48fbafc78c352fae87a4276be1631d94c84df19194f8b43a89f2a3020fa1571
7
- data.tar.gz: e2d06f5f12b460c0fca6c8d1bf2ee11a1eda436b095f92c9af0d1dd9c9e68e717f0e442b972e6a7fecde995e650283b1cd0b88cd0244a794501ec5348436e7c0
6
+ metadata.gz: 01726c033edd523db761ccecbde9ed1b12a0323d246cbf58b608780dc43dc4778591458393d2c8e6958e111166828dfaa8b42c2875bd5e9b3427ee1f5a769239
7
+ data.tar.gz: 9baf68da75694de91e76ec3ed6652851cecdbe5ae5784645de9fb6ae88b5db634728e6edb268a47ca8453973dc882d663727fe85ad934c3450194906c77bd0bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.74.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240412
6
+
3
7
  ### v0.73.0 (2024-03-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20240322
@@ -3365,6 +3365,20 @@ module Google
3365
3365
  class JobSpec
3366
3366
  include Google::Apis::Core::Hashable
3367
3367
 
3368
+ # A unique string used as a suffix for creating a new execution. The Job will
3369
+ # become ready when the execution is successfully completed. The sum of job name
3370
+ # and token length must be fewer than 63 characters.
3371
+ # Corresponds to the JSON property `runExecutionToken`
3372
+ # @return [String]
3373
+ attr_accessor :run_execution_token
3374
+
3375
+ # A unique string used as a suffix for creating a new execution. The Job will
3376
+ # become ready when the execution is successfully started. The sum of job name
3377
+ # and token length must be fewer than 63 characters.
3378
+ # Corresponds to the JSON property `startExecutionToken`
3379
+ # @return [String]
3380
+ attr_accessor :start_execution_token
3381
+
3368
3382
  # ExecutionTemplateSpec describes the metadata and spec an Execution should have
3369
3383
  # when created from a job.
3370
3384
  # Corresponds to the JSON property `template`
@@ -3377,6 +3391,8 @@ module Google
3377
3391
 
3378
3392
  # Update properties of this object
3379
3393
  def update!(**args)
3394
+ @run_execution_token = args[:run_execution_token] if args.key?(:run_execution_token)
3395
+ @start_execution_token = args[:start_execution_token] if args.key?(:start_execution_token)
3380
3396
  @template = args[:template] if args.key?(:template)
3381
3397
  end
3382
3398
  end
@@ -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.73.0"
19
+ GEM_VERSION = "0.74.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240322"
25
+ REVISION = "20240412"
26
26
  end
27
27
  end
28
28
  end
@@ -1645,6 +1645,8 @@ module Google
1645
1645
  class JobSpec
1646
1646
  # @private
1647
1647
  class Representation < Google::Apis::Core::JsonRepresentation
1648
+ property :run_execution_token, as: 'runExecutionToken'
1649
+ property :start_execution_token, as: 'startExecutionToken'
1648
1650
  property :template, as: 'template', class: Google::Apis::RunV1::ExecutionTemplateSpec, decorator: Google::Apis::RunV1::ExecutionTemplateSpec::Representation
1649
1651
 
1650
1652
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.74.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: 2024-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-21 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.73.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.74.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
63
63
  post_install_message:
64
64
  rdoc_options: []