@maxim_mazurok/gapi.client.networkmanagement-v1 0.1.20251229 → 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 +13 -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
|
|
|
@@ -372,6 +372,16 @@ declare namespace gapi.client {
|
|
|
372
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
373
|
podUri?: string;
|
|
374
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
|
+
}
|
|
375
385
|
interface GoogleServiceInfo {
|
|
376
386
|
/** Recognized type of a Google Service. */
|
|
377
387
|
googleServiceType?: string;
|
|
@@ -832,6 +842,8 @@ declare namespace gapi.client {
|
|
|
832
842
|
gkeMaster?: GKEMasterInfo;
|
|
833
843
|
/** Display information of a Google Kubernetes Engine Pod. */
|
|
834
844
|
gkePod?: GkePodInfo;
|
|
845
|
+
/** Display information of a Google-managed service. */
|
|
846
|
+
googleManagedService?: GoogleManagedServiceInfo;
|
|
835
847
|
/** Display information of a Google service */
|
|
836
848
|
googleService?: GoogleServiceInfo;
|
|
837
849
|
/** Display information of a hybrid subnet. */
|