tencentcloud-sdk-nodejs 4.1.292 → 4.1.293

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.
@@ -154,6 +154,35 @@ export interface UpdateL3SwitchRequest {
154
154
  */
155
155
  Enable?: boolean;
156
156
  }
157
+ /**
158
+ * 接入点信息
159
+ */
160
+ export interface AccessPointInfo {
161
+ /**
162
+ * <p>接入点运营商。</p>
163
+ */
164
+ Vendor?: string;
165
+ /**
166
+ * <p>接入点地址。</p>
167
+ */
168
+ PublicAddr?: string;
169
+ /**
170
+ * <p>接入点地域。</p>
171
+ */
172
+ Region?: string;
173
+ /**
174
+ * <p>接入点大区。</p>
175
+ */
176
+ BigArea?: string;
177
+ /**
178
+ * <p>接入点是否可用。</p><p>枚举值:</p><ul><li>true: 接入点可用</li><li>false: 接入点不可用</li></ul>
179
+ */
180
+ Available?: boolean;
181
+ /**
182
+ * <p>集群ID</p>
183
+ */
184
+ GwGroupId?: string;
185
+ }
157
186
  /**
158
187
  * AddL3Conn请求参数结构体
159
188
  */
@@ -192,6 +221,19 @@ export interface OrderPerLicenseResponse {
192
221
  */
193
222
  RequestId?: string;
194
223
  }
224
+ /**
225
+ * GroupDeleteDevice请求参数结构体
226
+ */
227
+ export interface GroupDeleteDeviceRequest {
228
+ /**
229
+ * 分组ID
230
+ */
231
+ GroupId: string;
232
+ /**
233
+ * 待删除的设备列表
234
+ */
235
+ DeviceList: Array<string>;
236
+ }
195
237
  /**
196
238
  * GetFlowPackages请求参数结构体
197
239
  */
@@ -227,6 +269,23 @@ export interface SetNotifyUrlResponse {
227
269
  */
228
270
  RequestId?: string;
229
271
  }
272
+ /**
273
+ * GetCustomerGatewayClusterList返回参数结构体
274
+ */
275
+ export interface GetCustomerGatewayClusterListResponse {
276
+ /**
277
+ * <p>集群列表。</p>
278
+ */
279
+ ClusterList?: Array<GatewayClusterInfo>;
280
+ /**
281
+ * <p>集群总数。</p>
282
+ */
283
+ TotalCount?: number;
284
+ /**
285
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
286
+ */
287
+ RequestId?: string;
288
+ }
230
289
  /**
231
290
  * UpdateL3Cidr返回参数结构体
232
291
  */
@@ -271,17 +330,37 @@ export interface AddApplicationRequest {
271
330
  AccessScope?: number;
272
331
  }
273
332
  /**
274
- * ModifyPackageRenewFlag请求参数结构体
333
+ * 三层互通规则信息
275
334
  */
276
- export interface ModifyPackageRenewFlagRequest {
335
+ export interface L3ConnInfo {
277
336
  /**
278
- * <p>流量包的唯一资源ID</p>
337
+ * 互通规则ID
279
338
  */
280
- ResourceId: string;
339
+ L3ConnId?: string;
281
340
  /**
282
- * <p>自动续费标识。true代表自动续费,false代表不自动续费</p>
341
+ * 互通设备ID
283
342
  */
284
- RenewFlag: boolean;
343
+ DeviceId1?: string;
344
+ /**
345
+ * 互通规则CIDR
346
+ */
347
+ Cidr1?: string;
348
+ /**
349
+ * 互通设备ID
350
+ */
351
+ DeviceId2?: string;
352
+ /**
353
+ * 互通规则CIDR
354
+ */
355
+ Cidr2?: string;
356
+ /**
357
+ * 互通规则启用状态
358
+ */
359
+ Enable?: boolean;
360
+ /**
361
+ * 互通规则描述
362
+ */
363
+ Description?: string;
285
364
  }
286
365
  /**
287
366
  * GetFlowPackages返回参数结构体
@@ -516,6 +595,19 @@ export interface DeviceBaseInfo {
516
595
  */
517
596
  AllowedRegions?: Array<string>;
518
597
  }
