@alicloud/csas20230120 1.1.2 → 1.2.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 +1307 -34
- package/dist/client.js +2961 -679
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3267 -354
package/src/client.ts
CHANGED
|
@@ -438,6 +438,151 @@ export class CreatePrivateAccessTagResponse extends $tea.Model {
|
|
|
438
438
|
}
|
|
439
439
|
}
|
|
440
440
|
|
|
441
|
+
export class CreateRegistrationPolicyRequest extends $tea.Model {
|
|
442
|
+
companyLimitCount?: CreateRegistrationPolicyRequestCompanyLimitCount;
|
|
443
|
+
companyLimitType?: string;
|
|
444
|
+
description?: string;
|
|
445
|
+
matchMode?: string;
|
|
446
|
+
name?: string;
|
|
447
|
+
personalLimitCount?: CreateRegistrationPolicyRequestPersonalLimitCount;
|
|
448
|
+
personalLimitType?: string;
|
|
449
|
+
priority?: number;
|
|
450
|
+
status?: string;
|
|
451
|
+
userGroupIds?: string[];
|
|
452
|
+
whitelist?: string[];
|
|
453
|
+
static names(): { [key: string]: string } {
|
|
454
|
+
return {
|
|
455
|
+
companyLimitCount: 'CompanyLimitCount',
|
|
456
|
+
companyLimitType: 'CompanyLimitType',
|
|
457
|
+
description: 'Description',
|
|
458
|
+
matchMode: 'MatchMode',
|
|
459
|
+
name: 'Name',
|
|
460
|
+
personalLimitCount: 'PersonalLimitCount',
|
|
461
|
+
personalLimitType: 'PersonalLimitType',
|
|
462
|
+
priority: 'Priority',
|
|
463
|
+
status: 'Status',
|
|
464
|
+
userGroupIds: 'UserGroupIds',
|
|
465
|
+
whitelist: 'Whitelist',
|
|
466
|
+
};
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
static types(): { [key: string]: any } {
|
|
470
|
+
return {
|
|
471
|
+
companyLimitCount: CreateRegistrationPolicyRequestCompanyLimitCount,
|
|
472
|
+
companyLimitType: 'string',
|
|
473
|
+
description: 'string',
|
|
474
|
+
matchMode: 'string',
|
|
475
|
+
name: 'string',
|
|
476
|
+
personalLimitCount: CreateRegistrationPolicyRequestPersonalLimitCount,
|
|
477
|
+
personalLimitType: 'string',
|
|
478
|
+
priority: 'number',
|
|
479
|
+
status: 'string',
|
|
480
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
481
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
482
|
+
};
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
constructor(map?: { [key: string]: any }) {
|
|
486
|
+
super(map);
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export class CreateRegistrationPolicyShrinkRequest extends $tea.Model {
|
|
491
|
+
companyLimitCountShrink?: string;
|
|
492
|
+
companyLimitType?: string;
|
|
493
|
+
description?: string;
|
|
494
|
+
matchMode?: string;
|
|
495
|
+
name?: string;
|
|
496
|
+
personalLimitCountShrink?: string;
|
|
497
|
+
personalLimitType?: string;
|
|
498
|
+
priority?: number;
|
|
499
|
+
status?: string;
|
|
500
|
+
userGroupIds?: string[];
|
|
501
|
+
whitelist?: string[];
|
|
502
|
+
static names(): { [key: string]: string } {
|
|
503
|
+
return {
|
|
504
|
+
companyLimitCountShrink: 'CompanyLimitCount',
|
|
505
|
+
companyLimitType: 'CompanyLimitType',
|
|
506
|
+
description: 'Description',
|
|
507
|
+
matchMode: 'MatchMode',
|
|
508
|
+
name: 'Name',
|
|
509
|
+
personalLimitCountShrink: 'PersonalLimitCount',
|
|
510
|
+
personalLimitType: 'PersonalLimitType',
|
|
511
|
+
priority: 'Priority',
|
|
512
|
+
status: 'Status',
|
|
513
|
+
userGroupIds: 'UserGroupIds',
|
|
514
|
+
whitelist: 'Whitelist',
|
|
515
|
+
};
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
static types(): { [key: string]: any } {
|
|
519
|
+
return {
|
|
520
|
+
companyLimitCountShrink: 'string',
|
|
521
|
+
companyLimitType: 'string',
|
|
522
|
+
description: 'string',
|
|
523
|
+
matchMode: 'string',
|
|
524
|
+
name: 'string',
|
|
525
|
+
personalLimitCountShrink: 'string',
|
|
526
|
+
personalLimitType: 'string',
|
|
527
|
+
priority: 'number',
|
|
528
|
+
status: 'string',
|
|
529
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
530
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
531
|
+
};
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
constructor(map?: { [key: string]: any }) {
|
|
535
|
+
super(map);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
export class CreateRegistrationPolicyResponseBody extends $tea.Model {
|
|
540
|
+
policy?: CreateRegistrationPolicyResponseBodyPolicy;
|
|
541
|
+
requestId?: string;
|
|
542
|
+
static names(): { [key: string]: string } {
|
|
543
|
+
return {
|
|
544
|
+
policy: 'Policy',
|
|
545
|
+
requestId: 'RequestId',
|
|
546
|
+
};
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
static types(): { [key: string]: any } {
|
|
550
|
+
return {
|
|
551
|
+
policy: CreateRegistrationPolicyResponseBodyPolicy,
|
|
552
|
+
requestId: 'string',
|
|
553
|
+
};
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
constructor(map?: { [key: string]: any }) {
|
|
557
|
+
super(map);
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
export class CreateRegistrationPolicyResponse extends $tea.Model {
|
|
562
|
+
headers: { [key: string]: string };
|
|
563
|
+
statusCode: number;
|
|
564
|
+
body: CreateRegistrationPolicyResponseBody;
|
|
565
|
+
static names(): { [key: string]: string } {
|
|
566
|
+
return {
|
|
567
|
+
headers: 'headers',
|
|
568
|
+
statusCode: 'statusCode',
|
|
569
|
+
body: 'body',
|
|
570
|
+
};
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
static types(): { [key: string]: any } {
|
|
574
|
+
return {
|
|
575
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
576
|
+
statusCode: 'number',
|
|
577
|
+
body: CreateRegistrationPolicyResponseBody,
|
|
578
|
+
};
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
constructor(map?: { [key: string]: any }) {
|
|
582
|
+
super(map);
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
|
|
441
586
|
export class CreateUserGroupRequest extends $tea.Model {
|
|
442
587
|
attributes?: CreateUserGroupRequestAttributes[];
|
|
443
588
|
description?: string;
|
|
@@ -762,6 +907,69 @@ export class DeletePrivateAccessTagResponse extends $tea.Model {
|
|
|
762
907
|
}
|
|
763
908
|
}
|
|
764
909
|
|
|
910
|
+
export class DeleteRegistrationPoliciesRequest extends $tea.Model {
|
|
911
|
+
policyIds?: string[];
|
|
912
|
+
static names(): { [key: string]: string } {
|
|
913
|
+
return {
|
|
914
|
+
policyIds: 'PolicyIds',
|
|
915
|
+
};
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
static types(): { [key: string]: any } {
|
|
919
|
+
return {
|
|
920
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
921
|
+
};
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
constructor(map?: { [key: string]: any }) {
|
|
925
|
+
super(map);
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
export class DeleteRegistrationPoliciesResponseBody extends $tea.Model {
|
|
930
|
+
requestId?: string;
|
|
931
|
+
static names(): { [key: string]: string } {
|
|
932
|
+
return {
|
|
933
|
+
requestId: 'RequestId',
|
|
934
|
+
};
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
static types(): { [key: string]: any } {
|
|
938
|
+
return {
|
|
939
|
+
requestId: 'string',
|
|
940
|
+
};
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
constructor(map?: { [key: string]: any }) {
|
|
944
|
+
super(map);
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
export class DeleteRegistrationPoliciesResponse extends $tea.Model {
|
|
949
|
+
headers: { [key: string]: string };
|
|
950
|
+
statusCode: number;
|
|
951
|
+
body: DeleteRegistrationPoliciesResponseBody;
|
|
952
|
+
static names(): { [key: string]: string } {
|
|
953
|
+
return {
|
|
954
|
+
headers: 'headers',
|
|
955
|
+
statusCode: 'statusCode',
|
|
956
|
+
body: 'body',
|
|
957
|
+
};
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
static types(): { [key: string]: any } {
|
|
961
|
+
return {
|
|
962
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
963
|
+
statusCode: 'number',
|
|
964
|
+
body: DeleteRegistrationPoliciesResponseBody,
|
|
965
|
+
};
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
constructor(map?: { [key: string]: any }) {
|
|
969
|
+
super(map);
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
|
|
765
973
|
export class DeleteUserGroupRequest extends $tea.Model {
|
|
766
974
|
userGroupId?: string;
|
|
767
975
|
static names(): { [key: string]: string } {
|
|
@@ -1111,17 +1319,17 @@ export class GetPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
1111
1319
|
}
|
|
1112
1320
|
}
|
|
1113
1321
|
|
|
1114
|
-
export class
|
|
1115
|
-
|
|
1322
|
+
export class GetRegistrationPolicyRequest extends $tea.Model {
|
|
1323
|
+
policyId?: string;
|
|
1116
1324
|
static names(): { [key: string]: string } {
|
|
1117
1325
|
return {
|
|
1118
|
-
|
|
1326
|
+
policyId: 'PolicyId',
|
|
1119
1327
|
};
|
|
1120
1328
|
}
|
|
1121
1329
|
|
|
1122
1330
|
static types(): { [key: string]: any } {
|
|
1123
1331
|
return {
|
|
1124
|
-
|
|
1332
|
+
policyId: 'string',
|
|
1125
1333
|
};
|
|
1126
1334
|
}
|
|
1127
1335
|
|
|
@@ -1130,20 +1338,47 @@ export class GetUserGroupRequest extends $tea.Model {
|
|
|
1130
1338
|
}
|
|
1131
1339
|
}
|
|
1132
1340
|
|
|
1133
|
-
export class
|
|
1341
|
+
export class GetRegistrationPolicyResponseBody extends $tea.Model {
|
|
1342
|
+
createTime?: string;
|
|
1343
|
+
description?: string;
|
|
1344
|
+
limitDetail?: GetRegistrationPolicyResponseBodyLimitDetail[];
|
|
1345
|
+
matchMode?: string;
|
|
1346
|
+
name?: string;
|
|
1347
|
+
policyId?: string;
|
|
1348
|
+
priority?: number;
|
|
1134
1349
|
requestId?: string;
|
|
1135
|
-
|
|
1350
|
+
status?: string;
|
|
1351
|
+
userGroupIds?: string[];
|
|
1352
|
+
whitelist?: string[];
|
|
1136
1353
|
static names(): { [key: string]: string } {
|
|
1137
1354
|
return {
|
|
1355
|
+
createTime: 'CreateTime',
|
|
1356
|
+
description: 'Description',
|
|
1357
|
+
limitDetail: 'LimitDetail',
|
|
1358
|
+
matchMode: 'MatchMode',
|
|
1359
|
+
name: 'Name',
|
|
1360
|
+
policyId: 'PolicyId',
|
|
1361
|
+
priority: 'Priority',
|
|
1138
1362
|
requestId: 'RequestId',
|
|
1139
|
-
|
|
1363
|
+
status: 'Status',
|
|
1364
|
+
userGroupIds: 'UserGroupIds',
|
|
1365
|
+
whitelist: 'Whitelist',
|
|
1140
1366
|
};
|
|
1141
1367
|
}
|
|
1142
1368
|
|
|
1143
1369
|
static types(): { [key: string]: any } {
|
|
1144
1370
|
return {
|
|
1371
|
+
createTime: 'string',
|
|
1372
|
+
description: 'string',
|
|
1373
|
+
limitDetail: { 'type': 'array', 'itemType': GetRegistrationPolicyResponseBodyLimitDetail },
|
|
1374
|
+
matchMode: 'string',
|
|
1375
|
+
name: 'string',
|
|
1376
|
+
policyId: 'string',
|
|
1377
|
+
priority: 'number',
|
|
1145
1378
|
requestId: 'string',
|
|
1146
|
-
|
|
1379
|
+
status: 'string',
|
|
1380
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
1381
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
1147
1382
|
};
|
|
1148
1383
|
}
|
|
1149
1384
|
|
|
@@ -1152,10 +1387,10 @@ export class GetUserGroupResponseBody extends $tea.Model {
|
|
|
1152
1387
|
}
|
|
1153
1388
|
}
|
|
1154
1389
|
|
|
1155
|
-
export class
|
|
1390
|
+
export class GetRegistrationPolicyResponse extends $tea.Model {
|
|
1156
1391
|
headers: { [key: string]: string };
|
|
1157
1392
|
statusCode: number;
|
|
1158
|
-
body:
|
|
1393
|
+
body: GetRegistrationPolicyResponseBody;
|
|
1159
1394
|
static names(): { [key: string]: string } {
|
|
1160
1395
|
return {
|
|
1161
1396
|
headers: 'headers',
|
|
@@ -1168,7 +1403,7 @@ export class GetUserGroupResponse extends $tea.Model {
|
|
|
1168
1403
|
return {
|
|
1169
1404
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1170
1405
|
statusCode: 'number',
|
|
1171
|
-
body:
|
|
1406
|
+
body: GetRegistrationPolicyResponseBody,
|
|
1172
1407
|
};
|
|
1173
1408
|
}
|
|
1174
1409
|
|
|
@@ -1177,17 +1412,17 @@ export class GetUserGroupResponse extends $tea.Model {
|
|
|
1177
1412
|
}
|
|
1178
1413
|
}
|
|
1179
1414
|
|
|
1180
|
-
export class
|
|
1181
|
-
|
|
1415
|
+
export class GetUserDeviceRequest extends $tea.Model {
|
|
1416
|
+
deviceTag?: string;
|
|
1182
1417
|
static names(): { [key: string]: string } {
|
|
1183
1418
|
return {
|
|
1184
|
-
|
|
1419
|
+
deviceTag: 'DeviceTag',
|
|
1185
1420
|
};
|
|
1186
1421
|
}
|
|
1187
1422
|
|
|
1188
1423
|
static types(): { [key: string]: any } {
|
|
1189
1424
|
return {
|
|
1190
|
-
|
|
1425
|
+
deviceTag: 'string',
|
|
1191
1426
|
};
|
|
1192
1427
|
}
|
|
1193
1428
|
|
|
@@ -1196,19 +1431,19 @@ export class ListApplicationsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
1196
1431
|
}
|
|
1197
1432
|
}
|
|
1198
1433
|
|
|
1199
|
-
export class
|
|
1200
|
-
|
|
1434
|
+
export class GetUserDeviceResponseBody extends $tea.Model {
|
|
1435
|
+
device?: GetUserDeviceResponseBodyDevice;
|
|
1201
1436
|
requestId?: string;
|
|
1202
1437
|
static names(): { [key: string]: string } {
|
|
1203
1438
|
return {
|
|
1204
|
-
|
|
1439
|
+
device: 'Device',
|
|
1205
1440
|
requestId: 'RequestId',
|
|
1206
1441
|
};
|
|
1207
1442
|
}
|
|
1208
1443
|
|
|
1209
1444
|
static types(): { [key: string]: any } {
|
|
1210
1445
|
return {
|
|
1211
|
-
|
|
1446
|
+
device: GetUserDeviceResponseBodyDevice,
|
|
1212
1447
|
requestId: 'string',
|
|
1213
1448
|
};
|
|
1214
1449
|
}
|
|
@@ -1218,10 +1453,10 @@ export class ListApplicationsForPrivateAccessPolicyResponseBody extends $tea.Mod
|
|
|
1218
1453
|
}
|
|
1219
1454
|
}
|
|
1220
1455
|
|
|
1221
|
-
export class
|
|
1456
|
+
export class GetUserDeviceResponse extends $tea.Model {
|
|
1222
1457
|
headers: { [key: string]: string };
|
|
1223
1458
|
statusCode: number;
|
|
1224
|
-
body:
|
|
1459
|
+
body: GetUserDeviceResponseBody;
|
|
1225
1460
|
static names(): { [key: string]: string } {
|
|
1226
1461
|
return {
|
|
1227
1462
|
headers: 'headers',
|
|
@@ -1234,7 +1469,7 @@ export class ListApplicationsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
1234
1469
|
return {
|
|
1235
1470
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1236
1471
|
statusCode: 'number',
|
|
1237
|
-
body:
|
|
1472
|
+
body: GetUserDeviceResponseBody,
|
|
1238
1473
|
};
|
|
1239
1474
|
}
|
|
1240
1475
|
|
|
@@ -1243,17 +1478,17 @@ export class ListApplicationsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
1243
1478
|
}
|
|
1244
1479
|
}
|
|
1245
1480
|
|
|
1246
|
-
export class
|
|
1247
|
-
|
|
1481
|
+
export class GetUserGroupRequest extends $tea.Model {
|
|
1482
|
+
userGroupId?: string;
|
|
1248
1483
|
static names(): { [key: string]: string } {
|
|
1249
1484
|
return {
|
|
1250
|
-
|
|
1485
|
+
userGroupId: 'UserGroupId',
|
|
1251
1486
|
};
|
|
1252
1487
|
}
|
|
1253
1488
|
|
|
1254
1489
|
static types(): { [key: string]: any } {
|
|
1255
1490
|
return {
|
|
1256
|
-
|
|
1491
|
+
userGroupId: 'string',
|
|
1257
1492
|
};
|
|
1258
1493
|
}
|
|
1259
1494
|
|
|
@@ -1262,20 +1497,20 @@ export class ListApplicationsForPrivateAccessTagRequest extends $tea.Model {
|
|
|
1262
1497
|
}
|
|
1263
1498
|
}
|
|
1264
1499
|
|
|
1265
|
-
export class
|
|
1500
|
+
export class GetUserGroupResponseBody extends $tea.Model {
|
|
1266
1501
|
requestId?: string;
|
|
1267
|
-
|
|
1502
|
+
userGroup?: GetUserGroupResponseBodyUserGroup;
|
|
1268
1503
|
static names(): { [key: string]: string } {
|
|
1269
1504
|
return {
|
|
1270
1505
|
requestId: 'RequestId',
|
|
1271
|
-
|
|
1506
|
+
userGroup: 'UserGroup',
|
|
1272
1507
|
};
|
|
1273
1508
|
}
|
|
1274
1509
|
|
|
1275
1510
|
static types(): { [key: string]: any } {
|
|
1276
1511
|
return {
|
|
1277
1512
|
requestId: 'string',
|
|
1278
|
-
|
|
1513
|
+
userGroup: GetUserGroupResponseBodyUserGroup,
|
|
1279
1514
|
};
|
|
1280
1515
|
}
|
|
1281
1516
|
|
|
@@ -1284,10 +1519,10 @@ export class ListApplicationsForPrivateAccessTagResponseBody extends $tea.Model
|
|
|
1284
1519
|
}
|
|
1285
1520
|
}
|
|
1286
1521
|
|
|
1287
|
-
export class
|
|
1522
|
+
export class GetUserGroupResponse extends $tea.Model {
|
|
1288
1523
|
headers: { [key: string]: string };
|
|
1289
1524
|
statusCode: number;
|
|
1290
|
-
body:
|
|
1525
|
+
body: GetUserGroupResponseBody;
|
|
1291
1526
|
static names(): { [key: string]: string } {
|
|
1292
1527
|
return {
|
|
1293
1528
|
headers: 'headers',
|
|
@@ -1300,7 +1535,7 @@ export class ListApplicationsForPrivateAccessTagResponse extends $tea.Model {
|
|
|
1300
1535
|
return {
|
|
1301
1536
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1302
1537
|
statusCode: 'number',
|
|
1303
|
-
body:
|
|
1538
|
+
body: GetUserGroupResponseBody,
|
|
1304
1539
|
};
|
|
1305
1540
|
}
|
|
1306
1541
|
|
|
@@ -1309,32 +1544,17 @@ export class ListApplicationsForPrivateAccessTagResponse extends $tea.Model {
|
|
|
1309
1544
|
}
|
|
1310
1545
|
}
|
|
1311
1546
|
|
|
1312
|
-
export class
|
|
1313
|
-
|
|
1314
|
-
currentPage?: number;
|
|
1315
|
-
name?: string;
|
|
1316
|
-
pageSize?: number;
|
|
1317
|
-
status?: string;
|
|
1318
|
-
switchStatus?: string;
|
|
1547
|
+
export class ListApplicationsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
1548
|
+
policyIds?: string[];
|
|
1319
1549
|
static names(): { [key: string]: string } {
|
|
1320
1550
|
return {
|
|
1321
|
-
|
|
1322
|
-
currentPage: 'CurrentPage',
|
|
1323
|
-
name: 'Name',
|
|
1324
|
-
pageSize: 'PageSize',
|
|
1325
|
-
status: 'Status',
|
|
1326
|
-
switchStatus: 'SwitchStatus',
|
|
1551
|
+
policyIds: 'PolicyIds',
|
|
1327
1552
|
};
|
|
1328
1553
|
}
|
|
1329
1554
|
|
|
1330
1555
|
static types(): { [key: string]: any } {
|
|
1331
1556
|
return {
|
|
1332
|
-
|
|
1333
|
-
currentPage: 'number',
|
|
1334
|
-
name: 'string',
|
|
1335
|
-
pageSize: 'number',
|
|
1336
|
-
status: 'string',
|
|
1337
|
-
switchStatus: 'string',
|
|
1557
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
1338
1558
|
};
|
|
1339
1559
|
}
|
|
1340
1560
|
|
|
@@ -1343,13 +1563,160 @@ export class ListConnectorsRequest extends $tea.Model {
|
|
|
1343
1563
|
}
|
|
1344
1564
|
}
|
|
1345
1565
|
|
|
1346
|
-
export class
|
|
1347
|
-
|
|
1566
|
+
export class ListApplicationsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1567
|
+
polices?: ListApplicationsForPrivateAccessPolicyResponseBodyPolices[];
|
|
1348
1568
|
requestId?: string;
|
|
1349
|
-
totalNum?: number;
|
|
1350
1569
|
static names(): { [key: string]: string } {
|
|
1351
1570
|
return {
|
|
1352
|
-
|
|
1571
|
+
polices: 'Polices',
|
|
1572
|
+
requestId: 'RequestId',
|
|
1573
|
+
};
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
static types(): { [key: string]: any } {
|
|
1577
|
+
return {
|
|
1578
|
+
polices: { 'type': 'array', 'itemType': ListApplicationsForPrivateAccessPolicyResponseBodyPolices },
|
|
1579
|
+
requestId: 'string',
|
|
1580
|
+
};
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
constructor(map?: { [key: string]: any }) {
|
|
1584
|
+
super(map);
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
export class ListApplicationsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1589
|
+
headers: { [key: string]: string };
|
|
1590
|
+
statusCode: number;
|
|
1591
|
+
body: ListApplicationsForPrivateAccessPolicyResponseBody;
|
|
1592
|
+
static names(): { [key: string]: string } {
|
|
1593
|
+
return {
|
|
1594
|
+
headers: 'headers',
|
|
1595
|
+
statusCode: 'statusCode',
|
|
1596
|
+
body: 'body',
|
|
1597
|
+
};
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
static types(): { [key: string]: any } {
|
|
1601
|
+
return {
|
|
1602
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1603
|
+
statusCode: 'number',
|
|
1604
|
+
body: ListApplicationsForPrivateAccessPolicyResponseBody,
|
|
1605
|
+
};
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
constructor(map?: { [key: string]: any }) {
|
|
1609
|
+
super(map);
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
export class ListApplicationsForPrivateAccessTagRequest extends $tea.Model {
|
|
1614
|
+
tagIds?: string[];
|
|
1615
|
+
static names(): { [key: string]: string } {
|
|
1616
|
+
return {
|
|
1617
|
+
tagIds: 'TagIds',
|
|
1618
|
+
};
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
static types(): { [key: string]: any } {
|
|
1622
|
+
return {
|
|
1623
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
1624
|
+
};
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
constructor(map?: { [key: string]: any }) {
|
|
1628
|
+
super(map);
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
export class ListApplicationsForPrivateAccessTagResponseBody extends $tea.Model {
|
|
1633
|
+
requestId?: string;
|
|
1634
|
+
tags?: ListApplicationsForPrivateAccessTagResponseBodyTags[];
|
|
1635
|
+
static names(): { [key: string]: string } {
|
|
1636
|
+
return {
|
|
1637
|
+
requestId: 'RequestId',
|
|
1638
|
+
tags: 'Tags',
|
|
1639
|
+
};
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
static types(): { [key: string]: any } {
|
|
1643
|
+
return {
|
|
1644
|
+
requestId: 'string',
|
|
1645
|
+
tags: { 'type': 'array', 'itemType': ListApplicationsForPrivateAccessTagResponseBodyTags },
|
|
1646
|
+
};
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
constructor(map?: { [key: string]: any }) {
|
|
1650
|
+
super(map);
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
export class ListApplicationsForPrivateAccessTagResponse extends $tea.Model {
|
|
1655
|
+
headers: { [key: string]: string };
|
|
1656
|
+
statusCode: number;
|
|
1657
|
+
body: ListApplicationsForPrivateAccessTagResponseBody;
|
|
1658
|
+
static names(): { [key: string]: string } {
|
|
1659
|
+
return {
|
|
1660
|
+
headers: 'headers',
|
|
1661
|
+
statusCode: 'statusCode',
|
|
1662
|
+
body: 'body',
|
|
1663
|
+
};
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
static types(): { [key: string]: any } {
|
|
1667
|
+
return {
|
|
1668
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1669
|
+
statusCode: 'number',
|
|
1670
|
+
body: ListApplicationsForPrivateAccessTagResponseBody,
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
constructor(map?: { [key: string]: any }) {
|
|
1675
|
+
super(map);
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
export class ListConnectorsRequest extends $tea.Model {
|
|
1680
|
+
connectorIds?: string[];
|
|
1681
|
+
currentPage?: number;
|
|
1682
|
+
name?: string;
|
|
1683
|
+
pageSize?: number;
|
|
1684
|
+
status?: string;
|
|
1685
|
+
switchStatus?: string;
|
|
1686
|
+
static names(): { [key: string]: string } {
|
|
1687
|
+
return {
|
|
1688
|
+
connectorIds: 'ConnectorIds',
|
|
1689
|
+
currentPage: 'CurrentPage',
|
|
1690
|
+
name: 'Name',
|
|
1691
|
+
pageSize: 'PageSize',
|
|
1692
|
+
status: 'Status',
|
|
1693
|
+
switchStatus: 'SwitchStatus',
|
|
1694
|
+
};
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
static types(): { [key: string]: any } {
|
|
1698
|
+
return {
|
|
1699
|
+
connectorIds: { 'type': 'array', 'itemType': 'string' },
|
|
1700
|
+
currentPage: 'number',
|
|
1701
|
+
name: 'string',
|
|
1702
|
+
pageSize: 'number',
|
|
1703
|
+
status: 'string',
|
|
1704
|
+
switchStatus: 'string',
|
|
1705
|
+
};
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
constructor(map?: { [key: string]: any }) {
|
|
1709
|
+
super(map);
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
export class ListConnectorsResponseBody extends $tea.Model {
|
|
1714
|
+
connectors?: ListConnectorsResponseBodyConnectors[];
|
|
1715
|
+
requestId?: string;
|
|
1716
|
+
totalNum?: number;
|
|
1717
|
+
static names(): { [key: string]: string } {
|
|
1718
|
+
return {
|
|
1719
|
+
connectors: 'Connectors',
|
|
1353
1720
|
requestId: 'RequestId',
|
|
1354
1721
|
totalNum: 'TotalNum',
|
|
1355
1722
|
};
|
|
@@ -1536,6 +1903,102 @@ export class ListDynamicRoutesResponse extends $tea.Model {
|
|
|
1536
1903
|
}
|
|
1537
1904
|
}
|
|
1538
1905
|
|
|
1906
|
+
export class ListExcessiveDeviceRegistrationApplicationsRequest extends $tea.Model {
|
|
1907
|
+
applicationIds?: string[];
|
|
1908
|
+
currentPage?: number;
|
|
1909
|
+
department?: string;
|
|
1910
|
+
deviceTag?: string;
|
|
1911
|
+
hostname?: string;
|
|
1912
|
+
mac?: string;
|
|
1913
|
+
pageSize?: number;
|
|
1914
|
+
saseUserId?: string;
|
|
1915
|
+
statuses?: string[];
|
|
1916
|
+
username?: string;
|
|
1917
|
+
static names(): { [key: string]: string } {
|
|
1918
|
+
return {
|
|
1919
|
+
applicationIds: 'ApplicationIds',
|
|
1920
|
+
currentPage: 'CurrentPage',
|
|
1921
|
+
department: 'Department',
|
|
1922
|
+
deviceTag: 'DeviceTag',
|
|
1923
|
+
hostname: 'Hostname',
|
|
1924
|
+
mac: 'Mac',
|
|
1925
|
+
pageSize: 'PageSize',
|
|
1926
|
+
saseUserId: 'SaseUserId',
|
|
1927
|
+
statuses: 'Statuses',
|
|
1928
|
+
username: 'Username',
|
|
1929
|
+
};
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
static types(): { [key: string]: any } {
|
|
1933
|
+
return {
|
|
1934
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
1935
|
+
currentPage: 'number',
|
|
1936
|
+
department: 'string',
|
|
1937
|
+
deviceTag: 'string',
|
|
1938
|
+
hostname: 'string',
|
|
1939
|
+
mac: 'string',
|
|
1940
|
+
pageSize: 'number',
|
|
1941
|
+
saseUserId: 'string',
|
|
1942
|
+
statuses: { 'type': 'array', 'itemType': 'string' },
|
|
1943
|
+
username: 'string',
|
|
1944
|
+
};
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
constructor(map?: { [key: string]: any }) {
|
|
1948
|
+
super(map);
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
export class ListExcessiveDeviceRegistrationApplicationsResponseBody extends $tea.Model {
|
|
1953
|
+
applications?: ListExcessiveDeviceRegistrationApplicationsResponseBodyApplications[];
|
|
1954
|
+
requestId?: string;
|
|
1955
|
+
totalNum?: number;
|
|
1956
|
+
static names(): { [key: string]: string } {
|
|
1957
|
+
return {
|
|
1958
|
+
applications: 'Applications',
|
|
1959
|
+
requestId: 'RequestId',
|
|
1960
|
+
totalNum: 'TotalNum',
|
|
1961
|
+
};
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
static types(): { [key: string]: any } {
|
|
1965
|
+
return {
|
|
1966
|
+
applications: { 'type': 'array', 'itemType': ListExcessiveDeviceRegistrationApplicationsResponseBodyApplications },
|
|
1967
|
+
requestId: 'string',
|
|
1968
|
+
totalNum: 'number',
|
|
1969
|
+
};
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
constructor(map?: { [key: string]: any }) {
|
|
1973
|
+
super(map);
|
|
1974
|
+
}
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
export class ListExcessiveDeviceRegistrationApplicationsResponse extends $tea.Model {
|
|
1978
|
+
headers: { [key: string]: string };
|
|
1979
|
+
statusCode: number;
|
|
1980
|
+
body: ListExcessiveDeviceRegistrationApplicationsResponseBody;
|
|
1981
|
+
static names(): { [key: string]: string } {
|
|
1982
|
+
return {
|
|
1983
|
+
headers: 'headers',
|
|
1984
|
+
statusCode: 'statusCode',
|
|
1985
|
+
body: 'body',
|
|
1986
|
+
};
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
static types(): { [key: string]: any } {
|
|
1990
|
+
return {
|
|
1991
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1992
|
+
statusCode: 'number',
|
|
1993
|
+
body: ListExcessiveDeviceRegistrationApplicationsResponseBody,
|
|
1994
|
+
};
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
constructor(map?: { [key: string]: any }) {
|
|
1998
|
+
super(map);
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
|
|
1539
2002
|
export class ListPolicesForPrivateAccessApplicationRequest extends $tea.Model {
|
|
1540
2003
|
applicationIds?: string[];
|
|
1541
2004
|
static names(): { [key: string]: string } {
|
|
@@ -2136,17 +2599,41 @@ export class ListPrivateAccessTagsForDynamicRouteResponse extends $tea.Model {
|
|
|
2136
2599
|
}
|
|
2137
2600
|
}
|
|
2138
2601
|
|
|
2139
|
-
export class
|
|
2140
|
-
|
|
2602
|
+
export class ListRegistrationPoliciesRequest extends $tea.Model {
|
|
2603
|
+
companyLimitType?: string;
|
|
2604
|
+
currentPage?: number;
|
|
2605
|
+
matchMode?: string;
|
|
2606
|
+
name?: string;
|
|
2607
|
+
pageSize?: number;
|
|
2608
|
+
personalLimitType?: string;
|
|
2609
|
+
policyIds?: string[];
|
|
2610
|
+
status?: string;
|
|
2611
|
+
userGroupId?: string;
|
|
2141
2612
|
static names(): { [key: string]: string } {
|
|
2142
2613
|
return {
|
|
2143
|
-
|
|
2614
|
+
companyLimitType: 'CompanyLimitType',
|
|
2615
|
+
currentPage: 'CurrentPage',
|
|
2616
|
+
matchMode: 'MatchMode',
|
|
2617
|
+
name: 'Name',
|
|
2618
|
+
pageSize: 'PageSize',
|
|
2619
|
+
personalLimitType: 'PersonalLimitType',
|
|
2620
|
+
policyIds: 'PolicyIds',
|
|
2621
|
+
status: 'Status',
|
|
2622
|
+
userGroupId: 'UserGroupId',
|
|
2144
2623
|
};
|
|
2145
2624
|
}
|
|
2146
2625
|
|
|
2147
2626
|
static types(): { [key: string]: any } {
|
|
2148
2627
|
return {
|
|
2149
|
-
|
|
2628
|
+
companyLimitType: 'string',
|
|
2629
|
+
currentPage: 'number',
|
|
2630
|
+
matchMode: 'string',
|
|
2631
|
+
name: 'string',
|
|
2632
|
+
pageSize: 'number',
|
|
2633
|
+
personalLimitType: 'string',
|
|
2634
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2635
|
+
status: 'string',
|
|
2636
|
+
userGroupId: 'string',
|
|
2150
2637
|
};
|
|
2151
2638
|
}
|
|
2152
2639
|
|
|
@@ -2155,20 +2642,23 @@ export class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
|
2155
2642
|
}
|
|
2156
2643
|
}
|
|
2157
2644
|
|
|
2158
|
-
export class
|
|
2159
|
-
|
|
2645
|
+
export class ListRegistrationPoliciesResponseBody extends $tea.Model {
|
|
2646
|
+
policies?: ListRegistrationPoliciesResponseBodyPolicies[];
|
|
2160
2647
|
requestId?: string;
|
|
2648
|
+
totalNum?: string;
|
|
2161
2649
|
static names(): { [key: string]: string } {
|
|
2162
2650
|
return {
|
|
2163
|
-
|
|
2651
|
+
policies: 'Policies',
|
|
2164
2652
|
requestId: 'RequestId',
|
|
2653
|
+
totalNum: 'TotalNum',
|
|
2165
2654
|
};
|
|
2166
2655
|
}
|
|
2167
2656
|
|
|
2168
2657
|
static types(): { [key: string]: any } {
|
|
2169
2658
|
return {
|
|
2170
|
-
|
|
2659
|
+
policies: { 'type': 'array', 'itemType': ListRegistrationPoliciesResponseBodyPolicies },
|
|
2171
2660
|
requestId: 'string',
|
|
2661
|
+
totalNum: 'string',
|
|
2172
2662
|
};
|
|
2173
2663
|
}
|
|
2174
2664
|
|
|
@@ -2177,10 +2667,10 @@ export class ListTagsForPrivateAccessApplicationResponseBody extends $tea.Model
|
|
|
2177
2667
|
}
|
|
2178
2668
|
}
|
|
2179
2669
|
|
|
2180
|
-
export class
|
|
2670
|
+
export class ListRegistrationPoliciesResponse extends $tea.Model {
|
|
2181
2671
|
headers: { [key: string]: string };
|
|
2182
2672
|
statusCode: number;
|
|
2183
|
-
body:
|
|
2673
|
+
body: ListRegistrationPoliciesResponseBody;
|
|
2184
2674
|
static names(): { [key: string]: string } {
|
|
2185
2675
|
return {
|
|
2186
2676
|
headers: 'headers',
|
|
@@ -2193,7 +2683,7 @@ export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2193
2683
|
return {
|
|
2194
2684
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2195
2685
|
statusCode: 'number',
|
|
2196
|
-
body:
|
|
2686
|
+
body: ListRegistrationPoliciesResponseBody,
|
|
2197
2687
|
};
|
|
2198
2688
|
}
|
|
2199
2689
|
|
|
@@ -2202,17 +2692,17 @@ export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2202
2692
|
}
|
|
2203
2693
|
}
|
|
2204
2694
|
|
|
2205
|
-
export class
|
|
2206
|
-
|
|
2695
|
+
export class ListRegistrationPoliciesForUserGroupRequest extends $tea.Model {
|
|
2696
|
+
userGroupIds?: string[];
|
|
2207
2697
|
static names(): { [key: string]: string } {
|
|
2208
2698
|
return {
|
|
2209
|
-
|
|
2699
|
+
userGroupIds: 'UserGroupIds',
|
|
2210
2700
|
};
|
|
2211
2701
|
}
|
|
2212
2702
|
|
|
2213
2703
|
static types(): { [key: string]: any } {
|
|
2214
2704
|
return {
|
|
2215
|
-
|
|
2705
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2216
2706
|
};
|
|
2217
2707
|
}
|
|
2218
2708
|
|
|
@@ -2221,20 +2711,20 @@ export class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2221
2711
|
}
|
|
2222
2712
|
}
|
|
2223
2713
|
|
|
2224
|
-
export class
|
|
2225
|
-
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2714
|
+
export class ListRegistrationPoliciesForUserGroupResponseBody extends $tea.Model {
|
|
2226
2715
|
requestId?: string;
|
|
2716
|
+
userGroups?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroups[];
|
|
2227
2717
|
static names(): { [key: string]: string } {
|
|
2228
2718
|
return {
|
|
2229
|
-
polices: 'Polices',
|
|
2230
2719
|
requestId: 'RequestId',
|
|
2720
|
+
userGroups: 'UserGroups',
|
|
2231
2721
|
};
|
|
2232
2722
|
}
|
|
2233
2723
|
|
|
2234
2724
|
static types(): { [key: string]: any } {
|
|
2235
2725
|
return {
|
|
2236
|
-
polices: { 'type': 'array', 'itemType': ListTagsForPrivateAccessPolicyResponseBodyPolices },
|
|
2237
2726
|
requestId: 'string',
|
|
2727
|
+
userGroups: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroups },
|
|
2238
2728
|
};
|
|
2239
2729
|
}
|
|
2240
2730
|
|
|
@@ -2243,10 +2733,10 @@ export class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2243
2733
|
}
|
|
2244
2734
|
}
|
|
2245
2735
|
|
|
2246
|
-
export class
|
|
2736
|
+
export class ListRegistrationPoliciesForUserGroupResponse extends $tea.Model {
|
|
2247
2737
|
headers: { [key: string]: string };
|
|
2248
2738
|
statusCode: number;
|
|
2249
|
-
body:
|
|
2739
|
+
body: ListRegistrationPoliciesForUserGroupResponseBody;
|
|
2250
2740
|
static names(): { [key: string]: string } {
|
|
2251
2741
|
return {
|
|
2252
2742
|
headers: 'headers',
|
|
@@ -2259,7 +2749,7 @@ export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2259
2749
|
return {
|
|
2260
2750
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2261
2751
|
statusCode: 'number',
|
|
2262
|
-
body:
|
|
2752
|
+
body: ListRegistrationPoliciesForUserGroupResponseBody,
|
|
2263
2753
|
};
|
|
2264
2754
|
}
|
|
2265
2755
|
|
|
@@ -2268,32 +2758,23 @@ export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2268
2758
|
}
|
|
2269
2759
|
}
|
|
2270
2760
|
|
|
2271
|
-
export class
|
|
2272
|
-
attributeValue?: string;
|
|
2761
|
+
export class ListSoftwareForUserDeviceRequest extends $tea.Model {
|
|
2273
2762
|
currentPage?: number;
|
|
2274
|
-
|
|
2275
|
-
PAPolicyId?: string;
|
|
2763
|
+
deviceTag?: string;
|
|
2276
2764
|
pageSize?: number;
|
|
2277
|
-
userGroupIds?: string[];
|
|
2278
2765
|
static names(): { [key: string]: string } {
|
|
2279
2766
|
return {
|
|
2280
|
-
attributeValue: 'AttributeValue',
|
|
2281
2767
|
currentPage: 'CurrentPage',
|
|
2282
|
-
|
|
2283
|
-
PAPolicyId: 'PAPolicyId',
|
|
2768
|
+
deviceTag: 'DeviceTag',
|
|
2284
2769
|
pageSize: 'PageSize',
|
|
2285
|
-
userGroupIds: 'UserGroupIds',
|
|
2286
2770
|
};
|
|
2287
2771
|
}
|
|
2288
2772
|
|
|
2289
2773
|
static types(): { [key: string]: any } {
|
|
2290
2774
|
return {
|
|
2291
|
-
attributeValue: 'string',
|
|
2292
2775
|
currentPage: 'number',
|
|
2293
|
-
|
|
2294
|
-
PAPolicyId: 'string',
|
|
2776
|
+
deviceTag: 'string',
|
|
2295
2777
|
pageSize: 'number',
|
|
2296
|
-
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2297
2778
|
};
|
|
2298
2779
|
}
|
|
2299
2780
|
|
|
@@ -2302,23 +2783,23 @@ export class ListUserGroupsRequest extends $tea.Model {
|
|
|
2302
2783
|
}
|
|
2303
2784
|
}
|
|
2304
2785
|
|
|
2305
|
-
export class
|
|
2786
|
+
export class ListSoftwareForUserDeviceResponseBody extends $tea.Model {
|
|
2306
2787
|
requestId?: string;
|
|
2788
|
+
software?: ListSoftwareForUserDeviceResponseBodySoftware[];
|
|
2307
2789
|
totalNum?: number;
|
|
2308
|
-
userGroups?: ListUserGroupsResponseBodyUserGroups[];
|
|
2309
2790
|
static names(): { [key: string]: string } {
|
|
2310
2791
|
return {
|
|
2311
2792
|
requestId: 'RequestId',
|
|
2793
|
+
software: 'Software',
|
|
2312
2794
|
totalNum: 'TotalNum',
|
|
2313
|
-
userGroups: 'UserGroups',
|
|
2314
2795
|
};
|
|
2315
2796
|
}
|
|
2316
2797
|
|
|
2317
2798
|
static types(): { [key: string]: any } {
|
|
2318
2799
|
return {
|
|
2319
2800
|
requestId: 'string',
|
|
2801
|
+
software: { 'type': 'array', 'itemType': ListSoftwareForUserDeviceResponseBodySoftware },
|
|
2320
2802
|
totalNum: 'number',
|
|
2321
|
-
userGroups: { 'type': 'array', 'itemType': ListUserGroupsResponseBodyUserGroups },
|
|
2322
2803
|
};
|
|
2323
2804
|
}
|
|
2324
2805
|
|
|
@@ -2327,10 +2808,10 @@ export class ListUserGroupsResponseBody extends $tea.Model {
|
|
|
2327
2808
|
}
|
|
2328
2809
|
}
|
|
2329
2810
|
|
|
2330
|
-
export class
|
|
2811
|
+
export class ListSoftwareForUserDeviceResponse extends $tea.Model {
|
|
2331
2812
|
headers: { [key: string]: string };
|
|
2332
2813
|
statusCode: number;
|
|
2333
|
-
body:
|
|
2814
|
+
body: ListSoftwareForUserDeviceResponseBody;
|
|
2334
2815
|
static names(): { [key: string]: string } {
|
|
2335
2816
|
return {
|
|
2336
2817
|
headers: 'headers',
|
|
@@ -2343,7 +2824,7 @@ export class ListUserGroupsResponse extends $tea.Model {
|
|
|
2343
2824
|
return {
|
|
2344
2825
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2345
2826
|
statusCode: 'number',
|
|
2346
|
-
body:
|
|
2827
|
+
body: ListSoftwareForUserDeviceResponseBody,
|
|
2347
2828
|
};
|
|
2348
2829
|
}
|
|
2349
2830
|
|
|
@@ -2352,17 +2833,17 @@ export class ListUserGroupsResponse extends $tea.Model {
|
|
|
2352
2833
|
}
|
|
2353
2834
|
}
|
|
2354
2835
|
|
|
2355
|
-
export class
|
|
2356
|
-
|
|
2836
|
+
export class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
2837
|
+
applicationIds?: string[];
|
|
2357
2838
|
static names(): { [key: string]: string } {
|
|
2358
2839
|
return {
|
|
2359
|
-
|
|
2840
|
+
applicationIds: 'ApplicationIds',
|
|
2360
2841
|
};
|
|
2361
2842
|
}
|
|
2362
2843
|
|
|
2363
2844
|
static types(): { [key: string]: any } {
|
|
2364
2845
|
return {
|
|
2365
|
-
|
|
2846
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
2366
2847
|
};
|
|
2367
2848
|
}
|
|
2368
2849
|
|
|
@@ -2371,19 +2852,19 @@ export class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2371
2852
|
}
|
|
2372
2853
|
}
|
|
2373
2854
|
|
|
2374
|
-
export class
|
|
2375
|
-
|
|
2855
|
+
export class ListTagsForPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
2856
|
+
applications?: ListTagsForPrivateAccessApplicationResponseBodyApplications[];
|
|
2376
2857
|
requestId?: string;
|
|
2377
2858
|
static names(): { [key: string]: string } {
|
|
2378
2859
|
return {
|
|
2379
|
-
|
|
2860
|
+
applications: 'Applications',
|
|
2380
2861
|
requestId: 'RequestId',
|
|
2381
2862
|
};
|
|
2382
2863
|
}
|
|
2383
2864
|
|
|
2384
2865
|
static types(): { [key: string]: any } {
|
|
2385
2866
|
return {
|
|
2386
|
-
|
|
2867
|
+
applications: { 'type': 'array', 'itemType': ListTagsForPrivateAccessApplicationResponseBodyApplications },
|
|
2387
2868
|
requestId: 'string',
|
|
2388
2869
|
};
|
|
2389
2870
|
}
|
|
@@ -2393,10 +2874,10 @@ export class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model
|
|
|
2393
2874
|
}
|
|
2394
2875
|
}
|
|
2395
2876
|
|
|
2396
|
-
export class
|
|
2877
|
+
export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
2397
2878
|
headers: { [key: string]: string };
|
|
2398
2879
|
statusCode: number;
|
|
2399
|
-
body:
|
|
2880
|
+
body: ListTagsForPrivateAccessApplicationResponseBody;
|
|
2400
2881
|
static names(): { [key: string]: string } {
|
|
2401
2882
|
return {
|
|
2402
2883
|
headers: 'headers',
|
|
@@ -2409,7 +2890,7 @@ export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2409
2890
|
return {
|
|
2410
2891
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2411
2892
|
statusCode: 'number',
|
|
2412
|
-
body:
|
|
2893
|
+
body: ListTagsForPrivateAccessApplicationResponseBody,
|
|
2413
2894
|
};
|
|
2414
2895
|
}
|
|
2415
2896
|
|
|
@@ -2418,50 +2899,17 @@ export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2418
2899
|
}
|
|
2419
2900
|
}
|
|
2420
2901
|
|
|
2421
|
-
export class
|
|
2422
|
-
|
|
2423
|
-
applicationType?: string;
|
|
2424
|
-
description?: string;
|
|
2425
|
-
dynamicRouteId?: string;
|
|
2426
|
-
dynamicRouteType?: string;
|
|
2427
|
-
modifyType?: string;
|
|
2428
|
-
name?: string;
|
|
2429
|
-
nextHop?: string;
|
|
2430
|
-
priority?: number;
|
|
2431
|
-
regionIds?: string[];
|
|
2432
|
-
status?: string;
|
|
2433
|
-
tagIds?: string[];
|
|
2902
|
+
export class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
2903
|
+
policyIds?: string[];
|
|
2434
2904
|
static names(): { [key: string]: string } {
|
|
2435
2905
|
return {
|
|
2436
|
-
|
|
2437
|
-
applicationType: 'ApplicationType',
|
|
2438
|
-
description: 'Description',
|
|
2439
|
-
dynamicRouteId: 'DynamicRouteId',
|
|
2440
|
-
dynamicRouteType: 'DynamicRouteType',
|
|
2441
|
-
modifyType: 'ModifyType',
|
|
2442
|
-
name: 'Name',
|
|
2443
|
-
nextHop: 'NextHop',
|
|
2444
|
-
priority: 'Priority',
|
|
2445
|
-
regionIds: 'RegionIds',
|
|
2446
|
-
status: 'Status',
|
|
2447
|
-
tagIds: 'TagIds',
|
|
2906
|
+
policyIds: 'PolicyIds',
|
|
2448
2907
|
};
|
|
2449
2908
|
}
|
|
2450
2909
|
|
|
2451
2910
|
static types(): { [key: string]: any } {
|
|
2452
2911
|
return {
|
|
2453
|
-
|
|
2454
|
-
applicationType: 'string',
|
|
2455
|
-
description: 'string',
|
|
2456
|
-
dynamicRouteId: 'string',
|
|
2457
|
-
dynamicRouteType: 'string',
|
|
2458
|
-
modifyType: 'string',
|
|
2459
|
-
name: 'string',
|
|
2460
|
-
nextHop: 'string',
|
|
2461
|
-
priority: 'number',
|
|
2462
|
-
regionIds: { 'type': 'array', 'itemType': 'string' },
|
|
2463
|
-
status: 'string',
|
|
2464
|
-
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
2912
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2465
2913
|
};
|
|
2466
2914
|
}
|
|
2467
2915
|
|
|
@@ -2470,16 +2918,19 @@ export class UpdateDynamicRouteRequest extends $tea.Model {
|
|
|
2470
2918
|
}
|
|
2471
2919
|
}
|
|
2472
2920
|
|
|
2473
|
-
export class
|
|
2921
|
+
export class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
2922
|
+
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2474
2923
|
requestId?: string;
|
|
2475
2924
|
static names(): { [key: string]: string } {
|
|
2476
2925
|
return {
|
|
2926
|
+
polices: 'Polices',
|
|
2477
2927
|
requestId: 'RequestId',
|
|
2478
2928
|
};
|
|
2479
2929
|
}
|
|
2480
2930
|
|
|
2481
2931
|
static types(): { [key: string]: any } {
|
|
2482
2932
|
return {
|
|
2933
|
+
polices: { 'type': 'array', 'itemType': ListTagsForPrivateAccessPolicyResponseBodyPolices },
|
|
2483
2934
|
requestId: 'string',
|
|
2484
2935
|
};
|
|
2485
2936
|
}
|
|
@@ -2489,10 +2940,10 @@ export class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
|
2489
2940
|
}
|
|
2490
2941
|
}
|
|
2491
2942
|
|
|
2492
|
-
export class
|
|
2943
|
+
export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
2493
2944
|
headers: { [key: string]: string };
|
|
2494
2945
|
statusCode: number;
|
|
2495
|
-
body:
|
|
2946
|
+
body: ListTagsForPrivateAccessPolicyResponseBody;
|
|
2496
2947
|
static names(): { [key: string]: string } {
|
|
2497
2948
|
return {
|
|
2498
2949
|
headers: 'headers',
|
|
@@ -2505,7 +2956,7 @@ export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
|
2505
2956
|
return {
|
|
2506
2957
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2507
2958
|
statusCode: 'number',
|
|
2508
|
-
body:
|
|
2959
|
+
body: ListTagsForPrivateAccessPolicyResponseBody,
|
|
2509
2960
|
};
|
|
2510
2961
|
}
|
|
2511
2962
|
|
|
@@ -2514,38 +2965,65 @@ export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
|
2514
2965
|
}
|
|
2515
2966
|
}
|
|
2516
2967
|
|
|
2517
|
-
export class
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2968
|
+
export class ListUserDevicesRequest extends $tea.Model {
|
|
2969
|
+
appStatuses?: string[];
|
|
2970
|
+
currentPage?: number;
|
|
2971
|
+
department?: string;
|
|
2972
|
+
deviceBelong?: string;
|
|
2973
|
+
deviceStatuses?: string[];
|
|
2974
|
+
deviceTags?: string[];
|
|
2975
|
+
deviceTypes?: string[];
|
|
2976
|
+
dlpStatuses?: string[];
|
|
2977
|
+
hostname?: string;
|
|
2978
|
+
iaStatuses?: string[];
|
|
2979
|
+
mac?: string;
|
|
2980
|
+
nacStatuses?: string[];
|
|
2981
|
+
paStatuses?: string[];
|
|
2982
|
+
pageSize?: number;
|
|
2983
|
+
saseUserId?: string;
|
|
2984
|
+
sharingStatus?: boolean;
|
|
2985
|
+
username?: string;
|
|
2526
2986
|
static names(): { [key: string]: string } {
|
|
2527
2987
|
return {
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2988
|
+
appStatuses: 'AppStatuses',
|
|
2989
|
+
currentPage: 'CurrentPage',
|
|
2990
|
+
department: 'Department',
|
|
2991
|
+
deviceBelong: 'DeviceBelong',
|
|
2992
|
+
deviceStatuses: 'DeviceStatuses',
|
|
2993
|
+
deviceTags: 'DeviceTags',
|
|
2994
|
+
deviceTypes: 'DeviceTypes',
|
|
2995
|
+
dlpStatuses: 'DlpStatuses',
|
|
2996
|
+
hostname: 'Hostname',
|
|
2997
|
+
iaStatuses: 'IaStatuses',
|
|
2998
|
+
mac: 'Mac',
|
|
2999
|
+
nacStatuses: 'NacStatuses',
|
|
3000
|
+
paStatuses: 'PaStatuses',
|
|
3001
|
+
pageSize: 'PageSize',
|
|
3002
|
+
saseUserId: 'SaseUserId',
|
|
3003
|
+
sharingStatus: 'SharingStatus',
|
|
3004
|
+
username: 'Username',
|
|
2536
3005
|
};
|
|
2537
3006
|
}
|
|
2538
3007
|
|
|
2539
3008
|
static types(): { [key: string]: any } {
|
|
2540
3009
|
return {
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
3010
|
+
appStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3011
|
+
currentPage: 'number',
|
|
3012
|
+
department: 'string',
|
|
3013
|
+
deviceBelong: 'string',
|
|
3014
|
+
deviceStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3015
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3016
|
+
deviceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
3017
|
+
dlpStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3018
|
+
hostname: 'string',
|
|
3019
|
+
iaStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3020
|
+
mac: 'string',
|
|
3021
|
+
nacStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3022
|
+
paStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3023
|
+
pageSize: 'number',
|
|
3024
|
+
saseUserId: 'string',
|
|
3025
|
+
sharingStatus: 'boolean',
|
|
3026
|
+
username: 'string',
|
|
2549
3027
|
};
|
|
2550
3028
|
}
|
|
2551
3029
|
|
|
@@ -2554,17 +3032,23 @@ export class UpdatePrivateAccessApplicationRequest extends $tea.Model {
|
|
|
2554
3032
|
}
|
|
2555
3033
|
}
|
|
2556
3034
|
|
|
2557
|
-
export class
|
|
3035
|
+
export class ListUserDevicesResponseBody extends $tea.Model {
|
|
3036
|
+
devices?: ListUserDevicesResponseBodyDevices[];
|
|
2558
3037
|
requestId?: string;
|
|
3038
|
+
totalNum?: number;
|
|
2559
3039
|
static names(): { [key: string]: string } {
|
|
2560
3040
|
return {
|
|
3041
|
+
devices: 'Devices',
|
|
2561
3042
|
requestId: 'RequestId',
|
|
3043
|
+
totalNum: 'TotalNum',
|
|
2562
3044
|
};
|
|
2563
3045
|
}
|
|
2564
3046
|
|
|
2565
3047
|
static types(): { [key: string]: any } {
|
|
2566
3048
|
return {
|
|
3049
|
+
devices: { 'type': 'array', 'itemType': ListUserDevicesResponseBodyDevices },
|
|
2567
3050
|
requestId: 'string',
|
|
3051
|
+
totalNum: 'number',
|
|
2568
3052
|
};
|
|
2569
3053
|
}
|
|
2570
3054
|
|
|
@@ -2573,10 +3057,10 @@ export class UpdatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
|
2573
3057
|
}
|
|
2574
3058
|
}
|
|
2575
3059
|
|
|
2576
|
-
export class
|
|
3060
|
+
export class ListUserDevicesResponse extends $tea.Model {
|
|
2577
3061
|
headers: { [key: string]: string };
|
|
2578
3062
|
statusCode: number;
|
|
2579
|
-
body:
|
|
3063
|
+
body: ListUserDevicesResponseBody;
|
|
2580
3064
|
static names(): { [key: string]: string } {
|
|
2581
3065
|
return {
|
|
2582
3066
|
headers: 'headers',
|
|
@@ -2589,7 +3073,7 @@ export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2589
3073
|
return {
|
|
2590
3074
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2591
3075
|
statusCode: 'number',
|
|
2592
|
-
body:
|
|
3076
|
+
body: ListUserDevicesResponseBody,
|
|
2593
3077
|
};
|
|
2594
3078
|
}
|
|
2595
3079
|
|
|
@@ -2598,50 +3082,32 @@ export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2598
3082
|
}
|
|
2599
3083
|
}
|
|
2600
3084
|
|
|
2601
|
-
export class
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
policyAction?: string;
|
|
2608
|
-
policyId?: string;
|
|
2609
|
-
priority?: number;
|
|
2610
|
-
status?: string;
|
|
2611
|
-
tagIds?: string[];
|
|
3085
|
+
export class ListUserGroupsRequest extends $tea.Model {
|
|
3086
|
+
attributeValue?: string;
|
|
3087
|
+
currentPage?: number;
|
|
3088
|
+
name?: string;
|
|
3089
|
+
PAPolicyId?: string;
|
|
3090
|
+
pageSize?: number;
|
|
2612
3091
|
userGroupIds?: string[];
|
|
2613
|
-
userGroupMode?: string;
|
|
2614
3092
|
static names(): { [key: string]: string } {
|
|
2615
3093
|
return {
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
policyAction: 'PolicyAction',
|
|
2622
|
-
policyId: 'PolicyId',
|
|
2623
|
-
priority: 'Priority',
|
|
2624
|
-
status: 'Status',
|
|
2625
|
-
tagIds: 'TagIds',
|
|
3094
|
+
attributeValue: 'AttributeValue',
|
|
3095
|
+
currentPage: 'CurrentPage',
|
|
3096
|
+
name: 'Name',
|
|
3097
|
+
PAPolicyId: 'PAPolicyId',
|
|
3098
|
+
pageSize: 'PageSize',
|
|
2626
3099
|
userGroupIds: 'UserGroupIds',
|
|
2627
|
-
userGroupMode: 'UserGroupMode',
|
|
2628
3100
|
};
|
|
2629
3101
|
}
|
|
2630
3102
|
|
|
2631
3103
|
static types(): { [key: string]: any } {
|
|
2632
3104
|
return {
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
policyAction: 'string',
|
|
2639
|
-
policyId: 'string',
|
|
2640
|
-
priority: 'number',
|
|
2641
|
-
status: 'string',
|
|
2642
|
-
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3105
|
+
attributeValue: 'string',
|
|
3106
|
+
currentPage: 'number',
|
|
3107
|
+
name: 'string',
|
|
3108
|
+
PAPolicyId: 'string',
|
|
3109
|
+
pageSize: 'number',
|
|
2643
3110
|
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2644
|
-
userGroupMode: 'string',
|
|
2645
3111
|
};
|
|
2646
3112
|
}
|
|
2647
3113
|
|
|
@@ -2650,17 +3116,23 @@ export class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2650
3116
|
}
|
|
2651
3117
|
}
|
|
2652
3118
|
|
|
2653
|
-
export class
|
|
3119
|
+
export class ListUserGroupsResponseBody extends $tea.Model {
|
|
2654
3120
|
requestId?: string;
|
|
3121
|
+
totalNum?: number;
|
|
3122
|
+
userGroups?: ListUserGroupsResponseBodyUserGroups[];
|
|
2655
3123
|
static names(): { [key: string]: string } {
|
|
2656
3124
|
return {
|
|
2657
3125
|
requestId: 'RequestId',
|
|
3126
|
+
totalNum: 'TotalNum',
|
|
3127
|
+
userGroups: 'UserGroups',
|
|
2658
3128
|
};
|
|
2659
3129
|
}
|
|
2660
3130
|
|
|
2661
3131
|
static types(): { [key: string]: any } {
|
|
2662
3132
|
return {
|
|
2663
3133
|
requestId: 'string',
|
|
3134
|
+
totalNum: 'number',
|
|
3135
|
+
userGroups: { 'type': 'array', 'itemType': ListUserGroupsResponseBodyUserGroups },
|
|
2664
3136
|
};
|
|
2665
3137
|
}
|
|
2666
3138
|
|
|
@@ -2669,10 +3141,10 @@ export class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2669
3141
|
}
|
|
2670
3142
|
}
|
|
2671
3143
|
|
|
2672
|
-
export class
|
|
3144
|
+
export class ListUserGroupsResponse extends $tea.Model {
|
|
2673
3145
|
headers: { [key: string]: string };
|
|
2674
3146
|
statusCode: number;
|
|
2675
|
-
body:
|
|
3147
|
+
body: ListUserGroupsResponseBody;
|
|
2676
3148
|
static names(): { [key: string]: string } {
|
|
2677
3149
|
return {
|
|
2678
3150
|
headers: 'headers',
|
|
@@ -2685,7 +3157,7 @@ export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2685
3157
|
return {
|
|
2686
3158
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2687
3159
|
statusCode: 'number',
|
|
2688
|
-
body:
|
|
3160
|
+
body: ListUserGroupsResponseBody,
|
|
2689
3161
|
};
|
|
2690
3162
|
}
|
|
2691
3163
|
|
|
@@ -2694,26 +3166,17 @@ export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2694
3166
|
}
|
|
2695
3167
|
}
|
|
2696
3168
|
|
|
2697
|
-
export class
|
|
2698
|
-
|
|
2699
|
-
description?: string;
|
|
2700
|
-
modifyType?: string;
|
|
2701
|
-
userGroupId?: string;
|
|
3169
|
+
export class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
3170
|
+
policyIds?: string[];
|
|
2702
3171
|
static names(): { [key: string]: string } {
|
|
2703
3172
|
return {
|
|
2704
|
-
|
|
2705
|
-
description: 'Description',
|
|
2706
|
-
modifyType: 'ModifyType',
|
|
2707
|
-
userGroupId: 'UserGroupId',
|
|
3173
|
+
policyIds: 'PolicyIds',
|
|
2708
3174
|
};
|
|
2709
3175
|
}
|
|
2710
3176
|
|
|
2711
3177
|
static types(): { [key: string]: any } {
|
|
2712
3178
|
return {
|
|
2713
|
-
|
|
2714
|
-
description: 'string',
|
|
2715
|
-
modifyType: 'string',
|
|
2716
|
-
userGroupId: 'string',
|
|
3179
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2717
3180
|
};
|
|
2718
3181
|
}
|
|
2719
3182
|
|
|
@@ -2722,16 +3185,19 @@ export class UpdateUserGroupRequest extends $tea.Model {
|
|
|
2722
3185
|
}
|
|
2723
3186
|
}
|
|
2724
3187
|
|
|
2725
|
-
export class
|
|
3188
|
+
export class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
3189
|
+
polices?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2726
3190
|
requestId?: string;
|
|
2727
3191
|
static names(): { [key: string]: string } {
|
|
2728
3192
|
return {
|
|
3193
|
+
polices: 'Polices',
|
|
2729
3194
|
requestId: 'RequestId',
|
|
2730
3195
|
};
|
|
2731
3196
|
}
|
|
2732
3197
|
|
|
2733
3198
|
static types(): { [key: string]: any } {
|
|
2734
3199
|
return {
|
|
3200
|
+
polices: { 'type': 'array', 'itemType': ListUserGroupsForPrivateAccessPolicyResponseBodyPolices },
|
|
2735
3201
|
requestId: 'string',
|
|
2736
3202
|
};
|
|
2737
3203
|
}
|
|
@@ -2741,10 +3207,10 @@ export class UpdateUserGroupResponseBody extends $tea.Model {
|
|
|
2741
3207
|
}
|
|
2742
3208
|
}
|
|
2743
3209
|
|
|
2744
|
-
export class
|
|
3210
|
+
export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
2745
3211
|
headers: { [key: string]: string };
|
|
2746
3212
|
statusCode: number;
|
|
2747
|
-
body:
|
|
3213
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
2748
3214
|
static names(): { [key: string]: string } {
|
|
2749
3215
|
return {
|
|
2750
3216
|
headers: 'headers',
|
|
@@ -2757,7 +3223,7 @@ export class UpdateUserGroupResponse extends $tea.Model {
|
|
|
2757
3223
|
return {
|
|
2758
3224
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2759
3225
|
statusCode: 'number',
|
|
2760
|
-
body:
|
|
3226
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody,
|
|
2761
3227
|
};
|
|
2762
3228
|
}
|
|
2763
3229
|
|
|
@@ -2766,20 +3232,17 @@ export class UpdateUserGroupResponse extends $tea.Model {
|
|
|
2766
3232
|
}
|
|
2767
3233
|
}
|
|
2768
3234
|
|
|
2769
|
-
export class
|
|
2770
|
-
|
|
2771
|
-
end?: number;
|
|
3235
|
+
export class ListUserGroupsForRegistrationPolicyRequest extends $tea.Model {
|
|
3236
|
+
policyIds?: string[];
|
|
2772
3237
|
static names(): { [key: string]: string } {
|
|
2773
3238
|
return {
|
|
2774
|
-
|
|
2775
|
-
end: 'End',
|
|
3239
|
+
policyIds: 'PolicyIds',
|
|
2776
3240
|
};
|
|
2777
3241
|
}
|
|
2778
3242
|
|
|
2779
3243
|
static types(): { [key: string]: any } {
|
|
2780
3244
|
return {
|
|
2781
|
-
|
|
2782
|
-
end: 'number',
|
|
3245
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2783
3246
|
};
|
|
2784
3247
|
}
|
|
2785
3248
|
|
|
@@ -2788,16 +3251,791 @@ export class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model
|
|
|
2788
3251
|
}
|
|
2789
3252
|
}
|
|
2790
3253
|
|
|
2791
|
-
export class
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
userGroupType?: string;
|
|
2795
|
-
value?: string;
|
|
3254
|
+
export class ListUserGroupsForRegistrationPolicyResponseBody extends $tea.Model {
|
|
3255
|
+
policies?: ListUserGroupsForRegistrationPolicyResponseBodyPolicies[];
|
|
3256
|
+
requestId?: string;
|
|
2796
3257
|
static names(): { [key: string]: string } {
|
|
2797
3258
|
return {
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
3259
|
+
policies: 'Policies',
|
|
3260
|
+
requestId: 'RequestId',
|
|
3261
|
+
};
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
static types(): { [key: string]: any } {
|
|
3265
|
+
return {
|
|
3266
|
+
policies: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPolicies },
|
|
3267
|
+
requestId: 'string',
|
|
3268
|
+
};
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
constructor(map?: { [key: string]: any }) {
|
|
3272
|
+
super(map);
|
|
3273
|
+
}
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
export class ListUserGroupsForRegistrationPolicyResponse extends $tea.Model {
|
|
3277
|
+
headers: { [key: string]: string };
|
|
3278
|
+
statusCode: number;
|
|
3279
|
+
body: ListUserGroupsForRegistrationPolicyResponseBody;
|
|
3280
|
+
static names(): { [key: string]: string } {
|
|
3281
|
+
return {
|
|
3282
|
+
headers: 'headers',
|
|
3283
|
+
statusCode: 'statusCode',
|
|
3284
|
+
body: 'body',
|
|
3285
|
+
};
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
static types(): { [key: string]: any } {
|
|
3289
|
+
return {
|
|
3290
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3291
|
+
statusCode: 'number',
|
|
3292
|
+
body: ListUserGroupsForRegistrationPolicyResponseBody,
|
|
3293
|
+
};
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3296
|
+
constructor(map?: { [key: string]: any }) {
|
|
3297
|
+
super(map);
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
export class UpdateDynamicRouteRequest extends $tea.Model {
|
|
3302
|
+
applicationIds?: string[];
|
|
3303
|
+
applicationType?: string;
|
|
3304
|
+
description?: string;
|
|
3305
|
+
dynamicRouteId?: string;
|
|
3306
|
+
dynamicRouteType?: string;
|
|
3307
|
+
modifyType?: string;
|
|
3308
|
+
name?: string;
|
|
3309
|
+
nextHop?: string;
|
|
3310
|
+
priority?: number;
|
|
3311
|
+
regionIds?: string[];
|
|
3312
|
+
status?: string;
|
|
3313
|
+
tagIds?: string[];
|
|
3314
|
+
static names(): { [key: string]: string } {
|
|
3315
|
+
return {
|
|
3316
|
+
applicationIds: 'ApplicationIds',
|
|
3317
|
+
applicationType: 'ApplicationType',
|
|
3318
|
+
description: 'Description',
|
|
3319
|
+
dynamicRouteId: 'DynamicRouteId',
|
|
3320
|
+
dynamicRouteType: 'DynamicRouteType',
|
|
3321
|
+
modifyType: 'ModifyType',
|
|
3322
|
+
name: 'Name',
|
|
3323
|
+
nextHop: 'NextHop',
|
|
3324
|
+
priority: 'Priority',
|
|
3325
|
+
regionIds: 'RegionIds',
|
|
3326
|
+
status: 'Status',
|
|
3327
|
+
tagIds: 'TagIds',
|
|
3328
|
+
};
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
static types(): { [key: string]: any } {
|
|
3332
|
+
return {
|
|
3333
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3334
|
+
applicationType: 'string',
|
|
3335
|
+
description: 'string',
|
|
3336
|
+
dynamicRouteId: 'string',
|
|
3337
|
+
dynamicRouteType: 'string',
|
|
3338
|
+
modifyType: 'string',
|
|
3339
|
+
name: 'string',
|
|
3340
|
+
nextHop: 'string',
|
|
3341
|
+
priority: 'number',
|
|
3342
|
+
regionIds: { 'type': 'array', 'itemType': 'string' },
|
|
3343
|
+
status: 'string',
|
|
3344
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3345
|
+
};
|
|
3346
|
+
}
|
|
3347
|
+
|
|
3348
|
+
constructor(map?: { [key: string]: any }) {
|
|
3349
|
+
super(map);
|
|
3350
|
+
}
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
export class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
3354
|
+
requestId?: string;
|
|
3355
|
+
static names(): { [key: string]: string } {
|
|
3356
|
+
return {
|
|
3357
|
+
requestId: 'RequestId',
|
|
3358
|
+
};
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
static types(): { [key: string]: any } {
|
|
3362
|
+
return {
|
|
3363
|
+
requestId: 'string',
|
|
3364
|
+
};
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
constructor(map?: { [key: string]: any }) {
|
|
3368
|
+
super(map);
|
|
3369
|
+
}
|
|
3370
|
+
}
|
|
3371
|
+
|
|
3372
|
+
export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
3373
|
+
headers: { [key: string]: string };
|
|
3374
|
+
statusCode: number;
|
|
3375
|
+
body: UpdateDynamicRouteResponseBody;
|
|
3376
|
+
static names(): { [key: string]: string } {
|
|
3377
|
+
return {
|
|
3378
|
+
headers: 'headers',
|
|
3379
|
+
statusCode: 'statusCode',
|
|
3380
|
+
body: 'body',
|
|
3381
|
+
};
|
|
3382
|
+
}
|
|
3383
|
+
|
|
3384
|
+
static types(): { [key: string]: any } {
|
|
3385
|
+
return {
|
|
3386
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3387
|
+
statusCode: 'number',
|
|
3388
|
+
body: UpdateDynamicRouteResponseBody,
|
|
3389
|
+
};
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
constructor(map?: { [key: string]: any }) {
|
|
3393
|
+
super(map);
|
|
3394
|
+
}
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3397
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusRequest extends $tea.Model {
|
|
3398
|
+
applicationIds?: string[];
|
|
3399
|
+
status?: string;
|
|
3400
|
+
static names(): { [key: string]: string } {
|
|
3401
|
+
return {
|
|
3402
|
+
applicationIds: 'ApplicationIds',
|
|
3403
|
+
status: 'Status',
|
|
3404
|
+
};
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
static types(): { [key: string]: any } {
|
|
3408
|
+
return {
|
|
3409
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3410
|
+
status: 'string',
|
|
3411
|
+
};
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
constructor(map?: { [key: string]: any }) {
|
|
3415
|
+
super(map);
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody extends $tea.Model {
|
|
3420
|
+
applications?: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications[];
|
|
3421
|
+
requestId?: string;
|
|
3422
|
+
static names(): { [key: string]: string } {
|
|
3423
|
+
return {
|
|
3424
|
+
applications: 'Applications',
|
|
3425
|
+
requestId: 'RequestId',
|
|
3426
|
+
};
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
static types(): { [key: string]: any } {
|
|
3430
|
+
return {
|
|
3431
|
+
applications: { 'type': 'array', 'itemType': UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications },
|
|
3432
|
+
requestId: 'string',
|
|
3433
|
+
};
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
constructor(map?: { [key: string]: any }) {
|
|
3437
|
+
super(map);
|
|
3438
|
+
}
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse extends $tea.Model {
|
|
3442
|
+
headers: { [key: string]: string };
|
|
3443
|
+
statusCode: number;
|
|
3444
|
+
body: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody;
|
|
3445
|
+
static names(): { [key: string]: string } {
|
|
3446
|
+
return {
|
|
3447
|
+
headers: 'headers',
|
|
3448
|
+
statusCode: 'statusCode',
|
|
3449
|
+
body: 'body',
|
|
3450
|
+
};
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
static types(): { [key: string]: any } {
|
|
3454
|
+
return {
|
|
3455
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3456
|
+
statusCode: 'number',
|
|
3457
|
+
body: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody,
|
|
3458
|
+
};
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
constructor(map?: { [key: string]: any }) {
|
|
3462
|
+
super(map);
|
|
3463
|
+
}
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
export class UpdatePrivateAccessApplicationRequest extends $tea.Model {
|
|
3467
|
+
addresses?: string[];
|
|
3468
|
+
applicationId?: string;
|
|
3469
|
+
description?: string;
|
|
3470
|
+
modifyType?: string;
|
|
3471
|
+
portRanges?: UpdatePrivateAccessApplicationRequestPortRanges[];
|
|
3472
|
+
protocol?: string;
|
|
3473
|
+
status?: string;
|
|
3474
|
+
tagIds?: string[];
|
|
3475
|
+
static names(): { [key: string]: string } {
|
|
3476
|
+
return {
|
|
3477
|
+
addresses: 'Addresses',
|
|
3478
|
+
applicationId: 'ApplicationId',
|
|
3479
|
+
description: 'Description',
|
|
3480
|
+
modifyType: 'ModifyType',
|
|
3481
|
+
portRanges: 'PortRanges',
|
|
3482
|
+
protocol: 'Protocol',
|
|
3483
|
+
status: 'Status',
|
|
3484
|
+
tagIds: 'TagIds',
|
|
3485
|
+
};
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
|
+
static types(): { [key: string]: any } {
|
|
3489
|
+
return {
|
|
3490
|
+
addresses: { 'type': 'array', 'itemType': 'string' },
|
|
3491
|
+
applicationId: 'string',
|
|
3492
|
+
description: 'string',
|
|
3493
|
+
modifyType: 'string',
|
|
3494
|
+
portRanges: { 'type': 'array', 'itemType': UpdatePrivateAccessApplicationRequestPortRanges },
|
|
3495
|
+
protocol: 'string',
|
|
3496
|
+
status: 'string',
|
|
3497
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3498
|
+
};
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
constructor(map?: { [key: string]: any }) {
|
|
3502
|
+
super(map);
|
|
3503
|
+
}
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
export class UpdatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
3507
|
+
requestId?: string;
|
|
3508
|
+
static names(): { [key: string]: string } {
|
|
3509
|
+
return {
|
|
3510
|
+
requestId: 'RequestId',
|
|
3511
|
+
};
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
static types(): { [key: string]: any } {
|
|
3515
|
+
return {
|
|
3516
|
+
requestId: 'string',
|
|
3517
|
+
};
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
constructor(map?: { [key: string]: any }) {
|
|
3521
|
+
super(map);
|
|
3522
|
+
}
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
3526
|
+
headers: { [key: string]: string };
|
|
3527
|
+
statusCode: number;
|
|
3528
|
+
body: UpdatePrivateAccessApplicationResponseBody;
|
|
3529
|
+
static names(): { [key: string]: string } {
|
|
3530
|
+
return {
|
|
3531
|
+
headers: 'headers',
|
|
3532
|
+
statusCode: 'statusCode',
|
|
3533
|
+
body: 'body',
|
|
3534
|
+
};
|
|
3535
|
+
}
|
|
3536
|
+
|
|
3537
|
+
static types(): { [key: string]: any } {
|
|
3538
|
+
return {
|
|
3539
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3540
|
+
statusCode: 'number',
|
|
3541
|
+
body: UpdatePrivateAccessApplicationResponseBody,
|
|
3542
|
+
};
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
constructor(map?: { [key: string]: any }) {
|
|
3546
|
+
super(map);
|
|
3547
|
+
}
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
export class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
3551
|
+
applicationIds?: string[];
|
|
3552
|
+
applicationType?: string;
|
|
3553
|
+
customUserAttributes?: UpdatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
3554
|
+
description?: string;
|
|
3555
|
+
modifyType?: string;
|
|
3556
|
+
policyAction?: string;
|
|
3557
|
+
policyId?: string;
|
|
3558
|
+
priority?: number;
|
|
3559
|
+
status?: string;
|
|
3560
|
+
tagIds?: string[];
|
|
3561
|
+
userGroupIds?: string[];
|
|
3562
|
+
userGroupMode?: string;
|
|
3563
|
+
static names(): { [key: string]: string } {
|
|
3564
|
+
return {
|
|
3565
|
+
applicationIds: 'ApplicationIds',
|
|
3566
|
+
applicationType: 'ApplicationType',
|
|
3567
|
+
customUserAttributes: 'CustomUserAttributes',
|
|
3568
|
+
description: 'Description',
|
|
3569
|
+
modifyType: 'ModifyType',
|
|
3570
|
+
policyAction: 'PolicyAction',
|
|
3571
|
+
policyId: 'PolicyId',
|
|
3572
|
+
priority: 'Priority',
|
|
3573
|
+
status: 'Status',
|
|
3574
|
+
tagIds: 'TagIds',
|
|
3575
|
+
userGroupIds: 'UserGroupIds',
|
|
3576
|
+
userGroupMode: 'UserGroupMode',
|
|
3577
|
+
};
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
static types(): { [key: string]: any } {
|
|
3581
|
+
return {
|
|
3582
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3583
|
+
applicationType: 'string',
|
|
3584
|
+
customUserAttributes: { 'type': 'array', 'itemType': UpdatePrivateAccessPolicyRequestCustomUserAttributes },
|
|
3585
|
+
description: 'string',
|
|
3586
|
+
modifyType: 'string',
|
|
3587
|
+
policyAction: 'string',
|
|
3588
|
+
policyId: 'string',
|
|
3589
|
+
priority: 'number',
|
|
3590
|
+
status: 'string',
|
|
3591
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3592
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3593
|
+
userGroupMode: 'string',
|
|
3594
|
+
};
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
constructor(map?: { [key: string]: any }) {
|
|
3598
|
+
super(map);
|
|
3599
|
+
}
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
export class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
3603
|
+
requestId?: string;
|
|
3604
|
+
static names(): { [key: string]: string } {
|
|
3605
|
+
return {
|
|
3606
|
+
requestId: 'RequestId',
|
|
3607
|
+
};
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
static types(): { [key: string]: any } {
|
|
3611
|
+
return {
|
|
3612
|
+
requestId: 'string',
|
|
3613
|
+
};
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
constructor(map?: { [key: string]: any }) {
|
|
3617
|
+
super(map);
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
3622
|
+
headers: { [key: string]: string };
|
|
3623
|
+
statusCode: number;
|
|
3624
|
+
body: UpdatePrivateAccessPolicyResponseBody;
|
|
3625
|
+
static names(): { [key: string]: string } {
|
|
3626
|
+
return {
|
|
3627
|
+
headers: 'headers',
|
|
3628
|
+
statusCode: 'statusCode',
|
|
3629
|
+
body: 'body',
|
|
3630
|
+
};
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
static types(): { [key: string]: any } {
|
|
3634
|
+
return {
|
|
3635
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3636
|
+
statusCode: 'number',
|
|
3637
|
+
body: UpdatePrivateAccessPolicyResponseBody,
|
|
3638
|
+
};
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
constructor(map?: { [key: string]: any }) {
|
|
3642
|
+
super(map);
|
|
3643
|
+
}
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
export class UpdateRegistrationPolicyRequest extends $tea.Model {
|
|
3647
|
+
companyLimitCount?: UpdateRegistrationPolicyRequestCompanyLimitCount;
|
|
3648
|
+
companyLimitType?: string;
|
|
3649
|
+
description?: string;
|
|
3650
|
+
matchMode?: string;
|
|
3651
|
+
name?: string;
|
|
3652
|
+
personalLimitCount?: UpdateRegistrationPolicyRequestPersonalLimitCount;
|
|
3653
|
+
personalLimitType?: string;
|
|
3654
|
+
policyId?: string;
|
|
3655
|
+
priority?: number;
|
|
3656
|
+
status?: string;
|
|
3657
|
+
userGroupIds?: string[];
|
|
3658
|
+
whitelist?: string[];
|
|
3659
|
+
static names(): { [key: string]: string } {
|
|
3660
|
+
return {
|
|
3661
|
+
companyLimitCount: 'CompanyLimitCount',
|
|
3662
|
+
companyLimitType: 'CompanyLimitType',
|
|
3663
|
+
description: 'Description',
|
|
3664
|
+
matchMode: 'MatchMode',
|
|
3665
|
+
name: 'Name',
|
|
3666
|
+
personalLimitCount: 'PersonalLimitCount',
|
|
3667
|
+
personalLimitType: 'PersonalLimitType',
|
|
3668
|
+
policyId: 'PolicyId',
|
|
3669
|
+
priority: 'Priority',
|
|
3670
|
+
status: 'Status',
|
|
3671
|
+
userGroupIds: 'UserGroupIds',
|
|
3672
|
+
whitelist: 'Whitelist',
|
|
3673
|
+
};
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
static types(): { [key: string]: any } {
|
|
3677
|
+
return {
|
|
3678
|
+
companyLimitCount: UpdateRegistrationPolicyRequestCompanyLimitCount,
|
|
3679
|
+
companyLimitType: 'string',
|
|
3680
|
+
description: 'string',
|
|
3681
|
+
matchMode: 'string',
|
|
3682
|
+
name: 'string',
|
|
3683
|
+
personalLimitCount: UpdateRegistrationPolicyRequestPersonalLimitCount,
|
|
3684
|
+
personalLimitType: 'string',
|
|
3685
|
+
policyId: 'string',
|
|
3686
|
+
priority: 'number',
|
|
3687
|
+
status: 'string',
|
|
3688
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3689
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
3690
|
+
};
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
constructor(map?: { [key: string]: any }) {
|
|
3694
|
+
super(map);
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
export class UpdateRegistrationPolicyShrinkRequest extends $tea.Model {
|
|
3699
|
+
companyLimitCountShrink?: string;
|
|
3700
|
+
companyLimitType?: string;
|
|
3701
|
+
description?: string;
|
|
3702
|
+
matchMode?: string;
|
|
3703
|
+
name?: string;
|
|
3704
|
+
personalLimitCountShrink?: string;
|
|
3705
|
+
personalLimitType?: string;
|
|
3706
|
+
policyId?: string;
|
|
3707
|
+
priority?: number;
|
|
3708
|
+
status?: string;
|
|
3709
|
+
userGroupIds?: string[];
|
|
3710
|
+
whitelist?: string[];
|
|
3711
|
+
static names(): { [key: string]: string } {
|
|
3712
|
+
return {
|
|
3713
|
+
companyLimitCountShrink: 'CompanyLimitCount',
|
|
3714
|
+
companyLimitType: 'CompanyLimitType',
|
|
3715
|
+
description: 'Description',
|
|
3716
|
+
matchMode: 'MatchMode',
|
|
3717
|
+
name: 'Name',
|
|
3718
|
+
personalLimitCountShrink: 'PersonalLimitCount',
|
|
3719
|
+
personalLimitType: 'PersonalLimitType',
|
|
3720
|
+
policyId: 'PolicyId',
|
|
3721
|
+
priority: 'Priority',
|
|
3722
|
+
status: 'Status',
|
|
3723
|
+
userGroupIds: 'UserGroupIds',
|
|
3724
|
+
whitelist: 'Whitelist',
|
|
3725
|
+
};
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
static types(): { [key: string]: any } {
|
|
3729
|
+
return {
|
|
3730
|
+
companyLimitCountShrink: 'string',
|
|
3731
|
+
companyLimitType: 'string',
|
|
3732
|
+
description: 'string',
|
|
3733
|
+
matchMode: 'string',
|
|
3734
|
+
name: 'string',
|
|
3735
|
+
personalLimitCountShrink: 'string',
|
|
3736
|
+
personalLimitType: 'string',
|
|
3737
|
+
policyId: 'string',
|
|
3738
|
+
priority: 'number',
|
|
3739
|
+
status: 'string',
|
|
3740
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3741
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
3742
|
+
};
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
constructor(map?: { [key: string]: any }) {
|
|
3746
|
+
super(map);
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
export class UpdateRegistrationPolicyResponseBody extends $tea.Model {
|
|
3751
|
+
policy?: UpdateRegistrationPolicyResponseBodyPolicy;
|
|
3752
|
+
requestId?: string;
|
|
3753
|
+
static names(): { [key: string]: string } {
|
|
3754
|
+
return {
|
|
3755
|
+
policy: 'Policy',
|
|
3756
|
+
requestId: 'RequestId',
|
|
3757
|
+
};
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
static types(): { [key: string]: any } {
|
|
3761
|
+
return {
|
|
3762
|
+
policy: UpdateRegistrationPolicyResponseBodyPolicy,
|
|
3763
|
+
requestId: 'string',
|
|
3764
|
+
};
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
constructor(map?: { [key: string]: any }) {
|
|
3768
|
+
super(map);
|
|
3769
|
+
}
|
|
3770
|
+
}
|
|
3771
|
+
|
|
3772
|
+
export class UpdateRegistrationPolicyResponse extends $tea.Model {
|
|
3773
|
+
headers: { [key: string]: string };
|
|
3774
|
+
statusCode: number;
|
|
3775
|
+
body: UpdateRegistrationPolicyResponseBody;
|
|
3776
|
+
static names(): { [key: string]: string } {
|
|
3777
|
+
return {
|
|
3778
|
+
headers: 'headers',
|
|
3779
|
+
statusCode: 'statusCode',
|
|
3780
|
+
body: 'body',
|
|
3781
|
+
};
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
static types(): { [key: string]: any } {
|
|
3785
|
+
return {
|
|
3786
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3787
|
+
statusCode: 'number',
|
|
3788
|
+
body: UpdateRegistrationPolicyResponseBody,
|
|
3789
|
+
};
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3792
|
+
constructor(map?: { [key: string]: any }) {
|
|
3793
|
+
super(map);
|
|
3794
|
+
}
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
export class UpdateUserDevicesSharingStatusRequest extends $tea.Model {
|
|
3798
|
+
deviceTags?: string[];
|
|
3799
|
+
sharingStatus?: boolean;
|
|
3800
|
+
static names(): { [key: string]: string } {
|
|
3801
|
+
return {
|
|
3802
|
+
deviceTags: 'DeviceTags',
|
|
3803
|
+
sharingStatus: 'SharingStatus',
|
|
3804
|
+
};
|
|
3805
|
+
}
|
|
3806
|
+
|
|
3807
|
+
static types(): { [key: string]: any } {
|
|
3808
|
+
return {
|
|
3809
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3810
|
+
sharingStatus: 'boolean',
|
|
3811
|
+
};
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
constructor(map?: { [key: string]: any }) {
|
|
3815
|
+
super(map);
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
export class UpdateUserDevicesSharingStatusResponseBody extends $tea.Model {
|
|
3820
|
+
devices?: UpdateUserDevicesSharingStatusResponseBodyDevices[];
|
|
3821
|
+
requestId?: string;
|
|
3822
|
+
static names(): { [key: string]: string } {
|
|
3823
|
+
return {
|
|
3824
|
+
devices: 'Devices',
|
|
3825
|
+
requestId: 'RequestId',
|
|
3826
|
+
};
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
static types(): { [key: string]: any } {
|
|
3830
|
+
return {
|
|
3831
|
+
devices: { 'type': 'array', 'itemType': UpdateUserDevicesSharingStatusResponseBodyDevices },
|
|
3832
|
+
requestId: 'string',
|
|
3833
|
+
};
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
constructor(map?: { [key: string]: any }) {
|
|
3837
|
+
super(map);
|
|
3838
|
+
}
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
export class UpdateUserDevicesSharingStatusResponse extends $tea.Model {
|
|
3842
|
+
headers: { [key: string]: string };
|
|
3843
|
+
statusCode: number;
|
|
3844
|
+
body: UpdateUserDevicesSharingStatusResponseBody;
|
|
3845
|
+
static names(): { [key: string]: string } {
|
|
3846
|
+
return {
|
|
3847
|
+
headers: 'headers',
|
|
3848
|
+
statusCode: 'statusCode',
|
|
3849
|
+
body: 'body',
|
|
3850
|
+
};
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
static types(): { [key: string]: any } {
|
|
3854
|
+
return {
|
|
3855
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3856
|
+
statusCode: 'number',
|
|
3857
|
+
body: UpdateUserDevicesSharingStatusResponseBody,
|
|
3858
|
+
};
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
constructor(map?: { [key: string]: any }) {
|
|
3862
|
+
super(map);
|
|
3863
|
+
}
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
export class UpdateUserDevicesStatusRequest extends $tea.Model {
|
|
3867
|
+
deviceAction?: string;
|
|
3868
|
+
deviceTags?: string[];
|
|
3869
|
+
static names(): { [key: string]: string } {
|
|
3870
|
+
return {
|
|
3871
|
+
deviceAction: 'DeviceAction',
|
|
3872
|
+
deviceTags: 'DeviceTags',
|
|
3873
|
+
};
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
static types(): { [key: string]: any } {
|
|
3877
|
+
return {
|
|
3878
|
+
deviceAction: 'string',
|
|
3879
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3880
|
+
};
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
constructor(map?: { [key: string]: any }) {
|
|
3884
|
+
super(map);
|
|
3885
|
+
}
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
export class UpdateUserDevicesStatusResponseBody extends $tea.Model {
|
|
3889
|
+
devices?: UpdateUserDevicesStatusResponseBodyDevices[];
|
|
3890
|
+
requestId?: string;
|
|
3891
|
+
static names(): { [key: string]: string } {
|
|
3892
|
+
return {
|
|
3893
|
+
devices: 'Devices',
|
|
3894
|
+
requestId: 'RequestId',
|
|
3895
|
+
};
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
static types(): { [key: string]: any } {
|
|
3899
|
+
return {
|
|
3900
|
+
devices: { 'type': 'array', 'itemType': UpdateUserDevicesStatusResponseBodyDevices },
|
|
3901
|
+
requestId: 'string',
|
|
3902
|
+
};
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
constructor(map?: { [key: string]: any }) {
|
|
3906
|
+
super(map);
|
|
3907
|
+
}
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
export class UpdateUserDevicesStatusResponse extends $tea.Model {
|
|
3911
|
+
headers: { [key: string]: string };
|
|
3912
|
+
statusCode: number;
|
|
3913
|
+
body: UpdateUserDevicesStatusResponseBody;
|
|
3914
|
+
static names(): { [key: string]: string } {
|
|
3915
|
+
return {
|
|
3916
|
+
headers: 'headers',
|
|
3917
|
+
statusCode: 'statusCode',
|
|
3918
|
+
body: 'body',
|
|
3919
|
+
};
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
static types(): { [key: string]: any } {
|
|
3923
|
+
return {
|
|
3924
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3925
|
+
statusCode: 'number',
|
|
3926
|
+
body: UpdateUserDevicesStatusResponseBody,
|
|
3927
|
+
};
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
constructor(map?: { [key: string]: any }) {
|
|
3931
|
+
super(map);
|
|
3932
|
+
}
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3935
|
+
export class UpdateUserGroupRequest extends $tea.Model {
|
|
3936
|
+
attributes?: UpdateUserGroupRequestAttributes[];
|
|
3937
|
+
description?: string;
|
|
3938
|
+
modifyType?: string;
|
|
3939
|
+
userGroupId?: string;
|
|
3940
|
+
static names(): { [key: string]: string } {
|
|
3941
|
+
return {
|
|
3942
|
+
attributes: 'Attributes',
|
|
3943
|
+
description: 'Description',
|
|
3944
|
+
modifyType: 'ModifyType',
|
|
3945
|
+
userGroupId: 'UserGroupId',
|
|
3946
|
+
};
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
static types(): { [key: string]: any } {
|
|
3950
|
+
return {
|
|
3951
|
+
attributes: { 'type': 'array', 'itemType': UpdateUserGroupRequestAttributes },
|
|
3952
|
+
description: 'string',
|
|
3953
|
+
modifyType: 'string',
|
|
3954
|
+
userGroupId: 'string',
|
|
3955
|
+
};
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
constructor(map?: { [key: string]: any }) {
|
|
3959
|
+
super(map);
|
|
3960
|
+
}
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
export class UpdateUserGroupResponseBody extends $tea.Model {
|
|
3964
|
+
requestId?: string;
|
|
3965
|
+
static names(): { [key: string]: string } {
|
|
3966
|
+
return {
|
|
3967
|
+
requestId: 'RequestId',
|
|
3968
|
+
};
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
static types(): { [key: string]: any } {
|
|
3972
|
+
return {
|
|
3973
|
+
requestId: 'string',
|
|
3974
|
+
};
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
constructor(map?: { [key: string]: any }) {
|
|
3978
|
+
super(map);
|
|
3979
|
+
}
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
export class UpdateUserGroupResponse extends $tea.Model {
|
|
3983
|
+
headers: { [key: string]: string };
|
|
3984
|
+
statusCode: number;
|
|
3985
|
+
body: UpdateUserGroupResponseBody;
|
|
3986
|
+
static names(): { [key: string]: string } {
|
|
3987
|
+
return {
|
|
3988
|
+
headers: 'headers',
|
|
3989
|
+
statusCode: 'statusCode',
|
|
3990
|
+
body: 'body',
|
|
3991
|
+
};
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
static types(): { [key: string]: any } {
|
|
3995
|
+
return {
|
|
3996
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3997
|
+
statusCode: 'number',
|
|
3998
|
+
body: UpdateUserGroupResponseBody,
|
|
3999
|
+
};
|
|
4000
|
+
}
|
|
4001
|
+
|
|
4002
|
+
constructor(map?: { [key: string]: any }) {
|
|
4003
|
+
super(map);
|
|
4004
|
+
}
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
export class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
4008
|
+
begin?: number;
|
|
4009
|
+
end?: number;
|
|
4010
|
+
static names(): { [key: string]: string } {
|
|
4011
|
+
return {
|
|
4012
|
+
begin: 'Begin',
|
|
4013
|
+
end: 'End',
|
|
4014
|
+
};
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
static types(): { [key: string]: any } {
|
|
4018
|
+
return {
|
|
4019
|
+
begin: 'number',
|
|
4020
|
+
end: 'number',
|
|
4021
|
+
};
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
constructor(map?: { [key: string]: any }) {
|
|
4025
|
+
super(map);
|
|
4026
|
+
}
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
export class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.Model {
|
|
4030
|
+
idpId?: number;
|
|
4031
|
+
relation?: string;
|
|
4032
|
+
userGroupType?: string;
|
|
4033
|
+
value?: string;
|
|
4034
|
+
static names(): { [key: string]: string } {
|
|
4035
|
+
return {
|
|
4036
|
+
idpId: 'IdpId',
|
|
4037
|
+
relation: 'Relation',
|
|
4038
|
+
userGroupType: 'UserGroupType',
|
|
2801
4039
|
value: 'Value',
|
|
2802
4040
|
};
|
|
2803
4041
|
}
|
|
@@ -2816,6 +4054,152 @@ export class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.M
|
|
|
2816
4054
|
}
|
|
2817
4055
|
}
|
|
2818
4056
|
|
|
4057
|
+
export class CreateRegistrationPolicyRequestCompanyLimitCount extends $tea.Model {
|
|
4058
|
+
all?: number;
|
|
4059
|
+
mobile?: number;
|
|
4060
|
+
PC?: number;
|
|
4061
|
+
static names(): { [key: string]: string } {
|
|
4062
|
+
return {
|
|
4063
|
+
all: 'All',
|
|
4064
|
+
mobile: 'Mobile',
|
|
4065
|
+
PC: 'PC',
|
|
4066
|
+
};
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
static types(): { [key: string]: any } {
|
|
4070
|
+
return {
|
|
4071
|
+
all: 'number',
|
|
4072
|
+
mobile: 'number',
|
|
4073
|
+
PC: 'number',
|
|
4074
|
+
};
|
|
4075
|
+
}
|
|
4076
|
+
|
|
4077
|
+
constructor(map?: { [key: string]: any }) {
|
|
4078
|
+
super(map);
|
|
4079
|
+
}
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
export class CreateRegistrationPolicyRequestPersonalLimitCount extends $tea.Model {
|
|
4083
|
+
all?: number;
|
|
4084
|
+
mobile?: number;
|
|
4085
|
+
PC?: number;
|
|
4086
|
+
static names(): { [key: string]: string } {
|
|
4087
|
+
return {
|
|
4088
|
+
all: 'All',
|
|
4089
|
+
mobile: 'Mobile',
|
|
4090
|
+
PC: 'PC',
|
|
4091
|
+
};
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
static types(): { [key: string]: any } {
|
|
4095
|
+
return {
|
|
4096
|
+
all: 'number',
|
|
4097
|
+
mobile: 'number',
|
|
4098
|
+
PC: 'number',
|
|
4099
|
+
};
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4102
|
+
constructor(map?: { [key: string]: any }) {
|
|
4103
|
+
super(map);
|
|
4104
|
+
}
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
export class CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount extends $tea.Model {
|
|
4108
|
+
all?: number;
|
|
4109
|
+
mobile?: number;
|
|
4110
|
+
PC?: number;
|
|
4111
|
+
static names(): { [key: string]: string } {
|
|
4112
|
+
return {
|
|
4113
|
+
all: 'All',
|
|
4114
|
+
mobile: 'Mobile',
|
|
4115
|
+
PC: 'PC',
|
|
4116
|
+
};
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
static types(): { [key: string]: any } {
|
|
4120
|
+
return {
|
|
4121
|
+
all: 'number',
|
|
4122
|
+
mobile: 'number',
|
|
4123
|
+
PC: 'number',
|
|
4124
|
+
};
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
constructor(map?: { [key: string]: any }) {
|
|
4128
|
+
super(map);
|
|
4129
|
+
}
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
export class CreateRegistrationPolicyResponseBodyPolicyLimitDetail extends $tea.Model {
|
|
4133
|
+
deviceBelong?: string;
|
|
4134
|
+
limitCount?: CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount;
|
|
4135
|
+
limitType?: string;
|
|
4136
|
+
static names(): { [key: string]: string } {
|
|
4137
|
+
return {
|
|
4138
|
+
deviceBelong: 'DeviceBelong',
|
|
4139
|
+
limitCount: 'LimitCount',
|
|
4140
|
+
limitType: 'LimitType',
|
|
4141
|
+
};
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
static types(): { [key: string]: any } {
|
|
4145
|
+
return {
|
|
4146
|
+
deviceBelong: 'string',
|
|
4147
|
+
limitCount: CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount,
|
|
4148
|
+
limitType: 'string',
|
|
4149
|
+
};
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
constructor(map?: { [key: string]: any }) {
|
|
4153
|
+
super(map);
|
|
4154
|
+
}
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
export class CreateRegistrationPolicyResponseBodyPolicy extends $tea.Model {
|
|
4158
|
+
createTime?: string;
|
|
4159
|
+
description?: string;
|
|
4160
|
+
limitDetail?: CreateRegistrationPolicyResponseBodyPolicyLimitDetail[];
|
|
4161
|
+
matchMode?: string;
|
|
4162
|
+
name?: string;
|
|
4163
|
+
policyId?: string;
|
|
4164
|
+
priority?: string;
|
|
4165
|
+
status?: string;
|
|
4166
|
+
userGroupIds?: string[];
|
|
4167
|
+
whitelist?: string[];
|
|
4168
|
+
static names(): { [key: string]: string } {
|
|
4169
|
+
return {
|
|
4170
|
+
createTime: 'CreateTime',
|
|
4171
|
+
description: 'Description',
|
|
4172
|
+
limitDetail: 'LimitDetail',
|
|
4173
|
+
matchMode: 'MatchMode',
|
|
4174
|
+
name: 'Name',
|
|
4175
|
+
policyId: 'PolicyId',
|
|
4176
|
+
priority: 'Priority',
|
|
4177
|
+
status: 'Status',
|
|
4178
|
+
userGroupIds: 'UserGroupIds',
|
|
4179
|
+
whitelist: 'Whitelist',
|
|
4180
|
+
};
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
static types(): { [key: string]: any } {
|
|
4184
|
+
return {
|
|
4185
|
+
createTime: 'string',
|
|
4186
|
+
description: 'string',
|
|
4187
|
+
limitDetail: { 'type': 'array', 'itemType': CreateRegistrationPolicyResponseBodyPolicyLimitDetail },
|
|
4188
|
+
matchMode: 'string',
|
|
4189
|
+
name: 'string',
|
|
4190
|
+
policyId: 'string',
|
|
4191
|
+
priority: 'string',
|
|
4192
|
+
status: 'string',
|
|
4193
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
4194
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
4195
|
+
};
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4198
|
+
constructor(map?: { [key: string]: any }) {
|
|
4199
|
+
super(map);
|
|
4200
|
+
}
|
|
4201
|
+
}
|
|
4202
|
+
|
|
2819
4203
|
export class CreateUserGroupRequestAttributes extends $tea.Model {
|
|
2820
4204
|
idpId?: number;
|
|
2821
4205
|
relation?: string;
|
|
@@ -2967,26 +4351,153 @@ export class GetPrivateAccessApplicationResponseBodyApplication extends $tea.Mod
|
|
|
2967
4351
|
}
|
|
2968
4352
|
}
|
|
2969
4353
|
|
|
2970
|
-
export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extends $tea.Model {
|
|
2971
|
-
idpId?: number;
|
|
2972
|
-
relation?: string;
|
|
2973
|
-
userGroupType?: string;
|
|
2974
|
-
value?: string;
|
|
4354
|
+
export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extends $tea.Model {
|
|
4355
|
+
idpId?: number;
|
|
4356
|
+
relation?: string;
|
|
4357
|
+
userGroupType?: string;
|
|
4358
|
+
value?: string;
|
|
4359
|
+
static names(): { [key: string]: string } {
|
|
4360
|
+
return {
|
|
4361
|
+
idpId: 'IdpId',
|
|
4362
|
+
relation: 'Relation',
|
|
4363
|
+
userGroupType: 'UserGroupType',
|
|
4364
|
+
value: 'Value',
|
|
4365
|
+
};
|
|
4366
|
+
}
|
|
4367
|
+
|
|
4368
|
+
static types(): { [key: string]: any } {
|
|
4369
|
+
return {
|
|
4370
|
+
idpId: 'number',
|
|
4371
|
+
relation: 'string',
|
|
4372
|
+
userGroupType: 'string',
|
|
4373
|
+
value: 'string',
|
|
4374
|
+
};
|
|
4375
|
+
}
|
|
4376
|
+
|
|
4377
|
+
constructor(map?: { [key: string]: any }) {
|
|
4378
|
+
super(map);
|
|
4379
|
+
}
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
export class GetPrivateAccessPolicyResponseBodyPolicy extends $tea.Model {
|
|
4383
|
+
applicationIds?: string[];
|
|
4384
|
+
applicationType?: string;
|
|
4385
|
+
createTime?: string;
|
|
4386
|
+
customUserAttributes?: GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes[];
|
|
4387
|
+
description?: string;
|
|
4388
|
+
name?: string;
|
|
4389
|
+
policyAction?: string;
|
|
4390
|
+
policyId?: string;
|
|
4391
|
+
priority?: number;
|
|
4392
|
+
status?: string;
|
|
4393
|
+
tagIds?: string[];
|
|
4394
|
+
userGroupIds?: string[];
|
|
4395
|
+
userGroupMode?: string;
|
|
4396
|
+
static names(): { [key: string]: string } {
|
|
4397
|
+
return {
|
|
4398
|
+
applicationIds: 'ApplicationIds',
|
|
4399
|
+
applicationType: 'ApplicationType',
|
|
4400
|
+
createTime: 'CreateTime',
|
|
4401
|
+
customUserAttributes: 'CustomUserAttributes',
|
|
4402
|
+
description: 'Description',
|
|
4403
|
+
name: 'Name',
|
|
4404
|
+
policyAction: 'PolicyAction',
|
|
4405
|
+
policyId: 'PolicyId',
|
|
4406
|
+
priority: 'Priority',
|
|
4407
|
+
status: 'Status',
|
|
4408
|
+
tagIds: 'TagIds',
|
|
4409
|
+
userGroupIds: 'UserGroupIds',
|
|
4410
|
+
userGroupMode: 'UserGroupMode',
|
|
4411
|
+
};
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
static types(): { [key: string]: any } {
|
|
4415
|
+
return {
|
|
4416
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
4417
|
+
applicationType: 'string',
|
|
4418
|
+
createTime: 'string',
|
|
4419
|
+
customUserAttributes: { 'type': 'array', 'itemType': GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes },
|
|
4420
|
+
description: 'string',
|
|
4421
|
+
name: 'string',
|
|
4422
|
+
policyAction: 'string',
|
|
4423
|
+
policyId: 'string',
|
|
4424
|
+
priority: 'number',
|
|
4425
|
+
status: 'string',
|
|
4426
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
4427
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
4428
|
+
userGroupMode: 'string',
|
|
4429
|
+
};
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
constructor(map?: { [key: string]: any }) {
|
|
4433
|
+
super(map);
|
|
4434
|
+
}
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
export class GetRegistrationPolicyResponseBodyLimitDetailLimitCount extends $tea.Model {
|
|
4438
|
+
all?: number;
|
|
4439
|
+
mobile?: number;
|
|
4440
|
+
PC?: number;
|
|
4441
|
+
static names(): { [key: string]: string } {
|
|
4442
|
+
return {
|
|
4443
|
+
all: 'All',
|
|
4444
|
+
mobile: 'Mobile',
|
|
4445
|
+
PC: 'PC',
|
|
4446
|
+
};
|
|
4447
|
+
}
|
|
4448
|
+
|
|
4449
|
+
static types(): { [key: string]: any } {
|
|
4450
|
+
return {
|
|
4451
|
+
all: 'number',
|
|
4452
|
+
mobile: 'number',
|
|
4453
|
+
PC: 'number',
|
|
4454
|
+
};
|
|
4455
|
+
}
|
|
4456
|
+
|
|
4457
|
+
constructor(map?: { [key: string]: any }) {
|
|
4458
|
+
super(map);
|
|
4459
|
+
}
|
|
4460
|
+
}
|
|
4461
|
+
|
|
4462
|
+
export class GetRegistrationPolicyResponseBodyLimitDetail extends $tea.Model {
|
|
4463
|
+
deviceBelong?: string;
|
|
4464
|
+
limitCount?: GetRegistrationPolicyResponseBodyLimitDetailLimitCount;
|
|
4465
|
+
limitType?: string;
|
|
4466
|
+
static names(): { [key: string]: string } {
|
|
4467
|
+
return {
|
|
4468
|
+
deviceBelong: 'DeviceBelong',
|
|
4469
|
+
limitCount: 'LimitCount',
|
|
4470
|
+
limitType: 'LimitType',
|
|
4471
|
+
};
|
|
4472
|
+
}
|
|
4473
|
+
|
|
4474
|
+
static types(): { [key: string]: any } {
|
|
4475
|
+
return {
|
|
4476
|
+
deviceBelong: 'string',
|
|
4477
|
+
limitCount: GetRegistrationPolicyResponseBodyLimitDetailLimitCount,
|
|
4478
|
+
limitType: 'string',
|
|
4479
|
+
};
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
constructor(map?: { [key: string]: any }) {
|
|
4483
|
+
super(map);
|
|
4484
|
+
}
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
export class GetUserDeviceResponseBodyDeviceHistoryUsers extends $tea.Model {
|
|
4488
|
+
saseUserId?: string;
|
|
4489
|
+
username?: string;
|
|
2975
4490
|
static names(): { [key: string]: string } {
|
|
2976
4491
|
return {
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
userGroupType: 'UserGroupType',
|
|
2980
|
-
value: 'Value',
|
|
4492
|
+
saseUserId: 'SaseUserId',
|
|
4493
|
+
username: 'Username',
|
|
2981
4494
|
};
|
|
2982
4495
|
}
|
|
2983
4496
|
|
|
2984
4497
|
static types(): { [key: string]: any } {
|
|
2985
4498
|
return {
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
userGroupType: 'string',
|
|
2989
|
-
value: 'string',
|
|
4499
|
+
saseUserId: 'string',
|
|
4500
|
+
username: 'string',
|
|
2990
4501
|
};
|
|
2991
4502
|
}
|
|
2992
4503
|
|
|
@@ -2995,53 +4506,92 @@ export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extend
|
|
|
2995
4506
|
}
|
|
2996
4507
|
}
|
|
2997
4508
|
|
|
2998
|
-
export class
|
|
2999
|
-
|
|
3000
|
-
|
|
4509
|
+
export class GetUserDeviceResponseBodyDevice extends $tea.Model {
|
|
4510
|
+
appStatus?: string;
|
|
4511
|
+
appVersion?: string;
|
|
4512
|
+
CPU?: string;
|
|
3001
4513
|
createTime?: string;
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
4514
|
+
department?: string;
|
|
4515
|
+
deviceBelong?: string;
|
|
4516
|
+
deviceModel?: string;
|
|
4517
|
+
deviceStatus?: string;
|
|
4518
|
+
deviceTag?: string;
|
|
4519
|
+
deviceType?: string;
|
|
4520
|
+
deviceVersion?: string;
|
|
4521
|
+
disk?: string;
|
|
4522
|
+
dlpStatus?: string;
|
|
4523
|
+
historyUsers?: GetUserDeviceResponseBodyDeviceHistoryUsers[];
|
|
4524
|
+
hostname?: string;
|
|
4525
|
+
iaStatus?: string;
|
|
4526
|
+
innerIP?: string;
|
|
4527
|
+
mac?: string;
|
|
4528
|
+
memory?: string;
|
|
4529
|
+
nacStatus?: string;
|
|
4530
|
+
paStatus?: string;
|
|
4531
|
+
saseUserId?: string;
|
|
4532
|
+
sharingStatus?: boolean;
|
|
4533
|
+
srcIP?: string;
|
|
4534
|
+
updateTime?: string;
|
|
4535
|
+
username?: string;
|
|
4536
|
+
static names(): { [key: string]: string } {
|
|
4537
|
+
return {
|
|
4538
|
+
appStatus: 'AppStatus',
|
|
4539
|
+
appVersion: 'AppVersion',
|
|
4540
|
+
CPU: 'CPU',
|
|
3016
4541
|
createTime: 'CreateTime',
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
4542
|
+
department: 'Department',
|
|
4543
|
+
deviceBelong: 'DeviceBelong',
|
|
4544
|
+
deviceModel: 'DeviceModel',
|
|
4545
|
+
deviceStatus: 'DeviceStatus',
|
|
4546
|
+
deviceTag: 'DeviceTag',
|
|
4547
|
+
deviceType: 'DeviceType',
|
|
4548
|
+
deviceVersion: 'DeviceVersion',
|
|
4549
|
+
disk: 'Disk',
|
|
4550
|
+
dlpStatus: 'DlpStatus',
|
|
4551
|
+
historyUsers: 'HistoryUsers',
|
|
4552
|
+
hostname: 'Hostname',
|
|
4553
|
+
iaStatus: 'IaStatus',
|
|
4554
|
+
innerIP: 'InnerIP',
|
|
4555
|
+
mac: 'Mac',
|
|
4556
|
+
memory: 'Memory',
|
|
4557
|
+
nacStatus: 'NacStatus',
|
|
4558
|
+
paStatus: 'PaStatus',
|
|
4559
|
+
saseUserId: 'SaseUserId',
|
|
4560
|
+
sharingStatus: 'SharingStatus',
|
|
4561
|
+
srcIP: 'SrcIP',
|
|
4562
|
+
updateTime: 'UpdateTime',
|
|
4563
|
+
username: 'Username',
|
|
3027
4564
|
};
|
|
3028
4565
|
}
|
|
3029
4566
|
|
|
3030
4567
|
static types(): { [key: string]: any } {
|
|
3031
4568
|
return {
|
|
3032
|
-
|
|
3033
|
-
|
|
4569
|
+
appStatus: 'string',
|
|
4570
|
+
appVersion: 'string',
|
|
4571
|
+
CPU: 'string',
|
|
3034
4572
|
createTime: 'string',
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
4573
|
+
department: 'string',
|
|
4574
|
+
deviceBelong: 'string',
|
|
4575
|
+
deviceModel: 'string',
|
|
4576
|
+
deviceStatus: 'string',
|
|
4577
|
+
deviceTag: 'string',
|
|
4578
|
+
deviceType: 'string',
|
|
4579
|
+
deviceVersion: 'string',
|
|
4580
|
+
disk: 'string',
|
|
4581
|
+
dlpStatus: 'string',
|
|
4582
|
+
historyUsers: { 'type': 'array', 'itemType': GetUserDeviceResponseBodyDeviceHistoryUsers },
|
|
4583
|
+
hostname: 'string',
|
|
4584
|
+
iaStatus: 'string',
|
|
4585
|
+
innerIP: 'string',
|
|
4586
|
+
mac: 'string',
|
|
4587
|
+
memory: 'string',
|
|
4588
|
+
nacStatus: 'string',
|
|
4589
|
+
paStatus: 'string',
|
|
4590
|
+
saseUserId: 'string',
|
|
4591
|
+
sharingStatus: 'boolean',
|
|
4592
|
+
srcIP: 'string',
|
|
4593
|
+
updateTime: 'string',
|
|
4594
|
+
username: 'string',
|
|
3045
4595
|
};
|
|
3046
4596
|
}
|
|
3047
4597
|
|
|
@@ -3444,6 +4994,58 @@ export class ListDynamicRoutesResponseBodyDynamicRoutes extends $tea.Model {
|
|
|
3444
4994
|
}
|
|
3445
4995
|
}
|
|
3446
4996
|
|
|
4997
|
+
export class ListExcessiveDeviceRegistrationApplicationsResponseBodyApplications extends $tea.Model {
|
|
4998
|
+
applicationId?: string;
|
|
4999
|
+
createTime?: string;
|
|
5000
|
+
department?: string;
|
|
5001
|
+
description?: string;
|
|
5002
|
+
deviceTag?: string;
|
|
5003
|
+
deviceType?: string;
|
|
5004
|
+
hostname?: string;
|
|
5005
|
+
isUsed?: boolean;
|
|
5006
|
+
mac?: string;
|
|
5007
|
+
saseUserId?: string;
|
|
5008
|
+
status?: string;
|
|
5009
|
+
username?: string;
|
|
5010
|
+
static names(): { [key: string]: string } {
|
|
5011
|
+
return {
|
|
5012
|
+
applicationId: 'ApplicationId',
|
|
5013
|
+
createTime: 'CreateTime',
|
|
5014
|
+
department: 'Department',
|
|
5015
|
+
description: 'Description',
|
|
5016
|
+
deviceTag: 'DeviceTag',
|
|
5017
|
+
deviceType: 'DeviceType',
|
|
5018
|
+
hostname: 'Hostname',
|
|
5019
|
+
isUsed: 'IsUsed',
|
|
5020
|
+
mac: 'Mac',
|
|
5021
|
+
saseUserId: 'SaseUserId',
|
|
5022
|
+
status: 'Status',
|
|
5023
|
+
username: 'Username',
|
|
5024
|
+
};
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
static types(): { [key: string]: any } {
|
|
5028
|
+
return {
|
|
5029
|
+
applicationId: 'string',
|
|
5030
|
+
createTime: 'string',
|
|
5031
|
+
department: 'string',
|
|
5032
|
+
description: 'string',
|
|
5033
|
+
deviceTag: 'string',
|
|
5034
|
+
deviceType: 'string',
|
|
5035
|
+
hostname: 'string',
|
|
5036
|
+
isUsed: 'boolean',
|
|
5037
|
+
mac: 'string',
|
|
5038
|
+
saseUserId: 'string',
|
|
5039
|
+
status: 'string',
|
|
5040
|
+
username: 'string',
|
|
5041
|
+
};
|
|
5042
|
+
}
|
|
5043
|
+
|
|
5044
|
+
constructor(map?: { [key: string]: any }) {
|
|
5045
|
+
super(map);
|
|
5046
|
+
}
|
|
5047
|
+
}
|
|
5048
|
+
|
|
3447
5049
|
export class ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPoliciesCustomUserAttributes extends $tea.Model {
|
|
3448
5050
|
idpId?: number;
|
|
3449
5051
|
relation?: string;
|
|
@@ -4011,6 +5613,245 @@ export class ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutes exten
|
|
|
4011
5613
|
}
|
|
4012
5614
|
}
|
|
4013
5615
|
|
|
5616
|
+
export class ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount extends $tea.Model {
|
|
5617
|
+
all?: number;
|
|
5618
|
+
mobile?: number;
|
|
5619
|
+
PC?: number;
|
|
5620
|
+
static names(): { [key: string]: string } {
|
|
5621
|
+
return {
|
|
5622
|
+
all: 'All',
|
|
5623
|
+
mobile: 'Mobile',
|
|
5624
|
+
PC: 'PC',
|
|
5625
|
+
};
|
|
5626
|
+
}
|
|
5627
|
+
|
|
5628
|
+
static types(): { [key: string]: any } {
|
|
5629
|
+
return {
|
|
5630
|
+
all: 'number',
|
|
5631
|
+
mobile: 'number',
|
|
5632
|
+
PC: 'number',
|
|
5633
|
+
};
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
constructor(map?: { [key: string]: any }) {
|
|
5637
|
+
super(map);
|
|
5638
|
+
}
|
|
5639
|
+
}
|
|
5640
|
+
|
|
5641
|
+
export class ListRegistrationPoliciesResponseBodyPoliciesLimitDetail extends $tea.Model {
|
|
5642
|
+
deviceBelong?: string;
|
|
5643
|
+
limitCount?: ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount;
|
|
5644
|
+
limitType?: string;
|
|
5645
|
+
static names(): { [key: string]: string } {
|
|
5646
|
+
return {
|
|
5647
|
+
deviceBelong: 'DeviceBelong',
|
|
5648
|
+
limitCount: 'LimitCount',
|
|
5649
|
+
limitType: 'LimitType',
|
|
5650
|
+
};
|
|
5651
|
+
}
|
|
5652
|
+
|
|
5653
|
+
static types(): { [key: string]: any } {
|
|
5654
|
+
return {
|
|
5655
|
+
deviceBelong: 'string',
|
|
5656
|
+
limitCount: ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount,
|
|
5657
|
+
limitType: 'string',
|
|
5658
|
+
};
|
|
5659
|
+
}
|
|
5660
|
+
|
|
5661
|
+
constructor(map?: { [key: string]: any }) {
|
|
5662
|
+
super(map);
|
|
5663
|
+
}
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
export class ListRegistrationPoliciesResponseBodyPolicies extends $tea.Model {
|
|
5667
|
+
createTime?: string;
|
|
5668
|
+
description?: string;
|
|
5669
|
+
limitDetail?: ListRegistrationPoliciesResponseBodyPoliciesLimitDetail[];
|
|
5670
|
+
matchMode?: string;
|
|
5671
|
+
name?: string;
|
|
5672
|
+
policyId?: string;
|
|
5673
|
+
priority?: number;
|
|
5674
|
+
status?: string;
|
|
5675
|
+
userGroupIds?: string[];
|
|
5676
|
+
whitelist?: string[];
|
|
5677
|
+
static names(): { [key: string]: string } {
|
|
5678
|
+
return {
|
|
5679
|
+
createTime: 'CreateTime',
|
|
5680
|
+
description: 'Description',
|
|
5681
|
+
limitDetail: 'LimitDetail',
|
|
5682
|
+
matchMode: 'MatchMode',
|
|
5683
|
+
name: 'Name',
|
|
5684
|
+
policyId: 'PolicyId',
|
|
5685
|
+
priority: 'Priority',
|
|
5686
|
+
status: 'Status',
|
|
5687
|
+
userGroupIds: 'UserGroupIds',
|
|
5688
|
+
whitelist: 'Whitelist',
|
|
5689
|
+
};
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
static types(): { [key: string]: any } {
|
|
5693
|
+
return {
|
|
5694
|
+
createTime: 'string',
|
|
5695
|
+
description: 'string',
|
|
5696
|
+
limitDetail: { 'type': 'array', 'itemType': ListRegistrationPoliciesResponseBodyPoliciesLimitDetail },
|
|
5697
|
+
matchMode: 'string',
|
|
5698
|
+
name: 'string',
|
|
5699
|
+
policyId: 'string',
|
|
5700
|
+
priority: 'number',
|
|
5701
|
+
status: 'string',
|
|
5702
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
5703
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
5704
|
+
};
|
|
5705
|
+
}
|
|
5706
|
+
|
|
5707
|
+
constructor(map?: { [key: string]: any }) {
|
|
5708
|
+
super(map);
|
|
5709
|
+
}
|
|
5710
|
+
}
|
|
5711
|
+
|
|
5712
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount extends $tea.Model {
|
|
5713
|
+
all?: string;
|
|
5714
|
+
mobile?: string;
|
|
5715
|
+
PC?: string;
|
|
5716
|
+
static names(): { [key: string]: string } {
|
|
5717
|
+
return {
|
|
5718
|
+
all: 'All',
|
|
5719
|
+
mobile: 'Mobile',
|
|
5720
|
+
PC: 'PC',
|
|
5721
|
+
};
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
static types(): { [key: string]: any } {
|
|
5725
|
+
return {
|
|
5726
|
+
all: 'string',
|
|
5727
|
+
mobile: 'string',
|
|
5728
|
+
PC: 'string',
|
|
5729
|
+
};
|
|
5730
|
+
}
|
|
5731
|
+
|
|
5732
|
+
constructor(map?: { [key: string]: any }) {
|
|
5733
|
+
super(map);
|
|
5734
|
+
}
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail extends $tea.Model {
|
|
5738
|
+
deviceBelong?: string;
|
|
5739
|
+
limitCount?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount;
|
|
5740
|
+
limitType?: string;
|
|
5741
|
+
static names(): { [key: string]: string } {
|
|
5742
|
+
return {
|
|
5743
|
+
deviceBelong: 'DeviceBelong',
|
|
5744
|
+
limitCount: 'LimitCount',
|
|
5745
|
+
limitType: 'LimitType',
|
|
5746
|
+
};
|
|
5747
|
+
}
|
|
5748
|
+
|
|
5749
|
+
static types(): { [key: string]: any } {
|
|
5750
|
+
return {
|
|
5751
|
+
deviceBelong: 'string',
|
|
5752
|
+
limitCount: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount,
|
|
5753
|
+
limitType: 'string',
|
|
5754
|
+
};
|
|
5755
|
+
}
|
|
5756
|
+
|
|
5757
|
+
constructor(map?: { [key: string]: any }) {
|
|
5758
|
+
super(map);
|
|
5759
|
+
}
|
|
5760
|
+
}
|
|
5761
|
+
|
|
5762
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies extends $tea.Model {
|
|
5763
|
+
createTime?: string;
|
|
5764
|
+
description?: string;
|
|
5765
|
+
limitDetail?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail[];
|
|
5766
|
+
matchMode?: string;
|
|
5767
|
+
name?: string;
|
|
5768
|
+
policyId?: string;
|
|
5769
|
+
priority?: number;
|
|
5770
|
+
status?: string;
|
|
5771
|
+
whitelist?: string[];
|
|
5772
|
+
static names(): { [key: string]: string } {
|
|
5773
|
+
return {
|
|
5774
|
+
createTime: 'CreateTime',
|
|
5775
|
+
description: 'Description',
|
|
5776
|
+
limitDetail: 'LimitDetail',
|
|
5777
|
+
matchMode: 'MatchMode',
|
|
5778
|
+
name: 'Name',
|
|
5779
|
+
policyId: 'PolicyId',
|
|
5780
|
+
priority: 'Priority',
|
|
5781
|
+
status: 'Status',
|
|
5782
|
+
whitelist: 'Whitelist',
|
|
5783
|
+
};
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5786
|
+
static types(): { [key: string]: any } {
|
|
5787
|
+
return {
|
|
5788
|
+
createTime: 'string',
|
|
5789
|
+
description: 'string',
|
|
5790
|
+
limitDetail: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail },
|
|
5791
|
+
matchMode: 'string',
|
|
5792
|
+
name: 'string',
|
|
5793
|
+
policyId: 'string',
|
|
5794
|
+
priority: 'number',
|
|
5795
|
+
status: 'string',
|
|
5796
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
5797
|
+
};
|
|
5798
|
+
}
|
|
5799
|
+
|
|
5800
|
+
constructor(map?: { [key: string]: any }) {
|
|
5801
|
+
super(map);
|
|
5802
|
+
}
|
|
5803
|
+
}
|
|
5804
|
+
|
|
5805
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroups extends $tea.Model {
|
|
5806
|
+
policies?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies[];
|
|
5807
|
+
userGroupId?: string;
|
|
5808
|
+
static names(): { [key: string]: string } {
|
|
5809
|
+
return {
|
|
5810
|
+
policies: 'Policies',
|
|
5811
|
+
userGroupId: 'UserGroupId',
|
|
5812
|
+
};
|
|
5813
|
+
}
|
|
5814
|
+
|
|
5815
|
+
static types(): { [key: string]: any } {
|
|
5816
|
+
return {
|
|
5817
|
+
policies: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies },
|
|
5818
|
+
userGroupId: 'string',
|
|
5819
|
+
};
|
|
5820
|
+
}
|
|
5821
|
+
|
|
5822
|
+
constructor(map?: { [key: string]: any }) {
|
|
5823
|
+
super(map);
|
|
5824
|
+
}
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5827
|
+
export class ListSoftwareForUserDeviceResponseBodySoftware extends $tea.Model {
|
|
5828
|
+
inc?: string;
|
|
5829
|
+
installTime?: string;
|
|
5830
|
+
name?: string;
|
|
5831
|
+
versions?: string[];
|
|
5832
|
+
static names(): { [key: string]: string } {
|
|
5833
|
+
return {
|
|
5834
|
+
inc: 'Inc',
|
|
5835
|
+
installTime: 'InstallTime',
|
|
5836
|
+
name: 'Name',
|
|
5837
|
+
versions: 'Versions',
|
|
5838
|
+
};
|
|
5839
|
+
}
|
|
5840
|
+
|
|
5841
|
+
static types(): { [key: string]: any } {
|
|
5842
|
+
return {
|
|
5843
|
+
inc: 'string',
|
|
5844
|
+
installTime: 'string',
|
|
5845
|
+
name: 'string',
|
|
5846
|
+
versions: { 'type': 'array', 'itemType': 'string' },
|
|
5847
|
+
};
|
|
5848
|
+
}
|
|
5849
|
+
|
|
5850
|
+
constructor(map?: { [key: string]: any }) {
|
|
5851
|
+
super(map);
|
|
5852
|
+
}
|
|
5853
|
+
}
|
|
5854
|
+
|
|
4014
5855
|
export class ListTagsForPrivateAccessApplicationResponseBodyApplicationsTags extends $tea.Model {
|
|
4015
5856
|
createTime?: string;
|
|
4016
5857
|
description?: string;
|
|
@@ -4117,6 +5958,97 @@ export class ListTagsForPrivateAccessPolicyResponseBodyPolices extends $tea.Mode
|
|
|
4117
5958
|
}
|
|
4118
5959
|
}
|
|
4119
5960
|
|
|
5961
|
+
export class ListUserDevicesResponseBodyDevices extends $tea.Model {
|
|
5962
|
+
appStatus?: string;
|
|
5963
|
+
appVersion?: string;
|
|
5964
|
+
CPU?: string;
|
|
5965
|
+
createTime?: string;
|
|
5966
|
+
department?: string;
|
|
5967
|
+
deviceBelong?: string;
|
|
5968
|
+
deviceModel?: string;
|
|
5969
|
+
deviceStatus?: string;
|
|
5970
|
+
deviceTag?: string;
|
|
5971
|
+
deviceType?: string;
|
|
5972
|
+
deviceVersion?: string;
|
|
5973
|
+
disk?: string;
|
|
5974
|
+
dlpStatus?: string;
|
|
5975
|
+
hostname?: string;
|
|
5976
|
+
iaStatus?: string;
|
|
5977
|
+
innerIP?: string;
|
|
5978
|
+
mac?: string;
|
|
5979
|
+
memory?: string;
|
|
5980
|
+
nacStatus?: string;
|
|
5981
|
+
paStatus?: string;
|
|
5982
|
+
saseUserId?: string;
|
|
5983
|
+
sharingStatus?: boolean;
|
|
5984
|
+
srcIP?: string;
|
|
5985
|
+
updateTime?: string;
|
|
5986
|
+
username?: string;
|
|
5987
|
+
static names(): { [key: string]: string } {
|
|
5988
|
+
return {
|
|
5989
|
+
appStatus: 'AppStatus',
|
|
5990
|
+
appVersion: 'AppVersion',
|
|
5991
|
+
CPU: 'CPU',
|
|
5992
|
+
createTime: 'CreateTime',
|
|
5993
|
+
department: 'Department',
|
|
5994
|
+
deviceBelong: 'DeviceBelong',
|
|
5995
|
+
deviceModel: 'DeviceModel',
|
|
5996
|
+
deviceStatus: 'DeviceStatus',
|
|
5997
|
+
deviceTag: 'DeviceTag',
|
|
5998
|
+
deviceType: 'DeviceType',
|
|
5999
|
+
deviceVersion: 'DeviceVersion',
|
|
6000
|
+
disk: 'Disk',
|
|
6001
|
+
dlpStatus: 'DlpStatus',
|
|
6002
|
+
hostname: 'Hostname',
|
|
6003
|
+
iaStatus: 'IaStatus',
|
|
6004
|
+
innerIP: 'InnerIP',
|
|
6005
|
+
mac: 'Mac',
|
|
6006
|
+
memory: 'Memory',
|
|
6007
|
+
nacStatus: 'NacStatus',
|
|
6008
|
+
paStatus: 'PaStatus',
|
|
6009
|
+
saseUserId: 'SaseUserId',
|
|
6010
|
+
sharingStatus: 'SharingStatus',
|
|
6011
|
+
srcIP: 'SrcIP',
|
|
6012
|
+
updateTime: 'UpdateTime',
|
|
6013
|
+
username: 'Username',
|
|
6014
|
+
};
|
|
6015
|
+
}
|
|
6016
|
+
|
|
6017
|
+
static types(): { [key: string]: any } {
|
|
6018
|
+
return {
|
|
6019
|
+
appStatus: 'string',
|
|
6020
|
+
appVersion: 'string',
|
|
6021
|
+
CPU: 'string',
|
|
6022
|
+
createTime: 'string',
|
|
6023
|
+
department: 'string',
|
|
6024
|
+
deviceBelong: 'string',
|
|
6025
|
+
deviceModel: 'string',
|
|
6026
|
+
deviceStatus: 'string',
|
|
6027
|
+
deviceTag: 'string',
|
|
6028
|
+
deviceType: 'string',
|
|
6029
|
+
deviceVersion: 'string',
|
|
6030
|
+
disk: 'string',
|
|
6031
|
+
dlpStatus: 'string',
|
|
6032
|
+
hostname: 'string',
|
|
6033
|
+
iaStatus: 'string',
|
|
6034
|
+
innerIP: 'string',
|
|
6035
|
+
mac: 'string',
|
|
6036
|
+
memory: 'string',
|
|
6037
|
+
nacStatus: 'string',
|
|
6038
|
+
paStatus: 'string',
|
|
6039
|
+
saseUserId: 'string',
|
|
6040
|
+
sharingStatus: 'boolean',
|
|
6041
|
+
srcIP: 'string',
|
|
6042
|
+
updateTime: 'string',
|
|
6043
|
+
username: 'string',
|
|
6044
|
+
};
|
|
6045
|
+
}
|
|
6046
|
+
|
|
6047
|
+
constructor(map?: { [key: string]: any }) {
|
|
6048
|
+
super(map);
|
|
6049
|
+
}
|
|
6050
|
+
}
|
|
6051
|
+
|
|
4120
6052
|
export class ListUserGroupsResponseBodyUserGroupsAttributes extends $tea.Model {
|
|
4121
6053
|
idpId?: number;
|
|
4122
6054
|
relation?: string;
|
|
@@ -4257,6 +6189,139 @@ export class ListUserGroupsForPrivateAccessPolicyResponseBodyPolices extends $te
|
|
|
4257
6189
|
}
|
|
4258
6190
|
}
|
|
4259
6191
|
|
|
6192
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes extends $tea.Model {
|
|
6193
|
+
idpId?: number;
|
|
6194
|
+
relation?: string;
|
|
6195
|
+
userGroupType?: string;
|
|
6196
|
+
value?: string;
|
|
6197
|
+
static names(): { [key: string]: string } {
|
|
6198
|
+
return {
|
|
6199
|
+
idpId: 'IdpId',
|
|
6200
|
+
relation: 'Relation',
|
|
6201
|
+
userGroupType: 'UserGroupType',
|
|
6202
|
+
value: 'Value',
|
|
6203
|
+
};
|
|
6204
|
+
}
|
|
6205
|
+
|
|
6206
|
+
static types(): { [key: string]: any } {
|
|
6207
|
+
return {
|
|
6208
|
+
idpId: 'number',
|
|
6209
|
+
relation: 'string',
|
|
6210
|
+
userGroupType: 'string',
|
|
6211
|
+
value: 'string',
|
|
6212
|
+
};
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
constructor(map?: { [key: string]: any }) {
|
|
6216
|
+
super(map);
|
|
6217
|
+
}
|
|
6218
|
+
}
|
|
6219
|
+
|
|
6220
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups extends $tea.Model {
|
|
6221
|
+
attributes?: ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes[];
|
|
6222
|
+
createTime?: string;
|
|
6223
|
+
description?: string;
|
|
6224
|
+
name?: string;
|
|
6225
|
+
userGroupId?: string;
|
|
6226
|
+
static names(): { [key: string]: string } {
|
|
6227
|
+
return {
|
|
6228
|
+
attributes: 'Attributes',
|
|
6229
|
+
createTime: 'CreateTime',
|
|
6230
|
+
description: 'Description',
|
|
6231
|
+
name: 'Name',
|
|
6232
|
+
userGroupId: 'UserGroupId',
|
|
6233
|
+
};
|
|
6234
|
+
}
|
|
6235
|
+
|
|
6236
|
+
static types(): { [key: string]: any } {
|
|
6237
|
+
return {
|
|
6238
|
+
attributes: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes },
|
|
6239
|
+
createTime: 'string',
|
|
6240
|
+
description: 'string',
|
|
6241
|
+
name: 'string',
|
|
6242
|
+
userGroupId: 'string',
|
|
6243
|
+
};
|
|
6244
|
+
}
|
|
6245
|
+
|
|
6246
|
+
constructor(map?: { [key: string]: any }) {
|
|
6247
|
+
super(map);
|
|
6248
|
+
}
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPolicies extends $tea.Model {
|
|
6252
|
+
policyId?: string;
|
|
6253
|
+
userGroups?: ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups[];
|
|
6254
|
+
static names(): { [key: string]: string } {
|
|
6255
|
+
return {
|
|
6256
|
+
policyId: 'PolicyId',
|
|
6257
|
+
userGroups: 'UserGroups',
|
|
6258
|
+
};
|
|
6259
|
+
}
|
|
6260
|
+
|
|
6261
|
+
static types(): { [key: string]: any } {
|
|
6262
|
+
return {
|
|
6263
|
+
policyId: 'string',
|
|
6264
|
+
userGroups: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups },
|
|
6265
|
+
};
|
|
6266
|
+
}
|
|
6267
|
+
|
|
6268
|
+
constructor(map?: { [key: string]: any }) {
|
|
6269
|
+
super(map);
|
|
6270
|
+
}
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6273
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications extends $tea.Model {
|
|
6274
|
+
applicationId?: string;
|
|
6275
|
+
createTime?: string;
|
|
6276
|
+
department?: string;
|
|
6277
|
+
description?: string;
|
|
6278
|
+
deviceTag?: string;
|
|
6279
|
+
deviceType?: string;
|
|
6280
|
+
hostname?: string;
|
|
6281
|
+
isUsed?: boolean;
|
|
6282
|
+
mac?: string;
|
|
6283
|
+
saseUserId?: string;
|
|
6284
|
+
status?: string;
|
|
6285
|
+
username?: string;
|
|
6286
|
+
static names(): { [key: string]: string } {
|
|
6287
|
+
return {
|
|
6288
|
+
applicationId: 'ApplicationId',
|
|
6289
|
+
createTime: 'CreateTime',
|
|
6290
|
+
department: 'Department',
|
|
6291
|
+
description: 'Description',
|
|
6292
|
+
deviceTag: 'DeviceTag',
|
|
6293
|
+
deviceType: 'DeviceType',
|
|
6294
|
+
hostname: 'Hostname',
|
|
6295
|
+
isUsed: 'IsUsed',
|
|
6296
|
+
mac: 'Mac',
|
|
6297
|
+
saseUserId: 'SaseUserId',
|
|
6298
|
+
status: 'Status',
|
|
6299
|
+
username: 'Username',
|
|
6300
|
+
};
|
|
6301
|
+
}
|
|
6302
|
+
|
|
6303
|
+
static types(): { [key: string]: any } {
|
|
6304
|
+
return {
|
|
6305
|
+
applicationId: 'string',
|
|
6306
|
+
createTime: 'string',
|
|
6307
|
+
department: 'string',
|
|
6308
|
+
description: 'string',
|
|
6309
|
+
deviceTag: 'string',
|
|
6310
|
+
deviceType: 'string',
|
|
6311
|
+
hostname: 'string',
|
|
6312
|
+
isUsed: 'boolean',
|
|
6313
|
+
mac: 'string',
|
|
6314
|
+
saseUserId: 'string',
|
|
6315
|
+
status: 'string',
|
|
6316
|
+
username: 'string',
|
|
6317
|
+
};
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6320
|
+
constructor(map?: { [key: string]: any }) {
|
|
6321
|
+
super(map);
|
|
6322
|
+
}
|
|
6323
|
+
}
|
|
6324
|
+
|
|
4260
6325
|
export class UpdatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
4261
6326
|
begin?: number;
|
|
4262
6327
|
end?: number;
|
|
@@ -4295,10 +6360,338 @@ export class UpdatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.M
|
|
|
4295
6360
|
|
|
4296
6361
|
static types(): { [key: string]: any } {
|
|
4297
6362
|
return {
|
|
4298
|
-
idpId: 'number',
|
|
4299
|
-
relation: 'string',
|
|
4300
|
-
userGroupType: 'string',
|
|
4301
|
-
value: 'string',
|
|
6363
|
+
idpId: 'number',
|
|
6364
|
+
relation: 'string',
|
|
6365
|
+
userGroupType: 'string',
|
|
6366
|
+
value: 'string',
|
|
6367
|
+
};
|
|
6368
|
+
}
|
|
6369
|
+
|
|
6370
|
+
constructor(map?: { [key: string]: any }) {
|
|
6371
|
+
super(map);
|
|
6372
|
+
}
|
|
6373
|
+
}
|
|
6374
|
+
|
|
6375
|
+
export class UpdateRegistrationPolicyRequestCompanyLimitCount extends $tea.Model {
|
|
6376
|
+
all?: number;
|
|
6377
|
+
mobile?: number;
|
|
6378
|
+
PC?: number;
|
|
6379
|
+
static names(): { [key: string]: string } {
|
|
6380
|
+
return {
|
|
6381
|
+
all: 'All',
|
|
6382
|
+
mobile: 'Mobile',
|
|
6383
|
+
PC: 'PC',
|
|
6384
|
+
};
|
|
6385
|
+
}
|
|
6386
|
+
|
|
6387
|
+
static types(): { [key: string]: any } {
|
|
6388
|
+
return {
|
|
6389
|
+
all: 'number',
|
|
6390
|
+
mobile: 'number',
|
|
6391
|
+
PC: 'number',
|
|
6392
|
+
};
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6395
|
+
constructor(map?: { [key: string]: any }) {
|
|
6396
|
+
super(map);
|
|
6397
|
+
}
|
|
6398
|
+
}
|
|
6399
|
+
|
|
6400
|
+
export class UpdateRegistrationPolicyRequestPersonalLimitCount extends $tea.Model {
|
|
6401
|
+
all?: number;
|
|
6402
|
+
mobile?: number;
|
|
6403
|
+
PC?: number;
|
|
6404
|
+
static names(): { [key: string]: string } {
|
|
6405
|
+
return {
|
|
6406
|
+
all: 'All',
|
|
6407
|
+
mobile: 'Mobile',
|
|
6408
|
+
PC: 'PC',
|
|
6409
|
+
};
|
|
6410
|
+
}
|
|
6411
|
+
|
|
6412
|
+
static types(): { [key: string]: any } {
|
|
6413
|
+
return {
|
|
6414
|
+
all: 'number',
|
|
6415
|
+
mobile: 'number',
|
|
6416
|
+
PC: 'number',
|
|
6417
|
+
};
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
constructor(map?: { [key: string]: any }) {
|
|
6421
|
+
super(map);
|
|
6422
|
+
}
|
|
6423
|
+
}
|
|
6424
|
+
|
|
6425
|
+
export class UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount extends $tea.Model {
|
|
6426
|
+
all?: number;
|
|
6427
|
+
mobile?: number;
|
|
6428
|
+
PC?: number;
|
|
6429
|
+
static names(): { [key: string]: string } {
|
|
6430
|
+
return {
|
|
6431
|
+
all: 'All',
|
|
6432
|
+
mobile: 'Mobile',
|
|
6433
|
+
PC: 'PC',
|
|
6434
|
+
};
|
|
6435
|
+
}
|
|
6436
|
+
|
|
6437
|
+
static types(): { [key: string]: any } {
|
|
6438
|
+
return {
|
|
6439
|
+
all: 'number',
|
|
6440
|
+
mobile: 'number',
|
|
6441
|
+
PC: 'number',
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
6444
|
+
|
|
6445
|
+
constructor(map?: { [key: string]: any }) {
|
|
6446
|
+
super(map);
|
|
6447
|
+
}
|
|
6448
|
+
}
|
|
6449
|
+
|
|
6450
|
+
export class UpdateRegistrationPolicyResponseBodyPolicyLimitDetail extends $tea.Model {
|
|
6451
|
+
deviceBelong?: string;
|
|
6452
|
+
limitCount?: UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount;
|
|
6453
|
+
limitType?: string;
|
|
6454
|
+
static names(): { [key: string]: string } {
|
|
6455
|
+
return {
|
|
6456
|
+
deviceBelong: 'DeviceBelong',
|
|
6457
|
+
limitCount: 'LimitCount',
|
|
6458
|
+
limitType: 'LimitType',
|
|
6459
|
+
};
|
|
6460
|
+
}
|
|
6461
|
+
|
|
6462
|
+
static types(): { [key: string]: any } {
|
|
6463
|
+
return {
|
|
6464
|
+
deviceBelong: 'string',
|
|
6465
|
+
limitCount: UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount,
|
|
6466
|
+
limitType: 'string',
|
|
6467
|
+
};
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
constructor(map?: { [key: string]: any }) {
|
|
6471
|
+
super(map);
|
|
6472
|
+
}
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6475
|
+
export class UpdateRegistrationPolicyResponseBodyPolicy extends $tea.Model {
|
|
6476
|
+
createTime?: string;
|
|
6477
|
+
description?: string;
|
|
6478
|
+
limitDetail?: UpdateRegistrationPolicyResponseBodyPolicyLimitDetail[];
|
|
6479
|
+
matchMode?: string;
|
|
6480
|
+
name?: string;
|
|
6481
|
+
policyId?: string;
|
|
6482
|
+
priority?: string;
|
|
6483
|
+
status?: string;
|
|
6484
|
+
userGroupIds?: string[];
|
|
6485
|
+
whitelist?: string[];
|
|
6486
|
+
static names(): { [key: string]: string } {
|
|
6487
|
+
return {
|
|
6488
|
+
createTime: 'CreateTime',
|
|
6489
|
+
description: 'Description',
|
|
6490
|
+
limitDetail: 'LimitDetail',
|
|
6491
|
+
matchMode: 'MatchMode',
|
|
6492
|
+
name: 'Name',
|
|
6493
|
+
policyId: 'PolicyId',
|
|
6494
|
+
priority: 'Priority',
|
|
6495
|
+
status: 'Status',
|
|
6496
|
+
userGroupIds: 'UserGroupIds',
|
|
6497
|
+
whitelist: 'Whitelist',
|
|
6498
|
+
};
|
|
6499
|
+
}
|
|
6500
|
+
|
|
6501
|
+
static types(): { [key: string]: any } {
|
|
6502
|
+
return {
|
|
6503
|
+
createTime: 'string',
|
|
6504
|
+
description: 'string',
|
|
6505
|
+
limitDetail: { 'type': 'array', 'itemType': UpdateRegistrationPolicyResponseBodyPolicyLimitDetail },
|
|
6506
|
+
matchMode: 'string',
|
|
6507
|
+
name: 'string',
|
|
6508
|
+
policyId: 'string',
|
|
6509
|
+
priority: 'string',
|
|
6510
|
+
status: 'string',
|
|
6511
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
6512
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
6513
|
+
};
|
|
6514
|
+
}
|
|
6515
|
+
|
|
6516
|
+
constructor(map?: { [key: string]: any }) {
|
|
6517
|
+
super(map);
|
|
6518
|
+
}
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
export class UpdateUserDevicesSharingStatusResponseBodyDevices extends $tea.Model {
|
|
6522
|
+
appStatus?: string;
|
|
6523
|
+
appVersion?: string;
|
|
6524
|
+
CPU?: string;
|
|
6525
|
+
createTime?: string;
|
|
6526
|
+
department?: string;
|
|
6527
|
+
deviceBelong?: string;
|
|
6528
|
+
deviceModel?: string;
|
|
6529
|
+
deviceStatus?: string;
|
|
6530
|
+
deviceTag?: string;
|
|
6531
|
+
deviceType?: string;
|
|
6532
|
+
deviceVersion?: string;
|
|
6533
|
+
disk?: string;
|
|
6534
|
+
dlpStatus?: string;
|
|
6535
|
+
hostname?: string;
|
|
6536
|
+
iaStatus?: string;
|
|
6537
|
+
innerIP?: string;
|
|
6538
|
+
mac?: string;
|
|
6539
|
+
memory?: string;
|
|
6540
|
+
nacStatus?: string;
|
|
6541
|
+
paStatus?: string;
|
|
6542
|
+
saseUserId?: string;
|
|
6543
|
+
sharingStatus?: boolean;
|
|
6544
|
+
srcIP?: string;
|
|
6545
|
+
updateTime?: string;
|
|
6546
|
+
username?: string;
|
|
6547
|
+
static names(): { [key: string]: string } {
|
|
6548
|
+
return {
|
|
6549
|
+
appStatus: 'AppStatus',
|
|
6550
|
+
appVersion: 'AppVersion',
|
|
6551
|
+
CPU: 'CPU',
|
|
6552
|
+
createTime: 'CreateTime',
|
|
6553
|
+
department: 'Department',
|
|
6554
|
+
deviceBelong: 'DeviceBelong',
|
|
6555
|
+
deviceModel: 'DeviceModel',
|
|
6556
|
+
deviceStatus: 'DeviceStatus',
|
|
6557
|
+
deviceTag: 'DeviceTag',
|
|
6558
|
+
deviceType: 'DeviceType',
|
|
6559
|
+
deviceVersion: 'DeviceVersion',
|
|
6560
|
+
disk: 'Disk',
|
|
6561
|
+
dlpStatus: 'DlpStatus',
|
|
6562
|
+
hostname: 'Hostname',
|
|
6563
|
+
iaStatus: 'IaStatus',
|
|
6564
|
+
innerIP: 'InnerIP',
|
|
6565
|
+
mac: 'Mac',
|
|
6566
|
+
memory: 'Memory',
|
|
6567
|
+
nacStatus: 'NacStatus',
|
|
6568
|
+
paStatus: 'PaStatus',
|
|
6569
|
+
saseUserId: 'SaseUserId',
|
|
6570
|
+
sharingStatus: 'SharingStatus',
|
|
6571
|
+
srcIP: 'SrcIP',
|
|
6572
|
+
updateTime: 'UpdateTime',
|
|
6573
|
+
username: 'Username',
|
|
6574
|
+
};
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6577
|
+
static types(): { [key: string]: any } {
|
|
6578
|
+
return {
|
|
6579
|
+
appStatus: 'string',
|
|
6580
|
+
appVersion: 'string',
|
|
6581
|
+
CPU: 'string',
|
|
6582
|
+
createTime: 'string',
|
|
6583
|
+
department: 'string',
|
|
6584
|
+
deviceBelong: 'string',
|
|
6585
|
+
deviceModel: 'string',
|
|
6586
|
+
deviceStatus: 'string',
|
|
6587
|
+
deviceTag: 'string',
|
|
6588
|
+
deviceType: 'string',
|
|
6589
|
+
deviceVersion: 'string',
|
|
6590
|
+
disk: 'string',
|
|
6591
|
+
dlpStatus: 'string',
|
|
6592
|
+
hostname: 'string',
|
|
6593
|
+
iaStatus: 'string',
|
|
6594
|
+
innerIP: 'string',
|
|
6595
|
+
mac: 'string',
|
|
6596
|
+
memory: 'string',
|
|
6597
|
+
nacStatus: 'string',
|
|
6598
|
+
paStatus: 'string',
|
|
6599
|
+
saseUserId: 'string',
|
|
6600
|
+
sharingStatus: 'boolean',
|
|
6601
|
+
srcIP: 'string',
|
|
6602
|
+
updateTime: 'string',
|
|
6603
|
+
username: 'string',
|
|
6604
|
+
};
|
|
6605
|
+
}
|
|
6606
|
+
|
|
6607
|
+
constructor(map?: { [key: string]: any }) {
|
|
6608
|
+
super(map);
|
|
6609
|
+
}
|
|
6610
|
+
}
|
|
6611
|
+
|
|
6612
|
+
export class UpdateUserDevicesStatusResponseBodyDevices extends $tea.Model {
|
|
6613
|
+
appStatus?: string;
|
|
6614
|
+
appVersion?: string;
|
|
6615
|
+
CPU?: string;
|
|
6616
|
+
createTime?: string;
|
|
6617
|
+
department?: string;
|
|
6618
|
+
deviceBelong?: string;
|
|
6619
|
+
deviceModel?: string;
|
|
6620
|
+
deviceStatus?: string;
|
|
6621
|
+
deviceTag?: string;
|
|
6622
|
+
deviceType?: string;
|
|
6623
|
+
deviceVersion?: string;
|
|
6624
|
+
disk?: string;
|
|
6625
|
+
dlpStatus?: string;
|
|
6626
|
+
hostname?: string;
|
|
6627
|
+
iaStatus?: string;
|
|
6628
|
+
innerIP?: string;
|
|
6629
|
+
mac?: string;
|
|
6630
|
+
memory?: string;
|
|
6631
|
+
nacStatus?: string;
|
|
6632
|
+
paStatus?: string;
|
|
6633
|
+
saseUserId?: string;
|
|
6634
|
+
sharingStatus?: boolean;
|
|
6635
|
+
srcIP?: string;
|
|
6636
|
+
updateTime?: string;
|
|
6637
|
+
username?: string;
|
|
6638
|
+
static names(): { [key: string]: string } {
|
|
6639
|
+
return {
|
|
6640
|
+
appStatus: 'AppStatus',
|
|
6641
|
+
appVersion: 'AppVersion',
|
|
6642
|
+
CPU: 'CPU',
|
|
6643
|
+
createTime: 'CreateTime',
|
|
6644
|
+
department: 'Department',
|
|
6645
|
+
deviceBelong: 'DeviceBelong',
|
|
6646
|
+
deviceModel: 'DeviceModel',
|
|
6647
|
+
deviceStatus: 'DeviceStatus',
|
|
6648
|
+
deviceTag: 'DeviceTag',
|
|
6649
|
+
deviceType: 'DeviceType',
|
|
6650
|
+
deviceVersion: 'DeviceVersion',
|
|
6651
|
+
disk: 'Disk',
|
|
6652
|
+
dlpStatus: 'DlpStatus',
|
|
6653
|
+
hostname: 'Hostname',
|
|
6654
|
+
iaStatus: 'IaStatus',
|
|
6655
|
+
innerIP: 'InnerIP',
|
|
6656
|
+
mac: 'Mac',
|
|
6657
|
+
memory: 'Memory',
|
|
6658
|
+
nacStatus: 'NacStatus',
|
|
6659
|
+
paStatus: 'PaStatus',
|
|
6660
|
+
saseUserId: 'SaseUserId',
|
|
6661
|
+
sharingStatus: 'SharingStatus',
|
|
6662
|
+
srcIP: 'SrcIP',
|
|
6663
|
+
updateTime: 'UpdateTime',
|
|
6664
|
+
username: 'Username',
|
|
6665
|
+
};
|
|
6666
|
+
}
|
|
6667
|
+
|
|
6668
|
+
static types(): { [key: string]: any } {
|
|
6669
|
+
return {
|
|
6670
|
+
appStatus: 'string',
|
|
6671
|
+
appVersion: 'string',
|
|
6672
|
+
CPU: 'string',
|
|
6673
|
+
createTime: 'string',
|
|
6674
|
+
department: 'string',
|
|
6675
|
+
deviceBelong: 'string',
|
|
6676
|
+
deviceModel: 'string',
|
|
6677
|
+
deviceStatus: 'string',
|
|
6678
|
+
deviceTag: 'string',
|
|
6679
|
+
deviceType: 'string',
|
|
6680
|
+
deviceVersion: 'string',
|
|
6681
|
+
disk: 'string',
|
|
6682
|
+
dlpStatus: 'string',
|
|
6683
|
+
hostname: 'string',
|
|
6684
|
+
iaStatus: 'string',
|
|
6685
|
+
innerIP: 'string',
|
|
6686
|
+
mac: 'string',
|
|
6687
|
+
memory: 'string',
|
|
6688
|
+
nacStatus: 'string',
|
|
6689
|
+
paStatus: 'string',
|
|
6690
|
+
saseUserId: 'string',
|
|
6691
|
+
sharingStatus: 'boolean',
|
|
6692
|
+
srcIP: 'string',
|
|
6693
|
+
updateTime: 'string',
|
|
6694
|
+
username: 'string',
|
|
4302
6695
|
};
|
|
4303
6696
|
}
|
|
4304
6697
|
|
|
@@ -4632,6 +7025,90 @@ export default class Client extends OpenApi {
|
|
|
4632
7025
|
return await this.createPrivateAccessTagWithOptions(request, runtime);
|
|
4633
7026
|
}
|
|
4634
7027
|
|
|
7028
|
+
async createRegistrationPolicyWithOptions(tmpReq: CreateRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateRegistrationPolicyResponse> {
|
|
7029
|
+
Util.validateModel(tmpReq);
|
|
7030
|
+
let request = new CreateRegistrationPolicyShrinkRequest({ });
|
|
7031
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7032
|
+
if (!Util.isUnset(tmpReq.companyLimitCount)) {
|
|
7033
|
+
request.companyLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.companyLimitCount, "CompanyLimitCount", "json");
|
|
7034
|
+
}
|
|
7035
|
+
|
|
7036
|
+
if (!Util.isUnset(tmpReq.personalLimitCount)) {
|
|
7037
|
+
request.personalLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.personalLimitCount, "PersonalLimitCount", "json");
|
|
7038
|
+
}
|
|
7039
|
+
|
|
7040
|
+
let body : {[key: string ]: any} = { };
|
|
7041
|
+
if (!Util.isUnset(request.companyLimitCountShrink)) {
|
|
7042
|
+
body["CompanyLimitCount"] = request.companyLimitCountShrink;
|
|
7043
|
+
}
|
|
7044
|
+
|
|
7045
|
+
if (!Util.isUnset(request.companyLimitType)) {
|
|
7046
|
+
body["CompanyLimitType"] = request.companyLimitType;
|
|
7047
|
+
}
|
|
7048
|
+
|
|
7049
|
+
if (!Util.isUnset(request.description)) {
|
|
7050
|
+
body["Description"] = request.description;
|
|
7051
|
+
}
|
|
7052
|
+
|
|
7053
|
+
if (!Util.isUnset(request.matchMode)) {
|
|
7054
|
+
body["MatchMode"] = request.matchMode;
|
|
7055
|
+
}
|
|
7056
|
+
|
|
7057
|
+
if (!Util.isUnset(request.name)) {
|
|
7058
|
+
body["Name"] = request.name;
|
|
7059
|
+
}
|
|
7060
|
+
|
|
7061
|
+
if (!Util.isUnset(request.personalLimitCountShrink)) {
|
|
7062
|
+
body["PersonalLimitCount"] = request.personalLimitCountShrink;
|
|
7063
|
+
}
|
|
7064
|
+
|
|
7065
|
+
if (!Util.isUnset(request.personalLimitType)) {
|
|
7066
|
+
body["PersonalLimitType"] = request.personalLimitType;
|
|
7067
|
+
}
|
|
7068
|
+
|
|
7069
|
+
if (!Util.isUnset(request.priority)) {
|
|
7070
|
+
body["Priority"] = request.priority;
|
|
7071
|
+
}
|
|
7072
|
+
|
|
7073
|
+
if (!Util.isUnset(request.status)) {
|
|
7074
|
+
body["Status"] = request.status;
|
|
7075
|
+
}
|
|
7076
|
+
|
|
7077
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
7078
|
+
if (!Util.isUnset(request.userGroupIds)) {
|
|
7079
|
+
bodyFlat["UserGroupIds"] = request.userGroupIds;
|
|
7080
|
+
}
|
|
7081
|
+
|
|
7082
|
+
if (!Util.isUnset(request.whitelist)) {
|
|
7083
|
+
bodyFlat["Whitelist"] = request.whitelist;
|
|
7084
|
+
}
|
|
7085
|
+
|
|
7086
|
+
body = {
|
|
7087
|
+
...body,
|
|
7088
|
+
...OpenApiUtil.query(bodyFlat),
|
|
7089
|
+
};
|
|
7090
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7091
|
+
body: OpenApiUtil.parseToMap(body),
|
|
7092
|
+
});
|
|
7093
|
+
let params = new $OpenApi.Params({
|
|
7094
|
+
action: "CreateRegistrationPolicy",
|
|
7095
|
+
version: "2023-01-20",
|
|
7096
|
+
protocol: "HTTPS",
|
|
7097
|
+
pathname: "/",
|
|
7098
|
+
method: "POST",
|
|
7099
|
+
authType: "AK",
|
|
7100
|
+
style: "RPC",
|
|
7101
|
+
reqBodyType: "formData",
|
|
7102
|
+
bodyType: "json",
|
|
7103
|
+
});
|
|
7104
|
+
return $tea.cast<CreateRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new CreateRegistrationPolicyResponse({}));
|
|
7105
|
+
}
|
|
7106
|
+
|
|
7107
|
+
async createRegistrationPolicy(request: CreateRegistrationPolicyRequest): Promise<CreateRegistrationPolicyResponse> {
|
|
7108
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7109
|
+
return await this.createRegistrationPolicyWithOptions(request, runtime);
|
|
7110
|
+
}
|
|
7111
|
+
|
|
4635
7112
|
async createUserGroupWithOptions(request: CreateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateUserGroupResponse> {
|
|
4636
7113
|
Util.validateModel(request);
|
|
4637
7114
|
let body : {[key: string ]: any} = { };
|
|
@@ -4790,6 +7267,40 @@ export default class Client extends OpenApi {
|
|
|
4790
7267
|
return await this.deletePrivateAccessTagWithOptions(request, runtime);
|
|
4791
7268
|
}
|
|
4792
7269
|
|
|
7270
|
+
async deleteRegistrationPoliciesWithOptions(request: DeleteRegistrationPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRegistrationPoliciesResponse> {
|
|
7271
|
+
Util.validateModel(request);
|
|
7272
|
+
let body : {[key: string ]: any} = { };
|
|
7273
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
7274
|
+
if (!Util.isUnset(request.policyIds)) {
|
|
7275
|
+
bodyFlat["PolicyIds"] = request.policyIds;
|
|
7276
|
+
}
|
|
7277
|
+
|
|
7278
|
+
body = {
|
|
7279
|
+
...body,
|
|
7280
|
+
...OpenApiUtil.query(bodyFlat),
|
|
7281
|
+
};
|
|
7282
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7283
|
+
body: OpenApiUtil.parseToMap(body),
|
|
7284
|
+
});
|
|
7285
|
+
let params = new $OpenApi.Params({
|
|
7286
|
+
action: "DeleteRegistrationPolicies",
|
|
7287
|
+
version: "2023-01-20",
|
|
7288
|
+
protocol: "HTTPS",
|
|
7289
|
+
pathname: "/",
|
|
7290
|
+
method: "POST",
|
|
7291
|
+
authType: "AK",
|
|
7292
|
+
style: "RPC",
|
|
7293
|
+
reqBodyType: "formData",
|
|
7294
|
+
bodyType: "json",
|
|
7295
|
+
});
|
|
7296
|
+
return $tea.cast<DeleteRegistrationPoliciesResponse>(await this.callApi(params, req, runtime), new DeleteRegistrationPoliciesResponse({}));
|
|
7297
|
+
}
|
|
7298
|
+
|
|
7299
|
+
async deleteRegistrationPolicies(request: DeleteRegistrationPoliciesRequest): Promise<DeleteRegistrationPoliciesResponse> {
|
|
7300
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7301
|
+
return await this.deleteRegistrationPoliciesWithOptions(request, runtime);
|
|
7302
|
+
}
|
|
7303
|
+
|
|
4793
7304
|
async deleteUserGroupWithOptions(request: DeleteUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteUserGroupResponse> {
|
|
4794
7305
|
Util.validateModel(request);
|
|
4795
7306
|
let body : {[key: string ]: any} = { };
|
|
@@ -4933,6 +7444,56 @@ export default class Client extends OpenApi {
|
|
|
4933
7444
|
return await this.getPrivateAccessPolicyWithOptions(request, runtime);
|
|
4934
7445
|
}
|
|
4935
7446
|
|
|
7447
|
+
async getRegistrationPolicyWithOptions(request: GetRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetRegistrationPolicyResponse> {
|
|
7448
|
+
Util.validateModel(request);
|
|
7449
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7450
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7451
|
+
query: OpenApiUtil.query(query),
|
|
7452
|
+
});
|
|
7453
|
+
let params = new $OpenApi.Params({
|
|
7454
|
+
action: "GetRegistrationPolicy",
|
|
7455
|
+
version: "2023-01-20",
|
|
7456
|
+
protocol: "HTTPS",
|
|
7457
|
+
pathname: "/",
|
|
7458
|
+
method: "GET",
|
|
7459
|
+
authType: "AK",
|
|
7460
|
+
style: "RPC",
|
|
7461
|
+
reqBodyType: "formData",
|
|
7462
|
+
bodyType: "json",
|
|
7463
|
+
});
|
|
7464
|
+
return $tea.cast<GetRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new GetRegistrationPolicyResponse({}));
|
|
7465
|
+
}
|
|
7466
|
+
|
|
7467
|
+
async getRegistrationPolicy(request: GetRegistrationPolicyRequest): Promise<GetRegistrationPolicyResponse> {
|
|
7468
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7469
|
+
return await this.getRegistrationPolicyWithOptions(request, runtime);
|
|
7470
|
+
}
|
|
7471
|
+
|
|
7472
|
+
async getUserDeviceWithOptions(request: GetUserDeviceRequest, runtime: $Util.RuntimeOptions): Promise<GetUserDeviceResponse> {
|
|
7473
|
+
Util.validateModel(request);
|
|
7474
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7475
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7476
|
+
query: OpenApiUtil.query(query),
|
|
7477
|
+
});
|
|
7478
|
+
let params = new $OpenApi.Params({
|
|
7479
|
+
action: "GetUserDevice",
|
|
7480
|
+
version: "2023-01-20",
|
|
7481
|
+
protocol: "HTTPS",
|
|
7482
|
+
pathname: "/",
|
|
7483
|
+
method: "GET",
|
|
7484
|
+
authType: "AK",
|
|
7485
|
+
style: "RPC",
|
|
7486
|
+
reqBodyType: "formData",
|
|
7487
|
+
bodyType: "json",
|
|
7488
|
+
});
|
|
7489
|
+
return $tea.cast<GetUserDeviceResponse>(await this.callApi(params, req, runtime), new GetUserDeviceResponse({}));
|
|
7490
|
+
}
|
|
7491
|
+
|
|
7492
|
+
async getUserDevice(request: GetUserDeviceRequest): Promise<GetUserDeviceResponse> {
|
|
7493
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7494
|
+
return await this.getUserDeviceWithOptions(request, runtime);
|
|
7495
|
+
}
|
|
7496
|
+
|
|
4936
7497
|
async getUserGroupWithOptions(request: GetUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetUserGroupResponse> {
|
|
4937
7498
|
Util.validateModel(request);
|
|
4938
7499
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
@@ -5079,6 +7640,31 @@ export default class Client extends OpenApi {
|
|
|
5079
7640
|
return await this.listDynamicRoutesWithOptions(request, runtime);
|
|
5080
7641
|
}
|
|
5081
7642
|
|
|
7643
|
+
async listExcessiveDeviceRegistrationApplicationsWithOptions(request: ListExcessiveDeviceRegistrationApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListExcessiveDeviceRegistrationApplicationsResponse> {
|
|
7644
|
+
Util.validateModel(request);
|
|
7645
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7646
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7647
|
+
query: OpenApiUtil.query(query),
|
|
7648
|
+
});
|
|
7649
|
+
let params = new $OpenApi.Params({
|
|
7650
|
+
action: "ListExcessiveDeviceRegistrationApplications",
|
|
7651
|
+
version: "2023-01-20",
|
|
7652
|
+
protocol: "HTTPS",
|
|
7653
|
+
pathname: "/",
|
|
7654
|
+
method: "GET",
|
|
7655
|
+
authType: "AK",
|
|
7656
|
+
style: "RPC",
|
|
7657
|
+
reqBodyType: "formData",
|
|
7658
|
+
bodyType: "json",
|
|
7659
|
+
});
|
|
7660
|
+
return $tea.cast<ListExcessiveDeviceRegistrationApplicationsResponse>(await this.callApi(params, req, runtime), new ListExcessiveDeviceRegistrationApplicationsResponse({}));
|
|
7661
|
+
}
|
|
7662
|
+
|
|
7663
|
+
async listExcessiveDeviceRegistrationApplications(request: ListExcessiveDeviceRegistrationApplicationsRequest): Promise<ListExcessiveDeviceRegistrationApplicationsResponse> {
|
|
7664
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7665
|
+
return await this.listExcessiveDeviceRegistrationApplicationsWithOptions(request, runtime);
|
|
7666
|
+
}
|
|
7667
|
+
|
|
5082
7668
|
async listPolicesForPrivateAccessApplicationWithOptions(request: ListPolicesForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessApplicationResponse> {
|
|
5083
7669
|
Util.validateModel(request);
|
|
5084
7670
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
@@ -5086,7 +7672,107 @@ export default class Client extends OpenApi {
|
|
|
5086
7672
|
query: OpenApiUtil.query(query),
|
|
5087
7673
|
});
|
|
5088
7674
|
let params = new $OpenApi.Params({
|
|
5089
|
-
action: "ListPolicesForPrivateAccessApplication",
|
|
7675
|
+
action: "ListPolicesForPrivateAccessApplication",
|
|
7676
|
+
version: "2023-01-20",
|
|
7677
|
+
protocol: "HTTPS",
|
|
7678
|
+
pathname: "/",
|
|
7679
|
+
method: "GET",
|
|
7680
|
+
authType: "AK",
|
|
7681
|
+
style: "RPC",
|
|
7682
|
+
reqBodyType: "formData",
|
|
7683
|
+
bodyType: "json",
|
|
7684
|
+
});
|
|
7685
|
+
return $tea.cast<ListPolicesForPrivateAccessApplicationResponse>(await this.callApi(params, req, runtime), new ListPolicesForPrivateAccessApplicationResponse({}));
|
|
7686
|
+
}
|
|
7687
|
+
|
|
7688
|
+
async listPolicesForPrivateAccessApplication(request: ListPolicesForPrivateAccessApplicationRequest): Promise<ListPolicesForPrivateAccessApplicationResponse> {
|
|
7689
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7690
|
+
return await this.listPolicesForPrivateAccessApplicationWithOptions(request, runtime);
|
|
7691
|
+
}
|
|
7692
|
+
|
|
7693
|
+
async listPolicesForPrivateAccessTagWithOptions(request: ListPolicesForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessTagResponse> {
|
|
7694
|
+
Util.validateModel(request);
|
|
7695
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7696
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7697
|
+
query: OpenApiUtil.query(query),
|
|
7698
|
+
});
|
|
7699
|
+
let params = new $OpenApi.Params({
|
|
7700
|
+
action: "ListPolicesForPrivateAccessTag",
|
|
7701
|
+
version: "2023-01-20",
|
|
7702
|
+
protocol: "HTTPS",
|
|
7703
|
+
pathname: "/",
|
|
7704
|
+
method: "GET",
|
|
7705
|
+
authType: "AK",
|
|
7706
|
+
style: "RPC",
|
|
7707
|
+
reqBodyType: "formData",
|
|
7708
|
+
bodyType: "json",
|
|
7709
|
+
});
|
|
7710
|
+
return $tea.cast<ListPolicesForPrivateAccessTagResponse>(await this.callApi(params, req, runtime), new ListPolicesForPrivateAccessTagResponse({}));
|
|
7711
|
+
}
|
|
7712
|
+
|
|
7713
|
+
async listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse> {
|
|
7714
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7715
|
+
return await this.listPolicesForPrivateAccessTagWithOptions(request, runtime);
|
|
7716
|
+
}
|
|
7717
|
+
|
|
7718
|
+
async listPolicesForUserGroupWithOptions(request: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse> {
|
|
7719
|
+
Util.validateModel(request);
|
|
7720
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7721
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7722
|
+
query: OpenApiUtil.query(query),
|
|
7723
|
+
});
|
|
7724
|
+
let params = new $OpenApi.Params({
|
|
7725
|
+
action: "ListPolicesForUserGroup",
|
|
7726
|
+
version: "2023-01-20",
|
|
7727
|
+
protocol: "HTTPS",
|
|
7728
|
+
pathname: "/",
|
|
7729
|
+
method: "GET",
|
|
7730
|
+
authType: "AK",
|
|
7731
|
+
style: "RPC",
|
|
7732
|
+
reqBodyType: "formData",
|
|
7733
|
+
bodyType: "json",
|
|
7734
|
+
});
|
|
7735
|
+
return $tea.cast<ListPolicesForUserGroupResponse>(await this.callApi(params, req, runtime), new ListPolicesForUserGroupResponse({}));
|
|
7736
|
+
}
|
|
7737
|
+
|
|
7738
|
+
async listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse> {
|
|
7739
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7740
|
+
return await this.listPolicesForUserGroupWithOptions(request, runtime);
|
|
7741
|
+
}
|
|
7742
|
+
|
|
7743
|
+
async listPrivateAccessApplicationsWithOptions(request: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse> {
|
|
7744
|
+
Util.validateModel(request);
|
|
7745
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7746
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7747
|
+
query: OpenApiUtil.query(query),
|
|
7748
|
+
});
|
|
7749
|
+
let params = new $OpenApi.Params({
|
|
7750
|
+
action: "ListPrivateAccessApplications",
|
|
7751
|
+
version: "2023-01-20",
|
|
7752
|
+
protocol: "HTTPS",
|
|
7753
|
+
pathname: "/",
|
|
7754
|
+
method: "GET",
|
|
7755
|
+
authType: "AK",
|
|
7756
|
+
style: "RPC",
|
|
7757
|
+
reqBodyType: "formData",
|
|
7758
|
+
bodyType: "json",
|
|
7759
|
+
});
|
|
7760
|
+
return $tea.cast<ListPrivateAccessApplicationsResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessApplicationsResponse({}));
|
|
7761
|
+
}
|
|
7762
|
+
|
|
7763
|
+
async listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse> {
|
|
7764
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7765
|
+
return await this.listPrivateAccessApplicationsWithOptions(request, runtime);
|
|
7766
|
+
}
|
|
7767
|
+
|
|
7768
|
+
async listPrivateAccessApplicationsForDynamicRouteWithOptions(request: ListPrivateAccessApplicationsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse> {
|
|
7769
|
+
Util.validateModel(request);
|
|
7770
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7771
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7772
|
+
query: OpenApiUtil.query(query),
|
|
7773
|
+
});
|
|
7774
|
+
let params = new $OpenApi.Params({
|
|
7775
|
+
action: "ListPrivateAccessApplicationsForDynamicRoute",
|
|
5090
7776
|
version: "2023-01-20",
|
|
5091
7777
|
protocol: "HTTPS",
|
|
5092
7778
|
pathname: "/",
|
|
@@ -5096,22 +7782,22 @@ export default class Client extends OpenApi {
|
|
|
5096
7782
|
reqBodyType: "formData",
|
|
5097
7783
|
bodyType: "json",
|
|
5098
7784
|
});
|
|
5099
|
-
return $tea.cast<
|
|
7785
|
+
return $tea.cast<ListPrivateAccessApplicationsForDynamicRouteResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessApplicationsForDynamicRouteResponse({}));
|
|
5100
7786
|
}
|
|
5101
7787
|
|
|
5102
|
-
async
|
|
7788
|
+
async listPrivateAccessApplicationsForDynamicRoute(request: ListPrivateAccessApplicationsForDynamicRouteRequest): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse> {
|
|
5103
7789
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5104
|
-
return await this.
|
|
7790
|
+
return await this.listPrivateAccessApplicationsForDynamicRouteWithOptions(request, runtime);
|
|
5105
7791
|
}
|
|
5106
7792
|
|
|
5107
|
-
async
|
|
7793
|
+
async listPrivateAccessPolicesWithOptions(request: ListPrivateAccessPolicesRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessPolicesResponse> {
|
|
5108
7794
|
Util.validateModel(request);
|
|
5109
7795
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5110
7796
|
let req = new $OpenApi.OpenApiRequest({
|
|
5111
7797
|
query: OpenApiUtil.query(query),
|
|
5112
7798
|
});
|
|
5113
7799
|
let params = new $OpenApi.Params({
|
|
5114
|
-
action: "
|
|
7800
|
+
action: "ListPrivateAccessPolices",
|
|
5115
7801
|
version: "2023-01-20",
|
|
5116
7802
|
protocol: "HTTPS",
|
|
5117
7803
|
pathname: "/",
|
|
@@ -5121,22 +7807,22 @@ export default class Client extends OpenApi {
|
|
|
5121
7807
|
reqBodyType: "formData",
|
|
5122
7808
|
bodyType: "json",
|
|
5123
7809
|
});
|
|
5124
|
-
return $tea.cast<
|
|
7810
|
+
return $tea.cast<ListPrivateAccessPolicesResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessPolicesResponse({}));
|
|
5125
7811
|
}
|
|
5126
7812
|
|
|
5127
|
-
async
|
|
7813
|
+
async listPrivateAccessPolices(request: ListPrivateAccessPolicesRequest): Promise<ListPrivateAccessPolicesResponse> {
|
|
5128
7814
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5129
|
-
return await this.
|
|
7815
|
+
return await this.listPrivateAccessPolicesWithOptions(request, runtime);
|
|
5130
7816
|
}
|
|
5131
7817
|
|
|
5132
|
-
async
|
|
7818
|
+
async listPrivateAccessTagsWithOptions(request: ListPrivateAccessTagsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsResponse> {
|
|
5133
7819
|
Util.validateModel(request);
|
|
5134
7820
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5135
7821
|
let req = new $OpenApi.OpenApiRequest({
|
|
5136
7822
|
query: OpenApiUtil.query(query),
|
|
5137
7823
|
});
|
|
5138
7824
|
let params = new $OpenApi.Params({
|
|
5139
|
-
action: "
|
|
7825
|
+
action: "ListPrivateAccessTags",
|
|
5140
7826
|
version: "2023-01-20",
|
|
5141
7827
|
protocol: "HTTPS",
|
|
5142
7828
|
pathname: "/",
|
|
@@ -5146,22 +7832,22 @@ export default class Client extends OpenApi {
|
|
|
5146
7832
|
reqBodyType: "formData",
|
|
5147
7833
|
bodyType: "json",
|
|
5148
7834
|
});
|
|
5149
|
-
return $tea.cast<
|
|
7835
|
+
return $tea.cast<ListPrivateAccessTagsResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessTagsResponse({}));
|
|
5150
7836
|
}
|
|
5151
7837
|
|
|
5152
|
-
async
|
|
7838
|
+
async listPrivateAccessTags(request: ListPrivateAccessTagsRequest): Promise<ListPrivateAccessTagsResponse> {
|
|
5153
7839
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5154
|
-
return await this.
|
|
7840
|
+
return await this.listPrivateAccessTagsWithOptions(request, runtime);
|
|
5155
7841
|
}
|
|
5156
7842
|
|
|
5157
|
-
async
|
|
7843
|
+
async listPrivateAccessTagsForDynamicRouteWithOptions(request: ListPrivateAccessTagsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsForDynamicRouteResponse> {
|
|
5158
7844
|
Util.validateModel(request);
|
|
5159
7845
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5160
7846
|
let req = new $OpenApi.OpenApiRequest({
|
|
5161
7847
|
query: OpenApiUtil.query(query),
|
|
5162
7848
|
});
|
|
5163
7849
|
let params = new $OpenApi.Params({
|
|
5164
|
-
action: "
|
|
7850
|
+
action: "ListPrivateAccessTagsForDynamicRoute",
|
|
5165
7851
|
version: "2023-01-20",
|
|
5166
7852
|
protocol: "HTTPS",
|
|
5167
7853
|
pathname: "/",
|
|
@@ -5171,22 +7857,22 @@ export default class Client extends OpenApi {
|
|
|
5171
7857
|
reqBodyType: "formData",
|
|
5172
7858
|
bodyType: "json",
|
|
5173
7859
|
});
|
|
5174
|
-
return $tea.cast<
|
|
7860
|
+
return $tea.cast<ListPrivateAccessTagsForDynamicRouteResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessTagsForDynamicRouteResponse({}));
|
|
5175
7861
|
}
|
|
5176
7862
|
|
|
5177
|
-
async
|
|
7863
|
+
async listPrivateAccessTagsForDynamicRoute(request: ListPrivateAccessTagsForDynamicRouteRequest): Promise<ListPrivateAccessTagsForDynamicRouteResponse> {
|
|
5178
7864
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5179
|
-
return await this.
|
|
7865
|
+
return await this.listPrivateAccessTagsForDynamicRouteWithOptions(request, runtime);
|
|
5180
7866
|
}
|
|
5181
7867
|
|
|
5182
|
-
async
|
|
7868
|
+
async listRegistrationPoliciesWithOptions(request: ListRegistrationPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListRegistrationPoliciesResponse> {
|
|
5183
7869
|
Util.validateModel(request);
|
|
5184
7870
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5185
7871
|
let req = new $OpenApi.OpenApiRequest({
|
|
5186
7872
|
query: OpenApiUtil.query(query),
|
|
5187
7873
|
});
|
|
5188
7874
|
let params = new $OpenApi.Params({
|
|
5189
|
-
action: "
|
|
7875
|
+
action: "ListRegistrationPolicies",
|
|
5190
7876
|
version: "2023-01-20",
|
|
5191
7877
|
protocol: "HTTPS",
|
|
5192
7878
|
pathname: "/",
|
|
@@ -5196,22 +7882,22 @@ export default class Client extends OpenApi {
|
|
|
5196
7882
|
reqBodyType: "formData",
|
|
5197
7883
|
bodyType: "json",
|
|
5198
7884
|
});
|
|
5199
|
-
return $tea.cast<
|
|
7885
|
+
return $tea.cast<ListRegistrationPoliciesResponse>(await this.callApi(params, req, runtime), new ListRegistrationPoliciesResponse({}));
|
|
5200
7886
|
}
|
|
5201
7887
|
|
|
5202
|
-
async
|
|
7888
|
+
async listRegistrationPolicies(request: ListRegistrationPoliciesRequest): Promise<ListRegistrationPoliciesResponse> {
|
|
5203
7889
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5204
|
-
return await this.
|
|
7890
|
+
return await this.listRegistrationPoliciesWithOptions(request, runtime);
|
|
5205
7891
|
}
|
|
5206
7892
|
|
|
5207
|
-
async
|
|
7893
|
+
async listRegistrationPoliciesForUserGroupWithOptions(request: ListRegistrationPoliciesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListRegistrationPoliciesForUserGroupResponse> {
|
|
5208
7894
|
Util.validateModel(request);
|
|
5209
7895
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5210
7896
|
let req = new $OpenApi.OpenApiRequest({
|
|
5211
7897
|
query: OpenApiUtil.query(query),
|
|
5212
7898
|
});
|
|
5213
7899
|
let params = new $OpenApi.Params({
|
|
5214
|
-
action: "
|
|
7900
|
+
action: "ListRegistrationPoliciesForUserGroup",
|
|
5215
7901
|
version: "2023-01-20",
|
|
5216
7902
|
protocol: "HTTPS",
|
|
5217
7903
|
pathname: "/",
|
|
@@ -5221,22 +7907,22 @@ export default class Client extends OpenApi {
|
|
|
5221
7907
|
reqBodyType: "formData",
|
|
5222
7908
|
bodyType: "json",
|
|
5223
7909
|
});
|
|
5224
|
-
return $tea.cast<
|
|
7910
|
+
return $tea.cast<ListRegistrationPoliciesForUserGroupResponse>(await this.callApi(params, req, runtime), new ListRegistrationPoliciesForUserGroupResponse({}));
|
|
5225
7911
|
}
|
|
5226
7912
|
|
|
5227
|
-
async
|
|
7913
|
+
async listRegistrationPoliciesForUserGroup(request: ListRegistrationPoliciesForUserGroupRequest): Promise<ListRegistrationPoliciesForUserGroupResponse> {
|
|
5228
7914
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5229
|
-
return await this.
|
|
7915
|
+
return await this.listRegistrationPoliciesForUserGroupWithOptions(request, runtime);
|
|
5230
7916
|
}
|
|
5231
7917
|
|
|
5232
|
-
async
|
|
7918
|
+
async listSoftwareForUserDeviceWithOptions(request: ListSoftwareForUserDeviceRequest, runtime: $Util.RuntimeOptions): Promise<ListSoftwareForUserDeviceResponse> {
|
|
5233
7919
|
Util.validateModel(request);
|
|
5234
7920
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5235
7921
|
let req = new $OpenApi.OpenApiRequest({
|
|
5236
7922
|
query: OpenApiUtil.query(query),
|
|
5237
7923
|
});
|
|
5238
7924
|
let params = new $OpenApi.Params({
|
|
5239
|
-
action: "
|
|
7925
|
+
action: "ListSoftwareForUserDevice",
|
|
5240
7926
|
version: "2023-01-20",
|
|
5241
7927
|
protocol: "HTTPS",
|
|
5242
7928
|
pathname: "/",
|
|
@@ -5246,22 +7932,22 @@ export default class Client extends OpenApi {
|
|
|
5246
7932
|
reqBodyType: "formData",
|
|
5247
7933
|
bodyType: "json",
|
|
5248
7934
|
});
|
|
5249
|
-
return $tea.cast<
|
|
7935
|
+
return $tea.cast<ListSoftwareForUserDeviceResponse>(await this.callApi(params, req, runtime), new ListSoftwareForUserDeviceResponse({}));
|
|
5250
7936
|
}
|
|
5251
7937
|
|
|
5252
|
-
async
|
|
7938
|
+
async listSoftwareForUserDevice(request: ListSoftwareForUserDeviceRequest): Promise<ListSoftwareForUserDeviceResponse> {
|
|
5253
7939
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5254
|
-
return await this.
|
|
7940
|
+
return await this.listSoftwareForUserDeviceWithOptions(request, runtime);
|
|
5255
7941
|
}
|
|
5256
7942
|
|
|
5257
|
-
async
|
|
7943
|
+
async listTagsForPrivateAccessApplicationWithOptions(request: ListTagsForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessApplicationResponse> {
|
|
5258
7944
|
Util.validateModel(request);
|
|
5259
7945
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5260
7946
|
let req = new $OpenApi.OpenApiRequest({
|
|
5261
7947
|
query: OpenApiUtil.query(query),
|
|
5262
7948
|
});
|
|
5263
7949
|
let params = new $OpenApi.Params({
|
|
5264
|
-
action: "
|
|
7950
|
+
action: "ListTagsForPrivateAccessApplication",
|
|
5265
7951
|
version: "2023-01-20",
|
|
5266
7952
|
protocol: "HTTPS",
|
|
5267
7953
|
pathname: "/",
|
|
@@ -5271,22 +7957,22 @@ export default class Client extends OpenApi {
|
|
|
5271
7957
|
reqBodyType: "formData",
|
|
5272
7958
|
bodyType: "json",
|
|
5273
7959
|
});
|
|
5274
|
-
return $tea.cast<
|
|
7960
|
+
return $tea.cast<ListTagsForPrivateAccessApplicationResponse>(await this.callApi(params, req, runtime), new ListTagsForPrivateAccessApplicationResponse({}));
|
|
5275
7961
|
}
|
|
5276
7962
|
|
|
5277
|
-
async
|
|
7963
|
+
async listTagsForPrivateAccessApplication(request: ListTagsForPrivateAccessApplicationRequest): Promise<ListTagsForPrivateAccessApplicationResponse> {
|
|
5278
7964
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5279
|
-
return await this.
|
|
7965
|
+
return await this.listTagsForPrivateAccessApplicationWithOptions(request, runtime);
|
|
5280
7966
|
}
|
|
5281
7967
|
|
|
5282
|
-
async
|
|
7968
|
+
async listTagsForPrivateAccessPolicyWithOptions(request: ListTagsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessPolicyResponse> {
|
|
5283
7969
|
Util.validateModel(request);
|
|
5284
7970
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5285
7971
|
let req = new $OpenApi.OpenApiRequest({
|
|
5286
7972
|
query: OpenApiUtil.query(query),
|
|
5287
7973
|
});
|
|
5288
7974
|
let params = new $OpenApi.Params({
|
|
5289
|
-
action: "
|
|
7975
|
+
action: "ListTagsForPrivateAccessPolicy",
|
|
5290
7976
|
version: "2023-01-20",
|
|
5291
7977
|
protocol: "HTTPS",
|
|
5292
7978
|
pathname: "/",
|
|
@@ -5296,22 +7982,22 @@ export default class Client extends OpenApi {
|
|
|
5296
7982
|
reqBodyType: "formData",
|
|
5297
7983
|
bodyType: "json",
|
|
5298
7984
|
});
|
|
5299
|
-
return $tea.cast<
|
|
7985
|
+
return $tea.cast<ListTagsForPrivateAccessPolicyResponse>(await this.callApi(params, req, runtime), new ListTagsForPrivateAccessPolicyResponse({}));
|
|
5300
7986
|
}
|
|
5301
7987
|
|
|
5302
|
-
async
|
|
7988
|
+
async listTagsForPrivateAccessPolicy(request: ListTagsForPrivateAccessPolicyRequest): Promise<ListTagsForPrivateAccessPolicyResponse> {
|
|
5303
7989
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5304
|
-
return await this.
|
|
7990
|
+
return await this.listTagsForPrivateAccessPolicyWithOptions(request, runtime);
|
|
5305
7991
|
}
|
|
5306
7992
|
|
|
5307
|
-
async
|
|
7993
|
+
async listUserDevicesWithOptions(request: ListUserDevicesRequest, runtime: $Util.RuntimeOptions): Promise<ListUserDevicesResponse> {
|
|
5308
7994
|
Util.validateModel(request);
|
|
5309
7995
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5310
7996
|
let req = new $OpenApi.OpenApiRequest({
|
|
5311
7997
|
query: OpenApiUtil.query(query),
|
|
5312
7998
|
});
|
|
5313
7999
|
let params = new $OpenApi.Params({
|
|
5314
|
-
action: "
|
|
8000
|
+
action: "ListUserDevices",
|
|
5315
8001
|
version: "2023-01-20",
|
|
5316
8002
|
protocol: "HTTPS",
|
|
5317
8003
|
pathname: "/",
|
|
@@ -5321,12 +8007,12 @@ export default class Client extends OpenApi {
|
|
|
5321
8007
|
reqBodyType: "formData",
|
|
5322
8008
|
bodyType: "json",
|
|
5323
8009
|
});
|
|
5324
|
-
return $tea.cast<
|
|
8010
|
+
return $tea.cast<ListUserDevicesResponse>(await this.callApi(params, req, runtime), new ListUserDevicesResponse({}));
|
|
5325
8011
|
}
|
|
5326
8012
|
|
|
5327
|
-
async
|
|
8013
|
+
async listUserDevices(request: ListUserDevicesRequest): Promise<ListUserDevicesResponse> {
|
|
5328
8014
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5329
|
-
return await this.
|
|
8015
|
+
return await this.listUserDevicesWithOptions(request, runtime);
|
|
5330
8016
|
}
|
|
5331
8017
|
|
|
5332
8018
|
async listUserGroupsWithOptions(request: ListUserGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsResponse> {
|
|
@@ -5379,6 +8065,31 @@ export default class Client extends OpenApi {
|
|
|
5379
8065
|
return await this.listUserGroupsForPrivateAccessPolicyWithOptions(request, runtime);
|
|
5380
8066
|
}
|
|
5381
8067
|
|
|
8068
|
+
async listUserGroupsForRegistrationPolicyWithOptions(request: ListUserGroupsForRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsForRegistrationPolicyResponse> {
|
|
8069
|
+
Util.validateModel(request);
|
|
8070
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
8071
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8072
|
+
query: OpenApiUtil.query(query),
|
|
8073
|
+
});
|
|
8074
|
+
let params = new $OpenApi.Params({
|
|
8075
|
+
action: "ListUserGroupsForRegistrationPolicy",
|
|
8076
|
+
version: "2023-01-20",
|
|
8077
|
+
protocol: "HTTPS",
|
|
8078
|
+
pathname: "/",
|
|
8079
|
+
method: "GET",
|
|
8080
|
+
authType: "AK",
|
|
8081
|
+
style: "RPC",
|
|
8082
|
+
reqBodyType: "formData",
|
|
8083
|
+
bodyType: "json",
|
|
8084
|
+
});
|
|
8085
|
+
return $tea.cast<ListUserGroupsForRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new ListUserGroupsForRegistrationPolicyResponse({}));
|
|
8086
|
+
}
|
|
8087
|
+
|
|
8088
|
+
async listUserGroupsForRegistrationPolicy(request: ListUserGroupsForRegistrationPolicyRequest): Promise<ListUserGroupsForRegistrationPolicyResponse> {
|
|
8089
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8090
|
+
return await this.listUserGroupsForRegistrationPolicyWithOptions(request, runtime);
|
|
8091
|
+
}
|
|
8092
|
+
|
|
5382
8093
|
async updateDynamicRouteWithOptions(request: UpdateDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDynamicRouteResponse> {
|
|
5383
8094
|
Util.validateModel(request);
|
|
5384
8095
|
let body : {[key: string ]: any} = { };
|
|
@@ -5457,6 +8168,44 @@ export default class Client extends OpenApi {
|
|
|
5457
8168
|
return await this.updateDynamicRouteWithOptions(request, runtime);
|
|
5458
8169
|
}
|
|
5459
8170
|
|
|
8171
|
+
async updateExcessiveDeviceRegistrationApplicationsStatusWithOptions(request: UpdateExcessiveDeviceRegistrationApplicationsStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse> {
|
|
8172
|
+
Util.validateModel(request);
|
|
8173
|
+
let body : {[key: string ]: any} = { };
|
|
8174
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8175
|
+
if (!Util.isUnset(request.applicationIds)) {
|
|
8176
|
+
bodyFlat["ApplicationIds"] = request.applicationIds;
|
|
8177
|
+
}
|
|
8178
|
+
|
|
8179
|
+
if (!Util.isUnset(request.status)) {
|
|
8180
|
+
body["Status"] = request.status;
|
|
8181
|
+
}
|
|
8182
|
+
|
|
8183
|
+
body = {
|
|
8184
|
+
...body,
|
|
8185
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8186
|
+
};
|
|
8187
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8188
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8189
|
+
});
|
|
8190
|
+
let params = new $OpenApi.Params({
|
|
8191
|
+
action: "UpdateExcessiveDeviceRegistrationApplicationsStatus",
|
|
8192
|
+
version: "2023-01-20",
|
|
8193
|
+
protocol: "HTTPS",
|
|
8194
|
+
pathname: "/",
|
|
8195
|
+
method: "POST",
|
|
8196
|
+
authType: "AK",
|
|
8197
|
+
style: "RPC",
|
|
8198
|
+
reqBodyType: "formData",
|
|
8199
|
+
bodyType: "json",
|
|
8200
|
+
});
|
|
8201
|
+
return $tea.cast<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse>(await this.callApi(params, req, runtime), new UpdateExcessiveDeviceRegistrationApplicationsStatusResponse({}));
|
|
8202
|
+
}
|
|
8203
|
+
|
|
8204
|
+
async updateExcessiveDeviceRegistrationApplicationsStatus(request: UpdateExcessiveDeviceRegistrationApplicationsStatusRequest): Promise<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse> {
|
|
8205
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8206
|
+
return await this.updateExcessiveDeviceRegistrationApplicationsStatusWithOptions(request, runtime);
|
|
8207
|
+
}
|
|
8208
|
+
|
|
5460
8209
|
async updatePrivateAccessApplicationWithOptions(request: UpdatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessApplicationResponse> {
|
|
5461
8210
|
Util.validateModel(request);
|
|
5462
8211
|
let body : {[key: string ]: any} = { };
|
|
@@ -5597,6 +8346,170 @@ export default class Client extends OpenApi {
|
|
|
5597
8346
|
return await this.updatePrivateAccessPolicyWithOptions(request, runtime);
|
|
5598
8347
|
}
|
|
5599
8348
|
|
|
8349
|
+
async updateRegistrationPolicyWithOptions(tmpReq: UpdateRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<UpdateRegistrationPolicyResponse> {
|
|
8350
|
+
Util.validateModel(tmpReq);
|
|
8351
|
+
let request = new UpdateRegistrationPolicyShrinkRequest({ });
|
|
8352
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
8353
|
+
if (!Util.isUnset(tmpReq.companyLimitCount)) {
|
|
8354
|
+
request.companyLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.companyLimitCount, "CompanyLimitCount", "json");
|
|
8355
|
+
}
|
|
8356
|
+
|
|
8357
|
+
if (!Util.isUnset(tmpReq.personalLimitCount)) {
|
|
8358
|
+
request.personalLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.personalLimitCount, "PersonalLimitCount", "json");
|
|
8359
|
+
}
|
|
8360
|
+
|
|
8361
|
+
let body : {[key: string ]: any} = { };
|
|
8362
|
+
if (!Util.isUnset(request.companyLimitCountShrink)) {
|
|
8363
|
+
body["CompanyLimitCount"] = request.companyLimitCountShrink;
|
|
8364
|
+
}
|
|
8365
|
+
|
|
8366
|
+
if (!Util.isUnset(request.companyLimitType)) {
|
|
8367
|
+
body["CompanyLimitType"] = request.companyLimitType;
|
|
8368
|
+
}
|
|
8369
|
+
|
|
8370
|
+
if (!Util.isUnset(request.description)) {
|
|
8371
|
+
body["Description"] = request.description;
|
|
8372
|
+
}
|
|
8373
|
+
|
|
8374
|
+
if (!Util.isUnset(request.matchMode)) {
|
|
8375
|
+
body["MatchMode"] = request.matchMode;
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
if (!Util.isUnset(request.name)) {
|
|
8379
|
+
body["Name"] = request.name;
|
|
8380
|
+
}
|
|
8381
|
+
|
|
8382
|
+
if (!Util.isUnset(request.personalLimitCountShrink)) {
|
|
8383
|
+
body["PersonalLimitCount"] = request.personalLimitCountShrink;
|
|
8384
|
+
}
|
|
8385
|
+
|
|
8386
|
+
if (!Util.isUnset(request.personalLimitType)) {
|
|
8387
|
+
body["PersonalLimitType"] = request.personalLimitType;
|
|
8388
|
+
}
|
|
8389
|
+
|
|
8390
|
+
if (!Util.isUnset(request.policyId)) {
|
|
8391
|
+
body["PolicyId"] = request.policyId;
|
|
8392
|
+
}
|
|
8393
|
+
|
|
8394
|
+
if (!Util.isUnset(request.priority)) {
|
|
8395
|
+
body["Priority"] = request.priority;
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
if (!Util.isUnset(request.status)) {
|
|
8399
|
+
body["Status"] = request.status;
|
|
8400
|
+
}
|
|
8401
|
+
|
|
8402
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8403
|
+
if (!Util.isUnset(request.userGroupIds)) {
|
|
8404
|
+
bodyFlat["UserGroupIds"] = request.userGroupIds;
|
|
8405
|
+
}
|
|
8406
|
+
|
|
8407
|
+
if (!Util.isUnset(request.whitelist)) {
|
|
8408
|
+
bodyFlat["Whitelist"] = request.whitelist;
|
|
8409
|
+
}
|
|
8410
|
+
|
|
8411
|
+
body = {
|
|
8412
|
+
...body,
|
|
8413
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8414
|
+
};
|
|
8415
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8416
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8417
|
+
});
|
|
8418
|
+
let params = new $OpenApi.Params({
|
|
8419
|
+
action: "UpdateRegistrationPolicy",
|
|
8420
|
+
version: "2023-01-20",
|
|
8421
|
+
protocol: "HTTPS",
|
|
8422
|
+
pathname: "/",
|
|
8423
|
+
method: "POST",
|
|
8424
|
+
authType: "AK",
|
|
8425
|
+
style: "RPC",
|
|
8426
|
+
reqBodyType: "formData",
|
|
8427
|
+
bodyType: "json",
|
|
8428
|
+
});
|
|
8429
|
+
return $tea.cast<UpdateRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new UpdateRegistrationPolicyResponse({}));
|
|
8430
|
+
}
|
|
8431
|
+
|
|
8432
|
+
async updateRegistrationPolicy(request: UpdateRegistrationPolicyRequest): Promise<UpdateRegistrationPolicyResponse> {
|
|
8433
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8434
|
+
return await this.updateRegistrationPolicyWithOptions(request, runtime);
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
async updateUserDevicesSharingStatusWithOptions(request: UpdateUserDevicesSharingStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserDevicesSharingStatusResponse> {
|
|
8438
|
+
Util.validateModel(request);
|
|
8439
|
+
let body : {[key: string ]: any} = { };
|
|
8440
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8441
|
+
if (!Util.isUnset(request.deviceTags)) {
|
|
8442
|
+
bodyFlat["DeviceTags"] = request.deviceTags;
|
|
8443
|
+
}
|
|
8444
|
+
|
|
8445
|
+
if (!Util.isUnset(request.sharingStatus)) {
|
|
8446
|
+
body["SharingStatus"] = request.sharingStatus;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
body = {
|
|
8450
|
+
...body,
|
|
8451
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8452
|
+
};
|
|
8453
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8454
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8455
|
+
});
|
|
8456
|
+
let params = new $OpenApi.Params({
|
|
8457
|
+
action: "UpdateUserDevicesSharingStatus",
|
|
8458
|
+
version: "2023-01-20",
|
|
8459
|
+
protocol: "HTTPS",
|
|
8460
|
+
pathname: "/",
|
|
8461
|
+
method: "POST",
|
|
8462
|
+
authType: "AK",
|
|
8463
|
+
style: "RPC",
|
|
8464
|
+
reqBodyType: "formData",
|
|
8465
|
+
bodyType: "json",
|
|
8466
|
+
});
|
|
8467
|
+
return $tea.cast<UpdateUserDevicesSharingStatusResponse>(await this.callApi(params, req, runtime), new UpdateUserDevicesSharingStatusResponse({}));
|
|
8468
|
+
}
|
|
8469
|
+
|
|
8470
|
+
async updateUserDevicesSharingStatus(request: UpdateUserDevicesSharingStatusRequest): Promise<UpdateUserDevicesSharingStatusResponse> {
|
|
8471
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8472
|
+
return await this.updateUserDevicesSharingStatusWithOptions(request, runtime);
|
|
8473
|
+
}
|
|
8474
|
+
|
|
8475
|
+
async updateUserDevicesStatusWithOptions(request: UpdateUserDevicesStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserDevicesStatusResponse> {
|
|
8476
|
+
Util.validateModel(request);
|
|
8477
|
+
let body : {[key: string ]: any} = { };
|
|
8478
|
+
if (!Util.isUnset(request.deviceAction)) {
|
|
8479
|
+
body["DeviceAction"] = request.deviceAction;
|
|
8480
|
+
}
|
|
8481
|
+
|
|
8482
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8483
|
+
if (!Util.isUnset(request.deviceTags)) {
|
|
8484
|
+
bodyFlat["DeviceTags"] = request.deviceTags;
|
|
8485
|
+
}
|
|
8486
|
+
|
|
8487
|
+
body = {
|
|
8488
|
+
...body,
|
|
8489
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8490
|
+
};
|
|
8491
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8492
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8493
|
+
});
|
|
8494
|
+
let params = new $OpenApi.Params({
|
|
8495
|
+
action: "UpdateUserDevicesStatus",
|
|
8496
|
+
version: "2023-01-20",
|
|
8497
|
+
protocol: "HTTPS",
|
|
8498
|
+
pathname: "/",
|
|
8499
|
+
method: "POST",
|
|
8500
|
+
authType: "AK",
|
|
8501
|
+
style: "RPC",
|
|
8502
|
+
reqBodyType: "formData",
|
|
8503
|
+
bodyType: "json",
|
|
8504
|
+
});
|
|
8505
|
+
return $tea.cast<UpdateUserDevicesStatusResponse>(await this.callApi(params, req, runtime), new UpdateUserDevicesStatusResponse({}));
|
|
8506
|
+
}
|
|
8507
|
+
|
|
8508
|
+
async updateUserDevicesStatus(request: UpdateUserDevicesStatusRequest): Promise<UpdateUserDevicesStatusResponse> {
|
|
8509
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8510
|
+
return await this.updateUserDevicesStatusWithOptions(request, runtime);
|
|
8511
|
+
}
|
|
8512
|
+
|
|
5600
8513
|
async updateUserGroupWithOptions(request: UpdateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserGroupResponse> {
|
|
5601
8514
|
Util.validateModel(request);
|
|
5602
8515
|
let body : {[key: string ]: any} = { };
|