@maxim_mazurok/gapi.client.vmmigration-v1 0.0.20230713 → 0.0.20230727
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 -8
- 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://vmmigration.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230727
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -269,7 +269,7 @@ declare namespace gapi.client {
|
|
|
269
269
|
/** Output only. The OS license returned from the adaptation module report. */
|
|
270
270
|
appliedLicense?:
|
|
271
271
|
AppliedLicense;
|
|
272
|
-
/** Output only. The VM Boot Option, as set in the source
|
|
272
|
+
/** Output only. The VM Boot Option, as set in the source VM. */
|
|
273
273
|
bootOption?:
|
|
274
274
|
string;
|
|
275
275
|
/** Compute instance scheduling information (if empty default is used). */
|
|
@@ -299,10 +299,10 @@ declare namespace gapi.client {
|
|
|
299
299
|
/** List of NICs connected to this VM. */
|
|
300
300
|
networkInterfaces?:
|
|
301
301
|
NetworkInterface[];
|
|
302
|
-
/** A
|
|
302
|
+
/** A list of network tags to associate with the VM. */
|
|
303
303
|
networkTags?:
|
|
304
304
|
string[];
|
|
305
|
-
/** Defines whether the instance has Secure Boot enabled. This can be set to true only if the
|
|
305
|
+
/** Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI. */
|
|
306
306
|
secureBoot?:
|
|
307
307
|
boolean;
|
|
308
308
|
/** The service account to associate the VM with. */
|
|
@@ -325,7 +325,7 @@ declare namespace gapi.client {
|
|
|
325
325
|
/** The OS license returned from the adaptation module report. */
|
|
326
326
|
appliedLicense?:
|
|
327
327
|
AppliedLicense;
|
|
328
|
-
/** The VM Boot Option, as set in the source
|
|
328
|
+
/** The VM Boot Option, as set in the source VM. */
|
|
329
329
|
bootOption?:
|
|
330
330
|
string;
|
|
331
331
|
/** Compute instance scheduling information (if empty default is used). */
|
|
@@ -355,13 +355,13 @@ declare namespace gapi.client {
|
|
|
355
355
|
/** List of NICs connected to this VM. */
|
|
356
356
|
networkInterfaces?:
|
|
357
357
|
NetworkInterface[];
|
|
358
|
-
/** A
|
|
358
|
+
/** A list of network tags to associate with the VM. */
|
|
359
359
|
networkTags?:
|
|
360
360
|
string[];
|
|
361
361
|
/** The Google Cloud target project ID or project name. */
|
|
362
362
|
project?:
|
|
363
363
|
string;
|
|
364
|
-
/** Defines whether the instance has Secure Boot enabled. This can be set to true only if the
|
|
364
|
+
/** Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI. */
|
|
365
365
|
secureBoot?:
|
|
366
366
|
boolean;
|
|
367
367
|
/** The service account to associate the VM with. */
|
|
@@ -908,7 +908,7 @@ declare namespace gapi.client {
|
|
|
908
908
|
/** The disk type to use. */
|
|
909
909
|
diskType?:
|
|
910
910
|
string;
|
|
911
|
-
/** The ordinal number of the source VM disk. */
|
|
911
|
+
/** Required. The ordinal number of the source VM disk. */
|
|
912
912
|
sourceDiskNumber?:
|
|
913
913
|
number;
|
|
914
914
|
}
|
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: 20230727
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|