@alicloud/csas20230120 1.1.2 → 1.2.1
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 +1309 -34
- package/dist/client.js +2965 -679
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3273 -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 } {
|
|
@@ -1992,6 +2455,7 @@ export class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
|
1992
2455
|
name?: string;
|
|
1993
2456
|
pageSize?: number;
|
|
1994
2457
|
policyId?: string;
|
|
2458
|
+
simpleMode?: boolean;
|
|
1995
2459
|
tagIds?: string[];
|
|
1996
2460
|
static names(): { [key: string]: string } {
|
|
1997
2461
|
return {
|
|
@@ -2000,6 +2464,7 @@ export class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
|
2000
2464
|
name: 'Name',
|
|
2001
2465
|
pageSize: 'PageSize',
|
|
2002
2466
|
policyId: 'PolicyId',
|
|
2467
|
+
simpleMode: 'SimpleMode',
|
|
2003
2468
|
tagIds: 'TagIds',
|
|
2004
2469
|
};
|
|
2005
2470
|
}
|
|
@@ -2011,6 +2476,7 @@ export class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
|
2011
2476
|
name: 'string',
|
|
2012
2477
|
pageSize: 'number',
|
|
2013
2478
|
policyId: 'string',
|
|
2479
|
+
simpleMode: 'boolean',
|
|
2014
2480
|
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
2015
2481
|
};
|
|
2016
2482
|
}
|
|
@@ -2136,17 +2602,41 @@ export class ListPrivateAccessTagsForDynamicRouteResponse extends $tea.Model {
|
|
|
2136
2602
|
}
|
|
2137
2603
|
}
|
|
2138
2604
|
|
|
2139
|
-
export class
|
|
2140
|
-
|
|
2605
|
+
export class ListRegistrationPoliciesRequest extends $tea.Model {
|
|
2606
|
+
companyLimitType?: string;
|
|
2607
|
+
currentPage?: number;
|
|
2608
|
+
matchMode?: string;
|
|
2609
|
+
name?: string;
|
|
2610
|
+
pageSize?: number;
|
|
2611
|
+
personalLimitType?: string;
|
|
2612
|
+
policyIds?: string[];
|
|
2613
|
+
status?: string;
|
|
2614
|
+
userGroupId?: string;
|
|
2141
2615
|
static names(): { [key: string]: string } {
|
|
2142
2616
|
return {
|
|
2143
|
-
|
|
2617
|
+
companyLimitType: 'CompanyLimitType',
|
|
2618
|
+
currentPage: 'CurrentPage',
|
|
2619
|
+
matchMode: 'MatchMode',
|
|
2620
|
+
name: 'Name',
|
|
2621
|
+
pageSize: 'PageSize',
|
|
2622
|
+
personalLimitType: 'PersonalLimitType',
|
|
2623
|
+
policyIds: 'PolicyIds',
|
|
2624
|
+
status: 'Status',
|
|
2625
|
+
userGroupId: 'UserGroupId',
|
|
2144
2626
|
};
|
|
2145
2627
|
}
|
|
2146
2628
|
|
|
2147
2629
|
static types(): { [key: string]: any } {
|
|
2148
2630
|
return {
|
|
2149
|
-
|
|
2631
|
+
companyLimitType: 'string',
|
|
2632
|
+
currentPage: 'number',
|
|
2633
|
+
matchMode: 'string',
|
|
2634
|
+
name: 'string',
|
|
2635
|
+
pageSize: 'number',
|
|
2636
|
+
personalLimitType: 'string',
|
|
2637
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2638
|
+
status: 'string',
|
|
2639
|
+
userGroupId: 'string',
|
|
2150
2640
|
};
|
|
2151
2641
|
}
|
|
2152
2642
|
|
|
@@ -2155,20 +2645,23 @@ export class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
|
2155
2645
|
}
|
|
2156
2646
|
}
|
|
2157
2647
|
|
|
2158
|
-
export class
|
|
2159
|
-
|
|
2648
|
+
export class ListRegistrationPoliciesResponseBody extends $tea.Model {
|
|
2649
|
+
policies?: ListRegistrationPoliciesResponseBodyPolicies[];
|
|
2160
2650
|
requestId?: string;
|
|
2651
|
+
totalNum?: string;
|
|
2161
2652
|
static names(): { [key: string]: string } {
|
|
2162
2653
|
return {
|
|
2163
|
-
|
|
2654
|
+
policies: 'Policies',
|
|
2164
2655
|
requestId: 'RequestId',
|
|
2656
|
+
totalNum: 'TotalNum',
|
|
2165
2657
|
};
|
|
2166
2658
|
}
|
|
2167
2659
|
|
|
2168
2660
|
static types(): { [key: string]: any } {
|
|
2169
2661
|
return {
|
|
2170
|
-
|
|
2662
|
+
policies: { 'type': 'array', 'itemType': ListRegistrationPoliciesResponseBodyPolicies },
|
|
2171
2663
|
requestId: 'string',
|
|
2664
|
+
totalNum: 'string',
|
|
2172
2665
|
};
|
|
2173
2666
|
}
|
|
2174
2667
|
|
|
@@ -2177,10 +2670,10 @@ export class ListTagsForPrivateAccessApplicationResponseBody extends $tea.Model
|
|
|
2177
2670
|
}
|
|
2178
2671
|
}
|
|
2179
2672
|
|
|
2180
|
-
export class
|
|
2673
|
+
export class ListRegistrationPoliciesResponse extends $tea.Model {
|
|
2181
2674
|
headers: { [key: string]: string };
|
|
2182
2675
|
statusCode: number;
|
|
2183
|
-
body:
|
|
2676
|
+
body: ListRegistrationPoliciesResponseBody;
|
|
2184
2677
|
static names(): { [key: string]: string } {
|
|
2185
2678
|
return {
|
|
2186
2679
|
headers: 'headers',
|
|
@@ -2193,7 +2686,7 @@ export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2193
2686
|
return {
|
|
2194
2687
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2195
2688
|
statusCode: 'number',
|
|
2196
|
-
body:
|
|
2689
|
+
body: ListRegistrationPoliciesResponseBody,
|
|
2197
2690
|
};
|
|
2198
2691
|
}
|
|
2199
2692
|
|
|
@@ -2202,17 +2695,17 @@ export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2202
2695
|
}
|
|
2203
2696
|
}
|
|
2204
2697
|
|
|
2205
|
-
export class
|
|
2206
|
-
|
|
2698
|
+
export class ListRegistrationPoliciesForUserGroupRequest extends $tea.Model {
|
|
2699
|
+
userGroupIds?: string[];
|
|
2207
2700
|
static names(): { [key: string]: string } {
|
|
2208
2701
|
return {
|
|
2209
|
-
|
|
2702
|
+
userGroupIds: 'UserGroupIds',
|
|
2210
2703
|
};
|
|
2211
2704
|
}
|
|
2212
2705
|
|
|
2213
2706
|
static types(): { [key: string]: any } {
|
|
2214
2707
|
return {
|
|
2215
|
-
|
|
2708
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2216
2709
|
};
|
|
2217
2710
|
}
|
|
2218
2711
|
|
|
@@ -2221,20 +2714,20 @@ export class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2221
2714
|
}
|
|
2222
2715
|
}
|
|
2223
2716
|
|
|
2224
|
-
export class
|
|
2225
|
-
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2717
|
+
export class ListRegistrationPoliciesForUserGroupResponseBody extends $tea.Model {
|
|
2226
2718
|
requestId?: string;
|
|
2719
|
+
userGroups?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroups[];
|
|
2227
2720
|
static names(): { [key: string]: string } {
|
|
2228
2721
|
return {
|
|
2229
|
-
polices: 'Polices',
|
|
2230
2722
|
requestId: 'RequestId',
|
|
2723
|
+
userGroups: 'UserGroups',
|
|
2231
2724
|
};
|
|
2232
2725
|
}
|
|
2233
2726
|
|
|
2234
2727
|
static types(): { [key: string]: any } {
|
|
2235
2728
|
return {
|
|
2236
|
-
polices: { 'type': 'array', 'itemType': ListTagsForPrivateAccessPolicyResponseBodyPolices },
|
|
2237
2729
|
requestId: 'string',
|
|
2730
|
+
userGroups: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroups },
|
|
2238
2731
|
};
|
|
2239
2732
|
}
|
|
2240
2733
|
|
|
@@ -2243,10 +2736,10 @@ export class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2243
2736
|
}
|
|
2244
2737
|
}
|
|
2245
2738
|
|
|
2246
|
-
export class
|
|
2739
|
+
export class ListRegistrationPoliciesForUserGroupResponse extends $tea.Model {
|
|
2247
2740
|
headers: { [key: string]: string };
|
|
2248
2741
|
statusCode: number;
|
|
2249
|
-
body:
|
|
2742
|
+
body: ListRegistrationPoliciesForUserGroupResponseBody;
|
|
2250
2743
|
static names(): { [key: string]: string } {
|
|
2251
2744
|
return {
|
|
2252
2745
|
headers: 'headers',
|
|
@@ -2259,7 +2752,7 @@ export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2259
2752
|
return {
|
|
2260
2753
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2261
2754
|
statusCode: 'number',
|
|
2262
|
-
body:
|
|
2755
|
+
body: ListRegistrationPoliciesForUserGroupResponseBody,
|
|
2263
2756
|
};
|
|
2264
2757
|
}
|
|
2265
2758
|
|
|
@@ -2268,32 +2761,23 @@ export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2268
2761
|
}
|
|
2269
2762
|
}
|
|
2270
2763
|
|
|
2271
|
-
export class
|
|
2272
|
-
attributeValue?: string;
|
|
2764
|
+
export class ListSoftwareForUserDeviceRequest extends $tea.Model {
|
|
2273
2765
|
currentPage?: number;
|
|
2274
|
-
|
|
2275
|
-
PAPolicyId?: string;
|
|
2766
|
+
deviceTag?: string;
|
|
2276
2767
|
pageSize?: number;
|
|
2277
|
-
userGroupIds?: string[];
|
|
2278
2768
|
static names(): { [key: string]: string } {
|
|
2279
2769
|
return {
|
|
2280
|
-
attributeValue: 'AttributeValue',
|
|
2281
2770
|
currentPage: 'CurrentPage',
|
|
2282
|
-
|
|
2283
|
-
PAPolicyId: 'PAPolicyId',
|
|
2771
|
+
deviceTag: 'DeviceTag',
|
|
2284
2772
|
pageSize: 'PageSize',
|
|
2285
|
-
userGroupIds: 'UserGroupIds',
|
|
2286
2773
|
};
|
|
2287
2774
|
}
|
|
2288
2775
|
|
|
2289
2776
|
static types(): { [key: string]: any } {
|
|
2290
2777
|
return {
|
|
2291
|
-
attributeValue: 'string',
|
|
2292
2778
|
currentPage: 'number',
|
|
2293
|
-
|
|
2294
|
-
PAPolicyId: 'string',
|
|
2779
|
+
deviceTag: 'string',
|
|
2295
2780
|
pageSize: 'number',
|
|
2296
|
-
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2297
2781
|
};
|
|
2298
2782
|
}
|
|
2299
2783
|
|
|
@@ -2302,23 +2786,23 @@ export class ListUserGroupsRequest extends $tea.Model {
|
|
|
2302
2786
|
}
|
|
2303
2787
|
}
|
|
2304
2788
|
|
|
2305
|
-
export class
|
|
2789
|
+
export class ListSoftwareForUserDeviceResponseBody extends $tea.Model {
|
|
2306
2790
|
requestId?: string;
|
|
2791
|
+
software?: ListSoftwareForUserDeviceResponseBodySoftware[];
|
|
2307
2792
|
totalNum?: number;
|
|
2308
|
-
userGroups?: ListUserGroupsResponseBodyUserGroups[];
|
|
2309
2793
|
static names(): { [key: string]: string } {
|
|
2310
2794
|
return {
|
|
2311
2795
|
requestId: 'RequestId',
|
|
2796
|
+
software: 'Software',
|
|
2312
2797
|
totalNum: 'TotalNum',
|
|
2313
|
-
userGroups: 'UserGroups',
|
|
2314
2798
|
};
|
|
2315
2799
|
}
|
|
2316
2800
|
|
|
2317
2801
|
static types(): { [key: string]: any } {
|
|
2318
2802
|
return {
|
|
2319
2803
|
requestId: 'string',
|
|
2804
|
+
software: { 'type': 'array', 'itemType': ListSoftwareForUserDeviceResponseBodySoftware },
|
|
2320
2805
|
totalNum: 'number',
|
|
2321
|
-
userGroups: { 'type': 'array', 'itemType': ListUserGroupsResponseBodyUserGroups },
|
|
2322
2806
|
};
|
|
2323
2807
|
}
|
|
2324
2808
|
|
|
@@ -2327,10 +2811,10 @@ export class ListUserGroupsResponseBody extends $tea.Model {
|
|
|
2327
2811
|
}
|
|
2328
2812
|
}
|
|
2329
2813
|
|
|
2330
|
-
export class
|
|
2814
|
+
export class ListSoftwareForUserDeviceResponse extends $tea.Model {
|
|
2331
2815
|
headers: { [key: string]: string };
|
|
2332
2816
|
statusCode: number;
|
|
2333
|
-
body:
|
|
2817
|
+
body: ListSoftwareForUserDeviceResponseBody;
|
|
2334
2818
|
static names(): { [key: string]: string } {
|
|
2335
2819
|
return {
|
|
2336
2820
|
headers: 'headers',
|
|
@@ -2343,7 +2827,7 @@ export class ListUserGroupsResponse extends $tea.Model {
|
|
|
2343
2827
|
return {
|
|
2344
2828
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2345
2829
|
statusCode: 'number',
|
|
2346
|
-
body:
|
|
2830
|
+
body: ListSoftwareForUserDeviceResponseBody,
|
|
2347
2831
|
};
|
|
2348
2832
|
}
|
|
2349
2833
|
|
|
@@ -2352,17 +2836,17 @@ export class ListUserGroupsResponse extends $tea.Model {
|
|
|
2352
2836
|
}
|
|
2353
2837
|
}
|
|
2354
2838
|
|
|
2355
|
-
export class
|
|
2356
|
-
|
|
2839
|
+
export class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
2840
|
+
applicationIds?: string[];
|
|
2357
2841
|
static names(): { [key: string]: string } {
|
|
2358
2842
|
return {
|
|
2359
|
-
|
|
2843
|
+
applicationIds: 'ApplicationIds',
|
|
2360
2844
|
};
|
|
2361
2845
|
}
|
|
2362
2846
|
|
|
2363
2847
|
static types(): { [key: string]: any } {
|
|
2364
2848
|
return {
|
|
2365
|
-
|
|
2849
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
2366
2850
|
};
|
|
2367
2851
|
}
|
|
2368
2852
|
|
|
@@ -2371,19 +2855,19 @@ export class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2371
2855
|
}
|
|
2372
2856
|
}
|
|
2373
2857
|
|
|
2374
|
-
export class
|
|
2375
|
-
|
|
2858
|
+
export class ListTagsForPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
2859
|
+
applications?: ListTagsForPrivateAccessApplicationResponseBodyApplications[];
|
|
2376
2860
|
requestId?: string;
|
|
2377
2861
|
static names(): { [key: string]: string } {
|
|
2378
2862
|
return {
|
|
2379
|
-
|
|
2863
|
+
applications: 'Applications',
|
|
2380
2864
|
requestId: 'RequestId',
|
|
2381
2865
|
};
|
|
2382
2866
|
}
|
|
2383
2867
|
|
|
2384
2868
|
static types(): { [key: string]: any } {
|
|
2385
2869
|
return {
|
|
2386
|
-
|
|
2870
|
+
applications: { 'type': 'array', 'itemType': ListTagsForPrivateAccessApplicationResponseBodyApplications },
|
|
2387
2871
|
requestId: 'string',
|
|
2388
2872
|
};
|
|
2389
2873
|
}
|
|
@@ -2393,10 +2877,10 @@ export class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model
|
|
|
2393
2877
|
}
|
|
2394
2878
|
}
|
|
2395
2879
|
|
|
2396
|
-
export class
|
|
2880
|
+
export class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
2397
2881
|
headers: { [key: string]: string };
|
|
2398
2882
|
statusCode: number;
|
|
2399
|
-
body:
|
|
2883
|
+
body: ListTagsForPrivateAccessApplicationResponseBody;
|
|
2400
2884
|
static names(): { [key: string]: string } {
|
|
2401
2885
|
return {
|
|
2402
2886
|
headers: 'headers',
|
|
@@ -2409,7 +2893,7 @@ export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2409
2893
|
return {
|
|
2410
2894
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2411
2895
|
statusCode: 'number',
|
|
2412
|
-
body:
|
|
2896
|
+
body: ListTagsForPrivateAccessApplicationResponseBody,
|
|
2413
2897
|
};
|
|
2414
2898
|
}
|
|
2415
2899
|
|
|
@@ -2418,50 +2902,17 @@ export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2418
2902
|
}
|
|
2419
2903
|
}
|
|
2420
2904
|
|
|
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[];
|
|
2905
|
+
export class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
2906
|
+
policyIds?: string[];
|
|
2434
2907
|
static names(): { [key: string]: string } {
|
|
2435
2908
|
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',
|
|
2909
|
+
policyIds: 'PolicyIds',
|
|
2448
2910
|
};
|
|
2449
2911
|
}
|
|
2450
2912
|
|
|
2451
2913
|
static types(): { [key: string]: any } {
|
|
2452
2914
|
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' },
|
|
2915
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2465
2916
|
};
|
|
2466
2917
|
}
|
|
2467
2918
|
|
|
@@ -2470,16 +2921,19 @@ export class UpdateDynamicRouteRequest extends $tea.Model {
|
|
|
2470
2921
|
}
|
|
2471
2922
|
}
|
|
2472
2923
|
|
|
2473
|
-
export class
|
|
2924
|
+
export class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
2925
|
+
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2474
2926
|
requestId?: string;
|
|
2475
2927
|
static names(): { [key: string]: string } {
|
|
2476
2928
|
return {
|
|
2929
|
+
polices: 'Polices',
|
|
2477
2930
|
requestId: 'RequestId',
|
|
2478
2931
|
};
|
|
2479
2932
|
}
|
|
2480
2933
|
|
|
2481
2934
|
static types(): { [key: string]: any } {
|
|
2482
2935
|
return {
|
|
2936
|
+
polices: { 'type': 'array', 'itemType': ListTagsForPrivateAccessPolicyResponseBodyPolices },
|
|
2483
2937
|
requestId: 'string',
|
|
2484
2938
|
};
|
|
2485
2939
|
}
|
|
@@ -2489,10 +2943,10 @@ export class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
|
2489
2943
|
}
|
|
2490
2944
|
}
|
|
2491
2945
|
|
|
2492
|
-
export class
|
|
2946
|
+
export class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
2493
2947
|
headers: { [key: string]: string };
|
|
2494
2948
|
statusCode: number;
|
|
2495
|
-
body:
|
|
2949
|
+
body: ListTagsForPrivateAccessPolicyResponseBody;
|
|
2496
2950
|
static names(): { [key: string]: string } {
|
|
2497
2951
|
return {
|
|
2498
2952
|
headers: 'headers',
|
|
@@ -2505,7 +2959,7 @@ export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
|
2505
2959
|
return {
|
|
2506
2960
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2507
2961
|
statusCode: 'number',
|
|
2508
|
-
body:
|
|
2962
|
+
body: ListTagsForPrivateAccessPolicyResponseBody,
|
|
2509
2963
|
};
|
|
2510
2964
|
}
|
|
2511
2965
|
|
|
@@ -2514,38 +2968,68 @@ export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
|
2514
2968
|
}
|
|
2515
2969
|
}
|
|
2516
2970
|
|
|
2517
|
-
export class
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2971
|
+
export class ListUserDevicesRequest extends $tea.Model {
|
|
2972
|
+
appStatuses?: string[];
|
|
2973
|
+
currentPage?: number;
|
|
2974
|
+
department?: string;
|
|
2975
|
+
deviceBelong?: string;
|
|
2976
|
+
deviceStatuses?: string[];
|
|
2977
|
+
deviceTags?: string[];
|
|
2978
|
+
deviceTypes?: string[];
|
|
2979
|
+
dlpStatuses?: string[];
|
|
2980
|
+
hostname?: string;
|
|
2981
|
+
iaStatuses?: string[];
|
|
2982
|
+
mac?: string;
|
|
2983
|
+
nacStatuses?: string[];
|
|
2984
|
+
paStatuses?: string[];
|
|
2985
|
+
pageSize?: number;
|
|
2986
|
+
saseUserId?: string;
|
|
2987
|
+
sharingStatus?: boolean;
|
|
2988
|
+
sortBy?: string;
|
|
2989
|
+
username?: string;
|
|
2526
2990
|
static names(): { [key: string]: string } {
|
|
2527
2991
|
return {
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2992
|
+
appStatuses: 'AppStatuses',
|
|
2993
|
+
currentPage: 'CurrentPage',
|
|
2994
|
+
department: 'Department',
|
|
2995
|
+
deviceBelong: 'DeviceBelong',
|
|
2996
|
+
deviceStatuses: 'DeviceStatuses',
|
|
2997
|
+
deviceTags: 'DeviceTags',
|
|
2998
|
+
deviceTypes: 'DeviceTypes',
|
|
2999
|
+
dlpStatuses: 'DlpStatuses',
|
|
3000
|
+
hostname: 'Hostname',
|
|
3001
|
+
iaStatuses: 'IaStatuses',
|
|
3002
|
+
mac: 'Mac',
|
|
3003
|
+
nacStatuses: 'NacStatuses',
|
|
3004
|
+
paStatuses: 'PaStatuses',
|
|
3005
|
+
pageSize: 'PageSize',
|
|
3006
|
+
saseUserId: 'SaseUserId',
|
|
3007
|
+
sharingStatus: 'SharingStatus',
|
|
3008
|
+
sortBy: 'SortBy',
|
|
3009
|
+
username: 'Username',
|
|
2536
3010
|
};
|
|
2537
3011
|
}
|
|
2538
3012
|
|
|
2539
3013
|
static types(): { [key: string]: any } {
|
|
2540
3014
|
return {
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
3015
|
+
appStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3016
|
+
currentPage: 'number',
|
|
3017
|
+
department: 'string',
|
|
3018
|
+
deviceBelong: 'string',
|
|
3019
|
+
deviceStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3020
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3021
|
+
deviceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
3022
|
+
dlpStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3023
|
+
hostname: 'string',
|
|
3024
|
+
iaStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3025
|
+
mac: 'string',
|
|
3026
|
+
nacStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3027
|
+
paStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
3028
|
+
pageSize: 'number',
|
|
3029
|
+
saseUserId: 'string',
|
|
3030
|
+
sharingStatus: 'boolean',
|
|
3031
|
+
sortBy: 'string',
|
|
3032
|
+
username: 'string',
|
|
2549
3033
|
};
|
|
2550
3034
|
}
|
|
2551
3035
|
|
|
@@ -2554,17 +3038,23 @@ export class UpdatePrivateAccessApplicationRequest extends $tea.Model {
|
|
|
2554
3038
|
}
|
|
2555
3039
|
}
|
|
2556
3040
|
|
|
2557
|
-
export class
|
|
3041
|
+
export class ListUserDevicesResponseBody extends $tea.Model {
|
|
3042
|
+
devices?: ListUserDevicesResponseBodyDevices[];
|
|
2558
3043
|
requestId?: string;
|
|
3044
|
+
totalNum?: number;
|
|
2559
3045
|
static names(): { [key: string]: string } {
|
|
2560
3046
|
return {
|
|
3047
|
+
devices: 'Devices',
|
|
2561
3048
|
requestId: 'RequestId',
|
|
3049
|
+
totalNum: 'TotalNum',
|
|
2562
3050
|
};
|
|
2563
3051
|
}
|
|
2564
3052
|
|
|
2565
3053
|
static types(): { [key: string]: any } {
|
|
2566
3054
|
return {
|
|
3055
|
+
devices: { 'type': 'array', 'itemType': ListUserDevicesResponseBodyDevices },
|
|
2567
3056
|
requestId: 'string',
|
|
3057
|
+
totalNum: 'number',
|
|
2568
3058
|
};
|
|
2569
3059
|
}
|
|
2570
3060
|
|
|
@@ -2573,10 +3063,10 @@ export class UpdatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
|
2573
3063
|
}
|
|
2574
3064
|
}
|
|
2575
3065
|
|
|
2576
|
-
export class
|
|
3066
|
+
export class ListUserDevicesResponse extends $tea.Model {
|
|
2577
3067
|
headers: { [key: string]: string };
|
|
2578
3068
|
statusCode: number;
|
|
2579
|
-
body:
|
|
3069
|
+
body: ListUserDevicesResponseBody;
|
|
2580
3070
|
static names(): { [key: string]: string } {
|
|
2581
3071
|
return {
|
|
2582
3072
|
headers: 'headers',
|
|
@@ -2589,7 +3079,7 @@ export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2589
3079
|
return {
|
|
2590
3080
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2591
3081
|
statusCode: 'number',
|
|
2592
|
-
body:
|
|
3082
|
+
body: ListUserDevicesResponseBody,
|
|
2593
3083
|
};
|
|
2594
3084
|
}
|
|
2595
3085
|
|
|
@@ -2598,50 +3088,32 @@ export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
|
2598
3088
|
}
|
|
2599
3089
|
}
|
|
2600
3090
|
|
|
2601
|
-
export class
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
policyAction?: string;
|
|
2608
|
-
policyId?: string;
|
|
2609
|
-
priority?: number;
|
|
2610
|
-
status?: string;
|
|
2611
|
-
tagIds?: string[];
|
|
3091
|
+
export class ListUserGroupsRequest extends $tea.Model {
|
|
3092
|
+
attributeValue?: string;
|
|
3093
|
+
currentPage?: number;
|
|
3094
|
+
name?: string;
|
|
3095
|
+
PAPolicyId?: string;
|
|
3096
|
+
pageSize?: number;
|
|
2612
3097
|
userGroupIds?: string[];
|
|
2613
|
-
userGroupMode?: string;
|
|
2614
3098
|
static names(): { [key: string]: string } {
|
|
2615
3099
|
return {
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
policyAction: 'PolicyAction',
|
|
2622
|
-
policyId: 'PolicyId',
|
|
2623
|
-
priority: 'Priority',
|
|
2624
|
-
status: 'Status',
|
|
2625
|
-
tagIds: 'TagIds',
|
|
3100
|
+
attributeValue: 'AttributeValue',
|
|
3101
|
+
currentPage: 'CurrentPage',
|
|
3102
|
+
name: 'Name',
|
|
3103
|
+
PAPolicyId: 'PAPolicyId',
|
|
3104
|
+
pageSize: 'PageSize',
|
|
2626
3105
|
userGroupIds: 'UserGroupIds',
|
|
2627
|
-
userGroupMode: 'UserGroupMode',
|
|
2628
3106
|
};
|
|
2629
3107
|
}
|
|
2630
3108
|
|
|
2631
3109
|
static types(): { [key: string]: any } {
|
|
2632
3110
|
return {
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
policyAction: 'string',
|
|
2639
|
-
policyId: 'string',
|
|
2640
|
-
priority: 'number',
|
|
2641
|
-
status: 'string',
|
|
2642
|
-
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3111
|
+
attributeValue: 'string',
|
|
3112
|
+
currentPage: 'number',
|
|
3113
|
+
name: 'string',
|
|
3114
|
+
PAPolicyId: 'string',
|
|
3115
|
+
pageSize: 'number',
|
|
2643
3116
|
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2644
|
-
userGroupMode: 'string',
|
|
2645
3117
|
};
|
|
2646
3118
|
}
|
|
2647
3119
|
|
|
@@ -2650,17 +3122,23 @@ export class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
|
2650
3122
|
}
|
|
2651
3123
|
}
|
|
2652
3124
|
|
|
2653
|
-
export class
|
|
3125
|
+
export class ListUserGroupsResponseBody extends $tea.Model {
|
|
2654
3126
|
requestId?: string;
|
|
3127
|
+
totalNum?: number;
|
|
3128
|
+
userGroups?: ListUserGroupsResponseBodyUserGroups[];
|
|
2655
3129
|
static names(): { [key: string]: string } {
|
|
2656
3130
|
return {
|
|
2657
3131
|
requestId: 'RequestId',
|
|
3132
|
+
totalNum: 'TotalNum',
|
|
3133
|
+
userGroups: 'UserGroups',
|
|
2658
3134
|
};
|
|
2659
3135
|
}
|
|
2660
3136
|
|
|
2661
3137
|
static types(): { [key: string]: any } {
|
|
2662
3138
|
return {
|
|
2663
3139
|
requestId: 'string',
|
|
3140
|
+
totalNum: 'number',
|
|
3141
|
+
userGroups: { 'type': 'array', 'itemType': ListUserGroupsResponseBodyUserGroups },
|
|
2664
3142
|
};
|
|
2665
3143
|
}
|
|
2666
3144
|
|
|
@@ -2669,10 +3147,10 @@ export class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
|
2669
3147
|
}
|
|
2670
3148
|
}
|
|
2671
3149
|
|
|
2672
|
-
export class
|
|
3150
|
+
export class ListUserGroupsResponse extends $tea.Model {
|
|
2673
3151
|
headers: { [key: string]: string };
|
|
2674
3152
|
statusCode: number;
|
|
2675
|
-
body:
|
|
3153
|
+
body: ListUserGroupsResponseBody;
|
|
2676
3154
|
static names(): { [key: string]: string } {
|
|
2677
3155
|
return {
|
|
2678
3156
|
headers: 'headers',
|
|
@@ -2685,7 +3163,7 @@ export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2685
3163
|
return {
|
|
2686
3164
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2687
3165
|
statusCode: 'number',
|
|
2688
|
-
body:
|
|
3166
|
+
body: ListUserGroupsResponseBody,
|
|
2689
3167
|
};
|
|
2690
3168
|
}
|
|
2691
3169
|
|
|
@@ -2694,26 +3172,17 @@ export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
|
2694
3172
|
}
|
|
2695
3173
|
}
|
|
2696
3174
|
|
|
2697
|
-
export class
|
|
2698
|
-
|
|
2699
|
-
description?: string;
|
|
2700
|
-
modifyType?: string;
|
|
2701
|
-
userGroupId?: string;
|
|
3175
|
+
export class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
3176
|
+
policyIds?: string[];
|
|
2702
3177
|
static names(): { [key: string]: string } {
|
|
2703
3178
|
return {
|
|
2704
|
-
|
|
2705
|
-
description: 'Description',
|
|
2706
|
-
modifyType: 'ModifyType',
|
|
2707
|
-
userGroupId: 'UserGroupId',
|
|
3179
|
+
policyIds: 'PolicyIds',
|
|
2708
3180
|
};
|
|
2709
3181
|
}
|
|
2710
3182
|
|
|
2711
3183
|
static types(): { [key: string]: any } {
|
|
2712
3184
|
return {
|
|
2713
|
-
|
|
2714
|
-
description: 'string',
|
|
2715
|
-
modifyType: 'string',
|
|
2716
|
-
userGroupId: 'string',
|
|
3185
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2717
3186
|
};
|
|
2718
3187
|
}
|
|
2719
3188
|
|
|
@@ -2722,16 +3191,19 @@ export class UpdateUserGroupRequest extends $tea.Model {
|
|
|
2722
3191
|
}
|
|
2723
3192
|
}
|
|
2724
3193
|
|
|
2725
|
-
export class
|
|
3194
|
+
export class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
3195
|
+
polices?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolices[];
|
|
2726
3196
|
requestId?: string;
|
|
2727
3197
|
static names(): { [key: string]: string } {
|
|
2728
3198
|
return {
|
|
3199
|
+
polices: 'Polices',
|
|
2729
3200
|
requestId: 'RequestId',
|
|
2730
3201
|
};
|
|
2731
3202
|
}
|
|
2732
3203
|
|
|
2733
3204
|
static types(): { [key: string]: any } {
|
|
2734
3205
|
return {
|
|
3206
|
+
polices: { 'type': 'array', 'itemType': ListUserGroupsForPrivateAccessPolicyResponseBodyPolices },
|
|
2735
3207
|
requestId: 'string',
|
|
2736
3208
|
};
|
|
2737
3209
|
}
|
|
@@ -2741,10 +3213,10 @@ export class UpdateUserGroupResponseBody extends $tea.Model {
|
|
|
2741
3213
|
}
|
|
2742
3214
|
}
|
|
2743
3215
|
|
|
2744
|
-
export class
|
|
3216
|
+
export class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
2745
3217
|
headers: { [key: string]: string };
|
|
2746
3218
|
statusCode: number;
|
|
2747
|
-
body:
|
|
3219
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
2748
3220
|
static names(): { [key: string]: string } {
|
|
2749
3221
|
return {
|
|
2750
3222
|
headers: 'headers',
|
|
@@ -2757,7 +3229,7 @@ export class UpdateUserGroupResponse extends $tea.Model {
|
|
|
2757
3229
|
return {
|
|
2758
3230
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2759
3231
|
statusCode: 'number',
|
|
2760
|
-
body:
|
|
3232
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody,
|
|
2761
3233
|
};
|
|
2762
3234
|
}
|
|
2763
3235
|
|
|
@@ -2766,20 +3238,17 @@ export class UpdateUserGroupResponse extends $tea.Model {
|
|
|
2766
3238
|
}
|
|
2767
3239
|
}
|
|
2768
3240
|
|
|
2769
|
-
export class
|
|
2770
|
-
|
|
2771
|
-
end?: number;
|
|
3241
|
+
export class ListUserGroupsForRegistrationPolicyRequest extends $tea.Model {
|
|
3242
|
+
policyIds?: string[];
|
|
2772
3243
|
static names(): { [key: string]: string } {
|
|
2773
3244
|
return {
|
|
2774
|
-
|
|
2775
|
-
end: 'End',
|
|
3245
|
+
policyIds: 'PolicyIds',
|
|
2776
3246
|
};
|
|
2777
3247
|
}
|
|
2778
3248
|
|
|
2779
3249
|
static types(): { [key: string]: any } {
|
|
2780
3250
|
return {
|
|
2781
|
-
|
|
2782
|
-
end: 'number',
|
|
3251
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2783
3252
|
};
|
|
2784
3253
|
}
|
|
2785
3254
|
|
|
@@ -2788,16 +3257,791 @@ export class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model
|
|
|
2788
3257
|
}
|
|
2789
3258
|
}
|
|
2790
3259
|
|
|
2791
|
-
export class
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
userGroupType?: string;
|
|
2795
|
-
value?: string;
|
|
3260
|
+
export class ListUserGroupsForRegistrationPolicyResponseBody extends $tea.Model {
|
|
3261
|
+
policies?: ListUserGroupsForRegistrationPolicyResponseBodyPolicies[];
|
|
3262
|
+
requestId?: string;
|
|
2796
3263
|
static names(): { [key: string]: string } {
|
|
2797
3264
|
return {
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
3265
|
+
policies: 'Policies',
|
|
3266
|
+
requestId: 'RequestId',
|
|
3267
|
+
};
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
static types(): { [key: string]: any } {
|
|
3271
|
+
return {
|
|
3272
|
+
policies: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPolicies },
|
|
3273
|
+
requestId: 'string',
|
|
3274
|
+
};
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
constructor(map?: { [key: string]: any }) {
|
|
3278
|
+
super(map);
|
|
3279
|
+
}
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
export class ListUserGroupsForRegistrationPolicyResponse extends $tea.Model {
|
|
3283
|
+
headers: { [key: string]: string };
|
|
3284
|
+
statusCode: number;
|
|
3285
|
+
body: ListUserGroupsForRegistrationPolicyResponseBody;
|
|
3286
|
+
static names(): { [key: string]: string } {
|
|
3287
|
+
return {
|
|
3288
|
+
headers: 'headers',
|
|
3289
|
+
statusCode: 'statusCode',
|
|
3290
|
+
body: 'body',
|
|
3291
|
+
};
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
static types(): { [key: string]: any } {
|
|
3295
|
+
return {
|
|
3296
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3297
|
+
statusCode: 'number',
|
|
3298
|
+
body: ListUserGroupsForRegistrationPolicyResponseBody,
|
|
3299
|
+
};
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
constructor(map?: { [key: string]: any }) {
|
|
3303
|
+
super(map);
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
export class UpdateDynamicRouteRequest extends $tea.Model {
|
|
3308
|
+
applicationIds?: string[];
|
|
3309
|
+
applicationType?: string;
|
|
3310
|
+
description?: string;
|
|
3311
|
+
dynamicRouteId?: string;
|
|
3312
|
+
dynamicRouteType?: string;
|
|
3313
|
+
modifyType?: string;
|
|
3314
|
+
name?: string;
|
|
3315
|
+
nextHop?: string;
|
|
3316
|
+
priority?: number;
|
|
3317
|
+
regionIds?: string[];
|
|
3318
|
+
status?: string;
|
|
3319
|
+
tagIds?: string[];
|
|
3320
|
+
static names(): { [key: string]: string } {
|
|
3321
|
+
return {
|
|
3322
|
+
applicationIds: 'ApplicationIds',
|
|
3323
|
+
applicationType: 'ApplicationType',
|
|
3324
|
+
description: 'Description',
|
|
3325
|
+
dynamicRouteId: 'DynamicRouteId',
|
|
3326
|
+
dynamicRouteType: 'DynamicRouteType',
|
|
3327
|
+
modifyType: 'ModifyType',
|
|
3328
|
+
name: 'Name',
|
|
3329
|
+
nextHop: 'NextHop',
|
|
3330
|
+
priority: 'Priority',
|
|
3331
|
+
regionIds: 'RegionIds',
|
|
3332
|
+
status: 'Status',
|
|
3333
|
+
tagIds: 'TagIds',
|
|
3334
|
+
};
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3337
|
+
static types(): { [key: string]: any } {
|
|
3338
|
+
return {
|
|
3339
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3340
|
+
applicationType: 'string',
|
|
3341
|
+
description: 'string',
|
|
3342
|
+
dynamicRouteId: 'string',
|
|
3343
|
+
dynamicRouteType: 'string',
|
|
3344
|
+
modifyType: 'string',
|
|
3345
|
+
name: 'string',
|
|
3346
|
+
nextHop: 'string',
|
|
3347
|
+
priority: 'number',
|
|
3348
|
+
regionIds: { 'type': 'array', 'itemType': 'string' },
|
|
3349
|
+
status: 'string',
|
|
3350
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3351
|
+
};
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
constructor(map?: { [key: string]: any }) {
|
|
3355
|
+
super(map);
|
|
3356
|
+
}
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
export class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
3360
|
+
requestId?: string;
|
|
3361
|
+
static names(): { [key: string]: string } {
|
|
3362
|
+
return {
|
|
3363
|
+
requestId: 'RequestId',
|
|
3364
|
+
};
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
static types(): { [key: string]: any } {
|
|
3368
|
+
return {
|
|
3369
|
+
requestId: 'string',
|
|
3370
|
+
};
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
constructor(map?: { [key: string]: any }) {
|
|
3374
|
+
super(map);
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
export class UpdateDynamicRouteResponse extends $tea.Model {
|
|
3379
|
+
headers: { [key: string]: string };
|
|
3380
|
+
statusCode: number;
|
|
3381
|
+
body: UpdateDynamicRouteResponseBody;
|
|
3382
|
+
static names(): { [key: string]: string } {
|
|
3383
|
+
return {
|
|
3384
|
+
headers: 'headers',
|
|
3385
|
+
statusCode: 'statusCode',
|
|
3386
|
+
body: 'body',
|
|
3387
|
+
};
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
static types(): { [key: string]: any } {
|
|
3391
|
+
return {
|
|
3392
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3393
|
+
statusCode: 'number',
|
|
3394
|
+
body: UpdateDynamicRouteResponseBody,
|
|
3395
|
+
};
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
constructor(map?: { [key: string]: any }) {
|
|
3399
|
+
super(map);
|
|
3400
|
+
}
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusRequest extends $tea.Model {
|
|
3404
|
+
applicationIds?: string[];
|
|
3405
|
+
status?: string;
|
|
3406
|
+
static names(): { [key: string]: string } {
|
|
3407
|
+
return {
|
|
3408
|
+
applicationIds: 'ApplicationIds',
|
|
3409
|
+
status: 'Status',
|
|
3410
|
+
};
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
static types(): { [key: string]: any } {
|
|
3414
|
+
return {
|
|
3415
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3416
|
+
status: 'string',
|
|
3417
|
+
};
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
constructor(map?: { [key: string]: any }) {
|
|
3421
|
+
super(map);
|
|
3422
|
+
}
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody extends $tea.Model {
|
|
3426
|
+
applications?: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications[];
|
|
3427
|
+
requestId?: string;
|
|
3428
|
+
static names(): { [key: string]: string } {
|
|
3429
|
+
return {
|
|
3430
|
+
applications: 'Applications',
|
|
3431
|
+
requestId: 'RequestId',
|
|
3432
|
+
};
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
static types(): { [key: string]: any } {
|
|
3436
|
+
return {
|
|
3437
|
+
applications: { 'type': 'array', 'itemType': UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications },
|
|
3438
|
+
requestId: 'string',
|
|
3439
|
+
};
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
constructor(map?: { [key: string]: any }) {
|
|
3443
|
+
super(map);
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponse extends $tea.Model {
|
|
3448
|
+
headers: { [key: string]: string };
|
|
3449
|
+
statusCode: number;
|
|
3450
|
+
body: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody;
|
|
3451
|
+
static names(): { [key: string]: string } {
|
|
3452
|
+
return {
|
|
3453
|
+
headers: 'headers',
|
|
3454
|
+
statusCode: 'statusCode',
|
|
3455
|
+
body: 'body',
|
|
3456
|
+
};
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
static types(): { [key: string]: any } {
|
|
3460
|
+
return {
|
|
3461
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3462
|
+
statusCode: 'number',
|
|
3463
|
+
body: UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBody,
|
|
3464
|
+
};
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
constructor(map?: { [key: string]: any }) {
|
|
3468
|
+
super(map);
|
|
3469
|
+
}
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
export class UpdatePrivateAccessApplicationRequest extends $tea.Model {
|
|
3473
|
+
addresses?: string[];
|
|
3474
|
+
applicationId?: string;
|
|
3475
|
+
description?: string;
|
|
3476
|
+
modifyType?: string;
|
|
3477
|
+
portRanges?: UpdatePrivateAccessApplicationRequestPortRanges[];
|
|
3478
|
+
protocol?: string;
|
|
3479
|
+
status?: string;
|
|
3480
|
+
tagIds?: string[];
|
|
3481
|
+
static names(): { [key: string]: string } {
|
|
3482
|
+
return {
|
|
3483
|
+
addresses: 'Addresses',
|
|
3484
|
+
applicationId: 'ApplicationId',
|
|
3485
|
+
description: 'Description',
|
|
3486
|
+
modifyType: 'ModifyType',
|
|
3487
|
+
portRanges: 'PortRanges',
|
|
3488
|
+
protocol: 'Protocol',
|
|
3489
|
+
status: 'Status',
|
|
3490
|
+
tagIds: 'TagIds',
|
|
3491
|
+
};
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
static types(): { [key: string]: any } {
|
|
3495
|
+
return {
|
|
3496
|
+
addresses: { 'type': 'array', 'itemType': 'string' },
|
|
3497
|
+
applicationId: 'string',
|
|
3498
|
+
description: 'string',
|
|
3499
|
+
modifyType: 'string',
|
|
3500
|
+
portRanges: { 'type': 'array', 'itemType': UpdatePrivateAccessApplicationRequestPortRanges },
|
|
3501
|
+
protocol: 'string',
|
|
3502
|
+
status: 'string',
|
|
3503
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3504
|
+
};
|
|
3505
|
+
}
|
|
3506
|
+
|
|
3507
|
+
constructor(map?: { [key: string]: any }) {
|
|
3508
|
+
super(map);
|
|
3509
|
+
}
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
export class UpdatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
3513
|
+
requestId?: string;
|
|
3514
|
+
static names(): { [key: string]: string } {
|
|
3515
|
+
return {
|
|
3516
|
+
requestId: 'RequestId',
|
|
3517
|
+
};
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
static types(): { [key: string]: any } {
|
|
3521
|
+
return {
|
|
3522
|
+
requestId: 'string',
|
|
3523
|
+
};
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
constructor(map?: { [key: string]: any }) {
|
|
3527
|
+
super(map);
|
|
3528
|
+
}
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
export class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
3532
|
+
headers: { [key: string]: string };
|
|
3533
|
+
statusCode: number;
|
|
3534
|
+
body: UpdatePrivateAccessApplicationResponseBody;
|
|
3535
|
+
static names(): { [key: string]: string } {
|
|
3536
|
+
return {
|
|
3537
|
+
headers: 'headers',
|
|
3538
|
+
statusCode: 'statusCode',
|
|
3539
|
+
body: 'body',
|
|
3540
|
+
};
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
static types(): { [key: string]: any } {
|
|
3544
|
+
return {
|
|
3545
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3546
|
+
statusCode: 'number',
|
|
3547
|
+
body: UpdatePrivateAccessApplicationResponseBody,
|
|
3548
|
+
};
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
constructor(map?: { [key: string]: any }) {
|
|
3552
|
+
super(map);
|
|
3553
|
+
}
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
export class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
3557
|
+
applicationIds?: string[];
|
|
3558
|
+
applicationType?: string;
|
|
3559
|
+
customUserAttributes?: UpdatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
3560
|
+
description?: string;
|
|
3561
|
+
modifyType?: string;
|
|
3562
|
+
policyAction?: string;
|
|
3563
|
+
policyId?: string;
|
|
3564
|
+
priority?: number;
|
|
3565
|
+
status?: string;
|
|
3566
|
+
tagIds?: string[];
|
|
3567
|
+
userGroupIds?: string[];
|
|
3568
|
+
userGroupMode?: string;
|
|
3569
|
+
static names(): { [key: string]: string } {
|
|
3570
|
+
return {
|
|
3571
|
+
applicationIds: 'ApplicationIds',
|
|
3572
|
+
applicationType: 'ApplicationType',
|
|
3573
|
+
customUserAttributes: 'CustomUserAttributes',
|
|
3574
|
+
description: 'Description',
|
|
3575
|
+
modifyType: 'ModifyType',
|
|
3576
|
+
policyAction: 'PolicyAction',
|
|
3577
|
+
policyId: 'PolicyId',
|
|
3578
|
+
priority: 'Priority',
|
|
3579
|
+
status: 'Status',
|
|
3580
|
+
tagIds: 'TagIds',
|
|
3581
|
+
userGroupIds: 'UserGroupIds',
|
|
3582
|
+
userGroupMode: 'UserGroupMode',
|
|
3583
|
+
};
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
static types(): { [key: string]: any } {
|
|
3587
|
+
return {
|
|
3588
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
3589
|
+
applicationType: 'string',
|
|
3590
|
+
customUserAttributes: { 'type': 'array', 'itemType': UpdatePrivateAccessPolicyRequestCustomUserAttributes },
|
|
3591
|
+
description: 'string',
|
|
3592
|
+
modifyType: 'string',
|
|
3593
|
+
policyAction: 'string',
|
|
3594
|
+
policyId: 'string',
|
|
3595
|
+
priority: 'number',
|
|
3596
|
+
status: 'string',
|
|
3597
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
3598
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3599
|
+
userGroupMode: 'string',
|
|
3600
|
+
};
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
constructor(map?: { [key: string]: any }) {
|
|
3604
|
+
super(map);
|
|
3605
|
+
}
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3608
|
+
export class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
3609
|
+
requestId?: string;
|
|
3610
|
+
static names(): { [key: string]: string } {
|
|
3611
|
+
return {
|
|
3612
|
+
requestId: 'RequestId',
|
|
3613
|
+
};
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
static types(): { [key: string]: any } {
|
|
3617
|
+
return {
|
|
3618
|
+
requestId: 'string',
|
|
3619
|
+
};
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
constructor(map?: { [key: string]: any }) {
|
|
3623
|
+
super(map);
|
|
3624
|
+
}
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
export class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
3628
|
+
headers: { [key: string]: string };
|
|
3629
|
+
statusCode: number;
|
|
3630
|
+
body: UpdatePrivateAccessPolicyResponseBody;
|
|
3631
|
+
static names(): { [key: string]: string } {
|
|
3632
|
+
return {
|
|
3633
|
+
headers: 'headers',
|
|
3634
|
+
statusCode: 'statusCode',
|
|
3635
|
+
body: 'body',
|
|
3636
|
+
};
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
static types(): { [key: string]: any } {
|
|
3640
|
+
return {
|
|
3641
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3642
|
+
statusCode: 'number',
|
|
3643
|
+
body: UpdatePrivateAccessPolicyResponseBody,
|
|
3644
|
+
};
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
constructor(map?: { [key: string]: any }) {
|
|
3648
|
+
super(map);
|
|
3649
|
+
}
|
|
3650
|
+
}
|
|
3651
|
+
|
|
3652
|
+
export class UpdateRegistrationPolicyRequest extends $tea.Model {
|
|
3653
|
+
companyLimitCount?: UpdateRegistrationPolicyRequestCompanyLimitCount;
|
|
3654
|
+
companyLimitType?: string;
|
|
3655
|
+
description?: string;
|
|
3656
|
+
matchMode?: string;
|
|
3657
|
+
name?: string;
|
|
3658
|
+
personalLimitCount?: UpdateRegistrationPolicyRequestPersonalLimitCount;
|
|
3659
|
+
personalLimitType?: string;
|
|
3660
|
+
policyId?: string;
|
|
3661
|
+
priority?: number;
|
|
3662
|
+
status?: string;
|
|
3663
|
+
userGroupIds?: string[];
|
|
3664
|
+
whitelist?: string[];
|
|
3665
|
+
static names(): { [key: string]: string } {
|
|
3666
|
+
return {
|
|
3667
|
+
companyLimitCount: 'CompanyLimitCount',
|
|
3668
|
+
companyLimitType: 'CompanyLimitType',
|
|
3669
|
+
description: 'Description',
|
|
3670
|
+
matchMode: 'MatchMode',
|
|
3671
|
+
name: 'Name',
|
|
3672
|
+
personalLimitCount: 'PersonalLimitCount',
|
|
3673
|
+
personalLimitType: 'PersonalLimitType',
|
|
3674
|
+
policyId: 'PolicyId',
|
|
3675
|
+
priority: 'Priority',
|
|
3676
|
+
status: 'Status',
|
|
3677
|
+
userGroupIds: 'UserGroupIds',
|
|
3678
|
+
whitelist: 'Whitelist',
|
|
3679
|
+
};
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
static types(): { [key: string]: any } {
|
|
3683
|
+
return {
|
|
3684
|
+
companyLimitCount: UpdateRegistrationPolicyRequestCompanyLimitCount,
|
|
3685
|
+
companyLimitType: 'string',
|
|
3686
|
+
description: 'string',
|
|
3687
|
+
matchMode: 'string',
|
|
3688
|
+
name: 'string',
|
|
3689
|
+
personalLimitCount: UpdateRegistrationPolicyRequestPersonalLimitCount,
|
|
3690
|
+
personalLimitType: 'string',
|
|
3691
|
+
policyId: 'string',
|
|
3692
|
+
priority: 'number',
|
|
3693
|
+
status: 'string',
|
|
3694
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3695
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
3696
|
+
};
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
constructor(map?: { [key: string]: any }) {
|
|
3700
|
+
super(map);
|
|
3701
|
+
}
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
export class UpdateRegistrationPolicyShrinkRequest extends $tea.Model {
|
|
3705
|
+
companyLimitCountShrink?: string;
|
|
3706
|
+
companyLimitType?: string;
|
|
3707
|
+
description?: string;
|
|
3708
|
+
matchMode?: string;
|
|
3709
|
+
name?: string;
|
|
3710
|
+
personalLimitCountShrink?: string;
|
|
3711
|
+
personalLimitType?: string;
|
|
3712
|
+
policyId?: string;
|
|
3713
|
+
priority?: number;
|
|
3714
|
+
status?: string;
|
|
3715
|
+
userGroupIds?: string[];
|
|
3716
|
+
whitelist?: string[];
|
|
3717
|
+
static names(): { [key: string]: string } {
|
|
3718
|
+
return {
|
|
3719
|
+
companyLimitCountShrink: 'CompanyLimitCount',
|
|
3720
|
+
companyLimitType: 'CompanyLimitType',
|
|
3721
|
+
description: 'Description',
|
|
3722
|
+
matchMode: 'MatchMode',
|
|
3723
|
+
name: 'Name',
|
|
3724
|
+
personalLimitCountShrink: 'PersonalLimitCount',
|
|
3725
|
+
personalLimitType: 'PersonalLimitType',
|
|
3726
|
+
policyId: 'PolicyId',
|
|
3727
|
+
priority: 'Priority',
|
|
3728
|
+
status: 'Status',
|
|
3729
|
+
userGroupIds: 'UserGroupIds',
|
|
3730
|
+
whitelist: 'Whitelist',
|
|
3731
|
+
};
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
static types(): { [key: string]: any } {
|
|
3735
|
+
return {
|
|
3736
|
+
companyLimitCountShrink: 'string',
|
|
3737
|
+
companyLimitType: 'string',
|
|
3738
|
+
description: 'string',
|
|
3739
|
+
matchMode: 'string',
|
|
3740
|
+
name: 'string',
|
|
3741
|
+
personalLimitCountShrink: 'string',
|
|
3742
|
+
personalLimitType: 'string',
|
|
3743
|
+
policyId: 'string',
|
|
3744
|
+
priority: 'number',
|
|
3745
|
+
status: 'string',
|
|
3746
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
3747
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
3748
|
+
};
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
constructor(map?: { [key: string]: any }) {
|
|
3752
|
+
super(map);
|
|
3753
|
+
}
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
export class UpdateRegistrationPolicyResponseBody extends $tea.Model {
|
|
3757
|
+
policy?: UpdateRegistrationPolicyResponseBodyPolicy;
|
|
3758
|
+
requestId?: string;
|
|
3759
|
+
static names(): { [key: string]: string } {
|
|
3760
|
+
return {
|
|
3761
|
+
policy: 'Policy',
|
|
3762
|
+
requestId: 'RequestId',
|
|
3763
|
+
};
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
static types(): { [key: string]: any } {
|
|
3767
|
+
return {
|
|
3768
|
+
policy: UpdateRegistrationPolicyResponseBodyPolicy,
|
|
3769
|
+
requestId: 'string',
|
|
3770
|
+
};
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
constructor(map?: { [key: string]: any }) {
|
|
3774
|
+
super(map);
|
|
3775
|
+
}
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
export class UpdateRegistrationPolicyResponse extends $tea.Model {
|
|
3779
|
+
headers: { [key: string]: string };
|
|
3780
|
+
statusCode: number;
|
|
3781
|
+
body: UpdateRegistrationPolicyResponseBody;
|
|
3782
|
+
static names(): { [key: string]: string } {
|
|
3783
|
+
return {
|
|
3784
|
+
headers: 'headers',
|
|
3785
|
+
statusCode: 'statusCode',
|
|
3786
|
+
body: 'body',
|
|
3787
|
+
};
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
static types(): { [key: string]: any } {
|
|
3791
|
+
return {
|
|
3792
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3793
|
+
statusCode: 'number',
|
|
3794
|
+
body: UpdateRegistrationPolicyResponseBody,
|
|
3795
|
+
};
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
constructor(map?: { [key: string]: any }) {
|
|
3799
|
+
super(map);
|
|
3800
|
+
}
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
export class UpdateUserDevicesSharingStatusRequest extends $tea.Model {
|
|
3804
|
+
deviceTags?: string[];
|
|
3805
|
+
sharingStatus?: boolean;
|
|
3806
|
+
static names(): { [key: string]: string } {
|
|
3807
|
+
return {
|
|
3808
|
+
deviceTags: 'DeviceTags',
|
|
3809
|
+
sharingStatus: 'SharingStatus',
|
|
3810
|
+
};
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
static types(): { [key: string]: any } {
|
|
3814
|
+
return {
|
|
3815
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3816
|
+
sharingStatus: 'boolean',
|
|
3817
|
+
};
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
constructor(map?: { [key: string]: any }) {
|
|
3821
|
+
super(map);
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
export class UpdateUserDevicesSharingStatusResponseBody extends $tea.Model {
|
|
3826
|
+
devices?: UpdateUserDevicesSharingStatusResponseBodyDevices[];
|
|
3827
|
+
requestId?: string;
|
|
3828
|
+
static names(): { [key: string]: string } {
|
|
3829
|
+
return {
|
|
3830
|
+
devices: 'Devices',
|
|
3831
|
+
requestId: 'RequestId',
|
|
3832
|
+
};
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
static types(): { [key: string]: any } {
|
|
3836
|
+
return {
|
|
3837
|
+
devices: { 'type': 'array', 'itemType': UpdateUserDevicesSharingStatusResponseBodyDevices },
|
|
3838
|
+
requestId: 'string',
|
|
3839
|
+
};
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
constructor(map?: { [key: string]: any }) {
|
|
3843
|
+
super(map);
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
|
|
3847
|
+
export class UpdateUserDevicesSharingStatusResponse extends $tea.Model {
|
|
3848
|
+
headers: { [key: string]: string };
|
|
3849
|
+
statusCode: number;
|
|
3850
|
+
body: UpdateUserDevicesSharingStatusResponseBody;
|
|
3851
|
+
static names(): { [key: string]: string } {
|
|
3852
|
+
return {
|
|
3853
|
+
headers: 'headers',
|
|
3854
|
+
statusCode: 'statusCode',
|
|
3855
|
+
body: 'body',
|
|
3856
|
+
};
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
static types(): { [key: string]: any } {
|
|
3860
|
+
return {
|
|
3861
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3862
|
+
statusCode: 'number',
|
|
3863
|
+
body: UpdateUserDevicesSharingStatusResponseBody,
|
|
3864
|
+
};
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
constructor(map?: { [key: string]: any }) {
|
|
3868
|
+
super(map);
|
|
3869
|
+
}
|
|
3870
|
+
}
|
|
3871
|
+
|
|
3872
|
+
export class UpdateUserDevicesStatusRequest extends $tea.Model {
|
|
3873
|
+
deviceAction?: string;
|
|
3874
|
+
deviceTags?: string[];
|
|
3875
|
+
static names(): { [key: string]: string } {
|
|
3876
|
+
return {
|
|
3877
|
+
deviceAction: 'DeviceAction',
|
|
3878
|
+
deviceTags: 'DeviceTags',
|
|
3879
|
+
};
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
static types(): { [key: string]: any } {
|
|
3883
|
+
return {
|
|
3884
|
+
deviceAction: 'string',
|
|
3885
|
+
deviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
3886
|
+
};
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
constructor(map?: { [key: string]: any }) {
|
|
3890
|
+
super(map);
|
|
3891
|
+
}
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
export class UpdateUserDevicesStatusResponseBody extends $tea.Model {
|
|
3895
|
+
devices?: UpdateUserDevicesStatusResponseBodyDevices[];
|
|
3896
|
+
requestId?: string;
|
|
3897
|
+
static names(): { [key: string]: string } {
|
|
3898
|
+
return {
|
|
3899
|
+
devices: 'Devices',
|
|
3900
|
+
requestId: 'RequestId',
|
|
3901
|
+
};
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
static types(): { [key: string]: any } {
|
|
3905
|
+
return {
|
|
3906
|
+
devices: { 'type': 'array', 'itemType': UpdateUserDevicesStatusResponseBodyDevices },
|
|
3907
|
+
requestId: 'string',
|
|
3908
|
+
};
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
constructor(map?: { [key: string]: any }) {
|
|
3912
|
+
super(map);
|
|
3913
|
+
}
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
export class UpdateUserDevicesStatusResponse extends $tea.Model {
|
|
3917
|
+
headers: { [key: string]: string };
|
|
3918
|
+
statusCode: number;
|
|
3919
|
+
body: UpdateUserDevicesStatusResponseBody;
|
|
3920
|
+
static names(): { [key: string]: string } {
|
|
3921
|
+
return {
|
|
3922
|
+
headers: 'headers',
|
|
3923
|
+
statusCode: 'statusCode',
|
|
3924
|
+
body: 'body',
|
|
3925
|
+
};
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
static types(): { [key: string]: any } {
|
|
3929
|
+
return {
|
|
3930
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3931
|
+
statusCode: 'number',
|
|
3932
|
+
body: UpdateUserDevicesStatusResponseBody,
|
|
3933
|
+
};
|
|
3934
|
+
}
|
|
3935
|
+
|
|
3936
|
+
constructor(map?: { [key: string]: any }) {
|
|
3937
|
+
super(map);
|
|
3938
|
+
}
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
export class UpdateUserGroupRequest extends $tea.Model {
|
|
3942
|
+
attributes?: UpdateUserGroupRequestAttributes[];
|
|
3943
|
+
description?: string;
|
|
3944
|
+
modifyType?: string;
|
|
3945
|
+
userGroupId?: string;
|
|
3946
|
+
static names(): { [key: string]: string } {
|
|
3947
|
+
return {
|
|
3948
|
+
attributes: 'Attributes',
|
|
3949
|
+
description: 'Description',
|
|
3950
|
+
modifyType: 'ModifyType',
|
|
3951
|
+
userGroupId: 'UserGroupId',
|
|
3952
|
+
};
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
static types(): { [key: string]: any } {
|
|
3956
|
+
return {
|
|
3957
|
+
attributes: { 'type': 'array', 'itemType': UpdateUserGroupRequestAttributes },
|
|
3958
|
+
description: 'string',
|
|
3959
|
+
modifyType: 'string',
|
|
3960
|
+
userGroupId: 'string',
|
|
3961
|
+
};
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
constructor(map?: { [key: string]: any }) {
|
|
3965
|
+
super(map);
|
|
3966
|
+
}
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
export class UpdateUserGroupResponseBody extends $tea.Model {
|
|
3970
|
+
requestId?: string;
|
|
3971
|
+
static names(): { [key: string]: string } {
|
|
3972
|
+
return {
|
|
3973
|
+
requestId: 'RequestId',
|
|
3974
|
+
};
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
static types(): { [key: string]: any } {
|
|
3978
|
+
return {
|
|
3979
|
+
requestId: 'string',
|
|
3980
|
+
};
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
constructor(map?: { [key: string]: any }) {
|
|
3984
|
+
super(map);
|
|
3985
|
+
}
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
export class UpdateUserGroupResponse extends $tea.Model {
|
|
3989
|
+
headers: { [key: string]: string };
|
|
3990
|
+
statusCode: number;
|
|
3991
|
+
body: UpdateUserGroupResponseBody;
|
|
3992
|
+
static names(): { [key: string]: string } {
|
|
3993
|
+
return {
|
|
3994
|
+
headers: 'headers',
|
|
3995
|
+
statusCode: 'statusCode',
|
|
3996
|
+
body: 'body',
|
|
3997
|
+
};
|
|
3998
|
+
}
|
|
3999
|
+
|
|
4000
|
+
static types(): { [key: string]: any } {
|
|
4001
|
+
return {
|
|
4002
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4003
|
+
statusCode: 'number',
|
|
4004
|
+
body: UpdateUserGroupResponseBody,
|
|
4005
|
+
};
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
constructor(map?: { [key: string]: any }) {
|
|
4009
|
+
super(map);
|
|
4010
|
+
}
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
export class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
4014
|
+
begin?: number;
|
|
4015
|
+
end?: number;
|
|
4016
|
+
static names(): { [key: string]: string } {
|
|
4017
|
+
return {
|
|
4018
|
+
begin: 'Begin',
|
|
4019
|
+
end: 'End',
|
|
4020
|
+
};
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
static types(): { [key: string]: any } {
|
|
4024
|
+
return {
|
|
4025
|
+
begin: 'number',
|
|
4026
|
+
end: 'number',
|
|
4027
|
+
};
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
constructor(map?: { [key: string]: any }) {
|
|
4031
|
+
super(map);
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
export class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.Model {
|
|
4036
|
+
idpId?: number;
|
|
4037
|
+
relation?: string;
|
|
4038
|
+
userGroupType?: string;
|
|
4039
|
+
value?: string;
|
|
4040
|
+
static names(): { [key: string]: string } {
|
|
4041
|
+
return {
|
|
4042
|
+
idpId: 'IdpId',
|
|
4043
|
+
relation: 'Relation',
|
|
4044
|
+
userGroupType: 'UserGroupType',
|
|
2801
4045
|
value: 'Value',
|
|
2802
4046
|
};
|
|
2803
4047
|
}
|
|
@@ -2816,6 +4060,152 @@ export class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.M
|
|
|
2816
4060
|
}
|
|
2817
4061
|
}
|
|
2818
4062
|
|
|
4063
|
+
export class CreateRegistrationPolicyRequestCompanyLimitCount extends $tea.Model {
|
|
4064
|
+
all?: number;
|
|
4065
|
+
mobile?: number;
|
|
4066
|
+
PC?: number;
|
|
4067
|
+
static names(): { [key: string]: string } {
|
|
4068
|
+
return {
|
|
4069
|
+
all: 'All',
|
|
4070
|
+
mobile: 'Mobile',
|
|
4071
|
+
PC: 'PC',
|
|
4072
|
+
};
|
|
4073
|
+
}
|
|
4074
|
+
|
|
4075
|
+
static types(): { [key: string]: any } {
|
|
4076
|
+
return {
|
|
4077
|
+
all: 'number',
|
|
4078
|
+
mobile: 'number',
|
|
4079
|
+
PC: 'number',
|
|
4080
|
+
};
|
|
4081
|
+
}
|
|
4082
|
+
|
|
4083
|
+
constructor(map?: { [key: string]: any }) {
|
|
4084
|
+
super(map);
|
|
4085
|
+
}
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
export class CreateRegistrationPolicyRequestPersonalLimitCount extends $tea.Model {
|
|
4089
|
+
all?: number;
|
|
4090
|
+
mobile?: number;
|
|
4091
|
+
PC?: number;
|
|
4092
|
+
static names(): { [key: string]: string } {
|
|
4093
|
+
return {
|
|
4094
|
+
all: 'All',
|
|
4095
|
+
mobile: 'Mobile',
|
|
4096
|
+
PC: 'PC',
|
|
4097
|
+
};
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
static types(): { [key: string]: any } {
|
|
4101
|
+
return {
|
|
4102
|
+
all: 'number',
|
|
4103
|
+
mobile: 'number',
|
|
4104
|
+
PC: 'number',
|
|
4105
|
+
};
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
constructor(map?: { [key: string]: any }) {
|
|
4109
|
+
super(map);
|
|
4110
|
+
}
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
export class CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount extends $tea.Model {
|
|
4114
|
+
all?: number;
|
|
4115
|
+
mobile?: number;
|
|
4116
|
+
PC?: number;
|
|
4117
|
+
static names(): { [key: string]: string } {
|
|
4118
|
+
return {
|
|
4119
|
+
all: 'All',
|
|
4120
|
+
mobile: 'Mobile',
|
|
4121
|
+
PC: 'PC',
|
|
4122
|
+
};
|
|
4123
|
+
}
|
|
4124
|
+
|
|
4125
|
+
static types(): { [key: string]: any } {
|
|
4126
|
+
return {
|
|
4127
|
+
all: 'number',
|
|
4128
|
+
mobile: 'number',
|
|
4129
|
+
PC: 'number',
|
|
4130
|
+
};
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
constructor(map?: { [key: string]: any }) {
|
|
4134
|
+
super(map);
|
|
4135
|
+
}
|
|
4136
|
+
}
|
|
4137
|
+
|
|
4138
|
+
export class CreateRegistrationPolicyResponseBodyPolicyLimitDetail extends $tea.Model {
|
|
4139
|
+
deviceBelong?: string;
|
|
4140
|
+
limitCount?: CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount;
|
|
4141
|
+
limitType?: string;
|
|
4142
|
+
static names(): { [key: string]: string } {
|
|
4143
|
+
return {
|
|
4144
|
+
deviceBelong: 'DeviceBelong',
|
|
4145
|
+
limitCount: 'LimitCount',
|
|
4146
|
+
limitType: 'LimitType',
|
|
4147
|
+
};
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
static types(): { [key: string]: any } {
|
|
4151
|
+
return {
|
|
4152
|
+
deviceBelong: 'string',
|
|
4153
|
+
limitCount: CreateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount,
|
|
4154
|
+
limitType: 'string',
|
|
4155
|
+
};
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
constructor(map?: { [key: string]: any }) {
|
|
4159
|
+
super(map);
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
export class CreateRegistrationPolicyResponseBodyPolicy extends $tea.Model {
|
|
4164
|
+
createTime?: string;
|
|
4165
|
+
description?: string;
|
|
4166
|
+
limitDetail?: CreateRegistrationPolicyResponseBodyPolicyLimitDetail[];
|
|
4167
|
+
matchMode?: string;
|
|
4168
|
+
name?: string;
|
|
4169
|
+
policyId?: string;
|
|
4170
|
+
priority?: string;
|
|
4171
|
+
status?: string;
|
|
4172
|
+
userGroupIds?: string[];
|
|
4173
|
+
whitelist?: string[];
|
|
4174
|
+
static names(): { [key: string]: string } {
|
|
4175
|
+
return {
|
|
4176
|
+
createTime: 'CreateTime',
|
|
4177
|
+
description: 'Description',
|
|
4178
|
+
limitDetail: 'LimitDetail',
|
|
4179
|
+
matchMode: 'MatchMode',
|
|
4180
|
+
name: 'Name',
|
|
4181
|
+
policyId: 'PolicyId',
|
|
4182
|
+
priority: 'Priority',
|
|
4183
|
+
status: 'Status',
|
|
4184
|
+
userGroupIds: 'UserGroupIds',
|
|
4185
|
+
whitelist: 'Whitelist',
|
|
4186
|
+
};
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
static types(): { [key: string]: any } {
|
|
4190
|
+
return {
|
|
4191
|
+
createTime: 'string',
|
|
4192
|
+
description: 'string',
|
|
4193
|
+
limitDetail: { 'type': 'array', 'itemType': CreateRegistrationPolicyResponseBodyPolicyLimitDetail },
|
|
4194
|
+
matchMode: 'string',
|
|
4195
|
+
name: 'string',
|
|
4196
|
+
policyId: 'string',
|
|
4197
|
+
priority: 'string',
|
|
4198
|
+
status: 'string',
|
|
4199
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
4200
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
4201
|
+
};
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
constructor(map?: { [key: string]: any }) {
|
|
4205
|
+
super(map);
|
|
4206
|
+
}
|
|
4207
|
+
}
|
|
4208
|
+
|
|
2819
4209
|
export class CreateUserGroupRequestAttributes extends $tea.Model {
|
|
2820
4210
|
idpId?: number;
|
|
2821
4211
|
relation?: string;
|
|
@@ -2967,26 +4357,153 @@ export class GetPrivateAccessApplicationResponseBodyApplication extends $tea.Mod
|
|
|
2967
4357
|
}
|
|
2968
4358
|
}
|
|
2969
4359
|
|
|
2970
|
-
export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extends $tea.Model {
|
|
2971
|
-
idpId?: number;
|
|
2972
|
-
relation?: string;
|
|
2973
|
-
userGroupType?: string;
|
|
2974
|
-
value?: string;
|
|
4360
|
+
export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extends $tea.Model {
|
|
4361
|
+
idpId?: number;
|
|
4362
|
+
relation?: string;
|
|
4363
|
+
userGroupType?: string;
|
|
4364
|
+
value?: string;
|
|
4365
|
+
static names(): { [key: string]: string } {
|
|
4366
|
+
return {
|
|
4367
|
+
idpId: 'IdpId',
|
|
4368
|
+
relation: 'Relation',
|
|
4369
|
+
userGroupType: 'UserGroupType',
|
|
4370
|
+
value: 'Value',
|
|
4371
|
+
};
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
static types(): { [key: string]: any } {
|
|
4375
|
+
return {
|
|
4376
|
+
idpId: 'number',
|
|
4377
|
+
relation: 'string',
|
|
4378
|
+
userGroupType: 'string',
|
|
4379
|
+
value: 'string',
|
|
4380
|
+
};
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4383
|
+
constructor(map?: { [key: string]: any }) {
|
|
4384
|
+
super(map);
|
|
4385
|
+
}
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
export class GetPrivateAccessPolicyResponseBodyPolicy extends $tea.Model {
|
|
4389
|
+
applicationIds?: string[];
|
|
4390
|
+
applicationType?: string;
|
|
4391
|
+
createTime?: string;
|
|
4392
|
+
customUserAttributes?: GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes[];
|
|
4393
|
+
description?: string;
|
|
4394
|
+
name?: string;
|
|
4395
|
+
policyAction?: string;
|
|
4396
|
+
policyId?: string;
|
|
4397
|
+
priority?: number;
|
|
4398
|
+
status?: string;
|
|
4399
|
+
tagIds?: string[];
|
|
4400
|
+
userGroupIds?: string[];
|
|
4401
|
+
userGroupMode?: string;
|
|
4402
|
+
static names(): { [key: string]: string } {
|
|
4403
|
+
return {
|
|
4404
|
+
applicationIds: 'ApplicationIds',
|
|
4405
|
+
applicationType: 'ApplicationType',
|
|
4406
|
+
createTime: 'CreateTime',
|
|
4407
|
+
customUserAttributes: 'CustomUserAttributes',
|
|
4408
|
+
description: 'Description',
|
|
4409
|
+
name: 'Name',
|
|
4410
|
+
policyAction: 'PolicyAction',
|
|
4411
|
+
policyId: 'PolicyId',
|
|
4412
|
+
priority: 'Priority',
|
|
4413
|
+
status: 'Status',
|
|
4414
|
+
tagIds: 'TagIds',
|
|
4415
|
+
userGroupIds: 'UserGroupIds',
|
|
4416
|
+
userGroupMode: 'UserGroupMode',
|
|
4417
|
+
};
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
static types(): { [key: string]: any } {
|
|
4421
|
+
return {
|
|
4422
|
+
applicationIds: { 'type': 'array', 'itemType': 'string' },
|
|
4423
|
+
applicationType: 'string',
|
|
4424
|
+
createTime: 'string',
|
|
4425
|
+
customUserAttributes: { 'type': 'array', 'itemType': GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes },
|
|
4426
|
+
description: 'string',
|
|
4427
|
+
name: 'string',
|
|
4428
|
+
policyAction: 'string',
|
|
4429
|
+
policyId: 'string',
|
|
4430
|
+
priority: 'number',
|
|
4431
|
+
status: 'string',
|
|
4432
|
+
tagIds: { 'type': 'array', 'itemType': 'string' },
|
|
4433
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
4434
|
+
userGroupMode: 'string',
|
|
4435
|
+
};
|
|
4436
|
+
}
|
|
4437
|
+
|
|
4438
|
+
constructor(map?: { [key: string]: any }) {
|
|
4439
|
+
super(map);
|
|
4440
|
+
}
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
export class GetRegistrationPolicyResponseBodyLimitDetailLimitCount extends $tea.Model {
|
|
4444
|
+
all?: number;
|
|
4445
|
+
mobile?: number;
|
|
4446
|
+
PC?: number;
|
|
4447
|
+
static names(): { [key: string]: string } {
|
|
4448
|
+
return {
|
|
4449
|
+
all: 'All',
|
|
4450
|
+
mobile: 'Mobile',
|
|
4451
|
+
PC: 'PC',
|
|
4452
|
+
};
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
static types(): { [key: string]: any } {
|
|
4456
|
+
return {
|
|
4457
|
+
all: 'number',
|
|
4458
|
+
mobile: 'number',
|
|
4459
|
+
PC: 'number',
|
|
4460
|
+
};
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
constructor(map?: { [key: string]: any }) {
|
|
4464
|
+
super(map);
|
|
4465
|
+
}
|
|
4466
|
+
}
|
|
4467
|
+
|
|
4468
|
+
export class GetRegistrationPolicyResponseBodyLimitDetail extends $tea.Model {
|
|
4469
|
+
deviceBelong?: string;
|
|
4470
|
+
limitCount?: GetRegistrationPolicyResponseBodyLimitDetailLimitCount;
|
|
4471
|
+
limitType?: string;
|
|
4472
|
+
static names(): { [key: string]: string } {
|
|
4473
|
+
return {
|
|
4474
|
+
deviceBelong: 'DeviceBelong',
|
|
4475
|
+
limitCount: 'LimitCount',
|
|
4476
|
+
limitType: 'LimitType',
|
|
4477
|
+
};
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4480
|
+
static types(): { [key: string]: any } {
|
|
4481
|
+
return {
|
|
4482
|
+
deviceBelong: 'string',
|
|
4483
|
+
limitCount: GetRegistrationPolicyResponseBodyLimitDetailLimitCount,
|
|
4484
|
+
limitType: 'string',
|
|
4485
|
+
};
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4488
|
+
constructor(map?: { [key: string]: any }) {
|
|
4489
|
+
super(map);
|
|
4490
|
+
}
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
export class GetUserDeviceResponseBodyDeviceHistoryUsers extends $tea.Model {
|
|
4494
|
+
saseUserId?: string;
|
|
4495
|
+
username?: string;
|
|
2975
4496
|
static names(): { [key: string]: string } {
|
|
2976
4497
|
return {
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
userGroupType: 'UserGroupType',
|
|
2980
|
-
value: 'Value',
|
|
4498
|
+
saseUserId: 'SaseUserId',
|
|
4499
|
+
username: 'Username',
|
|
2981
4500
|
};
|
|
2982
4501
|
}
|
|
2983
4502
|
|
|
2984
4503
|
static types(): { [key: string]: any } {
|
|
2985
4504
|
return {
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
userGroupType: 'string',
|
|
2989
|
-
value: 'string',
|
|
4505
|
+
saseUserId: 'string',
|
|
4506
|
+
username: 'string',
|
|
2990
4507
|
};
|
|
2991
4508
|
}
|
|
2992
4509
|
|
|
@@ -2995,53 +4512,92 @@ export class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extend
|
|
|
2995
4512
|
}
|
|
2996
4513
|
}
|
|
2997
4514
|
|
|
2998
|
-
export class
|
|
2999
|
-
|
|
3000
|
-
|
|
4515
|
+
export class GetUserDeviceResponseBodyDevice extends $tea.Model {
|
|
4516
|
+
appStatus?: string;
|
|
4517
|
+
appVersion?: string;
|
|
4518
|
+
CPU?: string;
|
|
3001
4519
|
createTime?: string;
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
4520
|
+
department?: string;
|
|
4521
|
+
deviceBelong?: string;
|
|
4522
|
+
deviceModel?: string;
|
|
4523
|
+
deviceStatus?: string;
|
|
4524
|
+
deviceTag?: string;
|
|
4525
|
+
deviceType?: string;
|
|
4526
|
+
deviceVersion?: string;
|
|
4527
|
+
disk?: string;
|
|
4528
|
+
dlpStatus?: string;
|
|
4529
|
+
historyUsers?: GetUserDeviceResponseBodyDeviceHistoryUsers[];
|
|
4530
|
+
hostname?: string;
|
|
4531
|
+
iaStatus?: string;
|
|
4532
|
+
innerIP?: string;
|
|
4533
|
+
mac?: string;
|
|
4534
|
+
memory?: string;
|
|
4535
|
+
nacStatus?: string;
|
|
4536
|
+
paStatus?: string;
|
|
4537
|
+
saseUserId?: string;
|
|
4538
|
+
sharingStatus?: boolean;
|
|
4539
|
+
srcIP?: string;
|
|
4540
|
+
updateTime?: string;
|
|
4541
|
+
username?: string;
|
|
4542
|
+
static names(): { [key: string]: string } {
|
|
4543
|
+
return {
|
|
4544
|
+
appStatus: 'AppStatus',
|
|
4545
|
+
appVersion: 'AppVersion',
|
|
4546
|
+
CPU: 'CPU',
|
|
3016
4547
|
createTime: 'CreateTime',
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
4548
|
+
department: 'Department',
|
|
4549
|
+
deviceBelong: 'DeviceBelong',
|
|
4550
|
+
deviceModel: 'DeviceModel',
|
|
4551
|
+
deviceStatus: 'DeviceStatus',
|
|
4552
|
+
deviceTag: 'DeviceTag',
|
|
4553
|
+
deviceType: 'DeviceType',
|
|
4554
|
+
deviceVersion: 'DeviceVersion',
|
|
4555
|
+
disk: 'Disk',
|
|
4556
|
+
dlpStatus: 'DlpStatus',
|
|
4557
|
+
historyUsers: 'HistoryUsers',
|
|
4558
|
+
hostname: 'Hostname',
|
|
4559
|
+
iaStatus: 'IaStatus',
|
|
4560
|
+
innerIP: 'InnerIP',
|
|
4561
|
+
mac: 'Mac',
|
|
4562
|
+
memory: 'Memory',
|
|
4563
|
+
nacStatus: 'NacStatus',
|
|
4564
|
+
paStatus: 'PaStatus',
|
|
4565
|
+
saseUserId: 'SaseUserId',
|
|
4566
|
+
sharingStatus: 'SharingStatus',
|
|
4567
|
+
srcIP: 'SrcIP',
|
|
4568
|
+
updateTime: 'UpdateTime',
|
|
4569
|
+
username: 'Username',
|
|
3027
4570
|
};
|
|
3028
4571
|
}
|
|
3029
4572
|
|
|
3030
4573
|
static types(): { [key: string]: any } {
|
|
3031
4574
|
return {
|
|
3032
|
-
|
|
3033
|
-
|
|
4575
|
+
appStatus: 'string',
|
|
4576
|
+
appVersion: 'string',
|
|
4577
|
+
CPU: 'string',
|
|
3034
4578
|
createTime: 'string',
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
4579
|
+
department: 'string',
|
|
4580
|
+
deviceBelong: 'string',
|
|
4581
|
+
deviceModel: 'string',
|
|
4582
|
+
deviceStatus: 'string',
|
|
4583
|
+
deviceTag: 'string',
|
|
4584
|
+
deviceType: 'string',
|
|
4585
|
+
deviceVersion: 'string',
|
|
4586
|
+
disk: 'string',
|
|
4587
|
+
dlpStatus: 'string',
|
|
4588
|
+
historyUsers: { 'type': 'array', 'itemType': GetUserDeviceResponseBodyDeviceHistoryUsers },
|
|
4589
|
+
hostname: 'string',
|
|
4590
|
+
iaStatus: 'string',
|
|
4591
|
+
innerIP: 'string',
|
|
4592
|
+
mac: 'string',
|
|
4593
|
+
memory: 'string',
|
|
4594
|
+
nacStatus: 'string',
|
|
4595
|
+
paStatus: 'string',
|
|
4596
|
+
saseUserId: 'string',
|
|
4597
|
+
sharingStatus: 'boolean',
|
|
4598
|
+
srcIP: 'string',
|
|
4599
|
+
updateTime: 'string',
|
|
4600
|
+
username: 'string',
|
|
3045
4601
|
};
|
|
3046
4602
|
}
|
|
3047
4603
|
|
|
@@ -3444,6 +5000,58 @@ export class ListDynamicRoutesResponseBodyDynamicRoutes extends $tea.Model {
|
|
|
3444
5000
|
}
|
|
3445
5001
|
}
|
|
3446
5002
|
|
|
5003
|
+
export class ListExcessiveDeviceRegistrationApplicationsResponseBodyApplications extends $tea.Model {
|
|
5004
|
+
applicationId?: string;
|
|
5005
|
+
createTime?: string;
|
|
5006
|
+
department?: string;
|
|
5007
|
+
description?: string;
|
|
5008
|
+
deviceTag?: string;
|
|
5009
|
+
deviceType?: string;
|
|
5010
|
+
hostname?: string;
|
|
5011
|
+
isUsed?: boolean;
|
|
5012
|
+
mac?: string;
|
|
5013
|
+
saseUserId?: string;
|
|
5014
|
+
status?: string;
|
|
5015
|
+
username?: string;
|
|
5016
|
+
static names(): { [key: string]: string } {
|
|
5017
|
+
return {
|
|
5018
|
+
applicationId: 'ApplicationId',
|
|
5019
|
+
createTime: 'CreateTime',
|
|
5020
|
+
department: 'Department',
|
|
5021
|
+
description: 'Description',
|
|
5022
|
+
deviceTag: 'DeviceTag',
|
|
5023
|
+
deviceType: 'DeviceType',
|
|
5024
|
+
hostname: 'Hostname',
|
|
5025
|
+
isUsed: 'IsUsed',
|
|
5026
|
+
mac: 'Mac',
|
|
5027
|
+
saseUserId: 'SaseUserId',
|
|
5028
|
+
status: 'Status',
|
|
5029
|
+
username: 'Username',
|
|
5030
|
+
};
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
static types(): { [key: string]: any } {
|
|
5034
|
+
return {
|
|
5035
|
+
applicationId: 'string',
|
|
5036
|
+
createTime: 'string',
|
|
5037
|
+
department: 'string',
|
|
5038
|
+
description: 'string',
|
|
5039
|
+
deviceTag: 'string',
|
|
5040
|
+
deviceType: 'string',
|
|
5041
|
+
hostname: 'string',
|
|
5042
|
+
isUsed: 'boolean',
|
|
5043
|
+
mac: 'string',
|
|
5044
|
+
saseUserId: 'string',
|
|
5045
|
+
status: 'string',
|
|
5046
|
+
username: 'string',
|
|
5047
|
+
};
|
|
5048
|
+
}
|
|
5049
|
+
|
|
5050
|
+
constructor(map?: { [key: string]: any }) {
|
|
5051
|
+
super(map);
|
|
5052
|
+
}
|
|
5053
|
+
}
|
|
5054
|
+
|
|
3447
5055
|
export class ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPoliciesCustomUserAttributes extends $tea.Model {
|
|
3448
5056
|
idpId?: number;
|
|
3449
5057
|
relation?: string;
|
|
@@ -4011,6 +5619,245 @@ export class ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutes exten
|
|
|
4011
5619
|
}
|
|
4012
5620
|
}
|
|
4013
5621
|
|
|
5622
|
+
export class ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount extends $tea.Model {
|
|
5623
|
+
all?: number;
|
|
5624
|
+
mobile?: number;
|
|
5625
|
+
PC?: number;
|
|
5626
|
+
static names(): { [key: string]: string } {
|
|
5627
|
+
return {
|
|
5628
|
+
all: 'All',
|
|
5629
|
+
mobile: 'Mobile',
|
|
5630
|
+
PC: 'PC',
|
|
5631
|
+
};
|
|
5632
|
+
}
|
|
5633
|
+
|
|
5634
|
+
static types(): { [key: string]: any } {
|
|
5635
|
+
return {
|
|
5636
|
+
all: 'number',
|
|
5637
|
+
mobile: 'number',
|
|
5638
|
+
PC: 'number',
|
|
5639
|
+
};
|
|
5640
|
+
}
|
|
5641
|
+
|
|
5642
|
+
constructor(map?: { [key: string]: any }) {
|
|
5643
|
+
super(map);
|
|
5644
|
+
}
|
|
5645
|
+
}
|
|
5646
|
+
|
|
5647
|
+
export class ListRegistrationPoliciesResponseBodyPoliciesLimitDetail extends $tea.Model {
|
|
5648
|
+
deviceBelong?: string;
|
|
5649
|
+
limitCount?: ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount;
|
|
5650
|
+
limitType?: string;
|
|
5651
|
+
static names(): { [key: string]: string } {
|
|
5652
|
+
return {
|
|
5653
|
+
deviceBelong: 'DeviceBelong',
|
|
5654
|
+
limitCount: 'LimitCount',
|
|
5655
|
+
limitType: 'LimitType',
|
|
5656
|
+
};
|
|
5657
|
+
}
|
|
5658
|
+
|
|
5659
|
+
static types(): { [key: string]: any } {
|
|
5660
|
+
return {
|
|
5661
|
+
deviceBelong: 'string',
|
|
5662
|
+
limitCount: ListRegistrationPoliciesResponseBodyPoliciesLimitDetailLimitCount,
|
|
5663
|
+
limitType: 'string',
|
|
5664
|
+
};
|
|
5665
|
+
}
|
|
5666
|
+
|
|
5667
|
+
constructor(map?: { [key: string]: any }) {
|
|
5668
|
+
super(map);
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
export class ListRegistrationPoliciesResponseBodyPolicies extends $tea.Model {
|
|
5673
|
+
createTime?: string;
|
|
5674
|
+
description?: string;
|
|
5675
|
+
limitDetail?: ListRegistrationPoliciesResponseBodyPoliciesLimitDetail[];
|
|
5676
|
+
matchMode?: string;
|
|
5677
|
+
name?: string;
|
|
5678
|
+
policyId?: string;
|
|
5679
|
+
priority?: number;
|
|
5680
|
+
status?: string;
|
|
5681
|
+
userGroupIds?: string[];
|
|
5682
|
+
whitelist?: string[];
|
|
5683
|
+
static names(): { [key: string]: string } {
|
|
5684
|
+
return {
|
|
5685
|
+
createTime: 'CreateTime',
|
|
5686
|
+
description: 'Description',
|
|
5687
|
+
limitDetail: 'LimitDetail',
|
|
5688
|
+
matchMode: 'MatchMode',
|
|
5689
|
+
name: 'Name',
|
|
5690
|
+
policyId: 'PolicyId',
|
|
5691
|
+
priority: 'Priority',
|
|
5692
|
+
status: 'Status',
|
|
5693
|
+
userGroupIds: 'UserGroupIds',
|
|
5694
|
+
whitelist: 'Whitelist',
|
|
5695
|
+
};
|
|
5696
|
+
}
|
|
5697
|
+
|
|
5698
|
+
static types(): { [key: string]: any } {
|
|
5699
|
+
return {
|
|
5700
|
+
createTime: 'string',
|
|
5701
|
+
description: 'string',
|
|
5702
|
+
limitDetail: { 'type': 'array', 'itemType': ListRegistrationPoliciesResponseBodyPoliciesLimitDetail },
|
|
5703
|
+
matchMode: 'string',
|
|
5704
|
+
name: 'string',
|
|
5705
|
+
policyId: 'string',
|
|
5706
|
+
priority: 'number',
|
|
5707
|
+
status: 'string',
|
|
5708
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
5709
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
5710
|
+
};
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
constructor(map?: { [key: string]: any }) {
|
|
5714
|
+
super(map);
|
|
5715
|
+
}
|
|
5716
|
+
}
|
|
5717
|
+
|
|
5718
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount extends $tea.Model {
|
|
5719
|
+
all?: string;
|
|
5720
|
+
mobile?: string;
|
|
5721
|
+
PC?: string;
|
|
5722
|
+
static names(): { [key: string]: string } {
|
|
5723
|
+
return {
|
|
5724
|
+
all: 'All',
|
|
5725
|
+
mobile: 'Mobile',
|
|
5726
|
+
PC: 'PC',
|
|
5727
|
+
};
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5730
|
+
static types(): { [key: string]: any } {
|
|
5731
|
+
return {
|
|
5732
|
+
all: 'string',
|
|
5733
|
+
mobile: 'string',
|
|
5734
|
+
PC: 'string',
|
|
5735
|
+
};
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
constructor(map?: { [key: string]: any }) {
|
|
5739
|
+
super(map);
|
|
5740
|
+
}
|
|
5741
|
+
}
|
|
5742
|
+
|
|
5743
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail extends $tea.Model {
|
|
5744
|
+
deviceBelong?: string;
|
|
5745
|
+
limitCount?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount;
|
|
5746
|
+
limitType?: string;
|
|
5747
|
+
static names(): { [key: string]: string } {
|
|
5748
|
+
return {
|
|
5749
|
+
deviceBelong: 'DeviceBelong',
|
|
5750
|
+
limitCount: 'LimitCount',
|
|
5751
|
+
limitType: 'LimitType',
|
|
5752
|
+
};
|
|
5753
|
+
}
|
|
5754
|
+
|
|
5755
|
+
static types(): { [key: string]: any } {
|
|
5756
|
+
return {
|
|
5757
|
+
deviceBelong: 'string',
|
|
5758
|
+
limitCount: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetailLimitCount,
|
|
5759
|
+
limitType: 'string',
|
|
5760
|
+
};
|
|
5761
|
+
}
|
|
5762
|
+
|
|
5763
|
+
constructor(map?: { [key: string]: any }) {
|
|
5764
|
+
super(map);
|
|
5765
|
+
}
|
|
5766
|
+
}
|
|
5767
|
+
|
|
5768
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies extends $tea.Model {
|
|
5769
|
+
createTime?: string;
|
|
5770
|
+
description?: string;
|
|
5771
|
+
limitDetail?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail[];
|
|
5772
|
+
matchMode?: string;
|
|
5773
|
+
name?: string;
|
|
5774
|
+
policyId?: string;
|
|
5775
|
+
priority?: number;
|
|
5776
|
+
status?: string;
|
|
5777
|
+
whitelist?: string[];
|
|
5778
|
+
static names(): { [key: string]: string } {
|
|
5779
|
+
return {
|
|
5780
|
+
createTime: 'CreateTime',
|
|
5781
|
+
description: 'Description',
|
|
5782
|
+
limitDetail: 'LimitDetail',
|
|
5783
|
+
matchMode: 'MatchMode',
|
|
5784
|
+
name: 'Name',
|
|
5785
|
+
policyId: 'PolicyId',
|
|
5786
|
+
priority: 'Priority',
|
|
5787
|
+
status: 'Status',
|
|
5788
|
+
whitelist: 'Whitelist',
|
|
5789
|
+
};
|
|
5790
|
+
}
|
|
5791
|
+
|
|
5792
|
+
static types(): { [key: string]: any } {
|
|
5793
|
+
return {
|
|
5794
|
+
createTime: 'string',
|
|
5795
|
+
description: 'string',
|
|
5796
|
+
limitDetail: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPoliciesLimitDetail },
|
|
5797
|
+
matchMode: 'string',
|
|
5798
|
+
name: 'string',
|
|
5799
|
+
policyId: 'string',
|
|
5800
|
+
priority: 'number',
|
|
5801
|
+
status: 'string',
|
|
5802
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
5803
|
+
};
|
|
5804
|
+
}
|
|
5805
|
+
|
|
5806
|
+
constructor(map?: { [key: string]: any }) {
|
|
5807
|
+
super(map);
|
|
5808
|
+
}
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
export class ListRegistrationPoliciesForUserGroupResponseBodyUserGroups extends $tea.Model {
|
|
5812
|
+
policies?: ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies[];
|
|
5813
|
+
userGroupId?: string;
|
|
5814
|
+
static names(): { [key: string]: string } {
|
|
5815
|
+
return {
|
|
5816
|
+
policies: 'Policies',
|
|
5817
|
+
userGroupId: 'UserGroupId',
|
|
5818
|
+
};
|
|
5819
|
+
}
|
|
5820
|
+
|
|
5821
|
+
static types(): { [key: string]: any } {
|
|
5822
|
+
return {
|
|
5823
|
+
policies: { 'type': 'array', 'itemType': ListRegistrationPoliciesForUserGroupResponseBodyUserGroupsPolicies },
|
|
5824
|
+
userGroupId: 'string',
|
|
5825
|
+
};
|
|
5826
|
+
}
|
|
5827
|
+
|
|
5828
|
+
constructor(map?: { [key: string]: any }) {
|
|
5829
|
+
super(map);
|
|
5830
|
+
}
|
|
5831
|
+
}
|
|
5832
|
+
|
|
5833
|
+
export class ListSoftwareForUserDeviceResponseBodySoftware extends $tea.Model {
|
|
5834
|
+
inc?: string;
|
|
5835
|
+
installTime?: string;
|
|
5836
|
+
name?: string;
|
|
5837
|
+
versions?: string[];
|
|
5838
|
+
static names(): { [key: string]: string } {
|
|
5839
|
+
return {
|
|
5840
|
+
inc: 'Inc',
|
|
5841
|
+
installTime: 'InstallTime',
|
|
5842
|
+
name: 'Name',
|
|
5843
|
+
versions: 'Versions',
|
|
5844
|
+
};
|
|
5845
|
+
}
|
|
5846
|
+
|
|
5847
|
+
static types(): { [key: string]: any } {
|
|
5848
|
+
return {
|
|
5849
|
+
inc: 'string',
|
|
5850
|
+
installTime: 'string',
|
|
5851
|
+
name: 'string',
|
|
5852
|
+
versions: { 'type': 'array', 'itemType': 'string' },
|
|
5853
|
+
};
|
|
5854
|
+
}
|
|
5855
|
+
|
|
5856
|
+
constructor(map?: { [key: string]: any }) {
|
|
5857
|
+
super(map);
|
|
5858
|
+
}
|
|
5859
|
+
}
|
|
5860
|
+
|
|
4014
5861
|
export class ListTagsForPrivateAccessApplicationResponseBodyApplicationsTags extends $tea.Model {
|
|
4015
5862
|
createTime?: string;
|
|
4016
5863
|
description?: string;
|
|
@@ -4117,6 +5964,97 @@ export class ListTagsForPrivateAccessPolicyResponseBodyPolices extends $tea.Mode
|
|
|
4117
5964
|
}
|
|
4118
5965
|
}
|
|
4119
5966
|
|
|
5967
|
+
export class ListUserDevicesResponseBodyDevices extends $tea.Model {
|
|
5968
|
+
appStatus?: string;
|
|
5969
|
+
appVersion?: string;
|
|
5970
|
+
CPU?: string;
|
|
5971
|
+
createTime?: string;
|
|
5972
|
+
department?: string;
|
|
5973
|
+
deviceBelong?: string;
|
|
5974
|
+
deviceModel?: string;
|
|
5975
|
+
deviceStatus?: string;
|
|
5976
|
+
deviceTag?: string;
|
|
5977
|
+
deviceType?: string;
|
|
5978
|
+
deviceVersion?: string;
|
|
5979
|
+
disk?: string;
|
|
5980
|
+
dlpStatus?: string;
|
|
5981
|
+
hostname?: string;
|
|
5982
|
+
iaStatus?: string;
|
|
5983
|
+
innerIP?: string;
|
|
5984
|
+
mac?: string;
|
|
5985
|
+
memory?: string;
|
|
5986
|
+
nacStatus?: string;
|
|
5987
|
+
paStatus?: string;
|
|
5988
|
+
saseUserId?: string;
|
|
5989
|
+
sharingStatus?: boolean;
|
|
5990
|
+
srcIP?: string;
|
|
5991
|
+
updateTime?: string;
|
|
5992
|
+
username?: string;
|
|
5993
|
+
static names(): { [key: string]: string } {
|
|
5994
|
+
return {
|
|
5995
|
+
appStatus: 'AppStatus',
|
|
5996
|
+
appVersion: 'AppVersion',
|
|
5997
|
+
CPU: 'CPU',
|
|
5998
|
+
createTime: 'CreateTime',
|
|
5999
|
+
department: 'Department',
|
|
6000
|
+
deviceBelong: 'DeviceBelong',
|
|
6001
|
+
deviceModel: 'DeviceModel',
|
|
6002
|
+
deviceStatus: 'DeviceStatus',
|
|
6003
|
+
deviceTag: 'DeviceTag',
|
|
6004
|
+
deviceType: 'DeviceType',
|
|
6005
|
+
deviceVersion: 'DeviceVersion',
|
|
6006
|
+
disk: 'Disk',
|
|
6007
|
+
dlpStatus: 'DlpStatus',
|
|
6008
|
+
hostname: 'Hostname',
|
|
6009
|
+
iaStatus: 'IaStatus',
|
|
6010
|
+
innerIP: 'InnerIP',
|
|
6011
|
+
mac: 'Mac',
|
|
6012
|
+
memory: 'Memory',
|
|
6013
|
+
nacStatus: 'NacStatus',
|
|
6014
|
+
paStatus: 'PaStatus',
|
|
6015
|
+
saseUserId: 'SaseUserId',
|
|
6016
|
+
sharingStatus: 'SharingStatus',
|
|
6017
|
+
srcIP: 'SrcIP',
|
|
6018
|
+
updateTime: 'UpdateTime',
|
|
6019
|
+
username: 'Username',
|
|
6020
|
+
};
|
|
6021
|
+
}
|
|
6022
|
+
|
|
6023
|
+
static types(): { [key: string]: any } {
|
|
6024
|
+
return {
|
|
6025
|
+
appStatus: 'string',
|
|
6026
|
+
appVersion: 'string',
|
|
6027
|
+
CPU: 'string',
|
|
6028
|
+
createTime: 'string',
|
|
6029
|
+
department: 'string',
|
|
6030
|
+
deviceBelong: 'string',
|
|
6031
|
+
deviceModel: 'string',
|
|
6032
|
+
deviceStatus: 'string',
|
|
6033
|
+
deviceTag: 'string',
|
|
6034
|
+
deviceType: 'string',
|
|
6035
|
+
deviceVersion: 'string',
|
|
6036
|
+
disk: 'string',
|
|
6037
|
+
dlpStatus: 'string',
|
|
6038
|
+
hostname: 'string',
|
|
6039
|
+
iaStatus: 'string',
|
|
6040
|
+
innerIP: 'string',
|
|
6041
|
+
mac: 'string',
|
|
6042
|
+
memory: 'string',
|
|
6043
|
+
nacStatus: 'string',
|
|
6044
|
+
paStatus: 'string',
|
|
6045
|
+
saseUserId: 'string',
|
|
6046
|
+
sharingStatus: 'boolean',
|
|
6047
|
+
srcIP: 'string',
|
|
6048
|
+
updateTime: 'string',
|
|
6049
|
+
username: 'string',
|
|
6050
|
+
};
|
|
6051
|
+
}
|
|
6052
|
+
|
|
6053
|
+
constructor(map?: { [key: string]: any }) {
|
|
6054
|
+
super(map);
|
|
6055
|
+
}
|
|
6056
|
+
}
|
|
6057
|
+
|
|
4120
6058
|
export class ListUserGroupsResponseBodyUserGroupsAttributes extends $tea.Model {
|
|
4121
6059
|
idpId?: number;
|
|
4122
6060
|
relation?: string;
|
|
@@ -4257,6 +6195,139 @@ export class ListUserGroupsForPrivateAccessPolicyResponseBodyPolices extends $te
|
|
|
4257
6195
|
}
|
|
4258
6196
|
}
|
|
4259
6197
|
|
|
6198
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes extends $tea.Model {
|
|
6199
|
+
idpId?: number;
|
|
6200
|
+
relation?: string;
|
|
6201
|
+
userGroupType?: string;
|
|
6202
|
+
value?: string;
|
|
6203
|
+
static names(): { [key: string]: string } {
|
|
6204
|
+
return {
|
|
6205
|
+
idpId: 'IdpId',
|
|
6206
|
+
relation: 'Relation',
|
|
6207
|
+
userGroupType: 'UserGroupType',
|
|
6208
|
+
value: 'Value',
|
|
6209
|
+
};
|
|
6210
|
+
}
|
|
6211
|
+
|
|
6212
|
+
static types(): { [key: string]: any } {
|
|
6213
|
+
return {
|
|
6214
|
+
idpId: 'number',
|
|
6215
|
+
relation: 'string',
|
|
6216
|
+
userGroupType: 'string',
|
|
6217
|
+
value: 'string',
|
|
6218
|
+
};
|
|
6219
|
+
}
|
|
6220
|
+
|
|
6221
|
+
constructor(map?: { [key: string]: any }) {
|
|
6222
|
+
super(map);
|
|
6223
|
+
}
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups extends $tea.Model {
|
|
6227
|
+
attributes?: ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes[];
|
|
6228
|
+
createTime?: string;
|
|
6229
|
+
description?: string;
|
|
6230
|
+
name?: string;
|
|
6231
|
+
userGroupId?: string;
|
|
6232
|
+
static names(): { [key: string]: string } {
|
|
6233
|
+
return {
|
|
6234
|
+
attributes: 'Attributes',
|
|
6235
|
+
createTime: 'CreateTime',
|
|
6236
|
+
description: 'Description',
|
|
6237
|
+
name: 'Name',
|
|
6238
|
+
userGroupId: 'UserGroupId',
|
|
6239
|
+
};
|
|
6240
|
+
}
|
|
6241
|
+
|
|
6242
|
+
static types(): { [key: string]: any } {
|
|
6243
|
+
return {
|
|
6244
|
+
attributes: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroupsAttributes },
|
|
6245
|
+
createTime: 'string',
|
|
6246
|
+
description: 'string',
|
|
6247
|
+
name: 'string',
|
|
6248
|
+
userGroupId: 'string',
|
|
6249
|
+
};
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
constructor(map?: { [key: string]: any }) {
|
|
6253
|
+
super(map);
|
|
6254
|
+
}
|
|
6255
|
+
}
|
|
6256
|
+
|
|
6257
|
+
export class ListUserGroupsForRegistrationPolicyResponseBodyPolicies extends $tea.Model {
|
|
6258
|
+
policyId?: string;
|
|
6259
|
+
userGroups?: ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups[];
|
|
6260
|
+
static names(): { [key: string]: string } {
|
|
6261
|
+
return {
|
|
6262
|
+
policyId: 'PolicyId',
|
|
6263
|
+
userGroups: 'UserGroups',
|
|
6264
|
+
};
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
static types(): { [key: string]: any } {
|
|
6268
|
+
return {
|
|
6269
|
+
policyId: 'string',
|
|
6270
|
+
userGroups: { 'type': 'array', 'itemType': ListUserGroupsForRegistrationPolicyResponseBodyPoliciesUserGroups },
|
|
6271
|
+
};
|
|
6272
|
+
}
|
|
6273
|
+
|
|
6274
|
+
constructor(map?: { [key: string]: any }) {
|
|
6275
|
+
super(map);
|
|
6276
|
+
}
|
|
6277
|
+
}
|
|
6278
|
+
|
|
6279
|
+
export class UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications extends $tea.Model {
|
|
6280
|
+
applicationId?: string;
|
|
6281
|
+
createTime?: string;
|
|
6282
|
+
department?: string;
|
|
6283
|
+
description?: string;
|
|
6284
|
+
deviceTag?: string;
|
|
6285
|
+
deviceType?: string;
|
|
6286
|
+
hostname?: string;
|
|
6287
|
+
isUsed?: boolean;
|
|
6288
|
+
mac?: string;
|
|
6289
|
+
saseUserId?: string;
|
|
6290
|
+
status?: string;
|
|
6291
|
+
username?: string;
|
|
6292
|
+
static names(): { [key: string]: string } {
|
|
6293
|
+
return {
|
|
6294
|
+
applicationId: 'ApplicationId',
|
|
6295
|
+
createTime: 'CreateTime',
|
|
6296
|
+
department: 'Department',
|
|
6297
|
+
description: 'Description',
|
|
6298
|
+
deviceTag: 'DeviceTag',
|
|
6299
|
+
deviceType: 'DeviceType',
|
|
6300
|
+
hostname: 'Hostname',
|
|
6301
|
+
isUsed: 'IsUsed',
|
|
6302
|
+
mac: 'Mac',
|
|
6303
|
+
saseUserId: 'SaseUserId',
|
|
6304
|
+
status: 'Status',
|
|
6305
|
+
username: 'Username',
|
|
6306
|
+
};
|
|
6307
|
+
}
|
|
6308
|
+
|
|
6309
|
+
static types(): { [key: string]: any } {
|
|
6310
|
+
return {
|
|
6311
|
+
applicationId: 'string',
|
|
6312
|
+
createTime: 'string',
|
|
6313
|
+
department: 'string',
|
|
6314
|
+
description: 'string',
|
|
6315
|
+
deviceTag: 'string',
|
|
6316
|
+
deviceType: 'string',
|
|
6317
|
+
hostname: 'string',
|
|
6318
|
+
isUsed: 'boolean',
|
|
6319
|
+
mac: 'string',
|
|
6320
|
+
saseUserId: 'string',
|
|
6321
|
+
status: 'string',
|
|
6322
|
+
username: 'string',
|
|
6323
|
+
};
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
constructor(map?: { [key: string]: any }) {
|
|
6327
|
+
super(map);
|
|
6328
|
+
}
|
|
6329
|
+
}
|
|
6330
|
+
|
|
4260
6331
|
export class UpdatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
4261
6332
|
begin?: number;
|
|
4262
6333
|
end?: number;
|
|
@@ -4295,10 +6366,338 @@ export class UpdatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.M
|
|
|
4295
6366
|
|
|
4296
6367
|
static types(): { [key: string]: any } {
|
|
4297
6368
|
return {
|
|
4298
|
-
idpId: 'number',
|
|
4299
|
-
relation: 'string',
|
|
4300
|
-
userGroupType: 'string',
|
|
4301
|
-
value: 'string',
|
|
6369
|
+
idpId: 'number',
|
|
6370
|
+
relation: 'string',
|
|
6371
|
+
userGroupType: 'string',
|
|
6372
|
+
value: 'string',
|
|
6373
|
+
};
|
|
6374
|
+
}
|
|
6375
|
+
|
|
6376
|
+
constructor(map?: { [key: string]: any }) {
|
|
6377
|
+
super(map);
|
|
6378
|
+
}
|
|
6379
|
+
}
|
|
6380
|
+
|
|
6381
|
+
export class UpdateRegistrationPolicyRequestCompanyLimitCount extends $tea.Model {
|
|
6382
|
+
all?: number;
|
|
6383
|
+
mobile?: number;
|
|
6384
|
+
PC?: number;
|
|
6385
|
+
static names(): { [key: string]: string } {
|
|
6386
|
+
return {
|
|
6387
|
+
all: 'All',
|
|
6388
|
+
mobile: 'Mobile',
|
|
6389
|
+
PC: 'PC',
|
|
6390
|
+
};
|
|
6391
|
+
}
|
|
6392
|
+
|
|
6393
|
+
static types(): { [key: string]: any } {
|
|
6394
|
+
return {
|
|
6395
|
+
all: 'number',
|
|
6396
|
+
mobile: 'number',
|
|
6397
|
+
PC: 'number',
|
|
6398
|
+
};
|
|
6399
|
+
}
|
|
6400
|
+
|
|
6401
|
+
constructor(map?: { [key: string]: any }) {
|
|
6402
|
+
super(map);
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6405
|
+
|
|
6406
|
+
export class UpdateRegistrationPolicyRequestPersonalLimitCount extends $tea.Model {
|
|
6407
|
+
all?: number;
|
|
6408
|
+
mobile?: number;
|
|
6409
|
+
PC?: number;
|
|
6410
|
+
static names(): { [key: string]: string } {
|
|
6411
|
+
return {
|
|
6412
|
+
all: 'All',
|
|
6413
|
+
mobile: 'Mobile',
|
|
6414
|
+
PC: 'PC',
|
|
6415
|
+
};
|
|
6416
|
+
}
|
|
6417
|
+
|
|
6418
|
+
static types(): { [key: string]: any } {
|
|
6419
|
+
return {
|
|
6420
|
+
all: 'number',
|
|
6421
|
+
mobile: 'number',
|
|
6422
|
+
PC: 'number',
|
|
6423
|
+
};
|
|
6424
|
+
}
|
|
6425
|
+
|
|
6426
|
+
constructor(map?: { [key: string]: any }) {
|
|
6427
|
+
super(map);
|
|
6428
|
+
}
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6431
|
+
export class UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount extends $tea.Model {
|
|
6432
|
+
all?: number;
|
|
6433
|
+
mobile?: number;
|
|
6434
|
+
PC?: number;
|
|
6435
|
+
static names(): { [key: string]: string } {
|
|
6436
|
+
return {
|
|
6437
|
+
all: 'All',
|
|
6438
|
+
mobile: 'Mobile',
|
|
6439
|
+
PC: 'PC',
|
|
6440
|
+
};
|
|
6441
|
+
}
|
|
6442
|
+
|
|
6443
|
+
static types(): { [key: string]: any } {
|
|
6444
|
+
return {
|
|
6445
|
+
all: 'number',
|
|
6446
|
+
mobile: 'number',
|
|
6447
|
+
PC: 'number',
|
|
6448
|
+
};
|
|
6449
|
+
}
|
|
6450
|
+
|
|
6451
|
+
constructor(map?: { [key: string]: any }) {
|
|
6452
|
+
super(map);
|
|
6453
|
+
}
|
|
6454
|
+
}
|
|
6455
|
+
|
|
6456
|
+
export class UpdateRegistrationPolicyResponseBodyPolicyLimitDetail extends $tea.Model {
|
|
6457
|
+
deviceBelong?: string;
|
|
6458
|
+
limitCount?: UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount;
|
|
6459
|
+
limitType?: string;
|
|
6460
|
+
static names(): { [key: string]: string } {
|
|
6461
|
+
return {
|
|
6462
|
+
deviceBelong: 'DeviceBelong',
|
|
6463
|
+
limitCount: 'LimitCount',
|
|
6464
|
+
limitType: 'LimitType',
|
|
6465
|
+
};
|
|
6466
|
+
}
|
|
6467
|
+
|
|
6468
|
+
static types(): { [key: string]: any } {
|
|
6469
|
+
return {
|
|
6470
|
+
deviceBelong: 'string',
|
|
6471
|
+
limitCount: UpdateRegistrationPolicyResponseBodyPolicyLimitDetailLimitCount,
|
|
6472
|
+
limitType: 'string',
|
|
6473
|
+
};
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
constructor(map?: { [key: string]: any }) {
|
|
6477
|
+
super(map);
|
|
6478
|
+
}
|
|
6479
|
+
}
|
|
6480
|
+
|
|
6481
|
+
export class UpdateRegistrationPolicyResponseBodyPolicy extends $tea.Model {
|
|
6482
|
+
createTime?: string;
|
|
6483
|
+
description?: string;
|
|
6484
|
+
limitDetail?: UpdateRegistrationPolicyResponseBodyPolicyLimitDetail[];
|
|
6485
|
+
matchMode?: string;
|
|
6486
|
+
name?: string;
|
|
6487
|
+
policyId?: string;
|
|
6488
|
+
priority?: string;
|
|
6489
|
+
status?: string;
|
|
6490
|
+
userGroupIds?: string[];
|
|
6491
|
+
whitelist?: string[];
|
|
6492
|
+
static names(): { [key: string]: string } {
|
|
6493
|
+
return {
|
|
6494
|
+
createTime: 'CreateTime',
|
|
6495
|
+
description: 'Description',
|
|
6496
|
+
limitDetail: 'LimitDetail',
|
|
6497
|
+
matchMode: 'MatchMode',
|
|
6498
|
+
name: 'Name',
|
|
6499
|
+
policyId: 'PolicyId',
|
|
6500
|
+
priority: 'Priority',
|
|
6501
|
+
status: 'Status',
|
|
6502
|
+
userGroupIds: 'UserGroupIds',
|
|
6503
|
+
whitelist: 'Whitelist',
|
|
6504
|
+
};
|
|
6505
|
+
}
|
|
6506
|
+
|
|
6507
|
+
static types(): { [key: string]: any } {
|
|
6508
|
+
return {
|
|
6509
|
+
createTime: 'string',
|
|
6510
|
+
description: 'string',
|
|
6511
|
+
limitDetail: { 'type': 'array', 'itemType': UpdateRegistrationPolicyResponseBodyPolicyLimitDetail },
|
|
6512
|
+
matchMode: 'string',
|
|
6513
|
+
name: 'string',
|
|
6514
|
+
policyId: 'string',
|
|
6515
|
+
priority: 'string',
|
|
6516
|
+
status: 'string',
|
|
6517
|
+
userGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
6518
|
+
whitelist: { 'type': 'array', 'itemType': 'string' },
|
|
6519
|
+
};
|
|
6520
|
+
}
|
|
6521
|
+
|
|
6522
|
+
constructor(map?: { [key: string]: any }) {
|
|
6523
|
+
super(map);
|
|
6524
|
+
}
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
export class UpdateUserDevicesSharingStatusResponseBodyDevices extends $tea.Model {
|
|
6528
|
+
appStatus?: string;
|
|
6529
|
+
appVersion?: string;
|
|
6530
|
+
CPU?: string;
|
|
6531
|
+
createTime?: string;
|
|
6532
|
+
department?: string;
|
|
6533
|
+
deviceBelong?: string;
|
|
6534
|
+
deviceModel?: string;
|
|
6535
|
+
deviceStatus?: string;
|
|
6536
|
+
deviceTag?: string;
|
|
6537
|
+
deviceType?: string;
|
|
6538
|
+
deviceVersion?: string;
|
|
6539
|
+
disk?: string;
|
|
6540
|
+
dlpStatus?: string;
|
|
6541
|
+
hostname?: string;
|
|
6542
|
+
iaStatus?: string;
|
|
6543
|
+
innerIP?: string;
|
|
6544
|
+
mac?: string;
|
|
6545
|
+
memory?: string;
|
|
6546
|
+
nacStatus?: string;
|
|
6547
|
+
paStatus?: string;
|
|
6548
|
+
saseUserId?: string;
|
|
6549
|
+
sharingStatus?: boolean;
|
|
6550
|
+
srcIP?: string;
|
|
6551
|
+
updateTime?: string;
|
|
6552
|
+
username?: string;
|
|
6553
|
+
static names(): { [key: string]: string } {
|
|
6554
|
+
return {
|
|
6555
|
+
appStatus: 'AppStatus',
|
|
6556
|
+
appVersion: 'AppVersion',
|
|
6557
|
+
CPU: 'CPU',
|
|
6558
|
+
createTime: 'CreateTime',
|
|
6559
|
+
department: 'Department',
|
|
6560
|
+
deviceBelong: 'DeviceBelong',
|
|
6561
|
+
deviceModel: 'DeviceModel',
|
|
6562
|
+
deviceStatus: 'DeviceStatus',
|
|
6563
|
+
deviceTag: 'DeviceTag',
|
|
6564
|
+
deviceType: 'DeviceType',
|
|
6565
|
+
deviceVersion: 'DeviceVersion',
|
|
6566
|
+
disk: 'Disk',
|
|
6567
|
+
dlpStatus: 'DlpStatus',
|
|
6568
|
+
hostname: 'Hostname',
|
|
6569
|
+
iaStatus: 'IaStatus',
|
|
6570
|
+
innerIP: 'InnerIP',
|
|
6571
|
+
mac: 'Mac',
|
|
6572
|
+
memory: 'Memory',
|
|
6573
|
+
nacStatus: 'NacStatus',
|
|
6574
|
+
paStatus: 'PaStatus',
|
|
6575
|
+
saseUserId: 'SaseUserId',
|
|
6576
|
+
sharingStatus: 'SharingStatus',
|
|
6577
|
+
srcIP: 'SrcIP',
|
|
6578
|
+
updateTime: 'UpdateTime',
|
|
6579
|
+
username: 'Username',
|
|
6580
|
+
};
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
static types(): { [key: string]: any } {
|
|
6584
|
+
return {
|
|
6585
|
+
appStatus: 'string',
|
|
6586
|
+
appVersion: 'string',
|
|
6587
|
+
CPU: 'string',
|
|
6588
|
+
createTime: 'string',
|
|
6589
|
+
department: 'string',
|
|
6590
|
+
deviceBelong: 'string',
|
|
6591
|
+
deviceModel: 'string',
|
|
6592
|
+
deviceStatus: 'string',
|
|
6593
|
+
deviceTag: 'string',
|
|
6594
|
+
deviceType: 'string',
|
|
6595
|
+
deviceVersion: 'string',
|
|
6596
|
+
disk: 'string',
|
|
6597
|
+
dlpStatus: 'string',
|
|
6598
|
+
hostname: 'string',
|
|
6599
|
+
iaStatus: 'string',
|
|
6600
|
+
innerIP: 'string',
|
|
6601
|
+
mac: 'string',
|
|
6602
|
+
memory: 'string',
|
|
6603
|
+
nacStatus: 'string',
|
|
6604
|
+
paStatus: 'string',
|
|
6605
|
+
saseUserId: 'string',
|
|
6606
|
+
sharingStatus: 'boolean',
|
|
6607
|
+
srcIP: 'string',
|
|
6608
|
+
updateTime: 'string',
|
|
6609
|
+
username: 'string',
|
|
6610
|
+
};
|
|
6611
|
+
}
|
|
6612
|
+
|
|
6613
|
+
constructor(map?: { [key: string]: any }) {
|
|
6614
|
+
super(map);
|
|
6615
|
+
}
|
|
6616
|
+
}
|
|
6617
|
+
|
|
6618
|
+
export class UpdateUserDevicesStatusResponseBodyDevices extends $tea.Model {
|
|
6619
|
+
appStatus?: string;
|
|
6620
|
+
appVersion?: string;
|
|
6621
|
+
CPU?: string;
|
|
6622
|
+
createTime?: string;
|
|
6623
|
+
department?: string;
|
|
6624
|
+
deviceBelong?: string;
|
|
6625
|
+
deviceModel?: string;
|
|
6626
|
+
deviceStatus?: string;
|
|
6627
|
+
deviceTag?: string;
|
|
6628
|
+
deviceType?: string;
|
|
6629
|
+
deviceVersion?: string;
|
|
6630
|
+
disk?: string;
|
|
6631
|
+
dlpStatus?: string;
|
|
6632
|
+
hostname?: string;
|
|
6633
|
+
iaStatus?: string;
|
|
6634
|
+
innerIP?: string;
|
|
6635
|
+
mac?: string;
|
|
6636
|
+
memory?: string;
|
|
6637
|
+
nacStatus?: string;
|
|
6638
|
+
paStatus?: string;
|
|
6639
|
+
saseUserId?: string;
|
|
6640
|
+
sharingStatus?: boolean;
|
|
6641
|
+
srcIP?: string;
|
|
6642
|
+
updateTime?: string;
|
|
6643
|
+
username?: string;
|
|
6644
|
+
static names(): { [key: string]: string } {
|
|
6645
|
+
return {
|
|
6646
|
+
appStatus: 'AppStatus',
|
|
6647
|
+
appVersion: 'AppVersion',
|
|
6648
|
+
CPU: 'CPU',
|
|
6649
|
+
createTime: 'CreateTime',
|
|
6650
|
+
department: 'Department',
|
|
6651
|
+
deviceBelong: 'DeviceBelong',
|
|
6652
|
+
deviceModel: 'DeviceModel',
|
|
6653
|
+
deviceStatus: 'DeviceStatus',
|
|
6654
|
+
deviceTag: 'DeviceTag',
|
|
6655
|
+
deviceType: 'DeviceType',
|
|
6656
|
+
deviceVersion: 'DeviceVersion',
|
|
6657
|
+
disk: 'Disk',
|
|
6658
|
+
dlpStatus: 'DlpStatus',
|
|
6659
|
+
hostname: 'Hostname',
|
|
6660
|
+
iaStatus: 'IaStatus',
|
|
6661
|
+
innerIP: 'InnerIP',
|
|
6662
|
+
mac: 'Mac',
|
|
6663
|
+
memory: 'Memory',
|
|
6664
|
+
nacStatus: 'NacStatus',
|
|
6665
|
+
paStatus: 'PaStatus',
|
|
6666
|
+
saseUserId: 'SaseUserId',
|
|
6667
|
+
sharingStatus: 'SharingStatus',
|
|
6668
|
+
srcIP: 'SrcIP',
|
|
6669
|
+
updateTime: 'UpdateTime',
|
|
6670
|
+
username: 'Username',
|
|
6671
|
+
};
|
|
6672
|
+
}
|
|
6673
|
+
|
|
6674
|
+
static types(): { [key: string]: any } {
|
|
6675
|
+
return {
|
|
6676
|
+
appStatus: 'string',
|
|
6677
|
+
appVersion: 'string',
|
|
6678
|
+
CPU: 'string',
|
|
6679
|
+
createTime: 'string',
|
|
6680
|
+
department: 'string',
|
|
6681
|
+
deviceBelong: 'string',
|
|
6682
|
+
deviceModel: 'string',
|
|
6683
|
+
deviceStatus: 'string',
|
|
6684
|
+
deviceTag: 'string',
|
|
6685
|
+
deviceType: 'string',
|
|
6686
|
+
deviceVersion: 'string',
|
|
6687
|
+
disk: 'string',
|
|
6688
|
+
dlpStatus: 'string',
|
|
6689
|
+
hostname: 'string',
|
|
6690
|
+
iaStatus: 'string',
|
|
6691
|
+
innerIP: 'string',
|
|
6692
|
+
mac: 'string',
|
|
6693
|
+
memory: 'string',
|
|
6694
|
+
nacStatus: 'string',
|
|
6695
|
+
paStatus: 'string',
|
|
6696
|
+
saseUserId: 'string',
|
|
6697
|
+
sharingStatus: 'boolean',
|
|
6698
|
+
srcIP: 'string',
|
|
6699
|
+
updateTime: 'string',
|
|
6700
|
+
username: 'string',
|
|
4302
6701
|
};
|
|
4303
6702
|
}
|
|
4304
6703
|
|
|
@@ -4632,6 +7031,90 @@ export default class Client extends OpenApi {
|
|
|
4632
7031
|
return await this.createPrivateAccessTagWithOptions(request, runtime);
|
|
4633
7032
|
}
|
|
4634
7033
|
|
|
7034
|
+
async createRegistrationPolicyWithOptions(tmpReq: CreateRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateRegistrationPolicyResponse> {
|
|
7035
|
+
Util.validateModel(tmpReq);
|
|
7036
|
+
let request = new CreateRegistrationPolicyShrinkRequest({ });
|
|
7037
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7038
|
+
if (!Util.isUnset(tmpReq.companyLimitCount)) {
|
|
7039
|
+
request.companyLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.companyLimitCount, "CompanyLimitCount", "json");
|
|
7040
|
+
}
|
|
7041
|
+
|
|
7042
|
+
if (!Util.isUnset(tmpReq.personalLimitCount)) {
|
|
7043
|
+
request.personalLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.personalLimitCount, "PersonalLimitCount", "json");
|
|
7044
|
+
}
|
|
7045
|
+
|
|
7046
|
+
let body : {[key: string ]: any} = { };
|
|
7047
|
+
if (!Util.isUnset(request.companyLimitCountShrink)) {
|
|
7048
|
+
body["CompanyLimitCount"] = request.companyLimitCountShrink;
|
|
7049
|
+
}
|
|
7050
|
+
|
|
7051
|
+
if (!Util.isUnset(request.companyLimitType)) {
|
|
7052
|
+
body["CompanyLimitType"] = request.companyLimitType;
|
|
7053
|
+
}
|
|
7054
|
+
|
|
7055
|
+
if (!Util.isUnset(request.description)) {
|
|
7056
|
+
body["Description"] = request.description;
|
|
7057
|
+
}
|
|
7058
|
+
|
|
7059
|
+
if (!Util.isUnset(request.matchMode)) {
|
|
7060
|
+
body["MatchMode"] = request.matchMode;
|
|
7061
|
+
}
|
|
7062
|
+
|
|
7063
|
+
if (!Util.isUnset(request.name)) {
|
|
7064
|
+
body["Name"] = request.name;
|
|
7065
|
+
}
|
|
7066
|
+
|
|
7067
|
+
if (!Util.isUnset(request.personalLimitCountShrink)) {
|
|
7068
|
+
body["PersonalLimitCount"] = request.personalLimitCountShrink;
|
|
7069
|
+
}
|
|
7070
|
+
|
|
7071
|
+
if (!Util.isUnset(request.personalLimitType)) {
|
|
7072
|
+
body["PersonalLimitType"] = request.personalLimitType;
|
|
7073
|
+
}
|
|
7074
|
+
|
|
7075
|
+
if (!Util.isUnset(request.priority)) {
|
|
7076
|
+
body["Priority"] = request.priority;
|
|
7077
|
+
}
|
|
7078
|
+
|
|
7079
|
+
if (!Util.isUnset(request.status)) {
|
|
7080
|
+
body["Status"] = request.status;
|
|
7081
|
+
}
|
|
7082
|
+
|
|
7083
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
7084
|
+
if (!Util.isUnset(request.userGroupIds)) {
|
|
7085
|
+
bodyFlat["UserGroupIds"] = request.userGroupIds;
|
|
7086
|
+
}
|
|
7087
|
+
|
|
7088
|
+
if (!Util.isUnset(request.whitelist)) {
|
|
7089
|
+
bodyFlat["Whitelist"] = request.whitelist;
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7092
|
+
body = {
|
|
7093
|
+
...body,
|
|
7094
|
+
...OpenApiUtil.query(bodyFlat),
|
|
7095
|
+
};
|
|
7096
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7097
|
+
body: OpenApiUtil.parseToMap(body),
|
|
7098
|
+
});
|
|
7099
|
+
let params = new $OpenApi.Params({
|
|
7100
|
+
action: "CreateRegistrationPolicy",
|
|
7101
|
+
version: "2023-01-20",
|
|
7102
|
+
protocol: "HTTPS",
|
|
7103
|
+
pathname: "/",
|
|
7104
|
+
method: "POST",
|
|
7105
|
+
authType: "AK",
|
|
7106
|
+
style: "RPC",
|
|
7107
|
+
reqBodyType: "formData",
|
|
7108
|
+
bodyType: "json",
|
|
7109
|
+
});
|
|
7110
|
+
return $tea.cast<CreateRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new CreateRegistrationPolicyResponse({}));
|
|
7111
|
+
}
|
|
7112
|
+
|
|
7113
|
+
async createRegistrationPolicy(request: CreateRegistrationPolicyRequest): Promise<CreateRegistrationPolicyResponse> {
|
|
7114
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7115
|
+
return await this.createRegistrationPolicyWithOptions(request, runtime);
|
|
7116
|
+
}
|
|
7117
|
+
|
|
4635
7118
|
async createUserGroupWithOptions(request: CreateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateUserGroupResponse> {
|
|
4636
7119
|
Util.validateModel(request);
|
|
4637
7120
|
let body : {[key: string ]: any} = { };
|
|
@@ -4790,6 +7273,40 @@ export default class Client extends OpenApi {
|
|
|
4790
7273
|
return await this.deletePrivateAccessTagWithOptions(request, runtime);
|
|
4791
7274
|
}
|
|
4792
7275
|
|
|
7276
|
+
async deleteRegistrationPoliciesWithOptions(request: DeleteRegistrationPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRegistrationPoliciesResponse> {
|
|
7277
|
+
Util.validateModel(request);
|
|
7278
|
+
let body : {[key: string ]: any} = { };
|
|
7279
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
7280
|
+
if (!Util.isUnset(request.policyIds)) {
|
|
7281
|
+
bodyFlat["PolicyIds"] = request.policyIds;
|
|
7282
|
+
}
|
|
7283
|
+
|
|
7284
|
+
body = {
|
|
7285
|
+
...body,
|
|
7286
|
+
...OpenApiUtil.query(bodyFlat),
|
|
7287
|
+
};
|
|
7288
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7289
|
+
body: OpenApiUtil.parseToMap(body),
|
|
7290
|
+
});
|
|
7291
|
+
let params = new $OpenApi.Params({
|
|
7292
|
+
action: "DeleteRegistrationPolicies",
|
|
7293
|
+
version: "2023-01-20",
|
|
7294
|
+
protocol: "HTTPS",
|
|
7295
|
+
pathname: "/",
|
|
7296
|
+
method: "POST",
|
|
7297
|
+
authType: "AK",
|
|
7298
|
+
style: "RPC",
|
|
7299
|
+
reqBodyType: "formData",
|
|
7300
|
+
bodyType: "json",
|
|
7301
|
+
});
|
|
7302
|
+
return $tea.cast<DeleteRegistrationPoliciesResponse>(await this.callApi(params, req, runtime), new DeleteRegistrationPoliciesResponse({}));
|
|
7303
|
+
}
|
|
7304
|
+
|
|
7305
|
+
async deleteRegistrationPolicies(request: DeleteRegistrationPoliciesRequest): Promise<DeleteRegistrationPoliciesResponse> {
|
|
7306
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7307
|
+
return await this.deleteRegistrationPoliciesWithOptions(request, runtime);
|
|
7308
|
+
}
|
|
7309
|
+
|
|
4793
7310
|
async deleteUserGroupWithOptions(request: DeleteUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteUserGroupResponse> {
|
|
4794
7311
|
Util.validateModel(request);
|
|
4795
7312
|
let body : {[key: string ]: any} = { };
|
|
@@ -4933,6 +7450,56 @@ export default class Client extends OpenApi {
|
|
|
4933
7450
|
return await this.getPrivateAccessPolicyWithOptions(request, runtime);
|
|
4934
7451
|
}
|
|
4935
7452
|
|
|
7453
|
+
async getRegistrationPolicyWithOptions(request: GetRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetRegistrationPolicyResponse> {
|
|
7454
|
+
Util.validateModel(request);
|
|
7455
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7456
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7457
|
+
query: OpenApiUtil.query(query),
|
|
7458
|
+
});
|
|
7459
|
+
let params = new $OpenApi.Params({
|
|
7460
|
+
action: "GetRegistrationPolicy",
|
|
7461
|
+
version: "2023-01-20",
|
|
7462
|
+
protocol: "HTTPS",
|
|
7463
|
+
pathname: "/",
|
|
7464
|
+
method: "GET",
|
|
7465
|
+
authType: "AK",
|
|
7466
|
+
style: "RPC",
|
|
7467
|
+
reqBodyType: "formData",
|
|
7468
|
+
bodyType: "json",
|
|
7469
|
+
});
|
|
7470
|
+
return $tea.cast<GetRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new GetRegistrationPolicyResponse({}));
|
|
7471
|
+
}
|
|
7472
|
+
|
|
7473
|
+
async getRegistrationPolicy(request: GetRegistrationPolicyRequest): Promise<GetRegistrationPolicyResponse> {
|
|
7474
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7475
|
+
return await this.getRegistrationPolicyWithOptions(request, runtime);
|
|
7476
|
+
}
|
|
7477
|
+
|
|
7478
|
+
async getUserDeviceWithOptions(request: GetUserDeviceRequest, runtime: $Util.RuntimeOptions): Promise<GetUserDeviceResponse> {
|
|
7479
|
+
Util.validateModel(request);
|
|
7480
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7481
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7482
|
+
query: OpenApiUtil.query(query),
|
|
7483
|
+
});
|
|
7484
|
+
let params = new $OpenApi.Params({
|
|
7485
|
+
action: "GetUserDevice",
|
|
7486
|
+
version: "2023-01-20",
|
|
7487
|
+
protocol: "HTTPS",
|
|
7488
|
+
pathname: "/",
|
|
7489
|
+
method: "GET",
|
|
7490
|
+
authType: "AK",
|
|
7491
|
+
style: "RPC",
|
|
7492
|
+
reqBodyType: "formData",
|
|
7493
|
+
bodyType: "json",
|
|
7494
|
+
});
|
|
7495
|
+
return $tea.cast<GetUserDeviceResponse>(await this.callApi(params, req, runtime), new GetUserDeviceResponse({}));
|
|
7496
|
+
}
|
|
7497
|
+
|
|
7498
|
+
async getUserDevice(request: GetUserDeviceRequest): Promise<GetUserDeviceResponse> {
|
|
7499
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7500
|
+
return await this.getUserDeviceWithOptions(request, runtime);
|
|
7501
|
+
}
|
|
7502
|
+
|
|
4936
7503
|
async getUserGroupWithOptions(request: GetUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetUserGroupResponse> {
|
|
4937
7504
|
Util.validateModel(request);
|
|
4938
7505
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
@@ -5079,6 +7646,31 @@ export default class Client extends OpenApi {
|
|
|
5079
7646
|
return await this.listDynamicRoutesWithOptions(request, runtime);
|
|
5080
7647
|
}
|
|
5081
7648
|
|
|
7649
|
+
async listExcessiveDeviceRegistrationApplicationsWithOptions(request: ListExcessiveDeviceRegistrationApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListExcessiveDeviceRegistrationApplicationsResponse> {
|
|
7650
|
+
Util.validateModel(request);
|
|
7651
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7652
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7653
|
+
query: OpenApiUtil.query(query),
|
|
7654
|
+
});
|
|
7655
|
+
let params = new $OpenApi.Params({
|
|
7656
|
+
action: "ListExcessiveDeviceRegistrationApplications",
|
|
7657
|
+
version: "2023-01-20",
|
|
7658
|
+
protocol: "HTTPS",
|
|
7659
|
+
pathname: "/",
|
|
7660
|
+
method: "GET",
|
|
7661
|
+
authType: "AK",
|
|
7662
|
+
style: "RPC",
|
|
7663
|
+
reqBodyType: "formData",
|
|
7664
|
+
bodyType: "json",
|
|
7665
|
+
});
|
|
7666
|
+
return $tea.cast<ListExcessiveDeviceRegistrationApplicationsResponse>(await this.callApi(params, req, runtime), new ListExcessiveDeviceRegistrationApplicationsResponse({}));
|
|
7667
|
+
}
|
|
7668
|
+
|
|
7669
|
+
async listExcessiveDeviceRegistrationApplications(request: ListExcessiveDeviceRegistrationApplicationsRequest): Promise<ListExcessiveDeviceRegistrationApplicationsResponse> {
|
|
7670
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7671
|
+
return await this.listExcessiveDeviceRegistrationApplicationsWithOptions(request, runtime);
|
|
7672
|
+
}
|
|
7673
|
+
|
|
5082
7674
|
async listPolicesForPrivateAccessApplicationWithOptions(request: ListPolicesForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessApplicationResponse> {
|
|
5083
7675
|
Util.validateModel(request);
|
|
5084
7676
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
@@ -5086,7 +7678,107 @@ export default class Client extends OpenApi {
|
|
|
5086
7678
|
query: OpenApiUtil.query(query),
|
|
5087
7679
|
});
|
|
5088
7680
|
let params = new $OpenApi.Params({
|
|
5089
|
-
action: "ListPolicesForPrivateAccessApplication",
|
|
7681
|
+
action: "ListPolicesForPrivateAccessApplication",
|
|
7682
|
+
version: "2023-01-20",
|
|
7683
|
+
protocol: "HTTPS",
|
|
7684
|
+
pathname: "/",
|
|
7685
|
+
method: "GET",
|
|
7686
|
+
authType: "AK",
|
|
7687
|
+
style: "RPC",
|
|
7688
|
+
reqBodyType: "formData",
|
|
7689
|
+
bodyType: "json",
|
|
7690
|
+
});
|
|
7691
|
+
return $tea.cast<ListPolicesForPrivateAccessApplicationResponse>(await this.callApi(params, req, runtime), new ListPolicesForPrivateAccessApplicationResponse({}));
|
|
7692
|
+
}
|
|
7693
|
+
|
|
7694
|
+
async listPolicesForPrivateAccessApplication(request: ListPolicesForPrivateAccessApplicationRequest): Promise<ListPolicesForPrivateAccessApplicationResponse> {
|
|
7695
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7696
|
+
return await this.listPolicesForPrivateAccessApplicationWithOptions(request, runtime);
|
|
7697
|
+
}
|
|
7698
|
+
|
|
7699
|
+
async listPolicesForPrivateAccessTagWithOptions(request: ListPolicesForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessTagResponse> {
|
|
7700
|
+
Util.validateModel(request);
|
|
7701
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7702
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7703
|
+
query: OpenApiUtil.query(query),
|
|
7704
|
+
});
|
|
7705
|
+
let params = new $OpenApi.Params({
|
|
7706
|
+
action: "ListPolicesForPrivateAccessTag",
|
|
7707
|
+
version: "2023-01-20",
|
|
7708
|
+
protocol: "HTTPS",
|
|
7709
|
+
pathname: "/",
|
|
7710
|
+
method: "GET",
|
|
7711
|
+
authType: "AK",
|
|
7712
|
+
style: "RPC",
|
|
7713
|
+
reqBodyType: "formData",
|
|
7714
|
+
bodyType: "json",
|
|
7715
|
+
});
|
|
7716
|
+
return $tea.cast<ListPolicesForPrivateAccessTagResponse>(await this.callApi(params, req, runtime), new ListPolicesForPrivateAccessTagResponse({}));
|
|
7717
|
+
}
|
|
7718
|
+
|
|
7719
|
+
async listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse> {
|
|
7720
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7721
|
+
return await this.listPolicesForPrivateAccessTagWithOptions(request, runtime);
|
|
7722
|
+
}
|
|
7723
|
+
|
|
7724
|
+
async listPolicesForUserGroupWithOptions(request: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse> {
|
|
7725
|
+
Util.validateModel(request);
|
|
7726
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7727
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7728
|
+
query: OpenApiUtil.query(query),
|
|
7729
|
+
});
|
|
7730
|
+
let params = new $OpenApi.Params({
|
|
7731
|
+
action: "ListPolicesForUserGroup",
|
|
7732
|
+
version: "2023-01-20",
|
|
7733
|
+
protocol: "HTTPS",
|
|
7734
|
+
pathname: "/",
|
|
7735
|
+
method: "GET",
|
|
7736
|
+
authType: "AK",
|
|
7737
|
+
style: "RPC",
|
|
7738
|
+
reqBodyType: "formData",
|
|
7739
|
+
bodyType: "json",
|
|
7740
|
+
});
|
|
7741
|
+
return $tea.cast<ListPolicesForUserGroupResponse>(await this.callApi(params, req, runtime), new ListPolicesForUserGroupResponse({}));
|
|
7742
|
+
}
|
|
7743
|
+
|
|
7744
|
+
async listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse> {
|
|
7745
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7746
|
+
return await this.listPolicesForUserGroupWithOptions(request, runtime);
|
|
7747
|
+
}
|
|
7748
|
+
|
|
7749
|
+
async listPrivateAccessApplicationsWithOptions(request: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse> {
|
|
7750
|
+
Util.validateModel(request);
|
|
7751
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7752
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7753
|
+
query: OpenApiUtil.query(query),
|
|
7754
|
+
});
|
|
7755
|
+
let params = new $OpenApi.Params({
|
|
7756
|
+
action: "ListPrivateAccessApplications",
|
|
7757
|
+
version: "2023-01-20",
|
|
7758
|
+
protocol: "HTTPS",
|
|
7759
|
+
pathname: "/",
|
|
7760
|
+
method: "GET",
|
|
7761
|
+
authType: "AK",
|
|
7762
|
+
style: "RPC",
|
|
7763
|
+
reqBodyType: "formData",
|
|
7764
|
+
bodyType: "json",
|
|
7765
|
+
});
|
|
7766
|
+
return $tea.cast<ListPrivateAccessApplicationsResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessApplicationsResponse({}));
|
|
7767
|
+
}
|
|
7768
|
+
|
|
7769
|
+
async listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse> {
|
|
7770
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7771
|
+
return await this.listPrivateAccessApplicationsWithOptions(request, runtime);
|
|
7772
|
+
}
|
|
7773
|
+
|
|
7774
|
+
async listPrivateAccessApplicationsForDynamicRouteWithOptions(request: ListPrivateAccessApplicationsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse> {
|
|
7775
|
+
Util.validateModel(request);
|
|
7776
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
7777
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7778
|
+
query: OpenApiUtil.query(query),
|
|
7779
|
+
});
|
|
7780
|
+
let params = new $OpenApi.Params({
|
|
7781
|
+
action: "ListPrivateAccessApplicationsForDynamicRoute",
|
|
5090
7782
|
version: "2023-01-20",
|
|
5091
7783
|
protocol: "HTTPS",
|
|
5092
7784
|
pathname: "/",
|
|
@@ -5096,22 +7788,22 @@ export default class Client extends OpenApi {
|
|
|
5096
7788
|
reqBodyType: "formData",
|
|
5097
7789
|
bodyType: "json",
|
|
5098
7790
|
});
|
|
5099
|
-
return $tea.cast<
|
|
7791
|
+
return $tea.cast<ListPrivateAccessApplicationsForDynamicRouteResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessApplicationsForDynamicRouteResponse({}));
|
|
5100
7792
|
}
|
|
5101
7793
|
|
|
5102
|
-
async
|
|
7794
|
+
async listPrivateAccessApplicationsForDynamicRoute(request: ListPrivateAccessApplicationsForDynamicRouteRequest): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse> {
|
|
5103
7795
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5104
|
-
return await this.
|
|
7796
|
+
return await this.listPrivateAccessApplicationsForDynamicRouteWithOptions(request, runtime);
|
|
5105
7797
|
}
|
|
5106
7798
|
|
|
5107
|
-
async
|
|
7799
|
+
async listPrivateAccessPolicesWithOptions(request: ListPrivateAccessPolicesRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessPolicesResponse> {
|
|
5108
7800
|
Util.validateModel(request);
|
|
5109
7801
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5110
7802
|
let req = new $OpenApi.OpenApiRequest({
|
|
5111
7803
|
query: OpenApiUtil.query(query),
|
|
5112
7804
|
});
|
|
5113
7805
|
let params = new $OpenApi.Params({
|
|
5114
|
-
action: "
|
|
7806
|
+
action: "ListPrivateAccessPolices",
|
|
5115
7807
|
version: "2023-01-20",
|
|
5116
7808
|
protocol: "HTTPS",
|
|
5117
7809
|
pathname: "/",
|
|
@@ -5121,22 +7813,22 @@ export default class Client extends OpenApi {
|
|
|
5121
7813
|
reqBodyType: "formData",
|
|
5122
7814
|
bodyType: "json",
|
|
5123
7815
|
});
|
|
5124
|
-
return $tea.cast<
|
|
7816
|
+
return $tea.cast<ListPrivateAccessPolicesResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessPolicesResponse({}));
|
|
5125
7817
|
}
|
|
5126
7818
|
|
|
5127
|
-
async
|
|
7819
|
+
async listPrivateAccessPolices(request: ListPrivateAccessPolicesRequest): Promise<ListPrivateAccessPolicesResponse> {
|
|
5128
7820
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5129
|
-
return await this.
|
|
7821
|
+
return await this.listPrivateAccessPolicesWithOptions(request, runtime);
|
|
5130
7822
|
}
|
|
5131
7823
|
|
|
5132
|
-
async
|
|
7824
|
+
async listPrivateAccessTagsWithOptions(request: ListPrivateAccessTagsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsResponse> {
|
|
5133
7825
|
Util.validateModel(request);
|
|
5134
7826
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5135
7827
|
let req = new $OpenApi.OpenApiRequest({
|
|
5136
7828
|
query: OpenApiUtil.query(query),
|
|
5137
7829
|
});
|
|
5138
7830
|
let params = new $OpenApi.Params({
|
|
5139
|
-
action: "
|
|
7831
|
+
action: "ListPrivateAccessTags",
|
|
5140
7832
|
version: "2023-01-20",
|
|
5141
7833
|
protocol: "HTTPS",
|
|
5142
7834
|
pathname: "/",
|
|
@@ -5146,22 +7838,22 @@ export default class Client extends OpenApi {
|
|
|
5146
7838
|
reqBodyType: "formData",
|
|
5147
7839
|
bodyType: "json",
|
|
5148
7840
|
});
|
|
5149
|
-
return $tea.cast<
|
|
7841
|
+
return $tea.cast<ListPrivateAccessTagsResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessTagsResponse({}));
|
|
5150
7842
|
}
|
|
5151
7843
|
|
|
5152
|
-
async
|
|
7844
|
+
async listPrivateAccessTags(request: ListPrivateAccessTagsRequest): Promise<ListPrivateAccessTagsResponse> {
|
|
5153
7845
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5154
|
-
return await this.
|
|
7846
|
+
return await this.listPrivateAccessTagsWithOptions(request, runtime);
|
|
5155
7847
|
}
|
|
5156
7848
|
|
|
5157
|
-
async
|
|
7849
|
+
async listPrivateAccessTagsForDynamicRouteWithOptions(request: ListPrivateAccessTagsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsForDynamicRouteResponse> {
|
|
5158
7850
|
Util.validateModel(request);
|
|
5159
7851
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5160
7852
|
let req = new $OpenApi.OpenApiRequest({
|
|
5161
7853
|
query: OpenApiUtil.query(query),
|
|
5162
7854
|
});
|
|
5163
7855
|
let params = new $OpenApi.Params({
|
|
5164
|
-
action: "
|
|
7856
|
+
action: "ListPrivateAccessTagsForDynamicRoute",
|
|
5165
7857
|
version: "2023-01-20",
|
|
5166
7858
|
protocol: "HTTPS",
|
|
5167
7859
|
pathname: "/",
|
|
@@ -5171,22 +7863,22 @@ export default class Client extends OpenApi {
|
|
|
5171
7863
|
reqBodyType: "formData",
|
|
5172
7864
|
bodyType: "json",
|
|
5173
7865
|
});
|
|
5174
|
-
return $tea.cast<
|
|
7866
|
+
return $tea.cast<ListPrivateAccessTagsForDynamicRouteResponse>(await this.callApi(params, req, runtime), new ListPrivateAccessTagsForDynamicRouteResponse({}));
|
|
5175
7867
|
}
|
|
5176
7868
|
|
|
5177
|
-
async
|
|
7869
|
+
async listPrivateAccessTagsForDynamicRoute(request: ListPrivateAccessTagsForDynamicRouteRequest): Promise<ListPrivateAccessTagsForDynamicRouteResponse> {
|
|
5178
7870
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5179
|
-
return await this.
|
|
7871
|
+
return await this.listPrivateAccessTagsForDynamicRouteWithOptions(request, runtime);
|
|
5180
7872
|
}
|
|
5181
7873
|
|
|
5182
|
-
async
|
|
7874
|
+
async listRegistrationPoliciesWithOptions(request: ListRegistrationPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListRegistrationPoliciesResponse> {
|
|
5183
7875
|
Util.validateModel(request);
|
|
5184
7876
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5185
7877
|
let req = new $OpenApi.OpenApiRequest({
|
|
5186
7878
|
query: OpenApiUtil.query(query),
|
|
5187
7879
|
});
|
|
5188
7880
|
let params = new $OpenApi.Params({
|
|
5189
|
-
action: "
|
|
7881
|
+
action: "ListRegistrationPolicies",
|
|
5190
7882
|
version: "2023-01-20",
|
|
5191
7883
|
protocol: "HTTPS",
|
|
5192
7884
|
pathname: "/",
|
|
@@ -5196,22 +7888,22 @@ export default class Client extends OpenApi {
|
|
|
5196
7888
|
reqBodyType: "formData",
|
|
5197
7889
|
bodyType: "json",
|
|
5198
7890
|
});
|
|
5199
|
-
return $tea.cast<
|
|
7891
|
+
return $tea.cast<ListRegistrationPoliciesResponse>(await this.callApi(params, req, runtime), new ListRegistrationPoliciesResponse({}));
|
|
5200
7892
|
}
|
|
5201
7893
|
|
|
5202
|
-
async
|
|
7894
|
+
async listRegistrationPolicies(request: ListRegistrationPoliciesRequest): Promise<ListRegistrationPoliciesResponse> {
|
|
5203
7895
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5204
|
-
return await this.
|
|
7896
|
+
return await this.listRegistrationPoliciesWithOptions(request, runtime);
|
|
5205
7897
|
}
|
|
5206
7898
|
|
|
5207
|
-
async
|
|
7899
|
+
async listRegistrationPoliciesForUserGroupWithOptions(request: ListRegistrationPoliciesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListRegistrationPoliciesForUserGroupResponse> {
|
|
5208
7900
|
Util.validateModel(request);
|
|
5209
7901
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5210
7902
|
let req = new $OpenApi.OpenApiRequest({
|
|
5211
7903
|
query: OpenApiUtil.query(query),
|
|
5212
7904
|
});
|
|
5213
7905
|
let params = new $OpenApi.Params({
|
|
5214
|
-
action: "
|
|
7906
|
+
action: "ListRegistrationPoliciesForUserGroup",
|
|
5215
7907
|
version: "2023-01-20",
|
|
5216
7908
|
protocol: "HTTPS",
|
|
5217
7909
|
pathname: "/",
|
|
@@ -5221,22 +7913,22 @@ export default class Client extends OpenApi {
|
|
|
5221
7913
|
reqBodyType: "formData",
|
|
5222
7914
|
bodyType: "json",
|
|
5223
7915
|
});
|
|
5224
|
-
return $tea.cast<
|
|
7916
|
+
return $tea.cast<ListRegistrationPoliciesForUserGroupResponse>(await this.callApi(params, req, runtime), new ListRegistrationPoliciesForUserGroupResponse({}));
|
|
5225
7917
|
}
|
|
5226
7918
|
|
|
5227
|
-
async
|
|
7919
|
+
async listRegistrationPoliciesForUserGroup(request: ListRegistrationPoliciesForUserGroupRequest): Promise<ListRegistrationPoliciesForUserGroupResponse> {
|
|
5228
7920
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5229
|
-
return await this.
|
|
7921
|
+
return await this.listRegistrationPoliciesForUserGroupWithOptions(request, runtime);
|
|
5230
7922
|
}
|
|
5231
7923
|
|
|
5232
|
-
async
|
|
7924
|
+
async listSoftwareForUserDeviceWithOptions(request: ListSoftwareForUserDeviceRequest, runtime: $Util.RuntimeOptions): Promise<ListSoftwareForUserDeviceResponse> {
|
|
5233
7925
|
Util.validateModel(request);
|
|
5234
7926
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5235
7927
|
let req = new $OpenApi.OpenApiRequest({
|
|
5236
7928
|
query: OpenApiUtil.query(query),
|
|
5237
7929
|
});
|
|
5238
7930
|
let params = new $OpenApi.Params({
|
|
5239
|
-
action: "
|
|
7931
|
+
action: "ListSoftwareForUserDevice",
|
|
5240
7932
|
version: "2023-01-20",
|
|
5241
7933
|
protocol: "HTTPS",
|
|
5242
7934
|
pathname: "/",
|
|
@@ -5246,22 +7938,22 @@ export default class Client extends OpenApi {
|
|
|
5246
7938
|
reqBodyType: "formData",
|
|
5247
7939
|
bodyType: "json",
|
|
5248
7940
|
});
|
|
5249
|
-
return $tea.cast<
|
|
7941
|
+
return $tea.cast<ListSoftwareForUserDeviceResponse>(await this.callApi(params, req, runtime), new ListSoftwareForUserDeviceResponse({}));
|
|
5250
7942
|
}
|
|
5251
7943
|
|
|
5252
|
-
async
|
|
7944
|
+
async listSoftwareForUserDevice(request: ListSoftwareForUserDeviceRequest): Promise<ListSoftwareForUserDeviceResponse> {
|
|
5253
7945
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5254
|
-
return await this.
|
|
7946
|
+
return await this.listSoftwareForUserDeviceWithOptions(request, runtime);
|
|
5255
7947
|
}
|
|
5256
7948
|
|
|
5257
|
-
async
|
|
7949
|
+
async listTagsForPrivateAccessApplicationWithOptions(request: ListTagsForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessApplicationResponse> {
|
|
5258
7950
|
Util.validateModel(request);
|
|
5259
7951
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5260
7952
|
let req = new $OpenApi.OpenApiRequest({
|
|
5261
7953
|
query: OpenApiUtil.query(query),
|
|
5262
7954
|
});
|
|
5263
7955
|
let params = new $OpenApi.Params({
|
|
5264
|
-
action: "
|
|
7956
|
+
action: "ListTagsForPrivateAccessApplication",
|
|
5265
7957
|
version: "2023-01-20",
|
|
5266
7958
|
protocol: "HTTPS",
|
|
5267
7959
|
pathname: "/",
|
|
@@ -5271,22 +7963,22 @@ export default class Client extends OpenApi {
|
|
|
5271
7963
|
reqBodyType: "formData",
|
|
5272
7964
|
bodyType: "json",
|
|
5273
7965
|
});
|
|
5274
|
-
return $tea.cast<
|
|
7966
|
+
return $tea.cast<ListTagsForPrivateAccessApplicationResponse>(await this.callApi(params, req, runtime), new ListTagsForPrivateAccessApplicationResponse({}));
|
|
5275
7967
|
}
|
|
5276
7968
|
|
|
5277
|
-
async
|
|
7969
|
+
async listTagsForPrivateAccessApplication(request: ListTagsForPrivateAccessApplicationRequest): Promise<ListTagsForPrivateAccessApplicationResponse> {
|
|
5278
7970
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5279
|
-
return await this.
|
|
7971
|
+
return await this.listTagsForPrivateAccessApplicationWithOptions(request, runtime);
|
|
5280
7972
|
}
|
|
5281
7973
|
|
|
5282
|
-
async
|
|
7974
|
+
async listTagsForPrivateAccessPolicyWithOptions(request: ListTagsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessPolicyResponse> {
|
|
5283
7975
|
Util.validateModel(request);
|
|
5284
7976
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5285
7977
|
let req = new $OpenApi.OpenApiRequest({
|
|
5286
7978
|
query: OpenApiUtil.query(query),
|
|
5287
7979
|
});
|
|
5288
7980
|
let params = new $OpenApi.Params({
|
|
5289
|
-
action: "
|
|
7981
|
+
action: "ListTagsForPrivateAccessPolicy",
|
|
5290
7982
|
version: "2023-01-20",
|
|
5291
7983
|
protocol: "HTTPS",
|
|
5292
7984
|
pathname: "/",
|
|
@@ -5296,22 +7988,22 @@ export default class Client extends OpenApi {
|
|
|
5296
7988
|
reqBodyType: "formData",
|
|
5297
7989
|
bodyType: "json",
|
|
5298
7990
|
});
|
|
5299
|
-
return $tea.cast<
|
|
7991
|
+
return $tea.cast<ListTagsForPrivateAccessPolicyResponse>(await this.callApi(params, req, runtime), new ListTagsForPrivateAccessPolicyResponse({}));
|
|
5300
7992
|
}
|
|
5301
7993
|
|
|
5302
|
-
async
|
|
7994
|
+
async listTagsForPrivateAccessPolicy(request: ListTagsForPrivateAccessPolicyRequest): Promise<ListTagsForPrivateAccessPolicyResponse> {
|
|
5303
7995
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5304
|
-
return await this.
|
|
7996
|
+
return await this.listTagsForPrivateAccessPolicyWithOptions(request, runtime);
|
|
5305
7997
|
}
|
|
5306
7998
|
|
|
5307
|
-
async
|
|
7999
|
+
async listUserDevicesWithOptions(request: ListUserDevicesRequest, runtime: $Util.RuntimeOptions): Promise<ListUserDevicesResponse> {
|
|
5308
8000
|
Util.validateModel(request);
|
|
5309
8001
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
5310
8002
|
let req = new $OpenApi.OpenApiRequest({
|
|
5311
8003
|
query: OpenApiUtil.query(query),
|
|
5312
8004
|
});
|
|
5313
8005
|
let params = new $OpenApi.Params({
|
|
5314
|
-
action: "
|
|
8006
|
+
action: "ListUserDevices",
|
|
5315
8007
|
version: "2023-01-20",
|
|
5316
8008
|
protocol: "HTTPS",
|
|
5317
8009
|
pathname: "/",
|
|
@@ -5321,12 +8013,12 @@ export default class Client extends OpenApi {
|
|
|
5321
8013
|
reqBodyType: "formData",
|
|
5322
8014
|
bodyType: "json",
|
|
5323
8015
|
});
|
|
5324
|
-
return $tea.cast<
|
|
8016
|
+
return $tea.cast<ListUserDevicesResponse>(await this.callApi(params, req, runtime), new ListUserDevicesResponse({}));
|
|
5325
8017
|
}
|
|
5326
8018
|
|
|
5327
|
-
async
|
|
8019
|
+
async listUserDevices(request: ListUserDevicesRequest): Promise<ListUserDevicesResponse> {
|
|
5328
8020
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5329
|
-
return await this.
|
|
8021
|
+
return await this.listUserDevicesWithOptions(request, runtime);
|
|
5330
8022
|
}
|
|
5331
8023
|
|
|
5332
8024
|
async listUserGroupsWithOptions(request: ListUserGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsResponse> {
|
|
@@ -5379,6 +8071,31 @@ export default class Client extends OpenApi {
|
|
|
5379
8071
|
return await this.listUserGroupsForPrivateAccessPolicyWithOptions(request, runtime);
|
|
5380
8072
|
}
|
|
5381
8073
|
|
|
8074
|
+
async listUserGroupsForRegistrationPolicyWithOptions(request: ListUserGroupsForRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsForRegistrationPolicyResponse> {
|
|
8075
|
+
Util.validateModel(request);
|
|
8076
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
8077
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8078
|
+
query: OpenApiUtil.query(query),
|
|
8079
|
+
});
|
|
8080
|
+
let params = new $OpenApi.Params({
|
|
8081
|
+
action: "ListUserGroupsForRegistrationPolicy",
|
|
8082
|
+
version: "2023-01-20",
|
|
8083
|
+
protocol: "HTTPS",
|
|
8084
|
+
pathname: "/",
|
|
8085
|
+
method: "GET",
|
|
8086
|
+
authType: "AK",
|
|
8087
|
+
style: "RPC",
|
|
8088
|
+
reqBodyType: "formData",
|
|
8089
|
+
bodyType: "json",
|
|
8090
|
+
});
|
|
8091
|
+
return $tea.cast<ListUserGroupsForRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new ListUserGroupsForRegistrationPolicyResponse({}));
|
|
8092
|
+
}
|
|
8093
|
+
|
|
8094
|
+
async listUserGroupsForRegistrationPolicy(request: ListUserGroupsForRegistrationPolicyRequest): Promise<ListUserGroupsForRegistrationPolicyResponse> {
|
|
8095
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8096
|
+
return await this.listUserGroupsForRegistrationPolicyWithOptions(request, runtime);
|
|
8097
|
+
}
|
|
8098
|
+
|
|
5382
8099
|
async updateDynamicRouteWithOptions(request: UpdateDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDynamicRouteResponse> {
|
|
5383
8100
|
Util.validateModel(request);
|
|
5384
8101
|
let body : {[key: string ]: any} = { };
|
|
@@ -5457,6 +8174,44 @@ export default class Client extends OpenApi {
|
|
|
5457
8174
|
return await this.updateDynamicRouteWithOptions(request, runtime);
|
|
5458
8175
|
}
|
|
5459
8176
|
|
|
8177
|
+
async updateExcessiveDeviceRegistrationApplicationsStatusWithOptions(request: UpdateExcessiveDeviceRegistrationApplicationsStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse> {
|
|
8178
|
+
Util.validateModel(request);
|
|
8179
|
+
let body : {[key: string ]: any} = { };
|
|
8180
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8181
|
+
if (!Util.isUnset(request.applicationIds)) {
|
|
8182
|
+
bodyFlat["ApplicationIds"] = request.applicationIds;
|
|
8183
|
+
}
|
|
8184
|
+
|
|
8185
|
+
if (!Util.isUnset(request.status)) {
|
|
8186
|
+
body["Status"] = request.status;
|
|
8187
|
+
}
|
|
8188
|
+
|
|
8189
|
+
body = {
|
|
8190
|
+
...body,
|
|
8191
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8192
|
+
};
|
|
8193
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8194
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8195
|
+
});
|
|
8196
|
+
let params = new $OpenApi.Params({
|
|
8197
|
+
action: "UpdateExcessiveDeviceRegistrationApplicationsStatus",
|
|
8198
|
+
version: "2023-01-20",
|
|
8199
|
+
protocol: "HTTPS",
|
|
8200
|
+
pathname: "/",
|
|
8201
|
+
method: "POST",
|
|
8202
|
+
authType: "AK",
|
|
8203
|
+
style: "RPC",
|
|
8204
|
+
reqBodyType: "formData",
|
|
8205
|
+
bodyType: "json",
|
|
8206
|
+
});
|
|
8207
|
+
return $tea.cast<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse>(await this.callApi(params, req, runtime), new UpdateExcessiveDeviceRegistrationApplicationsStatusResponse({}));
|
|
8208
|
+
}
|
|
8209
|
+
|
|
8210
|
+
async updateExcessiveDeviceRegistrationApplicationsStatus(request: UpdateExcessiveDeviceRegistrationApplicationsStatusRequest): Promise<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse> {
|
|
8211
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8212
|
+
return await this.updateExcessiveDeviceRegistrationApplicationsStatusWithOptions(request, runtime);
|
|
8213
|
+
}
|
|
8214
|
+
|
|
5460
8215
|
async updatePrivateAccessApplicationWithOptions(request: UpdatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessApplicationResponse> {
|
|
5461
8216
|
Util.validateModel(request);
|
|
5462
8217
|
let body : {[key: string ]: any} = { };
|
|
@@ -5597,6 +8352,170 @@ export default class Client extends OpenApi {
|
|
|
5597
8352
|
return await this.updatePrivateAccessPolicyWithOptions(request, runtime);
|
|
5598
8353
|
}
|
|
5599
8354
|
|
|
8355
|
+
async updateRegistrationPolicyWithOptions(tmpReq: UpdateRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<UpdateRegistrationPolicyResponse> {
|
|
8356
|
+
Util.validateModel(tmpReq);
|
|
8357
|
+
let request = new UpdateRegistrationPolicyShrinkRequest({ });
|
|
8358
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
8359
|
+
if (!Util.isUnset(tmpReq.companyLimitCount)) {
|
|
8360
|
+
request.companyLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.companyLimitCount, "CompanyLimitCount", "json");
|
|
8361
|
+
}
|
|
8362
|
+
|
|
8363
|
+
if (!Util.isUnset(tmpReq.personalLimitCount)) {
|
|
8364
|
+
request.personalLimitCountShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.personalLimitCount, "PersonalLimitCount", "json");
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8367
|
+
let body : {[key: string ]: any} = { };
|
|
8368
|
+
if (!Util.isUnset(request.companyLimitCountShrink)) {
|
|
8369
|
+
body["CompanyLimitCount"] = request.companyLimitCountShrink;
|
|
8370
|
+
}
|
|
8371
|
+
|
|
8372
|
+
if (!Util.isUnset(request.companyLimitType)) {
|
|
8373
|
+
body["CompanyLimitType"] = request.companyLimitType;
|
|
8374
|
+
}
|
|
8375
|
+
|
|
8376
|
+
if (!Util.isUnset(request.description)) {
|
|
8377
|
+
body["Description"] = request.description;
|
|
8378
|
+
}
|
|
8379
|
+
|
|
8380
|
+
if (!Util.isUnset(request.matchMode)) {
|
|
8381
|
+
body["MatchMode"] = request.matchMode;
|
|
8382
|
+
}
|
|
8383
|
+
|
|
8384
|
+
if (!Util.isUnset(request.name)) {
|
|
8385
|
+
body["Name"] = request.name;
|
|
8386
|
+
}
|
|
8387
|
+
|
|
8388
|
+
if (!Util.isUnset(request.personalLimitCountShrink)) {
|
|
8389
|
+
body["PersonalLimitCount"] = request.personalLimitCountShrink;
|
|
8390
|
+
}
|
|
8391
|
+
|
|
8392
|
+
if (!Util.isUnset(request.personalLimitType)) {
|
|
8393
|
+
body["PersonalLimitType"] = request.personalLimitType;
|
|
8394
|
+
}
|
|
8395
|
+
|
|
8396
|
+
if (!Util.isUnset(request.policyId)) {
|
|
8397
|
+
body["PolicyId"] = request.policyId;
|
|
8398
|
+
}
|
|
8399
|
+
|
|
8400
|
+
if (!Util.isUnset(request.priority)) {
|
|
8401
|
+
body["Priority"] = request.priority;
|
|
8402
|
+
}
|
|
8403
|
+
|
|
8404
|
+
if (!Util.isUnset(request.status)) {
|
|
8405
|
+
body["Status"] = request.status;
|
|
8406
|
+
}
|
|
8407
|
+
|
|
8408
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8409
|
+
if (!Util.isUnset(request.userGroupIds)) {
|
|
8410
|
+
bodyFlat["UserGroupIds"] = request.userGroupIds;
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
if (!Util.isUnset(request.whitelist)) {
|
|
8414
|
+
bodyFlat["Whitelist"] = request.whitelist;
|
|
8415
|
+
}
|
|
8416
|
+
|
|
8417
|
+
body = {
|
|
8418
|
+
...body,
|
|
8419
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8420
|
+
};
|
|
8421
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8422
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8423
|
+
});
|
|
8424
|
+
let params = new $OpenApi.Params({
|
|
8425
|
+
action: "UpdateRegistrationPolicy",
|
|
8426
|
+
version: "2023-01-20",
|
|
8427
|
+
protocol: "HTTPS",
|
|
8428
|
+
pathname: "/",
|
|
8429
|
+
method: "POST",
|
|
8430
|
+
authType: "AK",
|
|
8431
|
+
style: "RPC",
|
|
8432
|
+
reqBodyType: "formData",
|
|
8433
|
+
bodyType: "json",
|
|
8434
|
+
});
|
|
8435
|
+
return $tea.cast<UpdateRegistrationPolicyResponse>(await this.callApi(params, req, runtime), new UpdateRegistrationPolicyResponse({}));
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8438
|
+
async updateRegistrationPolicy(request: UpdateRegistrationPolicyRequest): Promise<UpdateRegistrationPolicyResponse> {
|
|
8439
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8440
|
+
return await this.updateRegistrationPolicyWithOptions(request, runtime);
|
|
8441
|
+
}
|
|
8442
|
+
|
|
8443
|
+
async updateUserDevicesSharingStatusWithOptions(request: UpdateUserDevicesSharingStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserDevicesSharingStatusResponse> {
|
|
8444
|
+
Util.validateModel(request);
|
|
8445
|
+
let body : {[key: string ]: any} = { };
|
|
8446
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8447
|
+
if (!Util.isUnset(request.deviceTags)) {
|
|
8448
|
+
bodyFlat["DeviceTags"] = request.deviceTags;
|
|
8449
|
+
}
|
|
8450
|
+
|
|
8451
|
+
if (!Util.isUnset(request.sharingStatus)) {
|
|
8452
|
+
body["SharingStatus"] = request.sharingStatus;
|
|
8453
|
+
}
|
|
8454
|
+
|
|
8455
|
+
body = {
|
|
8456
|
+
...body,
|
|
8457
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8458
|
+
};
|
|
8459
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8460
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8461
|
+
});
|
|
8462
|
+
let params = new $OpenApi.Params({
|
|
8463
|
+
action: "UpdateUserDevicesSharingStatus",
|
|
8464
|
+
version: "2023-01-20",
|
|
8465
|
+
protocol: "HTTPS",
|
|
8466
|
+
pathname: "/",
|
|
8467
|
+
method: "POST",
|
|
8468
|
+
authType: "AK",
|
|
8469
|
+
style: "RPC",
|
|
8470
|
+
reqBodyType: "formData",
|
|
8471
|
+
bodyType: "json",
|
|
8472
|
+
});
|
|
8473
|
+
return $tea.cast<UpdateUserDevicesSharingStatusResponse>(await this.callApi(params, req, runtime), new UpdateUserDevicesSharingStatusResponse({}));
|
|
8474
|
+
}
|
|
8475
|
+
|
|
8476
|
+
async updateUserDevicesSharingStatus(request: UpdateUserDevicesSharingStatusRequest): Promise<UpdateUserDevicesSharingStatusResponse> {
|
|
8477
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8478
|
+
return await this.updateUserDevicesSharingStatusWithOptions(request, runtime);
|
|
8479
|
+
}
|
|
8480
|
+
|
|
8481
|
+
async updateUserDevicesStatusWithOptions(request: UpdateUserDevicesStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserDevicesStatusResponse> {
|
|
8482
|
+
Util.validateModel(request);
|
|
8483
|
+
let body : {[key: string ]: any} = { };
|
|
8484
|
+
if (!Util.isUnset(request.deviceAction)) {
|
|
8485
|
+
body["DeviceAction"] = request.deviceAction;
|
|
8486
|
+
}
|
|
8487
|
+
|
|
8488
|
+
let bodyFlat : {[key: string ]: any} = { };
|
|
8489
|
+
if (!Util.isUnset(request.deviceTags)) {
|
|
8490
|
+
bodyFlat["DeviceTags"] = request.deviceTags;
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8493
|
+
body = {
|
|
8494
|
+
...body,
|
|
8495
|
+
...OpenApiUtil.query(bodyFlat),
|
|
8496
|
+
};
|
|
8497
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8498
|
+
body: OpenApiUtil.parseToMap(body),
|
|
8499
|
+
});
|
|
8500
|
+
let params = new $OpenApi.Params({
|
|
8501
|
+
action: "UpdateUserDevicesStatus",
|
|
8502
|
+
version: "2023-01-20",
|
|
8503
|
+
protocol: "HTTPS",
|
|
8504
|
+
pathname: "/",
|
|
8505
|
+
method: "POST",
|
|
8506
|
+
authType: "AK",
|
|
8507
|
+
style: "RPC",
|
|
8508
|
+
reqBodyType: "formData",
|
|
8509
|
+
bodyType: "json",
|
|
8510
|
+
});
|
|
8511
|
+
return $tea.cast<UpdateUserDevicesStatusResponse>(await this.callApi(params, req, runtime), new UpdateUserDevicesStatusResponse({}));
|
|
8512
|
+
}
|
|
8513
|
+
|
|
8514
|
+
async updateUserDevicesStatus(request: UpdateUserDevicesStatusRequest): Promise<UpdateUserDevicesStatusResponse> {
|
|
8515
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8516
|
+
return await this.updateUserDevicesStatusWithOptions(request, runtime);
|
|
8517
|
+
}
|
|
8518
|
+
|
|
5600
8519
|
async updateUserGroupWithOptions(request: UpdateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserGroupResponse> {
|
|
5601
8520
|
Util.validateModel(request);
|
|
5602
8521
|
let body : {[key: string ]: any} = { };
|