google-apis-run_v1 0.76.0 → 0.77.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/run_v1/classes.rb +32 -31
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/service.rb +12 -10
- 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: 490bb1c2ae86ac84633014e532eb2281e8512ddb627ca19170934aebba510b6b
|
|
4
|
+
data.tar.gz: 65dfad17a90ec803c8c10ac5e1d02a7768797001dd12304b9a762278f948d112
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d94b2cab47fbf7a3a42c9c929e813c3165ec5726e3a2dbeb62fa2e7cf88004583c8075b1b0b26857a689eafda36cb706ac683bfe03f36debab71c20d3a330617
|
|
7
|
+
data.tar.gz: a9302b2c86dd303fe689f52852f32b30538f57e1dae9c05339a73ddc661d42ec4b5df074efc9ab0842d6ac22874f6f49b6812bdf3759e2a463a968f53ae6719a
|
data/CHANGELOG.md
CHANGED
|
@@ -1909,7 +1909,7 @@ module Google
|
|
|
1909
1909
|
# disk free"; some of the space will be used by the operating system and build
|
|
1910
1910
|
# utilities. Also note that this is the minimum disk size that will be allocated
|
|
1911
1911
|
# for the build -- the build may run with a larger disk than requested. At
|
|
1912
|
-
# present, the maximum disk size is
|
|
1912
|
+
# present, the maximum disk size is 4000GB; builds that request more than the
|
|
1913
1913
|
# maximum are rejected with an error.
|
|
1914
1914
|
# Corresponds to the JSON property `diskSizeGb`
|
|
1915
1915
|
# @return [Fixnum]
|
|
@@ -2221,7 +2221,7 @@ module Google
|
|
|
2221
2221
|
class GoogleDevtoolsCloudbuildV1ConnectedRepository
|
|
2222
2222
|
include Google::Apis::Core::Hashable
|
|
2223
2223
|
|
|
2224
|
-
# Directory, relative to the source root, in which to run the build.
|
|
2224
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
|
2225
2225
|
# Corresponds to the JSON property `dir`
|
|
2226
2226
|
# @return [String]
|
|
2227
2227
|
attr_accessor :dir
|
|
@@ -2232,8 +2232,8 @@ module Google
|
|
|
2232
2232
|
# @return [String]
|
|
2233
2233
|
attr_accessor :repository
|
|
2234
2234
|
|
|
2235
|
-
# The revision to fetch from the Git repository such as a branch, a
|
|
2236
|
-
# commit SHA, or any Git ref.
|
|
2235
|
+
# Required. The revision to fetch from the Git repository such as a branch, a
|
|
2236
|
+
# tag, a commit SHA, or any Git ref.
|
|
2237
2237
|
# Corresponds to the JSON property `revision`
|
|
2238
2238
|
# @return [String]
|
|
2239
2239
|
attr_accessor :revision
|
|
@@ -2385,26 +2385,26 @@ module Google
|
|
|
2385
2385
|
class GoogleDevtoolsCloudbuildV1GitSource
|
|
2386
2386
|
include Google::Apis::Core::Hashable
|
|
2387
2387
|
|
|
2388
|
-
# Directory, relative to the source root, in which to run the build.
|
|
2389
|
-
# be a relative path. If a step's `dir` is specified and is an
|
|
2390
|
-
# this value is ignored for that step's execution.
|
|
2388
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
|
2389
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
|
2390
|
+
# absolute path, this value is ignored for that step's execution.
|
|
2391
2391
|
# Corresponds to the JSON property `dir`
|
|
2392
2392
|
# @return [String]
|
|
2393
2393
|
attr_accessor :dir
|
|
2394
2394
|
|
|
2395
|
-
# The revision to fetch from the Git repository such as a branch, a
|
|
2396
|
-
# commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
|
2397
|
-
# from the Git repository; therefore make sure that the string you
|
|
2398
|
-
# revision` is parsable by the command. For information on string
|
|
2399
|
-
# accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
|
2395
|
+
# Optional. The revision to fetch from the Git repository such as a branch, a
|
|
2396
|
+
# tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
|
2397
|
+
# revision from the Git repository; therefore make sure that the string you
|
|
2398
|
+
# provide for `revision` is parsable by the command. For information on string
|
|
2399
|
+
# values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
|
2400
2400
|
# _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
|
|
2401
2401
|
# docs/git-fetch.
|
|
2402
2402
|
# Corresponds to the JSON property `revision`
|
|
2403
2403
|
# @return [String]
|
|
2404
2404
|
attr_accessor :revision
|
|
2405
2405
|
|
|
2406
|
-
# Location of the Git repo to build. This will be used as a `git
|
|
2407
|
-
# https://git-scm.com/docs/git-remote.
|
|
2406
|
+
# Required. Location of the Git repo to build. This will be used as a `git
|
|
2407
|
+
# remote`, see https://git-scm.com/docs/git-remote.
|
|
2408
2408
|
# Corresponds to the JSON property `url`
|
|
2409
2409
|
# @return [String]
|
|
2410
2410
|
attr_accessor :url
|
|
@@ -2649,31 +2649,32 @@ module Google
|
|
|
2649
2649
|
# @return [String]
|
|
2650
2650
|
attr_accessor :commit_sha
|
|
2651
2651
|
|
|
2652
|
-
# Directory, relative to the source root, in which to run the build.
|
|
2653
|
-
# be a relative path. If a step's `dir` is specified and is an
|
|
2654
|
-
# this value is ignored for that step's execution.
|
|
2652
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
|
2653
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
|
2654
|
+
# absolute path, this value is ignored for that step's execution.
|
|
2655
2655
|
# Corresponds to the JSON property `dir`
|
|
2656
2656
|
# @return [String]
|
|
2657
2657
|
attr_accessor :dir
|
|
2658
2658
|
|
|
2659
|
-
# Only trigger a build if the revision regex does NOT match the
|
|
2659
|
+
# Optional. Only trigger a build if the revision regex does NOT match the
|
|
2660
|
+
# revision regex.
|
|
2660
2661
|
# Corresponds to the JSON property `invertRegex`
|
|
2661
2662
|
# @return [Boolean]
|
|
2662
2663
|
attr_accessor :invert_regex
|
|
2663
2664
|
alias_method :invert_regex?, :invert_regex
|
|
2664
2665
|
|
|
2665
|
-
# ID of the project that owns the Cloud Source Repository. If omitted,
|
|
2666
|
-
# project ID requesting the build is assumed.
|
|
2666
|
+
# Optional. ID of the project that owns the Cloud Source Repository. If omitted,
|
|
2667
|
+
# the project ID requesting the build is assumed.
|
|
2667
2668
|
# Corresponds to the JSON property `projectId`
|
|
2668
2669
|
# @return [String]
|
|
2669
2670
|
attr_accessor :project_id
|
|
2670
2671
|
|
|
2671
|
-
# Name of the Cloud Source Repository.
|
|
2672
|
+
# Required. Name of the Cloud Source Repository.
|
|
2672
2673
|
# Corresponds to the JSON property `repoName`
|
|
2673
2674
|
# @return [String]
|
|
2674
2675
|
attr_accessor :repo_name
|
|
2675
2676
|
|
|
2676
|
-
# Substitutions to use in a triggered build. Should only be used with
|
|
2677
|
+
# Optional. Substitutions to use in a triggered build. Should only be used with
|
|
2677
2678
|
# RunBuildTrigger
|
|
2678
2679
|
# Corresponds to the JSON property `substitutions`
|
|
2679
2680
|
# @return [Hash<String,String>]
|
|
@@ -2979,14 +2980,14 @@ module Google
|
|
|
2979
2980
|
# @return [String]
|
|
2980
2981
|
attr_accessor :bucket
|
|
2981
2982
|
|
|
2982
|
-
# Cloud Storage generation for the object. If the generation is
|
|
2983
|
-
# latest generation will be used.
|
|
2983
|
+
# Optional. Cloud Storage generation for the object. If the generation is
|
|
2984
|
+
# omitted, the latest generation will be used.
|
|
2984
2985
|
# Corresponds to the JSON property `generation`
|
|
2985
2986
|
# @return [Fixnum]
|
|
2986
2987
|
attr_accessor :generation
|
|
2987
2988
|
|
|
2988
|
-
# Cloud Storage object containing the source. This object must be a
|
|
2989
|
-
# zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
|
2989
|
+
# Required. Cloud Storage object containing the source. This object must be a
|
|
2990
|
+
# zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
|
2990
2991
|
# Corresponds to the JSON property `object`
|
|
2991
2992
|
# @return [String]
|
|
2992
2993
|
attr_accessor :object
|
|
@@ -3015,9 +3016,9 @@ module Google
|
|
|
3015
3016
|
class GoogleDevtoolsCloudbuildV1StorageSourceManifest
|
|
3016
3017
|
include Google::Apis::Core::Hashable
|
|
3017
3018
|
|
|
3018
|
-
# Cloud Storage bucket containing the source manifest (see [Bucket
|
|
3019
|
-
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
|
3020
|
-
# ).
|
|
3019
|
+
# Required. Cloud Storage bucket containing the source manifest (see [Bucket
|
|
3020
|
+
# Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
|
3021
|
+
# requirements)).
|
|
3021
3022
|
# Corresponds to the JSON property `bucket`
|
|
3022
3023
|
# @return [String]
|
|
3023
3024
|
attr_accessor :bucket
|
|
@@ -3028,8 +3029,8 @@ module Google
|
|
|
3028
3029
|
# @return [Fixnum]
|
|
3029
3030
|
attr_accessor :generation
|
|
3030
3031
|
|
|
3031
|
-
# Cloud Storage object containing the source manifest. This object
|
|
3032
|
-
# JSON file.
|
|
3032
|
+
# Required. Cloud Storage object containing the source manifest. This object
|
|
3033
|
+
# must be a JSON file.
|
|
3033
3034
|
# Corresponds to the JSON property `object`
|
|
3034
3035
|
# @return [String]
|
|
3035
3036
|
attr_accessor :object
|
|
@@ -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.77.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
|
|
@@ -121,7 +121,7 @@ module Google
|
|
|
121
121
|
execute_or_queue_command(command, &block)
|
|
122
122
|
end
|
|
123
123
|
|
|
124
|
-
# List configurations.
|
|
124
|
+
# List configurations. Results are sorted by creation time, descending.
|
|
125
125
|
# @param [String] parent
|
|
126
126
|
# The namespace from which the configurations should be listed. For Cloud Run,
|
|
127
127
|
# replace `namespace_id` with the project ID or number.
|
|
@@ -459,7 +459,7 @@ module Google
|
|
|
459
459
|
execute_or_queue_command(command, &block)
|
|
460
460
|
end
|
|
461
461
|
|
|
462
|
-
# List executions.
|
|
462
|
+
# List executions. Results are sorted by creation time, descending.
|
|
463
463
|
# @param [String] parent
|
|
464
464
|
# Required. The namespace from which the executions should be listed. Replace `
|
|
465
465
|
# namespace` with the project ID or number. It takes the form namespaces/`
|
|
@@ -623,7 +623,7 @@ module Google
|
|
|
623
623
|
execute_or_queue_command(command, &block)
|
|
624
624
|
end
|
|
625
625
|
|
|
626
|
-
# List jobs.
|
|
626
|
+
# List jobs. Results are sorted by creation time, descending.
|
|
627
627
|
# @param [String] parent
|
|
628
628
|
# Required. The namespace from which the jobs should be listed. Replace `
|
|
629
629
|
# namespace` with the project ID or number. It takes the form namespaces/`
|
|
@@ -828,7 +828,7 @@ module Google
|
|
|
828
828
|
execute_or_queue_command(command, &block)
|
|
829
829
|
end
|
|
830
830
|
|
|
831
|
-
# List revisions.
|
|
831
|
+
# List revisions. Results are sorted by creation time, descending.
|
|
832
832
|
# @param [String] parent
|
|
833
833
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
|
834
834
|
# managed), replace `namespace` with the project ID or number. It takes the form
|
|
@@ -918,7 +918,7 @@ module Google
|
|
|
918
918
|
execute_or_queue_command(command, &block)
|
|
919
919
|
end
|
|
920
920
|
|
|
921
|
-
# List routes.
|
|
921
|
+
# List routes. Results are sorted by creation time, descending.
|
|
922
922
|
# @param [String] parent
|
|
923
923
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
|
924
924
|
# managed), replace `namespace` with the project ID or number. It takes the form
|
|
@@ -1099,7 +1099,8 @@ module Google
|
|
|
1099
1099
|
execute_or_queue_command(command, &block)
|
|
1100
1100
|
end
|
|
1101
1101
|
|
|
1102
|
-
# Lists services for the given project and region.
|
|
1102
|
+
# Lists services for the given project and region. Results are sorted by
|
|
1103
|
+
# creation time, descending.
|
|
1103
1104
|
# @param [String] parent
|
|
1104
1105
|
# Required. The parent from where the resources should be listed. In Cloud Run,
|
|
1105
1106
|
# it may be one of the following: * ``project_id_or_number`` * `namespaces/`
|
|
@@ -1441,7 +1442,7 @@ module Google
|
|
|
1441
1442
|
execute_or_queue_command(command, &block)
|
|
1442
1443
|
end
|
|
1443
1444
|
|
|
1444
|
-
# List configurations.
|
|
1445
|
+
# List configurations. Results are sorted by creation time, descending.
|
|
1445
1446
|
# @param [String] parent
|
|
1446
1447
|
# The namespace from which the configurations should be listed. For Cloud Run,
|
|
1447
1448
|
# replace `namespace_id` with the project ID or number.
|
|
@@ -2015,7 +2016,7 @@ module Google
|
|
|
2015
2016
|
execute_or_queue_command(command, &block)
|
|
2016
2017
|
end
|
|
2017
2018
|
|
|
2018
|
-
# List revisions.
|
|
2019
|
+
# List revisions. Results are sorted by creation time, descending.
|
|
2019
2020
|
# @param [String] parent
|
|
2020
2021
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
|
2021
2022
|
# managed), replace `namespace` with the project ID or number. It takes the form
|
|
@@ -2105,7 +2106,7 @@ module Google
|
|
|
2105
2106
|
execute_or_queue_command(command, &block)
|
|
2106
2107
|
end
|
|
2107
2108
|
|
|
2108
|
-
# List routes.
|
|
2109
|
+
# List routes. Results are sorted by creation time, descending.
|
|
2109
2110
|
# @param [String] parent
|
|
2110
2111
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
|
2111
2112
|
# managed), replace `namespace` with the project ID or number. It takes the form
|
|
@@ -2331,7 +2332,8 @@ module Google
|
|
|
2331
2332
|
execute_or_queue_command(command, &block)
|
|
2332
2333
|
end
|
|
2333
2334
|
|
|
2334
|
-
# Lists services for the given project and region.
|
|
2335
|
+
# Lists services for the given project and region. Results are sorted by
|
|
2336
|
+
# creation time, descending.
|
|
2335
2337
|
# @param [String] parent
|
|
2336
2338
|
# Required. The parent from where the resources should be listed. In Cloud Run,
|
|
2337
2339
|
# it may be one of the following: * ``project_id_or_number`` * `namespaces/`
|
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.77.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_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.77.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: []
|