google-apis-run_v2 0.64.0 → 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72940bb54b2545571a9bc906e97d5265556ec5c242ef28b1f8ee2bac75eadccb
|
4
|
+
data.tar.gz: b8d3c18531353cd4d1f3a65bb853dc82f2d34dd46239a4cbfe8b1e5add6d9232
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52e8d1ae8aaee5d7fd9c77312c6791696944edcd95c61fd8af0efa08cde381032c79e1336c3ee27560efe6aaf90ada5731bb06bc5140c0adae161afc2059841c
|
7
|
+
data.tar.gz: daa5ed984d44dd9d41fbfb398ae5f4d1978664d9279ace70933f4c5f46a49195747e846ead3250a4802997f7ee4e3d6979e846acd8d4fd9175e883ead33cd4af
|
data/CHANGELOG.md
CHANGED
@@ -1109,6 +1109,13 @@ module Google
|
|
1109
1109
|
attr_accessor :reconciling
|
1110
1110
|
alias_method :reconciling?, :reconciling
|
1111
1111
|
|
1112
|
+
# A unique string used as a suffix for creating a new execution. The Job will
|
1113
|
+
# become ready when the execution is successfully completed. The sum of job name
|
1114
|
+
# and token length must be fewer than 63 characters.
|
1115
|
+
# Corresponds to the JSON property `runExecutionToken`
|
1116
|
+
# @return [String]
|
1117
|
+
attr_accessor :run_execution_token
|
1118
|
+
|
1112
1119
|
# Output only. Reserved for future use.
|
1113
1120
|
# Corresponds to the JSON property `satisfiesPzs`
|
1114
1121
|
# @return [Boolean]
|
@@ -1170,6 +1177,7 @@ module Google
|
|
1170
1177
|
@name = args[:name] if args.key?(:name)
|
1171
1178
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1172
1179
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1180
|
+
@run_execution_token = args[:run_execution_token] if args.key?(:run_execution_token)
|
1173
1181
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1174
1182
|
@start_execution_token = args[:start_execution_token] if args.key?(:start_execution_token)
|
1175
1183
|
@template = args[:template] if args.key?(:template)
|
@@ -3456,7 +3464,7 @@ module Google
|
|
3456
3464
|
# disk free"; some of the space will be used by the operating system and build
|
3457
3465
|
# utilities. Also note that this is the minimum disk size that will be allocated
|
3458
3466
|
# for the build -- the build may run with a larger disk than requested. At
|
3459
|
-
# present, the maximum disk size is
|
3467
|
+
# present, the maximum disk size is 4000GB; builds that request more than the
|
3460
3468
|
# maximum are rejected with an error.
|
3461
3469
|
# Corresponds to the JSON property `diskSizeGb`
|
3462
3470
|
# @return [Fixnum]
|
@@ -3768,7 +3776,7 @@ module Google
|
|
3768
3776
|
class GoogleDevtoolsCloudbuildV1ConnectedRepository
|
3769
3777
|
include Google::Apis::Core::Hashable
|
3770
3778
|
|
3771
|
-
# Directory, relative to the source root, in which to run the build.
|
3779
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
3772
3780
|
# Corresponds to the JSON property `dir`
|
3773
3781
|
# @return [String]
|
3774
3782
|
attr_accessor :dir
|
@@ -3779,8 +3787,8 @@ module Google
|
|
3779
3787
|
# @return [String]
|
3780
3788
|
attr_accessor :repository
|
3781
3789
|
|
3782
|
-
# The revision to fetch from the Git repository such as a branch, a
|
3783
|
-
# commit SHA, or any Git ref.
|
3790
|
+
# Required. The revision to fetch from the Git repository such as a branch, a
|
3791
|
+
# tag, a commit SHA, or any Git ref.
|
3784
3792
|
# Corresponds to the JSON property `revision`
|
3785
3793
|
# @return [String]
|
3786
3794
|
attr_accessor :revision
|
@@ -3932,26 +3940,26 @@ module Google
|
|
3932
3940
|
class GoogleDevtoolsCloudbuildV1GitSource
|
3933
3941
|
include Google::Apis::Core::Hashable
|
3934
3942
|
|
3935
|
-
# Directory, relative to the source root, in which to run the build.
|
3936
|
-
# be a relative path. If a step's `dir` is specified and is an
|
3937
|
-
# this value is ignored for that step's execution.
|
3943
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
3944
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
3945
|
+
# absolute path, this value is ignored for that step's execution.
|
3938
3946
|
# Corresponds to the JSON property `dir`
|
3939
3947
|
# @return [String]
|
3940
3948
|
attr_accessor :dir
|
3941
3949
|
|
3942
|
-
# The revision to fetch from the Git repository such as a branch, a
|
3943
|
-
# commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
3944
|
-
# from the Git repository; therefore make sure that the string you
|
3945
|
-
# revision` is parsable by the command. For information on string
|
3946
|
-
# accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
3950
|
+
# Optional. The revision to fetch from the Git repository such as a branch, a
|
3951
|
+
# tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
3952
|
+
# revision from the Git repository; therefore make sure that the string you
|
3953
|
+
# provide for `revision` is parsable by the command. For information on string
|
3954
|
+
# values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
3947
3955
|
# _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
|
3948
3956
|
# docs/git-fetch.
|
3949
3957
|
# Corresponds to the JSON property `revision`
|
3950
3958
|
# @return [String]
|
3951
3959
|
attr_accessor :revision
|
3952
3960
|
|
3953
|
-
# Location of the Git repo to build. This will be used as a `git
|
3954
|
-
# https://git-scm.com/docs/git-remote.
|
3961
|
+
# Required. Location of the Git repo to build. This will be used as a `git
|
3962
|
+
# remote`, see https://git-scm.com/docs/git-remote.
|
3955
3963
|
# Corresponds to the JSON property `url`
|
3956
3964
|
# @return [String]
|
3957
3965
|
attr_accessor :url
|
@@ -4196,31 +4204,32 @@ module Google
|
|
4196
4204
|
# @return [String]
|
4197
4205
|
attr_accessor :commit_sha
|
4198
4206
|
|
4199
|
-
# Directory, relative to the source root, in which to run the build.
|
4200
|
-
# be a relative path. If a step's `dir` is specified and is an
|
4201
|
-
# this value is ignored for that step's execution.
|
4207
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
4208
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
4209
|
+
# absolute path, this value is ignored for that step's execution.
|
4202
4210
|
# Corresponds to the JSON property `dir`
|
4203
4211
|
# @return [String]
|
4204
4212
|
attr_accessor :dir
|
4205
4213
|
|
4206
|
-
# Only trigger a build if the revision regex does NOT match the
|
4214
|
+
# Optional. Only trigger a build if the revision regex does NOT match the
|
4215
|
+
# revision regex.
|
4207
4216
|
# Corresponds to the JSON property `invertRegex`
|
4208
4217
|
# @return [Boolean]
|
4209
4218
|
attr_accessor :invert_regex
|
4210
4219
|
alias_method :invert_regex?, :invert_regex
|
4211
4220
|
|
4212
|
-
# ID of the project that owns the Cloud Source Repository. If omitted,
|
4213
|
-
# project ID requesting the build is assumed.
|
4221
|
+
# Optional. ID of the project that owns the Cloud Source Repository. If omitted,
|
4222
|
+
# the project ID requesting the build is assumed.
|
4214
4223
|
# Corresponds to the JSON property `projectId`
|
4215
4224
|
# @return [String]
|
4216
4225
|
attr_accessor :project_id
|
4217
4226
|
|
4218
|
-
# Name of the Cloud Source Repository.
|
4227
|
+
# Required. Name of the Cloud Source Repository.
|
4219
4228
|
# Corresponds to the JSON property `repoName`
|
4220
4229
|
# @return [String]
|
4221
4230
|
attr_accessor :repo_name
|
4222
4231
|
|
4223
|
-
# Substitutions to use in a triggered build. Should only be used with
|
4232
|
+
# Optional. Substitutions to use in a triggered build. Should only be used with
|
4224
4233
|
# RunBuildTrigger
|
4225
4234
|
# Corresponds to the JSON property `substitutions`
|
4226
4235
|
# @return [Hash<String,String>]
|
@@ -4526,14 +4535,14 @@ module Google
|
|
4526
4535
|
# @return [String]
|
4527
4536
|
attr_accessor :bucket
|
4528
4537
|
|
4529
|
-
# Cloud Storage generation for the object. If the generation is
|
4530
|
-
# latest generation will be used.
|
4538
|
+
# Optional. Cloud Storage generation for the object. If the generation is
|
4539
|
+
# omitted, the latest generation will be used.
|
4531
4540
|
# Corresponds to the JSON property `generation`
|
4532
4541
|
# @return [Fixnum]
|
4533
4542
|
attr_accessor :generation
|
4534
4543
|
|
4535
|
-
# Cloud Storage object containing the source. This object must be a
|
4536
|
-
# zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
4544
|
+
# Required. Cloud Storage object containing the source. This object must be a
|
4545
|
+
# zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
4537
4546
|
# Corresponds to the JSON property `object`
|
4538
4547
|
# @return [String]
|
4539
4548
|
attr_accessor :object
|
@@ -4562,9 +4571,9 @@ module Google
|
|
4562
4571
|
class GoogleDevtoolsCloudbuildV1StorageSourceManifest
|
4563
4572
|
include Google::Apis::Core::Hashable
|
4564
4573
|
|
4565
|
-
# Cloud Storage bucket containing the source manifest (see [Bucket
|
4566
|
-
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
4567
|
-
# ).
|
4574
|
+
# Required. Cloud Storage bucket containing the source manifest (see [Bucket
|
4575
|
+
# Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
4576
|
+
# requirements)).
|
4568
4577
|
# Corresponds to the JSON property `bucket`
|
4569
4578
|
# @return [String]
|
4570
4579
|
attr_accessor :bucket
|
@@ -4575,8 +4584,8 @@ module Google
|
|
4575
4584
|
# @return [Fixnum]
|
4576
4585
|
attr_accessor :generation
|
4577
4586
|
|
4578
|
-
# Cloud Storage object containing the source manifest. This object
|
4579
|
-
# JSON file.
|
4587
|
+
# Required. Cloud Storage object containing the source manifest. This object
|
4588
|
+
# must be a JSON file.
|
4580
4589
|
# Corresponds to the JSON property `object`
|
4581
4590
|
# @return [String]
|
4582
4591
|
attr_accessor :object
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240524"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -921,6 +921,7 @@ module Google
|
|
921
921
|
property :name, as: 'name'
|
922
922
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
923
923
|
property :reconciling, as: 'reconciling'
|
924
|
+
property :run_execution_token, as: 'runExecutionToken'
|
924
925
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
925
926
|
property :start_execution_token, as: 'startExecutionToken'
|
926
927
|
property :template, as: 'template', class: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate, decorator: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate::Representation
|
@@ -316,7 +316,7 @@ module Google
|
|
316
316
|
execute_or_queue_command(command, &block)
|
317
317
|
end
|
318
318
|
|
319
|
-
# Lists Jobs.
|
319
|
+
# Lists Jobs. Results are sorted by creation time, descending.
|
320
320
|
# @param [String] parent
|
321
321
|
# Required. The location and project to list resources on. Format: projects/`
|
322
322
|
# project`/locations/`location`, where `project` can be project id or number.
|
@@ -650,7 +650,7 @@ module Google
|
|
650
650
|
execute_or_queue_command(command, &block)
|
651
651
|
end
|
652
652
|
|
653
|
-
# Lists Executions from a Job.
|
653
|
+
# Lists Executions from a Job. Results are sorted by creation time, descending.
|
654
654
|
# @param [String] parent
|
655
655
|
# Required. The Execution from which the Executions should be listed. To list
|
656
656
|
# all Executions across Jobs, use "-" instead of Job name. Format: `projects/`
|
@@ -1077,7 +1077,7 @@ module Google
|
|
1077
1077
|
execute_or_queue_command(command, &block)
|
1078
1078
|
end
|
1079
1079
|
|
1080
|
-
# Lists Services.
|
1080
|
+
# Lists Services. Results are sorted by creation time, descending.
|
1081
1081
|
# @param [String] parent
|
1082
1082
|
# Required. The location and project to list resources on. Location must be a
|
1083
1083
|
# valid Google Cloud region, and cannot be the "-" wildcard. Format: projects/`
|
@@ -1346,7 +1346,8 @@ module Google
|
|
1346
1346
|
execute_or_queue_command(command, &block)
|
1347
1347
|
end
|
1348
1348
|
|
1349
|
-
# Lists Revisions from a given Service, or from a given location.
|
1349
|
+
# Lists Revisions from a given Service, or from a given location. Results are
|
1350
|
+
# sorted by creation time, descending.
|
1350
1351
|
# @param [String] parent
|
1351
1352
|
# Required. The Service from which the Revisions should be listed. To list all
|
1352
1353
|
# Revisions across Services, use "-" instead of Service name. Format: projects/`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-run_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.65.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-06-02 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.65.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|