@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20240821 → 0.0.20240905
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 +17 -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: 20240905
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -540,6 +540,20 @@ declare namespace gapi.client {
|
|
|
540
540
|
/** The time of the configuration analysis. */
|
|
541
541
|
verifyTime?: string;
|
|
542
542
|
}
|
|
543
|
+
interface RedisClusterInfo {
|
|
544
|
+
/** Discovery endpoint IP address of a Redis Cluster. */
|
|
545
|
+
discoveryEndpointIpAddress?: string;
|
|
546
|
+
/** Name of a Redis Cluster. */
|
|
547
|
+
displayName?: string;
|
|
548
|
+
/** Name of the region in which the Redis Cluster is defined. For example, "us-central1". */
|
|
549
|
+
location?: string;
|
|
550
|
+
/** URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}". */
|
|
551
|
+
networkUri?: string;
|
|
552
|
+
/** Secondary endpoint IP address of a Redis Cluster. */
|
|
553
|
+
secondaryEndpointIpAddress?: string;
|
|
554
|
+
/** URI of a Redis Cluster in format "projects/{project_id}/locations/{location}/clusters/{cluster_id}" */
|
|
555
|
+
uri?: string;
|
|
556
|
+
}
|
|
543
557
|
interface RedisInstanceInfo {
|
|
544
558
|
/** Name of a Cloud Redis Instance. */
|
|
545
559
|
displayName?: string;
|
|
@@ -652,6 +666,8 @@ declare namespace gapi.client {
|
|
|
652
666
|
projectId?: string;
|
|
653
667
|
/** Display information of a ProxyConnection. */
|
|
654
668
|
proxyConnection?: ProxyConnectionInfo;
|
|
669
|
+
/** Display information of a Redis Cluster. */
|
|
670
|
+
redisCluster?: RedisClusterInfo;
|
|
655
671
|
/** Display information of a Redis Instance. */
|
|
656
672
|
redisInstance?: RedisInstanceInfo;
|
|
657
673
|
/** Display information of a Compute Engine route. */
|