google-apis-run_v1 0.33.0 → 0.36.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 +401 -472
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +12 -0
- data/lib/google/apis/run_v1/service.rb +145 -131
- metadata +3 -3
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class CancelExecutionRequest
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class ConfigMapEnvSource
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -568,6 +574,12 @@ module Google
|
|
568
574
|
end
|
569
575
|
end
|
570
576
|
|
577
|
+
class CancelExecutionRequest
|
578
|
+
# @private
|
579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
571
583
|
class ConfigMapEnvSource
|
572
584
|
# @private
|
573
585
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -90,8 +90,8 @@ module Google
|
|
90
90
|
|
91
91
|
# Get information about a configuration.
|
92
92
|
# @param [String] name
|
93
|
-
# The name of the configuration to retrieve. For Cloud Run
|
94
|
-
#
|
93
|
+
# The name of the configuration to retrieve. For Cloud Run, replace `
|
94
|
+
# namespace_id` with the project ID or number.
|
95
95
|
# @param [String] fields
|
96
96
|
# Selector specifying which fields to include in a partial response.
|
97
97
|
# @param [String] quota_user
|
@@ -121,27 +121,23 @@ module Google
|
|
121
121
|
|
122
122
|
# List configurations.
|
123
123
|
# @param [String] parent
|
124
|
-
# The namespace from which the configurations should be listed. For Cloud Run
|
125
|
-
#
|
124
|
+
# The namespace from which the configurations should be listed. For Cloud Run,
|
125
|
+
# replace `namespace_id` with the project ID or number.
|
126
126
|
# @param [String] continue
|
127
127
|
# Optional. Encoded string to continue paging.
|
128
128
|
# @param [String] field_selector
|
129
|
-
#
|
130
|
-
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
131
|
-
# used by Cloud Run.
|
129
|
+
# Not supported by Cloud Run.
|
132
130
|
# @param [Boolean] include_uninitialized
|
133
|
-
# Not
|
131
|
+
# Not supported by Cloud Run.
|
134
132
|
# @param [String] label_selector
|
135
133
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
136
134
|
# exists, in, and notIn.
|
137
135
|
# @param [Fixnum] limit
|
138
|
-
# Optional. The maximum number of records that should be returned.
|
136
|
+
# Optional. The maximum number of the records that should be returned.
|
139
137
|
# @param [String] resource_version
|
140
|
-
#
|
141
|
-
# start. Not currently used by Cloud Run.
|
138
|
+
# Not supported by Cloud Run.
|
142
139
|
# @param [Boolean] watch
|
143
|
-
#
|
144
|
-
# Not currently used by Cloud Run.
|
140
|
+
# Not supported by Cloud Run.
|
145
141
|
# @param [String] fields
|
146
142
|
# Selector specifying which fields to include in a partial response.
|
147
143
|
# @param [String] quota_user
|
@@ -230,7 +226,7 @@ module Google
|
|
230
226
|
# @param [String] propagation_policy
|
231
227
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
232
228
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
233
|
-
#
|
229
|
+
# architecture/garbage-collection/ for more information.
|
234
230
|
# @param [String] fields
|
235
231
|
# Selector specifying which fields to include in a partial response.
|
236
232
|
# @param [String] quota_user
|
@@ -294,7 +290,7 @@ module Google
|
|
294
290
|
execute_or_queue_command(command, &block)
|
295
291
|
end
|
296
292
|
|
297
|
-
# List domain mappings.
|
293
|
+
# List all domain mappings.
|
298
294
|
# @param [String] parent
|
299
295
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
300
296
|
# fully managed), replace `namespace` with the project ID or number. It takes
|
@@ -352,6 +348,41 @@ module Google
|
|
352
348
|
execute_or_queue_command(command, &block)
|
353
349
|
end
|
354
350
|
|
351
|
+
# Cancel an execution.
|
352
|
+
# @param [String] name
|
353
|
+
# Required. The name of the execution to cancel. Replace `namespace` with the
|
354
|
+
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
355
|
+
# namespaces/PROJECT_ID
|
356
|
+
# @param [Google::Apis::RunV1::CancelExecutionRequest] cancel_execution_request_object
|
357
|
+
# @param [String] fields
|
358
|
+
# Selector specifying which fields to include in a partial response.
|
359
|
+
# @param [String] quota_user
|
360
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
361
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
362
|
+
# @param [Google::Apis::RequestOptions] options
|
363
|
+
# Request-specific options
|
364
|
+
#
|
365
|
+
# @yield [result, err] Result & error if block supplied
|
366
|
+
# @yieldparam result [Google::Apis::RunV1::Execution] parsed result object
|
367
|
+
# @yieldparam err [StandardError] error object if request failed
|
368
|
+
#
|
369
|
+
# @return [Google::Apis::RunV1::Execution]
|
370
|
+
#
|
371
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
372
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
373
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
374
|
+
def cancel_execution(name, cancel_execution_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
375
|
+
command = make_simple_command(:post, 'apis/run.googleapis.com/v1/{+name}:cancel', options)
|
376
|
+
command.request_representation = Google::Apis::RunV1::CancelExecutionRequest::Representation
|
377
|
+
command.request_object = cancel_execution_request_object
|
378
|
+
command.response_representation = Google::Apis::RunV1::Execution::Representation
|
379
|
+
command.response_class = Google::Apis::RunV1::Execution
|
380
|
+
command.params['name'] = name unless name.nil?
|
381
|
+
command.query['fields'] = fields unless fields.nil?
|
382
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
383
|
+
execute_or_queue_command(command, &block)
|
384
|
+
end
|
385
|
+
|
355
386
|
# Delete an execution.
|
356
387
|
# @param [String] name
|
357
388
|
# Required. The name of the execution to delete. Replace `namespace` with the
|
@@ -363,8 +394,9 @@ module Google
|
|
363
394
|
# Optional. Cloud Run currently ignores this parameter.
|
364
395
|
# @param [String] propagation_policy
|
365
396
|
# Optional. Specifies the propagation policy of delete. Cloud Run currently
|
366
|
-
# ignores this setting, and deletes in the background. Please see
|
367
|
-
# docs/concepts/workloads/controllers/garbage-collection/ for more
|
397
|
+
# ignores this setting, and deletes in the background. Please see http://
|
398
|
+
# kubernetes.io/docs/concepts/workloads/controllers/garbage-collection/ for more
|
399
|
+
# information.
|
368
400
|
# @param [String] fields
|
369
401
|
# Selector specifying which fields to include in a partial response.
|
370
402
|
# @param [String] quota_user
|
@@ -435,22 +467,18 @@ module Google
|
|
435
467
|
# @param [String] continue
|
436
468
|
# Optional. Optional encoded string to continue paging.
|
437
469
|
# @param [String] field_selector
|
438
|
-
# Optional.
|
439
|
-
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
440
|
-
# currently used by Cloud Run.
|
470
|
+
# Optional. Not supported by Cloud Run.
|
441
471
|
# @param [Boolean] include_uninitialized
|
442
|
-
# Optional. Not
|
472
|
+
# Optional. Not supported by Cloud Run.
|
443
473
|
# @param [String] label_selector
|
444
474
|
# Optional. Allows to filter resources based on a label. Supported operations
|
445
475
|
# are =, !=, exists, in, and notIn.
|
446
476
|
# @param [Fixnum] limit
|
447
|
-
# Optional. The maximum number of records that should be returned.
|
477
|
+
# Optional. The maximum number of the records that should be returned.
|
448
478
|
# @param [String] resource_version
|
449
|
-
# Optional.
|
450
|
-
# should start. Not currently used by Cloud Run.
|
479
|
+
# Optional. Not supported by Cloud Run.
|
451
480
|
# @param [Boolean] watch
|
452
|
-
# Optional.
|
453
|
-
# as well. Not currently used by Cloud Run.
|
481
|
+
# Optional. Not supported by Cloud Run.
|
454
482
|
# @param [String] fields
|
455
483
|
# Selector specifying which fields to include in a partial response.
|
456
484
|
# @param [String] quota_user
|
@@ -603,22 +631,18 @@ module Google
|
|
603
631
|
# @param [String] continue
|
604
632
|
# Optional. Optional encoded string to continue paging.
|
605
633
|
# @param [String] field_selector
|
606
|
-
# Optional.
|
607
|
-
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
608
|
-
# currently used by Cloud Run.
|
634
|
+
# Optional. Not supported by Cloud Run.
|
609
635
|
# @param [Boolean] include_uninitialized
|
610
|
-
# Optional. Not
|
636
|
+
# Optional. Not supported by Cloud Run.
|
611
637
|
# @param [String] label_selector
|
612
638
|
# Optional. Allows to filter resources based on a label. Supported operations
|
613
639
|
# are =, !=, exists, in, and notIn.
|
614
640
|
# @param [Fixnum] limit
|
615
641
|
# Optional. The maximum number of records that should be returned.
|
616
642
|
# @param [String] resource_version
|
617
|
-
# Optional.
|
618
|
-
# should start. Not currently used by Cloud Run.
|
643
|
+
# Optional. Not supported by Cloud Run.
|
619
644
|
# @param [Boolean] watch
|
620
|
-
# Optional.
|
621
|
-
# as well. Not currently used by Cloud Run.
|
645
|
+
# Optional. Not supported by Cloud Run.
|
622
646
|
# @param [String] fields
|
623
647
|
# Selector specifying which fields to include in a partial response.
|
624
648
|
# @param [String] quota_user
|
@@ -658,7 +682,7 @@ module Google
|
|
658
682
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
659
683
|
# update from last read for optimistic concurrency control.
|
660
684
|
# @param [String] name
|
661
|
-
# Required. The name of the
|
685
|
+
# Required. The name of the job being replaced. Replace `namespace` with the
|
662
686
|
# project ID or number. It takes the form namespaces/`namespace`. For example:
|
663
687
|
# namespaces/PROJECT_ID
|
664
688
|
# @param [Google::Apis::RunV1::Job] job_object
|
@@ -740,8 +764,8 @@ module Google
|
|
740
764
|
# Cloud Run currently ignores this parameter.
|
741
765
|
# @param [String] propagation_policy
|
742
766
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
743
|
-
# setting, and deletes in the background. Please see kubernetes.io/docs/
|
744
|
-
#
|
767
|
+
# setting, and deletes in the background. Please see https://kubernetes.io/docs/
|
768
|
+
# concepts/architecture/garbage-collection/ for more information.
|
745
769
|
# @param [String] fields
|
746
770
|
# Selector specifying which fields to include in a partial response.
|
747
771
|
# @param [String] quota_user
|
@@ -953,11 +977,12 @@ module Google
|
|
953
977
|
execute_or_queue_command(command, &block)
|
954
978
|
end
|
955
979
|
|
956
|
-
#
|
980
|
+
# Creates a new Service. Service creation will trigger a new deployment. Use
|
981
|
+
# GetService, and check service.status to determine if the Service is ready.
|
957
982
|
# @param [String] parent
|
958
|
-
# The
|
959
|
-
#
|
960
|
-
#
|
983
|
+
# The resource's parent. In Cloud Run, it may be one of the following: * `
|
984
|
+
# namespaces/`project_id_or_number`` * `projects/`project_id_or_number`/
|
985
|
+
# locations/`region`` * `projects/`project_id_or_number`/regions/`region``
|
961
986
|
# @param [Google::Apis::RunV1::Service] service_object
|
962
987
|
# @param [String] dry_run
|
963
988
|
# Indicates that the server should validate the request and populate default
|
@@ -992,23 +1017,22 @@ module Google
|
|
992
1017
|
execute_or_queue_command(command, &block)
|
993
1018
|
end
|
994
1019
|
|
995
|
-
#
|
996
|
-
#
|
1020
|
+
# Deletes the provided service. This will cause the Service to stop serving
|
1021
|
+
# traffic and will delete all associated Revisions.
|
997
1022
|
# @param [String] name
|
998
|
-
# The name of the service to delete.
|
999
|
-
#
|
1000
|
-
#
|
1023
|
+
# The fully qualified name of the service to delete. It can be any of the
|
1024
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
1025
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
1026
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
1001
1027
|
# @param [String] api_version
|
1002
|
-
#
|
1028
|
+
# Not supported, and ignored by Cloud Run.
|
1003
1029
|
# @param [String] dry_run
|
1004
1030
|
# Indicates that the server should validate the request and populate default
|
1005
1031
|
# values without persisting the request. Supported values: `all`
|
1006
1032
|
# @param [String] kind
|
1007
|
-
#
|
1033
|
+
# Not supported, and ignored by Cloud Run.
|
1008
1034
|
# @param [String] propagation_policy
|
1009
|
-
#
|
1010
|
-
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
1011
|
-
# workloads/controllers/garbage-collection/ for more information.
|
1035
|
+
# Not supported, and ignored by Cloud Run.
|
1012
1036
|
# @param [String] fields
|
1013
1037
|
# Selector specifying which fields to include in a partial response.
|
1014
1038
|
# @param [String] quota_user
|
@@ -1040,11 +1064,12 @@ module Google
|
|
1040
1064
|
execute_or_queue_command(command, &block)
|
1041
1065
|
end
|
1042
1066
|
|
1043
|
-
#
|
1067
|
+
# Gets information about a service.
|
1044
1068
|
# @param [String] name
|
1045
|
-
# The name of the service to retrieve.
|
1046
|
-
#
|
1047
|
-
#
|
1069
|
+
# The fully qualified name of the service to retrieve. It can be any of the
|
1070
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
1071
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
1072
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
1048
1073
|
# @param [String] fields
|
1049
1074
|
# Selector specifying which fields to include in a partial response.
|
1050
1075
|
# @param [String] quota_user
|
@@ -1072,30 +1097,27 @@ module Google
|
|
1072
1097
|
execute_or_queue_command(command, &block)
|
1073
1098
|
end
|
1074
1099
|
|
1075
|
-
#
|
1100
|
+
# Lists services for the given project and region.
|
1076
1101
|
# @param [String] parent
|
1077
|
-
# The
|
1078
|
-
#
|
1079
|
-
#
|
1102
|
+
# The parent from where the resources should be listed. In Cloud Run, it may be
|
1103
|
+
# one of the following: * `namespaces/`project_id_or_number`` * `projects/`
|
1104
|
+
# project_id_or_number`/locations/`region`` * `projects/`project_id_or_number`/
|
1105
|
+
# regions/`region``
|
1080
1106
|
# @param [String] continue
|
1081
1107
|
# Optional. Encoded string to continue paging.
|
1082
1108
|
# @param [String] field_selector
|
1083
|
-
#
|
1084
|
-
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
1085
|
-
# used by Cloud Run.
|
1109
|
+
# Not supported, and ignored by Cloud Run.
|
1086
1110
|
# @param [Boolean] include_uninitialized
|
1087
|
-
# Not
|
1111
|
+
# Not supported, and ignored by Cloud Run.
|
1088
1112
|
# @param [String] label_selector
|
1089
1113
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
1090
1114
|
# exists, in, and notIn.
|
1091
1115
|
# @param [Fixnum] limit
|
1092
1116
|
# Optional. The maximum number of records that should be returned.
|
1093
1117
|
# @param [String] resource_version
|
1094
|
-
#
|
1095
|
-
# start. Not currently used by Cloud Run.
|
1118
|
+
# Not supported, and ignored by Cloud Run.
|
1096
1119
|
# @param [Boolean] watch
|
1097
|
-
#
|
1098
|
-
# Not currently used by Cloud Run.
|
1120
|
+
# Not supported, and ignored by Cloud Run.
|
1099
1121
|
# @param [String] fields
|
1100
1122
|
# Selector specifying which fields to include in a partial response.
|
1101
1123
|
# @param [String] quota_user
|
@@ -1130,14 +1152,15 @@ module Google
|
|
1130
1152
|
execute_or_queue_command(command, &block)
|
1131
1153
|
end
|
1132
1154
|
|
1133
|
-
#
|
1155
|
+
# Replaces a service. Only the spec and metadata labels and annotations are
|
1134
1156
|
# modifiable. After the Update request, Cloud Run will work to make the 'status'
|
1135
1157
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
1136
1158
|
# update from last read for optimistic concurrency control.
|
1137
1159
|
# @param [String] name
|
1138
|
-
# The name of the service
|
1139
|
-
#
|
1140
|
-
#
|
1160
|
+
# The fully qualified name of the service to replace. It can be any of the
|
1161
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
1162
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
1163
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
1141
1164
|
# @param [Google::Apis::RunV1::Service] service_object
|
1142
1165
|
# @param [String] dry_run
|
1143
1166
|
# Indicates that the server should validate the request and populate default
|
@@ -1212,22 +1235,18 @@ module Google
|
|
1212
1235
|
# @param [String] continue
|
1213
1236
|
# Optional. Optional encoded string to continue paging.
|
1214
1237
|
# @param [String] field_selector
|
1215
|
-
# Optional.
|
1216
|
-
# name. Send this in a query string format. i.e. 'metadata.name%3Dlorem'. Not
|
1217
|
-
# currently used by Cloud Run.
|
1238
|
+
# Optional. Not supported by Cloud Run.
|
1218
1239
|
# @param [Boolean] include_uninitialized
|
1219
|
-
# Optional. Not
|
1240
|
+
# Optional. Not supported by Cloud Run.
|
1220
1241
|
# @param [String] label_selector
|
1221
1242
|
# Optional. Allows to filter resources based on a label. Supported operations
|
1222
1243
|
# are =, !=, exists, in, and notIn.
|
1223
1244
|
# @param [Fixnum] limit
|
1224
1245
|
# Optional. The maximum number of records that should be returned.
|
1225
1246
|
# @param [String] resource_version
|
1226
|
-
# Optional.
|
1227
|
-
# should start. Not currently used by Cloud Run.
|
1247
|
+
# Optional. Not supported by Cloud Run.
|
1228
1248
|
# @param [Boolean] watch
|
1229
|
-
# Optional.
|
1230
|
-
# as well. Not currently used by Cloud Run.
|
1249
|
+
# Optional. Not supported by Cloud Run.
|
1231
1250
|
# @param [String] fields
|
1232
1251
|
# Selector specifying which fields to include in a partial response.
|
1233
1252
|
# @param [String] quota_user
|
@@ -1379,8 +1398,8 @@ module Google
|
|
1379
1398
|
|
1380
1399
|
# Get information about a configuration.
|
1381
1400
|
# @param [String] name
|
1382
|
-
# The name of the configuration to retrieve. For Cloud Run
|
1383
|
-
#
|
1401
|
+
# The name of the configuration to retrieve. For Cloud Run, replace `
|
1402
|
+
# namespace_id` with the project ID or number.
|
1384
1403
|
# @param [String] fields
|
1385
1404
|
# Selector specifying which fields to include in a partial response.
|
1386
1405
|
# @param [String] quota_user
|
@@ -1410,27 +1429,23 @@ module Google
|
|
1410
1429
|
|
1411
1430
|
# List configurations.
|
1412
1431
|
# @param [String] parent
|
1413
|
-
# The namespace from which the configurations should be listed. For Cloud Run
|
1414
|
-
#
|
1432
|
+
# The namespace from which the configurations should be listed. For Cloud Run,
|
1433
|
+
# replace `namespace_id` with the project ID or number.
|
1415
1434
|
# @param [String] continue
|
1416
1435
|
# Optional. Encoded string to continue paging.
|
1417
1436
|
# @param [String] field_selector
|
1418
|
-
#
|
1419
|
-
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
1420
|
-
# used by Cloud Run.
|
1437
|
+
# Not supported by Cloud Run.
|
1421
1438
|
# @param [Boolean] include_uninitialized
|
1422
|
-
# Not
|
1439
|
+
# Not supported by Cloud Run.
|
1423
1440
|
# @param [String] label_selector
|
1424
1441
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
1425
1442
|
# exists, in, and notIn.
|
1426
1443
|
# @param [Fixnum] limit
|
1427
|
-
# Optional. The maximum number of records that should be returned.
|
1444
|
+
# Optional. The maximum number of the records that should be returned.
|
1428
1445
|
# @param [String] resource_version
|
1429
|
-
#
|
1430
|
-
# start. Not currently used by Cloud Run.
|
1446
|
+
# Not supported by Cloud Run.
|
1431
1447
|
# @param [Boolean] watch
|
1432
|
-
#
|
1433
|
-
# Not currently used by Cloud Run.
|
1448
|
+
# Not supported by Cloud Run.
|
1434
1449
|
# @param [String] fields
|
1435
1450
|
# Selector specifying which fields to include in a partial response.
|
1436
1451
|
# @param [String] quota_user
|
@@ -1519,7 +1534,7 @@ module Google
|
|
1519
1534
|
# @param [String] propagation_policy
|
1520
1535
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
1521
1536
|
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
1522
|
-
#
|
1537
|
+
# architecture/garbage-collection/ for more information.
|
1523
1538
|
# @param [String] fields
|
1524
1539
|
# Selector specifying which fields to include in a partial response.
|
1525
1540
|
# @param [String] quota_user
|
@@ -1583,7 +1598,7 @@ module Google
|
|
1583
1598
|
execute_or_queue_command(command, &block)
|
1584
1599
|
end
|
1585
1600
|
|
1586
|
-
# List domain mappings.
|
1601
|
+
# List all domain mappings.
|
1587
1602
|
# @param [String] parent
|
1588
1603
|
# The namespace from which the domain mappings should be listed. For Cloud Run (
|
1589
1604
|
# fully managed), replace `namespace` with the project ID or number. It takes
|
@@ -1772,8 +1787,8 @@ module Google
|
|
1772
1787
|
# Cloud Run currently ignores this parameter.
|
1773
1788
|
# @param [String] propagation_policy
|
1774
1789
|
# Specifies the propagation policy of delete. Cloud Run currently ignores this
|
1775
|
-
# setting, and deletes in the background. Please see kubernetes.io/docs/
|
1776
|
-
#
|
1790
|
+
# setting, and deletes in the background. Please see https://kubernetes.io/docs/
|
1791
|
+
# concepts/architecture/garbage-collection/ for more information.
|
1777
1792
|
# @param [String] fields
|
1778
1793
|
# Selector specifying which fields to include in a partial response.
|
1779
1794
|
# @param [String] quota_user
|
@@ -1985,11 +2000,12 @@ module Google
|
|
1985
2000
|
execute_or_queue_command(command, &block)
|
1986
2001
|
end
|
1987
2002
|
|
1988
|
-
#
|
2003
|
+
# Creates a new Service. Service creation will trigger a new deployment. Use
|
2004
|
+
# GetService, and check service.status to determine if the Service is ready.
|
1989
2005
|
# @param [String] parent
|
1990
|
-
# The
|
1991
|
-
#
|
1992
|
-
#
|
2006
|
+
# The resource's parent. In Cloud Run, it may be one of the following: * `
|
2007
|
+
# namespaces/`project_id_or_number`` * `projects/`project_id_or_number`/
|
2008
|
+
# locations/`region`` * `projects/`project_id_or_number`/regions/`region``
|
1993
2009
|
# @param [Google::Apis::RunV1::Service] service_object
|
1994
2010
|
# @param [String] dry_run
|
1995
2011
|
# Indicates that the server should validate the request and populate default
|
@@ -2024,23 +2040,22 @@ module Google
|
|
2024
2040
|
execute_or_queue_command(command, &block)
|
2025
2041
|
end
|
2026
2042
|
|
2027
|
-
#
|
2028
|
-
#
|
2043
|
+
# Deletes the provided service. This will cause the Service to stop serving
|
2044
|
+
# traffic and will delete all associated Revisions.
|
2029
2045
|
# @param [String] name
|
2030
|
-
# The name of the service to delete.
|
2031
|
-
#
|
2032
|
-
#
|
2046
|
+
# The fully qualified name of the service to delete. It can be any of the
|
2047
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
2048
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
2049
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
2033
2050
|
# @param [String] api_version
|
2034
|
-
#
|
2051
|
+
# Not supported, and ignored by Cloud Run.
|
2035
2052
|
# @param [String] dry_run
|
2036
2053
|
# Indicates that the server should validate the request and populate default
|
2037
2054
|
# values without persisting the request. Supported values: `all`
|
2038
2055
|
# @param [String] kind
|
2039
|
-
#
|
2056
|
+
# Not supported, and ignored by Cloud Run.
|
2040
2057
|
# @param [String] propagation_policy
|
2041
|
-
#
|
2042
|
-
# setting, and deletes in the background. Please see kubernetes.io/docs/concepts/
|
2043
|
-
# workloads/controllers/garbage-collection/ for more information.
|
2058
|
+
# Not supported, and ignored by Cloud Run.
|
2044
2059
|
# @param [String] fields
|
2045
2060
|
# Selector specifying which fields to include in a partial response.
|
2046
2061
|
# @param [String] quota_user
|
@@ -2072,11 +2087,12 @@ module Google
|
|
2072
2087
|
execute_or_queue_command(command, &block)
|
2073
2088
|
end
|
2074
2089
|
|
2075
|
-
#
|
2090
|
+
# Gets information about a service.
|
2076
2091
|
# @param [String] name
|
2077
|
-
# The name of the service to retrieve.
|
2078
|
-
#
|
2079
|
-
#
|
2092
|
+
# The fully qualified name of the service to retrieve. It can be any of the
|
2093
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
2094
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
2095
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
2080
2096
|
# @param [String] fields
|
2081
2097
|
# Selector specifying which fields to include in a partial response.
|
2082
2098
|
# @param [String] quota_user
|
@@ -2104,7 +2120,7 @@ module Google
|
|
2104
2120
|
execute_or_queue_command(command, &block)
|
2105
2121
|
end
|
2106
2122
|
|
2107
|
-
#
|
2123
|
+
# Gets the IAM Access Control policy currently in effect for the given Cloud Run
|
2108
2124
|
# service. This result does not include any inherited policies.
|
2109
2125
|
# @param [String] resource
|
2110
2126
|
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
@@ -2149,30 +2165,27 @@ module Google
|
|
2149
2165
|
execute_or_queue_command(command, &block)
|
2150
2166
|
end
|
2151
2167
|
|
2152
|
-
#
|
2168
|
+
# Lists services for the given project and region.
|
2153
2169
|
# @param [String] parent
|
2154
|
-
# The
|
2155
|
-
#
|
2156
|
-
#
|
2170
|
+
# The parent from where the resources should be listed. In Cloud Run, it may be
|
2171
|
+
# one of the following: * `namespaces/`project_id_or_number`` * `projects/`
|
2172
|
+
# project_id_or_number`/locations/`region`` * `projects/`project_id_or_number`/
|
2173
|
+
# regions/`region``
|
2157
2174
|
# @param [String] continue
|
2158
2175
|
# Optional. Encoded string to continue paging.
|
2159
2176
|
# @param [String] field_selector
|
2160
|
-
#
|
2161
|
-
# this in a query string format. i.e. 'metadata.name%3Dlorem'. Not currently
|
2162
|
-
# used by Cloud Run.
|
2177
|
+
# Not supported, and ignored by Cloud Run.
|
2163
2178
|
# @param [Boolean] include_uninitialized
|
2164
|
-
# Not
|
2179
|
+
# Not supported, and ignored by Cloud Run.
|
2165
2180
|
# @param [String] label_selector
|
2166
2181
|
# Allows to filter resources based on a label. Supported operations are =, !=,
|
2167
2182
|
# exists, in, and notIn.
|
2168
2183
|
# @param [Fixnum] limit
|
2169
2184
|
# Optional. The maximum number of records that should be returned.
|
2170
2185
|
# @param [String] resource_version
|
2171
|
-
#
|
2172
|
-
# start. Not currently used by Cloud Run.
|
2186
|
+
# Not supported, and ignored by Cloud Run.
|
2173
2187
|
# @param [Boolean] watch
|
2174
|
-
#
|
2175
|
-
# Not currently used by Cloud Run.
|
2188
|
+
# Not supported, and ignored by Cloud Run.
|
2176
2189
|
# @param [String] fields
|
2177
2190
|
# Selector specifying which fields to include in a partial response.
|
2178
2191
|
# @param [String] quota_user
|
@@ -2207,14 +2220,15 @@ module Google
|
|
2207
2220
|
execute_or_queue_command(command, &block)
|
2208
2221
|
end
|
2209
2222
|
|
2210
|
-
#
|
2223
|
+
# Replaces a service. Only the spec and metadata labels and annotations are
|
2211
2224
|
# modifiable. After the Update request, Cloud Run will work to make the 'status'
|
2212
2225
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
2213
2226
|
# update from last read for optimistic concurrency control.
|
2214
2227
|
# @param [String] name
|
2215
|
-
# The name of the service
|
2216
|
-
#
|
2217
|
-
#
|
2228
|
+
# The fully qualified name of the service to replace. It can be any of the
|
2229
|
+
# following forms: * `namespaces/`project_id_or_number`/services/`service_name``
|
2230
|
+
# * `projects/`project_id_or_number`/locations/`region`/services/`service_name``
|
2231
|
+
# * `projects/`project_id_or_number`/regions/`region`/services/`service_name``
|
2218
2232
|
# @param [Google::Apis::RunV1::Service] service_object
|
2219
2233
|
# @param [String] dry_run
|
2220
2234
|
# Indicates that the server should validate the request and populate default
|
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.36.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-08-22 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.36.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: []
|