@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20240905 → 0.0.20240911
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 +13 -3
- 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: 20240911
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -443,8 +443,12 @@ declare namespace gapi.client {
|
|
|
443
443
|
interface NetworkInfo {
|
|
444
444
|
/** Name of a Compute Engine network. */
|
|
445
445
|
displayName?: string;
|
|
446
|
-
/** The IP range
|
|
446
|
+
/** The IP range of the subnet matching the source IP address of the test. */
|
|
447
447
|
matchedIpRange?: string;
|
|
448
|
+
/** URI of the subnet matching the source IP address of the test. */
|
|
449
|
+
matchedSubnetUri?: string;
|
|
450
|
+
/** The region of the subnet matching the source IP address of the test. */
|
|
451
|
+
region?: string;
|
|
448
452
|
/** URI of a Compute Engine network. */
|
|
449
453
|
uri?: string;
|
|
450
454
|
}
|
|
@@ -570,6 +574,10 @@ declare namespace gapi.client {
|
|
|
570
574
|
}
|
|
571
575
|
interface RerunConnectivityTestRequest {}
|
|
572
576
|
interface RouteInfo {
|
|
577
|
+
/** For advertised routes, the URI of their next hop, i.e. the URI of the hybrid endpoint (VPN tunnel, Interconnect attachment, NCC router appliance) the advertised prefix is advertised through, or URI of the source peered network. */
|
|
578
|
+
advertisedRouteNextHopUri?: string;
|
|
579
|
+
/** For advertised dynamic routes, the URI of the Cloud Router that advertised the corresponding IP prefix. */
|
|
580
|
+
advertisedRouteSourceRouterUri?: string;
|
|
573
581
|
/** Destination IP range of the route. */
|
|
574
582
|
destIpRange?: string;
|
|
575
583
|
/** Destination port ranges of the route. Policy based routes only. */
|
|
@@ -592,6 +600,8 @@ declare namespace gapi.client {
|
|
|
592
600
|
priority?: number;
|
|
593
601
|
/** Protocols of the route. Policy based routes only. */
|
|
594
602
|
protocols?: string[];
|
|
603
|
+
/** Region of the route (if applicable). */
|
|
604
|
+
region?: string;
|
|
595
605
|
/** Indicates where route is applicable. */
|
|
596
606
|
routeScope?: string;
|
|
597
607
|
/** Type of route. */
|
|
@@ -600,7 +610,7 @@ declare namespace gapi.client {
|
|
|
600
610
|
srcIpRange?: string;
|
|
601
611
|
/** Source port ranges of the route. Policy based routes only. */
|
|
602
612
|
srcPortRanges?: string[];
|
|
603
|
-
/** URI of a route
|
|
613
|
+
/** URI of a route (if applicable). */
|
|
604
614
|
uri?: string;
|
|
605
615
|
}
|
|
606
616
|
interface ServerlessNegInfo {
|