598
+ /**
599
+ * ModifyPackageRenewFlag请求参数结构体
600
+ */
601
+ export interface ModifyPackageRenewFlagRequest {
602
+ /**
603
+ * <p>流量包的唯一资源ID</p>
604
+ */
605
+ ResourceId: string;
606
+ /**
607
+ * <p>自动续费标识。true代表自动续费,false代表不自动续费</p>
608
+ */
609
+ RenewFlag: boolean;
610
+ }
519
611
  /**
520
612
  * AddGroup请求参数结构体
521
613
  */
@@ -529,6 +621,19 @@ export interface AddGroupRequest {
529
621
  */
530
622
  Description?: string;
531
623
  }
624
+ /**
625
+ * ModifyDeviceAccessScope请求参数结构体
626
+ */
627
+ export interface ModifyDeviceAccessScopeRequest {
628
+ /**
629
+ * <p>设备ID</p>
630
+ */
631
+ DeviceIds: Array<string>;
632
+ /**
633
+ * <p>接入网关类型</p><p>枚举值:</p><ul><li>0: 公有云网关</li><li>1: 客户私有网关</li></ul><p>默认值:0</p><p>如果不传,则默认修改为接入公有云网关。</p>
634
+ */
635
+ AccessScope?: number;
636
+ }
532
637
  /**
533
638
  * GetGroupList请求参数结构体
534
639
  */
@@ -709,9 +814,36 @@ export interface UpdateApplicationInfoRequest {
709
814
  AccessScope?: number;
710
815
  }
711
816
  /**
712
- * GetPublicKey请求参数结构体
817
+ * DescribeAccessPointList请求参数结构体
713
818
  */
714
- export type GetPublicKeyRequest = null;
819
+ export interface DescribeAccessPointListRequest {
820
+ /**
821
+ * <p>地域列表</p>
822
+ */
823
+ Regions?: Array<string>;
824
+ }
825
+ /**
826
+ * UpdateCustomerGatewayCluster返回参数结构体
827
+ */
828
+ export interface UpdateCustomerGatewayClusterResponse {
829
+ /**
830
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
831
+ */
832
+ RequestId?: string;
833
+ }
834
+ /**
835
+ * AddL3Conn返回参数结构体
836
+ */
837
+ export interface AddL3ConnResponse {
838
+ /**
839
+ * 互通规则ID
840
+ */
841
+ L3ConnId?: string;
842
+ /**
843
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
844
+ */
845
+ RequestId?: string;
846
+ }
715
847
  /**
716
848
  * GetHardwareInfo请求参数结构体
717
849
  */
@@ -795,6 +927,31 @@ export interface GetFlowStatisticByGroupResponse {
795
927
  */
796
928
  RequestId?: string;
797
929
  }
930
+ /**
931
+ * AddGateway请求参数结构体
932
+ */
933
+ export interface AddGatewayRequest {
934
+ /**
935
+ * <p>集群 ID。可通过 GetCustomerGatewayClusterList 接口获取。</p>
936
+ */
937
+ ClusterId: string;
938
+ /**
939
+ * <p>网关登录用户名。最大 64 字符。</p>
940
+ */
941
+ Username: string;
942
+ /**
943
+ * <p>网关登录密码。最大 128 字符。</p>
944
+ */
945
+ Password: string;
946
+ /**
947
+ * <p>网关内网IP。</p>
948
+ */
949
+ GatewayIp: string;
950
+ /**
951
+ * <p>地域标识。最大 32 字符。例如 ap-guangzhou。可通过 DescribeAccessPointList 接口获取。</p>
952
+ */
953
+ RegionId?: string;
954
+ }
798
955
  /**
799
956
  * GetNetMonitor返回参数结构体
800
957
  */
@@ -812,6 +969,40 @@ export interface GetNetMonitorResponse {
812
969
  */
813
970
  RequestId?: string;
814
971
  }
