@maxim_mazurok/gapi.client.tpu-v2alpha1 0.0.20230621 → 0.0.20230707
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 +8 -2
- package/package.json +1 -1
- package/tests.ts +3 -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://tpu.googleapis.com/$discovery/rest?version=v2alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230707
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -389,7 +389,7 @@ declare namespace gapi.client {
|
|
|
389
389
|
/** The BestEffort tier. */
|
|
390
390
|
bestEffort?:
|
|
391
391
|
any;
|
|
392
|
-
/** The Guaranteed tier */
|
|
392
|
+
/** The Guaranteed tier. */
|
|
393
393
|
guaranteed?:
|
|
394
394
|
Guaranteed;
|
|
395
395
|
/** Output only. Immutable. The name of the QueuedResource. */
|
|
@@ -401,6 +401,9 @@ declare namespace gapi.client {
|
|
|
401
401
|
/** Name of the reservation in which the resource should be provisioned. Format: projects/{project}/locations/{zone}/reservations/{reservation} */
|
|
402
402
|
reservationName?:
|
|
403
403
|
string;
|
|
404
|
+
/** Optional. The Spot tier. */
|
|
405
|
+
spot?:
|
|
406
|
+
any;
|
|
404
407
|
/** Output only. State of the QueuedResource request. */
|
|
405
408
|
state?:
|
|
406
409
|
QueuedResourceState;
|
|
@@ -497,6 +500,9 @@ declare namespace gapi.client {
|
|
|
497
500
|
string[];
|
|
498
501
|
}
|
|
499
502
|
// tslint:disable-next-line:no-empty-interface
|
|
503
|
+
interface Spot {
|
|
504
|
+
}
|
|
505
|
+
// tslint:disable-next-line:no-empty-interface
|
|
500
506
|
interface StartNodeRequest {
|
|
501
507
|
}
|
|
502
508
|
interface Status {
|
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: 20230707
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -299,6 +299,8 @@ gapi.load('client', async () => {
|
|
|
299
299
|
validUntilTime: "Test string",
|
|
300
300
|
},
|
|
301
301
|
reservationName: "Test string",
|
|
302
|
+
spot: {
|
|
303
|
+
},
|
|
302
304
|
state: {
|
|
303
305
|
acceptedData: {
|
|
304
306
|
},
|