@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20250723 → 0.0.20250813
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 +40 -10
- 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: 20250813
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -178,12 +178,16 @@ declare namespace gapi.client {
|
|
|
178
178
|
interface DropInfo {
|
|
179
179
|
/** Cause that the packet is dropped. */
|
|
180
180
|
cause?: string;
|
|
181
|
+
/** Geolocation (region code) of the destination IP address (if relevant). */
|
|
182
|
+
destinationGeolocationCode?: string;
|
|
181
183
|
/** Destination IP address of the dropped packet (if relevant). */
|
|
182
184
|
destinationIp?: string;
|
|
183
185
|
/** Region of the dropped packet (if relevant). */
|
|
184
186
|
region?: string;
|
|
185
187
|
/** URI of the resource that caused the drop. */
|
|
186
188
|
resourceUri?: string;
|
|
189
|
+
/** Geolocation (region code) of the source IP address (if relevant). */
|
|
190
|
+
sourceGeolocationCode?: string;
|
|
187
191
|
/** Source IP address of the dropped packet (if relevant). */
|
|
188
192
|
sourceIp?: string;
|
|
189
193
|
}
|
|
@@ -201,7 +205,7 @@ declare namespace gapi.client {
|
|
|
201
205
|
cloudRunRevision?: CloudRunRevisionEndpoint;
|
|
202
206
|
/** A [Cloud SQL](https://cloud.google.com/sql) instance URI. */
|
|
203
207
|
cloudSqlInstance?: string;
|
|
204
|
-
/** A forwarding rule and its corresponding IP address represent the frontend configuration of a Google Cloud load balancer. Forwarding rules are also used for protocol forwarding, Private Service Connect and other network services to provide forwarding information in the control plane. Applicable only to destination endpoint. Format: projects/{project}/global/forwardingRules/{id} or projects/{project}/regions/{region}/forwardingRules/{id} */
|
|
208
|
+
/** A forwarding rule and its corresponding IP address represent the frontend configuration of a Google Cloud load balancer. Forwarding rules are also used for protocol forwarding, Private Service Connect and other network services to provide forwarding information in the control plane. Applicable only to destination endpoint. Format: `projects/{project}/global/forwardingRules/{id}` or `projects/{project}/regions/{region}/forwardingRules/{id}` */
|
|
205
209
|
forwardingRule?: string;
|
|
206
210
|
/** Output only. Specifies the type of the target of the forwarding rule. */
|
|
207
211
|
forwardingRuleTarget?: string;
|
|
@@ -281,6 +285,8 @@ declare namespace gapi.client {
|
|
|
281
285
|
targetServiceAccounts?: string[];
|
|
282
286
|
/** The target tags defined by the VPC firewall rule. This field is not applicable to firewall policy rules. */
|
|
283
287
|
targetTags?: string[];
|
|
288
|
+
/** Target type of the firewall rule. */
|
|
289
|
+
targetType?: string;
|
|
284
290
|
/** The URI of the firewall rule. This field is not applicable to implied VPC firewall rules. */
|
|
285
291
|
uri?: string;
|
|
286
292
|
}
|
|
@@ -316,6 +322,12 @@ declare namespace gapi.client {
|
|
|
316
322
|
/** VIP of the forwarding rule. */
|
|
317
323
|
vip?: string;
|
|
318
324
|
}
|
|
325
|
+
interface GeoLocation {
|
|
326
|
+
/** Country. */
|
|
327
|
+
country?: string;
|
|
328
|
+
/** Formatted address. */
|
|
329
|
+
formattedAddress?: string;
|
|
330
|
+
}
|
|
319
331
|
interface GKEMasterInfo {
|
|
320
332
|
/** URI of a GKE cluster network. */
|
|
321
333
|
clusterNetworkUri?: string;
|
|
@@ -376,6 +388,18 @@ declare namespace gapi.client {
|
|
|
376
388
|
/** URI of a Compute Engine instance. */
|
|
377
389
|
uri?: string;
|
|
378
390
|
}
|
|
391
|
+
interface InterconnectAttachmentInfo {
|
|
392
|
+
/** URI of the Cloud Router to be used for dynamic routing. */
|
|
393
|
+
cloudRouterUri?: string;
|
|
394
|
+
/** Name of an Interconnect attachment. */
|
|
395
|
+
displayName?: string;
|
|
396
|
+
/** URI of the Interconnect where the Interconnect attachment is configured. */
|
|
397
|
+
interconnectUri?: string;
|
|
398
|
+
/** Name of a Google Cloud region where the Interconnect attachment is configured. */
|
|
399
|
+
region?: string;
|
|
400
|
+
/** URI of an Interconnect attachment. */
|
|
401
|
+
uri?: string;
|
|
402
|
+
}
|
|
379
403
|
interface LatencyDistribution {
|
|
380
404
|
/** Representative latency percentiles. */
|
|
381
405
|
latencyPercentiles?: LatencyPercentile[];
|
|
@@ -507,8 +531,8 @@ declare namespace gapi.client {
|
|
|
507
531
|
displayName?: string;
|
|
508
532
|
/** Output only. The codes of errors detected in the MonitoringPoint. */
|
|
509
533
|
errors?: string[];
|
|
510
|
-
/** Output only. The geographical location of the MonitoringPoint.
|
|
511
|
-
geoLocation?:
|
|
534
|
+
/** Output only. The geographical location of the MonitoringPoint. ; */
|
|
535
|
+
geoLocation?: GeoLocation;
|
|
512
536
|
/** Output only. The host information of the MonitoringPoint. */
|
|
513
537
|
host?: Host;
|
|
514
538
|
/** Output only. The hostname of the MonitoringPoint. */
|
|
@@ -525,6 +549,8 @@ declare namespace gapi.client {
|
|
|
525
549
|
type?: string;
|
|
526
550
|
/** Output only. The time the MonitoringPoint was updated. */
|
|
527
551
|
updateTime?: string;
|
|
552
|
+
/** Output only. Indicates if an upgrade is available for the MonitoringPoint. */
|
|
553
|
+
upgradeAvailable?: boolean;
|
|
528
554
|
/** Output only. The type of upgrade available for the MonitoringPoint. */
|
|
529
555
|
upgradeType?: string;
|
|
530
556
|
/** Output only. Version of the software running on the MonitoringPoint. */
|
|
@@ -589,6 +615,8 @@ declare namespace gapi.client {
|
|
|
589
615
|
interface NetworkMonitoringProvider {
|
|
590
616
|
/** Output only. The time the NetworkMonitoringProvider was created. */
|
|
591
617
|
createTime?: string;
|
|
618
|
+
/** Output only. The list of error messages detected for the NetworkMonitoringProvider. */
|
|
619
|
+
errors?: string[];
|
|
592
620
|
/** Output only. Identifier. Name of the resource. Format: `projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}` */
|
|
593
621
|
name?: string;
|
|
594
622
|
/** Required. Type of the NetworkMonitoringProvider. */
|
|
@@ -605,8 +633,8 @@ declare namespace gapi.client {
|
|
|
605
633
|
createTime?: string;
|
|
606
634
|
/** Output only. IP address or hostname of the network path destination. */
|
|
607
635
|
destination?: string;
|
|
608
|
-
/** Output only. Geographical location of the destination MonitoringPoint. */
|
|
609
|
-
destinationGeoLocation?:
|
|
636
|
+
/** Output only. Geographical location of the destination MonitoringPoint. ; */
|
|
637
|
+
destinationGeoLocation?: GeoLocation;
|
|
610
638
|
/** Output only. The display name of the network path. */
|
|
611
639
|
displayName?: string;
|
|
612
640
|
/** Output only. Indicates if the network path is dual ended. When true, the network path is measured both: from both source to destination, and from destination to source. When false, the network path is measured from the source through the destination back to the source (round trip measurement). */
|
|
@@ -886,6 +914,8 @@ declare namespace gapi.client {
|
|
|
886
914
|
googleService?: GoogleServiceInfo;
|
|
887
915
|
/** Display information of a Compute Engine instance. */
|
|
888
916
|
instance?: InstanceInfo;
|
|
917
|
+
/** Display information of an interconnect attachment. */
|
|
918
|
+
interconnectAttachment?: InterconnectAttachmentInfo;
|
|
889
919
|
/** Display information of the load balancers. Deprecated in favor of the `load_balancer_backend_info` field, not used in new tests. */
|
|
890
920
|
loadBalancer?: LoadBalancerInfo;
|
|
891
921
|
/** Display information of a specific load balancer backend. */
|
|
@@ -1228,7 +1258,7 @@ declare namespace gapi.client {
|
|
|
1228
1258
|
alt?: string;
|
|
1229
1259
|
/** JSONP */
|
|
1230
1260
|
callback?: string;
|
|
1231
|
-
/** Optional.
|
|
1261
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
1232
1262
|
extraLocationTypes?: string | string[];
|
|
1233
1263
|
/** Selector specifying which fields to include in a partial response. */
|
|
1234
1264
|
fields?: string;
|
|
@@ -2055,7 +2085,7 @@ declare namespace gapi.client {
|
|
|
2055
2085
|
fields?: string;
|
|
2056
2086
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2057
2087
|
key?: string;
|
|
2058
|
-
/** Required. Name of the resource. Format: projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider} */
|
|
2088
|
+
/** Required. Name of the resource. Format: `projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}` */
|
|
2059
2089
|
name: string;
|
|
2060
2090
|
/** OAuth 2.0 token for the current user. */
|
|
2061
2091
|
oauth_token?: string;
|
|
@@ -2088,7 +2118,7 @@ declare namespace gapi.client {
|
|
|
2088
2118
|
pageSize?: number;
|
|
2089
2119
|
/** Optional. A page token, received from a previous `ListMonitoringPoints` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMonitoringPoints` must match the call that provided the page token. */
|
|
2090
2120
|
pageToken?: string;
|
|
2091
|
-
/** Required. Parent value for ListNetworkMonitoringProvidersRequest. Format: projects/{project}/locations/{location} */
|
|
2121
|
+
/** Required. Parent value for ListNetworkMonitoringProvidersRequest. Format: `projects/{project}/locations/{location}` */
|
|
2092
2122
|
parent: string;
|
|
2093
2123
|
/** Returns response with indentations and line breaks. */
|
|
2094
2124
|
prettyPrint?: boolean;
|
|
@@ -2356,7 +2386,7 @@ declare namespace gapi.client {
|
|
|
2356
2386
|
alt?: string;
|
|
2357
2387
|
/** JSONP */
|
|
2358
2388
|
callback?: string;
|
|
2359
|
-
/** Optional.
|
|
2389
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
2360
2390
|
extraLocationTypes?: string | string[];
|
|
2361
2391
|
/** Selector specifying which fields to include in a partial response. */
|
|
2362
2392
|
fields?: string;
|