972
+ /**
973
+ * GetNetMonitor请求参数结构体
974
+ */
975
+ export interface GetNetMonitorRequest {
976
+ /**
977
+ * <p>设备id</p>
978
+ */
979
+ DeviceId: string;
980
+ /**
981
+ * <p>开始时间</p>
982
+ */
983
+ BeginTime: number;
984
+ /**
985
+ * <p>结束时间</p>
986
+ */
987
+ EndTime: number;
988
+ /**
989
+ * <p>统计指标(上行速率:&quot;TxRate&quot;:bit/s,下行速率:&quot;RxRate&quot;:bit/s,丢包:&quot;Loss&quot;:%,时延:&quot;RTT&quot;:ms)</p>
990
+ */
991
+ Metrics: string;
992
+ /**
993
+ * <p>网关类型。0:公有云网关;1:自有网关。不传默认为0。</p>
994
+ */
995
+ GatewayType?: number;
996
+ }
997
+ /**
998
+ * ModifyDeviceAccessScope返回参数结构体
999
+ */
1000
+ export interface ModifyDeviceAccessScopeResponse {
1001
+ /**
1002
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1003
+ */
1004
+ RequestId?: string;
1005
+ }
815
1006
  /**
816
1007
  * GetFlowStatisticByName返回参数结构体
817
1008
  */
