tencentcloud-sdk-nodejs-tse 4.0.397 → 4.0.434

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.
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { DescribeNacosReplicasRequest, DeleteEngineResponse, CreateEngineResponse, DescribeZookeeperReplicasRequest, DeleteEngineRequest, DescribeNacosServerInterfacesRequest, DescribeSREInstanceAccessAddressResponse, DescribeSREInstancesResponse, DescribeNacosReplicasResponse, DescribeZookeeperServerInterfacesResponse, DescribeSREInstancesRequest, DescribeZookeeperReplicasResponse, CreateEngineRequest, DescribeSREInstanceAccessAddressRequest, DescribeNacosServerInterfacesResponse, DescribeZookeeperServerInterfacesRequest } from "./tse_models";
2
+ import { DescribeNacosReplicasRequest, DeleteEngineResponse, CreateEngineResponse, DescribeZookeeperReplicasRequest, DeleteEngineRequest, DescribeCloudNativeAPIGatewayNodesRequest, DescribeNacosServerInterfacesRequest, DescribeSREInstanceAccessAddressResponse, DescribeSREInstancesResponse, DescribeNacosReplicasResponse, DescribeZookeeperServerInterfacesResponse, DescribeSREInstancesRequest, DescribeCloudNativeAPIGatewayNodesResponse, DescribeZookeeperReplicasResponse, CreateEngineRequest, DescribeSREInstanceAccessAddressRequest, DescribeNacosServerInterfacesResponse, DescribeZookeeperServerInterfacesRequest } from "./tse_models";
3
3
  /**
4
4
  * tse client
5
5
  * @class
@@ -22,6 +22,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
22
22
  * 查询Nacos类型引擎实例副本信息
23
23
  */
24
24
  DescribeNacosReplicas(req: DescribeNacosReplicasRequest, cb?: (error: string, rep: DescribeNacosReplicasResponse) => void): Promise<DescribeNacosReplicasResponse>;
25
+ /**
26
+ * 获取云原生网关节点列表
27
+ */
28
+ DescribeCloudNativeAPIGatewayNodes(req: DescribeCloudNativeAPIGatewayNodesRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayNodesResponse) => void): Promise<DescribeCloudNativeAPIGatewayNodesResponse>;
25
29
  /**
26
30
  * 查询zookeeper服务接口列表
27
31
  */
@@ -51,6 +51,12 @@ class Client extends TencentCloudCommon.AbstractClient {
51
51
  async DescribeNacosReplicas(req, cb) {
52
52
  return this.request("DescribeNacosReplicas", req, cb);
53
53
  }
54
+ /**
55
+ * 获取云原生网关节点列表
56
+ */
57
+ async DescribeCloudNativeAPIGatewayNodes(req, cb) {
58
+ return this.request("DescribeCloudNativeAPIGatewayNodes", req, cb);
59
+ }
54
60
  /**
55
61
  * 查询zookeeper服务接口列表
56
62
  */
@@ -137,6 +137,36 @@ export interface DeleteEngineRequest {
137
137
  */
138
138
  InstanceId: string;
139
139
  }
140
+ /**
141
+ * DescribeCloudNativeAPIGatewayNodes请求参数结构体
142
+ */
143
+ export interface DescribeCloudNativeAPIGatewayNodesRequest {
144
+ /**
145
+ * 云原生API网关实例ID。
146
+ */
147
+ GatewayId: string;
148
+ /**
149
+ * 翻页从第几个开始获取
150
+ */
151
+ Offset?: number;
152
+ /**
153
+ * 翻页获取多少个
154
+ */
155
+ Limit?: number;
156
+ }
157
+ /**
158
+ * 获取网关节点信息
159
+ */
160
+ export interface DescribeCloudNativeAPIGatewayNodesResult {
161
+ /**
162
+ * 获取云原生API网关节点列表响应结果。
163
+ */
164
+ TotalCount: number;
165
+ /**
166
+ * 云原生API网关节点列表。
167
+ */
168
+ NodeList: Array<CloudNativeAPIGatewayNode>;
169
+ }
140
170
  /**
141
171
  * Zookeeper副本信息
142
172
  */
@@ -168,6 +198,11 @@ export interface ZookeeperReplica {
168
198
  注意:此字段可能返回 null,表示取不到有效值。
169
199
  */
170
200
  ZoneId: string;
201
+ /**
202
+ * 别名
203
+ 注意:此字段可能返回 null,表示取不到有效值。
204
+ */
205
+ AliasName: string;
171
206
  }
172
207
  /**
173
208
  * DescribeNacosServerInterfaces请求参数结构体
@@ -327,6 +362,11 @@ export interface SREInstance {
327
362
  注意:此字段可能返回 null,表示取不到有效值。
328
363
  */
329
364
  IsolateTime: string;
365
+ /**
366
+ * 实例地域相关的描述信息
367
+ 注意:此字段可能返回 null,表示取不到有效值。
368
+ */
369
+ RegionInfos: Array<DescribeInstanceRegionInfo>;
330
370
  }
