@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20250205 → 0.0.20250219
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 +21 -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: 20250219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -159,6 +159,18 @@ declare namespace gapi.client {
|
|
|
159
159
|
/** Target type where the packet is delivered to. */
|
|
160
160
|
target?: string;
|
|
161
161
|
}
|
|
162
|
+
interface DirectVpcEgressConnectionInfo {
|
|
163
|
+
/** URI of direct access network. */
|
|
164
|
+
networkUri?: string;
|
|
165
|
+
/** Region in which the Direct VPC egress is deployed. */
|
|
166
|
+
region?: string;
|
|
167
|
+
/** Selected starting IP address, from the selected IP range. */
|
|
168
|
+
selectedIpAddress?: string;
|
|
169
|
+
/** Selected IP range. */
|
|
170
|
+
selectedIpRange?: string;
|
|
171
|
+
/** URI of direct access subnetwork. */
|
|
172
|
+
subnetworkUri?: string;
|
|
173
|
+
}
|
|
162
174
|
interface DropInfo {
|
|
163
175
|
/** Cause that the packet is dropped. */
|
|
164
176
|
cause?: string;
|
|
@@ -643,6 +655,10 @@ declare namespace gapi.client {
|
|
|
643
655
|
/** URI of a route. SUBNET, STATIC, PEERING_SUBNET (only for peering network) and POLICY_BASED routes only. */
|
|
644
656
|
uri?: string;
|
|
645
657
|
}
|
|
658
|
+
interface ServerlessExternalConnectionInfo {
|
|
659
|
+
/** Selected starting IP address, from the Google dynamic address pool. */
|
|
660
|
+
selectedIpAddress?: string;
|
|
661
|
+
}
|
|
646
662
|
interface ServerlessNegInfo {
|
|
647
663
|
/** URI of the serverless network endpoint group. */
|
|
648
664
|
negUri?: string;
|
|
@@ -678,6 +694,8 @@ declare namespace gapi.client {
|
|
|
678
694
|
deliver?: DeliverInfo;
|
|
679
695
|
/** A description of the step. Usually this is a summary of the state. */
|
|
680
696
|
description?: string;
|
|
697
|
+
/** Display information of a serverless direct VPC egress connection. */
|
|
698
|
+
directVpcEgressConnection?: DirectVpcEgressConnectionInfo;
|
|
681
699
|
/** Display information of the final state "drop" and reason. */
|
|
682
700
|
drop?: DropInfo;
|
|
683
701
|
/** Display information of the source and destination under analysis. The endpoint information in an intermediate state may differ with the initial input, as it might be modified by state like NAT, or Connection Proxy. */
|
|
@@ -712,6 +730,8 @@ declare namespace gapi.client {
|
|
|
712
730
|
redisInstance?: RedisInstanceInfo;
|
|
713
731
|
/** Display information of a Compute Engine route. */
|
|
714
732
|
route?: RouteInfo;
|
|
733
|
+
/** Display information of a serverless public (external) connection. */
|
|
734
|
+
serverlessExternalConnection?: ServerlessExternalConnectionInfo;
|
|
715
735
|
/** Display information of a Serverless network endpoint group backend. Used only for return traces. */
|
|
716
736
|
serverlessNeg?: ServerlessNegInfo;
|
|
717
737
|
/** Each step is in one of the pre-defined states. */
|