@maxim_mazurok/gapi.client.networkmanagement-v1 0.1.20250820 → 0.1.20250901
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 +15 -1
- package/package.json +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://networkmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250901
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -364,6 +364,14 @@ declare namespace gapi.client {
|
|
|
364
364
|
/** Output only. The operating system of the host. */
|
|
365
365
|
os?: string;
|
|
366
366
|
}
|
|
367
|
+
interface HybridSubnetInfo {
|
|
368
|
+
/** Name of a hybrid subnet. */
|
|
369
|
+
displayName?: string;
|
|
370
|
+
/** Name of a Google Cloud region where the hybrid subnet is configured. */
|
|
371
|
+
region?: string;
|
|
372
|
+
/** URI of a hybrid subnet. */
|
|
373
|
+
uri?: string;
|
|
374
|
+
}
|
|
367
375
|
interface InstanceInfo {
|
|
368
376
|
/** Name of a Compute Engine instance. */
|
|
369
377
|
displayName?: string;
|
|
@@ -395,8 +403,12 @@ declare namespace gapi.client {
|
|
|
395
403
|
displayName?: string;
|
|
396
404
|
/** URI of the Interconnect where the Interconnect attachment is configured. */
|
|
397
405
|
interconnectUri?: string;
|
|
406
|
+
/** Appliance IP address that was matched for L2_DEDICATED attachments. */
|
|
407
|
+
l2AttachmentMatchedIpAddress?: string;
|
|
398
408
|
/** Name of a Google Cloud region where the Interconnect attachment is configured. */
|
|
399
409
|
region?: string;
|
|
410
|
+
/** The type of interconnect attachment this is. */
|
|
411
|
+
type?: string;
|
|
400
412
|
/** URI of an Interconnect attachment. */
|
|
401
413
|
uri?: string;
|
|
402
414
|
}
|
|
@@ -912,6 +924,8 @@ declare namespace gapi.client {
|
|
|
912
924
|
gkeMaster?: GKEMasterInfo;
|
|
913
925
|
/** Display information of a Google service */
|
|
914
926
|
googleService?: GoogleServiceInfo;
|
|
927
|
+
/** Display information of a hybrid subnet. */
|
|
928
|
+
hybridSubnet?: HybridSubnetInfo;
|
|
915
929
|
/** Display information of a Compute Engine instance. */
|
|
916
930
|
instance?: InstanceInfo;
|
|
917
931
|
/** Display information of an interconnect attachment. */
|