@alicloud/csas20230120 1.2.1 → 1.3.0
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/dist/client.d.ts +230 -153
- package/dist/client.js +135 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +320 -153
package/dist/client.d.ts
CHANGED
|
@@ -43,11 +43,11 @@ export declare class AttachApplication2ConnectorResponseBody extends $tea.Model
|
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
45
|
export declare class AttachApplication2ConnectorResponse extends $tea.Model {
|
|
46
|
-
headers
|
|
46
|
+
headers?: {
|
|
47
47
|
[key: string]: string;
|
|
48
48
|
};
|
|
49
|
-
statusCode
|
|
50
|
-
body
|
|
49
|
+
statusCode?: number;
|
|
50
|
+
body?: AttachApplication2ConnectorResponseBody;
|
|
51
51
|
static names(): {
|
|
52
52
|
[key: string]: string;
|
|
53
53
|
};
|
|
@@ -93,11 +93,11 @@ export declare class CreateDynamicRouteResponseBody extends $tea.Model {
|
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
export declare class CreateDynamicRouteResponse extends $tea.Model {
|
|
96
|
-
headers
|
|
96
|
+
headers?: {
|
|
97
97
|
[key: string]: string;
|
|
98
98
|
};
|
|
99
|
-
statusCode
|
|
100
|
-
body
|
|
99
|
+
statusCode?: number;
|
|
100
|
+
body?: CreateDynamicRouteResponseBody;
|
|
101
101
|
static names(): {
|
|
102
102
|
[key: string]: string;
|
|
103
103
|
};
|
|
@@ -140,11 +140,11 @@ export declare class CreatePrivateAccessApplicationResponseBody extends $tea.Mod
|
|
|
140
140
|
});
|
|
141
141
|
}
|
|
142
142
|
export declare class CreatePrivateAccessApplicationResponse extends $tea.Model {
|
|
143
|
-
headers
|
|
143
|
+
headers?: {
|
|
144
144
|
[key: string]: string;
|
|
145
145
|
};
|
|
146
|
-
statusCode
|
|
147
|
-
body
|
|
146
|
+
statusCode?: number;
|
|
147
|
+
body?: CreatePrivateAccessApplicationResponseBody;
|
|
148
148
|
static names(): {
|
|
149
149
|
[key: string]: string;
|
|
150
150
|
};
|
|
@@ -160,6 +160,7 @@ export declare class CreatePrivateAccessPolicyRequest extends $tea.Model {
|
|
|
160
160
|
applicationType?: string;
|
|
161
161
|
customUserAttributes?: CreatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
162
162
|
description?: string;
|
|
163
|
+
deviceAttributeId?: string;
|
|
163
164
|
name?: string;
|
|
164
165
|
policyAction?: string;
|
|
165
166
|
priority?: number;
|
|
@@ -191,11 +192,11 @@ export declare class CreatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
191
192
|
});
|
|
192
193
|
}
|
|
193
194
|
export declare class CreatePrivateAccessPolicyResponse extends $tea.Model {
|
|
194
|
-
headers
|
|
195
|
+
headers?: {
|
|
195
196
|
[key: string]: string;
|
|
196
197
|
};
|
|
197
|
-
statusCode
|
|
198
|
-
body
|
|
198
|
+
statusCode?: number;
|
|
199
|
+
body?: CreatePrivateAccessPolicyResponseBody;
|
|
199
200
|
static names(): {
|
|
200
201
|
[key: string]: string;
|
|
201
202
|
};
|
|
@@ -233,11 +234,11 @@ export declare class CreatePrivateAccessTagResponseBody extends $tea.Model {
|
|
|
233
234
|
});
|
|
234
235
|
}
|
|
235
236
|
export declare class CreatePrivateAccessTagResponse extends $tea.Model {
|
|
236
|
-
headers
|
|
237
|
+
headers?: {
|
|
237
238
|
[key: string]: string;
|
|
238
239
|
};
|
|
239
|
-
statusCode
|
|
240
|
-
body
|
|
240
|
+
statusCode?: number;
|
|
241
|
+
body?: CreatePrivateAccessTagResponseBody;
|
|
241
242
|
static names(): {
|
|
242
243
|
[key: string]: string;
|
|
243
244
|
};
|
|
@@ -306,11 +307,11 @@ export declare class CreateRegistrationPolicyResponseBody extends $tea.Model {
|
|
|
306
307
|
});
|
|
307
308
|
}
|
|
308
309
|
export declare class CreateRegistrationPolicyResponse extends $tea.Model {
|
|
309
|
-
headers
|
|
310
|
+
headers?: {
|
|
310
311
|
[key: string]: string;
|
|
311
312
|
};
|
|
312
|
-
statusCode
|
|
313
|
-
body
|
|
313
|
+
statusCode?: number;
|
|
314
|
+
body?: CreateRegistrationPolicyResponseBody;
|
|
314
315
|
static names(): {
|
|
315
316
|
[key: string]: string;
|
|
316
317
|
};
|
|
@@ -349,11 +350,11 @@ export declare class CreateUserGroupResponseBody extends $tea.Model {
|
|
|
349
350
|
});
|
|
350
351
|
}
|
|
351
352
|
export declare class CreateUserGroupResponse extends $tea.Model {
|
|
352
|
-
headers
|
|
353
|
+
headers?: {
|
|
353
354
|
[key: string]: string;
|
|
354
355
|
};
|
|
355
|
-
statusCode
|
|
356
|
-
body
|
|
356
|
+
statusCode?: number;
|
|
357
|
+
body?: CreateUserGroupResponseBody;
|
|
357
358
|
static names(): {
|
|
358
359
|
[key: string]: string;
|
|
359
360
|
};
|
|
@@ -389,11 +390,11 @@ export declare class DeleteDynamicRouteResponseBody extends $tea.Model {
|
|
|
389
390
|
});
|
|
390
391
|
}
|
|
391
392
|
export declare class DeleteDynamicRouteResponse extends $tea.Model {
|
|
392
|
-
headers
|
|
393
|
+
headers?: {
|
|
393
394
|
[key: string]: string;
|
|
394
395
|
};
|
|
395
|
-
statusCode
|
|
396
|
-
body
|
|
396
|
+
statusCode?: number;
|
|
397
|
+
body?: DeleteDynamicRouteResponseBody;
|
|
397
398
|
static names(): {
|
|
398
399
|
[key: string]: string;
|
|
399
400
|
};
|
|
@@ -429,11 +430,11 @@ export declare class DeletePrivateAccessApplicationResponseBody extends $tea.Mod
|
|
|
429
430
|
});
|
|
430
431
|
}
|
|
431
432
|
export declare class DeletePrivateAccessApplicationResponse extends $tea.Model {
|
|
432
|
-
headers
|
|
433
|
+
headers?: {
|
|
433
434
|
[key: string]: string;
|
|
434
435
|
};
|
|
435
|
-
statusCode
|
|
436
|
-
body
|
|
436
|
+
statusCode?: number;
|
|
437
|
+
body?: DeletePrivateAccessApplicationResponseBody;
|
|
437
438
|
static names(): {
|
|
438
439
|
[key: string]: string;
|
|
439
440
|
};
|
|
@@ -469,11 +470,11 @@ export declare class DeletePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
469
470
|
});
|
|
470
471
|
}
|
|
471
472
|
export declare class DeletePrivateAccessPolicyResponse extends $tea.Model {
|
|
472
|
-
headers
|
|
473
|
+
headers?: {
|
|
473
474
|
[key: string]: string;
|
|
474
475
|
};
|
|
475
|
-
statusCode
|
|
476
|
-
body
|
|
476
|
+
statusCode?: number;
|
|
477
|
+
body?: DeletePrivateAccessPolicyResponseBody;
|
|
477
478
|
static names(): {
|
|
478
479
|
[key: string]: string;
|
|
479
480
|
};
|
|
@@ -509,11 +510,11 @@ export declare class DeletePrivateAccessTagResponseBody extends $tea.Model {
|
|
|
509
510
|
});
|
|
510
511
|
}
|
|
511
512
|
export declare class DeletePrivateAccessTagResponse extends $tea.Model {
|
|
512
|
-
headers
|
|
513
|
+
headers?: {
|
|
513
514
|
[key: string]: string;
|
|
514
515
|
};
|
|
515
|
-
statusCode
|
|
516
|
-
body
|
|
516
|
+
statusCode?: number;
|
|
517
|
+
body?: DeletePrivateAccessTagResponseBody;
|
|
517
518
|
static names(): {
|
|
518
519
|
[key: string]: string;
|
|
519
520
|
};
|
|
@@ -549,11 +550,11 @@ export declare class DeleteRegistrationPoliciesResponseBody extends $tea.Model {
|
|
|
549
550
|
});
|
|
550
551
|
}
|
|
551
552
|
export declare class DeleteRegistrationPoliciesResponse extends $tea.Model {
|
|
552
|
-
headers
|
|
553
|
+
headers?: {
|
|
553
554
|
[key: string]: string;
|
|
554
555
|
};
|
|
555
|
-
statusCode
|
|
556
|
-
body
|
|
556
|
+
statusCode?: number;
|
|
557
|
+
body?: DeleteRegistrationPoliciesResponseBody;
|
|
557
558
|
static names(): {
|
|
558
559
|
[key: string]: string;
|
|
559
560
|
};
|
|
@@ -589,11 +590,11 @@ export declare class DeleteUserGroupResponseBody extends $tea.Model {
|
|
|
589
590
|
});
|
|
590
591
|
}
|
|
591
592
|
export declare class DeleteUserGroupResponse extends $tea.Model {
|
|
592
|
-
headers
|
|
593
|
+
headers?: {
|
|
593
594
|
[key: string]: string;
|
|
594
595
|
};
|
|
595
|
-
statusCode
|
|
596
|
-
body
|
|
596
|
+
statusCode?: number;
|
|
597
|
+
body?: DeleteUserGroupResponseBody;
|
|
597
598
|
static names(): {
|
|
598
599
|
[key: string]: string;
|
|
599
600
|
};
|
|
@@ -643,11 +644,11 @@ export declare class DetachApplication2ConnectorResponseBody extends $tea.Model
|
|
|
643
644
|
});
|
|
644
645
|
}
|
|
645
646
|
export declare class DetachApplication2ConnectorResponse extends $tea.Model {
|
|
646
|
-
headers
|
|
647
|
+
headers?: {
|
|
647
648
|
[key: string]: string;
|
|
648
649
|
};
|
|
649
|
-
statusCode
|
|
650
|
-
body
|
|
650
|
+
statusCode?: number;
|
|
651
|
+
body?: DetachApplication2ConnectorResponseBody;
|
|
651
652
|
static names(): {
|
|
652
653
|
[key: string]: string;
|
|
653
654
|
};
|
|
@@ -684,11 +685,11 @@ export declare class GetDynamicRouteResponseBody extends $tea.Model {
|
|
|
684
685
|
});
|
|
685
686
|
}
|
|
686
687
|
export declare class GetDynamicRouteResponse extends $tea.Model {
|
|
687
|
-
headers
|
|
688
|
+
headers?: {
|
|
688
689
|
[key: string]: string;
|
|
689
690
|
};
|
|
690
|
-
statusCode
|
|
691
|
-
body
|
|
691
|
+
statusCode?: number;
|
|
692
|
+
body?: GetDynamicRouteResponseBody;
|
|
692
693
|
static names(): {
|
|
693
694
|
[key: string]: string;
|
|
694
695
|
};
|
|
@@ -725,11 +726,11 @@ export declare class GetPrivateAccessApplicationResponseBody extends $tea.Model
|
|
|
725
726
|
});
|
|
726
727
|
}
|
|
727
728
|
export declare class GetPrivateAccessApplicationResponse extends $tea.Model {
|
|
728
|
-
headers
|
|
729
|
+
headers?: {
|
|
729
730
|
[key: string]: string;
|
|
730
731
|
};
|
|
731
|
-
statusCode
|
|
732
|
-
body
|
|
732
|
+
statusCode?: number;
|
|
733
|
+
body?: GetPrivateAccessApplicationResponseBody;
|
|
733
734
|
static names(): {
|
|
734
735
|
[key: string]: string;
|
|
735
736
|
};
|
|
@@ -766,11 +767,11 @@ export declare class GetPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
766
767
|
});
|
|
767
768
|
}
|
|
768
769
|
export declare class GetPrivateAccessPolicyResponse extends $tea.Model {
|
|
769
|
-
headers
|
|
770
|
+
headers?: {
|
|
770
771
|
[key: string]: string;
|
|
771
772
|
};
|
|
772
|
-
statusCode
|
|
773
|
-
body
|
|
773
|
+
statusCode?: number;
|
|
774
|
+
body?: GetPrivateAccessPolicyResponseBody;
|
|
774
775
|
static names(): {
|
|
775
776
|
[key: string]: string;
|
|
776
777
|
};
|
|
@@ -816,11 +817,11 @@ export declare class GetRegistrationPolicyResponseBody extends $tea.Model {
|
|
|
816
817
|
});
|
|
817
818
|
}
|
|
818
819
|
export declare class GetRegistrationPolicyResponse extends $tea.Model {
|
|
819
|
-
headers
|
|
820
|
+
headers?: {
|
|
820
821
|
[key: string]: string;
|
|
821
822
|
};
|
|
822
|
-
statusCode
|
|
823
|
-
body
|
|
823
|
+
statusCode?: number;
|
|
824
|
+
body?: GetRegistrationPolicyResponseBody;
|
|
824
825
|
static names(): {
|
|
825
826
|
[key: string]: string;
|
|
826
827
|
};
|
|
@@ -857,11 +858,11 @@ export declare class GetUserDeviceResponseBody extends $tea.Model {
|
|
|
857
858
|
});
|
|
858
859
|
}
|
|
859
860
|
export declare class GetUserDeviceResponse extends $tea.Model {
|
|
860
|
-
headers
|
|
861
|
+
headers?: {
|
|
861
862
|
[key: string]: string;
|
|
862
863
|
};
|
|
863
|
-
statusCode
|
|
864
|
-
body
|
|
864
|
+
statusCode?: number;
|
|
865
|
+
body?: GetUserDeviceResponseBody;
|
|
865
866
|
static names(): {
|
|
866
867
|
[key: string]: string;
|
|
867
868
|
};
|
|
@@ -898,11 +899,11 @@ export declare class GetUserGroupResponseBody extends $tea.Model {
|
|
|
898
899
|
});
|
|
899
900
|
}
|
|
900
901
|
export declare class GetUserGroupResponse extends $tea.Model {
|
|
901
|
-
headers
|
|
902
|
+
headers?: {
|
|
902
903
|
[key: string]: string;
|
|
903
904
|
};
|
|
904
|
-
statusCode
|
|
905
|
-
body
|
|
905
|
+
statusCode?: number;
|
|
906
|
+
body?: GetUserGroupResponseBody;
|
|
906
907
|
static names(): {
|
|
907
908
|
[key: string]: string;
|
|
908
909
|
};
|
|
@@ -939,11 +940,11 @@ export declare class ListApplicationsForPrivateAccessPolicyResponseBody extends
|
|
|
939
940
|
});
|
|
940
941
|
}
|
|
941
942
|
export declare class ListApplicationsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
942
|
-
headers
|
|
943
|
+
headers?: {
|
|
943
944
|
[key: string]: string;
|
|
944
945
|
};
|
|
945
|
-
statusCode
|
|
946
|
-
body
|
|
946
|
+
statusCode?: number;
|
|
947
|
+
body?: ListApplicationsForPrivateAccessPolicyResponseBody;
|
|
947
948
|
static names(): {
|
|
948
949
|
[key: string]: string;
|
|
949
950
|
};
|
|
@@ -980,11 +981,11 @@ export declare class ListApplicationsForPrivateAccessTagResponseBody extends $te
|
|
|
980
981
|
});
|
|
981
982
|
}
|
|
982
983
|
export declare class ListApplicationsForPrivateAccessTagResponse extends $tea.Model {
|
|
983
|
-
headers
|
|
984
|
+
headers?: {
|
|
984
985
|
[key: string]: string;
|
|
985
986
|
};
|
|
986
|
-
statusCode
|
|
987
|
-
body
|
|
987
|
+
statusCode?: number;
|
|
988
|
+
body?: ListApplicationsForPrivateAccessTagResponseBody;
|
|
988
989
|
static names(): {
|
|
989
990
|
[key: string]: string;
|
|
990
991
|
};
|
|
@@ -1027,11 +1028,11 @@ export declare class ListConnectorsResponseBody extends $tea.Model {
|
|
|
1027
1028
|
});
|
|
1028
1029
|
}
|
|
1029
1030
|
export declare class ListConnectorsResponse extends $tea.Model {
|
|
1030
|
-
headers
|
|
1031
|
+
headers?: {
|
|
1031
1032
|
[key: string]: string;
|
|
1032
1033
|
};
|
|
1033
|
-
statusCode
|
|
1034
|
-
body
|
|
1034
|
+
statusCode?: number;
|
|
1035
|
+
body?: ListConnectorsResponseBody;
|
|
1035
1036
|
static names(): {
|
|
1036
1037
|
[key: string]: string;
|
|
1037
1038
|
};
|
|
@@ -1057,11 +1058,11 @@ export declare class ListDynamicRouteRegionsResponseBody extends $tea.Model {
|
|
|
1057
1058
|
});
|
|
1058
1059
|
}
|
|
1059
1060
|
export declare class ListDynamicRouteRegionsResponse extends $tea.Model {
|
|
1060
|
-
headers
|
|
1061
|
+
headers?: {
|
|
1061
1062
|
[key: string]: string;
|
|
1062
1063
|
};
|
|
1063
|
-
statusCode
|
|
1064
|
-
body
|
|
1064
|
+
statusCode?: number;
|
|
1065
|
+
body?: ListDynamicRouteRegionsResponseBody;
|
|
1065
1066
|
static names(): {
|
|
1066
1067
|
[key: string]: string;
|
|
1067
1068
|
};
|
|
@@ -1107,11 +1108,11 @@ export declare class ListDynamicRoutesResponseBody extends $tea.Model {
|
|
|
1107
1108
|
});
|
|
1108
1109
|
}
|
|
1109
1110
|
export declare class ListDynamicRoutesResponse extends $tea.Model {
|
|
1110
|
-
headers
|
|
1111
|
+
headers?: {
|
|
1111
1112
|
[key: string]: string;
|
|
1112
1113
|
};
|
|
1113
|
-
statusCode
|
|
1114
|
-
body
|
|
1114
|
+
statusCode?: number;
|
|
1115
|
+
body?: ListDynamicRoutesResponseBody;
|
|
1115
1116
|
static names(): {
|
|
1116
1117
|
[key: string]: string;
|
|
1117
1118
|
};
|
|
@@ -1158,11 +1159,11 @@ export declare class ListExcessiveDeviceRegistrationApplicationsResponseBody ext
|
|
|
1158
1159
|
});
|
|
1159
1160
|
}
|
|
1160
1161
|
export declare class ListExcessiveDeviceRegistrationApplicationsResponse extends $tea.Model {
|
|
1161
|
-
headers
|
|
1162
|
+
headers?: {
|
|
1162
1163
|
[key: string]: string;
|
|
1163
1164
|
};
|
|
1164
|
-
statusCode
|
|
1165
|
-
body
|
|
1165
|
+
statusCode?: number;
|
|
1166
|
+
body?: ListExcessiveDeviceRegistrationApplicationsResponseBody;
|
|
1166
1167
|
static names(): {
|
|
1167
1168
|
[key: string]: string;
|
|
1168
1169
|
};
|
|
@@ -1199,11 +1200,11 @@ export declare class ListPolicesForPrivateAccessApplicationResponseBody extends
|
|
|
1199
1200
|
});
|
|
1200
1201
|
}
|
|
1201
1202
|
export declare class ListPolicesForPrivateAccessApplicationResponse extends $tea.Model {
|
|
1202
|
-
headers
|
|
1203
|
+
headers?: {
|
|
1203
1204
|
[key: string]: string;
|
|
1204
1205
|
};
|
|
1205
|
-
statusCode
|
|
1206
|
-
body
|
|
1206
|
+
statusCode?: number;
|
|
1207
|
+
body?: ListPolicesForPrivateAccessApplicationResponseBody;
|
|
1207
1208
|
static names(): {
|
|
1208
1209
|
[key: string]: string;
|
|
1209
1210
|
};
|
|
@@ -1240,11 +1241,11 @@ export declare class ListPolicesForPrivateAccessTagResponseBody extends $tea.Mod
|
|
|
1240
1241
|
});
|
|
1241
1242
|
}
|
|
1242
1243
|
export declare class ListPolicesForPrivateAccessTagResponse extends $tea.Model {
|
|
1243
|
-
headers
|
|
1244
|
+
headers?: {
|
|
1244
1245
|
[key: string]: string;
|
|
1245
1246
|
};
|
|
1246
|
-
statusCode
|
|
1247
|
-
body
|
|
1247
|
+
statusCode?: number;
|
|
1248
|
+
body?: ListPolicesForPrivateAccessTagResponseBody;
|
|
1248
1249
|
static names(): {
|
|
1249
1250
|
[key: string]: string;
|
|
1250
1251
|
};
|
|
@@ -1281,11 +1282,54 @@ export declare class ListPolicesForUserGroupResponseBody extends $tea.Model {
|
|
|
1281
1282
|
});
|
|
1282
1283
|
}
|
|
1283
1284
|
export declare class ListPolicesForUserGroupResponse extends $tea.Model {
|
|
1284
|
-
headers
|
|
1285
|
+
headers?: {
|
|
1285
1286
|
[key: string]: string;
|
|
1286
1287
|
};
|
|
1287
|
-
statusCode
|
|
1288
|
-
body
|
|
1288
|
+
statusCode?: number;
|
|
1289
|
+
body?: ListPolicesForUserGroupResponseBody;
|
|
1290
|
+
static names(): {
|
|
1291
|
+
[key: string]: string;
|
|
1292
|
+
};
|
|
1293
|
+
static types(): {
|
|
1294
|
+
[key: string]: any;
|
|
1295
|
+
};
|
|
1296
|
+
constructor(map?: {
|
|
1297
|
+
[key: string]: any;
|
|
1298
|
+
});
|
|
1299
|
+
}
|
|
1300
|
+
export declare class ListPopTrafficStatisticsRequest extends $tea.Model {
|
|
1301
|
+
endTime?: string;
|
|
1302
|
+
region?: string;
|
|
1303
|
+
startTime?: string;
|
|
1304
|
+
static names(): {
|
|
1305
|
+
[key: string]: string;
|
|
1306
|
+
};
|
|
1307
|
+
static types(): {
|
|
1308
|
+
[key: string]: any;
|
|
1309
|
+
};
|
|
1310
|
+
constructor(map?: {
|
|
1311
|
+
[key: string]: any;
|
|
1312
|
+
});
|
|
1313
|
+
}
|
|
1314
|
+
export declare class ListPopTrafficStatisticsResponseBody extends $tea.Model {
|
|
1315
|
+
requestId?: string;
|
|
1316
|
+
trafficData?: ListPopTrafficStatisticsResponseBodyTrafficData[];
|
|
1317
|
+
static names(): {
|
|
1318
|
+
[key: string]: string;
|
|
1319
|
+
};
|
|
1320
|
+
static types(): {
|
|
1321
|
+
[key: string]: any;
|
|
1322
|
+
};
|
|
1323
|
+
constructor(map?: {
|
|
1324
|
+
[key: string]: any;
|
|
1325
|
+
});
|
|
1326
|
+
}
|
|
1327
|
+
export declare class ListPopTrafficStatisticsResponse extends $tea.Model {
|
|
1328
|
+
headers?: {
|
|
1329
|
+
[key: string]: string;
|
|
1330
|
+
};
|
|
1331
|
+
statusCode?: number;
|
|
1332
|
+
body?: ListPopTrafficStatisticsResponseBody;
|
|
1289
1333
|
static names(): {
|
|
1290
1334
|
[key: string]: string;
|
|
1291
1335
|
};
|
|
@@ -1331,11 +1375,11 @@ export declare class ListPrivateAccessApplicationsResponseBody extends $tea.Mode
|
|
|
1331
1375
|
});
|
|
1332
1376
|
}
|
|
1333
1377
|
export declare class ListPrivateAccessApplicationsResponse extends $tea.Model {
|
|
1334
|
-
headers
|
|
1378
|
+
headers?: {
|
|
1335
1379
|
[key: string]: string;
|
|
1336
1380
|
};
|
|
1337
|
-
statusCode
|
|
1338
|
-
body
|
|
1381
|
+
statusCode?: number;
|
|
1382
|
+
body?: ListPrivateAccessApplicationsResponseBody;
|
|
1339
1383
|
static names(): {
|
|
1340
1384
|
[key: string]: string;
|
|
1341
1385
|
};
|
|
@@ -1372,11 +1416,11 @@ export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBody ex
|
|
|
1372
1416
|
});
|
|
1373
1417
|
}
|
|
1374
1418
|
export declare class ListPrivateAccessApplicationsForDynamicRouteResponse extends $tea.Model {
|
|
1375
|
-
headers
|
|
1419
|
+
headers?: {
|
|
1376
1420
|
[key: string]: string;
|
|
1377
1421
|
};
|
|
1378
|
-
statusCode
|
|
1379
|
-
body
|
|
1422
|
+
statusCode?: number;
|
|
1423
|
+
body?: ListPrivateAccessApplicationsForDynamicRouteResponseBody;
|
|
1380
1424
|
static names(): {
|
|
1381
1425
|
[key: string]: string;
|
|
1382
1426
|
};
|
|
@@ -1389,6 +1433,7 @@ export declare class ListPrivateAccessApplicationsForDynamicRouteResponse extend
|
|
|
1389
1433
|
}
|
|
1390
1434
|
export declare class ListPrivateAccessPolicesRequest extends $tea.Model {
|
|
1391
1435
|
applicationId?: string;
|
|
1436
|
+
applicationName?: string;
|
|
1392
1437
|
currentPage?: number;
|
|
1393
1438
|
name?: string;
|
|
1394
1439
|
pageSize?: number;
|
|
@@ -1396,6 +1441,7 @@ export declare class ListPrivateAccessPolicesRequest extends $tea.Model {
|
|
|
1396
1441
|
policyIds?: string[];
|
|
1397
1442
|
status?: string;
|
|
1398
1443
|
tagId?: string;
|
|
1444
|
+
tagName?: string;
|
|
1399
1445
|
userGroupId?: string;
|
|
1400
1446
|
static names(): {
|
|
1401
1447
|
[key: string]: string;
|
|
@@ -1422,11 +1468,11 @@ export declare class ListPrivateAccessPolicesResponseBody extends $tea.Model {
|
|
|
1422
1468
|
});
|
|
1423
1469
|
}
|
|
1424
1470
|
export declare class ListPrivateAccessPolicesResponse extends $tea.Model {
|
|
1425
|
-
headers
|
|
1471
|
+
headers?: {
|
|
1426
1472
|
[key: string]: string;
|
|
1427
1473
|
};
|
|
1428
|
-
statusCode
|
|
1429
|
-
body
|
|
1474
|
+
statusCode?: number;
|
|
1475
|
+
body?: ListPrivateAccessPolicesResponseBody;
|
|
1430
1476
|
static names(): {
|
|
1431
1477
|
[key: string]: string;
|
|
1432
1478
|
};
|
|
@@ -1470,11 +1516,11 @@ export declare class ListPrivateAccessTagsResponseBody extends $tea.Model {
|
|
|
1470
1516
|
});
|
|
1471
1517
|
}
|
|
1472
1518
|
export declare class ListPrivateAccessTagsResponse extends $tea.Model {
|
|
1473
|
-
headers
|
|
1519
|
+
headers?: {
|
|
1474
1520
|
[key: string]: string;
|
|
1475
1521
|
};
|
|
1476
|
-
statusCode
|
|
1477
|
-
body
|
|
1522
|
+
statusCode?: number;
|
|
1523
|
+
body?: ListPrivateAccessTagsResponseBody;
|
|
1478
1524
|
static names(): {
|
|
1479
1525
|
[key: string]: string;
|
|
1480
1526
|
};
|
|
@@ -1511,11 +1557,11 @@ export declare class ListPrivateAccessTagsForDynamicRouteResponseBody extends $t
|
|
|
1511
1557
|
});
|
|
1512
1558
|
}
|
|
1513
1559
|
export declare class ListPrivateAccessTagsForDynamicRouteResponse extends $tea.Model {
|
|
1514
|
-
headers
|
|
1560
|
+
headers?: {
|
|
1515
1561
|
[key: string]: string;
|
|
1516
1562
|
};
|
|
1517
|
-
statusCode
|
|
1518
|
-
body
|
|
1563
|
+
statusCode?: number;
|
|
1564
|
+
body?: ListPrivateAccessTagsForDynamicRouteResponseBody;
|
|
1519
1565
|
static names(): {
|
|
1520
1566
|
[key: string]: string;
|
|
1521
1567
|
};
|
|
@@ -1561,11 +1607,11 @@ export declare class ListRegistrationPoliciesResponseBody extends $tea.Model {
|
|
|
1561
1607
|
});
|
|
1562
1608
|
}
|
|
1563
1609
|
export declare class ListRegistrationPoliciesResponse extends $tea.Model {
|
|
1564
|
-
headers
|
|
1610
|
+
headers?: {
|
|
1565
1611
|
[key: string]: string;
|
|
1566
1612
|
};
|
|
1567
|
-
statusCode
|
|
1568
|
-
body
|
|
1613
|
+
statusCode?: number;
|
|
1614
|
+
body?: ListRegistrationPoliciesResponseBody;
|
|
1569
1615
|
static names(): {
|
|
1570
1616
|
[key: string]: string;
|
|
1571
1617
|
};
|
|
@@ -1602,11 +1648,11 @@ export declare class ListRegistrationPoliciesForUserGroupResponseBody extends $t
|
|
|
1602
1648
|
});
|
|
1603
1649
|
}
|
|
1604
1650
|
export declare class ListRegistrationPoliciesForUserGroupResponse extends $tea.Model {
|
|
1605
|
-
headers
|
|
1651
|
+
headers?: {
|
|
1606
1652
|
[key: string]: string;
|
|
1607
1653
|
};
|
|
1608
|
-
statusCode
|
|
1609
|
-
body
|
|
1654
|
+
statusCode?: number;
|
|
1655
|
+
body?: ListRegistrationPoliciesForUserGroupResponseBody;
|
|
1610
1656
|
static names(): {
|
|
1611
1657
|
[key: string]: string;
|
|
1612
1658
|
};
|
|
@@ -1646,11 +1692,11 @@ export declare class ListSoftwareForUserDeviceResponseBody extends $tea.Model {
|
|
|
1646
1692
|
});
|
|
1647
1693
|
}
|
|
1648
1694
|
export declare class ListSoftwareForUserDeviceResponse extends $tea.Model {
|
|
1649
|
-
headers
|
|
1695
|
+
headers?: {
|
|
1650
1696
|
[key: string]: string;
|
|
1651
1697
|
};
|
|
1652
|
-
statusCode
|
|
1653
|
-
body
|
|
1698
|
+
statusCode?: number;
|
|
1699
|
+
body?: ListSoftwareForUserDeviceResponseBody;
|
|
1654
1700
|
static names(): {
|
|
1655
1701
|
[key: string]: string;
|
|
1656
1702
|
};
|
|
@@ -1687,11 +1733,11 @@ export declare class ListTagsForPrivateAccessApplicationResponseBody extends $te
|
|
|
1687
1733
|
});
|
|
1688
1734
|
}
|
|
1689
1735
|
export declare class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
1690
|
-
headers
|
|
1736
|
+
headers?: {
|
|
1691
1737
|
[key: string]: string;
|
|
1692
1738
|
};
|
|
1693
|
-
statusCode
|
|
1694
|
-
body
|
|
1739
|
+
statusCode?: number;
|
|
1740
|
+
body?: ListTagsForPrivateAccessApplicationResponseBody;
|
|
1695
1741
|
static names(): {
|
|
1696
1742
|
[key: string]: string;
|
|
1697
1743
|
};
|
|
@@ -1728,11 +1774,11 @@ export declare class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Mod
|
|
|
1728
1774
|
});
|
|
1729
1775
|
}
|
|
1730
1776
|
export declare class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1731
|
-
headers
|
|
1777
|
+
headers?: {
|
|
1732
1778
|
[key: string]: string;
|
|
1733
1779
|
};
|
|
1734
|
-
statusCode
|
|
1735
|
-
body
|
|
1780
|
+
statusCode?: number;
|
|
1781
|
+
body?: ListTagsForPrivateAccessPolicyResponseBody;
|
|
1736
1782
|
static names(): {
|
|
1737
1783
|
[key: string]: string;
|
|
1738
1784
|
};
|
|
@@ -1787,11 +1833,11 @@ export declare class ListUserDevicesResponseBody extends $tea.Model {
|
|
|
1787
1833
|
});
|
|
1788
1834
|
}
|
|
1789
1835
|
export declare class ListUserDevicesResponse extends $tea.Model {
|
|
1790
|
-
headers
|
|
1836
|
+
headers?: {
|
|
1791
1837
|
[key: string]: string;
|
|
1792
1838
|
};
|
|
1793
|
-
statusCode
|
|
1794
|
-
body
|
|
1839
|
+
statusCode?: number;
|
|
1840
|
+
body?: ListUserDevicesResponseBody;
|
|
1795
1841
|
static names(): {
|
|
1796
1842
|
[key: string]: string;
|
|
1797
1843
|
};
|
|
@@ -1834,11 +1880,11 @@ export declare class ListUserGroupsResponseBody extends $tea.Model {
|
|
|
1834
1880
|
});
|
|
1835
1881
|
}
|
|
1836
1882
|
export declare class ListUserGroupsResponse extends $tea.Model {
|
|
1837
|
-
headers
|
|
1883
|
+
headers?: {
|
|
1838
1884
|
[key: string]: string;
|
|
1839
1885
|
};
|
|
1840
|
-
statusCode
|
|
1841
|
-
body
|
|
1886
|
+
statusCode?: number;
|
|
1887
|
+
body?: ListUserGroupsResponseBody;
|
|
1842
1888
|
static names(): {
|
|
1843
1889
|
[key: string]: string;
|
|
1844
1890
|
};
|
|
@@ -1875,11 +1921,11 @@ export declare class ListUserGroupsForPrivateAccessPolicyResponseBody extends $t
|
|
|
1875
1921
|
});
|
|
1876
1922
|
}
|
|
1877
1923
|
export declare class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1878
|
-
headers
|
|
1924
|
+
headers?: {
|
|
1879
1925
|
[key: string]: string;
|
|
1880
1926
|
};
|
|
1881
|
-
statusCode
|
|
1882
|
-
body
|
|
1927
|
+
statusCode?: number;
|
|
1928
|
+
body?: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
1883
1929
|
static names(): {
|
|
1884
1930
|
[key: string]: string;
|
|
1885
1931
|
};
|
|
@@ -1916,11 +1962,11 @@ export declare class ListUserGroupsForRegistrationPolicyResponseBody extends $te
|
|
|
1916
1962
|
});
|
|
1917
1963
|
}
|
|
1918
1964
|
export declare class ListUserGroupsForRegistrationPolicyResponse extends $tea.Model {
|
|
1919
|
-
headers
|
|
1965
|
+
headers?: {
|
|
1920
1966
|
[key: string]: string;
|
|
1921
1967
|
};
|
|
1922
|
-
statusCode
|
|
1923
|
-
body
|
|
1968
|
+
statusCode?: number;
|
|
1969
|
+
body?: ListUserGroupsForRegistrationPolicyResponseBody;
|
|
1924
1970
|
static names(): {
|
|
1925
1971
|
[key: string]: string;
|
|
1926
1972
|
};
|
|
@@ -1967,11 +2013,11 @@ export declare class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
|
1967
2013
|
});
|
|
1968
2014
|
}
|
|
1969
2015
|
export declare class UpdateDynamicRouteResponse extends $tea.Model {
|
|
1970
|
-
headers
|
|
2016
|
+
headers?: {
|
|
1971
2017
|
[key: string]: string;
|
|
1972
2018
|
};
|
|
1973
|
-
statusCode
|
|
1974
|
-
body
|
|
2019
|
+
statusCode?: number;
|
|
2020
|
+
body?: UpdateDynamicRouteResponseBody;
|
|
1975
2021
|
static names(): {
|
|
1976
2022
|
[key: string]: string;
|
|
1977
2023
|
};
|
|
@@ -2009,11 +2055,11 @@ export declare class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse
|
|
|
2009
2055
|
});
|
|
2010
2056
|
}
|
|
2011
2057
|
export declare class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse extends $tea.Model {
|
|
2012
|
-
headers
|
|
2058
|
+
headers?: {
|
|
2013
2059
|
[key: string]: string;
|
|
2014
2060
|
};
|
|
2015
|
-
statusCode
|
|
2016
|
-
body
|
|
2061
|
+
statusCode?: number;
|
|
2062
|
+
body?: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody;
|
|
2017
2063
|
static names(): {
|
|
2018
2064
|
[key: string]: string;
|
|
2019
2065
|
};
|
|
@@ -2056,11 +2102,11 @@ export declare class UpdatePrivateAccessApplicationResponseBody extends $tea.Mod
|
|
|
2056
2102
|
});
|
|
2057
2103
|
}
|
|
2058
2104
|
export declare class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
2059
|
-
headers
|
|
2105
|
+
headers?: {
|
|
2060
2106
|
[key: string]: string;
|
|
2061
2107
|
};
|
|
2062
|
-
statusCode
|
|
2063
|
-
body
|
|
2108
|
+
statusCode?: number;
|
|
2109
|
+
body?: UpdatePrivateAccessApplicationResponseBody;
|
|
2064
2110
|
static names(): {
|
|
2065
2111
|
[key: string]: string;
|
|
2066
2112
|
};
|
|
@@ -2076,6 +2122,7 @@ export declare class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2076
2122
|
applicationType?: string;
|
|
2077
2123
|
customUserAttributes?: UpdatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
2078
2124
|
description?: string;
|
|
2125
|
+
deviceAttributeId?: string;
|
|
2079
2126
|
modifyType?: string;
|
|
2080
2127
|
policyAction?: string;
|
|
2081
2128
|
policyId?: string;
|
|
@@ -2107,11 +2154,11 @@ export declare class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2107
2154
|
});
|
|
2108
2155
|
}
|
|
2109
2156
|
export declare class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
2110
|
-
headers
|
|
2157
|
+
headers?: {
|
|
2111
2158
|
[key: string]: string;
|
|
2112
2159
|
};
|
|
2113
|
-
statusCode
|
|
2114
|
-
body
|
|
2160
|
+
statusCode?: number;
|
|
2161
|
+
body?: UpdatePrivateAccessPolicyResponseBody;
|
|
2115
2162
|
static names(): {
|
|
2116
2163
|
[key: string]: string;
|
|
2117
2164
|
};
|
|
@@ -2182,11 +2229,11 @@ export declare class UpdateRegistrationPolicyResponseBody extends $tea.Model {
|
|
|
2182
2229
|
});
|
|
2183
2230
|
}
|
|
2184
2231
|
export declare class UpdateRegistrationPolicyResponse extends $tea.Model {
|
|
2185
|
-
headers
|
|
2232
|
+
headers?: {
|
|
2186
2233
|
[key: string]: string;
|
|
2187
2234
|
};
|
|
2188
|
-
statusCode
|
|
2189
|
-
body
|
|
2235
|
+
statusCode?: number;
|
|
2236
|
+
body?: UpdateRegistrationPolicyResponseBody;
|
|
2190
2237
|
static names(): {
|
|
2191
2238
|
[key: string]: string;
|
|
2192
2239
|
};
|
|
@@ -2224,11 +2271,11 @@ export declare class UpdateUserDevicesSharingStatusResponseBody extends $tea.Mod
|
|
|
2224
2271
|
});
|
|
2225
2272
|
}
|
|
2226
2273
|
export declare class UpdateUserDevicesSharingStatusResponse extends $tea.Model {
|
|
2227
|
-
headers
|
|
2274
|
+
headers?: {
|
|
2228
2275
|
[key: string]: string;
|
|
2229
2276
|
};
|
|
2230
|
-
statusCode
|
|
2231
|
-
body
|
|
2277
|
+
statusCode?: number;
|
|
2278
|
+
body?: UpdateUserDevicesSharingStatusResponseBody;
|
|
2232
2279
|
static names(): {
|
|
2233
2280
|
[key: string]: string;
|
|
2234
2281
|
};
|
|
@@ -2266,11 +2313,11 @@ export declare class UpdateUserDevicesStatusResponseBody extends $tea.Model {
|
|
|
2266
2313
|
});
|
|
2267
2314
|
}
|
|
2268
2315
|
export declare class UpdateUserDevicesStatusResponse extends $tea.Model {
|
|
2269
|
-
headers
|
|
2316
|
+
headers?: {
|
|
2270
2317
|
[key: string]: string;
|
|
2271
2318
|
};
|
|
2272
|
-
statusCode
|
|
2273
|
-
body
|
|
2319
|
+
statusCode?: number;
|
|
2320
|
+
body?: UpdateUserDevicesStatusResponseBody;
|
|
2274
2321
|
static names(): {
|
|
2275
2322
|
[key: string]: string;
|
|
2276
2323
|
};
|
|
@@ -2309,11 +2356,11 @@ export declare class UpdateUserGroupResponseBody extends $tea.Model {
|
|
|
2309
2356
|
});
|
|
2310
2357
|
}
|
|
2311
2358
|
export declare class UpdateUserGroupResponse extends $tea.Model {
|
|
2312
|
-
headers
|
|
2359
|
+
headers?: {
|
|
2313
2360
|
[key: string]: string;
|
|
2314
2361
|
};
|
|
2315
|
-
statusCode
|
|
2316
|
-
body
|
|
2362
|
+
statusCode?: number;
|
|
2363
|
+
body?: UpdateUserGroupResponseBody;
|
|
2317
2364
|
static names(): {
|
|
2318
2365
|
[key: string]: string;
|
|
2319
2366
|
};
|
|
@@ -2523,6 +2570,7 @@ export declare class GetPrivateAccessPolicyResponseBodyPolicy extends $tea.Model
|
|
|
2523
2570
|
createTime?: string;
|
|
2524
2571
|
customUserAttributes?: GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes[];
|
|
2525
2572
|
description?: string;
|
|
2573
|
+
deviceAttributeId?: string;
|
|
2526
2574
|
name?: string;
|
|
2527
2575
|
policyAction?: string;
|
|
2528
2576
|
policyId?: string;
|
|
@@ -2972,6 +3020,32 @@ export declare class ListPolicesForUserGroupResponseBodyUserGroups extends $tea.
|
|
|
2972
3020
|
[key: string]: any;
|
|
2973
3021
|
});
|
|
2974
3022
|
}
|
|
3023
|
+
export declare class ListPopTrafficStatisticsResponseBodyTrafficDataDatapoints extends $tea.Model {
|
|
3024
|
+
average?: number;
|
|
3025
|
+
dateTime?: string;
|
|
3026
|
+
static names(): {
|
|
3027
|
+
[key: string]: string;
|
|
3028
|
+
};
|
|
3029
|
+
static types(): {
|
|
3030
|
+
[key: string]: any;
|
|
3031
|
+
};
|
|
3032
|
+
constructor(map?: {
|
|
3033
|
+
[key: string]: any;
|
|
3034
|
+
});
|
|
3035
|
+
}
|
|
3036
|
+
export declare class ListPopTrafficStatisticsResponseBodyTrafficData extends $tea.Model {
|
|
3037
|
+
datapoints?: ListPopTrafficStatisticsResponseBodyTrafficDataDatapoints[];
|
|
3038
|
+
metricName?: string;
|
|
3039
|
+
static names(): {
|
|
3040
|
+
[key: string]: string;
|
|
3041
|
+
};
|
|
3042
|
+
static types(): {
|
|
3043
|
+
[key: string]: any;
|
|
3044
|
+
};
|
|
3045
|
+
constructor(map?: {
|
|
3046
|
+
[key: string]: any;
|
|
3047
|
+
});
|
|
3048
|
+
}
|
|
2975
3049
|
export declare class ListPrivateAccessApplicationsResponseBodyApplicationsPortRanges extends $tea.Model {
|
|
2976
3050
|
begin?: number;
|
|
2977
3051
|
end?: number;
|
|
@@ -3073,6 +3147,7 @@ export declare class ListPrivateAccessPolicesResponseBodyPolices extends $tea.Mo
|
|
|
3073
3147
|
createTime?: string;
|
|
3074
3148
|
customUserAttributes?: ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes[];
|
|
3075
3149
|
description?: string;
|
|
3150
|
+
deviceAttributeId?: string;
|
|
3076
3151
|
name?: string;
|
|
3077
3152
|
policyAction?: string;
|
|
3078
3153
|
policyId?: string;
|
|
@@ -3754,6 +3829,8 @@ export default class Client extends OpenApi {
|
|
|
3754
3829
|
listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
3755
3830
|
listPolicesForUserGroupWithOptions(request: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse>;
|
|
3756
3831
|
listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse>;
|
|
3832
|
+
listPopTrafficStatisticsWithOptions(request: ListPopTrafficStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<ListPopTrafficStatisticsResponse>;
|
|
3833
|
+
listPopTrafficStatistics(request: ListPopTrafficStatisticsRequest): Promise<ListPopTrafficStatisticsResponse>;
|
|
3757
3834
|
listPrivateAccessApplicationsWithOptions(request: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse>;
|
|
3758
3835
|
listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse>;
|
|
3759
3836
|
listPrivateAccessApplicationsForDynamicRouteWithOptions(request: ListPrivateAccessApplicationsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse>;
|