google-apis-run_v1 0.72.0 → 0.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v1/classes.rb +18 -2
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 560cffc99faa8bb1c5b25d1f70d191fe8f94df9d4bff3a4a3b80bfa32a9f4477
|
4
|
+
data.tar.gz: a183e8bcb43fe7cdfd9c046b5bfac3dc6089e4c5da47bc8e5aecbd1a36d7dc5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01726c033edd523db761ccecbde9ed1b12a0323d246cbf58b608780dc43dc4778591458393d2c8e6958e111166828dfaa8b42c2875bd5e9b3427ee1f5a769239
|
7
|
+
data.tar.gz: 9baf68da75694de91e76ec3ed6652851cecdbe5ae5784645de9fb6ae88b5db634728e6edb268a47ca8453973dc882d663727fe85ad934c3450194906c77bd0bc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.73.0 (2024-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240322
|
10
|
+
|
3
11
|
### v0.72.0 (2024-03-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240303
|
@@ -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
|
@@ -3971,7 +3987,7 @@ module Google
|
|
3971
3987
|
end
|
3972
3988
|
|
3973
3989
|
# Represents a persistent volume that will be mounted using NFS. This volume
|
3974
|
-
# will be shared between all instances of the
|
3990
|
+
# will be shared between all instances of the resource and data will not be
|
3975
3991
|
# deleted when the instance is shut down.
|
3976
3992
|
class NfsVolumeSource
|
3977
3993
|
include Google::Apis::Core::Hashable
|
@@ -5717,7 +5733,7 @@ module Google
|
|
5717
5733
|
attr_accessor :name
|
5718
5734
|
|
5719
5735
|
# Represents a persistent volume that will be mounted using NFS. This volume
|
5720
|
-
# will be shared between all instances of the
|
5736
|
+
# will be shared between all instances of the resource and data will not be
|
5721
5737
|
# deleted when the instance is shut down.
|
5722
5738
|
# Corresponds to the JSON property `nfs`
|
5723
5739
|
# @return [Google::Apis::RunV1::NfsVolumeSource]
|
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|