@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20230517 → 0.0.20230531
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 +12 -1
- package/package.json +1 -1
- package/tests.ts +9 -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://networkmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230531
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -394,6 +394,14 @@ declare namespace gapi.client {
|
|
|
394
394
|
internalIp?:
|
|
395
395
|
string;
|
|
396
396
|
}
|
|
397
|
+
interface GoogleServiceInfo {
|
|
398
|
+
/** Recognized type of a Google Service. */
|
|
399
|
+
googleServiceType?:
|
|
400
|
+
string;
|
|
401
|
+
/** Source IP address. */
|
|
402
|
+
sourceIp?:
|
|
403
|
+
string;
|
|
404
|
+
}
|
|
397
405
|
interface InstanceInfo {
|
|
398
406
|
/** Name of a Compute Engine instance. */
|
|
399
407
|
displayName?:
|
|
@@ -723,6 +731,9 @@ declare namespace gapi.client {
|
|
|
723
731
|
/** Display information of a Google Kubernetes Engine cluster master. */
|
|
724
732
|
gkeMaster?:
|
|
725
733
|
GKEMasterInfo;
|
|
734
|
+
/** Display information of a Google service */
|
|
735
|
+
googleService?:
|
|
736
|
+
GoogleServiceInfo;
|
|
726
737
|
/** Display information of a Compute Engine instance. */
|
|
727
738
|
instance?:
|
|
728
739
|
InstanceInfo;
|
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: 20230531
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -188,6 +188,10 @@ gapi.load('client', async () => {
|
|
|
188
188
|
externalIp: "Test string",
|
|
189
189
|
internalIp: "Test string",
|
|
190
190
|
},
|
|
191
|
+
googleService: {
|
|
192
|
+
googleServiceType: "Test string",
|
|
193
|
+
sourceIp: "Test string",
|
|
194
|
+
},
|
|
191
195
|
instance: {
|
|
192
196
|
displayName: "Test string",
|
|
193
197
|
externalIp: "Test string",
|
|
@@ -473,6 +477,10 @@ gapi.load('client', async () => {
|
|
|
473
477
|
externalIp: "Test string",
|
|
474
478
|
internalIp: "Test string",
|
|
475
479
|
},
|
|
480
|
+
googleService: {
|
|
481
|
+
googleServiceType: "Test string",
|
|
482
|
+
sourceIp: "Test string",
|
|
483
|
+
},
|
|
476
484
|
instance: {
|
|
477
485
|
displayName: "Test string",
|
|
478
486
|
externalIp: "Test string",
|