@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20250319 → 0.0.20250409
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 +23 -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: 20250409
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -525,12 +525,16 @@ declare namespace gapi.client {
|
|
|
525
525
|
interface ProbingDetails {
|
|
526
526
|
/** The reason probing was aborted. */
|
|
527
527
|
abortCause?: string;
|
|
528
|
-
/** The EdgeLocation from which a packet destined
|
|
528
|
+
/** The EdgeLocation from which a packet, destined to the internet, will egress the Google network. This will only be populated for a connectivity test which has an internet destination address. The absence of this field *must not* be used as an indication that the destination is part of the Google network. */
|
|
529
529
|
destinationEgressLocation?: EdgeLocation;
|
|
530
|
+
/** Probing results for all edge devices. */
|
|
531
|
+
edgeResponses?: SingleEdgeResponse[];
|
|
530
532
|
/** The source and destination endpoints derived from the test input and used for active probing. */
|
|
531
533
|
endpointInfo?: EndpointInfo;
|
|
532
534
|
/** Details about an internal failure or the cancellation of active probing. */
|
|
533
535
|
error?: Status;
|
|
536
|
+
/** Whether all relevant edge devices were probed. */
|
|
537
|
+
probedAllDevices?: boolean;
|
|
534
538
|
/** Latency as measured by active probing in one direction: from the source to the destination endpoint. */
|
|
535
539
|
probingLatency?: LatencyDistribution;
|
|
536
540
|
/** The overall result of active probing. */
|
|
@@ -669,6 +673,20 @@ declare namespace gapi.client {
|
|
|
669
673
|
/** OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: `paths: "bindings, etag"` */
|
|
670
674
|
updateMask?: string;
|
|
671
675
|
}
|
|
676
|
+
interface SingleEdgeResponse {
|
|
677
|
+
/** The EdgeLocation from which a packet, destined to the internet, will egress the Google network. This will only be populated for a connectivity test which has an internet destination address. The absence of this field *must not* be used as an indication that the destination is part of the Google network. */
|
|
678
|
+
destinationEgressLocation?: EdgeLocation;
|
|
679
|
+
/** Router name in the format '{router}.{metroshard}'. For example: pf01.aaa01, pr02.aaa01. */
|
|
680
|
+
destinationRouter?: string;
|
|
681
|
+
/** Latency as measured by active probing in one direction: from the source to the destination endpoint. */
|
|
682
|
+
probingLatency?: LatencyDistribution;
|
|
683
|
+
/** The overall result of active probing for this egress device. */
|
|
684
|
+
result?: string;
|
|
685
|
+
/** Number of probes sent. */
|
|
686
|
+
sentProbeCount?: number;
|
|
687
|
+
/** Number of probes that reached the destination. */
|
|
688
|
+
successfulProbeCount?: number;
|
|
689
|
+
}
|
|
672
690
|
interface Status {
|
|
673
691
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
674
692
|
code?: number;
|
|
@@ -794,7 +812,7 @@ declare namespace gapi.client {
|
|
|
794
812
|
metadataFields?: string[];
|
|
795
813
|
/** Identifier. Unique name of the configuration using the form: `projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id}` */
|
|
796
814
|
name?: string;
|
|
797
|
-
/** Optional. The state of the VPC Flow Log configuration. Default value is ENABLED. When creating a new configuration, it must be enabled. */
|
|
815
|
+
/** Optional. The state of the VPC Flow Log configuration. Default value is ENABLED. When creating a new configuration, it must be enabled. Setting state=DISABLED will pause the log generation for this config. */
|
|
798
816
|
state?: string;
|
|
799
817
|
/** Output only. A diagnostic bit - describes the state of the configured target resource for diagnostic purposes. */
|
|
800
818
|
targetResourceState?: string;
|
|
@@ -1603,6 +1621,8 @@ declare namespace gapi.client {
|
|
|
1603
1621
|
alt?: string;
|
|
1604
1622
|
/** JSONP */
|
|
1605
1623
|
callback?: string;
|
|
1624
|
+
/** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
|
|
1625
|
+
extraLocationTypes?: string | string[];
|
|
1606
1626
|
/** Selector specifying which fields to include in a partial response. */
|
|
1607
1627
|
fields?: string;
|
|
1608
1628
|
/** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
|