You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: discovery/run-v2.json
+25-6Lines changed: 25 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1329,7 +1329,7 @@
1329
1329
"type": "string"
1330
1330
},
1331
1331
"returnPartialSuccess": {
1332
-
"description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `\"projects/example/locations/-\"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.",
1332
+
"description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.",
1333
1333
"location": "query",
1334
1334
"type": "boolean"
1335
1335
}
@@ -2177,7 +2177,7 @@
2177
2177
}
2178
2178
}
2179
2179
},
2180
-
"revision": "20251107",
2180
+
"revision": "20251202",
2181
2181
"rootUrl": "https://run.googleapis.com/",
2182
2182
"schemas": {
2183
2183
"GoogleCloudRunV2BinaryAuthorization": {
@@ -2363,15 +2363,17 @@
2363
2363
"NON_ZERO_EXIT_CODE",
2364
2364
"CANCELLED",
2365
2365
"CANCELLING",
2366
-
"DELETED"
2366
+
"DELETED",
2367
+
"FLEX_START_PENDING"
2367
2368
],
2368
2369
"enumDescriptions": [
2369
2370
"Default value.",
2370
2371
"Internal system error getting execution status. System will retry.",
2371
2372
"A task reached its retry limit and the last attempt failed due to the user container exiting with a non-zero exit code.",
2372
2373
"The execution was cancelled by users.",
2373
2374
"The execution is in the process of being cancelled.",
2374
-
"The execution was deleted."
2375
+
"The execution was deleted.",
2376
+
"A Flex priority execution is waiting for a start time."
2375
2377
],
2376
2378
"readOnly": true,
2377
2379
"type": "string"
@@ -3418,6 +3420,14 @@
3418
3420
"$ref": "GoogleCloudRunV2Service"
3419
3421
},
3420
3422
"type": "array"
3423
+
},
3424
+
"unreachable": {
3425
+
"description": "Output only. For global requests, returns the list of regions that could not be reached within the deadline.",
3426
+
"items": {
3427
+
"type": "string"
3428
+
},
3429
+
"readOnly": true,
3430
+
"type": "array"
3421
3431
}
3422
3432
},
3423
3433
"type": "object"
@@ -4982,7 +4992,7 @@
4982
4992
"type": "string"
4983
4993
},
4984
4994
"customAudiences": {
4985
-
"description": "One or more custom audiences that you want this worker pool to support. Specify each custom audience as the full URL in a string. The custom audiences are encoded in the token and used to authenticate requests. For more information, see https://cloud.google.com/run/docs/configuring/custom-audiences.",
4995
+
"description": "Not supported, and ignored by Cloud Run.",
4986
4996
"items": {
4987
4997
"type": "string"
4988
4998
},
@@ -5108,6 +5118,11 @@
5108
5118
"description": "Output only. The Condition of this WorkerPool, containing its readiness status, and detailed error information in case it did not reach a serving state. See comments in `reconciling` for additional information on reconciliation process in Cloud Run.",
5109
5119
"readOnly": true
5110
5120
},
5121
+
"threatDetectionEnabled": {
5122
+
"description": "Output only. Indicates whether Cloud Run Threat Detection monitoring is enabled for the parent project of this worker pool.",
5123
+
"readOnly": true,
5124
+
"type": "boolean"
5125
+
},
5111
5126
"uid": {
5112
5127
"description": "Output only. Server assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.",
5113
5128
"readOnly": true,
@@ -6195,6 +6210,10 @@
6195
6210
"description": "Maven `artifactId` value used when uploading the artifact to Artifact Registry.",
6196
6211
"type": "string"
6197
6212
},
6213
+
"deployFolder": {
6214
+
"description": "Optional. Path to a folder containing the files to upload to Artifact Registry. This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace, e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.",
6215
+
"type": "string"
6216
+
},
6198
6217
"groupId": {
6199
6218
"description": "Maven `groupId` value used when uploading the artifact to Artifact Registry.",
6200
6219
"type": "string"
@@ -6867,7 +6886,7 @@
6867
6886
"type": "array"
6868
6887
},
6869
6888
"unreachable": {
6870
-
"description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.",
6889
+
"description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.",
Copy file name to clipboardExpand all lines: src/apis/run/v2.ts
+21-5Lines changed: 21 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -923,6 +923,10 @@ export namespace run_v2 {
923
923
* The resulting list of Services.
924
924
*/
925
925
services?: Schema$GoogleCloudRunV2Service[];
926
+
/**
927
+
* Output only. For global requests, returns the list of regions that could not be reached within the deadline.
928
+
*/
929
+
unreachable?: string[]|null;
926
930
}
927
931
/**
928
932
* Response message containing a list of Tasks.
@@ -2015,7 +2019,7 @@ export namespace run_v2 {
2015
2019
*/
2016
2020
creator?: string|null;
2017
2021
/**
2018
-
* One or more custom audiences that you want this worker pool to support. Specify each custom audience as the full URL in a string. The custom audiences are encoded in the token and used to authenticate requests. For more information, see https://cloud.google.com/run/docs/configuring/custom-audiences.
2022
+
* Not supported, and ignored by Cloud Run.
2019
2023
*/
2020
2024
customAudiences?: string[]|null;
2021
2025
/**
@@ -2094,6 +2098,10 @@ export namespace run_v2 {
2094
2098
* Output only. The Condition of this WorkerPool, containing its readiness status, and detailed error information in case it did not reach a serving state. See comments in `reconciling` for additional information on reconciliation process in Cloud Run.
* Output only. Indicates whether Cloud Run Threat Detection monitoring is enabled for the parent project of this worker pool.
2103
+
*/
2104
+
threatDetectionEnabled?: boolean|null;
2097
2105
/**
2098
2106
* Output only. Server assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.
2099
2107
*/
@@ -2780,6 +2788,10 @@ export namespace run_v2 {
2780
2788
* Maven `artifactId` value used when uploading the artifact to Artifact Registry.
2781
2789
*/
2782
2790
artifactId?: string|null;
2791
+
/**
2792
+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace, e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
2793
+
*/
2794
+
deployFolder?: string|null;
2783
2795
/**
2784
2796
* Maven `groupId` value used when uploading the artifact to Artifact Registry.
2785
2797
*/
@@ -3282,7 +3294,7 @@ export namespace run_v2 {
3282
3294
*/
3283
3295
operations?: Schema$GoogleLongrunningOperation[];
3284
3296
/**
3285
-
* Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.
3297
+
* Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.
3286
3298
*/
3287
3299
unreachable?: string[]|null;
3288
3300
}
@@ -7278,7 +7290,7 @@ export namespace run_v2 {
7278
7290
* pageSize: 'placeholder-value',
7279
7291
* // Token identifying which result to start with, which is returned by a previous list call.
7280
7292
* pageToken: 'placeholder-value',
7281
-
* // When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
7293
+
* // When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
7282
7294
* returnPartialSuccess: 'placeholder-value',
7283
7295
* });
7284
7296
* console.log(res.data);
@@ -7577,7 +7589,7 @@ export namespace run_v2 {
7577
7589
*/
7578
7590
pageToken?: string;
7579
7591
/**
7580
-
* When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
7592
+
* When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
0 commit comments