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
|
@@ -1,915 +1,1453 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* DescribeShareUnitResources返回参数结构体
|
|
3
3
|
*/
|
|
4
|
-
export interface
|
|
4
|
+
export interface DescribeShareUnitResourcesResponse {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* 总数目。
|
|
7
7
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8
8
|
*/
|
|
9
|
-
|
|
9
|
+
Total?: number;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 共享单元资源列表。
|
|
12
12
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13
13
|
*/
|
|
14
|
-
|
|
14
|
+
Items?: Array<ShareUnitResource>;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17
|
+
*/
|
|
18
|
+
RequestId?: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* UpdateOrganizationIdentity请求参数结构体
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateOrganizationIdentityRequest {
|
|
24
|
+
/**
|
|
25
|
+
* 身份ID
|
|
26
|
+
*/
|
|
27
|
+
IdentityId: number;
|
|
28
|
+
/**
|
|
29
|
+
* 身份描述
|
|
30
|
+
*/
|
|
31
|
+
Description: string;
|
|
32
|
+
/**
|
|
33
|
+
* 身份策略
|
|
34
|
+
*/
|
|
35
|
+
IdentityPolicy: Array<IdentityPolicy>;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* DeleteOrganization请求参数结构体
|
|
39
|
+
*/
|
|
40
|
+
export declare type DeleteOrganizationRequest = null;
|
|
41
|
+
/**
|
|
42
|
+
* ListOrganizationIdentity请求参数结构体
|
|
43
|
+
*/
|
|
44
|
+
export interface ListOrganizationIdentityRequest {
|
|
45
|
+
/**
|
|
46
|
+
* 偏移量。取值是limit的整数倍。默认值 : 0。
|
|
47
|
+
*/
|
|
48
|
+
Offset: number;
|
|
49
|
+
/**
|
|
50
|
+
* 限制数目。取值范围:1~50。默认值:10。
|
|
51
|
+
*/
|
|
52
|
+
Limit: number;
|
|
53
|
+
/**
|
|
54
|
+
* 名称搜索关键字。
|
|
55
|
+
*/
|
|
56
|
+
SearchKey?: string;
|
|
57
|
+
/**
|
|
58
|
+
* 身份ID搜索。
|
|
59
|
+
*/
|
|
60
|
+
IdentityId?: number;
|
|
61
|
+
/**
|
|
62
|
+
* 身份类型。取值范围 1-预设, 2-自定义
|
|
63
|
+
*/
|
|
64
|
+
IdentityType?: number;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* DeleteOrganizationMembers请求参数结构体
|
|
68
|
+
*/
|
|
69
|
+
export interface DeleteOrganizationMembersRequest {
|
|
70
|
+
/**
|
|
71
|
+
* 被删除成员的UIN列表。
|
|
72
|
+
*/
|
|
73
|
+
MemberUin: Array<number | bigint>;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* CreateOrganization返回参数结构体
|
|
77
|
+
*/
|
|
78
|
+
export interface CreateOrganizationResponse {
|
|
79
|
+
/**
|
|
80
|
+
* 企业组织ID
|
|
81
|
+
*/
|
|
82
|
+
OrgId: number;
|
|
83
|
+
/**
|
|
84
|
+
* 创建者昵称
|
|
85
|
+
*/
|
|
86
|
+
NickName: string;
|
|
87
|
+
/**
|
|
88
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
89
|
+
*/
|
|
90
|
+
RequestId?: string;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* AddShareUnitResources返回参数结构体
|
|
94
|
+
*/
|
|
95
|
+
export interface AddShareUnitResourcesResponse {
|
|
96
|
+
/**
|
|
97
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
98
|
+
*/
|
|
99
|
+
RequestId?: string;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* AddOrganizationNode返回参数结构体
|
|
103
|
+
*/
|
|
104
|
+
export interface AddOrganizationNodeResponse {
|
|
105
|
+
/**
|
|
106
|
+
* 节点ID。
|
|
107
|
+
*/
|
|
108
|
+
NodeId: number;
|
|
109
|
+
/**
|
|
110
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
111
|
+
*/
|
|
112
|
+
RequestId?: string;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* DescribeOrganizationFinancialByMonth返回参数结构体
|
|
116
|
+
*/
|
|
117
|
+
export interface DescribeOrganizationFinancialByMonthResponse {
|
|
118
|
+
/**
|
|
119
|
+
* 产品消耗详情。
|
|
17
120
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
18
121
|
*/
|
|
19
|
-
|
|
122
|
+
Items?: Array<OrgFinancialByMonth>;
|
|
20
123
|
/**
|
|
21
|
-
*
|
|
124
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
125
|
+
*/
|
|
126
|
+
RequestId?: string;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* 按月获取组织财务信息
|
|
130
|
+
*/
|
|
131
|
+
export interface OrgFinancialByMonth {
|
|
132
|
+
/**
|
|
133
|
+
* 记录ID。
|
|
22
134
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23
135
|
*/
|
|
24
|
-
|
|
136
|
+
Id: number;
|
|
25
137
|
/**
|
|
26
|
-
*
|
|
138
|
+
* 月份,格式:yyyy-mm,示例:2021-01。
|
|
27
139
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
28
140
|
*/
|
|
29
|
-
|
|
141
|
+
Month: string;
|
|
30
142
|
/**
|
|
31
|
-
*
|
|
143
|
+
* 消耗金额,单元:元。
|
|
32
144
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
33
145
|
*/
|
|
34
|
-
|
|
146
|
+
TotalCost: number;
|
|
35
147
|
/**
|
|
36
|
-
*
|
|
148
|
+
* 比上月增长率%。正数增长,负数下降,空值无法统计。
|
|
37
149
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
38
150
|
*/
|
|
39
|
-
|
|
151
|
+
GrowthRate?: string;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* DeleteShareUnit返回参数结构体
|
|
155
|
+
*/
|
|
156
|
+
export interface DeleteShareUnitResponse {
|
|
40
157
|
/**
|
|
41
|
-
*
|
|
158
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
159
|
+
*/
|
|
160
|
+
RequestId?: string;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* DeleteShareUnitMembers返回参数结构体
|
|
164
|
+
*/
|
|
165
|
+
export interface DeleteShareUnitMembersResponse {
|
|
166
|
+
/**
|
|
167
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
168
|
+
*/
|
|
169
|
+
RequestId?: string;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* CreateOrganizationIdentity请求参数结构体
|
|
173
|
+
*/
|
|
174
|
+
export interface CreateOrganizationIdentityRequest {
|
|
175
|
+
/**
|
|
176
|
+
* 身份名称
|
|
177
|
+
*/
|
|
178
|
+
IdentityAliasName: string;
|
|
179
|
+
/**
|
|
180
|
+
* 身份策略
|
|
181
|
+
*/
|
|
182
|
+
IdentityPolicy: Array<IdentityPolicy>;
|
|
183
|
+
/**
|
|
184
|
+
* 身份描述
|
|
185
|
+
*/
|
|
186
|
+
Description?: string;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* DescribeOrganization返回参数结构体
|
|
190
|
+
*/
|
|
191
|
+
export interface DescribeOrganizationResponse {
|
|
192
|
+
/**
|
|
193
|
+
* 企业组织ID。
|
|
42
194
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
43
195
|
*/
|
|
44
|
-
|
|
196
|
+
OrgId?: number;
|
|
45
197
|
/**
|
|
46
|
-
*
|
|
198
|
+
* 创建者UIN。
|
|
47
199
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
48
200
|
*/
|
|
49
|
-
|
|
201
|
+
HostUin?: number;
|
|
50
202
|
/**
|
|
51
|
-
*
|
|
203
|
+
* 创建者昵称。
|
|
204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
205
|
+
*/
|
|
206
|
+
NickName?: string;
|
|
207
|
+
/**
|
|
208
|
+
* 企业组织类型。
|
|
209
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
210
|
+
*/
|
|
211
|
+
OrgType?: number;
|
|
212
|
+
/**
|
|
213
|
+
* 是否组织管理员。是:true ,否:false
|
|
214
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
215
|
+
*/
|
|
216
|
+
IsManager?: boolean;
|
|
217
|
+
/**
|
|
218
|
+
* 策略类型。财务管理:Financial
|
|
219
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
220
|
+
*/
|
|
221
|
+
OrgPolicyType?: string;
|
|
222
|
+
/**
|
|
223
|
+
* 策略名。
|
|
224
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
225
|
+
*/
|
|
226
|
+
OrgPolicyName?: string;
|
|
227
|
+
/**
|
|
228
|
+
* 成员财务权限列表。
|
|
229
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
230
|
+
*/
|
|
231
|
+
OrgPermission?: Array<OrgPermission>;
|
|
232
|
+
/**
|
|
233
|
+
* 组织根节点ID。
|
|
234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
235
|
+
*/
|
|
236
|
+
RootNodeId?: number;
|
|
237
|
+
/**
|
|
238
|
+
* 组织创建时间。
|
|
239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
240
|
+
*/
|
|
241
|
+
CreateTime?: string;
|
|
242
|
+
/**
|
|
243
|
+
* 成员加入时间。
|
|
244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
245
|
+
*/
|
|
246
|
+
JoinTime?: string;
|
|
247
|
+
/**
|
|
248
|
+
* 成员是否允许退出。允许:Allow,不允许:Denied
|
|
249
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
250
|
+
*/
|
|
251
|
+
IsAllowQuit?: string;
|
|
252
|
+
/**
|
|
253
|
+
* 代付者Uin。
|
|
254
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
255
|
+
*/
|
|
256
|
+
PayUin?: string;
|
|
257
|
+
/**
|
|
258
|
+
* 代付者名称。
|
|
259
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
260
|
+
*/
|
|
261
|
+
PayName?: string;
|
|
262
|
+
/**
|
|
263
|
+
* 是否可信服务管理员。是:true,否:false
|
|
264
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
265
|
+
*/
|
|
266
|
+
IsAssignManager?: boolean;
|
|
267
|
+
/**
|
|
268
|
+
* 是否实名主体管理员。是:true,否:false
|
|
269
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
270
|
+
*/
|
|
271
|
+
IsAuthManager?: boolean;
|
|
272
|
+
/**
|
|
273
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
274
|
+
*/
|
|
275
|
+
RequestId?: string;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* DescribeOrganizationMemberPolicies请求参数结构体
|
|
279
|
+
*/
|
|
280
|
+
export interface DescribeOrganizationMemberPoliciesRequest {
|
|
281
|
+
/**
|
|
282
|
+
* 偏移量。
|
|
283
|
+
*/
|
|
284
|
+
Offset: number;
|
|
285
|
+
/**
|
|
286
|
+
* 限制数目。最大50
|
|
287
|
+
*/
|
|
288
|
+
Limit: number;
|
|
289
|
+
/**
|
|
290
|
+
* 成员Uin。
|
|
291
|
+
*/
|
|
292
|
+
MemberUin: number;
|
|
293
|
+
/**
|
|
294
|
+
* 搜索关键字。可用于策略名或描述搜索
|
|
295
|
+
*/
|
|
296
|
+
SearchKey?: string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* DeleteOrganizationMembersPolicy返回参数结构体
|
|
300
|
+
*/
|
|
301
|
+
export interface DeleteOrganizationMembersPolicyResponse {
|
|
302
|
+
/**
|
|
303
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
304
|
+
*/
|
|
305
|
+
RequestId?: string;
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* 共享单元成员
|
|
309
|
+
*/
|
|
310
|
+
export interface ShareUnitMember {
|
|
311
|
+
/**
|
|
312
|
+
* 共享成员Uin。
|
|
313
|
+
*/
|
|
314
|
+
ShareMemberUin?: number;
|
|
315
|
+
/**
|
|
316
|
+
* 创建时间。
|
|
317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
|
+
*/
|
|
319
|
+
CreateTime?: string;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* CancelOrganizationMemberAuthAccount请求参数结构体
|
|
323
|
+
*/
|
|
324
|
+
export interface CancelOrganizationMemberAuthAccountRequest {
|
|
325
|
+
/**
|
|
326
|
+
* 成员Uin。
|
|
327
|
+
*/
|
|
328
|
+
MemberUin: number;
|
|
329
|
+
/**
|
|
330
|
+
* 策略ID。
|
|
331
|
+
*/
|
|
332
|
+
PolicyId: number;
|
|
333
|
+
/**
|
|
334
|
+
* 组织子账号Uin。
|
|
335
|
+
*/
|
|
336
|
+
OrgSubAccountUin: number;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* DeleteOrganization返回参数结构体
|
|
340
|
+
*/
|
|
341
|
+
export interface DeleteOrganizationResponse {
|
|
342
|
+
/**
|
|
343
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
344
|
+
*/
|
|
345
|
+
RequestId?: string;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* 成员和子账号的授权关系
|
|
349
|
+
*/
|
|
350
|
+
export interface OrgMemberAuthAccount {
|
|
351
|
+
/**
|
|
352
|
+
* 组织子账号Uin。
|
|
353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
354
|
+
*/
|
|
355
|
+
OrgSubAccountUin: number;
|
|
356
|
+
/**
|
|
357
|
+
* 策略ID。
|
|
358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
359
|
+
*/
|
|
360
|
+
PolicyId: number;
|
|
361
|
+
/**
|
|
362
|
+
* 策略名。
|
|
363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
364
|
+
*/
|
|
365
|
+
PolicyName: string;
|
|
366
|
+
/**
|
|
367
|
+
* 身份ID。
|
|
368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
369
|
+
*/
|
|
370
|
+
IdentityId: number;
|
|
371
|
+
/**
|
|
372
|
+
* 身份角色名。
|
|
373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
374
|
+
*/
|
|
375
|
+
IdentityRoleName: string;
|
|
376
|
+
/**
|
|
377
|
+
* 身份角色别名。
|
|
378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
379
|
+
*/
|
|
380
|
+
IdentityRoleAliasName: string;
|
|
381
|
+
/**
|
|
382
|
+
* 创建时间。
|
|
52
383
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
53
384
|
*/
|
|
54
385
|
CreateTime: string;
|
|
55
386
|
/**
|
|
56
|
-
*
|
|
387
|
+
* 更新时间。
|
|
57
388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
58
389
|
*/
|
|
59
390
|
UpdateTime: string;
|
|
60
391
|
/**
|
|
61
|
-
*
|
|
392
|
+
* 子账号名称
|
|
62
393
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
63
394
|
*/
|
|
64
|
-
|
|
395
|
+
OrgSubAccountName: string;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* 成员主要信息
|
|
399
|
+
*/
|
|
400
|
+
export interface MemberMainInfo {
|
|
65
401
|
/**
|
|
66
|
-
*
|
|
402
|
+
* 成员uin
|
|
67
403
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
68
404
|
*/
|
|
69
|
-
|
|
405
|
+
MemberUin: number;
|
|
70
406
|
/**
|
|
71
|
-
*
|
|
407
|
+
* 成员名称j
|
|
72
408
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
73
409
|
*/
|
|
74
|
-
|
|
410
|
+
MemberName: string;
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* DescribeShareUnitResources请求参数结构体
|
|
414
|
+
*/
|
|
415
|
+
export interface DescribeShareUnitResourcesRequest {
|
|
75
416
|
/**
|
|
76
|
-
*
|
|
417
|
+
* 共享单元ID。
|
|
418
|
+
*/
|
|
419
|
+
UnitId: string;
|
|
420
|
+
/**
|
|
421
|
+
* 共享单元地域。
|
|
422
|
+
*/
|
|
423
|
+
Area: string;
|
|
424
|
+
/**
|
|
425
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
426
|
+
*/
|
|
427
|
+
Offset: number;
|
|
428
|
+
/**
|
|
429
|
+
* 限制数目。取值范围:1~50。
|
|
430
|
+
*/
|
|
431
|
+
Limit: number;
|
|
432
|
+
/**
|
|
433
|
+
* 搜索关键字。支持产品资源ID搜索。
|
|
434
|
+
*/
|
|
435
|
+
SearchKey?: string;
|
|
436
|
+
/**
|
|
437
|
+
* 共享资源类型。
|
|
438
|
+
*/
|
|
439
|
+
Type?: string;
|
|
440
|
+
}
|
|
441
|
+
/**
|
|
442
|
+
* DeleteShareUnitResources请求参数结构体
|
|
443
|
+
*/
|
|
444
|
+
export interface DeleteShareUnitResourcesRequest {
|
|
445
|
+
/**
|
|
446
|
+
* 共享单元ID。
|
|
447
|
+
*/
|
|
448
|
+
UnitId: string;
|
|
449
|
+
/**
|
|
450
|
+
* 共享单元地域。
|
|
451
|
+
*/
|
|
452
|
+
Area: string;
|
|
453
|
+
/**
|
|
454
|
+
* 资源类型。支持共享的资源类型。
|
|
455
|
+
*/
|
|
456
|
+
Type: string;
|
|
457
|
+
/**
|
|
458
|
+
* 共享资源列表。最大10个。
|
|
459
|
+
*/
|
|
460
|
+
Resources: Array<ShareResource>;
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* UpdateOrganizationNode请求参数结构体
|
|
464
|
+
*/
|
|
465
|
+
export interface UpdateOrganizationNodeRequest {
|
|
466
|
+
/**
|
|
467
|
+
* 节点ID。
|
|
468
|
+
*/
|
|
469
|
+
NodeId: number;
|
|
470
|
+
/**
|
|
471
|
+
* 节点名称。最大长度为40个字符,支持英文字母、数字、汉字、符号+@、&._[]-
|
|
472
|
+
*/
|
|
473
|
+
Name?: string;
|
|
474
|
+
/**
|
|
475
|
+
* 备注。
|
|
476
|
+
*/
|
|
477
|
+
Remark?: string;
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* DescribeShareAreas返回参数结构体
|
|
481
|
+
*/
|
|
482
|
+
export interface DescribeShareAreasResponse {
|
|
483
|
+
/**
|
|
484
|
+
* 详情
|
|
77
485
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
78
486
|
*/
|
|
79
|
-
|
|
487
|
+
Items?: Array<ShareArea>;
|
|
488
|
+
/**
|
|
489
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
490
|
+
*/
|
|
491
|
+
RequestId?: string;
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* DescribeOrganizationAuthNode返回参数结构体
|
|
495
|
+
*/
|
|
496
|
+
export interface DescribeOrganizationAuthNodeResponse {
|
|
497
|
+
/**
|
|
498
|
+
* 总数。
|
|
499
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
500
|
+
*/
|
|
501
|
+
Total?: number;
|
|
502
|
+
/**
|
|
503
|
+
* 条目详情。
|
|
504
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
505
|
+
*/
|
|
506
|
+
Items?: Array<AuthNode>;
|
|
507
|
+
/**
|
|
508
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
509
|
+
*/
|
|
510
|
+
RequestId?: string;
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* BindOrganizationMemberAuthAccount请求参数结构体
|
|
514
|
+
*/
|
|
515
|
+
export interface BindOrganizationMemberAuthAccountRequest {
|
|
516
|
+
/**
|
|
517
|
+
* 成员Uin。
|
|
518
|
+
*/
|
|
519
|
+
MemberUin: number;
|
|
80
520
|
/**
|
|
81
|
-
*
|
|
82
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
521
|
+
* 策略ID。可以调用DescribeOrganizationMemberPolicies获取
|
|
83
522
|
*/
|
|
84
|
-
|
|
523
|
+
PolicyId: number;
|
|
85
524
|
/**
|
|
86
|
-
*
|
|
87
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
525
|
+
* 组织管理员子账号Uin列表。最大5个
|
|
88
526
|
*/
|
|
89
|
-
|
|
527
|
+
OrgSubAccountUins: Array<number | bigint>;
|
|
90
528
|
}
|
|
91
529
|
/**
|
|
92
|
-
*
|
|
530
|
+
* DescribeShareUnits返回参数结构体
|
|
93
531
|
*/
|
|
94
|
-
export interface
|
|
532
|
+
export interface DescribeShareUnitsResponse {
|
|
95
533
|
/**
|
|
96
|
-
*
|
|
534
|
+
* 总数目。
|
|
97
535
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
98
536
|
*/
|
|
99
537
|
Total?: number;
|
|
100
538
|
/**
|
|
101
|
-
*
|
|
539
|
+
* 共享单元列表。
|
|
102
540
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103
541
|
*/
|
|
104
|
-
Items?: Array<
|
|
542
|
+
Items?: Array<ManagerShareUnit>;
|
|
105
543
|
/**
|
|
106
544
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
107
545
|
*/
|
|
108
546
|
RequestId?: string;
|
|
109
547
|
}
|
|
110
548
|
/**
|
|
111
|
-
*
|
|
549
|
+
* UpdateOrganizationMemberEmailBind返回参数结构体
|
|
112
550
|
*/
|
|
113
|
-
export interface
|
|
114
|
-
/**
|
|
115
|
-
* 权限Id
|
|
116
|
-
*/
|
|
117
|
-
Id: number;
|
|
551
|
+
export interface UpdateOrganizationMemberEmailBindResponse {
|
|
118
552
|
/**
|
|
119
|
-
*
|
|
553
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
120
554
|
*/
|
|
121
|
-
|
|
555
|
+
RequestId?: string;
|
|
122
556
|
}
|
|
123
557
|
/**
|
|
124
|
-
*
|
|
558
|
+
* DeleteOrganizationMembers返回参数结构体
|
|
125
559
|
*/
|
|
126
|
-
export interface
|
|
560
|
+
export interface DeleteOrganizationMembersResponse {
|
|
127
561
|
/**
|
|
128
|
-
*
|
|
562
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
129
563
|
*/
|
|
130
|
-
|
|
564
|
+
RequestId?: string;
|
|
131
565
|
}
|
|
132
566
|
/**
|
|
133
|
-
*
|
|
567
|
+
* 我的共享单元列表详情
|
|
134
568
|
*/
|
|
135
|
-
export interface
|
|
569
|
+
export interface ManagerShareUnit {
|
|
136
570
|
/**
|
|
137
|
-
*
|
|
138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
571
|
+
* 共享单元ID。
|
|
139
572
|
*/
|
|
140
|
-
|
|
573
|
+
UnitId?: string;
|
|
141
574
|
/**
|
|
142
|
-
*
|
|
143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
575
|
+
* 共享单元名称。
|
|
144
576
|
*/
|
|
145
|
-
|
|
577
|
+
Name?: string;
|
|
146
578
|
/**
|
|
147
|
-
*
|
|
148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
579
|
+
* 共享单元管理员Uin。
|
|
149
580
|
*/
|
|
150
|
-
|
|
581
|
+
Uin?: number;
|
|
151
582
|
/**
|
|
152
|
-
*
|
|
153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
583
|
+
* 共享单元管理员OwnerUin。
|
|
154
584
|
*/
|
|
155
|
-
|
|
585
|
+
OwnerUin?: number;
|
|
156
586
|
/**
|
|
157
|
-
*
|
|
158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
587
|
+
* 共享单元地域。
|
|
159
588
|
*/
|
|
160
|
-
|
|
589
|
+
Area?: string;
|
|
161
590
|
/**
|
|
162
591
|
* 描述。
|
|
163
592
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
164
593
|
*/
|
|
165
|
-
Description
|
|
594
|
+
Description?: string;
|
|
166
595
|
/**
|
|
167
596
|
* 创建时间。
|
|
168
597
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
169
598
|
*/
|
|
170
|
-
CreateTime
|
|
599
|
+
CreateTime?: string;
|
|
171
600
|
/**
|
|
172
|
-
*
|
|
601
|
+
* 共享单元资源数。
|
|
173
602
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
174
603
|
*/
|
|
175
|
-
|
|
604
|
+
ShareResourceNum?: number;
|
|
605
|
+
/**
|
|
606
|
+
* 共享单元成员数。
|
|
607
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
608
|
+
*/
|
|
609
|
+
ShareMemberNum?: number;
|
|
176
610
|
}
|
|
177
611
|
/**
|
|
178
|
-
*
|
|
612
|
+
* DescribeOrganizationMemberAuthIdentities请求参数结构体
|
|
179
613
|
*/
|
|
180
|
-
export interface
|
|
614
|
+
export interface DescribeOrganizationMemberAuthIdentitiesRequest {
|
|
181
615
|
/**
|
|
182
|
-
*
|
|
183
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
616
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
184
617
|
*/
|
|
185
|
-
|
|
618
|
+
Offset: number;
|
|
186
619
|
/**
|
|
187
|
-
*
|
|
188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
620
|
+
* 限制数目。取值范围:1~50,默认值:10
|
|
189
621
|
*/
|
|
190
|
-
|
|
622
|
+
Limit: number;
|
|
191
623
|
/**
|
|
192
|
-
*
|
|
193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
624
|
+
* 组织成员Uin。入参MemberUin与IdentityId至少填写一个
|
|
194
625
|
*/
|
|
195
|
-
|
|
626
|
+
MemberUin?: number;
|
|
196
627
|
/**
|
|
197
|
-
*
|
|
198
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
628
|
+
* 身份ID。入参MemberUin与IdentityId至少填写一个
|
|
199
629
|
*/
|
|
200
|
-
|
|
630
|
+
IdentityId?: number;
|
|
201
631
|
}
|
|
202
632
|
/**
|
|
203
|
-
*
|
|
633
|
+
* CreateOrganizationMemberAuthIdentity返回参数结构体
|
|
204
634
|
*/
|
|
205
|
-
export interface
|
|
635
|
+
export interface CreateOrganizationMemberAuthIdentityResponse {
|
|
206
636
|
/**
|
|
207
|
-
*
|
|
637
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
208
638
|
*/
|
|
209
|
-
|
|
639
|
+
RequestId?: string;
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
* DescribeOrganization请求参数结构体
|
|
643
|
+
*/
|
|
644
|
+
export interface DescribeOrganizationRequest {
|
|
210
645
|
/**
|
|
211
|
-
*
|
|
646
|
+
* 国际站:en,国内站:zh
|
|
212
647
|
*/
|
|
213
|
-
|
|
648
|
+
Lang?: string;
|
|
214
649
|
/**
|
|
215
|
-
*
|
|
650
|
+
* 可信服务产品简称。查询是否该可信服务管理员时必须指定
|
|
216
651
|
*/
|
|
217
|
-
|
|
652
|
+
Product?: string;
|
|
218
653
|
}
|
|
219
654
|
/**
|
|
220
|
-
*
|
|
655
|
+
* DescribeOrganizationNodes请求参数结构体
|
|
221
656
|
*/
|
|
222
|
-
export interface
|
|
657
|
+
export interface DescribeOrganizationNodesRequest {
|
|
223
658
|
/**
|
|
224
|
-
*
|
|
659
|
+
* 限制数目。最大50
|
|
225
660
|
*/
|
|
226
|
-
|
|
661
|
+
Limit: number;
|
|
227
662
|
/**
|
|
228
|
-
*
|
|
663
|
+
* 偏移量。
|
|
229
664
|
*/
|
|
230
|
-
|
|
665
|
+
Offset: number;
|
|
231
666
|
}
|
|
232
667
|
/**
|
|
233
|
-
*
|
|
668
|
+
* BindOrganizationMemberAuthAccount返回参数结构体
|
|
234
669
|
*/
|
|
235
|
-
export interface
|
|
670
|
+
export interface BindOrganizationMemberAuthAccountResponse {
|
|
236
671
|
/**
|
|
237
|
-
*
|
|
672
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
238
673
|
*/
|
|
239
|
-
|
|
674
|
+
RequestId?: string;
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* CreateOrganizationMember返回参数结构体
|
|
678
|
+
*/
|
|
679
|
+
export interface CreateOrganizationMemberResponse {
|
|
240
680
|
/**
|
|
241
|
-
*
|
|
681
|
+
* 成员Uin。
|
|
682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
242
683
|
*/
|
|
243
|
-
|
|
684
|
+
Uin?: number;
|
|
244
685
|
/**
|
|
245
|
-
*
|
|
686
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
246
687
|
*/
|
|
247
|
-
|
|
688
|
+
RequestId?: string;
|
|
248
689
|
}
|
|
249
690
|
/**
|
|
250
|
-
*
|
|
691
|
+
* MoveOrganizationNodeMembers请求参数结构体
|
|
251
692
|
*/
|
|
252
|
-
export interface
|
|
693
|
+
export interface MoveOrganizationNodeMembersRequest {
|
|
694
|
+
/**
|
|
695
|
+
* 组织节点ID。
|
|
696
|
+
*/
|
|
697
|
+
NodeId: number;
|
|
698
|
+
/**
|
|
699
|
+
* 成员UIN列表。
|
|
700
|
+
*/
|
|
701
|
+
MemberUin: Array<number | bigint>;
|
|
702
|
+
}
|
|
703
|
+
/**
|
|
704
|
+
* UpdateOrganizationMember返回参数结构体
|
|
705
|
+
*/
|
|
706
|
+
export interface UpdateOrganizationMemberResponse {
|
|
253
707
|
/**
|
|
254
708
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
255
709
|
*/
|
|
256
710
|
RequestId?: string;
|
|
257
711
|
}
|
|
258
712
|
/**
|
|
259
|
-
*
|
|
713
|
+
* 互信主体主要信息
|
|
260
714
|
*/
|
|
261
|
-
export interface
|
|
715
|
+
export interface AuthNode {
|
|
262
716
|
/**
|
|
263
|
-
*
|
|
717
|
+
* 互信主体关系ID
|
|
718
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
264
719
|
*/
|
|
265
|
-
|
|
720
|
+
RelationId: number;
|
|
266
721
|
/**
|
|
267
|
-
*
|
|
722
|
+
* 互信主体名称
|
|
723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
268
724
|
*/
|
|
269
|
-
|
|
725
|
+
AuthName: string;
|
|
270
726
|
/**
|
|
271
|
-
*
|
|
727
|
+
* 主体管理员
|
|
728
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
272
729
|
*/
|
|
273
|
-
|
|
730
|
+
Manager: MemberMainInfo;
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* DescribeOrganizationMemberEmailBind返回参数结构体
|
|
734
|
+
*/
|
|
735
|
+
export interface DescribeOrganizationMemberEmailBindResponse {
|
|
274
736
|
/**
|
|
275
|
-
*
|
|
737
|
+
* 绑定ID
|
|
738
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
276
739
|
*/
|
|
277
|
-
|
|
740
|
+
BindId: number;
|
|
278
741
|
/**
|
|
279
|
-
*
|
|
742
|
+
* 申请时间
|
|
743
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
280
744
|
*/
|
|
281
|
-
|
|
745
|
+
ApplyTime: string;
|
|
282
746
|
/**
|
|
283
|
-
*
|
|
747
|
+
* 邮箱地址
|
|
748
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
284
749
|
*/
|
|
285
|
-
|
|
750
|
+
Email: string;
|
|
751
|
+
/**
|
|
752
|
+
* 手机号
|
|
753
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
754
|
+
*/
|
|
755
|
+
Phone: string;
|
|
756
|
+
/**
|
|
757
|
+
* 绑定状态 未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
|
|
758
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
759
|
+
*/
|
|
760
|
+
BindStatus: string;
|
|
761
|
+
/**
|
|
762
|
+
* 绑定时间
|
|
763
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
764
|
+
*/
|
|
765
|
+
BindTime: string;
|
|
766
|
+
/**
|
|
767
|
+
* 失败说明
|
|
768
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
769
|
+
*/
|
|
770
|
+
Description: string;
|
|
771
|
+
/**
|
|
772
|
+
* 安全手机绑定状态 未绑定:0,已绑定:1
|
|
773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
774
|
+
*/
|
|
775
|
+
PhoneBind: number;
|
|
776
|
+
/**
|
|
777
|
+
* 国际区号
|
|
778
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
779
|
+
*/
|
|
780
|
+
CountryCode: string;
|
|
781
|
+
/**
|
|
782
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
783
|
+
*/
|
|
784
|
+
RequestId?: string;
|
|
286
785
|
}
|
|
287
786
|
/**
|
|
288
|
-
*
|
|
787
|
+
* DeleteOrganizationNodes请求参数结构体
|
|
289
788
|
*/
|
|
290
|
-
export interface
|
|
291
|
-
/**
|
|
292
|
-
* 偏移量。
|
|
293
|
-
*/
|
|
294
|
-
Offset: number;
|
|
789
|
+
export interface DeleteOrganizationNodesRequest {
|
|
295
790
|
/**
|
|
296
|
-
*
|
|
791
|
+
* 节点ID列表。
|
|
297
792
|
*/
|
|
298
|
-
|
|
793
|
+
NodeId: Array<number | bigint>;
|
|
794
|
+
}
|
|
795
|
+
/**
|
|
796
|
+
* QuitOrganization返回参数结构体
|
|
797
|
+
*/
|
|
798
|
+
export interface QuitOrganizationResponse {
|
|
299
799
|
/**
|
|
300
|
-
*
|
|
800
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
301
801
|
*/
|
|
302
|
-
|
|
802
|
+
RequestId?: string;
|
|
303
803
|
}
|
|
304
804
|
/**
|
|
305
|
-
*
|
|
805
|
+
* 组织身份策略
|
|
306
806
|
*/
|
|
307
|
-
export interface
|
|
807
|
+
export interface IdentityPolicy {
|
|
308
808
|
/**
|
|
309
|
-
*
|
|
809
|
+
* CAM预设策略ID。PolicyType 为预设策略时有效且必选
|
|
310
810
|
*/
|
|
311
|
-
|
|
811
|
+
PolicyId?: number;
|
|
312
812
|
/**
|
|
313
|
-
*
|
|
813
|
+
* CAM预设策略名称。PolicyType 为预设策略时有效且必选
|
|
314
814
|
*/
|
|
315
|
-
|
|
815
|
+
PolicyName?: string;
|
|
316
816
|
/**
|
|
317
|
-
*
|
|
817
|
+
* 策略类型。取值 1-自定义策略 2-预设策略;默认值2
|
|
818
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
819
|
*/
|
|
319
|
-
|
|
820
|
+
PolicyType?: number;
|
|
320
821
|
/**
|
|
321
|
-
*
|
|
822
|
+
* 自定义策略内容,遵循CAM策略语法。PolicyType 为自定义策略时有效且必选
|
|
823
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
322
824
|
*/
|
|
323
|
-
|
|
825
|
+
PolicyDocument?: string;
|
|
324
826
|
}
|
|
325
827
|
/**
|
|
326
|
-
*
|
|
828
|
+
* AddOrganizationMemberEmail请求参数结构体
|
|
327
829
|
*/
|
|
328
|
-
export interface
|
|
830
|
+
export interface AddOrganizationMemberEmailRequest {
|
|
329
831
|
/**
|
|
330
|
-
*
|
|
832
|
+
* 成员Uin
|
|
331
833
|
*/
|
|
332
|
-
|
|
834
|
+
MemberUin: number;
|
|
333
835
|
/**
|
|
334
|
-
*
|
|
836
|
+
* 邮箱地址
|
|
335
837
|
*/
|
|
336
|
-
|
|
838
|
+
Email: string;
|
|
337
839
|
/**
|
|
338
|
-
*
|
|
840
|
+
* 国际区号
|
|
339
841
|
*/
|
|
340
|
-
|
|
842
|
+
CountryCode: string;
|
|
341
843
|
/**
|
|
342
|
-
*
|
|
844
|
+
* 手机号
|
|
343
845
|
*/
|
|
344
|
-
|
|
846
|
+
Phone: string;
|
|
345
847
|
}
|
|
346
848
|
/**
|
|
347
|
-
*
|
|
849
|
+
* ListOrganizationIdentity返回参数结构体
|
|
348
850
|
*/
|
|
349
|
-
export interface
|
|
851
|
+
export interface ListOrganizationIdentityResponse {
|
|
350
852
|
/**
|
|
351
|
-
*
|
|
853
|
+
* 总数。
|
|
352
854
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
353
855
|
*/
|
|
354
|
-
|
|
856
|
+
Total?: number;
|
|
857
|
+
/**
|
|
858
|
+
* 条目详情。
|
|
859
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
860
|
+
*/
|
|
861
|
+
Items?: Array<OrgIdentity>;
|
|
355
862
|
/**
|
|
356
863
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
357
864
|
*/
|
|
358
865
|
RequestId?: string;
|
|
359
866
|
}
|
|
360
867
|
/**
|
|
361
|
-
*
|
|
868
|
+
* DescribeOrganizationMembers返回参数结构体
|
|
362
869
|
*/
|
|
363
|
-
export interface
|
|
870
|
+
export interface DescribeOrganizationMembersResponse {
|
|
871
|
+
/**
|
|
872
|
+
* 成员列表。
|
|
873
|
+
*/
|
|
874
|
+
Items?: Array<OrgMember>;
|
|
875
|
+
/**
|
|
876
|
+
* 总数目。
|
|
877
|
+
*/
|
|
878
|
+
Total?: number;
|
|
364
879
|
/**
|
|
365
880
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
366
881
|
*/
|
|
367
882
|
RequestId?: string;
|
|
368
883
|
}
|
|
369
884
|
/**
|
|
370
|
-
*
|
|
885
|
+
* QuitOrganization请求参数结构体
|
|
371
886
|
*/
|
|
372
|
-
export interface
|
|
887
|
+
export interface QuitOrganizationRequest {
|
|
373
888
|
/**
|
|
374
|
-
*
|
|
889
|
+
* 企业组织ID
|
|
375
890
|
*/
|
|
376
|
-
|
|
891
|
+
OrgId: number;
|
|
892
|
+
}
|
|
893
|
+
/**
|
|
894
|
+
* AddOrganizationNode请求参数结构体
|
|
895
|
+
*/
|
|
896
|
+
export interface AddOrganizationNodeRequest {
|
|
377
897
|
/**
|
|
378
|
-
*
|
|
898
|
+
* 父节点ID。可以调用DescribeOrganizationNodes获取
|
|
379
899
|
*/
|
|
380
|
-
|
|
900
|
+
ParentNodeId: number;
|
|
381
901
|
/**
|
|
382
|
-
*
|
|
902
|
+
* 节点名称。最大长度为40个字符,支持英文字母、数字、汉字、符号+@、&._[]-
|
|
383
903
|
*/
|
|
384
|
-
|
|
904
|
+
Name: string;
|
|
385
905
|
/**
|
|
386
|
-
*
|
|
906
|
+
* 备注。
|
|
387
907
|
*/
|
|
388
|
-
|
|
908
|
+
Remark?: string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* AddShareUnitMembers请求参数结构体
|
|
912
|
+
*/
|
|
913
|
+
export interface AddShareUnitMembersRequest {
|
|
389
914
|
/**
|
|
390
|
-
*
|
|
915
|
+
* 共享单元ID。
|
|
391
916
|
*/
|
|
392
|
-
|
|
917
|
+
UnitId: string;
|
|
393
918
|
/**
|
|
394
|
-
*
|
|
919
|
+
* 共享单元地域。
|
|
395
920
|
*/
|
|
396
|
-
|
|
921
|
+
Area: string;
|
|
922
|
+
/**
|
|
923
|
+
* 共享成员列表。最大10个。
|
|
924
|
+
*/
|
|
925
|
+
Members: Array<ShareMember>;
|
|
397
926
|
}
|
|
398
927
|
/**
|
|
399
|
-
*
|
|
928
|
+
* AddShareUnit请求参数结构体
|
|
400
929
|
*/
|
|
401
|
-
export interface
|
|
402
|
-
/**
|
|
403
|
-
* 成员Uin。
|
|
404
|
-
*/
|
|
405
|
-
MemberUin: number;
|
|
930
|
+
export interface AddShareUnitRequest {
|
|
406
931
|
/**
|
|
407
|
-
*
|
|
932
|
+
* 共享单元名称。仅支持大小写字母、数字、-、以及_的组合,3-128个字符。
|
|
408
933
|
*/
|
|
409
|
-
|
|
934
|
+
Name: string;
|
|
410
935
|
/**
|
|
411
|
-
*
|
|
936
|
+
* 共享单元地域。可通过接口DescribeShareAreas获取支持共享的地域。
|
|
412
937
|
*/
|
|
413
|
-
|
|
938
|
+
Area: string;
|
|
414
939
|
/**
|
|
415
|
-
*
|
|
940
|
+
* 共享单元描述。最大128个字符。
|
|
416
941
|
*/
|
|
417
942
|
Description?: string;
|
|
418
943
|
}
|
|
419
944
|
/**
|
|
420
|
-
*
|
|
945
|
+
* CreateOrganizationMember请求参数结构体
|
|
421
946
|
*/
|
|
422
|
-
export interface
|
|
947
|
+
export interface CreateOrganizationMemberRequest {
|
|
423
948
|
/**
|
|
424
|
-
*
|
|
425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
949
|
+
* 成员名称。最大长度为25个字符,支持英文字母、数字、汉字、符号+@、&._[]-:,
|
|
426
950
|
*/
|
|
427
|
-
|
|
951
|
+
Name: string;
|
|
428
952
|
/**
|
|
429
|
-
*
|
|
953
|
+
* 关系策略。取值:Financial
|
|
430
954
|
*/
|
|
431
|
-
|
|
432
|
-
}
|
|
433
|
-
/**
|
|
434
|
-
* DescribeOrganizationFinancialByMonth返回参数结构体
|
|
435
|
-
*/
|
|
436
|
-
export interface DescribeOrganizationFinancialByMonthResponse {
|
|
955
|
+
PolicyType: string;
|
|
437
956
|
/**
|
|
438
|
-
*
|
|
439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
957
|
+
* 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨、4-合并出账、5-开票、6-优惠继承、7-代付费,1、2 默认必须
|
|
440
958
|
*/
|
|
441
|
-
|
|
959
|
+
PermissionIds: Array<number | bigint>;
|
|
442
960
|
/**
|
|
443
|
-
*
|
|
961
|
+
* 成员所属部门的节点ID。可以调用DescribeOrganizationNodes获取
|
|
444
962
|
*/
|
|
445
|
-
|
|
963
|
+
NodeId: number;
|
|
964
|
+
/**
|
|
965
|
+
* 账号名称。最大长度为25个字符,支持英文字母、数字、汉字、符号+@、&._[]-:,
|
|
966
|
+
*/
|
|
967
|
+
AccountName: string;
|
|
968
|
+
/**
|
|
969
|
+
* 备注。
|
|
970
|
+
*/
|
|
971
|
+
Remark?: string;
|
|
972
|
+
/**
|
|
973
|
+
* 成员创建记录ID。创建异常重试时需要
|
|
974
|
+
*/
|
|
975
|
+
RecordId?: number;
|
|
976
|
+
/**
|
|
977
|
+
* 代付者Uin。成员代付费时需要
|
|
978
|
+
*/
|
|
979
|
+
PayUin?: string;
|
|
980
|
+
/**
|
|
981
|
+
* 成员访问身份ID列表。可以调用ListOrganizationIdentity获取,1默认支持
|
|
982
|
+
*/
|
|
983
|
+
IdentityRoleID?: Array<number | bigint>;
|
|
984
|
+
/**
|
|
985
|
+
* 认证主体关系ID。给不同主体创建成员时需要,可以调用DescribeOrganizationAuthNode获取
|
|
986
|
+
*/
|
|
987
|
+
AuthRelationId?: number;
|
|
446
988
|
}
|
|
447
989
|
/**
|
|
448
|
-
*
|
|
990
|
+
* DescribeOrganizationAuthNode请求参数结构体
|
|
449
991
|
*/
|
|
450
|
-
export interface
|
|
992
|
+
export interface DescribeOrganizationAuthNodeRequest {
|
|
993
|
+
/**
|
|
994
|
+
* 偏移量。
|
|
995
|
+
*/
|
|
996
|
+
Offset: number;
|
|
451
997
|
/**
|
|
452
998
|
* 限制数目。最大50
|
|
453
999
|
*/
|
|
454
1000
|
Limit: number;
|
|
455
1001
|
/**
|
|
456
|
-
*
|
|
1002
|
+
* 互信主体名称。
|
|
457
1003
|
*/
|
|
458
|
-
|
|
1004
|
+
AuthName?: string;
|
|
459
1005
|
}
|
|
460
1006
|
/**
|
|
461
|
-
*
|
|
462
|
-
*/
|
|
463
|
-
export declare type CreateOrganizationRequest = null;
|
|
464
|
-
/**
|
|
465
|
-
* CreateOrganizationMember返回参数结构体
|
|
1007
|
+
* DescribeOrganizationMemberAuthAccounts请求参数结构体
|
|
466
1008
|
*/
|
|
467
|
-
export interface
|
|
1009
|
+
export interface DescribeOrganizationMemberAuthAccountsRequest {
|
|
468
1010
|
/**
|
|
469
|
-
*
|
|
470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1011
|
+
* 偏移量。
|
|
471
1012
|
*/
|
|
472
|
-
|
|
1013
|
+
Offset: number;
|
|
473
1014
|
/**
|
|
474
|
-
*
|
|
1015
|
+
* 限制数目。
|
|
475
1016
|
*/
|
|
476
|
-
|
|
477
|
-
}
|
|
478
|
-
/**
|
|
479
|
-
* CreateOrganizationIdentity返回参数结构体
|
|
480
|
-
*/
|
|
481
|
-
export interface CreateOrganizationIdentityResponse {
|
|
1017
|
+
Limit: number;
|
|
482
1018
|
/**
|
|
483
|
-
*
|
|
484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1019
|
+
* 成员Uin。
|
|
485
1020
|
*/
|
|
486
|
-
|
|
1021
|
+
MemberUin: number;
|
|
487
1022
|
/**
|
|
488
|
-
*
|
|
1023
|
+
* 策略ID。
|
|
489
1024
|
*/
|
|
490
|
-
|
|
1025
|
+
PolicyId: number;
|
|
491
1026
|
}
|
|
492
1027
|
/**
|
|
493
|
-
*
|
|
1028
|
+
* DescribeShareUnitMembers返回参数结构体
|
|
494
1029
|
*/
|
|
495
|
-
export interface
|
|
1030
|
+
export interface DescribeShareUnitMembersResponse {
|
|
496
1031
|
/**
|
|
497
|
-
*
|
|
1032
|
+
* 总数目。
|
|
1033
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
498
1034
|
*/
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
1035
|
+
Total?: number;
|
|
1036
|
+
/**
|
|
1037
|
+
* 共享单元成员列表。
|
|
1038
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1039
|
+
*/
|
|
1040
|
+
Items?: Array<ShareUnitMember>;
|
|
505
1041
|
/**
|
|
506
1042
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
507
1043
|
*/
|
|
508
1044
|
RequestId?: string;
|
|
509
1045
|
}
|
|
510
1046
|
/**
|
|
511
|
-
*
|
|
1047
|
+
* DescribeShareAreas请求参数结构体
|
|
512
1048
|
*/
|
|
513
|
-
export interface
|
|
514
|
-
/**
|
|
515
|
-
* 成员Uin列表。最多10个
|
|
516
|
-
*/
|
|
517
|
-
MemberUins: Array<number | bigint>;
|
|
518
|
-
/**
|
|
519
|
-
* 策略名。长度1~128个字符,支持英文字母、数字、符号+=,.@_-
|
|
520
|
-
*/
|
|
521
|
-
PolicyName: string;
|
|
522
|
-
/**
|
|
523
|
-
* 成员访问身份ID。
|
|
524
|
-
*/
|
|
525
|
-
IdentityId: number;
|
|
1049
|
+
export interface DescribeShareAreasRequest {
|
|
526
1050
|
/**
|
|
527
|
-
*
|
|
1051
|
+
* 国际站:en,国内站:zh
|
|
528
1052
|
*/
|
|
529
|
-
|
|
1053
|
+
Lang?: string;
|
|
530
1054
|
}
|
|
531
1055
|
/**
|
|
532
|
-
*
|
|
1056
|
+
* DescribeOrganizationMemberAuthAccounts返回参数结构体
|
|
533
1057
|
*/
|
|
534
|
-
export interface
|
|
1058
|
+
export interface DescribeOrganizationMemberAuthAccountsResponse {
|
|
535
1059
|
/**
|
|
536
|
-
*
|
|
1060
|
+
* 列表
|
|
537
1061
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
538
1062
|
*/
|
|
539
|
-
|
|
1063
|
+
Items: Array<OrgMemberAuthAccount>;
|
|
540
1064
|
/**
|
|
541
|
-
*
|
|
1065
|
+
* 总数目
|
|
542
1066
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
543
1067
|
*/
|
|
544
|
-
|
|
1068
|
+
Total: number;
|
|
545
1069
|
/**
|
|
546
|
-
*
|
|
547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1070
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
548
1071
|
*/
|
|
549
|
-
|
|
1072
|
+
RequestId?: string;
|
|
550
1073
|
}
|
|
551
1074
|
/**
|
|
552
|
-
*
|
|
1075
|
+
* 组织身份
|
|
553
1076
|
*/
|
|
554
|
-
export interface
|
|
1077
|
+
export interface OrgIdentity {
|
|
555
1078
|
/**
|
|
556
|
-
*
|
|
1079
|
+
* 身份ID。
|
|
557
1080
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
558
1081
|
*/
|
|
559
|
-
|
|
1082
|
+
IdentityId?: number;
|
|
560
1083
|
/**
|
|
561
|
-
*
|
|
1084
|
+
* 身份名称。
|
|
562
1085
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
563
1086
|
*/
|
|
564
|
-
|
|
1087
|
+
IdentityAliasName?: string;
|
|
565
1088
|
/**
|
|
566
|
-
*
|
|
1089
|
+
* 描述。
|
|
567
1090
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
568
1091
|
*/
|
|
569
|
-
|
|
1092
|
+
Description?: string;
|
|
570
1093
|
/**
|
|
571
|
-
*
|
|
1094
|
+
* 身份策略。
|
|
572
1095
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
573
1096
|
*/
|
|
574
|
-
|
|
1097
|
+
IdentityPolicy?: Array<IdentityPolicy>;
|
|
575
1098
|
/**
|
|
576
|
-
*
|
|
1099
|
+
* 身份类型。 1-预设、 2-自定义
|
|
577
1100
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
578
1101
|
*/
|
|
579
|
-
|
|
1102
|
+
IdentityType?: number;
|
|
580
1103
|
/**
|
|
581
|
-
*
|
|
1104
|
+
* 更新时间。
|
|
582
1105
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
583
1106
|
*/
|
|
584
|
-
|
|
1107
|
+
UpdateTime?: string;
|
|
1108
|
+
}
|
|
1109
|
+
/**
|
|
1110
|
+
* DescribeOrganizationMembers请求参数结构体
|
|
1111
|
+
*/
|
|
1112
|
+
export interface DescribeOrganizationMembersRequest {
|
|
585
1113
|
/**
|
|
586
|
-
*
|
|
587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1114
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
588
1115
|
*/
|
|
589
|
-
|
|
1116
|
+
Offset: number;
|
|
590
1117
|
/**
|
|
591
|
-
*
|
|
592
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1118
|
+
* 限制数目。取值范围:1~50,默认值:10
|
|
593
1119
|
*/
|
|
594
|
-
|
|
1120
|
+
Limit: number;
|
|
595
1121
|
/**
|
|
596
|
-
*
|
|
597
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1122
|
+
* 国际站:en,国内站:zh
|
|
598
1123
|
*/
|
|
599
|
-
|
|
1124
|
+
Lang?: string;
|
|
600
1125
|
/**
|
|
601
|
-
*
|
|
1126
|
+
* 成员名称或者成员ID搜索。
|
|
602
1127
|
*/
|
|
603
|
-
|
|
1128
|
+
SearchKey?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* 主体名称搜索。
|
|
1131
|
+
*/
|
|
1132
|
+
AuthName?: string;
|
|
1133
|
+
/**
|
|
1134
|
+
* 可信服务产品简称。可信服务管理员查询时必须指定
|
|
1135
|
+
*/
|
|
1136
|
+
Product?: string;
|
|
604
1137
|
}
|
|
605
1138
|
/**
|
|
606
|
-
*
|
|
1139
|
+
* UpdateShareUnit返回参数结构体
|
|
607
1140
|
*/
|
|
608
|
-
export interface
|
|
1141
|
+
export interface UpdateShareUnitResponse {
|
|
609
1142
|
/**
|
|
610
|
-
*
|
|
1143
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
611
1144
|
*/
|
|
612
|
-
|
|
1145
|
+
RequestId?: string;
|
|
613
1146
|
}
|
|
614
1147
|
/**
|
|
615
|
-
*
|
|
1148
|
+
* DeleteOrganizationMemberAuthIdentity返回参数结构体
|
|
616
1149
|
*/
|
|
617
|
-
export interface
|
|
618
|
-
/**
|
|
619
|
-
* 企业组织ID
|
|
620
|
-
*/
|
|
621
|
-
OrgId: number;
|
|
622
|
-
/**
|
|
623
|
-
* 创建者昵称
|
|
624
|
-
*/
|
|
625
|
-
NickName: string;
|
|
1150
|
+
export interface DeleteOrganizationMemberAuthIdentityResponse {
|
|
626
1151
|
/**
|
|
627
1152
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
628
1153
|
*/
|
|
629
1154
|
RequestId?: string;
|
|
630
1155
|
}
|
|
631
1156
|
/**
|
|
632
|
-
*
|
|
1157
|
+
* UpdateOrganizationMemberEmailBind请求参数结构体
|
|
633
1158
|
*/
|
|
634
|
-
export interface
|
|
1159
|
+
export interface UpdateOrganizationMemberEmailBindRequest {
|
|
635
1160
|
/**
|
|
636
|
-
*
|
|
637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1161
|
+
* 成员Uin
|
|
638
1162
|
*/
|
|
639
|
-
|
|
1163
|
+
MemberUin: number;
|
|
640
1164
|
/**
|
|
641
|
-
*
|
|
642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1165
|
+
* 绑定ID
|
|
643
1166
|
*/
|
|
644
|
-
|
|
1167
|
+
BindId: number;
|
|
645
1168
|
/**
|
|
646
|
-
*
|
|
1169
|
+
* 邮箱
|
|
647
1170
|
*/
|
|
648
|
-
|
|
649
|
-
}
|
|
650
|
-
/**
|
|
651
|
-
* DeleteOrganizationNodes请求参数结构体
|
|
652
|
-
*/
|
|
653
|
-
export interface DeleteOrganizationNodesRequest {
|
|
1171
|
+
Email: string;
|
|
654
1172
|
/**
|
|
655
|
-
*
|
|
1173
|
+
* 国际区号
|
|
656
1174
|
*/
|
|
657
|
-
|
|
1175
|
+
CountryCode: string;
|
|
1176
|
+
/**
|
|
1177
|
+
* 手机号
|
|
1178
|
+
*/
|
|
1179
|
+
Phone: string;
|
|
658
1180
|
}
|
|
659
1181
|
/**
|
|
660
|
-
*
|
|
1182
|
+
* UpdateShareUnit请求参数结构体
|
|
661
1183
|
*/
|
|
662
|
-
export interface
|
|
663
|
-
/**
|
|
664
|
-
* CAM预设策略ID。PolicyType 为预设策略时有效且必选
|
|
665
|
-
*/
|
|
666
|
-
PolicyId?: number;
|
|
1184
|
+
export interface UpdateShareUnitRequest {
|
|
667
1185
|
/**
|
|
668
|
-
*
|
|
1186
|
+
* 共享单元ID。
|
|
669
1187
|
*/
|
|
670
|
-
|
|
1188
|
+
UnitId: string;
|
|
671
1189
|
/**
|
|
672
|
-
*
|
|
673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1190
|
+
* 共享单元名称。仅支持大小写字母、数字、-、以及_的组合,3-128个字符。
|
|
674
1191
|
*/
|
|
675
|
-
|
|
1192
|
+
Name?: string;
|
|
676
1193
|
/**
|
|
677
|
-
*
|
|
678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1194
|
+
* 共享单元描述。最大128个字符。
|
|
679
1195
|
*/
|
|
680
|
-
|
|
1196
|
+
Description?: string;
|
|
681
1197
|
}
|
|
682
1198
|
/**
|
|
683
|
-
*
|
|
1199
|
+
* DescribeShareUnits请求参数结构体
|
|
684
1200
|
*/
|
|
685
|
-
export interface
|
|
1201
|
+
export interface DescribeShareUnitsRequest {
|
|
686
1202
|
/**
|
|
687
|
-
*
|
|
1203
|
+
* 共享单元地域。可通过接口DescribeShareAreas获取支持共享的地域。
|
|
688
1204
|
*/
|
|
689
|
-
|
|
1205
|
+
Area: string;
|
|
690
1206
|
/**
|
|
691
|
-
*
|
|
1207
|
+
* 偏移量。取值是limit的整数倍。默认值 : 0。
|
|
692
1208
|
*/
|
|
693
|
-
|
|
1209
|
+
Offset: number;
|
|
1210
|
+
/**
|
|
1211
|
+
* 限制数目。取值范围:1~50。
|
|
1212
|
+
*/
|
|
1213
|
+
Limit: number;
|
|
1214
|
+
/**
|
|
1215
|
+
* 搜索关键字。支持UnitId和Name搜索。
|
|
1216
|
+
*/
|
|
1217
|
+
SearchKey?: string;
|
|
694
1218
|
}
|
|
695
1219
|
/**
|
|
696
|
-
*
|
|
1220
|
+
* 关系策略权限
|
|
697
1221
|
*/
|
|
698
|
-
export interface
|
|
1222
|
+
export interface OrgPermission {
|
|
699
1223
|
/**
|
|
700
|
-
*
|
|
1224
|
+
* 权限Id
|
|
701
1225
|
*/
|
|
702
|
-
|
|
1226
|
+
Id: number;
|
|
1227
|
+
/**
|
|
1228
|
+
* 权限名
|
|
1229
|
+
*/
|
|
1230
|
+
Name: string;
|
|
703
1231
|
}
|
|
704
1232
|
/**
|
|
705
|
-
*
|
|
1233
|
+
* 组织成员财务信息。
|
|
706
1234
|
*/
|
|
707
|
-
export interface
|
|
1235
|
+
export interface OrgMemberFinancial {
|
|
708
1236
|
/**
|
|
709
|
-
*
|
|
1237
|
+
* 成员Uin。
|
|
710
1238
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
711
1239
|
*/
|
|
712
|
-
|
|
1240
|
+
MemberUin: number;
|
|
713
1241
|
/**
|
|
714
|
-
*
|
|
1242
|
+
* 成员名称。
|
|
715
1243
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
716
1244
|
*/
|
|
717
|
-
|
|
1245
|
+
MemberName: string;
|
|
718
1246
|
/**
|
|
719
|
-
*
|
|
1247
|
+
* 消耗金额,单位:元。
|
|
720
1248
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
721
1249
|
*/
|
|
722
1250
|
TotalCost: number;
|
|
723
1251
|
/**
|
|
724
|
-
*
|
|
1252
|
+
* 占比%。
|
|
725
1253
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
726
1254
|
*/
|
|
727
|
-
|
|
1255
|
+
Ratio?: string;
|
|
728
1256
|
}
|
|
729
1257
|
/**
|
|
730
|
-
*
|
|
1258
|
+
* AddOrganizationMemberEmail返回参数结构体
|
|
731
1259
|
*/
|
|
732
|
-
export interface
|
|
733
|
-
/**
|
|
734
|
-
* 当月总消耗。
|
|
735
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
736
|
-
*/
|
|
737
|
-
TotalCost?: number;
|
|
738
|
-
/**
|
|
739
|
-
* 产品消耗详情。
|
|
740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
741
|
-
*/
|
|
742
|
-
Items?: Array<OrgProductFinancial>;
|
|
1260
|
+
export interface AddOrganizationMemberEmailResponse {
|
|
743
1261
|
/**
|
|
744
|
-
*
|
|
1262
|
+
* 绑定Id
|
|
745
1263
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
746
1264
|
*/
|
|
747
|
-
|
|
1265
|
+
BindId?: number;
|
|
748
1266
|
/**
|
|
749
1267
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
750
1268
|
*/
|
|
751
1269
|
RequestId?: string;
|
|
752
1270
|
}
|
|
753
1271
|
/**
|
|
754
|
-
*
|
|
1272
|
+
* AddShareUnitMembers返回参数结构体
|
|
755
1273
|
*/
|
|
756
|
-
export interface
|
|
1274
|
+
export interface AddShareUnitMembersResponse {
|
|
757
1275
|
/**
|
|
758
1276
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
759
1277
|
*/
|
|
760
1278
|
RequestId?: string;
|
|
761
1279
|
}
|
|
762
1280
|
/**
|
|
763
|
-
*
|
|
1281
|
+
* CreateOrganizationMemberPolicy请求参数结构体
|
|
764
1282
|
*/
|
|
765
|
-
export interface
|
|
1283
|
+
export interface CreateOrganizationMemberPolicyRequest {
|
|
766
1284
|
/**
|
|
767
|
-
* 成员Uin
|
|
1285
|
+
* 成员Uin。
|
|
768
1286
|
*/
|
|
769
1287
|
MemberUin: number;
|
|
770
1288
|
/**
|
|
771
|
-
*
|
|
1289
|
+
* 策略名。最大长度为128个字符,支持英文字母、数字、符号+=,.@_-
|
|
772
1290
|
*/
|
|
773
|
-
|
|
1291
|
+
PolicyName: string;
|
|
774
1292
|
/**
|
|
775
|
-
*
|
|
1293
|
+
* 成员访问身份ID。可以调用DescribeOrganizationMemberAuthIdentities获取
|
|
776
1294
|
*/
|
|
777
|
-
|
|
1295
|
+
IdentityId: number;
|
|
778
1296
|
/**
|
|
779
|
-
*
|
|
1297
|
+
* 描述。
|
|
780
1298
|
*/
|
|
781
|
-
|
|
1299
|
+
Description?: string;
|
|
782
1300
|
}
|
|
783
1301
|
/**
|
|
784
|
-
*
|
|
1302
|
+
* CreateOrganization请求参数结构体
|
|
785
1303
|
*/
|
|
786
|
-
export declare type
|
|
1304
|
+
export declare type CreateOrganizationRequest = null;
|
|
787
1305
|
/**
|
|
788
|
-
*
|
|
1306
|
+
* 共享资源
|
|
789
1307
|
*/
|
|
790
|
-
export interface
|
|
1308
|
+
export interface ShareResource {
|
|
791
1309
|
/**
|
|
792
|
-
*
|
|
1310
|
+
* 共享资源ID。
|
|
1311
|
+
* @deprecated
|
|
1312
|
+
*/
|
|
1313
|
+
ResourceId?: string;
|
|
1314
|
+
/**
|
|
1315
|
+
* 产品资源ID。
|
|
793
1316
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
794
1317
|
*/
|
|
795
|
-
|
|
1318
|
+
ProductResourceId?: string;
|
|
1319
|
+
}
|
|
1320
|
+
/**
|
|
1321
|
+
* CreateOrganizationMembersPolicy请求参数结构体
|
|
1322
|
+
*/
|
|
1323
|
+
export interface CreateOrganizationMembersPolicyRequest {
|
|
796
1324
|
/**
|
|
797
|
-
*
|
|
1325
|
+
* 成员Uin列表。最多10个
|
|
1326
|
+
*/
|
|
1327
|
+
MemberUins: Array<number | bigint>;
|
|
1328
|
+
/**
|
|
1329
|
+
* 策略名。长度1~128个字符,支持英文字母、数字、符号+=,.@_-
|
|
1330
|
+
*/
|
|
1331
|
+
PolicyName: string;
|
|
1332
|
+
/**
|
|
1333
|
+
* 成员访问身份ID。
|
|
1334
|
+
*/
|
|
1335
|
+
IdentityId: number;
|
|
1336
|
+
/**
|
|
1337
|
+
* 策略描述。最大长度为128个字符
|
|
1338
|
+
*/
|
|
1339
|
+
Description?: string;
|
|
1340
|
+
}
|
|
1341
|
+
/**
|
|
1342
|
+
* 成员管理身份
|
|
1343
|
+
*/
|
|
1344
|
+
export interface MemberIdentity {
|
|
1345
|
+
/**
|
|
1346
|
+
* 身份ID。
|
|
798
1347
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
799
1348
|
*/
|
|
800
|
-
|
|
1349
|
+
IdentityId: number;
|
|
801
1350
|
/**
|
|
802
|
-
*
|
|
1351
|
+
* 身份名称。
|
|
1352
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
803
1353
|
*/
|
|
804
|
-
|
|
1354
|
+
IdentityAliasName: string;
|
|
805
1355
|
}
|
|
806
1356
|
/**
|
|
807
|
-
*
|
|
1357
|
+
* 组织产品财务信息
|
|
808
1358
|
*/
|
|
809
|
-
export interface
|
|
1359
|
+
export interface OrgProductFinancial {
|
|
810
1360
|
/**
|
|
811
|
-
*
|
|
1361
|
+
* 产品Code。
|
|
812
1362
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
813
1363
|
*/
|
|
814
|
-
|
|
1364
|
+
ProductName: string;
|
|
815
1365
|
/**
|
|
816
|
-
*
|
|
1366
|
+
* 产品名。
|
|
817
1367
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
818
1368
|
*/
|
|
819
|
-
|
|
1369
|
+
ProductCode: string;
|
|
820
1370
|
/**
|
|
821
|
-
*
|
|
1371
|
+
* 产品消耗,单位:元。
|
|
1372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
822
1373
|
*/
|
|
823
|
-
|
|
824
|
-
}
|
|
825
|
-
/**
|
|
826
|
-
* DeleteOrganizationMembersPolicy请求参数结构体
|
|
827
|
-
*/
|
|
828
|
-
export interface DeleteOrganizationMembersPolicyRequest {
|
|
1374
|
+
TotalCost: number;
|
|
829
1375
|
/**
|
|
830
|
-
*
|
|
1376
|
+
* 占比%。
|
|
1377
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
831
1378
|
*/
|
|
832
|
-
|
|
1379
|
+
Ratio?: string;
|
|
833
1380
|
}
|
|
834
1381
|
/**
|
|
835
|
-
*
|
|
1382
|
+
* AddShareUnit返回参数结构体
|
|
836
1383
|
*/
|
|
837
|
-
export interface
|
|
838
|
-
/**
|
|
839
|
-
* 成员列表。
|
|
840
|
-
*/
|
|
841
|
-
Items?: Array<OrgMember>;
|
|
1384
|
+
export interface AddShareUnitResponse {
|
|
842
1385
|
/**
|
|
843
|
-
*
|
|
1386
|
+
* 共享单元ID。
|
|
844
1387
|
*/
|
|
845
|
-
|
|
1388
|
+
UnitId?: string;
|
|
846
1389
|
/**
|
|
847
1390
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
848
1391
|
*/
|
|
849
1392
|
RequestId?: string;
|
|
850
1393
|
}
|
|
851
1394
|
/**
|
|
852
|
-
*
|
|
1395
|
+
* DescribeOrganizationFinancialByProduct返回参数结构体
|
|
853
1396
|
*/
|
|
854
|
-
export interface
|
|
1397
|
+
export interface DescribeOrganizationFinancialByProductResponse {
|
|
855
1398
|
/**
|
|
856
|
-
*
|
|
1399
|
+
* 当月总消耗。
|
|
857
1400
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
858
1401
|
*/
|
|
859
|
-
|
|
1402
|
+
TotalCost?: number;
|
|
1403
|
+
/**
|
|
1404
|
+
* 产品消耗详情。
|
|
1405
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1406
|
+
*/
|
|
1407
|
+
Items?: Array<OrgProductFinancial>;
|
|
1408
|
+
/**
|
|
1409
|
+
* 总数目。
|
|
1410
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1411
|
+
*/
|
|
1412
|
+
Total?: number;
|
|
860
1413
|
/**
|
|
861
1414
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
862
1415
|
*/
|
|
863
1416
|
RequestId?: string;
|
|
864
1417
|
}
|
|
865
1418
|
/**
|
|
866
|
-
*
|
|
1419
|
+
* DescribeOrganizationFinancialByProduct请求参数结构体
|
|
867
1420
|
*/
|
|
868
|
-
export interface
|
|
1421
|
+
export interface DescribeOrganizationFinancialByProductRequest {
|
|
869
1422
|
/**
|
|
870
|
-
*
|
|
1423
|
+
* 查询开始月份。格式:yyyy-mm,例如:2021-01
|
|
871
1424
|
*/
|
|
872
|
-
|
|
1425
|
+
Month: string;
|
|
873
1426
|
/**
|
|
874
|
-
*
|
|
1427
|
+
* 限制数目。取值范围:1~50,默认值:10
|
|
875
1428
|
*/
|
|
876
|
-
|
|
1429
|
+
Limit?: number;
|
|
877
1430
|
/**
|
|
878
|
-
*
|
|
1431
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
879
1432
|
*/
|
|
880
|
-
|
|
881
|
-
}
|
|
882
|
-
/**
|
|
883
|
-
* MoveOrganizationNodeMembers请求参数结构体
|
|
884
|
-
*/
|
|
885
|
-
export interface MoveOrganizationNodeMembersRequest {
|
|
1433
|
+
Offset?: number;
|
|
886
1434
|
/**
|
|
887
|
-
*
|
|
1435
|
+
* 查询结束月份。格式:yyyy-mm,例如:2021-01,默认值为查询开始月份
|
|
888
1436
|
*/
|
|
889
|
-
|
|
1437
|
+
EndMonth?: string;
|
|
890
1438
|
/**
|
|
891
|
-
*
|
|
1439
|
+
* 查询成员列表。 最大100个
|
|
892
1440
|
*/
|
|
893
|
-
|
|
894
|
-
}
|
|
895
|
-
/**
|
|
896
|
-
* CancelOrganizationMemberAuthAccount返回参数结构体
|
|
897
|
-
*/
|
|
898
|
-
export interface CancelOrganizationMemberAuthAccountResponse {
|
|
1441
|
+
MemberUins?: Array<number | bigint>;
|
|
899
1442
|
/**
|
|
900
|
-
*
|
|
1443
|
+
* 查询产品列表。 最大100个
|
|
901
1444
|
*/
|
|
902
|
-
|
|
1445
|
+
ProductCodes?: Array<string>;
|
|
903
1446
|
}
|
|
904
1447
|
/**
|
|
905
|
-
*
|
|
1448
|
+
* 组织成员被授权的策略
|
|
906
1449
|
*/
|
|
907
|
-
export interface
|
|
908
|
-
/**
|
|
909
|
-
* 组织子账号Uin。
|
|
910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
911
|
-
*/
|
|
912
|
-
OrgSubAccountUin: number;
|
|
1450
|
+
export interface OrgMemberPolicy {
|
|
913
1451
|
/**
|
|
914
1452
|
* 策略ID。
|
|
915
1453
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -935,6 +1473,11 @@ export interface OrgMemberAuthAccount {
|
|
|
935
1473
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
936
1474
|
*/
|
|
937
1475
|
IdentityRoleAliasName: string;
|
|
1476
|
+
/**
|
|
1477
|
+
* 描述。
|
|
1478
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1479
|
+
*/
|
|
1480
|
+
Description: string;
|
|
938
1481
|
/**
|
|
939
1482
|
* 创建时间。
|
|
940
1483
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -945,217 +1488,135 @@ export interface OrgMemberAuthAccount {
|
|
|
945
1488
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
946
1489
|
*/
|
|
947
1490
|
UpdateTime: string;
|
|
948
|
-
/**
|
|
949
|
-
* 子账号名称
|
|
950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
951
|
-
*/
|
|
952
|
-
OrgSubAccountName: string;
|
|
953
1491
|
}
|
|
954
1492
|
/**
|
|
955
|
-
*
|
|
1493
|
+
* CreateOrganizationMemberPolicy返回参数结构体
|
|
956
1494
|
*/
|
|
957
|
-
export interface
|
|
1495
|
+
export interface CreateOrganizationMemberPolicyResponse {
|
|
958
1496
|
/**
|
|
959
|
-
*
|
|
1497
|
+
* 策略ID。
|
|
1498
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
960
1499
|
*/
|
|
961
|
-
|
|
1500
|
+
PolicyId: number;
|
|
962
1501
|
/**
|
|
963
|
-
*
|
|
1502
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
964
1503
|
*/
|
|
965
|
-
|
|
1504
|
+
RequestId?: string;
|
|
1505
|
+
}
|
|
1506
|
+
/**
|
|
1507
|
+
* DescribeShareUnitMembers请求参数结构体
|
|
1508
|
+
*/
|
|
1509
|
+
export interface DescribeShareUnitMembersRequest {
|
|
966
1510
|
/**
|
|
967
|
-
*
|
|
1511
|
+
* 共享单元ID。
|
|
968
1512
|
*/
|
|
969
|
-
|
|
1513
|
+
UnitId: string;
|
|
970
1514
|
/**
|
|
971
|
-
*
|
|
1515
|
+
* 共享单元地域。
|
|
972
1516
|
*/
|
|
973
|
-
|
|
1517
|
+
Area: string;
|
|
974
1518
|
/**
|
|
975
|
-
*
|
|
976
|
-
取值:1-查看账单、2-查看余额、3-资金划拨、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析,如果有值,1、2 默认必须
|
|
1519
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
977
1520
|
*/
|
|
978
|
-
|
|
1521
|
+
Offset: number;
|
|
979
1522
|
/**
|
|
980
|
-
*
|
|
1523
|
+
* 限制数目。取值范围:1~50。
|
|
981
1524
|
*/
|
|
982
|
-
|
|
1525
|
+
Limit: number;
|
|
983
1526
|
/**
|
|
984
|
-
*
|
|
1527
|
+
* 搜索关键字。支持成员uin搜索。
|
|
985
1528
|
*/
|
|
986
|
-
|
|
1529
|
+
SearchKey?: string;
|
|
987
1530
|
}
|
|
988
1531
|
/**
|
|
989
|
-
*
|
|
1532
|
+
* CancelOrganizationMemberAuthAccount返回参数结构体
|
|
990
1533
|
*/
|
|
991
|
-
export interface
|
|
1534
|
+
export interface CancelOrganizationMemberAuthAccountResponse {
|
|
992
1535
|
/**
|
|
993
1536
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
994
1537
|
*/
|
|
995
1538
|
RequestId?: string;
|
|
996
1539
|
}
|
|
997
1540
|
/**
|
|
998
|
-
*
|
|
999
|
-
*/
|
|
1000
|
-
export interface QuitOrganizationRequest {
|
|
1001
|
-
/**
|
|
1002
|
-
* 企业组织ID
|
|
1003
|
-
*/
|
|
1004
|
-
OrgId: number;
|
|
1005
|
-
}
|
|
1006
|
-
/**
|
|
1007
|
-
* DescribeOrganization返回参数结构体
|
|
1541
|
+
* UpdateOrganizationMember请求参数结构体
|
|
1008
1542
|
*/
|
|
1009
|
-
export interface
|
|
1010
|
-
/**
|
|
1011
|
-
* 企业组织ID。
|
|
1012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1013
|
-
*/
|
|
1014
|
-
OrgId?: number;
|
|
1015
|
-
/**
|
|
1016
|
-
* 创建者UIN。
|
|
1017
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
|
-
*/
|
|
1019
|
-
HostUin?: number;
|
|
1020
|
-
/**
|
|
1021
|
-
* 创建者昵称。
|
|
1022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
|
-
*/
|
|
1024
|
-
NickName?: string;
|
|
1025
|
-
/**
|
|
1026
|
-
* 企业组织类型。
|
|
1027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1028
|
-
*/
|
|
1029
|
-
OrgType?: number;
|
|
1030
|
-
/**
|
|
1031
|
-
* 是否组织管理员。是:true ,否:false
|
|
1032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1033
|
-
*/
|
|
1034
|
-
IsManager?: boolean;
|
|
1035
|
-
/**
|
|
1036
|
-
* 策略类型。财务管理:Financial
|
|
1037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1038
|
-
*/
|
|
1039
|
-
OrgPolicyType?: string;
|
|
1040
|
-
/**
|
|
1041
|
-
* 策略名。
|
|
1042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1043
|
-
*/
|
|
1044
|
-
OrgPolicyName?: string;
|
|
1045
|
-
/**
|
|
1046
|
-
* 成员财务权限列表。
|
|
1047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1048
|
-
*/
|
|
1049
|
-
OrgPermission?: Array<OrgPermission>;
|
|
1050
|
-
/**
|
|
1051
|
-
* 组织根节点ID。
|
|
1052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1053
|
-
*/
|
|
1054
|
-
RootNodeId?: number;
|
|
1055
|
-
/**
|
|
1056
|
-
* 组织创建时间。
|
|
1057
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1058
|
-
*/
|
|
1059
|
-
CreateTime?: string;
|
|
1060
|
-
/**
|
|
1061
|
-
* 成员加入时间。
|
|
1062
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1063
|
-
*/
|
|
1064
|
-
JoinTime?: string;
|
|
1065
|
-
/**
|
|
1066
|
-
* 成员是否允许退出。允许:Allow,不允许:Denied
|
|
1067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1068
|
-
*/
|
|
1069
|
-
IsAllowQuit?: string;
|
|
1070
|
-
/**
|
|
1071
|
-
* 代付者Uin。
|
|
1072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1073
|
-
*/
|
|
1074
|
-
PayUin?: string;
|
|
1075
|
-
/**
|
|
1076
|
-
* 代付者名称。
|
|
1077
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1078
|
-
*/
|
|
1079
|
-
PayName?: string;
|
|
1543
|
+
export interface UpdateOrganizationMemberRequest {
|
|
1080
1544
|
/**
|
|
1081
|
-
*
|
|
1082
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1545
|
+
* 成员Uin。
|
|
1083
1546
|
*/
|
|
1084
|
-
|
|
1547
|
+
MemberUin: number;
|
|
1085
1548
|
/**
|
|
1086
|
-
*
|
|
1087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1549
|
+
* 成员名称。最大长度为25个字符,支持英文字母、数字、汉字、符号+@、&._[]-:,
|
|
1088
1550
|
*/
|
|
1089
|
-
|
|
1551
|
+
Name?: string;
|
|
1090
1552
|
/**
|
|
1091
|
-
*
|
|
1553
|
+
* 备注。最大长度为40个字符
|
|
1092
1554
|
*/
|
|
1093
|
-
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* DescribeOrganizationMemberPolicies请求参数结构体
|
|
1097
|
-
*/
|
|
1098
|
-
export interface DescribeOrganizationMemberPoliciesRequest {
|
|
1555
|
+
Remark?: string;
|
|
1099
1556
|
/**
|
|
1100
|
-
*
|
|
1557
|
+
* 关系策略类型。PolicyType不为空,PermissionIds不能为空。取值:Financial
|
|
1101
1558
|
*/
|
|
1102
|
-
|
|
1559
|
+
PolicyType?: string;
|
|
1103
1560
|
/**
|
|
1104
|
-
*
|
|
1561
|
+
* 成员财务权限ID列表。PermissionIds不为空,PolicyType不能为空。
|
|
1562
|
+
取值:1-查看账单、2-查看余额、3-资金划拨、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析,如果有值,1、2 默认必须
|
|
1105
1563
|
*/
|
|
1106
|
-
|
|
1564
|
+
PermissionIds?: Array<number | bigint>;
|
|
1107
1565
|
/**
|
|
1108
|
-
*
|
|
1566
|
+
* 是否允许成员退出组织。取值:Allow-允许、Denied-不允许
|
|
1109
1567
|
*/
|
|
1110
|
-
|
|
1568
|
+
IsAllowQuit?: string;
|
|
1111
1569
|
/**
|
|
1112
|
-
*
|
|
1570
|
+
* 代付者Uin。成员财务权限有代付费时需要,取值为成员对应主体的主体管理员Uin
|
|
1113
1571
|
*/
|
|
1114
|
-
|
|
1572
|
+
PayUin?: string;
|
|
1115
1573
|
}
|
|
1116
1574
|
/**
|
|
1117
|
-
*
|
|
1575
|
+
* AddShareUnitResources请求参数结构体
|
|
1118
1576
|
*/
|
|
1119
|
-
export interface
|
|
1577
|
+
export interface AddShareUnitResourcesRequest {
|
|
1120
1578
|
/**
|
|
1121
|
-
*
|
|
1579
|
+
* 共享单元ID。
|
|
1122
1580
|
*/
|
|
1123
|
-
|
|
1581
|
+
UnitId: string;
|
|
1582
|
+
/**
|
|
1583
|
+
* 共享单元地域。
|
|
1584
|
+
*/
|
|
1585
|
+
Area: string;
|
|
1586
|
+
/**
|
|
1587
|
+
* 共享资源类型。支持共享的资源类型,请参见[资源共享概述](https://cloud.tencent.com/document/product/850/59489)
|
|
1588
|
+
*/
|
|
1589
|
+
Type: string;
|
|
1590
|
+
/**
|
|
1591
|
+
* 共享资源列表。最大10个。
|
|
1592
|
+
*/
|
|
1593
|
+
Resources: Array<ProductResource>;
|
|
1124
1594
|
}
|
|
1125
1595
|
/**
|
|
1126
|
-
*
|
|
1596
|
+
* 共享成员信息
|
|
1127
1597
|
*/
|
|
1128
|
-
export interface
|
|
1598
|
+
export interface ShareMember {
|
|
1129
1599
|
/**
|
|
1130
|
-
*
|
|
1600
|
+
* 共享成员Uin。
|
|
1131
1601
|
*/
|
|
1132
|
-
|
|
1602
|
+
ShareMemberUin: number;
|
|
1133
1603
|
}
|
|
1134
1604
|
/**
|
|
1135
|
-
*
|
|
1605
|
+
* DeleteShareUnitMembers请求参数结构体
|
|
1136
1606
|
*/
|
|
1137
|
-
export interface
|
|
1138
|
-
/**
|
|
1139
|
-
* 父节点ID。可以调用DescribeOrganizationNodes获取
|
|
1140
|
-
*/
|
|
1141
|
-
ParentNodeId: number;
|
|
1607
|
+
export interface DeleteShareUnitMembersRequest {
|
|
1142
1608
|
/**
|
|
1143
|
-
*
|
|
1609
|
+
* 共享单元ID。
|
|
1144
1610
|
*/
|
|
1145
|
-
|
|
1611
|
+
UnitId: string;
|
|
1146
1612
|
/**
|
|
1147
|
-
*
|
|
1613
|
+
* 共享单元地域。
|
|
1148
1614
|
*/
|
|
1149
|
-
|
|
1150
|
-
}
|
|
1151
|
-
/**
|
|
1152
|
-
* UpdateOrganizationNode返回参数结构体
|
|
1153
|
-
*/
|
|
1154
|
-
export interface UpdateOrganizationNodeResponse {
|
|
1615
|
+
Area: string;
|
|
1155
1616
|
/**
|
|
1156
|
-
*
|
|
1617
|
+
* 成员列表。
|
|
1157
1618
|
*/
|
|
1158
|
-
|
|
1619
|
+
Members: Array<ShareMember>;
|
|
1159
1620
|
}
|
|
1160
1621
|
/**
|
|
1161
1622
|
* DescribeOrganizationMemberAuthIdentities返回参数结构体
|
|
@@ -1177,197 +1638,154 @@ export interface DescribeOrganizationMemberAuthIdentitiesResponse {
|
|
|
1177
1638
|
RequestId?: string;
|
|
1178
1639
|
}
|
|
1179
1640
|
/**
|
|
1180
|
-
*
|
|
1641
|
+
* 共享单元资源
|
|
1181
1642
|
*/
|
|
1182
|
-
export interface
|
|
1643
|
+
export interface ShareUnitResource {
|
|
1183
1644
|
/**
|
|
1184
|
-
*
|
|
1185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1645
|
+
* 共享资源ID。
|
|
1186
1646
|
*/
|
|
1187
|
-
|
|
1647
|
+
ResourceId?: string;
|
|
1188
1648
|
/**
|
|
1189
|
-
*
|
|
1649
|
+
* 共享资源类型。
|
|
1650
|
+
*/
|
|
1651
|
+
Type?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* 创建时间。
|
|
1190
1654
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1191
1655
|
*/
|
|
1192
|
-
|
|
1656
|
+
CreateTime?: string;
|
|
1193
1657
|
/**
|
|
1194
|
-
*
|
|
1658
|
+
* 产品资源ID。
|
|
1659
|
+
*/
|
|
1660
|
+
ProductResourceId?: string;
|
|
1661
|
+
/**
|
|
1662
|
+
* 共享单元成员数。
|
|
1195
1663
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1196
1664
|
*/
|
|
1197
|
-
|
|
1665
|
+
SharedMemberNum?: number;
|
|
1198
1666
|
/**
|
|
1199
|
-
*
|
|
1667
|
+
* 使用中共享单元成员数。
|
|
1200
1668
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1201
1669
|
*/
|
|
1202
|
-
|
|
1203
|
-
}
|
|
1204
|
-
/**
|
|
1205
|
-
* DeleteOrganizationIdentity请求参数结构体
|
|
1206
|
-
*/
|
|
1207
|
-
export interface DeleteOrganizationIdentityRequest {
|
|
1670
|
+
SharedMemberUseNum?: number;
|
|
1208
1671
|
/**
|
|
1209
|
-
*
|
|
1672
|
+
* 共享管理员OwnerUin。
|
|
1673
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1210
1674
|
*/
|
|
1211
|
-
|
|
1675
|
+
ShareManagerUin?: number;
|
|
1212
1676
|
}
|
|
1213
1677
|
/**
|
|
1214
|
-
*
|
|
1678
|
+
* DeleteOrganizationIdentity返回参数结构体
|
|
1215
1679
|
*/
|
|
1216
|
-
export interface
|
|
1217
|
-
/**
|
|
1218
|
-
* 节点ID。
|
|
1219
|
-
*/
|
|
1220
|
-
NodeId: number;
|
|
1221
|
-
/**
|
|
1222
|
-
* 节点名称。最大长度为40个字符,支持英文字母、数字、汉字、符号+@、&._[]-
|
|
1223
|
-
*/
|
|
1224
|
-
Name?: string;
|
|
1680
|
+
export interface DeleteOrganizationIdentityResponse {
|
|
1225
1681
|
/**
|
|
1226
|
-
*
|
|
1682
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1227
1683
|
*/
|
|
1228
|
-
|
|
1684
|
+
RequestId?: string;
|
|
1229
1685
|
}
|
|
1230
1686
|
/**
|
|
1231
|
-
*
|
|
1687
|
+
* DescribeOrganizationMemberEmailBind请求参数结构体
|
|
1232
1688
|
*/
|
|
1233
|
-
export interface
|
|
1234
|
-
/**
|
|
1235
|
-
* 偏移量。
|
|
1236
|
-
*/
|
|
1237
|
-
Offset: number;
|
|
1238
|
-
/**
|
|
1239
|
-
* 限制数目。
|
|
1240
|
-
*/
|
|
1241
|
-
Limit: number;
|
|
1689
|
+
export interface DescribeOrganizationMemberEmailBindRequest {
|
|
1242
1690
|
/**
|
|
1243
|
-
* 成员Uin
|
|
1691
|
+
* 成员Uin
|
|
1244
1692
|
*/
|
|
1245
1693
|
MemberUin: number;
|
|
1246
|
-
/**
|
|
1247
|
-
* 策略ID。
|
|
1248
|
-
*/
|
|
1249
|
-
PolicyId: number;
|
|
1250
1694
|
}
|
|
1251
1695
|
/**
|
|
1252
|
-
*
|
|
1696
|
+
* 企业组织成员
|
|
1253
1697
|
*/
|
|
1254
|
-
export interface
|
|
1698
|
+
export interface OrgMember {
|
|
1255
1699
|
/**
|
|
1256
|
-
* 成员Uin
|
|
1700
|
+
* 成员Uin
|
|
1701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1257
1702
|
*/
|
|
1258
1703
|
MemberUin: number;
|
|
1259
1704
|
/**
|
|
1260
|
-
*
|
|
1261
|
-
|
|
1262
|
-
PolicyId: number;
|
|
1263
|
-
/**
|
|
1264
|
-
* 组织子账号Uin。
|
|
1265
|
-
*/
|
|
1266
|
-
OrgSubAccountUin: number;
|
|
1267
|
-
}
|
|
1268
|
-
/**
|
|
1269
|
-
* ListOrganizationIdentity请求参数结构体
|
|
1270
|
-
*/
|
|
1271
|
-
export interface ListOrganizationIdentityRequest {
|
|
1272
|
-
/**
|
|
1273
|
-
* 偏移量。取值是limit的整数倍。默认值 : 0。
|
|
1705
|
+
* 成员名
|
|
1706
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1274
1707
|
*/
|
|
1275
|
-
|
|
1708
|
+
Name: string;
|
|
1276
1709
|
/**
|
|
1277
|
-
*
|
|
1710
|
+
* 成员类型,邀请:Invite, 创建:Create
|
|
1711
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1278
1712
|
*/
|
|
1279
|
-
|
|
1713
|
+
MemberType: string;
|
|
1280
1714
|
/**
|
|
1281
|
-
*
|
|
1715
|
+
* 关系策略类型
|
|
1716
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1282
1717
|
*/
|
|
1283
|
-
|
|
1718
|
+
OrgPolicyType: string;
|
|
1284
1719
|
/**
|
|
1285
|
-
*
|
|
1720
|
+
* 关系策略名
|
|
1721
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1286
1722
|
*/
|
|
1287
|
-
|
|
1723
|
+
OrgPolicyName: string;
|
|
1288
1724
|
/**
|
|
1289
|
-
*
|
|
1725
|
+
* 关系策略权限
|
|
1726
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1290
1727
|
*/
|
|
1291
|
-
|
|
1292
|
-
}
|
|
1293
|
-
/**
|
|
1294
|
-
* DeleteOrganizationIdentity返回参数结构体
|
|
1295
|
-
*/
|
|
1296
|
-
export interface DeleteOrganizationIdentityResponse {
|
|
1728
|
+
OrgPermission: Array<OrgPermission>;
|
|
1297
1729
|
/**
|
|
1298
|
-
*
|
|
1730
|
+
* 所属节点ID
|
|
1731
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1299
1732
|
*/
|
|
1300
|
-
|
|
1301
|
-
}
|
|
1302
|
-
/**
|
|
1303
|
-
* DescribeOrganizationFinancialByMember返回参数结构体
|
|
1304
|
-
*/
|
|
1305
|
-
export interface DescribeOrganizationFinancialByMemberResponse {
|
|
1733
|
+
NodeId: number;
|
|
1306
1734
|
/**
|
|
1307
|
-
*
|
|
1735
|
+
* 所属节点名
|
|
1308
1736
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1309
1737
|
*/
|
|
1310
|
-
|
|
1738
|
+
NodeName: string;
|
|
1311
1739
|
/**
|
|
1312
|
-
*
|
|
1740
|
+
* 备注
|
|
1313
1741
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1314
1742
|
*/
|
|
1315
|
-
|
|
1743
|
+
Remark: string;
|
|
1316
1744
|
/**
|
|
1317
|
-
*
|
|
1745
|
+
* 创建时间
|
|
1318
1746
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1319
1747
|
*/
|
|
1320
|
-
|
|
1748
|
+
CreateTime: string;
|
|
1321
1749
|
/**
|
|
1322
|
-
*
|
|
1750
|
+
* 更新时间
|
|
1751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1323
1752
|
*/
|
|
1324
|
-
|
|
1325
|
-
}
|
|
1326
|
-
/**
|
|
1327
|
-
* DeleteOrganization返回参数结构体
|
|
1328
|
-
*/
|
|
1329
|
-
export interface DeleteOrganizationResponse {
|
|
1753
|
+
UpdateTime: string;
|
|
1330
1754
|
/**
|
|
1331
|
-
*
|
|
1755
|
+
* 是否允许成员退出。允许:Allow,不允许:Denied。
|
|
1756
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1332
1757
|
*/
|
|
1333
|
-
|
|
1334
|
-
}
|
|
1335
|
-
/**
|
|
1336
|
-
* DescribeOrganizationMemberAuthAccounts返回参数结构体
|
|
1337
|
-
*/
|
|
1338
|
-
export interface DescribeOrganizationMemberAuthAccountsResponse {
|
|
1758
|
+
IsAllowQuit: string;
|
|
1339
1759
|
/**
|
|
1340
|
-
*
|
|
1760
|
+
* 代付者Uin
|
|
1341
1761
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1342
1762
|
*/
|
|
1343
|
-
|
|
1763
|
+
PayUin: string;
|
|
1344
1764
|
/**
|
|
1345
|
-
*
|
|
1765
|
+
* 代付者名称
|
|
1346
1766
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1347
1767
|
*/
|
|
1348
|
-
|
|
1768
|
+
PayName: string;
|
|
1349
1769
|
/**
|
|
1350
|
-
*
|
|
1770
|
+
* 管理身份
|
|
1771
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1351
1772
|
*/
|
|
1352
|
-
|
|
1353
|
-
}
|
|
1354
|
-
/**
|
|
1355
|
-
* DescribeOrganization请求参数结构体
|
|
1356
|
-
*/
|
|
1357
|
-
export interface DescribeOrganizationRequest {
|
|
1773
|
+
OrgIdentity: Array<MemberIdentity>;
|
|
1358
1774
|
/**
|
|
1359
|
-
*
|
|
1775
|
+
* 安全信息绑定状态 未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
|
|
1776
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1360
1777
|
*/
|
|
1361
|
-
|
|
1778
|
+
BindStatus: string;
|
|
1362
1779
|
/**
|
|
1363
|
-
*
|
|
1780
|
+
* 成员权限状态 已确认:Confirmed ,待确认:UnConfirmed
|
|
1781
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1364
1782
|
*/
|
|
1365
|
-
|
|
1783
|
+
PermissionStatus: string;
|
|
1366
1784
|
}
|
|
1367
1785
|
/**
|
|
1368
|
-
*
|
|
1786
|
+
* MoveOrganizationNodeMembers返回参数结构体
|
|
1369
1787
|
*/
|
|
1370
|
-
export interface
|
|
1788
|
+
export interface MoveOrganizationNodeMembersResponse {
|
|
1371
1789
|
/**
|
|
1372
1790
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1373
1791
|
*/
|
|
@@ -1413,237 +1831,294 @@ export interface OrgMemberAuthIdentity {
|
|
|
1413
1831
|
*/
|
|
1414
1832
|
IdentityType?: number;
|
|
1415
1833
|
/**
|
|
1416
|
-
* 配置状态。取值:1-配置完成 2-需重新配置
|
|
1834
|
+
* 配置状态。取值:1-配置完成 2-需重新配置
|
|
1835
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1836
|
+
*/
|
|
1837
|
+
Status?: number;
|
|
1838
|
+
/**
|
|
1839
|
+
* 成员Uin。
|
|
1840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1841
|
+
*/
|
|
1842
|
+
MemberUin?: number;
|
|
1843
|
+
/**
|
|
1844
|
+
* 成员名称。
|
|
1845
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1846
|
+
*/
|
|
1847
|
+
MemberName?: string;
|
|
1848
|
+
}
|
|
1849
|
+
/**
|
|
1850
|
+
* 企业组织单元
|
|
1851
|
+
*/
|
|
1852
|
+
export interface OrgNode {
|
|
1853
|
+
/**
|
|
1854
|
+
* 组织节点ID
|
|
1855
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1856
|
+
*/
|
|
1857
|
+
NodeId: number;
|
|
1858
|
+
/**
|
|
1859
|
+
* 名称
|
|
1860
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1861
|
+
*/
|
|
1862
|
+
Name: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* 父节点ID
|
|
1865
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1866
|
+
*/
|
|
1867
|
+
ParentNodeId: number;
|
|
1868
|
+
/**
|
|
1869
|
+
* 备注
|
|
1417
1870
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1418
1871
|
*/
|
|
1419
|
-
|
|
1872
|
+
Remark: string;
|
|
1420
1873
|
/**
|
|
1421
|
-
*
|
|
1874
|
+
* 创建时间
|
|
1422
1875
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1423
1876
|
*/
|
|
1424
|
-
|
|
1877
|
+
CreateTime: string;
|
|
1425
1878
|
/**
|
|
1426
|
-
*
|
|
1879
|
+
* 更新时间
|
|
1427
1880
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1428
1881
|
*/
|
|
1429
|
-
|
|
1882
|
+
UpdateTime: string;
|
|
1430
1883
|
}
|
|
1431
1884
|
/**
|
|
1432
|
-
*
|
|
1885
|
+
* DeleteAccount请求参数结构体
|
|
1433
1886
|
*/
|
|
1434
|
-
export interface
|
|
1887
|
+
export interface DeleteAccountRequest {
|
|
1435
1888
|
/**
|
|
1436
|
-
* 成员uin
|
|
1437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1889
|
+
* 成员uin。
|
|
1438
1890
|
*/
|
|
1439
1891
|
MemberUin: number;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* CreateOrganizationMemberAuthIdentity请求参数结构体
|
|
1895
|
+
*/
|
|
1896
|
+
export interface CreateOrganizationMemberAuthIdentityRequest {
|
|
1440
1897
|
/**
|
|
1441
|
-
*
|
|
1442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1898
|
+
* 成员uin列表。最多10个
|
|
1443
1899
|
*/
|
|
1444
|
-
|
|
1900
|
+
MemberUins: Array<number | bigint>;
|
|
1901
|
+
/**
|
|
1902
|
+
* 身份Id列表。最多5个
|
|
1903
|
+
*/
|
|
1904
|
+
IdentityIds: Array<number | bigint>;
|
|
1445
1905
|
}
|
|
1446
1906
|
/**
|
|
1447
|
-
*
|
|
1907
|
+
* DescribeOrganizationFinancialByMember请求参数结构体
|
|
1448
1908
|
*/
|
|
1449
|
-
export interface
|
|
1909
|
+
export interface DescribeOrganizationFinancialByMemberRequest {
|
|
1450
1910
|
/**
|
|
1451
|
-
*
|
|
1911
|
+
* 查询开始月份。格式:yyyy-mm,例如:2021-01。
|
|
1452
1912
|
*/
|
|
1453
|
-
|
|
1913
|
+
Month: string;
|
|
1454
1914
|
/**
|
|
1455
|
-
*
|
|
1915
|
+
* 限制数目。取值范围:1~50,默认值:10
|
|
1456
1916
|
*/
|
|
1457
|
-
|
|
1917
|
+
Limit?: number;
|
|
1458
1918
|
/**
|
|
1459
|
-
*
|
|
1919
|
+
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
1460
1920
|
*/
|
|
1461
|
-
|
|
1921
|
+
Offset?: number;
|
|
1462
1922
|
/**
|
|
1463
|
-
*
|
|
1923
|
+
* 查询结束月份。格式:yyyy-mm,例如:2021-01,默认值为查询开始月份。
|
|
1464
1924
|
*/
|
|
1465
|
-
|
|
1925
|
+
EndMonth?: string;
|
|
1466
1926
|
/**
|
|
1467
|
-
*
|
|
1927
|
+
* 查询成员列表。 最大100个
|
|
1468
1928
|
*/
|
|
1469
|
-
|
|
1929
|
+
MemberUins?: Array<number | bigint>;
|
|
1470
1930
|
/**
|
|
1471
|
-
*
|
|
1931
|
+
* 查询产品列表。 最大100个
|
|
1472
1932
|
*/
|
|
1473
|
-
|
|
1933
|
+
ProductCodes?: Array<string>;
|
|
1934
|
+
}
|
|
1935
|
+
/**
|
|
1936
|
+
* DescribeOrganizationFinancialByMonth请求参数结构体
|
|
1937
|
+
*/
|
|
1938
|
+
export interface DescribeOrganizationFinancialByMonthRequest {
|
|
1474
1939
|
/**
|
|
1475
|
-
*
|
|
1940
|
+
* 查询月数。取值范围:1~6,默认值:6
|
|
1476
1941
|
*/
|
|
1477
|
-
|
|
1942
|
+
Limit?: number;
|
|
1478
1943
|
/**
|
|
1479
|
-
*
|
|
1944
|
+
* 查询结束月份。格式:yyyy-mm,例如:2021-01
|
|
1480
1945
|
*/
|
|
1481
|
-
|
|
1946
|
+
EndMonth?: string;
|
|
1482
1947
|
/**
|
|
1483
|
-
*
|
|
1948
|
+
* 查询成员列表。 最大100个
|
|
1484
1949
|
*/
|
|
1485
|
-
|
|
1950
|
+
MemberUins?: Array<number | bigint>;
|
|
1486
1951
|
/**
|
|
1487
|
-
*
|
|
1952
|
+
* 查询产品列表。 最大100个
|
|
1488
1953
|
*/
|
|
1489
|
-
|
|
1954
|
+
ProductCodes?: Array<string>;
|
|
1490
1955
|
}
|
|
1491
1956
|
/**
|
|
1492
|
-
*
|
|
1957
|
+
* CreateOrganizationMembersPolicy返回参数结构体
|
|
1493
1958
|
*/
|
|
1494
|
-
export interface
|
|
1959
|
+
export interface CreateOrganizationMembersPolicyResponse {
|
|
1960
|
+
/**
|
|
1961
|
+
* 策略ID。
|
|
1962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1963
|
+
*/
|
|
1964
|
+
PolicyId?: number;
|
|
1495
1965
|
/**
|
|
1496
1966
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1497
1967
|
*/
|
|
1498
1968
|
RequestId?: string;
|
|
1499
1969
|
}
|
|
1500
1970
|
/**
|
|
1501
|
-
*
|
|
1971
|
+
* DeleteShareUnitResources返回参数结构体
|
|
1502
1972
|
*/
|
|
1503
|
-
export interface
|
|
1504
|
-
/**
|
|
1505
|
-
* 偏移量。取值是limit的整数倍,默认值 : 0
|
|
1506
|
-
*/
|
|
1507
|
-
Offset: number;
|
|
1508
|
-
/**
|
|
1509
|
-
* 限制数目。取值范围:1~50,默认值:10
|
|
1510
|
-
*/
|
|
1511
|
-
Limit: number;
|
|
1512
|
-
/**
|
|
1513
|
-
* 国际站:en,国内站:zh
|
|
1514
|
-
*/
|
|
1515
|
-
Lang?: string;
|
|
1516
|
-
/**
|
|
1517
|
-
* 成员名称或者成员ID搜索。
|
|
1518
|
-
*/
|
|
1519
|
-
SearchKey?: string;
|
|
1520
|
-
/**
|
|
1521
|
-
* 主体名称搜索。
|
|
1522
|
-
*/
|
|
1523
|
-
AuthName?: string;
|
|
1973
|
+
export interface DeleteShareUnitResourcesResponse {
|
|
1524
1974
|
/**
|
|
1525
|
-
*
|
|
1975
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1526
1976
|
*/
|
|
1527
|
-
|
|
1977
|
+
RequestId?: string;
|
|
1528
1978
|
}
|
|
1529
1979
|
/**
|
|
1530
|
-
*
|
|
1980
|
+
* CreateOrganizationIdentity返回参数结构体
|
|
1531
1981
|
*/
|
|
1532
|
-
export interface
|
|
1982
|
+
export interface CreateOrganizationIdentityResponse {
|
|
1533
1983
|
/**
|
|
1534
|
-
* 身份ID
|
|
1984
|
+
* 身份ID
|
|
1535
1985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1536
1986
|
*/
|
|
1537
|
-
IdentityId
|
|
1987
|
+
IdentityId?: number;
|
|
1538
1988
|
/**
|
|
1539
|
-
*
|
|
1540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1989
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1541
1990
|
*/
|
|
1542
|
-
|
|
1991
|
+
RequestId?: string;
|
|
1543
1992
|
}
|
|
1544
1993
|
/**
|
|
1545
|
-
*
|
|
1994
|
+
* UpdateOrganizationIdentity返回参数结构体
|
|
1546
1995
|
*/
|
|
1547
|
-
export interface
|
|
1996
|
+
export interface UpdateOrganizationIdentityResponse {
|
|
1548
1997
|
/**
|
|
1549
|
-
*
|
|
1550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1998
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1551
1999
|
*/
|
|
1552
|
-
|
|
2000
|
+
RequestId?: string;
|
|
2001
|
+
}
|
|
2002
|
+
/**
|
|
2003
|
+
* DescribeOrganizationNodes返回参数结构体
|
|
2004
|
+
*/
|
|
2005
|
+
export interface DescribeOrganizationNodesResponse {
|
|
1553
2006
|
/**
|
|
1554
|
-
*
|
|
2007
|
+
* 总数。
|
|
1555
2008
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1556
2009
|
*/
|
|
1557
|
-
|
|
2010
|
+
Total: number;
|
|
1558
2011
|
/**
|
|
1559
|
-
*
|
|
2012
|
+
* 列表详情。
|
|
1560
2013
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1561
2014
|
*/
|
|
1562
|
-
|
|
2015
|
+
Items: Array<OrgNode>;
|
|
1563
2016
|
/**
|
|
1564
|
-
*
|
|
1565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2017
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1566
2018
|
*/
|
|
1567
|
-
|
|
2019
|
+
RequestId?: string;
|
|
2020
|
+
}
|
|
2021
|
+
/**
|
|
2022
|
+
* DeleteOrganizationMembersPolicy请求参数结构体
|
|
2023
|
+
*/
|
|
2024
|
+
export interface DeleteOrganizationMembersPolicyRequest {
|
|
1568
2025
|
/**
|
|
1569
|
-
*
|
|
1570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2026
|
+
* 访问策略ID。
|
|
1571
2027
|
*/
|
|
1572
|
-
|
|
2028
|
+
PolicyId: number;
|
|
2029
|
+
}
|
|
2030
|
+
/**
|
|
2031
|
+
* DeleteOrganizationIdentity请求参数结构体
|
|
2032
|
+
*/
|
|
2033
|
+
export interface DeleteOrganizationIdentityRequest {
|
|
1573
2034
|
/**
|
|
1574
|
-
*
|
|
1575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2035
|
+
* 身份ID
|
|
1576
2036
|
*/
|
|
1577
|
-
|
|
2037
|
+
IdentityId: number;
|
|
1578
2038
|
}
|
|
1579
2039
|
/**
|
|
1580
|
-
*
|
|
2040
|
+
* UpdateOrganizationNode返回参数结构体
|
|
1581
2041
|
*/
|
|
1582
|
-
export interface
|
|
2042
|
+
export interface UpdateOrganizationNodeResponse {
|
|
1583
2043
|
/**
|
|
1584
2044
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1585
2045
|
*/
|
|
1586
2046
|
RequestId?: string;
|
|
1587
2047
|
}
|
|
1588
2048
|
/**
|
|
1589
|
-
*
|
|
2049
|
+
* DeleteOrganizationNodes返回参数结构体
|
|
1590
2050
|
*/
|
|
1591
|
-
export interface
|
|
2051
|
+
export interface DeleteOrganizationNodesResponse {
|
|
1592
2052
|
/**
|
|
1593
|
-
*
|
|
2053
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1594
2054
|
*/
|
|
1595
|
-
|
|
2055
|
+
RequestId?: string;
|
|
2056
|
+
}
|
|
2057
|
+
/**
|
|
2058
|
+
* DescribeOrganizationFinancialByMember返回参数结构体
|
|
2059
|
+
*/
|
|
2060
|
+
export interface DescribeOrganizationFinancialByMemberResponse {
|
|
1596
2061
|
/**
|
|
1597
|
-
*
|
|
2062
|
+
* 当月总消耗。
|
|
2063
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1598
2064
|
*/
|
|
1599
|
-
|
|
2065
|
+
TotalCost?: number;
|
|
1600
2066
|
/**
|
|
1601
|
-
*
|
|
2067
|
+
* 成员消耗详情。
|
|
2068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1602
2069
|
*/
|
|
1603
|
-
|
|
2070
|
+
Items?: Array<OrgMemberFinancial>;
|
|
1604
2071
|
/**
|
|
1605
|
-
*
|
|
2072
|
+
* 总数目。
|
|
2073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1606
2074
|
*/
|
|
1607
|
-
|
|
2075
|
+
Total?: number;
|
|
1608
2076
|
/**
|
|
1609
|
-
*
|
|
2077
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1610
2078
|
*/
|
|
1611
|
-
|
|
2079
|
+
RequestId?: string;
|
|
1612
2080
|
}
|
|
1613
2081
|
/**
|
|
1614
|
-
*
|
|
2082
|
+
* 产品资源
|
|
1615
2083
|
*/
|
|
1616
|
-
export interface
|
|
2084
|
+
export interface ProductResource {
|
|
1617
2085
|
/**
|
|
1618
|
-
*
|
|
1619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2086
|
+
* 产品资源ID。
|
|
1620
2087
|
*/
|
|
1621
|
-
|
|
2088
|
+
ProductResourceId: string;
|
|
1622
2089
|
/**
|
|
1623
|
-
*
|
|
1624
|
-
|
|
2090
|
+
* 资源六段式最后一节
|
|
2091
|
+
* @deprecated
|
|
1625
2092
|
*/
|
|
1626
|
-
|
|
2093
|
+
ResourceGrantLast?: string;
|
|
2094
|
+
}
|
|
2095
|
+
/**
|
|
2096
|
+
* DeleteShareUnit请求参数结构体
|
|
2097
|
+
*/
|
|
2098
|
+
export interface DeleteShareUnitRequest {
|
|
1627
2099
|
/**
|
|
1628
|
-
*
|
|
1629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2100
|
+
* 共享单元ID。
|
|
1630
2101
|
*/
|
|
1631
|
-
|
|
2102
|
+
UnitId: string;
|
|
2103
|
+
}
|
|
2104
|
+
/**
|
|
2105
|
+
* DescribeOrganizationMemberPolicies返回参数结构体
|
|
2106
|
+
*/
|
|
2107
|
+
export interface DescribeOrganizationMemberPoliciesResponse {
|
|
1632
2108
|
/**
|
|
1633
|
-
*
|
|
2109
|
+
* 列表。
|
|
1634
2110
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1635
2111
|
*/
|
|
1636
|
-
|
|
2112
|
+
Items: Array<OrgMemberPolicy>;
|
|
1637
2113
|
/**
|
|
1638
|
-
*
|
|
2114
|
+
* 总数目。
|
|
1639
2115
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1640
2116
|
*/
|
|
1641
|
-
|
|
2117
|
+
Total: number;
|
|
1642
2118
|
/**
|
|
1643
|
-
*
|
|
1644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2119
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1645
2120
|
*/
|
|
1646
|
-
|
|
2121
|
+
RequestId?: string;
|
|
1647
2122
|
}
|
|
1648
2123
|
/**
|
|
1649
2124
|
* DeleteOrganizationMemberAuthIdentity请求参数结构体
|
|
@@ -1658,6 +2133,23 @@ export interface DeleteOrganizationMemberAuthIdentityRequest {
|
|
|
1658
2133
|
*/
|
|
1659
2134
|
IdentityId: number;
|
|
1660
2135
|
}
|
|
2136
|
+
/**
|
|
2137
|
+
* 共享地域
|
|
2138
|
+
*/
|
|
2139
|
+
export interface ShareArea {
|
|
2140
|
+
/**
|
|
2141
|
+
* 地域名称。
|
|
2142
|
+
*/
|
|
2143
|
+
Name?: string;
|
|
2144
|
+
/**
|
|
2145
|
+
* 地域标识。
|
|
2146
|
+
*/
|
|
2147
|
+
Area?: string;
|
|
2148
|
+
/**
|
|
2149
|
+
* 地域ID。
|
|
2150
|
+
*/
|
|
2151
|
+
AreaId?: number;
|
|
2152
|
+
}
|
|
1661
2153
|
/**
|
|
1662
2154
|
* DeleteAccount返回参数结构体
|
|
1663
2155
|
*/
|