google-apis-run_v1 0.76.0 → 0.78.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 +54 -79
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +2 -17
- 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: 5a56cf0a5e01ad5d1eef1fb63e14c14d55bbcc6d899f30565e6bbaf9cc031a3a
|
4
|
+
data.tar.gz: 48f8c64209af884262726f32d25537a23846d486b21be6c30f724cea02fa5a77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cc71124efeca998e4d239ec229d726021e54ff043046a8e30affa094a3888458e03bffc2e7201065bd579f537976e58bd35be33411c448cede000819af0bb9e
|
7
|
+
data.tar.gz: f5f3d3b8ac370613b9cf262b0694dbe6313152d68106f5c10b532f528ea3199641f76333790447feadffc1ada103c65e30f8f2a90f64fab95e3343a5c8274724
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.78.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240712
|
6
|
+
|
7
|
+
### v0.77.0 (2024-06-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240524
|
10
|
+
|
3
11
|
### v0.76.0 (2024-05-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240510
|
@@ -1116,6 +1116,11 @@ module Google
|
|
1116
1116
|
class ExecutionReference
|
1117
1117
|
include Google::Apis::Core::Hashable
|
1118
1118
|
|
1119
|
+
# Optional. Status for the execution completion.
|
1120
|
+
# Corresponds to the JSON property `completionStatus`
|
1121
|
+
# @return [String]
|
1122
|
+
attr_accessor :completion_status
|
1123
|
+
|
1119
1124
|
# Optional. Completion timestamp of the execution.
|
1120
1125
|
# Corresponds to the JSON property `completionTimestamp`
|
1121
1126
|
# @return [String]
|
@@ -1126,6 +1131,11 @@ module Google
|
|
1126
1131
|
# @return [String]
|
1127
1132
|
attr_accessor :creation_timestamp
|
1128
1133
|
|
1134
|
+
# Optional. The read-only soft deletion timestamp of the execution.
|
1135
|
+
# Corresponds to the JSON property `deletionTimestamp`
|
1136
|
+
# @return [String]
|
1137
|
+
attr_accessor :deletion_timestamp
|
1138
|
+
|
1129
1139
|
# Optional. Name of the execution.
|
1130
1140
|
# Corresponds to the JSON property `name`
|
1131
1141
|
# @return [String]
|
@@ -1137,8 +1147,10 @@ module Google
|
|
1137
1147
|
|
1138
1148
|
# Update properties of this object
|
1139
1149
|
def update!(**args)
|
1150
|
+
@completion_status = args[:completion_status] if args.key?(:completion_status)
|
1140
1151
|
@completion_timestamp = args[:completion_timestamp] if args.key?(:completion_timestamp)
|
1141
1152
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
1153
|
+
@deletion_timestamp = args[:deletion_timestamp] if args.key?(:deletion_timestamp)
|
1142
1154
|
@name = args[:name] if args.key?(:name)
|
1143
1155
|
end
|
1144
1156
|
end
|
@@ -1909,7 +1921,7 @@ module Google
|
|
1909
1921
|
# disk free"; some of the space will be used by the operating system and build
|
1910
1922
|
# utilities. Also note that this is the minimum disk size that will be allocated
|
1911
1923
|
# for the build -- the build may run with a larger disk than requested. At
|
1912
|
-
# present, the maximum disk size is
|
1924
|
+
# present, the maximum disk size is 4000GB; builds that request more than the
|
1913
1925
|
# maximum are rejected with an error.
|
1914
1926
|
# Corresponds to the JSON property `diskSizeGb`
|
1915
1927
|
# @return [Fixnum]
|
@@ -2221,7 +2233,7 @@ module Google
|
|
2221
2233
|
class GoogleDevtoolsCloudbuildV1ConnectedRepository
|
2222
2234
|
include Google::Apis::Core::Hashable
|
2223
2235
|
|
2224
|
-
# Directory, relative to the source root, in which to run the build.
|
2236
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2225
2237
|
# Corresponds to the JSON property `dir`
|
2226
2238
|
# @return [String]
|
2227
2239
|
attr_accessor :dir
|
@@ -2232,8 +2244,8 @@ module Google
|
|
2232
2244
|
# @return [String]
|
2233
2245
|
attr_accessor :repository
|
2234
2246
|
|
2235
|
-
# The revision to fetch from the Git repository such as a branch, a
|
2236
|
-
# commit SHA, or any Git ref.
|
2247
|
+
# Required. The revision to fetch from the Git repository such as a branch, a
|
2248
|
+
# tag, a commit SHA, or any Git ref.
|
2237
2249
|
# Corresponds to the JSON property `revision`
|
2238
2250
|
# @return [String]
|
2239
2251
|
attr_accessor :revision
|
@@ -2328,40 +2340,6 @@ module Google
|
|
2328
2340
|
end
|
2329
2341
|
end
|
2330
2342
|
|
2331
|
-
# Represents a storage location in Cloud Storage
|
2332
|
-
class GoogleDevtoolsCloudbuildV1GcsLocation
|
2333
|
-
include Google::Apis::Core::Hashable
|
2334
|
-
|
2335
|
-
# Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
|
2336
|
-
# requirements
|
2337
|
-
# Corresponds to the JSON property `bucket`
|
2338
|
-
# @return [String]
|
2339
|
-
attr_accessor :bucket
|
2340
|
-
|
2341
|
-
# Cloud Storage generation for the object. If the generation is omitted, the
|
2342
|
-
# latest generation will be used.
|
2343
|
-
# Corresponds to the JSON property `generation`
|
2344
|
-
# @return [Fixnum]
|
2345
|
-
attr_accessor :generation
|
2346
|
-
|
2347
|
-
# Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
|
2348
|
-
# objectnames
|
2349
|
-
# Corresponds to the JSON property `object`
|
2350
|
-
# @return [String]
|
2351
|
-
attr_accessor :object
|
2352
|
-
|
2353
|
-
def initialize(**args)
|
2354
|
-
update!(**args)
|
2355
|
-
end
|
2356
|
-
|
2357
|
-
# Update properties of this object
|
2358
|
-
def update!(**args)
|
2359
|
-
@bucket = args[:bucket] if args.key?(:bucket)
|
2360
|
-
@generation = args[:generation] if args.key?(:generation)
|
2361
|
-
@object = args[:object] if args.key?(:object)
|
2362
|
-
end
|
2363
|
-
end
|
2364
|
-
|
2365
2343
|
# GitConfig is a configuration for git operations.
|
2366
2344
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
2367
2345
|
include Google::Apis::Core::Hashable
|
@@ -2385,26 +2363,26 @@ module Google
|
|
2385
2363
|
class GoogleDevtoolsCloudbuildV1GitSource
|
2386
2364
|
include Google::Apis::Core::Hashable
|
2387
2365
|
|
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.
|
2366
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2367
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
2368
|
+
# absolute path, this value is ignored for that step's execution.
|
2391
2369
|
# Corresponds to the JSON property `dir`
|
2392
2370
|
# @return [String]
|
2393
2371
|
attr_accessor :dir
|
2394
2372
|
|
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#
|
2373
|
+
# Optional. The revision to fetch from the Git repository such as a branch, a
|
2374
|
+
# tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
|
2375
|
+
# revision from the Git repository; therefore make sure that the string you
|
2376
|
+
# provide for `revision` is parsable by the command. For information on string
|
2377
|
+
# values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
|
2400
2378
|
# _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
|
2401
2379
|
# docs/git-fetch.
|
2402
2380
|
# Corresponds to the JSON property `revision`
|
2403
2381
|
# @return [String]
|
2404
2382
|
attr_accessor :revision
|
2405
2383
|
|
2406
|
-
# Location of the Git repo to build. This will be used as a `git
|
2407
|
-
# https://git-scm.com/docs/git-remote.
|
2384
|
+
# Required. Location of the Git repo to build. This will be used as a `git
|
2385
|
+
# remote`, see https://git-scm.com/docs/git-remote.
|
2408
2386
|
# Corresponds to the JSON property `url`
|
2409
2387
|
# @return [String]
|
2410
2388
|
attr_accessor :url
|
@@ -2451,17 +2429,14 @@ module Google
|
|
2451
2429
|
class GoogleDevtoolsCloudbuildV1HttpConfig
|
2452
2430
|
include Google::Apis::Core::Hashable
|
2453
2431
|
|
2454
|
-
# SecretVersion resource of the HTTP proxy URL. The
|
2455
|
-
#
|
2432
|
+
# SecretVersion resource of the HTTP proxy URL. The Service Account used in the
|
2433
|
+
# build (either the default Service Account or user-specified Service Account)
|
2434
|
+
# should have `secretmanager.versions.access` permissions on this secret. The
|
2435
|
+
# proxy URL should be in format `protocol://@]proxyhost[:port]`.
|
2456
2436
|
# Corresponds to the JSON property `proxySecretVersionName`
|
2457
2437
|
# @return [String]
|
2458
2438
|
attr_accessor :proxy_secret_version_name
|
2459
2439
|
|
2460
|
-
# Represents a storage location in Cloud Storage
|
2461
|
-
# Corresponds to the JSON property `proxySslCaInfo`
|
2462
|
-
# @return [Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation]
|
2463
|
-
attr_accessor :proxy_ssl_ca_info
|
2464
|
-
|
2465
2440
|
def initialize(**args)
|
2466
2441
|
update!(**args)
|
2467
2442
|
end
|
@@ -2469,7 +2444,6 @@ module Google
|
|
2469
2444
|
# Update properties of this object
|
2470
2445
|
def update!(**args)
|
2471
2446
|
@proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
|
2472
|
-
@proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
|
2473
2447
|
end
|
2474
2448
|
end
|
2475
2449
|
|
@@ -2649,31 +2623,32 @@ module Google
|
|
2649
2623
|
# @return [String]
|
2650
2624
|
attr_accessor :commit_sha
|
2651
2625
|
|
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.
|
2626
|
+
# Optional. Directory, relative to the source root, in which to run the build.
|
2627
|
+
# This must be a relative path. If a step's `dir` is specified and is an
|
2628
|
+
# absolute path, this value is ignored for that step's execution.
|
2655
2629
|
# Corresponds to the JSON property `dir`
|
2656
2630
|
# @return [String]
|
2657
2631
|
attr_accessor :dir
|
2658
2632
|
|
2659
|
-
# Only trigger a build if the revision regex does NOT match the
|
2633
|
+
# Optional. Only trigger a build if the revision regex does NOT match the
|
2634
|
+
# revision regex.
|
2660
2635
|
# Corresponds to the JSON property `invertRegex`
|
2661
2636
|
# @return [Boolean]
|
2662
2637
|
attr_accessor :invert_regex
|
2663
2638
|
alias_method :invert_regex?, :invert_regex
|
2664
2639
|
|
2665
|
-
# ID of the project that owns the Cloud Source Repository. If omitted,
|
2666
|
-
# project ID requesting the build is assumed.
|
2640
|
+
# Optional. ID of the project that owns the Cloud Source Repository. If omitted,
|
2641
|
+
# the project ID requesting the build is assumed.
|
2667
2642
|
# Corresponds to the JSON property `projectId`
|
2668
2643
|
# @return [String]
|
2669
2644
|
attr_accessor :project_id
|
2670
2645
|
|
2671
|
-
# Name of the Cloud Source Repository.
|
2646
|
+
# Required. Name of the Cloud Source Repository.
|
2672
2647
|
# Corresponds to the JSON property `repoName`
|
2673
2648
|
# @return [String]
|
2674
2649
|
attr_accessor :repo_name
|
2675
2650
|
|
2676
|
-
# Substitutions to use in a triggered build. Should only be used with
|
2651
|
+
# Optional. Substitutions to use in a triggered build. Should only be used with
|
2677
2652
|
# RunBuildTrigger
|
2678
2653
|
# Corresponds to the JSON property `substitutions`
|
2679
2654
|
# @return [Hash<String,String>]
|
@@ -2979,14 +2954,14 @@ module Google
|
|
2979
2954
|
# @return [String]
|
2980
2955
|
attr_accessor :bucket
|
2981
2956
|
|
2982
|
-
# Cloud Storage generation for the object. If the generation is
|
2983
|
-
# latest generation will be used.
|
2957
|
+
# Optional. Cloud Storage generation for the object. If the generation is
|
2958
|
+
# omitted, the latest generation will be used.
|
2984
2959
|
# Corresponds to the JSON property `generation`
|
2985
2960
|
# @return [Fixnum]
|
2986
2961
|
attr_accessor :generation
|
2987
2962
|
|
2988
|
-
# Cloud Storage object containing the source. This object must be a
|
2989
|
-
# zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
2963
|
+
# Required. Cloud Storage object containing the source. This object must be a
|
2964
|
+
# zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
2990
2965
|
# Corresponds to the JSON property `object`
|
2991
2966
|
# @return [String]
|
2992
2967
|
attr_accessor :object
|
@@ -3015,9 +2990,9 @@ module Google
|
|
3015
2990
|
class GoogleDevtoolsCloudbuildV1StorageSourceManifest
|
3016
2991
|
include Google::Apis::Core::Hashable
|
3017
2992
|
|
3018
|
-
# Cloud Storage bucket containing the source manifest (see [Bucket
|
3019
|
-
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
3020
|
-
# ).
|
2993
|
+
# Required. Cloud Storage bucket containing the source manifest (see [Bucket
|
2994
|
+
# Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
|
2995
|
+
# requirements)).
|
3021
2996
|
# Corresponds to the JSON property `bucket`
|
3022
2997
|
# @return [String]
|
3023
2998
|
attr_accessor :bucket
|
@@ -3028,8 +3003,8 @@ module Google
|
|
3028
3003
|
# @return [Fixnum]
|
3029
3004
|
attr_accessor :generation
|
3030
3005
|
|
3031
|
-
# Cloud Storage object containing the source manifest. This object
|
3032
|
-
# JSON file.
|
3006
|
+
# Required. Cloud Storage object containing the source manifest. This object
|
3007
|
+
# must be a JSON file.
|
3033
3008
|
# Corresponds to the JSON property `object`
|
3034
3009
|
# @return [String]
|
3035
3010
|
attr_accessor :object
|
@@ -4661,16 +4636,16 @@ module Google
|
|
4661
4636
|
include Google::Apis::Core::Hashable
|
4662
4637
|
|
4663
4638
|
# ContainerConcurrency specifies the maximum allowed in-flight (concurrent)
|
4664
|
-
# requests per container instance of the Revision. If not specified
|
4665
|
-
# 80
|
4639
|
+
# requests per container instance of the Revision. If not specified or 0,
|
4640
|
+
# defaults to 80 when requested CPU >= 1 and defaults to 1 when requested CPU <
|
4641
|
+
# 1.
|
4666
4642
|
# Corresponds to the JSON property `containerConcurrency`
|
4667
4643
|
# @return [Fixnum]
|
4668
4644
|
attr_accessor :container_concurrency
|
4669
4645
|
|
4670
|
-
# Required. Containers holds the
|
4671
|
-
#
|
4672
|
-
#
|
4673
|
-
# Run, only a single container may be provided.
|
4646
|
+
# Required. Containers holds the list which define the units of execution for
|
4647
|
+
# this Revision. In the context of a Revision, we disallow a number of fields on
|
4648
|
+
# this Container, including: name and lifecycle.
|
4674
4649
|
# Corresponds to the JSON property `containers`
|
4675
4650
|
# @return [Array<Google::Apis::RunV1::Container>]
|
4676
4651
|
attr_accessor :containers
|
@@ -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.78.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 = "20240712"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -304,12 +304,6 @@ module Google
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
305
305
|
end
|
306
306
|
|
307
|
-
class GoogleDevtoolsCloudbuildV1GcsLocation
|
308
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
-
|
310
|
-
include Google::Apis::Core::JsonObjectSupport
|
311
|
-
end
|
312
|
-
|
313
307
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
314
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
309
|
|
@@ -1099,8 +1093,10 @@ module Google
|
|
1099
1093
|
class ExecutionReference
|
1100
1094
|
# @private
|
1101
1095
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
|
+
property :completion_status, as: 'completionStatus'
|
1102
1097
|
property :completion_timestamp, as: 'completionTimestamp'
|
1103
1098
|
property :creation_timestamp, as: 'creationTimestamp'
|
1099
|
+
property :deletion_timestamp, as: 'deletionTimestamp'
|
1104
1100
|
property :name, as: 'name'
|
1105
1101
|
end
|
1106
1102
|
end
|
@@ -1377,15 +1373,6 @@ module Google
|
|
1377
1373
|
end
|
1378
1374
|
end
|
1379
1375
|
|
1380
|
-
class GoogleDevtoolsCloudbuildV1GcsLocation
|
1381
|
-
# @private
|
1382
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1383
|
-
property :bucket, as: 'bucket'
|
1384
|
-
property :generation, :numeric_string => true, as: 'generation'
|
1385
|
-
property :object, as: 'object'
|
1386
|
-
end
|
1387
|
-
end
|
1388
|
-
|
1389
1376
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
1390
1377
|
# @private
|
1391
1378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1415,8 +1402,6 @@ module Google
|
|
1415
1402
|
# @private
|
1416
1403
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1417
1404
|
property :proxy_secret_version_name, as: 'proxySecretVersionName'
|
1418
|
-
property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation::Representation
|
1419
|
-
|
1420
1405
|
end
|
1421
1406
|
end
|
1422
1407
|
|
@@ -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.78.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-07-25 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.78.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: []
|