google-apis-run_v1 0.22.0 → 0.25.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 +12 -0
- data/lib/google/apis/run_v1/classes.rb +17 -5
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +2 -0
- 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: b71b7589edadaa7eae56f236a2471e23d57080cb1cbb74e93bccf8e79e91f2a6
|
4
|
+
data.tar.gz: 031be1c035ace9c319f761061456ce235d8c3434ac7387024296437143787c31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16f2a66365f483f4d1fb401f4748bab35c9154b19c19e32d006078e741d57e165abf9eb5a04ba4d6d9292f309c3620979950fe2b7250132f0dcfa89d1c39c35d
|
7
|
+
data.tar.gz: 363038f2413986cc8ed26d79a9bcadfa1285c321e5545e4319d9d2483b58a16b5287b91852dddd0da08bca388ee2c9080fbae64374f860955eae5d036273aef7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2022-04-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220401
|
6
|
+
|
7
|
+
### v0.24.0 (2022-03-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220318
|
10
|
+
|
11
|
+
### v0.23.0 (2022-03-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220304
|
14
|
+
|
3
15
|
### v0.22.0 (2022-02-24)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220218
|
@@ -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
|
@@ -1055,6 +1055,11 @@ module Google
|
|
1055
1055
|
class ExecutionStatus
|
1056
1056
|
include Google::Apis::Core::Hashable
|
1057
1057
|
|
1058
|
+
# Optional. The number of tasks which reached phase Cancelled. +optional
|
1059
|
+
# Corresponds to the JSON property `cancelledCount`
|
1060
|
+
# @return [Fixnum]
|
1061
|
+
attr_accessor :cancelled_count
|
1062
|
+
|
1058
1063
|
# Optional. Represents time when the execution was completed. It is not
|
1059
1064
|
# guaranteed to be set in happens-before order across separate operations. It is
|
1060
1065
|
# represented in RFC3339 form and is in UTC. +optional
|
@@ -1085,6 +1090,11 @@ module Google
|
|
1085
1090
|
# @return [Fixnum]
|
1086
1091
|
attr_accessor :observed_generation
|
1087
1092
|
|
1093
|
+
# Optional. The number of tasks which have retried at least once. +optional
|
1094
|
+
# Corresponds to the JSON property `retriedCount`
|
1095
|
+
# @return [Fixnum]
|
1096
|
+
attr_accessor :retried_count
|
1097
|
+
|
1088
1098
|
# Optional. The number of actively running tasks. +optional
|
1089
1099
|
# Corresponds to the JSON property `runningCount`
|
1090
1100
|
# @return [Fixnum]
|
@@ -1108,11 +1118,13 @@ module Google
|
|
1108
1118
|
|
1109
1119
|
# Update properties of this object
|
1110
1120
|
def update!(**args)
|
1121
|
+
@cancelled_count = args[:cancelled_count] if args.key?(:cancelled_count)
|
1111
1122
|
@completion_time = args[:completion_time] if args.key?(:completion_time)
|
1112
1123
|
@conditions = args[:conditions] if args.key?(:conditions)
|
1113
1124
|
@failed_count = args[:failed_count] if args.key?(:failed_count)
|
1114
1125
|
@log_uri = args[:log_uri] if args.key?(:log_uri)
|
1115
1126
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1127
|
+
@retried_count = args[:retried_count] if args.key?(:retried_count)
|
1116
1128
|
@running_count = args[:running_count] if args.key?(:running_count)
|
1117
1129
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1118
1130
|
@succeeded_count = args[:succeeded_count] if args.key?(:succeeded_count)
|
@@ -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.25.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 = "20220401"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -791,12 +791,14 @@ module Google
|
|
791
791
|
class ExecutionStatus
|
792
792
|
# @private
|
793
793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
794
|
+
property :cancelled_count, as: 'cancelledCount'
|
794
795
|
property :completion_time, as: 'completionTime'
|
795
796
|
collection :conditions, as: 'conditions', class: Google::Apis::RunV1::GoogleCloudRunV1Condition, decorator: Google::Apis::RunV1::GoogleCloudRunV1Condition::Representation
|
796
797
|
|
797
798
|
property :failed_count, as: 'failedCount'
|
798
799
|
property :log_uri, as: 'logUri'
|
799
800
|
property :observed_generation, as: 'observedGeneration'
|
801
|
+
property :retried_count, as: 'retriedCount'
|
800
802
|
property :running_count, as: 'runningCount'
|
801
803
|
property :start_time, as: 'startTime'
|
802
804
|
property :succeeded_count, as: 'succeededCount'
|
@@ -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.25.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-11 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.25.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: []
|