@maxim_mazurok/gapi.client.run-v1 0.0.20230604 → 0.0.20230618
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.
- package/index.d.ts +10 -4
- package/package.json +1 -1
- package/tests.ts +2 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://run.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230618
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -246,9 +246,12 @@ declare namespace gapi.client {
|
|
|
246
246
|
string;
|
|
247
247
|
}
|
|
248
248
|
interface ContainerOverride {
|
|
249
|
-
/** Arguments to the entrypoint. Will replace existing args for override. */
|
|
249
|
+
/** Arguments to the entrypoint. Will replace existing args for override if present. Must be empty if `clear_args` is set to true. */
|
|
250
250
|
args?:
|
|
251
251
|
string[];
|
|
252
|
+
/** Optional. True if the intention is to clear out existing args list. */
|
|
253
|
+
clearArgs?:
|
|
254
|
+
boolean;
|
|
252
255
|
/** List of environment variables to set in the container. Will be merged with existing env for override. */
|
|
253
256
|
env?:
|
|
254
257
|
EnvVar[];
|
|
@@ -335,7 +338,7 @@ declare namespace gapi.client {
|
|
|
335
338
|
* Limit on the storage usable by this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value
|
|
336
339
|
* between the SizeLimit specified here and the sum of memory limits of all containers in a pod. This field's values are of the 'Quantity' k8s type:
|
|
337
340
|
* https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info:
|
|
338
|
-
*
|
|
341
|
+
* https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
|
|
339
342
|
*/
|
|
340
343
|
sizeLimit?:
|
|
341
344
|
string;
|
|
@@ -1151,7 +1154,10 @@ declare namespace gapi.client {
|
|
|
1151
1154
|
string;
|
|
1152
1155
|
}
|
|
1153
1156
|
interface RunJobRequest {
|
|
1154
|
-
/**
|
|
1157
|
+
/**
|
|
1158
|
+
* Optional. Private preview feature. Currently only available by invitation. Overrides specification for a given execution of a job. If provided, overrides will be applied to update
|
|
1159
|
+
* the execution or task spec.
|
|
1160
|
+
*/
|
|
1155
1161
|
overrides?:
|
|
1156
1162
|
Overrides;
|
|
1157
1163
|
}
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230618
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -840,6 +840,7 @@ gapi.load('client', async () => {
|
|
|
840
840
|
args: [
|
|
841
841
|
"Test string"
|
|
842
842
|
],
|
|
843
|
+
clearArgs: true,
|
|
843
844
|
env: [
|
|
844
845
|
{
|
|
845
846
|
name: "Test string",
|