tencentcloud-sdk-nodejs 4.0.782 → 4.0.783
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/CHANGELOG.md +205 -0
- package/SERVICE_CHANGELOG.md +290 -50
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_client.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +1 -1
- package/src/services/dasb/v20191018/dasb_models.ts +4 -0
- package/src/services/eb/v20210416/eb_client.ts +2 -2
- package/src/services/eb/v20210416/eb_models.ts +4 -4
- package/src/services/ess/v20201111/ess_client.ts +26 -26
- package/src/services/monitor/v20180724/monitor_models.ts +22 -3
- package/src/services/organization/v20210331/organization_client.ts +216 -77
- package/src/services/organization/v20210331/organization_models.ts +1351 -830
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +3 -3
- package/src/services/sts/v20180813/sts_models.ts +3 -4
- package/src/services/vpc/v20170312/vpc_models.ts +4 -0
- package/src/services/wedata/v20210820/wedata_models.ts +74 -11
- package/src/services/weilingwith/v20230427/weilingwith_models.ts +4 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_client.d.ts +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_client.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
- package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +4 -0
- package/tencentcloud/services/eb/v20210416/eb_client.d.ts +2 -2
- package/tencentcloud/services/eb/v20210416/eb_client.js +2 -2
- package/tencentcloud/services/eb/v20210416/eb_models.d.ts +4 -4
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +26 -26
- package/tencentcloud/services/ess/v20201111/ess_client.js +26 -26
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +22 -3
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +51 -7
- package/tencentcloud/services/organization/v20210331/organization_client.js +75 -9
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +1326 -834
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +3 -3
- package/tencentcloud/services/sts/v20180813/sts_models.d.ts +3 -4
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +4 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +74 -11
- package/tencentcloud/services/weilingwith/v20230427/weilingwith_models.d.ts +4 -0
- package/test/organization.v20210331.test.js +116 -6
|
@@ -2530,11 +2530,11 @@ export interface DescribeProductConfigResponse {
|
|
|
2530
2530
|
/**
|
|
2531
2531
|
* 规格信息数组
|
|
2532
2532
|
*/
|
|
2533
|
-
SpecInfoList
|
|
2533
|
+
SpecInfoList?: Array<SpecInfo>;
|
|
2534
2534
|
/**
|
|
2535
2535
|
* 返回总共多少条数据
|
|
2536
2536
|
*/
|
|
2537
|
-
TotalCount
|
|
2537
|
+
TotalCount?: number;
|
|
2538
2538
|
/**
|
|
2539
2539
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2540
2540
|
*/
|
|
@@ -4333,7 +4333,7 @@ export interface DescribeProductConfigRequest {
|
|
|
4333
4333
|
*/
|
|
4334
4334
|
Zone: string;
|
|
4335
4335
|
/**
|
|
4336
|
-
* 购买实例的类型 HA
|
|
4336
|
+
* 购买实例的类型 HA-本地盘高可用(包括双机高可用,alwaysOn集群),RO-本地盘只读副本,SI-云盘版单节点,BI-商业智能服务,cvmHA-云盘版高可用,cvmRO-云盘版只读副本
|
|
4337
4337
|
*/
|
|
4338
4338
|
InstanceType?: string;
|
|
4339
4339
|
}
|
|
@@ -156,11 +156,10 @@ export interface GetFederationTokenRequest {
|
|
|
156
156
|
*/
|
|
157
157
|
Name: string;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
160
|
-
注意:
|
|
159
|
+
* 注意:
|
|
161
160
|
1、策略语法参照[ CAM 策略语法](https://cloud.tencent.com/document/product/598/10603)。
|
|
162
161
|
2、策略中不能包含 principal 元素。
|
|
163
|
-
3、该参数需要做urlencode
|
|
162
|
+
3、该参数需要做urlencode,服务端会对该字段做urldecode, 并按处理后Policy授予临时访问凭证权限,请按规范传入参数。
|
|
164
163
|
*/
|
|
165
164
|
Policy: string;
|
|
166
165
|
/**
|
|
@@ -256,7 +255,7 @@ export interface AssumeRoleRequest {
|
|
|
256
255
|
/**
|
|
257
256
|
* 策略描述
|
|
258
257
|
注意:
|
|
259
|
-
1
|
|
258
|
+
1、该参数需要做urlencode,服务端会对该字段做urldecode, 并按处理后Policy授予临时访问凭证权限,请按规范传入参数。(如果通过 GET 方法请求云 API,发送请求前,所有参数都需要按照[云 API 规范](https://cloud.tencent.com/document/api/598/33159#1.-.E6.8B.BC.E6.8E.A5.E8.A7.84.E8.8C.83.E8.AF.B7.E6.B1.82.E4.B8.B2)再 urlencode 一次)。
|
|
260
259
|
2、策略语法参照[ CAM 策略语法](https://cloud.tencent.com/document/product/598/10603)。
|
|
261
260
|
3、策略中不能包含 principal 元素。
|
|
262
261
|
*/
|
|
@@ -9533,6 +9533,10 @@ export interface DescribeUsedIpAddressRequest {
|
|
|
9533
9533
|
* 查询是否占用的ip列表,ip需要在vpc或子网内。最多允许一次查询100个IP。
|
|
9534
9534
|
*/
|
|
9535
9535
|
IpAddresses?: Array<string>;
|
|
9536
|
+
/**
|
|
9537
|
+
* 过滤条件,不支持同时指定IpAddresses和Filters参数。 支持的过滤条件如下: <li>ip-addresses:IP地址。</li> <li>resource-id:资源ID。</li>
|
|
9538
|
+
*/
|
|
9539
|
+
Filters?: Array<Filter>;
|
|
9536
9540
|
/**
|
|
9537
9541
|
* 偏移量,默认为0。
|
|
9538
9542
|
*/
|
|
@@ -626,6 +626,10 @@ export interface CreateDataSourceRequest {
|
|
|
626
626
|
* cos region
|
|
627
627
|
*/
|
|
628
628
|
COSRegion?: string;
|
|
629
|
+
/**
|
|
630
|
+
* 连接测试结果
|
|
631
|
+
*/
|
|
632
|
+
ConnectResult?: string;
|
|
629
633
|
}
|
|
630
634
|
/**
|
|
631
635
|
* 集成节点schema映射
|
|
@@ -1620,11 +1624,6 @@ export interface ColumnLineageInfo {
|
|
|
1620
1624
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1621
1625
|
*/
|
|
1622
1626
|
Id: string;
|
|
1623
|
-
/**
|
|
1624
|
-
* 由中心节点出发的路径信息
|
|
1625
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1626
|
-
*/
|
|
1627
|
-
PrefixPath: string;
|
|
1628
1627
|
/**
|
|
1629
1628
|
* 数据源ID
|
|
1630
1629
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -1700,6 +1699,11 @@ export interface ColumnLineageInfo {
|
|
|
1700
1699
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1701
1700
|
*/
|
|
1702
1701
|
Description?: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* 由中心节点出发的路径信息
|
|
1704
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1705
|
+
*/
|
|
1706
|
+
PrefixPath?: string;
|
|
1703
1707
|
/**
|
|
1704
1708
|
* 创建时间
|
|
1705
1709
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -4625,11 +4629,6 @@ export interface TableLineageInfo {
|
|
|
4625
4629
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4626
4630
|
*/
|
|
4627
4631
|
MetastoreType: string;
|
|
4628
|
-
/**
|
|
4629
|
-
* 由中心节点到该节点的路径
|
|
4630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4631
|
-
*/
|
|
4632
|
-
PrefixPath: string;
|
|
4633
4632
|
/**
|
|
4634
4633
|
* 空间id
|
|
4635
4634
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -4700,6 +4699,11 @@ export interface TableLineageInfo {
|
|
|
4700
4699
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4701
4700
|
*/
|
|
4702
4701
|
Description?: string;
|
|
4702
|
+
/**
|
|
4703
|
+
* 由中心节点到该节点的路径
|
|
4704
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4705
|
+
*/
|
|
4706
|
+
PrefixPath?: string;
|
|
4703
4707
|
/**
|
|
4704
4708
|
* 血缘创建时间
|
|
4705
4709
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -4715,6 +4719,11 @@ export interface TableLineageInfo {
|
|
|
4715
4719
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4716
4720
|
*/
|
|
4717
4721
|
Tasks?: Array<string>;
|
|
4722
|
+
/**
|
|
4723
|
+
* 模块/应用类型
|
|
4724
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4725
|
+
*/
|
|
4726
|
+
ChannelType?: string;
|
|
4718
4727
|
}
|
|
4719
4728
|
/**
|
|
4720
4729
|
* DescribeWorkflowTaskCount返回参数结构体
|
|
@@ -6374,6 +6383,10 @@ export interface DescribeBaselineInstanceDagRequest {
|
|
|
6374
6383
|
* 向上展开层级
|
|
6375
6384
|
*/
|
|
6376
6385
|
Level?: number;
|
|
6386
|
+
/**
|
|
6387
|
+
* 保障任务id
|
|
6388
|
+
*/
|
|
6389
|
+
PromiseTaskId?: string;
|
|
6377
6390
|
}
|
|
6378
6391
|
/**
|
|
6379
6392
|
* DescribeIntegrationStatisticsInstanceTrend返回参数结构体
|
|
@@ -8817,6 +8830,10 @@ export interface DescribeBaselineAllTaskDagRequest {
|
|
|
8817
8830
|
* 1
|
|
8818
8831
|
*/
|
|
8819
8832
|
ProjectId: string;
|
|
8833
|
+
/**
|
|
8834
|
+
* 1
|
|
8835
|
+
*/
|
|
8836
|
+
BaselineTaskId?: string;
|
|
8820
8837
|
}
|
|
8821
8838
|
/**
|
|
8822
8839
|
* 任务依赖的边信息
|
|
@@ -17246,6 +17263,10 @@ export interface DescribeTaskByStatusReportRequest {
|
|
|
17246
17263
|
* 无
|
|
17247
17264
|
*/
|
|
17248
17265
|
InCharge?: string;
|
|
17266
|
+
/**
|
|
17267
|
+
* 工作流ID
|
|
17268
|
+
*/
|
|
17269
|
+
WorkflowId?: string;
|
|
17249
17270
|
}
|
|
17250
17271
|
/**
|
|
17251
17272
|
* 质量评分趋势
|
|
@@ -17716,6 +17737,10 @@ export interface DescribeSchedulerTaskCntByStatusRequest {
|
|
|
17716
17737
|
* 1
|
|
17717
17738
|
*/
|
|
17718
17739
|
InCharge?: string;
|
|
17740
|
+
/**
|
|
17741
|
+
* 工作流ID
|
|
17742
|
+
*/
|
|
17743
|
+
WorkflowId?: string;
|
|
17719
17744
|
}
|
|
17720
17745
|
/**
|
|
17721
17746
|
* DescribeInstances请求参数结构体
|
|
@@ -20079,6 +20104,11 @@ export interface BaselineTaskInstanceDto {
|
|
|
20079
20104
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
20080
20105
|
*/
|
|
20081
20106
|
AppId?: string;
|
|
20107
|
+
/**
|
|
20108
|
+
* 关键路径依赖
|
|
20109
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20110
|
+
*/
|
|
20111
|
+
CriticalDependency?: string;
|
|
20082
20112
|
}
|
|
20083
20113
|
/**
|
|
20084
20114
|
* 任务实例集合
|
|
@@ -20441,6 +20471,11 @@ export interface RuntimeInstanceCntTop {
|
|
|
20441
20471
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
20442
20472
|
*/
|
|
20443
20473
|
CurRunTime?: string;
|
|
20474
|
+
/**
|
|
20475
|
+
* 等待调度耗时
|
|
20476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20477
|
+
*/
|
|
20478
|
+
WaitScheduleTime?: number;
|
|
20444
20479
|
}
|
|
20445
20480
|
/**
|
|
20446
20481
|
* DescribeBelongTo请求参数结构体
|
|
@@ -22546,6 +22581,10 @@ export interface DescribeStatisticInstanceStatusTrendOpsRequest {
|
|
|
22546
22581
|
* 1
|
|
22547
22582
|
*/
|
|
22548
22583
|
AverageWindowSize?: number;
|
|
22584
|
+
/**
|
|
22585
|
+
* 工作流ID
|
|
22586
|
+
*/
|
|
22587
|
+
WorkflowId?: string;
|
|
22549
22588
|
}
|
|
22550
22589
|
/**
|
|
22551
22590
|
* DescribeEventCases返回参数结构体
|
|
@@ -22829,7 +22868,7 @@ export interface CreateDataSourceResponse {
|
|
|
22829
22868
|
* 主键ID
|
|
22830
22869
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
22831
22870
|
*/
|
|
22832
|
-
Data
|
|
22871
|
+
Data?: number;
|
|
22833
22872
|
/**
|
|
22834
22873
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
22835
22874
|
*/
|
|
@@ -23547,6 +23586,10 @@ export interface DescribeSchedulerInstanceStatusRequest {
|
|
|
23547
23586
|
* 责任人
|
|
23548
23587
|
*/
|
|
23549
23588
|
InCharge?: string;
|
|
23589
|
+
/**
|
|
23590
|
+
* 工作流ID
|
|
23591
|
+
*/
|
|
23592
|
+
WorkflowId?: string;
|
|
23550
23593
|
}
|
|
23551
23594
|
/**
|
|
23552
23595
|
* DescribeScheduleInstances请求参数结构体
|
|
@@ -23758,6 +23801,18 @@ export interface DescribeSchedulerRunTimeInstanceCntByStatusRequest {
|
|
|
23758
23801
|
* 1
|
|
23759
23802
|
*/
|
|
23760
23803
|
InCharge?: string;
|
|
23804
|
+
/**
|
|
23805
|
+
* 工作流ID
|
|
23806
|
+
*/
|
|
23807
|
+
WorkflowId?: string;
|
|
23808
|
+
/**
|
|
23809
|
+
* 排序字段
|
|
23810
|
+
*/
|
|
23811
|
+
SortItem?: string;
|
|
23812
|
+
/**
|
|
23813
|
+
* 升序降序
|
|
23814
|
+
*/
|
|
23815
|
+
SortType?: string;
|
|
23761
23816
|
}
|
|
23762
23817
|
/**
|
|
23763
23818
|
* map
|
|
@@ -24471,6 +24526,10 @@ export interface DescribeTaskByCycleRequest {
|
|
|
24471
24526
|
* 1
|
|
24472
24527
|
*/
|
|
24473
24528
|
InCharge?: string;
|
|
24529
|
+
/**
|
|
24530
|
+
* 工作流ID
|
|
24531
|
+
*/
|
|
24532
|
+
WorkflowId?: string;
|
|
24474
24533
|
}
|
|
24475
24534
|
/**
|
|
24476
24535
|
* TriggerDsEvent请求参数结构体
|
|
@@ -25957,6 +26016,10 @@ export interface DescribeBaselineInstanceGanttRequest {
|
|
|
25957
26016
|
* 项目id
|
|
25958
26017
|
*/
|
|
25959
26018
|
ProjectId: string;
|
|
26019
|
+
/**
|
|
26020
|
+
* 保障任务id
|
|
26021
|
+
*/
|
|
26022
|
+
PromiseTaskId?: string;
|
|
25960
26023
|
}
|
|
25961
26024
|
/**
|
|
25962
26025
|
* 包含层级信息的函数
|
|
@@ -48,6 +48,16 @@ it("organization.v20210331.ListOrganizationIdentity", async function () {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
+
it("organization.v20210331.UpdateShareUnit", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.UpdateShareUnit({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
51
61
|
it("organization.v20210331.UpdateOrganizationMember", async function () {
|
|
52
62
|
try {
|
|
53
63
|
const data = await client.UpdateOrganizationMember({})
|
|
@@ -68,6 +78,16 @@ it("organization.v20210331.DescribeOrganizationMemberAuthAccounts", async functi
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
81
|
+
it("organization.v20210331.DescribeShareUnitResources", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DescribeShareUnitResources({})
|
|
84
|
+
expect(data).to.be.ok
|
|
85
|
+
} catch(error) {
|
|
86
|
+
expect(error.requestId).to.be.ok
|
|
87
|
+
expect(error.code).to.be.ok
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
71
91
|
it("organization.v20210331.DeleteOrganizationMembersPolicy", async function () {
|
|
72
92
|
try {
|
|
73
93
|
const data = await client.DeleteOrganizationMembersPolicy({})
|
|
@@ -98,6 +118,16 @@ it("organization.v20210331.UpdateOrganizationMemberEmailBind", async function ()
|
|
|
98
118
|
}
|
|
99
119
|
})
|
|
100
120
|
|
|
121
|
+
it("organization.v20210331.DescribeShareUnitMembers", async function () {
|
|
122
|
+
try {
|
|
123
|
+
const data = await client.DescribeShareUnitMembers({})
|
|
124
|
+
expect(data).to.be.ok
|
|
125
|
+
} catch(error) {
|
|
126
|
+
expect(error.requestId).to.be.ok
|
|
127
|
+
expect(error.code).to.be.ok
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
|
|
101
131
|
it("organization.v20210331.DescribeOrganizationMemberAuthIdentities", async function () {
|
|
102
132
|
try {
|
|
103
133
|
const data = await client.DescribeOrganizationMemberAuthIdentities({})
|
|
@@ -118,9 +148,9 @@ it("organization.v20210331.UpdateOrganizationNode", async function () {
|
|
|
118
148
|
}
|
|
119
149
|
})
|
|
120
150
|
|
|
121
|
-
it("organization.v20210331.
|
|
151
|
+
it("organization.v20210331.DeleteShareUnitMembers", async function () {
|
|
122
152
|
try {
|
|
123
|
-
const data = await client.
|
|
153
|
+
const data = await client.DeleteShareUnitMembers({})
|
|
124
154
|
expect(data).to.be.ok
|
|
125
155
|
} catch(error) {
|
|
126
156
|
expect(error.requestId).to.be.ok
|
|
@@ -138,6 +168,16 @@ it("organization.v20210331.DeleteOrganizationMembers", async function () {
|
|
|
138
168
|
}
|
|
139
169
|
})
|
|
140
170
|
|
|
171
|
+
it("organization.v20210331.UpdateOrganizationIdentity", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.UpdateOrganizationIdentity({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
141
181
|
it("organization.v20210331.DescribeOrganizationFinancialByMonth", async function () {
|
|
142
182
|
try {
|
|
143
183
|
const data = await client.DescribeOrganizationFinancialByMonth({})
|
|
@@ -168,6 +208,26 @@ it("organization.v20210331.DeleteOrganizationNodes", async function () {
|
|
|
168
208
|
}
|
|
169
209
|
})
|
|
170
210
|
|
|
211
|
+
it("organization.v20210331.DeleteShareUnitResources", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.DeleteShareUnitResources({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
221
|
+
it("organization.v20210331.DescribeShareUnits", async function () {
|
|
222
|
+
try {
|
|
223
|
+
const data = await client.DescribeShareUnits({})
|
|
224
|
+
expect(data).to.be.ok
|
|
225
|
+
} catch(error) {
|
|
226
|
+
expect(error.requestId).to.be.ok
|
|
227
|
+
expect(error.code).to.be.ok
|
|
228
|
+
}
|
|
229
|
+
})
|
|
230
|
+
|
|
171
231
|
it("organization.v20210331.DescribeOrganizationMemberPolicies", async function () {
|
|
172
232
|
try {
|
|
173
233
|
const data = await client.DescribeOrganizationMemberPolicies({})
|
|
@@ -208,9 +268,19 @@ it("organization.v20210331.DescribeOrganizationFinancialByMember", async functio
|
|
|
208
268
|
}
|
|
209
269
|
})
|
|
210
270
|
|
|
211
|
-
it("organization.v20210331.
|
|
271
|
+
it("organization.v20210331.CreateOrganizationMemberAuthIdentity", async function () {
|
|
212
272
|
try {
|
|
213
|
-
const data = await client.
|
|
273
|
+
const data = await client.CreateOrganizationMemberAuthIdentity({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
281
|
+
it("organization.v20210331.AddShareUnitResources", async function () {
|
|
282
|
+
try {
|
|
283
|
+
const data = await client.AddShareUnitResources({})
|
|
214
284
|
expect(data).to.be.ok
|
|
215
285
|
} catch(error) {
|
|
216
286
|
expect(error.requestId).to.be.ok
|
|
@@ -228,6 +298,16 @@ it("organization.v20210331.CreateOrganizationMembersPolicy", async function () {
|
|
|
228
298
|
}
|
|
229
299
|
})
|
|
230
300
|
|
|
301
|
+
it("organization.v20210331.DescribeShareAreas", async function () {
|
|
302
|
+
try {
|
|
303
|
+
const data = await client.DescribeShareAreas({})
|
|
304
|
+
expect(data).to.be.ok
|
|
305
|
+
} catch(error) {
|
|
306
|
+
expect(error.requestId).to.be.ok
|
|
307
|
+
expect(error.code).to.be.ok
|
|
308
|
+
}
|
|
309
|
+
})
|
|
310
|
+
|
|
231
311
|
it("organization.v20210331.DescribeOrganization", async function () {
|
|
232
312
|
try {
|
|
233
313
|
const data = await client.DescribeOrganization({})
|
|
@@ -248,9 +328,9 @@ it("organization.v20210331.MoveOrganizationNodeMembers", async function () {
|
|
|
248
328
|
}
|
|
249
329
|
})
|
|
250
330
|
|
|
251
|
-
it("organization.v20210331.
|
|
331
|
+
it("organization.v20210331.DeleteShareUnit", async function () {
|
|
252
332
|
try {
|
|
253
|
-
const data = await client.
|
|
333
|
+
const data = await client.DeleteShareUnit({})
|
|
254
334
|
expect(data).to.be.ok
|
|
255
335
|
} catch(error) {
|
|
256
336
|
expect(error.requestId).to.be.ok
|
|
@@ -318,6 +398,16 @@ it("organization.v20210331.BindOrganizationMemberAuthAccount", async function ()
|
|
|
318
398
|
}
|
|
319
399
|
})
|
|
320
400
|
|
|
401
|
+
it("organization.v20210331.AddShareUnit", async function () {
|
|
402
|
+
try {
|
|
403
|
+
const data = await client.AddShareUnit({})
|
|
404
|
+
expect(data).to.be.ok
|
|
405
|
+
} catch(error) {
|
|
406
|
+
expect(error.requestId).to.be.ok
|
|
407
|
+
expect(error.code).to.be.ok
|
|
408
|
+
}
|
|
409
|
+
})
|
|
410
|
+
|
|
321
411
|
it("organization.v20210331.DescribeOrganizationFinancialByProduct", async function () {
|
|
322
412
|
try {
|
|
323
413
|
const data = await client.DescribeOrganizationFinancialByProduct({})
|
|
@@ -338,6 +428,16 @@ it("organization.v20210331.DescribeOrganizationAuthNode", async function () {
|
|
|
338
428
|
}
|
|
339
429
|
})
|
|
340
430
|
|
|
431
|
+
it("organization.v20210331.AddShareUnitMembers", async function () {
|
|
432
|
+
try {
|
|
433
|
+
const data = await client.AddShareUnitMembers({})
|
|
434
|
+
expect(data).to.be.ok
|
|
435
|
+
} catch(error) {
|
|
436
|
+
expect(error.requestId).to.be.ok
|
|
437
|
+
expect(error.code).to.be.ok
|
|
438
|
+
}
|
|
439
|
+
})
|
|
440
|
+
|
|
341
441
|
it("organization.v20210331.DescribeOrganizationNodes", async function () {
|
|
342
442
|
try {
|
|
343
443
|
const data = await client.DescribeOrganizationNodes({})
|
|
@@ -348,6 +448,16 @@ it("organization.v20210331.DescribeOrganizationNodes", async function () {
|
|
|
348
448
|
}
|
|
349
449
|
})
|
|
350
450
|
|
|
451
|
+
it("organization.v20210331.CreateOrganization", async function () {
|
|
452
|
+
try {
|
|
453
|
+
const data = await client.CreateOrganization({})
|
|
454
|
+
expect(data).to.be.ok
|
|
455
|
+
} catch(error) {
|
|
456
|
+
expect(error.requestId).to.be.ok
|
|
457
|
+
expect(error.code).to.be.ok
|
|
458
|
+
}
|
|
459
|
+
})
|
|
460
|
+
|
|
351
461
|
it("organization.v20210331.CreateOrganizationMemberPolicy", async function () {
|
|
352
462
|
try {
|
|
353
463
|
const data = await client.CreateOrganizationMemberPolicy({})
|