@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20240501 → 0.0.20240515
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 +24 -6
- 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: 20240515
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -146,8 +146,12 @@ declare namespace gapi.client {
|
|
|
146
146
|
interface DeliverInfo {
|
|
147
147
|
/** IP address of the target (if applicable). */
|
|
148
148
|
ipAddress?: string;
|
|
149
|
+
/** PSC Google API target the packet is delivered to (if applicable). */
|
|
150
|
+
pscGoogleApiTarget?: string;
|
|
149
151
|
/** URI of the resource that the packet is delivered to. */
|
|
150
152
|
resourceUri?: string;
|
|
153
|
+
/** Name of the Cloud Storage Bucket the packet is delivered to (if applicable). */
|
|
154
|
+
storageBucket?: string;
|
|
151
155
|
/** Target type where the packet is delivered to. */
|
|
152
156
|
target?: string;
|
|
153
157
|
}
|
|
@@ -259,17 +263,25 @@ declare namespace gapi.client {
|
|
|
259
263
|
target?: string;
|
|
260
264
|
}
|
|
261
265
|
interface ForwardingRuleInfo {
|
|
262
|
-
/** Name of
|
|
266
|
+
/** Name of the forwarding rule. */
|
|
263
267
|
displayName?: string;
|
|
264
|
-
/**
|
|
268
|
+
/** Name of the load balancer the forwarding rule belongs to. Empty for forwarding rules not related to load balancers (like PSC forwarding rules). */
|
|
269
|
+
loadBalancerName?: string;
|
|
270
|
+
/** Port range defined in the forwarding rule that matches the packet. */
|
|
265
271
|
matchedPortRange?: string;
|
|
266
|
-
/** Protocol defined in the forwarding rule that matches the
|
|
272
|
+
/** Protocol defined in the forwarding rule that matches the packet. */
|
|
267
273
|
matchedProtocol?: string;
|
|
268
|
-
/** Network URI.
|
|
274
|
+
/** Network URI. */
|
|
269
275
|
networkUri?: string;
|
|
276
|
+
/** PSC Google API target this forwarding rule targets (if applicable). */
|
|
277
|
+
pscGoogleApiTarget?: string;
|
|
278
|
+
/** URI of the PSC service attachment this forwarding rule targets (if applicable). */
|
|
279
|
+
pscServiceAttachmentUri?: string;
|
|
280
|
+
/** Region of the forwarding rule. Set only for regional forwarding rules. */
|
|
281
|
+
region?: string;
|
|
270
282
|
/** Target type of the forwarding rule. */
|
|
271
283
|
target?: string;
|
|
272
|
-
/** URI of
|
|
284
|
+
/** URI of the forwarding rule. */
|
|
273
285
|
uri?: string;
|
|
274
286
|
/** VIP of the forwarding rule. */
|
|
275
287
|
vip?: string;
|
|
@@ -559,6 +571,10 @@ declare namespace gapi.client {
|
|
|
559
571
|
/** URI of a route. Dynamic, peering static and peering dynamic routes do not have an URI. Advertised route from Google Cloud VPC to on-premises network also does not have an URI. */
|
|
560
572
|
uri?: string;
|
|
561
573
|
}
|
|
574
|
+
interface ServerlessNegInfo {
|
|
575
|
+
/** URI of the serverless network endpoint group. */
|
|
576
|
+
negUri?: string;
|
|
577
|
+
}
|
|
562
578
|
interface SetIamPolicyRequest {
|
|
563
579
|
/** REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. */
|
|
564
580
|
policy?: Policy;
|
|
@@ -620,6 +636,8 @@ declare namespace gapi.client {
|
|
|
620
636
|
proxyConnection?: ProxyConnectionInfo;
|
|
621
637
|
/** Display information of a Compute Engine route. */
|
|
622
638
|
route?: RouteInfo;
|
|
639
|
+
/** Display information of a Serverless network endpoint group backend. Used only for return traces. */
|
|
640
|
+
serverlessNeg?: ServerlessNegInfo;
|
|
623
641
|
/** Each step is in one of the pre-defined states. */
|
|
624
642
|
state?: string;
|
|
625
643
|
/** Display information of a Storage Bucket. Used only for return traces. */
|