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