tencentcloud-sdk-nodejs 4.1.191 → 4.1.192
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/es/common/sdk_version.js +1 -1
- package/es/services/hai/v20230812/hai_client.js +7 -4
- package/es/services/organization/v20210331/organization_client.js +9 -0
- package/es/services/rum/v20210622/rum_client.js +63 -27
- package/es/services/trocket/v20230308/trocket_client.js +20 -95
- package/es/services/trtc/v20190722/trtc_client.js +18 -9
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +133 -11
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +19 -14
- package/tencentcloud/services/cloudstudio/v20230508/cloudstudio_models.d.ts +2 -2
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +80 -92
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
- package/tencentcloud/services/hai/v20230812/hai_client.d.ts +9 -5
- package/tencentcloud/services/hai/v20230812/hai_client.js +12 -6
- package/tencentcloud/services/hai/v20230812/hai_models.d.ts +392 -180
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +156 -6
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +13 -1
- package/tencentcloud/services/organization/v20210331/organization_client.js +18 -0
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +174 -79
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +78 -29
- package/tencentcloud/services/rum/v20210622/rum_client.js +115 -42
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +2828 -1142
- package/tencentcloud/services/tag/v20180813/tag_models.d.ts +20 -20
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +5 -1
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +5 -1
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +4 -0
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +49 -211
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +58 -270
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +373 -1632
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +29 -16
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +39 -20
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +292 -70
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
|
@@ -10,6 +10,10 @@ export interface UpdateAliasRequest {
|
|
|
10
10
|
* CMK的全局唯一标识符
|
|
11
11
|
*/
|
|
12
12
|
KeyId: string;
|
|
13
|
+
/**
|
|
14
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
15
|
+
*/
|
|
16
|
+
MemberAccount?: MemberAccount;
|
|
13
17
|
}
|
|
14
18
|
/**
|
|
15
19
|
* EnableWhiteBoxKey请求参数结构体
|
|
@@ -49,6 +53,10 @@ export interface EnableKeyRotationRequest {
|
|
|
49
53
|
* 密钥轮转周期,单位天,允许范围 7 ~ 365,默认值 365。
|
|
50
54
|
*/
|
|
51
55
|
RotateDays?: number;
|
|
56
|
+
/**
|
|
57
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
58
|
+
*/
|
|
59
|
+
MemberAccount?: MemberAccount;
|
|
52
60
|
}
|
|
53
61
|
/**
|
|
54
62
|
* DescribeWhiteBoxKeyDetails返回参数结构体
|
|
@@ -130,6 +138,10 @@ export interface UpdateDataKeyDescriptionRequest {
|
|
|
130
138
|
* 数据密钥 的描述,最大100字节
|
|
131
139
|
*/
|
|
132
140
|
Description: string;
|
|
141
|
+
/**
|
|
142
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
143
|
+
*/
|
|
144
|
+
MemberAccount?: MemberAccount;
|
|
133
145
|
}
|
|
134
146
|
/**
|
|
135
147
|
* DescribeDataKey返回参数结构体
|
|
@@ -161,6 +173,10 @@ export interface DescribeKeyRequest {
|
|
|
161
173
|
* CMK全局唯一标识符
|
|
162
174
|
*/
|
|
163
175
|
KeyId: string;
|
|
176
|
+
/**
|
|
177
|
+
* 可信服务成员账号信息
|
|
178
|
+
*/
|
|
179
|
+
MemberAccount?: MemberAccount;
|
|
164
180
|
}
|
|
165
181
|
/**
|
|
166
182
|
* 白盒密钥信息
|
|
@@ -223,6 +239,10 @@ export interface DescribeDataKeysRequest {
|
|
|
223
239
|
* 查询DataKey的ID列表,批量查询一次最多支持100个DataKeyId
|
|
224
240
|
*/
|
|
225
241
|
DataKeyIds: Array<string>;
|
|
242
|
+
/**
|
|
243
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
244
|
+
*/
|
|
245
|
+
MemberAccount?: MemberAccount;
|
|
226
246
|
}
|
|
227
247
|
/**
|
|
228
248
|
* ListAlgorithms返回参数结构体
|
|
@@ -340,6 +360,10 @@ export interface EnableKeyRequest {
|
|
|
340
360
|
* CMK唯一标识符
|
|
341
361
|
*/
|
|
342
362
|
KeyId: string;
|
|
363
|
+
/**
|
|
364
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
365
|
+
*/
|
|
366
|
+
MemberAccount?: MemberAccount;
|
|
343
367
|
}
|
|
344
368
|
/**
|
|
345
369
|
* GetKeyRotationStatus请求参数结构体
|
|
@@ -349,23 +373,28 @@ export interface GetKeyRotationStatusRequest {
|
|
|
349
373
|
* CMK唯一标识符
|
|
350
374
|
*/
|
|
351
375
|
KeyId: string;
|
|
376
|
+
/**
|
|
377
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
378
|
+
*/
|
|
379
|
+
MemberAccount?: MemberAccount;
|
|
352
380
|
}
|
|
353
381
|
/**
|
|
354
382
|
* ListAlgorithms请求参数结构体
|
|
355
383
|
*/
|
|
356
384
|
export type ListAlgorithmsRequest = null;
|
|
357
385
|
/**
|
|
358
|
-
*
|
|
386
|
+
* 共享成员账号信息
|
|
359
387
|
*/
|
|
360
|
-
export interface
|
|
388
|
+
export interface MemberAccount {
|
|
361
389
|
/**
|
|
362
|
-
*
|
|
390
|
+
* 成员账号appid
|
|
391
|
+
|
|
363
392
|
*/
|
|
364
|
-
|
|
393
|
+
MemberAppId?: number;
|
|
365
394
|
/**
|
|
366
|
-
*
|
|
395
|
+
* 成员账号uin
|
|
367
396
|
*/
|
|
368
|
-
|
|
397
|
+
MemberUin?: number;
|
|
369
398
|
}
|
|
370
399
|
/**
|
|
371
400
|
* ListKeyDetail返回参数结构体
|
|
@@ -501,6 +530,10 @@ export interface UpdateDataKeyNameRequest {
|
|
|
501
530
|
* 数据密钥的名称
|
|
502
531
|
*/
|
|
503
532
|
DataKeyName: string;
|
|
533
|
+
/**
|
|
534
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
535
|
+
*/
|
|
536
|
+
MemberAccount?: MemberAccount;
|
|
504
537
|
}
|
|
505
538
|
/**
|
|
506
539
|
* ScheduleDataKeyDeletion请求参数结构体
|
|
@@ -514,6 +547,10 @@ export interface ScheduleDataKeyDeletionRequest {
|
|
|
514
547
|
* 计划删除时间区间[7,30]
|
|
515
548
|
*/
|
|
516
549
|
PendingWindowInDays: number;
|
|
550
|
+
/**
|
|
551
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
552
|
+
*/
|
|
553
|
+
MemberAccount?: MemberAccount;
|
|
517
554
|
}
|
|
518
555
|
/**
|
|
519
556
|
* DescribeKeys请求参数结构体
|
|
@@ -523,6 +560,10 @@ export interface DescribeKeysRequest {
|
|
|
523
560
|
* 查询CMK的ID列表,批量查询一次最多支持100个KeyId
|
|
524
561
|
*/
|
|
525
562
|
KeyIds: Array<string>;
|
|
563
|
+
/**
|
|
564
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
565
|
+
*/
|
|
566
|
+
MemberAccount?: MemberAccount;
|
|
526
567
|
}
|
|
527
568
|
/**
|
|
528
569
|
* GetPublicKey请求参数结构体
|
|
@@ -717,6 +758,10 @@ export interface EnableKeysRequest {
|
|
|
717
758
|
* 需要批量启用的CMK Id 列表, CMK数量最大支持100
|
|
718
759
|
*/
|
|
719
760
|
KeyIds: Array<string>;
|
|
761
|
+
/**
|
|
762
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
763
|
+
*/
|
|
764
|
+
MemberAccount?: MemberAccount;
|
|
720
765
|
}
|
|
721
766
|
/**
|
|
722
767
|
* EnableWhiteBoxKeys请求参数结构体
|
|
@@ -851,6 +896,10 @@ export interface DescribeDataKeyRequest {
|
|
|
851
896
|
* 数据密钥全局唯一标识符
|
|
852
897
|
*/
|
|
853
898
|
DataKeyId: string;
|
|
899
|
+
/**
|
|
900
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
901
|
+
*/
|
|
902
|
+
MemberAccount?: MemberAccount;
|
|
854
903
|
}
|
|
855
904
|
/**
|
|
856
905
|
* AsymmetricSm2Decrypt返回参数结构体
|
|
@@ -966,6 +1015,18 @@ export interface DataKeyMetadata {
|
|
|
966
1015
|
* 同步的原始集群,如果为空,是公有云公共集群
|
|
967
1016
|
*/
|
|
968
1017
|
SourceHsmClusterId?: string;
|
|
1018
|
+
/**
|
|
1019
|
+
* 成员账号appId
|
|
1020
|
+
*/
|
|
1021
|
+
AccountAppId?: number;
|
|
1022
|
+
/**
|
|
1023
|
+
* 成员账号uin
|
|
1024
|
+
*/
|
|
1025
|
+
AccountUin?: number;
|
|
1026
|
+
/**
|
|
1027
|
+
* 成员账号名称
|
|
1028
|
+
*/
|
|
1029
|
+
AccountName?: string;
|
|
969
1030
|
}
|
|
970
1031
|
/**
|
|
971
1032
|
* VerifyByAsymmetricKey请求参数结构体
|
|
@@ -1079,6 +1140,10 @@ export interface ListKeyDetailRequest {
|
|
|
1079
1140
|
* KMS 高级版对应的 HSM 集群 ID(仅对 KMS 独占版/托管版服务实例有效)。
|
|
1080
1141
|
*/
|
|
1081
1142
|
HsmClusterId?: string;
|
|
1143
|
+
/**
|
|
1144
|
+
* 可信服务成员账号信息数组
|
|
1145
|
+
*/
|
|
1146
|
+
MemberAccounts?: Array<MemberAccount>;
|
|
1082
1147
|
}
|
|
1083
1148
|
/**
|
|
1084
1149
|
* DeleteWhiteBoxKey请求参数结构体
|
|
@@ -1145,6 +1210,10 @@ export interface CancelKeyDeletionRequest {
|
|
|
1145
1210
|
* 需要被取消删除的CMK的唯一标志
|
|
1146
1211
|
*/
|
|
1147
1212
|
KeyId: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
1215
|
+
*/
|
|
1216
|
+
MemberAccount?: MemberAccount;
|
|
1148
1217
|
}
|
|
1149
1218
|
/**
|
|
1150
1219
|
* EnableDataKeys返回参数结构体
|
|
@@ -1197,6 +1266,10 @@ export interface EnableDataKeysRequest {
|
|
|
1197
1266
|
* 需要批量启用的DataKey Id 列表, 数据密钥数量最大支持100
|
|
1198
1267
|
*/
|
|
1199
1268
|
DataKeyIds: Array<string>;
|
|
1269
|
+
/**
|
|
1270
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
1271
|
+
*/
|
|
1272
|
+
MemberAccount?: MemberAccount;
|
|
1200
1273
|
}
|
|
1201
1274
|
/**
|
|
1202
1275
|
* CreateWhiteBoxKey请求参数结构体
|
|
@@ -1240,6 +1313,10 @@ export interface DisableDataKeyRequest {
|
|
|
1240
1313
|
* 数据密钥唯一标识符
|
|
1241
1314
|
*/
|
|
1242
1315
|
DataKeyId: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
1318
|
+
*/
|
|
1319
|
+
MemberAccount?: MemberAccount;
|
|
1243
1320
|
}
|
|
1244
1321
|
/**
|
|
1245
1322
|
* OverwriteWhiteBoxDeviceFingerprints返回参数结构体
|
|
@@ -1267,6 +1344,10 @@ export interface ArchiveKeyRequest {
|
|
|
1267
1344
|
* CMK唯一标识符
|
|
1268
1345
|
*/
|
|
1269
1346
|
KeyId: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
1349
|
+
*/
|
|
1350
|
+
MemberAccount?: MemberAccount;
|
|
1270
1351
|
}
|
|
1271
1352
|
/**
|
|
1272
1353
|
* GetParametersForImport请求参数结构体
|
|
@@ -1397,6 +1478,10 @@ export interface GetDataKeyCiphertextBlobRequest {
|
|
|
1397
1478
|
* 数据密钥的唯一标志符
|
|
1398
1479
|
*/
|
|
1399
1480
|
DataKeyId: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
1483
|
+
*/
|
|
1484
|
+
MemberAccount?: MemberAccount;
|
|
1400
1485
|
}
|
|
1401
1486
|
/**
|
|
1402
1487
|
* DeleteImportedKeyMaterial请求参数结构体
|
|
@@ -1656,6 +1741,10 @@ export interface ListDataKeyDetailRequest {
|
|
|
1656
1741
|
* 标签过滤条件
|
|
1657
1742
|
*/
|
|
1658
1743
|
TagFilters?: Array<TagFilter>;
|
|
1744
|
+
/**
|
|
1745
|
+
* 成员账号信息数组
|
|
1746
|
+
*/
|
|
1747
|
+
MemberAccounts?: Array<MemberAccount>;
|
|
1659
1748
|
}
|
|
1660
1749
|
/**
|
|
1661
1750
|
* CancelDataKeyDeletion返回参数结构体
|
|
@@ -1813,6 +1902,18 @@ export interface KeyMetadata {
|
|
|
1813
1902
|
* 同步的原始集群,如果为空,是公有云公共集群
|
|
1814
1903
|
*/
|
|
1815
1904
|
SourceHsmClusterId?: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* 成员账号appId
|
|
1907
|
+
*/
|
|
1908
|
+
AccountAppId?: number;
|
|
1909
|
+
/**
|
|
1910
|
+
* 成员账号uin
|
|
1911
|
+
*/
|
|
1912
|
+
AccountUin?: number;
|
|
1913
|
+
/**
|
|
1914
|
+
* 成员账号名称
|
|
1915
|
+
*/
|
|
1916
|
+
AccountName?: string;
|
|
1816
1917
|
}
|
|
1817
1918
|
/**
|
|
1818
1919
|
* CancelKeyArchive返回参数结构体
|
|
@@ -1950,6 +2051,10 @@ export interface DisableKeysRequest {
|
|
|
1950
2051
|
* 需要批量禁用的CMK Id 列表,CMK数量最大支持100
|
|
1951
2052
|
*/
|
|
1952
2053
|
KeyIds: Array<string>;
|
|
2054
|
+
/**
|
|
2055
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2056
|
+
*/
|
|
2057
|
+
MemberAccount?: MemberAccount;
|
|
1953
2058
|
}
|
|
1954
2059
|
/**
|
|
1955
2060
|
* DisableWhiteBoxKey请求参数结构体
|
|
@@ -2124,6 +2229,10 @@ export interface ScheduleKeyDeletionRequest {
|
|
|
2124
2229
|
* 计划删除时间区间[7,30]
|
|
2125
2230
|
*/
|
|
2126
2231
|
PendingWindowInDays: number;
|
|
2232
|
+
/**
|
|
2233
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2234
|
+
*/
|
|
2235
|
+
MemberAccount?: MemberAccount;
|
|
2127
2236
|
}
|
|
2128
2237
|
/**
|
|
2129
2238
|
* CancelDataKeyDeletion请求参数结构体
|
|
@@ -2133,6 +2242,10 @@ export interface CancelDataKeyDeletionRequest {
|
|
|
2133
2242
|
* 数据密钥的唯一标志符
|
|
2134
2243
|
*/
|
|
2135
2244
|
DataKeyId: string;
|
|
2245
|
+
/**
|
|
2246
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2247
|
+
*/
|
|
2248
|
+
MemberAccount?: MemberAccount;
|
|
2136
2249
|
}
|
|
2137
2250
|
/**
|
|
2138
2251
|
* PostQuantumCryptoEncrypt请求参数结构体
|
|
@@ -2155,6 +2268,10 @@ export interface DisableKeyRequest {
|
|
|
2155
2268
|
* CMK唯一标识符
|
|
2156
2269
|
*/
|
|
2157
2270
|
KeyId: string;
|
|
2271
|
+
/**
|
|
2272
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2273
|
+
*/
|
|
2274
|
+
MemberAccount?: MemberAccount;
|
|
2158
2275
|
}
|
|
2159
2276
|
/**
|
|
2160
2277
|
* ImportKeyMaterial返回参数结构体
|
|
@@ -2173,6 +2290,10 @@ export interface EnableDataKeyRequest {
|
|
|
2173
2290
|
* 数据密钥唯一标识符
|
|
2174
2291
|
*/
|
|
2175
2292
|
DataKeyId: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2295
|
+
*/
|
|
2296
|
+
MemberAccount?: MemberAccount;
|
|
2176
2297
|
}
|
|
2177
2298
|
/**
|
|
2178
2299
|
* BindCloudResource请求参数结构体
|
|
@@ -2295,6 +2416,10 @@ export interface DisableDataKeysRequest {
|
|
|
2295
2416
|
* 需要批量禁用的DataKey Id 列表,数据密钥数量最大支持100
|
|
2296
2417
|
*/
|
|
2297
2418
|
DataKeyIds: Array<string>;
|
|
2419
|
+
/**
|
|
2420
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2421
|
+
*/
|
|
2422
|
+
MemberAccount?: MemberAccount;
|
|
2298
2423
|
}
|
|
2299
2424
|
/**
|
|
2300
2425
|
* UpdateKeyDescription请求参数结构体
|
|
@@ -2308,6 +2433,10 @@ export interface UpdateKeyDescriptionRequest {
|
|
|
2308
2433
|
* 需要修改描述信息的CMK ID
|
|
2309
2434
|
*/
|
|
2310
2435
|
KeyId: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2438
|
+
*/
|
|
2439
|
+
MemberAccount?: MemberAccount;
|
|
2311
2440
|
}
|
|
2312
2441
|
/**
|
|
2313
2442
|
* UnbindCloudResource返回参数结构体
|
|
@@ -2339,6 +2468,23 @@ export interface CancelKeyArchiveRequest {
|
|
|
2339
2468
|
* CMK唯一标识符
|
|
2340
2469
|
*/
|
|
2341
2470
|
KeyId: string;
|
|
2471
|
+
/**
|
|
2472
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2473
|
+
*/
|
|
2474
|
+
MemberAccount?: MemberAccount;
|
|
2475
|
+
}
|
|
2476
|
+
/**
|
|
2477
|
+
* 标签键和标签值
|
|
2478
|
+
*/
|
|
2479
|
+
export interface Tag {
|
|
2480
|
+
/**
|
|
2481
|
+
* 标签键
|
|
2482
|
+
*/
|
|
2483
|
+
TagKey: string;
|
|
2484
|
+
/**
|
|
2485
|
+
* 标签值
|
|
2486
|
+
*/
|
|
2487
|
+
TagValue: string;
|
|
2342
2488
|
}
|
|
2343
2489
|
/**
|
|
2344
2490
|
* DisableKeyRotation请求参数结构体
|
|
@@ -2348,4 +2494,8 @@ export interface DisableKeyRotationRequest {
|
|
|
2348
2494
|
* CMK唯一标识符
|
|
2349
2495
|
*/
|
|
2350
2496
|
KeyId: string;
|
|
2497
|
+
/**
|
|
2498
|
+
* 可信服务成员账号信息,当前账号时管理员或者委派管理员时有效。
|
|
2499
|
+
*/
|
|
2500
|
+
MemberAccount?: MemberAccount;
|
|
2351
2501
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { ListTasksRequest, ListRoleConfigurationsRequest, DeleteSCIMCredentialRequest, ListGroupMembersResponse, SetExternalSAMLIdentityProviderRequest, ListGroupMembersRequest, UpdatePolicyRequest, DescribeShareUnitResourcesResponse, DescribeOrganizationMemberEmailBindResponse, EnablePolicyTypeResponse, ListTargetsForPolicyResponse, DeleteUserRequest, ProvisionRoleConfigurationRequest, ListNonCompliantResourceResponse, DeleteUserResponse, UpdateZoneResponse, DeleteOrganizationRequest, RejectJoinShareUnitInvitationRequest, DescribeIdentityCenterResponse, DescribePolicyConfigResponse, GetZoneStatisticsResponse, GetExternalSAMLIdentityProviderResponse, ListOrganizationIdentityRequest, DeleteOrganizationMembersRequest, CreateOrganizationResponse, AddShareUnitResourcesResponse, AddOrganizationNodeResponse, DescribeOrganizationFinancialByMonthResponse, ListPermissionPoliciesInRoleConfigurationResponse, MoveOrganizationNodeMembersResponse, AttachPolicyRequest, DeleteShareUnitResponse, UpdateShareUnitRequest, RemoveExternalSAMLIdPCertificateResponse, CreateGroupRequest, ListUsersResponse, DeleteRoleConfigurationRequest, CreateOrganizationIdentityRequest, ListOrganizationServiceResponse, DeleteUserSyncProvisioningResponse, ProvisionRoleConfigurationResponse, ListUserSyncProvisioningsResponse, DeletePolicyResponse, DescribeOrganizationResponse, ListNonCompliantResourceRequest, DisablePolicyTypeResponse, DescribeOrganizationMemberPoliciesRequest, DescribeEffectivePolicyRequest, CreateOrgServiceAssignRequest, DeleteOrganizationMembersPolicyResponse, DismantleRoleConfigurationResponse, ClearExternalSAMLIdentityProviderRequest, CreateUserSyncProvisioningResponse, ListUserSyncProvisioningsRequest, UpdateUserSyncProvisioningRequest, ListRoleAssignmentsRequest, CancelOrganizationMemberAuthAccountRequest, UpdateUserRequest, GetGroupRequest, DeleteOrganizationResponse, DismantleRoleConfigurationRequest, UpdateCustomPolicyForRoleConfigurationResponse, DescribeShareUnitMembersResponse, CreateRoleAssignmentRequest, DeleteShareUnitResourcesRequest, RejectJoinShareUnitInvitationResponse, UpdateShareUnitResponse, ListRoleAssignmentsResponse, UpdateUserResponse, RemoveUserFromGroupRequest, AddPermissionPolicyToRoleConfigurationRequest, DescribeOrganizationAuthNodeResponse, ListPoliciesResponse, BindOrganizationMemberAuthAccountRequest, DescribeShareUnitsResponse, UpdateOrganizationMemberEmailBindResponse, GetZoneSAMLServiceProviderInfoResponse, DeleteOrganizationMembersResponse, UpdateSCIMCredentialStatusResponse,
|
|
3
|
+
import { ListTasksRequest, ListRoleConfigurationsRequest, DeleteSCIMCredentialRequest, ListGroupMembersResponse, SetExternalSAMLIdentityProviderRequest, ListGroupMembersRequest, UpdatePolicyRequest, DescribeShareUnitResourcesResponse, DescribeOrganizationMemberEmailBindResponse, EnablePolicyTypeResponse, ListTargetsForPolicyResponse, DeleteUserRequest, ProvisionRoleConfigurationRequest, ListNonCompliantResourceResponse, DeleteUserResponse, UpdateZoneResponse, DeleteOrganizationRequest, RejectJoinShareUnitInvitationRequest, DescribeIdentityCenterResponse, DescribePolicyConfigResponse, GetZoneStatisticsResponse, GetExternalSAMLIdentityProviderResponse, ListOrganizationIdentityRequest, DeleteOrganizationMembersRequest, CreateOrganizationResponse, AddShareUnitResourcesResponse, AddOrganizationNodeResponse, DescribeOrganizationFinancialByMonthResponse, ListPermissionPoliciesInRoleConfigurationResponse, MoveOrganizationNodeMembersResponse, AttachPolicyRequest, DeleteShareUnitResponse, UpdateShareUnitRequest, RemoveExternalSAMLIdPCertificateResponse, CreateGroupRequest, ListUsersResponse, DeleteRoleConfigurationRequest, CreateOrganizationIdentityRequest, ListOrganizationServiceResponse, DeleteUserSyncProvisioningResponse, ProvisionRoleConfigurationResponse, ListUserSyncProvisioningsResponse, DeletePolicyResponse, DescribeOrganizationResponse, ListNonCompliantResourceRequest, DisablePolicyTypeResponse, DescribeOrganizationMemberPoliciesRequest, DescribeEffectivePolicyRequest, CreateOrgServiceAssignRequest, DeleteOrganizationMembersPolicyResponse, DismantleRoleConfigurationResponse, ClearExternalSAMLIdentityProviderRequest, CreateUserSyncProvisioningResponse, ListUserSyncProvisioningsRequest, UpdateUserSyncProvisioningRequest, ListRoleAssignmentsRequest, CancelOrganizationMemberAuthAccountRequest, UpdateUserRequest, GetGroupRequest, DeleteOrganizationResponse, DismantleRoleConfigurationRequest, UpdateCustomPolicyForRoleConfigurationResponse, DescribeShareUnitMembersResponse, CreateRoleAssignmentRequest, DeleteShareUnitResourcesRequest, RejectJoinShareUnitInvitationResponse, UpdateShareUnitResponse, ListRoleAssignmentsResponse, UpdateUserResponse, RemoveUserFromGroupRequest, AddPermissionPolicyToRoleConfigurationRequest, DescribeOrganizationAuthNodeResponse, ListPoliciesResponse, BindOrganizationMemberAuthAccountRequest, DescribeShareUnitsResponse, UpdateOrganizationMemberEmailBindResponse, GetZoneSAMLServiceProviderInfoResponse, DeleteOrganizationMembersResponse, UpdateSCIMCredentialStatusResponse, DescribeShareUnitNodesResponse, DescribeOrganizationMemberAuthIdentitiesRequest, CreateOrganizationMemberAuthIdentityResponse, DeleteOrgServiceAssignRequest, DescribeOrganizationRequest, ListPermissionPoliciesInRoleConfigurationRequest, ClearExternalSAMLIdentityProviderResponse, AddExternalSAMLIdPCertificateResponse, CreateOrganizationMemberResponse, MoveOrganizationNodeMembersRequest, GetTaskStatusResponse, AddShareUnitNodeRequest, UpdateOrganizationMemberResponse, DeleteGroupRequest, GetUserResponse, DeleteOrganizationNodesRequest, EnablePolicyTypeRequest, CreatePolicyResponse, AddOrganizationMemberEmailRequest, ListOrganizationIdentityResponse, CancelOrganizationPolicySubAccountRequest, DeletePolicyRequest, CancelOrganizationPolicySubAccountResponse, DescribeOrganizationMembersAuthPolicyRequest, GetSCIMSynchronizationStatusResponse, GetZoneStatisticsRequest, RemovePermissionPolicyFromRoleConfigurationRequest, InviteOrganizationMemberRequest, QuitOrganizationRequest, ListTasksResponse, AddOrganizationNodeRequest, AddShareUnitMembersRequest, AddShareUnitRequest, SendOrgMemberAccountBindEmailResponse, DescribeOrganizationAuthNodeRequest, OpenIdentityCenterRequest, GetProvisioningTaskStatusResponse, DescribeOrganizationMemberAuthAccountsRequest, GetUserRequest, UpdateOrganizationNodeResponse, AcceptJoinShareUnitInvitationResponse, ListJoinedGroupsForUserResponse, DescribeShareAreasRequest, DescribeOrganizationMemberAuthAccountsResponse, DeleteShareUnitNodeRequest, DeleteShareUnitNodeResponse, ListRoleConfigurationProvisioningsRequest, GetSCIMSynchronizationStatusRequest, DescribeIdentityCenterRequest, DescribeOrganizationMembersResponse, ListPoliciesForTargetRequest, DeleteOrganizationMemberAuthIdentityResponse, UpdateOrganizationMemberEmailBindRequest, BindOrganizationPolicySubAccountResponse, DeleteOrganizationMemberAuthIdentityRequest, ListGroupsRequest, UpdateRoleConfigurationRequest, DetachPolicyRequest, UpdateOrganizationIdentityRequest, ListOrgServiceAssignMemberResponse, SendOrgMemberAccountBindEmailRequest, DeleteRoleAssignmentResponse, DisablePolicyTypeRequest, DescribeEffectivePolicyResponse, CreateOrgServiceAssignResponse, AddOrganizationMemberEmailResponse, DescribeResourceToShareMemberRequest, AddShareUnitMembersResponse, ListGroupsResponse, CreateOrganizationMemberPolicyRequest, GetUserSyncProvisioningResponse, CreateOrganizationRequest, ListJoinedGroupsForUserRequest, UpdateRoleConfigurationResponse, AttachPolicyResponse, CreateOrganizationMembersPolicyRequest, CheckAccountDeleteRequest, GetExternalSAMLIdentityProviderRequest, DetachPolicyResponse, DeleteRoleConfigurationResponse, AddShareUnitResponse, DescribeShareUnitResourcesRequest, DescribeOrganizationFinancialByProductResponse, RemoveUserFromGroupResponse, GetGroupResponse, DescribeOrganizationFinancialByProductRequest, CreateOrganizationMemberPolicyResponse, UpdateSCIMSynchronizationStatusRequest, AcceptJoinShareUnitInvitationRequest, CancelOrganizationMemberAuthAccountResponse, GetTaskStatusRequest, AddShareUnitResourcesRequest, GetRoleConfigurationResponse, SetExternalSAMLIdentityProviderResponse, ListPoliciesForTargetResponse, DeleteShareUnitMembersRequest, OpenIdentityCenterResponse, ListUsersRequest, DescribeOrganizationMemberAuthIdentitiesResponse, CreateRoleAssignmentResponse, CreateUserRequest, QuitOrganizationResponse, DescribeResourceToShareMemberResponse, UpdatePolicyResponse, DeleteShareUnitMembersResponse, UpdateGroupResponse, ListExternalSAMLIdPCertificatesRequest, DeleteOrganizationIdentityResponse, DescribeOrganizationMemberEmailBindRequest, RemovePermissionPolicyFromRoleConfigurationResponse, ListPoliciesRequest, BindOrganizationPolicySubAccountRequest, UpdateOrganizationMembersPolicyRequest, CreateOrganizationMemberRequest, UpdateSCIMSynchronizationStatusResponse, CreatePolicyRequest, DescribePolicyConfigRequest, AddExternalSAMLIdPCertificateRequest, GetProvisioningTaskStatusRequest, CheckAccountDeleteResponse, DescribePolicyResponse, UpdateUserStatusResponse, UpdateGroupRequest, ListExternalSAMLIdPCertificatesResponse, DeleteAccountRequest, DescribeShareUnitNodesRequest, DescribeShareUnitMembersRequest, RemoveExternalSAMLIdPCertificateRequest, GetUserSyncProvisioningRequest, CreateOrganizationMemberAuthIdentityRequest, DescribeOrganizationFinancialByMonthRequest, ListRoleConfigurationProvisioningsResponse, DescribeOrganizationFinancialByMemberRequest, AddPermissionPolicyToRoleConfigurationResponse, ListOrganizationServiceRequest, CreateRoleConfigurationRequest, UpdateOrganizationMemberRequest, CreateOrganizationMembersPolicyResponse, GetRoleConfigurationRequest, AddUserToGroupRequest, CreateOrganizationIdentityResponse, DescribeOrganizationMembersRequest, GetZoneSAMLServiceProviderInfoRequest, ListRoleConfigurationsResponse, ListSCIMCredentialsResponse, DescribeOrganizationNodesRequest, UpdateCustomPolicyForRoleConfigurationRequest, InviteOrganizationMemberResponse, BindOrganizationMemberAuthAccountResponse, ListOrgServiceAssignMemberRequest, UpdateOrganizationIdentityResponse, DescribeShareAreasResponse, CreateUserResponse, DeleteShareUnitResourcesResponse, DeleteUserSyncProvisioningRequest, DescribeOrganizationNodesResponse, CreateUserSyncProvisioningRequest, DeleteOrganizationMembersPolicyRequest, CreateSCIMCredentialRequest, DescribeOrganizationMembersAuthPolicyResponse, DescribePolicyRequest, DeleteGroupResponse, UpdateOrganizationMembersPolicyResponse, UpdateUserStatusRequest, CreateRoleConfigurationResponse, DeleteRoleAssignmentRequest, ListTargetsForPolicyRequest, DeleteOrganizationIdentityRequest, UpdateOrganizationNodeRequest, DeleteOrganizationNodesResponse, DescribeOrganizationFinancialByMemberResponse, AddUserToGroupResponse, CreateSCIMCredentialResponse, DeleteShareUnitRequest, DeleteOrgServiceAssignResponse, DescribeOrganizationMemberPoliciesResponse, DescribeShareUnitsRequest, ListSCIMCredentialsRequest, UpdateSCIMCredentialStatusRequest, AddShareUnitNodeResponse, UpdateUserSyncProvisioningResponse, DeleteSCIMCredentialResponse, UpdateZoneRequest, DeleteAccountResponse, CreateGroupResponse } from "./organization_models";
|
|
4
4
|
/**
|
|
5
5
|
* organization client
|
|
6
6
|
* @class
|
|
@@ -55,6 +55,10 @@ export declare class Client extends AbstractClient {
|
|
|
55
55
|
* 查询用户信息
|
|
56
56
|
*/
|
|
57
57
|
GetUser(req: GetUserRequest, cb?: (error: string, rep: GetUserResponse) => void): Promise<GetUserResponse>;
|
|
58
|
+
/**
|
|
59
|
+
* 添加共享单元部门
|
|
60
|
+
*/
|
|
61
|
+
AddShareUnitNode(req: AddShareUnitNodeRequest, cb?: (error: string, rep: AddShareUnitNodeResponse) => void): Promise<AddShareUnitNodeResponse>;
|
|
58
62
|
/**
|
|
59
63
|
* 开通身份中心服务(CIC)
|
|
60
64
|
*/
|
|
@@ -95,6 +99,10 @@ export declare class Client extends AbstractClient {
|
|
|
95
99
|
* 获取组织节点列表
|
|
96
100
|
*/
|
|
97
101
|
DescribeOrganizationNodes(req: DescribeOrganizationNodesRequest, cb?: (error: string, rep: DescribeOrganizationNodesResponse) => void): Promise<DescribeOrganizationNodesResponse>;
|
|
102
|
+
/**
|
|
103
|
+
* 删除共享单元部门
|
|
104
|
+
*/
|
|
105
|
+
DeleteShareUnitNode(req: DeleteShareUnitNodeRequest, cb?: (error: string, rep: DeleteShareUnitNodeResponse) => void): Promise<DeleteShareUnitNodeResponse>;
|
|
98
106
|
/**
|
|
99
107
|
* 创建用户
|
|
100
108
|
*/
|
|
@@ -155,6 +163,10 @@ export declare class Client extends AbstractClient {
|
|
|
155
163
|
* 将权限配置部署到成员账号上
|
|
156
164
|
*/
|
|
157
165
|
ProvisionRoleConfiguration(req: ProvisionRoleConfigurationRequest, cb?: (error: string, rep: ProvisionRoleConfigurationResponse) => void): Promise<ProvisionRoleConfigurationResponse>;
|
|
166
|
+
/**
|
|
167
|
+
* 获取共享单元部门列表。
|
|
168
|
+
*/
|
|
169
|
+
DescribeShareUnitNodes(req: DescribeShareUnitNodesRequest, cb?: (error: string, rep: DescribeShareUnitNodesResponse) => void): Promise<DescribeShareUnitNodesResponse>;
|
|
158
170
|
/**
|
|
159
171
|
* 取消组织成员和组织管理员子账号的授权关系
|
|
160
172
|
*/
|
|
@@ -99,6 +99,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
99
99
|
async GetUser(req, cb) {
|
|
100
100
|
return this.request("GetUser", req, cb);
|
|
101
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* 添加共享单元部门
|
|
104
|
+
*/
|
|
105
|
+
async AddShareUnitNode(req, cb) {
|
|
106
|
+
return this.request("AddShareUnitNode", req, cb);
|
|
107
|
+
}
|
|
102
108
|
/**
|
|
103
109
|
* 开通身份中心服务(CIC)
|
|
104
110
|
*/
|
|
@@ -159,6 +165,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
159
165
|
async DescribeOrganizationNodes(req, cb) {
|
|
160
166
|
return this.request("DescribeOrganizationNodes", req, cb);
|
|
161
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* 删除共享单元部门
|
|
170
|
+
*/
|
|
171
|
+
async DeleteShareUnitNode(req, cb) {
|
|
172
|
+
return this.request("DeleteShareUnitNode", req, cb);
|
|
173
|
+
}
|
|
162
174
|
/**
|
|
163
175
|
* 创建用户
|
|
164
176
|
*/
|
|
@@ -249,6 +261,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
249
261
|
async ProvisionRoleConfiguration(req, cb) {
|
|
250
262
|
return this.request("ProvisionRoleConfiguration", req, cb);
|
|
251
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* 获取共享单元部门列表。
|
|
266
|
+
*/
|
|
267
|
+
async DescribeShareUnitNodes(req, cb) {
|
|
268
|
+
return this.request("DescribeShareUnitNodes", req, cb);
|
|
269
|
+
}
|
|
252
270
|
/**
|
|
253
271
|
* 取消组织成员和组织管理员子账号的授权关系
|
|
254
272
|
*/
|