@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20240905 → 0.0.20240918
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 +17 -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: 20240918
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -203,6 +203,10 @@ declare namespace gapi.client {
|
|
|
203
203
|
port?: number;
|
|
204
204
|
/** Project ID where the endpoint is located. The Project ID can be derived from the URI if you provide a VM instance or network URI. The following are two cases where you must provide the project ID: 1. Only the IP address is specified, and the IP address is within a Google Cloud project. 2. When you are using Shared VPC and the IP address that you provide is from the service project. In this case, the network that the IP address resides in is defined in the host project. */
|
|
205
205
|
projectId?: string;
|
|
206
|
+
/** A [Redis Cluster](https://cloud.google.com/memorystore/docs/cluster) URI. */
|
|
207
|
+
redisCluster?: string;
|
|
208
|
+
/** A [Redis Instance](https://cloud.google.com/memorystore/docs/redis) URI. */
|
|
209
|
+
redisInstance?: string;
|
|
206
210
|
}
|
|
207
211
|
interface EndpointInfo {
|
|
208
212
|
/** Destination IP address. */
|
|
@@ -443,8 +447,12 @@ declare namespace gapi.client {
|
|
|
443
447
|
interface NetworkInfo {
|
|
444
448
|
/** Name of a Compute Engine network. */
|
|
445
449
|
displayName?: string;
|
|
446
|
-
/** The IP range
|
|
450
|
+
/** The IP range of the subnet matching the source IP address of the test. */
|
|
447
451
|
matchedIpRange?: string;
|
|
452
|
+
/** URI of the subnet matching the source IP address of the test. */
|
|
453
|
+
matchedSubnetUri?: string;
|
|
454
|
+
/** The region of the subnet matching the source IP address of the test. */
|
|
455
|
+
region?: string;
|
|
448
456
|
/** URI of a Compute Engine network. */
|
|
449
457
|
uri?: string;
|
|
450
458
|
}
|
|
@@ -570,6 +578,10 @@ declare namespace gapi.client {
|
|
|
570
578
|
}
|
|
571
579
|
interface RerunConnectivityTestRequest {}
|
|
572
580
|
interface RouteInfo {
|
|
581
|
+
/** 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. */
|
|
582
|
+
advertisedRouteNextHopUri?: string;
|
|
583
|
+
/** For advertised dynamic routes, the URI of the Cloud Router that advertised the corresponding IP prefix. */
|
|
584
|
+
advertisedRouteSourceRouterUri?: string;
|
|
573
585
|
/** Destination IP range of the route. */
|
|
574
586
|
destIpRange?: string;
|
|
575
587
|
/** Destination port ranges of the route. Policy based routes only. */
|
|
@@ -592,6 +604,8 @@ declare namespace gapi.client {
|
|
|
592
604
|
priority?: number;
|
|
593
605
|
/** Protocols of the route. Policy based routes only. */
|
|
594
606
|
protocols?: string[];
|
|
607
|
+
/** Region of the route (if applicable). */
|
|
608
|
+
region?: string;
|
|
595
609
|
/** Indicates where route is applicable. */
|
|
596
610
|
routeScope?: string;
|
|
597
611
|
/** Type of route. */
|
|
@@ -600,7 +614,7 @@ declare namespace gapi.client {
|
|
|
600
614
|
srcIpRange?: string;
|
|
601
615
|
/** Source port ranges of the route. Policy based routes only. */
|
|
602
616
|
srcPortRanges?: string[];
|
|
603
|
-
/** URI of a route
|
|
617
|
+
/** URI of a route (if applicable). */
|
|
604
618
|
uri?: string;
|
|
605
619
|
}
|
|
606
620
|
interface ServerlessNegInfo {
|