@maxim_mazurok/gapi.client.run-v1 0.0.20230423 → 0.0.20230507
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 +20 -1
- package/package.json +1 -1
- package/tests.ts +25 -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: 20230507
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -324,6 +324,22 @@ declare namespace gapi.client {
|
|
|
324
324
|
url?:
|
|
325
325
|
string;
|
|
326
326
|
}
|
|
327
|
+
interface EmptyDirVolumeSource {
|
|
328
|
+
/**
|
|
329
|
+
* The medium on which the data is stored. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info:
|
|
330
|
+
* https://kubernetes.io/docs/concepts/storage/volumes#emptydir +optional
|
|
331
|
+
*/
|
|
332
|
+
medium?:
|
|
333
|
+
string;
|
|
334
|
+
/**
|
|
335
|
+
* 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
|
+
* 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
|
+
* https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info:
|
|
338
|
+
* http://kubernetes.io/docs/user-guide/volumes#emptydir +optional
|
|
339
|
+
*/
|
|
340
|
+
sizeLimit?:
|
|
341
|
+
string;
|
|
342
|
+
}
|
|
327
343
|
interface EnvFromSource {
|
|
328
344
|
/** The ConfigMap to select from */
|
|
329
345
|
configMapRef?:
|
|
@@ -1498,6 +1514,9 @@ declare namespace gapi.client {
|
|
|
1498
1514
|
/** Not supported in Cloud Run. */
|
|
1499
1515
|
configMap?:
|
|
1500
1516
|
ConfigMapVolumeSource;
|
|
1517
|
+
/** Ephemeral storage used as a shared volume. */
|
|
1518
|
+
emptyDir?:
|
|
1519
|
+
EmptyDirVolumeSource;
|
|
1501
1520
|
/** Volume's name. In Cloud Run Fully Managed, the name 'cloudsql' is reserved. */
|
|
1502
1521
|
name?:
|
|
1503
1522
|
string;
|
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: 20230507
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -442,6 +442,10 @@ gapi.load('client', async () => {
|
|
|
442
442
|
name: "Test string",
|
|
443
443
|
optional: true,
|
|
444
444
|
},
|
|
445
|
+
emptyDir: {
|
|
446
|
+
medium: "Test string",
|
|
447
|
+
sizeLimit: "Test string",
|
|
448
|
+
},
|
|
445
449
|
name: "Test string",
|
|
446
450
|
secret: {
|
|
447
451
|
defaultMode: 42,
|
|
@@ -782,6 +786,10 @@ gapi.load('client', async () => {
|
|
|
782
786
|
name: "Test string",
|
|
783
787
|
optional: true,
|
|
784
788
|
},
|
|
789
|
+
emptyDir: {
|
|
790
|
+
medium: "Test string",
|
|
791
|
+
sizeLimit: "Test string",
|
|
792
|
+
},
|
|
785
793
|
name: "Test string",
|
|
786
794
|
secret: {
|
|
787
795
|
defaultMode: 42,
|
|
@@ -1179,6 +1187,10 @@ gapi.load('client', async () => {
|
|
|
1179
1187
|
name: "Test string",
|
|
1180
1188
|
optional: true,
|
|
1181
1189
|
},
|
|
1190
|
+
emptyDir: {
|
|
1191
|
+
medium: "Test string",
|
|
1192
|
+
sizeLimit: "Test string",
|
|
1193
|
+
},
|
|
1182
1194
|
name: "Test string",
|
|
1183
1195
|
secret: {
|
|
1184
1196
|
defaultMode: 42,
|
|
@@ -1541,6 +1553,10 @@ gapi.load('client', async () => {
|
|
|
1541
1553
|
name: "Test string",
|
|
1542
1554
|
optional: true,
|
|
1543
1555
|
},
|
|
1556
|
+
emptyDir: {
|
|
1557
|
+
medium: "Test string",
|
|
1558
|
+
sizeLimit: "Test string",
|
|
1559
|
+
},
|
|
1544
1560
|
name: "Test string",
|
|
1545
1561
|
secret: {
|
|
1546
1562
|
defaultMode: 42,
|
|
@@ -2104,6 +2120,10 @@ gapi.load('client', async () => {
|
|
|
2104
2120
|
name: "Test string",
|
|
2105
2121
|
optional: true,
|
|
2106
2122
|
},
|
|
2123
|
+
emptyDir: {
|
|
2124
|
+
medium: "Test string",
|
|
2125
|
+
sizeLimit: "Test string",
|
|
2126
|
+
},
|
|
2107
2127
|
name: "Test string",
|
|
2108
2128
|
secret: {
|
|
2109
2129
|
defaultMode: 42,
|
|
@@ -2471,6 +2491,10 @@ gapi.load('client', async () => {
|
|
|
2471
2491
|
name: "Test string",
|
|
2472
2492
|
optional: true,
|
|
2473
2493
|
},
|
|
2494
|
+
emptyDir: {
|
|
2495
|
+
medium: "Test string",
|
|
2496
|
+
sizeLimit: "Test string",
|
|
2497
|
+
},
|
|
2474
2498
|
name: "Test string",
|
|
2475
2499
|
secret: {
|
|
2476
2500
|
defaultMode: 42,
|