@@ -882,6 +1073,23 @@ export interface GetVendorHardwareRequest {
882
1073
  * CreateEncryptedKey请求参数结构体
883
1074
  */
884
1075
  export type CreateEncryptedKeyRequest = null;
1076
+ /**
1077
+ * AddCustomerGatewayCluster请求参数结构体
1078
+ */
1079
+ export interface AddCustomerGatewayClusterRequest {
1080
+ /**
1081
+ * <p>集群名称。最大 64 字符,支持字母、数字、中划线、下划线、点及中文。</p>
1082
+ */
1083
+ ClusterName: string;
1084
+ /**
1085
+ * <p>部署大区标识。最大 32 字符。例如 CN 表示中国大陆。</p>
1086
+ */
1087
+ BigArea: string;
1088
+ /**
1089
+ * <p>地域标识。最大 32 字符。例如 ap-guangzhou。</p>
1090
+ */
1091
+ RegionId?: string;
1092
+ }
885
1093
  /**
886
1094
  * DeleteDevice请求参数结构体
887
1095
  */
@@ -952,6 +1160,19 @@ export interface DescribeAccessRegionsResponse {
952
1160
  */
953
1161
  RequestId?: string;
954
1162
  }
1163
+ /**
1164
+ * UpdateCustomerGatewayCluster请求参数结构体
1165
+ */
1166
+ export interface UpdateCustomerGatewayClusterRequest {
1167
+ /**
1168
+ * <p>集群 ID。可通过 GetCustomerGatewayClusterList 接口获取。</p>
1169
+ */
1170
+ ClusterId: string;
1171
+ /**
1172
+ * <p>公网访问 IP。最大 64 字符,需为合法的 IPv4 或 IPv6 地址。</p>
1173
+ */
1174
+ PublicIp: string;
1175
+ }
955
1176
  /**
956
1177
  * GetL3ConnList返回参数结构体
957
1178
  */
@@ -973,6 +1194,15 @@ export interface GetL3ConnListResponse {
973
1194
  */
974
1195
  RequestId?: string;
975
1196
  }
1197
+ /**
1198
+ * DeleteCustomerGatewayCluster请求参数结构体
1199
+ */
1200
+ export interface DeleteCustomerGatewayClusterRequest {
1201
+ /**
1202
+ * <p>集群 ID。可通过 GetCustomerGatewayClusterList 接口获取。</p>
1203
+ */
1204
+ ClusterId: string;
1205
+ }
976
1206
  /**
977
1207
  * 分组的基本信息
978
1208
  */
@@ -1064,59 +1294,21 @@ export interface GetDestIPByNameResponse {
1064
1294
  */
1065
1295
  export type DescribeAccessRegionsRequest = null;
1066
1296
  /**
1067
- * 厂商硬件详细信息
1297
+ * DeleteGateway请求参数结构体
1068
1298
  */
1069
- export interface VendorHardware {
1070
- /**
1071
- * 硬件id
1072
- */
1073
- HardwareId?: string;
1074
- /**
1075
- * 硬件序列号
1076
- */
1077
- SN?: string;
1078
- /**
1079
- * 创建时间
1080
- */
1081
- CreateTime?: string;
1082
- /**
1083
- * 激活状态, 空:全部; 1:待激活; 2:已激活
1084
- */
1085
- Status?: number;
1086
- /**
1087
- * 激活时间
1088
- */
1089
- ActiveTime?: string;
1090
- /**
1091
- * 厂商备注
1092
- */
1093
- Description?: string;
1094
- /**
1095
- * 设备id
1096
- */
1097
- DeviceId?: string;
1098
- /**
1099
- * license计费模式: 1,租户月付费 2,厂商月付费 3,license永久授权
1100
- 注:设备为租户付费且未激活(未选择月付还是永久付费)时,此参数返回1,仅代表租户付费。后续将废弃此参数,新接入请使用LicensePayMode和Payer
1101
- */
1102
- LicenseChargingMode?: number;
1299
+ export interface DeleteGatewayRequest {
1103
1300
  /**
1104
- * 最后在线时间
1301
+ * <p>集群 ID。可通过 GetCustomerGatewayClusterList 接口获取。</p>
1105
1302
  */
1106
- LastOnlineTime?: string;
1303
+ ClusterId: string;
1107
1304
  /**
1108
- * license授权有效期
1109
- 0:月度授权
1110
- 1:永久授权
1111
- -1:未知
1305
+ * <p>网关ID。</p>
1112
1306
  */
1113
- LicensePayMode?: number;
1307
+ GatewayId: string;
1114
1308
  /**
1115
- * 付费方
1116
- 0:客户付费
1117
- 1:厂商付费
1309
+ * <p>网关内网IP。</p>
1118
1310
  */
1119
- Payer?: number;
1311
+ GatewayIp: string;
1120
1312
  }
1121
1313
  /**
1122
1314
  * GetDevice请求参数结构体
@@ -1140,6 +1332,35 @@ export interface ActivateHardwareResponse {
1140
1332
  */
1141
1333
  RequestId?: string;
1142
1334
  }
1335
+ /**
1336
+ * 客户自有网关集群信息
1337
+ */
1338
+ export interface GatewayClusterInfo {
1339
+ /**
1340
+ * <p>集群 ID。</p>
1341
+ */
1342
+ ClusterId?: string;
1343
+ /**
1344
+ * <p>集群名称。</p>
1345
+ */
1346
+ ClusterName?: string;
1347
+ /**
1348
+ * <p>创建时间。</p>
1349
+ */
1350
+ CreateTime?: number;
1351
+ /**
1352
+ * <p>公网访问 IP。</p>
1353
+ */
1354
+ PublicIp?: string;
1355
+ /**
1356
+ * <p>集群下网关实例数量。</p>
1357
+ */
1358
+ InstanceCount?: number;
1359
+ /**
1360
+ * <p>网关列表。</p>
1361
+ */
1362
+ GatewayList?: Array<GatewayInfo>;
1363
+ }
1143
1364
  /**
1144
1365
  * GetFlowStatisticByGroup请求参数结构体
1145
1366
  */
@@ -1199,18 +1420,9 @@ export interface GetDevicesResponse {
1199
1420
  RequestId?: string;
1200
1421
  }
1201
1422
  /**
1202
- * AddL3Conn返回参数结构体
1423
+ * GetPublicKey请求参数结构体
1203
1424
  */
1204
- export interface AddL3ConnResponse {
1205
- /**
1206
- * 互通规则ID
1207
- */
1208
- L3ConnId?: string;
1209
- /**
1210
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1211
- */
1212
- RequestId?: string;
1213
- }
1425
+ export type GetPublicKeyRequest = null;
1214
1426
  /**
1215
1427
  * GetDestIPByName请求参数结构体
1216
1428
  */
@@ -1362,6 +1574,61 @@ export interface SlotNetInfo {
1362
1574
  */
1363
1575
  Current?: number;
1364
1576
  }
1577
+ /**
1578
+ * 厂商硬件详细信息
1579
+ */
1580
+ export interface VendorHardware {
1581
+ /**
1582
+ * 硬件id
1583
+ */
1584
+ HardwareId?: string;
1585
+ /**
1586
+ * 硬件序列号
1587
+ */
1588
+ SN?: string;
1589
+ /**
1590
+ * 创建时间
1591
+ */
1592
+ CreateTime?: string;
1593
+ /**
1594
+ * 激活状态, 空:全部; 1:待激活; 2:已激活
1595
+ */
1596
+ Status?: number;
1597
+ /**
1598
+ * 激活时间
1599
+ */
1600
+ ActiveTime?: string;
1601
+ /**
1602
+ * 厂商备注
1603
+ */
1604
+ Description?: string;
1605
+ /**
1606
+ * 设备id
1607
+ */
1608
+ DeviceId?: string;
1609
+ /**
1610
+ * license计费模式: 1,租户月付费 2,厂商月付费 3,license永久授权
1611
+ 注:设备为租户付费且未激活(未选择月付还是永久付费)时,此参数返回1,仅代表租户付费。后续将废弃此参数,新接入请使用LicensePayMode和Payer
1612
+ */
1613
+ LicenseChargingMode?: number;
1614
+ /**
1615
+ * 最后在线时间
1616
+ */
1617
+ LastOnlineTime?: string;
1618
+ /**
1619
+ * license授权有效期
1620
+ 0:月度授权
1621
+ 1:永久授权
1622
+ -1:未知
1623
+ */
1624
+ LicensePayMode?: number;
1625
+ /**
1626
+ * 付费方
1627
+ 0:客户付费
1628
+ 1:厂商付费
1629
+ */
1630
+ Payer?: number;
1631
+ }
1365
1632
  /**
1366
1633
  * 设备网络状态信息
1367
1634
  */
@@ -1571,6 +1838,32 @@ export interface GetFlowStatisticByNameRequest {
1571
1838
  */
1572
1839
  DeviceList?: Array<string>;
1573
1840
  }
1841
+ /**
1842
+ * DescribeAccessPointList返回参数结构体
1843
+ */
1844
+ export interface DescribeAccessPointListResponse {
1845
+ /**
1846
+ * <p>接入点列表</p>
1847
+ */
1848
+ AccessPointList?: Array<AccessPointInfo>;
1849
+ /**
1850
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1851
+ */
1852
+ RequestId?: string;
1853
+ }
1854
+ /**
1855
+ * AddCustomerGatewayCluster返回参数结构体
1856
+ */
1857
+ export interface AddCustomerGatewayClusterResponse {
1858
+ /**
1859
+ * <p>集群 ID。</p>
1860
+ */
1861
+ ClusterId?: string;
1862
+ /**
1863
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1864
+ */
1865
+ RequestId?: string;
1866
+ }
1574
1867
  /**
1575
1868
  * 设备详细信息
1576
1869
  */
@@ -1596,19 +1889,6 @@ export interface DeviceDetails {
1596
1889
  */
1597
1890
  BusinessUpRate?: number;
1598
1891
  }
1599
- /**
1600
- * GroupDeleteDevice请求参数结构体
1601
- */
1602
- export interface GroupDeleteDeviceRequest {
1603
- /**
1604
- * 分组ID
1605
- */
1606
- GroupId: string;
1607
- /**
1608
- * 待删除的设备列表
1609
- */
1610
- DeviceList: Array<string>;
1611
- }
1612
1892
  /**
1613
1893
  * GetHardwareInfo返回参数结构体
1614
1894
  */
@@ -1663,17 +1943,13 @@ export interface GetFlowStatisticByRegionResponse {
1663
1943
  RequestId?: string;
1664
1944
  }
1665
1945
  /**
1666
- * 激活设备数统计
1946
+ * ActivateHardware请求参数结构体
1667
1947
  */
1668
- export interface ActiveDeviceList {
1669
- /**
1670
- * 数量
1671
- */
1672
- Count?: number;
1948
+ export interface ActivateHardwareRequest {
1673
1949
  /**
1674
- * 时间
1950
+ * 待激活的设备列表
1675
1951
  */
1676
- Time?: string;
1952
+ Hardware: Array<ActivateHardware>;
1677
1953
  }
1678
1954
  /**
1679
1955
  * GetMultiFlowStatistic请求参数结构体
@@ -2125,29 +2401,17 @@ export interface UpdateHardwareRequest {
2125
2401
  Description?: string;
2126
2402
  }
2127
2403
  /**
2128
- * GetNetMonitor请求参数结构体
2404
+ * 激活设备数统计
2129
2405
  */
2130
- export interface GetNetMonitorRequest {
2131
- /**
2132
- * <p>设备id</p>
2133
- */
2134
- DeviceId: string;
2135
- /**
2136
- * <p>开始时间</p>
2137
- */
2138
- BeginTime: number;
2139
- /**
2140
- * <p>结束时间</p>
2141
- */
2142
- EndTime: number;
2406
+ export interface ActiveDeviceList {
2143
2407
  /**
2144
- * <p>统计指标(上行速率:&quot;TxRate&quot;:bit/s,下行速率:&quot;RxRate&quot;:bit/s,丢包:&quot;Loss&quot;:%,时延:&quot;RTT&quot;:ms)</p>
2408
+ * 数量
2145
2409
  */
2146
- Metrics: string;
2410
+ Count?: number;
2147
2411
  /**
2148
- * <p>网关类型。0:公有云网关;1:自有网关。不传默认为0。</p>
2412
+ * 时间
2149
2413
  */
2150
- GatewayType?: number;
2414
+ Time?: string;
2151
2415
  }
2152
2416
  /**
2153
2417
  * GetNetMonitorByName请求参数结构体
@@ -2261,46 +2525,30 @@ export interface RegionInfo {
2261
2525
  RegionAbbr?: string;
2262
2526
  }
2263
2527
  /**
2264
- * 三层互通规则信息
2528
+ * GetCustomerGatewayClusterList请求参数结构体
2265
2529
  */
2266
- export interface L3ConnInfo {
2267
- /**
2268
- * 互通规则ID
2269
- */
2270
- L3ConnId?: string;
2271
- /**
2272
- * 互通设备ID
2273
- */
2274
- DeviceId1?: string;
2275
- /**
2276
- * 互通规则CIDR
2277
- */
2278
- Cidr1?: string;
2279
- /**
2280
- * 互通设备ID
2281
- */
2282
- DeviceId2?: string;
2530
+ export interface GetCustomerGatewayClusterListRequest {
2283
2531
  /**
2284
- * 互通规则CIDR
2532
+ * <p>按集群名称模糊匹配的关键字。最大 64 字符。</p>
2285
2533
  */
2286
- Cidr2?: string;
2534
+ Keyword?: string;
2287
2535
  /**
2288
- * 互通规则启用状态
2536
+ * <p>当前查看页码。</p>
2289
2537
  */
2290
- Enable?: boolean;
2538
+ PageNumber?: number;
2291
2539
  /**
2292
- * 互通规则描述
2540
+ * <p>每页显示记录数。</p>
2293
2541
  */
2294
- Description?: string;
2542
+ PageSize?: number;
2295
2543
  }
2296
2544
  /**
2297
- * ActivateHardware请求参数结构体
2545
+ * DeleteCustomerGatewayCluster返回参数结构体
2298
2546
  */
2299
- export interface ActivateHardwareRequest {
2547
+ export interface DeleteCustomerGatewayClusterResponse {
2300
2548
  /**
2301
- * 待激活的设备列表
2549
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2302
2550
  */
2303
- Hardware: Array<ActivateHardware>;
2551
+ RequestId?: string;
2304
2552
  }
2305
2553
  /**
2306
2554
  * GetMonitorDataByName返回参数结构体
@@ -2328,6 +2576,15 @@ export interface GroupAddDeviceResponse {
2328
2576
  */
2329
2577
  RequestId?: string;
2330
2578
  }
2579
+ /**
2580
+ * DeleteGateway返回参数结构体
2581
+ */
2582
+ export interface DeleteGatewayResponse {
2583
+ /**
2584
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2585
+ */
2586
+ RequestId?: string;
2587
+ }
2331
2588
  /**
2332
2589
  * GetStatisticData请求参数结构体
2333
2590
  */
@@ -2626,6 +2883,31 @@ export interface DeleteDeviceResponse {
2626
2883
  */
2627
2884
  RequestId?: string;
2628
2885
  }
2886
+ /**
2887
+ * AddGateway返回参数结构体
2888
+ */
2889
+ export interface AddGatewayResponse {
2890
+ /**
2891
+ * <p>网关ID。</p>
2892
+ */
2893
+ GatewayId?: string;
2894
+ /**
2895
+ * <p>网关鉴权 Token。</p>
2896
+ */
2897
+ Token?: string;
2898
+ /**
2899
+ * <p>网关注册地址。</p>
2900
+ */
2901
+ RegisterCenterUrl?: string;
2902
+ /**
2903
+ * <p>网关上报地址。</p>
2904
+ */
2905
+ TelemetryUrl?: string;
2906
+ /**
2907
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2908
+ */
2909
+ RequestId?: string;
2910
+ }
2629
2911
  /**
2630
2912
  * AddHardware请求参数结构体
2631
2913
  */