@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20250716 → 0.0.20250806
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 +37 -5
- 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: 20250806
|
|
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
|
}
|
|
@@ -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;
|
|
@@ -345,6 +357,8 @@ declare namespace gapi.client {
|
|
|
345
357
|
cloudRegion?: string;
|
|
346
358
|
/** Output only. The ids of cloud virtual networks of the host. */
|
|
347
359
|
cloudVirtualNetworkIds?: string[];
|
|
360
|
+
/** Output only. The id of Virtual Private Cloud (VPC) of the host. */
|
|
361
|
+
cloudVpcId?: string;
|
|
348
362
|
/** Output only. The cloud zone of the host. */
|
|
349
363
|
cloudZone?: string;
|
|
350
364
|
/** Output only. The operating system of the host. */
|
|
@@ -374,6 +388,18 @@ declare namespace gapi.client {
|
|
|
374
388
|
/** URI of a Compute Engine instance. */
|
|
375
389
|
uri?: string;
|
|
376
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
|
+
}
|
|
377
403
|
interface LatencyDistribution {
|
|
378
404
|
/** Representative latency percentiles. */
|
|
379
405
|
latencyPercentiles?: LatencyPercentile[];
|
|
@@ -505,8 +531,8 @@ declare namespace gapi.client {
|
|
|
505
531
|
displayName?: string;
|
|
506
532
|
/** Output only. The codes of errors detected in the MonitoringPoint. */
|
|
507
533
|
errors?: string[];
|
|
508
|
-
/** Output only. The geographical location of the MonitoringPoint.
|
|
509
|
-
geoLocation?:
|
|
534
|
+
/** Output only. The geographical location of the MonitoringPoint. ; */
|
|
535
|
+
geoLocation?: GeoLocation;
|
|
510
536
|
/** Output only. The host information of the MonitoringPoint. */
|
|
511
537
|
host?: Host;
|
|
512
538
|
/** Output only. The hostname of the MonitoringPoint. */
|
|
@@ -523,6 +549,8 @@ declare namespace gapi.client {
|
|
|
523
549
|
type?: string;
|
|
524
550
|
/** Output only. The time the MonitoringPoint was updated. */
|
|
525
551
|
updateTime?: string;
|
|
552
|
+
/** Output only. Indicates if an upgrade is available for the MonitoringPoint. */
|
|
553
|
+
upgradeAvailable?: boolean;
|
|
526
554
|
/** Output only. The type of upgrade available for the MonitoringPoint. */
|
|
527
555
|
upgradeType?: string;
|
|
528
556
|
/** Output only. Version of the software running on the MonitoringPoint. */
|
|
@@ -587,6 +615,8 @@ declare namespace gapi.client {
|
|
|
587
615
|
interface NetworkMonitoringProvider {
|
|
588
616
|
/** Output only. The time the NetworkMonitoringProvider was created. */
|
|
589
617
|
createTime?: string;
|
|
618
|
+
/** Output only. The list of error messages detected for the NetworkMonitoringProvider. */
|
|
619
|
+
errors?: string[];
|
|
590
620
|
/** Output only. Identifier. Name of the resource. Format: `projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}` */
|
|
591
621
|
name?: string;
|
|
592
622
|
/** Required. Type of the NetworkMonitoringProvider. */
|
|
@@ -603,8 +633,8 @@ declare namespace gapi.client {
|
|
|
603
633
|
createTime?: string;
|
|
604
634
|
/** Output only. IP address or hostname of the network path destination. */
|
|
605
635
|
destination?: string;
|
|
606
|
-
/** Output only. Geographical location of the destination MonitoringPoint. */
|
|
607
|
-
destinationGeoLocation?:
|
|
636
|
+
/** Output only. Geographical location of the destination MonitoringPoint. ; */
|
|
637
|
+
destinationGeoLocation?: GeoLocation;
|
|
608
638
|
/** Output only. The display name of the network path. */
|
|
609
639
|
displayName?: string;
|
|
610
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). */
|
|
@@ -884,6 +914,8 @@ declare namespace gapi.client {
|
|
|
884
914
|
googleService?: GoogleServiceInfo;
|
|
885
915
|
/** Display information of a Compute Engine instance. */
|
|
886
916
|
instance?: InstanceInfo;
|
|
917
|
+
/** Display information of an interconnect attachment. */
|
|
918
|
+
interconnectAttachment?: InterconnectAttachmentInfo;
|
|
887
919
|
/** Display information of the load balancers. Deprecated in favor of the `load_balancer_backend_info` field, not used in new tests. */
|
|
888
920
|
loadBalancer?: LoadBalancerInfo;
|
|
889
921
|
/** Display information of a specific load balancer backend. */
|