@alicloud/csas20230120 1.2.0 → 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 +232 -153
- package/dist/client.js +139 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +326 -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
|
};
|
|
@@ -1443,6 +1489,7 @@ export declare class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
|
1443
1489
|
name?: string;
|
|
1444
1490
|
pageSize?: number;
|
|
1445
1491
|
policyId?: string;
|
|
1492
|
+
simpleMode?: boolean;
|
|
1446
1493
|
tagIds?: string[];
|
|
1447
1494
|
static names(): {
|
|
1448
1495
|
[key: string]: string;
|
|
@@ -1469,11 +1516,11 @@ export declare class ListPrivateAccessTagsResponseBody extends $tea.Model {
|
|
|
1469
1516
|
});
|
|
1470
1517
|
}
|
|
1471
1518
|
export declare class ListPrivateAccessTagsResponse extends $tea.Model {
|
|
1472
|
-
headers
|
|
1519
|
+
headers?: {
|
|
1473
1520
|
[key: string]: string;
|
|
1474
1521
|
};
|
|
1475
|
-
statusCode
|
|
1476
|
-
body
|
|
1522
|
+
statusCode?: number;
|
|
1523
|
+
body?: ListPrivateAccessTagsResponseBody;
|
|
1477
1524
|
static names(): {
|
|
1478
1525
|
[key: string]: string;
|
|
1479
1526
|
};
|
|
@@ -1510,11 +1557,11 @@ export declare class ListPrivateAccessTagsForDynamicRouteResponseBody extends $t
|
|
|
1510
1557
|
});
|
|
1511
1558
|
}
|
|
1512
1559
|
export declare class ListPrivateAccessTagsForDynamicRouteResponse extends $tea.Model {
|
|
1513
|
-
headers
|
|
1560
|
+
headers?: {
|
|
1514
1561
|
[key: string]: string;
|
|
1515
1562
|
};
|
|
1516
|
-
statusCode
|
|
1517
|
-
body
|
|
1563
|
+
statusCode?: number;
|
|
1564
|
+
body?: ListPrivateAccessTagsForDynamicRouteResponseBody;
|
|
1518
1565
|
static names(): {
|
|
1519
1566
|
[key: string]: string;
|
|
1520
1567
|
};
|
|
@@ -1560,11 +1607,11 @@ export declare class ListRegistrationPoliciesResponseBody extends $tea.Model {
|
|
|
1560
1607
|
});
|
|
1561
1608
|
}
|
|
1562
1609
|
export declare class ListRegistrationPoliciesResponse extends $tea.Model {
|
|
1563
|
-
headers
|
|
1610
|
+
headers?: {
|
|
1564
1611
|
[key: string]: string;
|
|
1565
1612
|
};
|
|
1566
|
-
statusCode
|
|
1567
|
-
body
|
|
1613
|
+
statusCode?: number;
|
|
1614
|
+
body?: ListRegistrationPoliciesResponseBody;
|
|
1568
1615
|
static names(): {
|
|
1569
1616
|
[key: string]: string;
|
|
1570
1617
|
};
|
|
@@ -1601,11 +1648,11 @@ export declare class ListRegistrationPoliciesForUserGroupResponseBody extends $t
|
|
|
1601
1648
|
});
|
|
1602
1649
|
}
|
|
1603
1650
|
export declare class ListRegistrationPoliciesForUserGroupResponse extends $tea.Model {
|
|
1604
|
-
headers
|
|
1651
|
+
headers?: {
|
|
1605
1652
|
[key: string]: string;
|
|
1606
1653
|
};
|
|
1607
|
-
statusCode
|
|
1608
|
-
body
|
|
1654
|
+
statusCode?: number;
|
|
1655
|
+
body?: ListRegistrationPoliciesForUserGroupResponseBody;
|
|
1609
1656
|
static names(): {
|
|
1610
1657
|
[key: string]: string;
|
|
1611
1658
|
};
|
|
@@ -1645,11 +1692,11 @@ export declare class ListSoftwareForUserDeviceResponseBody extends $tea.Model {
|
|
|
1645
1692
|
});
|
|
1646
1693
|
}
|
|
1647
1694
|
export declare class ListSoftwareForUserDeviceResponse extends $tea.Model {
|
|
1648
|
-
headers
|
|
1695
|
+
headers?: {
|
|
1649
1696
|
[key: string]: string;
|
|
1650
1697
|
};
|
|
1651
|
-
statusCode
|
|
1652
|
-
body
|
|
1698
|
+
statusCode?: number;
|
|
1699
|
+
body?: ListSoftwareForUserDeviceResponseBody;
|
|
1653
1700
|
static names(): {
|
|
1654
1701
|
[key: string]: string;
|
|
1655
1702
|
};
|
|
@@ -1686,11 +1733,11 @@ export declare class ListTagsForPrivateAccessApplicationResponseBody extends $te
|
|
|
1686
1733
|
});
|
|
1687
1734
|
}
|
|
1688
1735
|
export declare class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
1689
|
-
headers
|
|
1736
|
+
headers?: {
|
|
1690
1737
|
[key: string]: string;
|
|
1691
1738
|
};
|
|
1692
|
-
statusCode
|
|
1693
|
-
body
|
|
1739
|
+
statusCode?: number;
|
|
1740
|
+
body?: ListTagsForPrivateAccessApplicationResponseBody;
|
|
1694
1741
|
static names(): {
|
|
1695
1742
|
[key: string]: string;
|
|
1696
1743
|
};
|
|
@@ -1727,11 +1774,11 @@ export declare class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Mod
|
|
|
1727
1774
|
});
|
|
1728
1775
|
}
|
|
1729
1776
|
export declare class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1730
|
-
headers
|
|
1777
|
+
headers?: {
|
|
1731
1778
|
[key: string]: string;
|
|
1732
1779
|
};
|
|
1733
|
-
statusCode
|
|
1734
|
-
body
|
|
1780
|
+
statusCode?: number;
|
|
1781
|
+
body?: ListTagsForPrivateAccessPolicyResponseBody;
|
|
1735
1782
|
static names(): {
|
|
1736
1783
|
[key: string]: string;
|
|
1737
1784
|
};
|
|
@@ -1759,6 +1806,7 @@ export declare class ListUserDevicesRequest extends $tea.Model {
|
|
|
1759
1806
|
pageSize?: number;
|
|
1760
1807
|
saseUserId?: string;
|
|
1761
1808
|
sharingStatus?: boolean;
|
|
1809
|
+
sortBy?: string;
|
|
1762
1810
|
username?: string;
|
|
1763
1811
|
static names(): {
|
|
1764
1812
|
[key: string]: string;
|
|
@@ -1785,11 +1833,11 @@ export declare class ListUserDevicesResponseBody extends $tea.Model {
|
|
|
1785
1833
|
});
|
|
1786
1834
|
}
|
|
1787
1835
|
export declare class ListUserDevicesResponse extends $tea.Model {
|
|
1788
|
-
headers
|
|
1836
|
+
headers?: {
|
|
1789
1837
|
[key: string]: string;
|
|
1790
1838
|
};
|
|
1791
|
-
statusCode
|
|
1792
|
-
body
|
|
1839
|
+
statusCode?: number;
|
|
1840
|
+
body?: ListUserDevicesResponseBody;
|
|
1793
1841
|
static names(): {
|
|
1794
1842
|
[key: string]: string;
|
|
1795
1843
|
};
|
|
@@ -1832,11 +1880,11 @@ export declare class ListUserGroupsResponseBody extends $tea.Model {
|
|
|
1832
1880
|
});
|
|
1833
1881
|
}
|
|
1834
1882
|
export declare class ListUserGroupsResponse extends $tea.Model {
|
|
1835
|
-
headers
|
|
1883
|
+
headers?: {
|
|
1836
1884
|
[key: string]: string;
|
|
1837
1885
|
};
|
|
1838
|
-
statusCode
|
|
1839
|
-
body
|
|
1886
|
+
statusCode?: number;
|
|
1887
|
+
body?: ListUserGroupsResponseBody;
|
|
1840
1888
|
static names(): {
|
|
1841
1889
|
[key: string]: string;
|
|
1842
1890
|
};
|
|
@@ -1873,11 +1921,11 @@ export declare class ListUserGroupsForPrivateAccessPolicyResponseBody extends $t
|
|
|
1873
1921
|
});
|
|
1874
1922
|
}
|
|
1875
1923
|
export declare class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1876
|
-
headers
|
|
1924
|
+
headers?: {
|
|
1877
1925
|
[key: string]: string;
|
|
1878
1926
|
};
|
|
1879
|
-
statusCode
|
|
1880
|
-
body
|
|
1927
|
+
statusCode?: number;
|
|
1928
|
+
body?: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
1881
1929
|
static names(): {
|
|
1882
1930
|
[key: string]: string;
|
|
1883
1931
|
};
|
|
@@ -1914,11 +1962,11 @@ export declare class ListUserGroupsForRegistrationPolicyResponseBody extends $te
|
|
|
1914
1962
|
});
|
|
1915
1963
|
}
|
|
1916
1964
|
export declare class ListUserGroupsForRegistrationPolicyResponse extends $tea.Model {
|
|
1917
|
-
headers
|
|
1965
|
+
headers?: {
|
|
1918
1966
|
[key: string]: string;
|
|
1919
1967
|
};
|
|
1920
|
-
statusCode
|
|
1921
|
-
body
|
|
1968
|
+
statusCode?: number;
|
|
1969
|
+
body?: ListUserGroupsForRegistrationPolicyResponseBody;
|
|
1922
1970
|
static names(): {
|
|
1923
1971
|
[key: string]: string;
|
|
1924
1972
|
};
|
|
@@ -1965,11 +2013,11 @@ export declare class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
|
1965
2013
|
});
|
|
1966
2014
|
}
|
|
1967
2015
|
export declare class UpdateDynamicRouteResponse extends $tea.Model {
|
|
1968
|
-
headers
|
|
2016
|
+
headers?: {
|
|
1969
2017
|
[key: string]: string;
|
|
1970
2018
|
};
|
|
1971
|
-
statusCode
|
|
1972
|
-
body
|
|
2019
|
+
statusCode?: number;
|
|
2020
|
+
body?: UpdateDynamicRouteResponseBody;
|
|
1973
2021
|
static names(): {
|
|
1974
2022
|
[key: string]: string;
|
|
1975
2023
|
};
|
|
@@ -2007,11 +2055,11 @@ export declare class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse
|
|
|
2007
2055
|
});
|
|
2008
2056
|
}
|
|
2009
2057
|
export declare class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse extends $tea.Model {
|
|
2010
|
-
headers
|
|
2058
|
+
headers?: {
|
|
2011
2059
|
[key: string]: string;
|
|
2012
2060
|
};
|
|
2013
|
-
statusCode
|
|
2014
|
-
body
|
|
2061
|
+
statusCode?: number;
|
|
2062
|
+
body?: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody;
|
|
2015
2063
|
static names(): {
|
|
2016
2064
|
[key: string]: string;
|
|
2017
2065
|
};
|
|
@@ -2054,11 +2102,11 @@ export declare class UpdatePrivateAccessApplicationResponseBody extends $tea.Mod
|
|
|
2054
2102
|
});
|
|
2055
2103
|
}
|
|
2056
2104
|
export declare class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
2057
|
-
headers
|
|
2105
|
+
headers?: {
|
|
2058
2106
|
[key: string]: string;
|
|
2059
2107
|
};
|
|
2060
|
-
statusCode
|
|
2061
|
-
body
|
|
2108
|
+
statusCode?: number;
|
|
2109
|
+
body?: UpdatePrivateAccessApplicationResponseBody;
|
|
2062
2110
|
static names(): {
|
|
2063
2111
|
[key: string]: string;
|
|
2064
2112
|
};
|
|
@@ -2074,6 +2122,7 @@ export declare class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2074
2122
|
applicationType?: string;
|
|
2075
2123
|
customUserAttributes?: UpdatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
2076
2124
|
description?: string;
|
|
2125
|
+
deviceAttributeId?: string;
|
|
2077
2126
|
modifyType?: string;
|
|
2078
2127
|
policyAction?: string;
|
|
2079
2128
|
policyId?: string;
|
|
@@ -2105,11 +2154,11 @@ export declare class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2105
2154
|
});
|
|
2106
2155
|
}
|
|
2107
2156
|
export declare class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
2108
|
-
headers
|
|
2157
|
+
headers?: {
|
|
2109
2158
|
[key: string]: string;
|
|
2110
2159
|
};
|
|
2111
|
-
statusCode
|
|
2112
|
-
body
|
|
2160
|
+
statusCode?: number;
|
|
2161
|
+
body?: UpdatePrivateAccessPolicyResponseBody;
|
|
2113
2162
|
static names(): {
|
|
2114
2163
|
[key: string]: string;
|
|
2115
2164
|
};
|
|
@@ -2180,11 +2229,11 @@ export declare class UpdateRegistrationPolicyResponseBody extends $tea.Model {
|
|
|
2180
2229
|
});
|
|
2181
2230
|
}
|
|
2182
2231
|
export declare class UpdateRegistrationPolicyResponse extends $tea.Model {
|
|
2183
|
-
headers
|
|
2232
|
+
headers?: {
|
|
2184
2233
|
[key: string]: string;
|
|
2185
2234
|
};
|
|
2186
|
-
statusCode
|
|
2187
|
-
body
|
|
2235
|
+
statusCode?: number;
|
|
2236
|
+
body?: UpdateRegistrationPolicyResponseBody;
|
|
2188
2237
|
static names(): {
|
|
2189
2238
|
[key: string]: string;
|
|
2190
2239
|
};
|
|
@@ -2222,11 +2271,11 @@ export declare class UpdateUserDevicesSharingStatusResponseBody extends $tea.Mod
|
|
|
2222
2271
|
});
|
|
2223
2272
|
}
|
|
2224
2273
|
export declare class UpdateUserDevicesSharingStatusResponse extends $tea.Model {
|
|
2225
|
-
headers
|
|
2274
|
+
headers?: {
|
|
2226
2275
|
[key: string]: string;
|
|
2227
2276
|
};
|
|
2228
|
-
statusCode
|
|
2229
|
-
body
|
|
2277
|
+
statusCode?: number;
|
|
2278
|
+
body?: UpdateUserDevicesSharingStatusResponseBody;
|
|
2230
2279
|
static names(): {
|
|
2231
2280
|
[key: string]: string;
|
|
2232
2281
|
};
|
|
@@ -2264,11 +2313,11 @@ export declare class UpdateUserDevicesStatusResponseBody extends $tea.Model {
|
|
|
2264
2313
|
});
|
|
2265
2314
|
}
|
|
2266
2315
|
export declare class UpdateUserDevicesStatusResponse extends $tea.Model {
|
|
2267
|
-
headers
|
|
2316
|
+
headers?: {
|
|
2268
2317
|
[key: string]: string;
|
|
2269
2318
|
};
|
|
2270
|
-
statusCode
|
|
2271
|
-
body
|
|
2319
|
+
statusCode?: number;
|
|
2320
|
+
body?: UpdateUserDevicesStatusResponseBody;
|
|
2272
2321
|
static names(): {
|
|
2273
2322
|
[key: string]: string;
|
|
2274
2323
|
};
|
|
@@ -2307,11 +2356,11 @@ export declare class UpdateUserGroupResponseBody extends $tea.Model {
|
|
|
2307
2356
|
});
|
|
2308
2357
|
}
|
|
2309
2358
|
export declare class UpdateUserGroupResponse extends $tea.Model {
|
|
2310
|
-
headers
|
|
2359
|
+
headers?: {
|
|
2311
2360
|
[key: string]: string;
|
|
2312
2361
|
};
|
|
2313
|
-
statusCode
|
|
2314
|
-
body
|
|
2362
|
+
statusCode?: number;
|
|
2363
|
+
body?: UpdateUserGroupResponseBody;
|
|
2315
2364
|
static names(): {
|
|
2316
2365
|
[key: string]: string;
|
|
2317
2366
|
};
|
|
@@ -2521,6 +2570,7 @@ export declare class GetPrivateAccessPolicyResponseBodyPolicy extends $tea.Model
|
|
|
2521
2570
|
createTime?: string;
|
|
2522
2571
|
customUserAttributes?: GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes[];
|
|
2523
2572
|
description?: string;
|
|
2573
|
+
deviceAttributeId?: string;
|
|
2524
2574
|
name?: string;
|
|
2525
2575
|
policyAction?: string;
|
|
2526
2576
|
policyId?: string;
|
|
@@ -2970,6 +3020,32 @@ export declare class ListPolicesForUserGroupResponseBodyUserGroups extends $tea.
|
|
|
2970
3020
|
[key: string]: any;
|
|
2971
3021
|
});
|
|
2972
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
|
+
}
|
|
2973
3049
|
export declare class ListPrivateAccessApplicationsResponseBodyApplicationsPortRanges extends $tea.Model {
|
|
2974
3050
|
begin?: number;
|
|
2975
3051
|
end?: number;
|
|
@@ -3071,6 +3147,7 @@ export declare class ListPrivateAccessPolicesResponseBodyPolices extends $tea.Mo
|
|
|
3071
3147
|
createTime?: string;
|
|
3072
3148
|
customUserAttributes?: ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes[];
|
|
3073
3149
|
description?: string;
|
|
3150
|
+
deviceAttributeId?: string;
|
|
3074
3151
|
name?: string;
|
|
3075
3152
|
policyAction?: string;
|
|
3076
3153
|
policyId?: string;
|
|
@@ -3752,6 +3829,8 @@ export default class Client extends OpenApi {
|
|
|
3752
3829
|
listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
3753
3830
|
listPolicesForUserGroupWithOptions(request: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse>;
|
|
3754
3831
|
listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse>;
|
|
3832
|
+
listPopTrafficStatisticsWithOptions(request: ListPopTrafficStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<ListPopTrafficStatisticsResponse>;
|
|
3833
|
+
listPopTrafficStatistics(request: ListPopTrafficStatisticsRequest): Promise<ListPopTrafficStatisticsResponse>;
|
|
3755
3834
|
listPrivateAccessApplicationsWithOptions(request: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse>;
|
|
3756
3835
|
listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse>;
|
|
3757
3836
|
listPrivateAccessApplicationsForDynamicRouteWithOptions(request: ListPrivateAccessApplicationsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse>;
|