@maxim_mazurok/gapi.client.run-v1 0.0.20230716 → 0.0.20230730
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 +11 -9
- package/package.json +1 -1
- package/tests.ts +1 -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: 20230730
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -246,13 +246,16 @@ declare namespace gapi.client {
|
|
|
246
246
|
string;
|
|
247
247
|
}
|
|
248
248
|
interface ContainerOverride {
|
|
249
|
-
/** Arguments to the entrypoint.
|
|
249
|
+
/** Arguments to the entrypoint. The specified arguments replace and override any existing entrypoint arguments. Must be empty if `clear_args` is set to true. */
|
|
250
250
|
args?:
|
|
251
251
|
string[];
|
|
252
|
-
/** Optional.
|
|
252
|
+
/** Optional. Set to True to clear all existing arguments. */
|
|
253
253
|
clearArgs?:
|
|
254
254
|
boolean;
|
|
255
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* List of environment variables to set in the container. All specified environment variables are merged with existing environment variables. When the specified environment variables
|
|
257
|
+
* exist, these values override any existing values.
|
|
258
|
+
*/
|
|
256
259
|
env?:
|
|
257
260
|
EnvVar[];
|
|
258
261
|
/** The name of the container specified as a DNS_LABEL. */
|
|
@@ -336,9 +339,8 @@ declare namespace gapi.client {
|
|
|
336
339
|
string;
|
|
337
340
|
/**
|
|
338
341
|
* 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
|
|
339
|
-
* between the SizeLimit specified here and the sum of memory limits of all containers
|
|
340
|
-
* https://
|
|
341
|
-
* https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
|
|
342
|
+
* between the SizeLimit specified here and the sum of memory limits of all containers. The default is nil which means that the limit is undefined. More info:
|
|
343
|
+
* https://cloud.google.com/run/docs/configuring/in-memory-volumes#configure-volume. Info in Kubernetes: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
|
|
342
344
|
*/
|
|
343
345
|
sizeLimit?:
|
|
344
346
|
string;
|
|
@@ -1155,8 +1157,8 @@ declare namespace gapi.client {
|
|
|
1155
1157
|
}
|
|
1156
1158
|
interface RunJobRequest {
|
|
1157
1159
|
/**
|
|
1158
|
-
* Optional. Private preview feature. Currently only available by invitation. Overrides specification for a given execution of a job.
|
|
1159
|
-
* the execution
|
|
1160
|
+
* Optional. Private preview feature. Currently only available by invitation. Overrides specification for a given execution of a job. The specified values update the specification of
|
|
1161
|
+
* the created execution.
|
|
1160
1162
|
*/
|
|
1161
1163
|
overrides?:
|
|
1162
1164
|
Overrides;
|
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: 20230730
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|