google-apis-run_v1 0.23.0 → 0.26.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 +12 -0
- data/lib/google/apis/run_v1/classes.rb +12 -11
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/service.rb +104 -57
- 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: cfd6c66b6e29e87895fa6e26a14c0b6e80d4349b5fcc9a577a0b4114ec6b0d10
|
4
|
+
data.tar.gz: af6f1a815c20a869b04741c6be36dcc47f2e9621bce8ce09735e639e18bbd220
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81c7659ad2da6ae3984d039399a7245ae8814b11bf0ee2196436a5c7f15d16872e6a4325d093aeab12b84a4865f1aae733b446c240f60e03b08a9a086394457f
|
7
|
+
data.tar.gz: 982404ab88222c45f56d9a16ade838fc1b0add143e2c3bd7151c1aac1ea3ab785cda71ba534e421db696dd2b3f67522d9f6d3bce916699b144703e523a8a27b6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-04-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220408
|
6
|
+
|
7
|
+
### v0.25.0 (2022-04-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220401
|
10
|
+
|
11
|
+
### v0.24.0 (2022-03-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220318
|
14
|
+
|
3
15
|
### v0.23.0 (2022-03-09)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220304
|
@@ -163,7 +163,7 @@ module Google
|
|
163
163
|
# @return [Google::Apis::RunV1::Expr]
|
164
164
|
attr_accessor :condition
|
165
165
|
|
166
|
-
# Specifies the principals requesting access for a Cloud
|
166
|
+
# Specifies the principals requesting access for a Google Cloud resource. `
|
167
167
|
# members` can have the following values: * `allUsers`: A special identifier
|
168
168
|
# that represents anyone who is on the internet; with or without a Google
|
169
169
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -1016,11 +1016,11 @@ module Google
|
|
1016
1016
|
include Google::Apis::Core::Hashable
|
1017
1017
|
|
1018
1018
|
# Optional. Specifies the maximum desired number of tasks the execution should
|
1019
|
-
# run at
|
1020
|
-
#
|
1021
|
-
#
|
1022
|
-
#
|
1023
|
-
#
|
1019
|
+
# run at given time. Must be <= task_count. When the job is run, if this field
|
1020
|
+
# is 0 or unset, the maximum possible value will be used for that execution. The
|
1021
|
+
# actual number of tasks running in steady state will be less than this number
|
1022
|
+
# when there are fewer tasks waiting to be completed remaining, i.e. when the
|
1023
|
+
# work left to do is less than max parallelism. +optional
|
1024
1024
|
# Corresponds to the JSON property `parallelism`
|
1025
1025
|
# @return [Fixnum]
|
1026
1026
|
attr_accessor :parallelism
|
@@ -2410,15 +2410,16 @@ module Google
|
|
2410
2410
|
attr_accessor :http_get
|
2411
2411
|
|
2412
2412
|
# (Optional) Number of seconds after the container has started before liveness
|
2413
|
-
# probes are initiated.
|
2414
|
-
#
|
2413
|
+
# probes are initiated. Defaults to 0 seconds. Minimum value is 0. Max value for
|
2414
|
+
# liveness probe is 3600. Max value for startup probe is 240. More info: https://
|
2415
|
+
# kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
|
2415
2416
|
# Corresponds to the JSON property `initialDelaySeconds`
|
2416
2417
|
# @return [Fixnum]
|
2417
2418
|
attr_accessor :initial_delay_seconds
|
2418
2419
|
|
2419
2420
|
# (Optional) How often (in seconds) to perform the probe. Default to 10 seconds.
|
2420
|
-
# Minimum value is 1.
|
2421
|
-
# timeout_seconds.
|
2421
|
+
# Minimum value is 1. Max value for liveness probe is 3600. Max value for
|
2422
|
+
# startup probe is 240. Must be greater or equal than timeout_seconds.
|
2422
2423
|
# Corresponds to the JSON property `periodSeconds`
|
2423
2424
|
# @return [Fixnum]
|
2424
2425
|
attr_accessor :period_seconds
|
@@ -3675,7 +3676,7 @@ module Google
|
|
3675
3676
|
include Google::Apis::Core::Hashable
|
3676
3677
|
|
3677
3678
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
3678
|
-
# (such as
|
3679
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
3679
3680
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
3680
3681
|
# Corresponds to the JSON property `permissions`
|
3681
3682
|
# @return [Array<String>]
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220408"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -179,7 +179,8 @@ module Google
|
|
179
179
|
# Create a new domain mapping.
|
180
180
|
# @param [String] parent
|
181
181
|
# The namespace in which the domain mapping should be created. For Cloud Run (
|
182
|
-
# fully managed), replace `
|
182
|
+
# fully managed), replace `namespace` with the project ID or number. It takes
|
183
|
+
# the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
183
184
|
# @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
|
184
185
|
# @param [String] dry_run
|
185
186
|
# Indicates that the server should validate the request and populate default
|
@@ -217,7 +218,8 @@ module Google
|
|
217
218
|
# Delete a domain mapping.
|
218
219
|
# @param [String] name
|
219
220
|
# The name of the domain mapping to delete. For Cloud Run (fully managed),
|
220
|
-
# replace `
|
221
|
+
# replace `namespace` with the project ID or number. It takes the form
|
222
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
221
223
|
# @param [String] api_version
|
222
224
|
# Cloud Run currently ignores this parameter.
|
223
225
|
# @param [String] dry_run
|
@@ -263,7 +265,8 @@ module Google
|
|
263
265
|
# Get information about a domain mapping.
|
264
266
|
# @param [String] name
|
265
267
|
# The name of the domain mapping to retrieve. For Cloud Run (fully managed),
|
266
|
-
# replace `
|
268
|
+
# replace `namespace` with the project ID or number. It takes the form
|
269
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
267
270
|
# @param [String] fields
|
268
271
|
# Selector specifying which fields to include in a partial response.
|
269
272
|
# @param [String] quota_user
|
@@ -294,7 +297,8 @@ module Google
|
|
294
297
|
# List domain mappings.
|
295
298
|
# @param [String] parent
|
296
299
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
297
|
-
# fully managed), replace `
|
300
|
+
# fully managed), replace `namespace` with the project ID or number. It takes
|
301
|
+
# the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
298
302
|
# @param [String] continue
|
299
303
|
# Optional. Encoded string to continue paging.
|
300
304
|
# @param [String] field_selector
|
@@ -350,8 +354,9 @@ module Google
|
|
350
354
|
|
351
355
|
# Delete an execution.
|
352
356
|
# @param [String] name
|
353
|
-
# Required. The name of the execution to delete. Replace `
|
354
|
-
# project ID or number.
|
357
|
+
# Required. The name of the execution to delete. Replace `namespace` with the
|
358
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
359
|
+
# namespaces/PROJECT_ID
|
355
360
|
# @param [String] api_version
|
356
361
|
# Optional. Cloud Run currently ignores this parameter.
|
357
362
|
# @param [String] kind
|
@@ -392,8 +397,9 @@ module Google
|
|
392
397
|
|
393
398
|
# Get information about an execution.
|
394
399
|
# @param [String] name
|
395
|
-
# Required. The name of the execution to retrieve. Replace `
|
396
|
-
#
|
400
|
+
# Required. The name of the execution to retrieve. Replace `namespace` with the
|
401
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
402
|
+
# namespaces/PROJECT_ID
|
397
403
|
# @param [String] fields
|
398
404
|
# Selector specifying which fields to include in a partial response.
|
399
405
|
# @param [String] quota_user
|
@@ -424,7 +430,8 @@ module Google
|
|
424
430
|
# List executions.
|
425
431
|
# @param [String] parent
|
426
432
|
# Required. The namespace from which the executions should be listed. Replace `
|
427
|
-
#
|
433
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
434
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
428
435
|
# @param [String] continue
|
429
436
|
# Optional. Optional encoded string to continue paging.
|
430
437
|
# @param [String] field_selector
|
@@ -480,8 +487,9 @@ module Google
|
|
480
487
|
|
481
488
|
# Create a job.
|
482
489
|
# @param [String] parent
|
483
|
-
# Required. The namespace in which the job should be created. Replace `
|
484
|
-
#
|
490
|
+
# Required. The namespace in which the job should be created. Replace `namespace`
|
491
|
+
# with the project ID or number. It takes the form namespaces/`namespace`. For
|
492
|
+
# example: namespaces/PROJECT_ID
|
485
493
|
# @param [Google::Apis::RunV1::Job] job_object
|
486
494
|
# @param [String] fields
|
487
495
|
# Selector specifying which fields to include in a partial response.
|
@@ -514,8 +522,9 @@ module Google
|
|
514
522
|
|
515
523
|
# Delete a job.
|
516
524
|
# @param [String] name
|
517
|
-
# Required. The name of the job to delete. Replace `
|
518
|
-
#
|
525
|
+
# Required. The name of the job to delete. Replace `namespace` with the project
|
526
|
+
# ID or number. It takes the form namespaces/`namespace`. For example:
|
527
|
+
# namespaces/PROJECT_ID
|
519
528
|
# @param [String] api_version
|
520
529
|
# Optional. Cloud Run currently ignores this parameter.
|
521
530
|
# @param [String] kind
|
@@ -556,8 +565,9 @@ module Google
|
|
556
565
|
|
557
566
|
# Get information about a job.
|
558
567
|
# @param [String] name
|
559
|
-
# Required. The name of the job to retrieve. Replace `
|
560
|
-
# project ID or number.
|
568
|
+
# Required. The name of the job to retrieve. Replace `namespace` with the
|
569
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
570
|
+
# namespaces/PROJECT_ID
|
561
571
|
# @param [String] fields
|
562
572
|
# Selector specifying which fields to include in a partial response.
|
563
573
|
# @param [String] quota_user
|
@@ -588,7 +598,8 @@ module Google
|
|
588
598
|
# List jobs.
|
589
599
|
# @param [String] parent
|
590
600
|
# Required. The namespace from which the jobs should be listed. Replace `
|
591
|
-
#
|
601
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
602
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
592
603
|
# @param [String] continue
|
593
604
|
# Optional. Optional encoded string to continue paging.
|
594
605
|
# @param [String] field_selector
|
@@ -647,8 +658,9 @@ module Google
|
|
647
658
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
648
659
|
# update from last read for optimistic concurrency control.
|
649
660
|
# @param [String] name
|
650
|
-
# Required. The name of the service being replaced. Replace `
|
651
|
-
#
|
661
|
+
# Required. The name of the service being replaced. Replace `namespace` with the
|
662
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
663
|
+
# namespaces/PROJECT_ID
|
652
664
|
# @param [Google::Apis::RunV1::Job] job_object
|
653
665
|
# @param [String] fields
|
654
666
|
# Selector specifying which fields to include in a partial response.
|
@@ -681,8 +693,9 @@ module Google
|
|
681
693
|
|
682
694
|
# Trigger creation of a new execution of this job.
|
683
695
|
# @param [String] name
|
684
|
-
# Required. The name of the job to run. Replace `
|
685
|
-
#
|
696
|
+
# Required. The name of the job to run. Replace `namespace` with the project ID
|
697
|
+
# or number. It takes the form namespaces/`namespace`. For example: namespaces/
|
698
|
+
# PROJECT_ID
|
686
699
|
# @param [Google::Apis::RunV1::RunJobRequest] run_job_request_object
|
687
700
|
# @param [String] fields
|
688
701
|
# Selector specifying which fields to include in a partial response.
|
@@ -716,7 +729,8 @@ module Google
|
|
716
729
|
# Delete a revision.
|
717
730
|
# @param [String] name
|
718
731
|
# The name of the revision to delete. For Cloud Run (fully managed), replace `
|
719
|
-
#
|
732
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
733
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
720
734
|
# @param [String] api_version
|
721
735
|
# Cloud Run currently ignores this parameter.
|
722
736
|
# @param [String] dry_run
|
@@ -762,7 +776,8 @@ module Google
|
|
762
776
|
# Get information about a revision.
|
763
777
|
# @param [String] name
|
764
778
|
# The name of the revision to retrieve. For Cloud Run (fully managed), replace `
|
765
|
-
#
|
779
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
780
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
766
781
|
# @param [String] fields
|
767
782
|
# Selector specifying which fields to include in a partial response.
|
768
783
|
# @param [String] quota_user
|
@@ -793,7 +808,8 @@ module Google
|
|
793
808
|
# List revisions.
|
794
809
|
# @param [String] parent
|
795
810
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
796
|
-
# managed), replace `
|
811
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
812
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
797
813
|
# @param [String] continue
|
798
814
|
# Optional. Encoded string to continue paging.
|
799
815
|
# @param [String] field_selector
|
@@ -850,7 +866,8 @@ module Google
|
|
850
866
|
# Get information about a route.
|
851
867
|
# @param [String] name
|
852
868
|
# The name of the route to retrieve. For Cloud Run (fully managed), replace `
|
853
|
-
#
|
869
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
870
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
854
871
|
# @param [String] fields
|
855
872
|
# Selector specifying which fields to include in a partial response.
|
856
873
|
# @param [String] quota_user
|
@@ -881,7 +898,8 @@ module Google
|
|
881
898
|
# List routes.
|
882
899
|
# @param [String] parent
|
883
900
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
884
|
-
# managed), replace `
|
901
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
902
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
885
903
|
# @param [String] continue
|
886
904
|
# Optional. Encoded string to continue paging.
|
887
905
|
# @param [String] field_selector
|
@@ -937,12 +955,15 @@ module Google
|
|
937
955
|
|
938
956
|
# Create a service.
|
939
957
|
# @param [String] parent
|
940
|
-
# The namespace in which the service should be created. For
|
941
|
-
# managed), replace `
|
958
|
+
# LINT.IfChange() The namespace in which the service should be created. For
|
959
|
+
# Cloud Run (fully managed), replace `namespace` with the project ID or number.
|
960
|
+
# It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
942
961
|
# @param [Google::Apis::RunV1::Service] service_object
|
943
962
|
# @param [String] dry_run
|
944
963
|
# Indicates that the server should validate the request and populate default
|
945
|
-
# values without persisting the request. Supported values: `all`
|
964
|
+
# values without persisting the request. Supported values: `all` LINT.ThenChange(
|
965
|
+
# //depot/google3/google/cloud/serverless/v1/internal_service.proto:
|
966
|
+
# create_internal_service_request)
|
946
967
|
# @param [String] fields
|
947
968
|
# Selector specifying which fields to include in a partial response.
|
948
969
|
# @param [String] quota_user
|
@@ -977,7 +998,8 @@ module Google
|
|
977
998
|
# delete the child entities like Routes, Configurations and Revisions.
|
978
999
|
# @param [String] name
|
979
1000
|
# The name of the service to delete. For Cloud Run (fully managed), replace `
|
980
|
-
#
|
1001
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1002
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
981
1003
|
# @param [String] api_version
|
982
1004
|
# Cloud Run currently ignores this parameter.
|
983
1005
|
# @param [String] dry_run
|
@@ -1023,7 +1045,8 @@ module Google
|
|
1023
1045
|
# Get information about a service.
|
1024
1046
|
# @param [String] name
|
1025
1047
|
# The name of the service to retrieve. For Cloud Run (fully managed), replace `
|
1026
|
-
#
|
1048
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1049
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1027
1050
|
# @param [String] fields
|
1028
1051
|
# Selector specifying which fields to include in a partial response.
|
1029
1052
|
# @param [String] quota_user
|
@@ -1054,7 +1077,8 @@ module Google
|
|
1054
1077
|
# List services.
|
1055
1078
|
# @param [String] parent
|
1056
1079
|
# The namespace from which the services should be listed. For Cloud Run (fully
|
1057
|
-
# managed), replace `
|
1080
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
1081
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1058
1082
|
# @param [String] continue
|
1059
1083
|
# Optional. Encoded string to continue paging.
|
1060
1084
|
# @param [String] field_selector
|
@@ -1113,12 +1137,15 @@ module Google
|
|
1113
1137
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
1114
1138
|
# update from last read for optimistic concurrency control.
|
1115
1139
|
# @param [String] name
|
1116
|
-
# The name of the service being replaced. For Cloud Run (fully
|
1117
|
-
# `
|
1140
|
+
# LINT.IfChange() The name of the service being replaced. For Cloud Run (fully
|
1141
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
1142
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1118
1143
|
# @param [Google::Apis::RunV1::Service] service_object
|
1119
1144
|
# @param [String] dry_run
|
1120
1145
|
# Indicates that the server should validate the request and populate default
|
1121
|
-
# values without persisting the request. Supported values: `all`
|
1146
|
+
# values without persisting the request. Supported values: `all` LINT.ThenChange(
|
1147
|
+
# //depot/google3/google/cloud/serverless/v1/internal_service.proto:
|
1148
|
+
# replace_internal_service_request)
|
1122
1149
|
# @param [String] fields
|
1123
1150
|
# Selector specifying which fields to include in a partial response.
|
1124
1151
|
# @param [String] quota_user
|
@@ -1151,8 +1178,9 @@ module Google
|
|
1151
1178
|
|
1152
1179
|
# Get information about a task.
|
1153
1180
|
# @param [String] name
|
1154
|
-
# Required. The name of the task to retrieve. Replace `
|
1155
|
-
# project ID or number.
|
1181
|
+
# Required. The name of the task to retrieve. Replace `namespace` with the
|
1182
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
1183
|
+
# namespaces/PROJECT_ID
|
1156
1184
|
# @param [String] fields
|
1157
1185
|
# Selector specifying which fields to include in a partial response.
|
1158
1186
|
# @param [String] quota_user
|
@@ -1183,7 +1211,8 @@ module Google
|
|
1183
1211
|
# List tasks.
|
1184
1212
|
# @param [String] parent
|
1185
1213
|
# Required. The namespace from which the tasks should be listed. Replace `
|
1186
|
-
#
|
1214
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1215
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1187
1216
|
# @param [String] continue
|
1188
1217
|
# Optional. Optional encoded string to continue paging.
|
1189
1218
|
# @param [String] field_selector
|
@@ -1278,8 +1307,8 @@ module Google
|
|
1278
1307
|
# The resource that owns the locations collection, if applicable.
|
1279
1308
|
# @param [String] filter
|
1280
1309
|
# A filter to narrow down results to a preferred subset. The filtering language
|
1281
|
-
# accepts strings like "displayName=tokyo"
|
1282
|
-
# AIP-160](https://google.aip.dev/160).
|
1310
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
1311
|
+
# in [AIP-160](https://google.aip.dev/160).
|
1283
1312
|
# @param [Fixnum] page_size
|
1284
1313
|
# The maximum number of results to return. If not set, the service selects a
|
1285
1314
|
# default.
|
@@ -1443,7 +1472,8 @@ module Google
|
|
1443
1472
|
# Create a new domain mapping.
|
1444
1473
|
# @param [String] parent
|
1445
1474
|
# The namespace in which the domain mapping should be created. For Cloud Run (
|
1446
|
-
# fully managed), replace `
|
1475
|
+
# fully managed), replace `namespace` with the project ID or number. It takes
|
1476
|
+
# the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1447
1477
|
# @param [Google::Apis::RunV1::DomainMapping] domain_mapping_object
|
1448
1478
|
# @param [String] dry_run
|
1449
1479
|
# Indicates that the server should validate the request and populate default
|
@@ -1481,7 +1511,8 @@ module Google
|
|
1481
1511
|
# Delete a domain mapping.
|
1482
1512
|
# @param [String] name
|
1483
1513
|
# The name of the domain mapping to delete. For Cloud Run (fully managed),
|
1484
|
-
# replace `
|
1514
|
+
# replace `namespace` with the project ID or number. It takes the form
|
1515
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1485
1516
|
# @param [String] api_version
|
1486
1517
|
# Cloud Run currently ignores this parameter.
|
1487
1518
|
# @param [String] dry_run
|
@@ -1527,7 +1558,8 @@ module Google
|
|
1527
1558
|
# Get information about a domain mapping.
|
1528
1559
|
# @param [String] name
|
1529
1560
|
# The name of the domain mapping to retrieve. For Cloud Run (fully managed),
|
1530
|
-
# replace `
|
1561
|
+
# replace `namespace` with the project ID or number. It takes the form
|
1562
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1531
1563
|
# @param [String] fields
|
1532
1564
|
# Selector specifying which fields to include in a partial response.
|
1533
1565
|
# @param [String] quota_user
|
@@ -1558,7 +1590,8 @@ module Google
|
|
1558
1590
|
# List domain mappings.
|
1559
1591
|
# @param [String] parent
|
1560
1592
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
1561
|
-
# fully managed), replace `
|
1593
|
+
# fully managed), replace `namespace` with the project ID or number. It takes
|
1594
|
+
# the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1562
1595
|
# @param [String] continue
|
1563
1596
|
# Optional. Encoded string to continue paging.
|
1564
1597
|
# @param [String] field_selector
|
@@ -1729,7 +1762,8 @@ module Google
|
|
1729
1762
|
# Delete a revision.
|
1730
1763
|
# @param [String] name
|
1731
1764
|
# The name of the revision to delete. For Cloud Run (fully managed), replace `
|
1732
|
-
#
|
1765
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1766
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1733
1767
|
# @param [String] api_version
|
1734
1768
|
# Cloud Run currently ignores this parameter.
|
1735
1769
|
# @param [String] dry_run
|
@@ -1775,7 +1809,8 @@ module Google
|
|
1775
1809
|
# Get information about a revision.
|
1776
1810
|
# @param [String] name
|
1777
1811
|
# The name of the revision to retrieve. For Cloud Run (fully managed), replace `
|
1778
|
-
#
|
1812
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1813
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1779
1814
|
# @param [String] fields
|
1780
1815
|
# Selector specifying which fields to include in a partial response.
|
1781
1816
|
# @param [String] quota_user
|
@@ -1806,7 +1841,8 @@ module Google
|
|
1806
1841
|
# List revisions.
|
1807
1842
|
# @param [String] parent
|
1808
1843
|
# The namespace from which the revisions should be listed. For Cloud Run (fully
|
1809
|
-
# managed), replace `
|
1844
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
1845
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1810
1846
|
# @param [String] continue
|
1811
1847
|
# Optional. Encoded string to continue paging.
|
1812
1848
|
# @param [String] field_selector
|
@@ -1863,7 +1899,8 @@ module Google
|
|
1863
1899
|
# Get information about a route.
|
1864
1900
|
# @param [String] name
|
1865
1901
|
# The name of the route to retrieve. For Cloud Run (fully managed), replace `
|
1866
|
-
#
|
1902
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
1903
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1867
1904
|
# @param [String] fields
|
1868
1905
|
# Selector specifying which fields to include in a partial response.
|
1869
1906
|
# @param [String] quota_user
|
@@ -1894,7 +1931,8 @@ module Google
|
|
1894
1931
|
# List routes.
|
1895
1932
|
# @param [String] parent
|
1896
1933
|
# The namespace from which the routes should be listed. For Cloud Run (fully
|
1897
|
-
# managed), replace `
|
1934
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
1935
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1898
1936
|
# @param [String] continue
|
1899
1937
|
# Optional. Encoded string to continue paging.
|
1900
1938
|
# @param [String] field_selector
|
@@ -1950,12 +1988,15 @@ module Google
|
|
1950
1988
|
|
1951
1989
|
# Create a service.
|
1952
1990
|
# @param [String] parent
|
1953
|
-
# The namespace in which the service should be created. For
|
1954
|
-
# managed), replace `
|
1991
|
+
# LINT.IfChange() The namespace in which the service should be created. For
|
1992
|
+
# Cloud Run (fully managed), replace `namespace` with the project ID or number.
|
1993
|
+
# It takes the form namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1955
1994
|
# @param [Google::Apis::RunV1::Service] service_object
|
1956
1995
|
# @param [String] dry_run
|
1957
1996
|
# Indicates that the server should validate the request and populate default
|
1958
|
-
# values without persisting the request. Supported values: `all`
|
1997
|
+
# values without persisting the request. Supported values: `all` LINT.ThenChange(
|
1998
|
+
# //depot/google3/google/cloud/serverless/v1/internal_service.proto:
|
1999
|
+
# create_internal_service_request)
|
1959
2000
|
# @param [String] fields
|
1960
2001
|
# Selector specifying which fields to include in a partial response.
|
1961
2002
|
# @param [String] quota_user
|
@@ -1990,7 +2031,8 @@ module Google
|
|
1990
2031
|
# delete the child entities like Routes, Configurations and Revisions.
|
1991
2032
|
# @param [String] name
|
1992
2033
|
# The name of the service to delete. For Cloud Run (fully managed), replace `
|
1993
|
-
#
|
2034
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
2035
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1994
2036
|
# @param [String] api_version
|
1995
2037
|
# Cloud Run currently ignores this parameter.
|
1996
2038
|
# @param [String] dry_run
|
@@ -2036,7 +2078,8 @@ module Google
|
|
2036
2078
|
# Get information about a service.
|
2037
2079
|
# @param [String] name
|
2038
2080
|
# The name of the service to retrieve. For Cloud Run (fully managed), replace `
|
2039
|
-
#
|
2081
|
+
# namespace` with the project ID or number. It takes the form namespaces/`
|
2082
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
2040
2083
|
# @param [String] fields
|
2041
2084
|
# Selector specifying which fields to include in a partial response.
|
2042
2085
|
# @param [String] quota_user
|
@@ -2111,7 +2154,8 @@ module Google
|
|
2111
2154
|
# List services.
|
2112
2155
|
# @param [String] parent
|
2113
2156
|
# The namespace from which the services should be listed. For Cloud Run (fully
|
2114
|
-
# managed), replace `
|
2157
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
2158
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
2115
2159
|
# @param [String] continue
|
2116
2160
|
# Optional. Encoded string to continue paging.
|
2117
2161
|
# @param [String] field_selector
|
@@ -2170,12 +2214,15 @@ module Google
|
|
2170
2214
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
2171
2215
|
# update from last read for optimistic concurrency control.
|
2172
2216
|
# @param [String] name
|
2173
|
-
# The name of the service being replaced. For Cloud Run (fully
|
2174
|
-
# `
|
2217
|
+
# LINT.IfChange() The name of the service being replaced. For Cloud Run (fully
|
2218
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
2219
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
2175
2220
|
# @param [Google::Apis::RunV1::Service] service_object
|
2176
2221
|
# @param [String] dry_run
|
2177
2222
|
# Indicates that the server should validate the request and populate default
|
2178
|
-
# values without persisting the request. Supported values: `all`
|
2223
|
+
# values without persisting the request. Supported values: `all` LINT.ThenChange(
|
2224
|
+
# //depot/google3/google/cloud/serverless/v1/internal_service.proto:
|
2225
|
+
# replace_internal_service_request)
|
2179
2226
|
# @param [String] fields
|
2180
2227
|
# Selector specifying which fields to include in a partial response.
|
2181
2228
|
# @param [String] quota_user
|
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.26.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: 2022-
|
11
|
+
date: 2022-04-18 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.26.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: []
|