331
371
  /**
332
372
  * DescribeSREInstanceAccessAddress返回参数结构体
@@ -429,6 +469,19 @@ export interface ServiceGovernanceInfo {
429
469
  */
430
470
  PgwVpcInfos?: Array<VpcInfo>;
431
471
  }
472
+ /**
473
+ * 云原生API网关节点信息。
474
+ */
475
+ export interface CloudNativeAPIGatewayNode {
476
+ /**
477
+ * 云原生网关节点 id
478
+ */
479
+ NodeId: string;
480
+ /**
481
+ * 节点 ip
482
+ */
483
+ NodeIp: string;
484
+ }
432
485
  /**
433
486
  * DescribeNacosReplicas返回参数结构体
434
487
  */
@@ -508,6 +561,19 @@ export interface DescribeSREInstancesRequest {
508
561
  */
509
562
  QuerySource?: string;
510
563
  }
564
+ /**
565
+ * DescribeCloudNativeAPIGatewayNodes返回参数结构体
566
+ */
567
+ export interface DescribeCloudNativeAPIGatewayNodesResponse {
568
+ /**
569
+ * 获取云原生网关节点列表结果。
570
+ */
571
+ Result: DescribeCloudNativeAPIGatewayNodesResult;
572
+ /**
573
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
574
+ */
575
+ RequestId?: string;
576
+ }
511
577
  /**
512
578
  * DescribeZookeeperReplicas返回参数结构体
513
579
  */
@@ -545,17 +611,21 @@ export interface VpcInfo {
545
611
  IntranetAddress?: string;
546
612
  }
547
613
  /**
548
- * 查询过滤通用对象
614
+ * 引擎的初始管理帐号
549
615
  */
550
- export interface Filter {
616
+ export interface EngineAdmin {
551
617
  /**
552
- * 过滤参数名
618
+ * 控制台初始用户名
553
619
  */
554
- Name: string;
620
+ Name?: string;
555
621
  /**
556
- * 过滤参数值
622
+ * 控制台初始密码
557
623
  */
558
- Values: Array<string>;
624
+ Password?: string;
625
+ /**
626
+ * 引擎接口的管理员 Token
627
+ */
628
+ Token?: string;
559
629
  }
560
630
  /**
561
631
  * CreateEngine请求参数结构体
@@ -673,6 +743,36 @@ export interface CreateEngineRequest {
673
743
  */
674
744
  PrepaidRenewFlag?: number;
675
745
  }
746
+ /**
747
+ * 实例地域信息描述
748
+ */
749
+ export interface DescribeInstanceRegionInfo {
750
+ /**
751
+ * 引擎部署地域信息
752
+ 注意:此字段可能返回 null,表示取不到有效值。
753
+ */
754
+ EngineRegion: string;
755
+ /**
756
+ * 引擎在该地域的副本数
757
+ 注意:此字段可能返回 null,表示取不到有效值。
758
+ */
759
+ Replica: number;
760
+ /**
761
+ * 引擎在该地域的规格id
762
+ 注意:此字段可能返回 null,表示取不到有效值。
763
+ */
764
+ SpecId: string;
765
+ /**
766
+ * 内网的网络信息
767
+ 注意:此字段可能返回 null,表示取不到有效值。
768
+ */
769
+ IntranetVpcInfos: Array<VpcInfo>;
770
+ /**
771
+ * 是否开公网
772
+ 注意:此字段可能返回 null,表示取不到有效值。
773
+ */
774
+ EnableClientInternet: boolean;
775
+ }
676
776
  /**
677
777
  * DescribeSREInstanceAccessAddress请求参数结构体
678
778
  */
@@ -693,6 +793,10 @@ export interface DescribeSREInstanceAccessAddressRequest {
693
793
  * 引擎其他组件名称(pushgateway)
694
794
  */
695
795
  Workload?: string;
796
+ /**
797
+ * 部署地域
798
+ */
799
+ EngineRegion?: string;
696
800
  }
697
801
  /**
698
802
  * DescribeNacosServerInterfaces返回参数结构体
@@ -712,21 +816,17 @@ export interface DescribeNacosServerInterfacesResponse {
712
816
  RequestId?: string;
713
817
  }
714
818
  /**
715
- * 引擎的初始管理帐号
819
+ * 查询过滤通用对象
716
820
  */
717
- export interface EngineAdmin {
718
- /**
719
- * 控制台初始用户名
720
- */
721
- Name?: string;
821
+ export interface Filter {
722
822
  /**
723
- * 控制台初始密码
823
+ * 过滤参数名
724
824
  */
725
- Password?: string;
825
+ Name: string;
726
826
  /**
727
- * 引擎接口的管理员 Token
827
+ * 过滤参数值
728
828
  */
729
- Token?: string;
829
+ Values: Array<string>;
730
830
  }
731
831
  /**
732
832
  * nacos服务端接口列表,用于云监控