@maxim_mazurok/gapi.client.networkmanagement-v1 0.1.20251203 → 0.1.20260110
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 +33 -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: 20260110
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -241,6 +241,8 @@ declare namespace gapi.client {
|
|
|
241
241
|
fqdn?: string;
|
|
242
242
|
/** A cluster URI for [Google Kubernetes Engine cluster control plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). */
|
|
243
243
|
gkeMasterCluster?: string;
|
|
244
|
+
/** A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI. */
|
|
245
|
+
gkePod?: string;
|
|
244
246
|
/** A Compute Engine instance URI. */
|
|
245
247
|
instance?: string;
|
|
246
248
|
/** The IP address of the endpoint, which can be an external or internal IP. */
|
|
@@ -362,6 +364,24 @@ declare namespace gapi.client {
|
|
|
362
364
|
/** Internal IP address of a GKE cluster control plane. */
|
|
363
365
|
internalIp?: string;
|
|
364
366
|
}
|
|
367
|
+
interface GkePodInfo {
|
|
368
|
+
/** IP address of a GKE Pod. If the Pod is dual-stack, this is the IP address relevant to the trace. */
|
|
369
|
+
ipAddress?: string;
|
|
370
|
+
/** URI of the network containing the GKE Pod. */
|
|
371
|
+
networkUri?: string;
|
|
372
|
+
/** URI of a GKE Pod. For Pods in regional Clusters, the URI format is: `projects/{project}/locations/{location}/clusters/{cluster}/k8s/namespaces/{namespace}/pods/{pod}` For Pods in zonal Clusters, the URI format is: `projects/{project}/zones/{zone}/clusters/{cluster}/k8s/namespaces/{namespace}/pods/{pod}` */
|
|
373
|
+
podUri?: string;
|
|
374
|
+
}
|
|
375
|
+
interface GoogleManagedServiceInfo {
|
|
376
|
+
/** IP address of the Google-managed service endpoint. */
|
|
377
|
+
ipAddress?: string;
|
|
378
|
+
/** URI of the Google-managed service endpoint network, it is empty if the IP address is a public IP address. */
|
|
379
|
+
networkUri?: string;
|
|
380
|
+
/** Type of a Google-managed service. */
|
|
381
|
+
serviceType?: string;
|
|
382
|
+
/** URI of the Google-managed service. */
|
|
383
|
+
serviceUri?: string;
|
|
384
|
+
}
|
|
365
385
|
interface GoogleServiceInfo {
|
|
366
386
|
/** Recognized type of a Google Service. */
|
|
367
387
|
googleServiceType?: string;
|
|
@@ -416,6 +436,12 @@ declare namespace gapi.client {
|
|
|
416
436
|
/** URI of an Interconnect attachment. */
|
|
417
437
|
uri?: string;
|
|
418
438
|
}
|
|
439
|
+
interface IpMasqueradingSkippedInfo {
|
|
440
|
+
/** The matched non-masquerade IP range. Only set if reason is DESTINATION_IP_IN_CONFIGURED_NON_MASQUERADE_RANGE or DESTINATION_IP_IN_DEFAULT_NON_MASQUERADE_RANGE. */
|
|
441
|
+
nonMasqueradeRange?: string;
|
|
442
|
+
/** Reason why IP masquerading was not applied. */
|
|
443
|
+
reason?: string;
|
|
444
|
+
}
|
|
419
445
|
interface LatencyDistribution {
|
|
420
446
|
/** Representative latency percentiles. */
|
|
421
447
|
latencyPercentiles?: LatencyPercentile[];
|
|
@@ -814,6 +840,10 @@ declare namespace gapi.client {
|
|
|
814
840
|
forwardingRule?: ForwardingRuleInfo;
|
|
815
841
|
/** Display information of a Google Kubernetes Engine cluster master. */
|
|
816
842
|
gkeMaster?: GKEMasterInfo;
|
|
843
|
+
/** Display information of a Google Kubernetes Engine Pod. */
|
|
844
|
+
gkePod?: GkePodInfo;
|
|
845
|
+
/** Display information of a Google-managed service. */
|
|
846
|
+
googleManagedService?: GoogleManagedServiceInfo;
|
|
817
847
|
/** Display information of a Google service */
|
|
818
848
|
googleService?: GoogleServiceInfo;
|
|
819
849
|
/** Display information of a hybrid subnet. */
|
|
@@ -822,6 +852,8 @@ declare namespace gapi.client {
|
|
|
822
852
|
instance?: InstanceInfo;
|
|
823
853
|
/** Display information of an interconnect attachment. */
|
|
824
854
|
interconnectAttachment?: InterconnectAttachmentInfo;
|
|
855
|
+
/** Display information of the reason why GKE Pod IP masquerading was skipped. */
|
|
856
|
+
ipMasqueradingSkipped?: IpMasqueradingSkippedInfo;
|
|
825
857
|
/** Display information of the load balancers. Deprecated in favor of the `load_balancer_backend_info` field, not used in new tests. */
|
|
826
858
|
loadBalancer?: LoadBalancerInfo;
|
|
827
859
|
/** Display information of a specific load balancer backend. */
|