tencentcloud-sdk-nodejs 4.1.88 → 4.1.90

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.
Files changed (31) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cam/v20190116/cam_client.js +7 -4
  3. package/es/services/cfs/v20190719/cfs_client.js +66 -27
  4. package/es/services/lowcode/v20210108/lowcode_client.js +12 -0
  5. package/es/services/wedata/v20210820/wedata_client.js +5 -2
  6. package/package.json +1 -1
  7. package/tencentcloud/common/sdk_version.d.ts +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/services/bi/v20220105/bi_models.d.ts +43 -1
  10. package/tencentcloud/services/cam/v20190116/cam_client.d.ts +9 -5
  11. package/tencentcloud/services/cam/v20190116/cam_client.js +12 -6
  12. package/tencentcloud/services/cam/v20190116/cam_models.d.ts +69 -22
  13. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +2 -1
  14. package/tencentcloud/services/cdb/v20170320/cdb_client.js +2 -1
  15. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +30 -22
  16. package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +82 -30
  17. package/tencentcloud/services/cfs/v20190719/cfs_client.js +121 -43
  18. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +934 -275
  19. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -7
  20. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +169 -61
  21. package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +110 -6
  22. package/tencentcloud/services/kms/v20190118/kms_models.d.ts +1 -1
  23. package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
  24. package/tencentcloud/services/lowcode/v20210108/lowcode_client.d.ts +17 -1
  25. package/tencentcloud/services/lowcode/v20210108/lowcode_client.js +24 -0
  26. package/tencentcloud/services/lowcode/v20210108/lowcode_models.d.ts +148 -31
  27. package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +16 -12
  28. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +14 -1
  29. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +7 -3
  30. package/tencentcloud/services/wedata/v20210820/wedata_client.js +9 -3
  31. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +90 -4
@@ -1 +1 @@
1
- export const sdkVersion = "4.1.88";
1
+ export const sdkVersion = "4.1.90";
@@ -39,6 +39,9 @@ export class Client extends AbstractClient {
39
39
  async UpdateUserOIDCConfig(req, cb) {
40
40
  return this.request("UpdateUserOIDCConfig", req, cb);
41
41
  }
42
+ async CreateSubAccountLoginIpPolicy(req, cb) {
43
+ return this.request("CreateSubAccountLoginIpPolicy", req, cb);
44
+ }
42
45
  async GetServiceLinkedRoleDeletionStatus(req, cb) {
43
46
  return this.request("GetServiceLinkedRoleDeletionStatus", req, cb);
44
47
  }
@@ -81,8 +84,8 @@ export class Client extends AbstractClient {
81
84
  async GetGroup(req, cb) {
82
85
  return this.request("GetGroup", req, cb);
83
86
  }
84
- async CreateUserOIDCConfig(req, cb) {
85
- return this.request("CreateUserOIDCConfig", req, cb);
87
+ async DeleteOIDCConfig(req, cb) {
88
+ return this.request("DeleteOIDCConfig", req, cb);
86
89
  }
87
90
  async DeleteAccessKey(req, cb) {
88
91
  return this.request("DeleteAccessKey", req, cb);
@@ -111,8 +114,8 @@ export class Client extends AbstractClient {
111
114
  async CreateSAMLProvider(req, cb) {
112
115
  return this.request("CreateSAMLProvider", req, cb);
113
116
  }
114
- async DeleteOIDCConfig(req, cb) {
115
- return this.request("DeleteOIDCConfig", req, cb);
117
+ async CreateUserOIDCConfig(req, cb) {
118
+ return this.request("CreateUserOIDCConfig", req, cb);
116
119
  }
117
120
  async UpdateOIDCConfig(req, cb) {
118
121
  return this.request("UpdateOIDCConfig", req, cb);
@@ -9,14 +9,20 @@ export class Client extends AbstractClient {
9
9
  async UpdateCfsFileSystemPGroup(req, cb) {
10
10
  return this.request("UpdateCfsFileSystemPGroup", req, cb);
11
11
  }
12
- async SignUpCfsService(req, cb) {
13
- return this.request("SignUpCfsService", req, cb);
12
+ async DescribeLifecycleDataTask(req, cb) {
13
+ return this.request("DescribeLifecycleDataTask", req, cb);
14
14
  }
15
15
  async DeleteCfsSnapshot(req, cb) {
16
16
  return this.request("DeleteCfsSnapshot", req, cb);
17
17
  }
18
- async DescribeCfsPGroups(req, cb) {
19
- return this.request("DescribeCfsPGroups", req, cb);
18
+ async DeleteCfsFileSystem(req, cb) {
19
+ return this.request("DeleteCfsFileSystem", req, cb);
20
+ }
21
+ async UpdateCfsSnapshotAttribute(req, cb) {
22
+ return this.request("UpdateCfsSnapshotAttribute", req, cb);
23
+ }
24
+ async DescribeMigrationTasks(req, cb) {
25
+ return this.request("DescribeMigrationTasks", req, cb);
20
26
  }
21
27
  async UpdateFileSystemBandwidthLimit(req, cb) {
22
28
  return this.request("UpdateFileSystemBandwidthLimit", req, cb);
@@ -24,15 +30,24 @@ export class Client extends AbstractClient {
24
30
  async SetUserQuota(req, cb) {
25
31
  return this.request("SetUserQuota", req, cb);
26
32
  }
27
- async DescribeAutoSnapshotPolicies(req, cb) {
28
- return this.request("DescribeAutoSnapshotPolicies", req, cb);
33
+ async CreateCfsPGroup(req, cb) {
34
+ return this.request("CreateCfsPGroup", req, cb);
29
35
  }
30
36
  async DescribeMountTargets(req, cb) {
31
37
  return this.request("DescribeMountTargets", req, cb);
32
38
  }
39
+ async CreateDataFlow(req, cb) {
40
+ return this.request("CreateDataFlow", req, cb);
41
+ }
33
42
  async DeleteCfsPGroup(req, cb) {
34
43
  return this.request("DeleteCfsPGroup", req, cb);
35
44
  }
45
+ async DeleteLifecyclePolicy(req, cb) {
46
+ return this.request("DeleteLifecyclePolicy", req, cb);
47
+ }
48
+ async CreateLifecyclePolicyDownloadTask(req, cb) {
49
+ return this.request("CreateLifecyclePolicyDownloadTask", req, cb);
50
+ }
36
51
  async DescribeCfsFileSystemClients(req, cb) {
37
52
  return this.request("DescribeCfsFileSystemClients", req, cb);
38
53
  }
@@ -42,14 +57,17 @@ export class Client extends AbstractClient {
42
57
  async StopMigrationTask(req, cb) {
43
58
  return this.request("StopMigrationTask", req, cb);
44
59
  }
45
- async DescribeMigrationTasks(req, cb) {
46
- return this.request("DescribeMigrationTasks", req, cb);
60
+ async DescribeBucketList(req, cb) {
61
+ return this.request("DescribeBucketList", req, cb);
47
62
  }
48
63
  async DescribeAvailableZoneInfo(req, cb) {
49
64
  return this.request("DescribeAvailableZoneInfo", req, cb);
50
65
  }
51
- async UpdateCfsFileSystemName(req, cb) {
52
- return this.request("UpdateCfsFileSystemName", req, cb);
66
+ async CreateLifecycleDataTask(req, cb) {
67
+ return this.request("CreateLifecycleDataTask", req, cb);
68
+ }
69
+ async SignUpCfsService(req, cb) {
70
+ return this.request("SignUpCfsService", req, cb);
53
71
  }
54
72
  async DeleteMigrationTask(req, cb) {
55
73
  return this.request("DeleteMigrationTask", req, cb);
@@ -60,29 +78,32 @@ export class Client extends AbstractClient {
60
78
  async UpdateCfsFileSystemSizeLimit(req, cb) {
61
79
  return this.request("UpdateCfsFileSystemSizeLimit", req, cb);
62
80
  }
63
- async CreateAutoSnapshotPolicy(req, cb) {
64
- return this.request("CreateAutoSnapshotPolicy", req, cb);
65
- }
66
- async DeleteCfsFileSystem(req, cb) {
67
- return this.request("DeleteCfsFileSystem", req, cb);
81
+ async CreateLifecyclePolicy(req, cb) {
82
+ return this.request("CreateLifecyclePolicy", req, cb);
68
83
  }
69
84
  async CreateCfsFileSystem(req, cb) {
70
85
  return this.request("CreateCfsFileSystem", req, cb);
71
86
  }
72
- async UpdateCfsSnapshotAttribute(req, cb) {
73
- return this.request("UpdateCfsSnapshotAttribute", req, cb);
87
+ async DescribeCfsPGroups(req, cb) {
88
+ return this.request("DescribeCfsPGroups", req, cb);
74
89
  }
75
90
  async DescribeCfsSnapshotOverview(req, cb) {
76
91
  return this.request("DescribeCfsSnapshotOverview", req, cb);
77
92
  }
93
+ async DescribeLifecyclePolicies(req, cb) {
94
+ return this.request("DescribeLifecyclePolicies", req, cb);
95
+ }
78
96
  async DescribeUserQuota(req, cb) {
79
97
  return this.request("DescribeUserQuota", req, cb);
80
98
  }
81
- async ModifyFileSystemAutoScaleUpRule(req, cb) {
82
- return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
99
+ async ApplyPathLifecyclePolicy(req, cb) {
100
+ return this.request("ApplyPathLifecyclePolicy", req, cb);
83
101
  }
84
- async UpdateAutoSnapshotPolicy(req, cb) {
85
- return this.request("UpdateAutoSnapshotPolicy", req, cb);
102
+ async DeleteUserQuota(req, cb) {
103
+ return this.request("DeleteUserQuota", req, cb);
104
+ }
105
+ async ModifyDataFlow(req, cb) {
106
+ return this.request("ModifyDataFlow", req, cb);
86
107
  }
87
108
  async UpdateCfsRule(req, cb) {
88
109
  return this.request("UpdateCfsRule", req, cb);
@@ -90,17 +111,23 @@ export class Client extends AbstractClient {
90
111
  async DescribeCfsFileSystems(req, cb) {
91
112
  return this.request("DescribeCfsFileSystems", req, cb);
92
113
  }
114
+ async ModifyFileSystemAutoScaleUpRule(req, cb) {
115
+ return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
116
+ }
93
117
  async DescribeCfsSnapshots(req, cb) {
94
118
  return this.request("DescribeCfsSnapshots", req, cb);
95
119
  }
96
120
  async BindAutoSnapshotPolicy(req, cb) {
97
121
  return this.request("BindAutoSnapshotPolicy", req, cb);
98
122
  }
123
+ async ModifyLifecyclePolicy(req, cb) {
124
+ return this.request("ModifyLifecyclePolicy", req, cb);
125
+ }
99
126
  async DeleteCfsRule(req, cb) {
100
127
  return this.request("DeleteCfsRule", req, cb);
101
128
  }
102
- async DescribeBucketList(req, cb) {
103
- return this.request("DescribeBucketList", req, cb);
129
+ async DeleteDataFlow(req, cb) {
130
+ return this.request("DeleteDataFlow", req, cb);
104
131
  }
105
132
  async CreateMigrationTask(req, cb) {
106
133
  return this.request("CreateMigrationTask", req, cb);
@@ -108,24 +135,36 @@ export class Client extends AbstractClient {
108
135
  async DeleteMountTarget(req, cb) {
109
136
  return this.request("DeleteMountTarget", req, cb);
110
137
  }
111
- async DeleteUserQuota(req, cb) {
112
- return this.request("DeleteUserQuota", req, cb);
138
+ async CreateAutoSnapshotPolicy(req, cb) {
139
+ return this.request("CreateAutoSnapshotPolicy", req, cb);
113
140
  }
114
- async CreateCfsPGroup(req, cb) {
115
- return this.request("CreateCfsPGroup", req, cb);
141
+ async DescribeAutoSnapshotPolicies(req, cb) {
142
+ return this.request("DescribeAutoSnapshotPolicies", req, cb);
116
143
  }
117
144
  async DeleteAutoSnapshotPolicy(req, cb) {
118
145
  return this.request("DeleteAutoSnapshotPolicy", req, cb);
119
146
  }
147
+ async StopLifecycleDataTask(req, cb) {
148
+ return this.request("StopLifecycleDataTask", req, cb);
149
+ }
120
150
  async CreateCfsSnapshot(req, cb) {
121
151
  return this.request("CreateCfsSnapshot", req, cb);
122
152
  }
153
+ async UpdateAutoSnapshotPolicy(req, cb) {
154
+ return this.request("UpdateAutoSnapshotPolicy", req, cb);
155
+ }
123
156
  async UnbindAutoSnapshotPolicy(req, cb) {
124
157
  return this.request("UnbindAutoSnapshotPolicy", req, cb);
125
158
  }
126
159
  async DescribeSnapshotOperationLogs(req, cb) {
127
160
  return this.request("DescribeSnapshotOperationLogs", req, cb);
128
161
  }
162
+ async UpdateCfsFileSystemName(req, cb) {
163
+ return this.request("UpdateCfsFileSystemName", req, cb);
164
+ }
165
+ async DescribeDataFlow(req, cb) {
166
+ return this.request("DescribeDataFlow", req, cb);
167
+ }
129
168
  async CreateCfsRule(req, cb) {
130
169
  return this.request("CreateCfsRule", req, cb);
131
170
  }
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
6
6
  async CreateKnowledgeSet(req, cb) {
7
7
  return this.request("CreateKnowledgeSet", req, cb);
8
8
  }
9
+ async CheckDeployApp(req, cb) {
10
+ return this.request("CheckDeployApp", req, cb);
11
+ }
9
12
  async UpdateKnowledgeSet(req, cb) {
10
13
  return this.request("UpdateKnowledgeSet", req, cb);
11
14
  }
@@ -27,9 +30,18 @@ export class Client extends AbstractClient {
27
30
  async UploadKnowledgeDocumentSet(req, cb) {
28
31
  return this.request("UploadKnowledgeDocumentSet", req, cb);
29
32
  }
33
+ async DeleteAppBindWxApp(req, cb) {
34
+ return this.request("DeleteAppBindWxApp", req, cb);
35
+ }
30
36
  async DescribeKnowledgeDocumentSetList(req, cb) {
31
37
  return this.request("DescribeKnowledgeDocumentSetList", req, cb);
32
38
  }
39
+ async DeployApp(req, cb) {
40
+ return this.request("DeployApp", req, cb);
41
+ }
42
+ async PutWxAppIdToWeApp(req, cb) {
43
+ return this.request("PutWxAppIdToWeApp", req, cb);
44
+ }
33
45
  async DeleteKnowledgeSet(req, cb) {
34
46
  return this.request("DeleteKnowledgeSet", req, cb);
35
47
  }
@@ -609,6 +609,9 @@ export class Client extends AbstractClient {
609
609
  async DescribeExecStrategy(req, cb) {
610
610
  return this.request("DescribeExecStrategy", req, cb);
611
611
  }
612
+ async FreezeTasksByWorkflowIds(req, cb) {
613
+ return this.request("FreezeTasksByWorkflowIds", req, cb);
614
+ }
612
615
  async DescribeTableLineage(req, cb) {
613
616
  return this.request("DescribeTableLineage", req, cb);
614
617
  }
@@ -690,8 +693,8 @@ export class Client extends AbstractClient {
690
693
  async DeleteTaskLineage(req, cb) {
691
694
  return this.request("DeleteTaskLineage", req, cb);
692
695
  }
693
- async FreezeTasksByWorkflowIds(req, cb) {
694
- return this.request("FreezeTasksByWorkflowIds", req, cb);
696
+ async DescribeSuccessorTaskInfoList(req, cb) {
697
+ return this.request("DescribeSuccessorTaskInfoList", req, cb);
695
698
  }
696
699
  async DeleteResource(req, cb) {
697
700
  return this.request("DeleteResource", req, cb);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.1.88",
3
+ "version": "4.1.90",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1 +1 @@
1
- export declare const sdkVersion = "4.1.88";
1
+ export declare const sdkVersion = "4.1.90";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sdkVersion = void 0;
4
- exports.sdkVersion = "4.1.88";
4
+ exports.sdkVersion = "4.1.90";
@@ -248,6 +248,14 @@ export interface CreateDatasourceRequest {
248
248
  * 地域
249
249
  */
250
250
  RegionId?: string;
251
+ /**
252
+ * 数据库schema
253
+ */
254
+ Schema?: string;
255
+ /**
256
+ * 数据库版本
257
+ */
258
+ DbVersion?: string;
251
259
  }
252
260
  /**
253
261
  * DeleteDatasource请求参数结构体
@@ -1225,7 +1233,7 @@ export interface ModifyDatasourceCloudResponse {
1225
1233
  */
1226
1234
  ErrorInfo?: ErrorInfo;
1227
1235
  /**
1228
- * 成功无
1236
+ *
1229
1237
  注意:此字段可能返回 null,表示取不到有效值。
1230
1238
  */
1231
1239
  Data?: string;
@@ -1332,6 +1340,14 @@ export interface ModifyDatasourceCloudRequest {
1332
1340
  * 集群id
1333
1341
  */
1334
1342
  ClusterId?: string;
1343
+ /**
1344
+ * 数据库schema
1345
+ */
1346
+ Schema?: string;
1347
+ /**
1348
+ * 数据库版本
1349
+ */
1350
+ DbVersion?: string;
1335
1351
  }
1336
1352
  /**
1337
1353
  * ModifyDatasource请求参数结构体
@@ -1425,6 +1441,14 @@ export interface ModifyDatasourceRequest {
1425
1441
  * 地域
1426
1442
  */
1427
1443
  RegionId?: string;
1444
+ /**
1445
+ * 数据库schema
1446
+ */
1447
+ Schema?: string;
1448
+ /**
1449
+ * 数据库版本
1450
+ */
1451
+ DbVersion?: string;
1428
1452
  }
1429
1453
  /**
1430
1454
  * ModifyProject请求参数结构体
@@ -2042,6 +2066,16 @@ export interface DatasourceInfo {
2042
2066
  注意:此字段可能返回 null,表示取不到有效值。
2043
2067
  */
2044
2068
  OwnerName?: string;
2069
+ /**
2070
+ * 数据库schema
2071
+ 注意:此字段可能返回 null,表示取不到有效值。
2072
+ */
2073
+ Schema?: string;
2074
+ /**
2075
+ * 数据库版本
2076
+ 注意:此字段可能返回 null,表示取不到有效值。
2077
+ */
2078
+ DbVersion?: string;
2045
2079
  }
2046
2080
  /**
2047
2081
  * DeleteUserRoleProject请求参数结构体
@@ -2572,6 +2606,14 @@ export interface CreateDatasourceCloudRequest {
2572
2606
  * 集群id
2573
2607
  */
2574
2608
  ClusterId?: string;
2609
+ /**
2610
+ * 数据库schema
2611
+ */
2612
+ Schema?: string;
2613
+ /**
2614
+ * 数据库版本
2615
+ */
2616
+ DbVersion?: string;
2575
2617
  }
2576
2618
  /**
2577
2619
  * 用户ID和用户名
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { ListAttachedRolePoliciesResponse, CreateMessageReceiverRequest, UpdateUserOIDCConfigResponse, UpdateRoleSessionDurationResponse, ListAccessKeysRequest, SetMfaFlagResponse, UpdateSAMLProviderRequest, DeleteUserRequest, DetachGroupPolicyRequest, DescribeRoleListResponse, UpdatePolicyResponse, DeleteUserResponse, TagRoleResponse, GetRoleRequest, CreateServiceLinkedRoleRequest, ListAttachedGroupPoliciesRequest, ListGroupsForUserRequest, AttachRolePolicyResponse, GetUserPermissionBoundaryRequest, DescribeOIDCConfigRequest, GetRolePermissionBoundaryRequest, GetServiceLinkedRoleDeletionStatusResponse, GetSecurityLastUsedRequest, DescribeUserSAMLConfigResponse, DeleteUserPermissionsBoundaryResponse, ListUsersResponse, UpdateRoleDescriptionResponse, GetAccountSummaryRequest, DeletePolicyResponse, GetUserAppIdResponse, GetUserAppIdRequest, DescribeOIDCConfigResponse, ListPolicyVersionsRequest, GetCustomMFATokenInfoRequest, DescribeRoleListRequest, DescribeUserSAMLConfigRequest, DeleteMessageReceiverResponse, DeleteAccessKeyResponse, PutRolePermissionsBoundaryRequest, GetGroupRequest, DeleteRoleResponse, DetachUserPolicyRequest, DescribeSubAccountsRequest, DeleteUserPermissionsBoundaryRequest, ListSAMLProvidersRequest, UpdateRoleSessionDurationRequest, CreateAccessKeyResponse, DeletePolicyVersionResponse, CreateAccessKeyRequest, BuildDataFlowAuthTokenRequest, GetRolePermissionBoundaryResponse, ListGroupsForUserResponse, ListUsersForGroupRequest, RemoveUserFromGroupRequest, CreatePolicyVersionResponse, ListPoliciesResponse, DeleteAccessKeyRequest, UpdateRoleDescriptionRequest, UpdateUserSAMLConfigRequest, DeleteGroupResponse, DescribeSafeAuthFlagResponse, CreatePolicyVersionRequest, UpdateAccessKeyResponse, CreateUserOIDCConfigResponse, ListAttachedUserAllPoliciesResponse, DeleteGroupRequest, GetUserResponse, GetUserPermissionBoundaryResponse, CreatePolicyResponse, ListGroupsResponse, DetachRolePolicyRequest, UntagRoleResponse, ListPoliciesGrantingServiceAccessResponse, DeleteRolePermissionsBoundaryRequest, DescribeUserOIDCConfigResponse, DeletePolicyRequest, AddUserRequest, UpdateAssumeRolePolicyRequest, DeleteRoleRequest, ListWeChatWorkSubAccountsRequest, UpdateRoleConsoleLoginRequest, BuildDataFlowAuthTokenResponse, UpdateUserResponse, UpdateAssumeRolePolicyResponse, GetPolicyVersionRequest, CreateSAMLProviderResponse, DeleteRolePermissionsBoundaryResponse, GetUserRequest, CreateGroupRequest, ListReceiverRequest, DisableUserSSORequest, ListPoliciesGrantingServiceAccessRequest, UpdateSAMLProviderResponse, UpdateAccessKeyRequest, UpdateUserRequest, ListWeChatWorkSubAccountsResponse, CreateSAMLProviderRequest, DisableUserSSOResponse, UpdateRoleConsoleLoginResponse, AttachRolePolicyRequest, ConsumeCustomMFATokenResponse, AttachUserPolicyRequest, ListAttachedGroupPoliciesResponse, ListAttachedUserPoliciesResponse, PutUserPermissionsBoundaryResponse, GetPolicyVersionResponse, GetCustomMFATokenInfoResponse, ConsumeCustomMFATokenRequest, CreateOIDCConfigRequest, GetGroupResponse, ListReceiverResponse, UpdateOIDCConfigResponse, UntagRoleRequest, AttachGroupPolicyRequest, DeleteSAMLProviderResponse, GetAccountSummaryResponse, CreateServiceLinkedRoleResponse, ListUsersRequest, ListCollaboratorsRequest, CreateUserOIDCConfigRequest, AddUserResponse, UpdateGroupResponse, ListEntitiesForPolicyRequest, TagRoleRequest, ListPoliciesRequest, GetServiceLinkedRoleDeletionStatusRequest, DetachGroupPolicyResponse, CreatePolicyRequest, ListAttachedUserAllPoliciesRequest, DeletePolicyVersionRequest, CreateUserSAMLConfigRequest, UpdateGroupRequest, DeleteSAMLProviderRequest, UpdateOIDCConfigRequest, CreateRoleResponse, GetSAMLProviderResponse, DescribeSafeAuthFlagIntlResponse, ListGroupsRequest, ListPolicyVersionsResponse, GetPolicyRequest, DescribeSafeAuthFlagIntlRequest, SetDefaultPolicyVersionRequest, UpdateUserOIDCConfigRequest, AddUserToGroupRequest, RemoveUserFromGroupResponse, DetachRolePolicyResponse, DescribeUserOIDCConfigRequest, CreateOIDCConfigResponse, PutUserPermissionsBoundaryRequest, ListSAMLProvidersResponse, SetDefaultPolicyVersionResponse, ListAttachedRolePoliciesRequest, GetSAMLProviderRequest, DetachUserPolicyResponse, GetRoleResponse, CreateRoleRequest, DeleteServiceLinkedRoleResponse, ListUsersForGroupResponse, GetPolicyResponse, DescribeSafeAuthFlagRequest, DeleteServiceLinkedRoleRequest, DeleteOIDCConfigResponse, CreateUserSAMLConfigResponse, DescribeSubAccountsResponse, ListEntitiesForPolicyResponse, AddUserToGroupResponse, UpdateUserSAMLConfigResponse, AttachUserPolicyResponse, DescribeSafeAuthFlagCollResponse, DeleteMessageReceiverRequest, DescribeSafeAuthFlagCollRequest, PutRolePermissionsBoundaryResponse, SetMfaFlagRequest, ListCollaboratorsResponse, ListAccessKeysResponse, GetSecurityLastUsedResponse, ListAttachedUserPoliciesRequest, AttachGroupPolicyResponse, UpdatePolicyRequest, DeleteOIDCConfigRequest, CreateMessageReceiverResponse, CreateGroupResponse } from "./cam_models";
3
+ import { ListAttachedRolePoliciesResponse, CreateMessageReceiverRequest, UpdateUserOIDCConfigResponse, UpdateRoleSessionDurationResponse, ListAccessKeysRequest, SetMfaFlagResponse, UpdateSAMLProviderRequest, DeleteUserRequest, DetachGroupPolicyRequest, DescribeRoleListResponse, UpdatePolicyResponse, DeleteUserResponse, TagRoleResponse, GetRoleRequest, CreateServiceLinkedRoleRequest, CreateSAMLProviderRequest, ListGroupsForUserRequest, AttachRolePolicyResponse, GetUserPermissionBoundaryRequest, DescribeOIDCConfigRequest, GetRolePermissionBoundaryRequest, GetServiceLinkedRoleDeletionStatusResponse, GetSecurityLastUsedRequest, DescribeUserSAMLConfigResponse, DeleteUserPermissionsBoundaryResponse, ListUsersResponse, UpdateRoleDescriptionResponse, GetAccountSummaryRequest, DeletePolicyResponse, GetUserAppIdResponse, CreateSubAccountLoginIpPolicyResponse, DescribeOIDCConfigResponse, ListPolicyVersionsRequest, GetCustomMFATokenInfoRequest, DescribeRoleListRequest, DescribeUserSAMLConfigRequest, DeleteMessageReceiverResponse, DeleteAccessKeyResponse, PutRolePermissionsBoundaryRequest, GetGroupRequest, DeleteRoleResponse, DetachUserPolicyRequest, DescribeSubAccountsRequest, DeleteUserPermissionsBoundaryRequest, ListSAMLProvidersRequest, UpdateRoleSessionDurationRequest, CreateAccessKeyResponse, DeletePolicyVersionResponse, CreateAccessKeyRequest, BuildDataFlowAuthTokenRequest, GetRolePermissionBoundaryResponse, ListGroupsForUserResponse, ListUsersForGroupRequest, RemoveUserFromGroupRequest, CreatePolicyVersionResponse, ListPoliciesResponse, DeleteAccessKeyRequest, UpdateRoleDescriptionRequest, UpdateUserSAMLConfigRequest, DeleteGroupResponse, DescribeSafeAuthFlagResponse, CreatePolicyVersionRequest, UpdateAccessKeyResponse, CreateUserOIDCConfigResponse, ListAttachedUserAllPoliciesResponse, DeleteGroupRequest, GetUserResponse, GetUserPermissionBoundaryResponse, ListAttachedGroupPoliciesRequest, CreatePolicyResponse, ListGroupsResponse, DetachRolePolicyRequest, UntagRoleResponse, ListPoliciesGrantingServiceAccessResponse, DeleteRolePermissionsBoundaryRequest, DescribeUserOIDCConfigResponse, DeletePolicyRequest, AddUserRequest, UpdateAssumeRolePolicyRequest, DeleteRoleRequest, ListWeChatWorkSubAccountsRequest, UpdateRoleConsoleLoginRequest, BuildDataFlowAuthTokenResponse, UpdateUserResponse, UpdateAssumeRolePolicyResponse, GetPolicyVersionRequest, CreateSAMLProviderResponse, DeleteRolePermissionsBoundaryResponse, GetUserRequest, CreateGroupRequest, ListReceiverRequest, DisableUserSSORequest, ListPoliciesGrantingServiceAccessRequest, UpdateSAMLProviderResponse, UpdateAccessKeyRequest, UpdateUserRequest, ListWeChatWorkSubAccountsResponse, CreateSubAccountLoginIpPolicyRequest, DisableUserSSOResponse, UpdateRoleConsoleLoginResponse, AttachRolePolicyRequest, ConsumeCustomMFATokenResponse, AttachUserPolicyRequest, ListAttachedGroupPoliciesResponse, ListAttachedUserPoliciesResponse, PutUserPermissionsBoundaryResponse, GetPolicyVersionResponse, GetCustomMFATokenInfoResponse, ConsumeCustomMFATokenRequest, CreateOIDCConfigRequest, GetGroupResponse, ListReceiverResponse, UpdateOIDCConfigResponse, UntagRoleRequest, AttachGroupPolicyRequest, DeleteSAMLProviderResponse, GetAccountSummaryResponse, CreateServiceLinkedRoleResponse, ListUsersRequest, ListCollaboratorsRequest, CreateUserOIDCConfigRequest, AddUserResponse, UpdateGroupResponse, ListEntitiesForPolicyRequest, TagRoleRequest, ListPoliciesRequest, GetServiceLinkedRoleDeletionStatusRequest, DetachGroupPolicyResponse, CreatePolicyRequest, ListAttachedUserAllPoliciesRequest, DeletePolicyVersionRequest, CreateUserSAMLConfigRequest, UpdateGroupRequest, DeleteSAMLProviderRequest, UpdateOIDCConfigRequest, CreateRoleResponse, GetSAMLProviderResponse, DescribeSafeAuthFlagIntlResponse, ListGroupsRequest, ListPolicyVersionsResponse, GetPolicyRequest, DescribeSafeAuthFlagIntlRequest, SetDefaultPolicyVersionRequest, UpdateUserOIDCConfigRequest, AddUserToGroupRequest, RemoveUserFromGroupResponse, DetachRolePolicyResponse, DescribeUserOIDCConfigRequest, CreateOIDCConfigResponse, PutUserPermissionsBoundaryRequest, ListSAMLProvidersResponse, SetDefaultPolicyVersionResponse, ListAttachedRolePoliciesRequest, GetSAMLProviderRequest, DetachUserPolicyResponse, GetRoleResponse, CreateRoleRequest, DeleteServiceLinkedRoleResponse, ListUsersForGroupResponse, GetPolicyResponse, GetUserAppIdRequest, DescribeSafeAuthFlagRequest, DeleteServiceLinkedRoleRequest, DeleteOIDCConfigResponse, CreateUserSAMLConfigResponse, DescribeSubAccountsResponse, ListEntitiesForPolicyResponse, AddUserToGroupResponse, UpdateUserSAMLConfigResponse, AttachUserPolicyResponse, DescribeSafeAuthFlagCollResponse, DeleteMessageReceiverRequest, DescribeSafeAuthFlagCollRequest, PutRolePermissionsBoundaryResponse, SetMfaFlagRequest, ListCollaboratorsResponse, ListAccessKeysResponse, GetSecurityLastUsedResponse, ListAttachedUserPoliciesRequest, AttachGroupPolicyResponse, UpdatePolicyRequest, DeleteOIDCConfigRequest, CreateMessageReceiverResponse, CreateGroupResponse } from "./cam_models";
4
4
  /**
5
5
  * cam client
6
6
  * @class
@@ -55,6 +55,10 @@ export declare class Client extends AbstractClient {
55
55
  * 修改用户OIDC配置
56
56
  */
57
57
  UpdateUserOIDCConfig(req: UpdateUserOIDCConfigRequest, cb?: (error: string, rep: UpdateUserOIDCConfigResponse) => void): Promise<UpdateUserOIDCConfigResponse>;
58
+ /**
59
+ * 增加子账号登录IP策略
60
+ */
61
+ CreateSubAccountLoginIpPolicy(req: CreateSubAccountLoginIpPolicyRequest, cb?: (error: string, rep: CreateSubAccountLoginIpPolicyResponse) => void): Promise<CreateSubAccountLoginIpPolicyResponse>;
58
62
  /**
59
63
  * 根据删除TaskId获取服务相关角色删除状态
60
64
  */
@@ -112,9 +116,9 @@ export declare class Client extends AbstractClient {
112
116
  */
113
117
  GetGroup(req: GetGroupRequest, cb?: (error: string, rep: GetGroupResponse) => void): Promise<GetGroupResponse>;
114
118
  /**
115
- * 创建用户OIDC配置。只能创建一个用户OIDC身份提供商,并且创建用户OIDC配置之后会自动关闭用户SAML SSO身份提供商。
119
+ * 删除OIDC身份提供商
116
120
  */
117
- CreateUserOIDCConfig(req: CreateUserOIDCConfigRequest, cb?: (error: string, rep: CreateUserOIDCConfigResponse) => void): Promise<CreateUserOIDCConfigResponse>;
121
+ DeleteOIDCConfig(req: DeleteOIDCConfigRequest, cb?: (error: string, rep: DeleteOIDCConfigResponse) => void): Promise<DeleteOIDCConfigResponse>;
118
122
  /**
119
123
  * 为CAM用户删除访问密钥。
120
124
  此接口属于高风险操作,删除密钥后不可恢复,腾讯云将永久拒绝此密钥的所有请求,请谨慎使用。
@@ -153,9 +157,9 @@ export declare class Client extends AbstractClient {
153
157
  */
154
158
  CreateSAMLProvider(req: CreateSAMLProviderRequest, cb?: (error: string, rep: CreateSAMLProviderResponse) => void): Promise<CreateSAMLProviderResponse>;
155
159
  /**
156
- * 删除OIDC身份提供商
160
+ * 创建用户OIDC配置。只能创建一个用户OIDC身份提供商,并且创建用户OIDC配置之后会自动关闭用户SAML SSO身份提供商。
157
161
  */
158
- DeleteOIDCConfig(req: DeleteOIDCConfigRequest, cb?: (error: string, rep: DeleteOIDCConfigResponse) => void): Promise<DeleteOIDCConfigResponse>;
162
+ CreateUserOIDCConfig(req: CreateUserOIDCConfigRequest, cb?: (error: string, rep: CreateUserOIDCConfigResponse) => void): Promise<CreateUserOIDCConfigResponse>;
159
163
  /**
160
164
  * 修改角色OIDC配置
161
165
  */
@@ -99,6 +99,12 @@ class Client extends abstract_client_1.AbstractClient {
99
99
  async UpdateUserOIDCConfig(req, cb) {
100
100
  return this.request("UpdateUserOIDCConfig", req, cb);
101
101
  }
102
+ /**
103
+ * 增加子账号登录IP策略
104
+ */
105
+ async CreateSubAccountLoginIpPolicy(req, cb) {
106
+ return this.request("CreateSubAccountLoginIpPolicy", req, cb);
107
+ }
102
108
  /**
103
109
  * 根据删除TaskId获取服务相关角色删除状态
104
110
  */
@@ -184,10 +190,10 @@ class Client extends abstract_client_1.AbstractClient {
184
190
  return this.request("GetGroup", req, cb);
185
191
  }
186
192
  /**
187
- * 创建用户OIDC配置。只能创建一个用户OIDC身份提供商,并且创建用户OIDC配置之后会自动关闭用户SAML SSO身份提供商。
193
+ * 删除OIDC身份提供商
188
194
  */
189
- async CreateUserOIDCConfig(req, cb) {
190
- return this.request("CreateUserOIDCConfig", req, cb);
195
+ async DeleteOIDCConfig(req, cb) {
196
+ return this.request("DeleteOIDCConfig", req, cb);
191
197
  }
192
198
  /**
193
199
  * 为CAM用户删除访问密钥。
@@ -245,10 +251,10 @@ class Client extends abstract_client_1.AbstractClient {
245
251
  return this.request("CreateSAMLProvider", req, cb);
246
252
  }
247
253
  /**
248
- * 删除OIDC身份提供商
254
+ * 创建用户OIDC配置。只能创建一个用户OIDC身份提供商,并且创建用户OIDC配置之后会自动关闭用户SAML SSO身份提供商。
249
255
  */
250
- async DeleteOIDCConfig(req, cb) {
251
- return this.request("DeleteOIDCConfig", req, cb);
256
+ async CreateUserOIDCConfig(req, cb) {
257
+ return this.request("CreateUserOIDCConfig", req, cb);
252
258
  }
253
259
  /**
254
260
  * 修改角色OIDC配置
@@ -322,25 +322,21 @@ export interface CreateServiceLinkedRoleRequest {
322
322
  Tags?: Array<RoleTags>;
323
323
  }
324
324
  /**
325
- * ListAttachedGroupPolicies请求参数结构体
325
+ * CreateSAMLProvider请求参数结构体
326
326
  */
327
- export interface ListAttachedGroupPoliciesRequest {
328
- /**
329
- * 用户组ID
330
- */
331
- TargetGroupId: number;
327
+ export interface CreateSAMLProviderRequest {
332
328
  /**
333
- * 页码,默认值是 1,从 1 开始
329
+ * SAML身份提供商名称
334
330
  */
335
- Page?: number;
331
+ Name: string;
336
332
  /**
337
- * 每页大小,默认值是 20
333
+ * SAML身份提供商描述
338
334
  */
339
- Rp?: number;
335
+ Description: string;
340
336
  /**
341
- * 搜索关键字
337
+ * SAML身份提供商Base64编码的元数据文档
342
338
  */
343
- Keyword?: string;
339
+ SAMLMetadataDocument: string;
344
340
  }
345
341
  /**
346
342
  * ListGroupsForUser请求参数结构体
@@ -522,9 +518,14 @@ export interface GetUserAppIdResponse {
522
518
  RequestId?: string;
523
519
  }
524
520
  /**
525
- * GetUserAppId请求参数结构体
521
+ * CreateSubAccountLoginIpPolicy返回参数结构体
526
522
  */
527
- export declare type GetUserAppIdRequest = null;
523
+ export interface CreateSubAccountLoginIpPolicyResponse {
524
+ /**
525
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
526
+ */
527
+ RequestId?: string;
528
+ }
528
529
  /**
529
530
  * DescribeOIDCConfig返回参数结构体
530
531
  */
@@ -1400,6 +1401,27 @@ export interface GetUserPermissionBoundaryResponse {
1400
1401
  */
1401
1402
  RequestId?: string;
1402
1403
  }
1404
+ /**
1405
+ * ListAttachedGroupPolicies请求参数结构体
1406
+ */
1407
+ export interface ListAttachedGroupPoliciesRequest {
1408
+ /**
1409
+ * 用户组ID
1410
+ */
1411
+ TargetGroupId: number;
1412
+ /**
1413
+ * 页码,默认值是 1,从 1 开始
1414
+ */
1415
+ Page?: number;
1416
+ /**
1417
+ * 每页大小,默认值是 20
1418
+ */
1419
+ Rp?: number;
1420
+ /**
1421
+ * 搜索关键字
1422
+ */
1423
+ Keyword?: string;
1424
+ }
1403
1425
  /**
1404
1426
  * CreatePolicy返回参数结构体
1405
1427
  */
@@ -2007,21 +2029,29 @@ export interface ListWeChatWorkSubAccountsResponse {
2007
2029
  RequestId?: string;
2008
2030
  }
2009
2031
  /**
2010
- * CreateSAMLProvider请求参数结构体
2032
+ * CreateSubAccountLoginIpPolicy请求参数结构体
2011
2033
  */
2012
- export interface CreateSAMLProviderRequest {
2034
+ export interface CreateSubAccountLoginIpPolicyRequest {
2013
2035
  /**
2014
- * SAML身份提供商名称
2036
+ * IP策略集合
2015
2037
  */
2016
- Name: string;
2038
+ IpPolicies?: Array<IpPolicy>;
2017
2039
  /**
2018
- * SAML身份提供商描述
2040
+ * 审批人类型,目前支持的类型有:SubAccountLoginLimitApproval(子账号登录限制审批)
2019
2041
  */
2020
- Description: string;
2042
+ ApproverType?: string;
2021
2043
  /**
2022
- * SAML身份提供商Base64编码的元数据文档
2044
+ * 被添加为协助审批人的账号ID数组
2023
2045
  */
2024
- SAMLMetadataDocument: string;
2046
+ ApproverUin?: Array<number | bigint>;
2047
+ /**
2048
+ * 是否禁用策略:0:不禁用,1:禁用
2049
+ */
2050
+ DisablePolicy?: number;
2051
+ /**
2052
+ * 策略类型:1:更新IP策略,2:设置异地登录校验校验规则
2053
+ */
2054
+ PolicyType?: number;
2025
2055
  }
2026
2056
  /**
2027
2057
  * 关联策略信息
@@ -2894,6 +2924,19 @@ export interface DescribeSafeAuthFlagIntlResponse {
2894
2924
  */
2895
2925
  RequestId?: string;
2896
2926
  }
2927
+ /**
2928
+ * IP限制策略
2929
+ */
2930
+ export interface IpPolicy {
2931
+ /**
2932
+ * IP段
2933
+ */
2934
+ IP: string;
2935
+ /**
2936
+ * 策略效力,Allow或Deny
2937
+ */
2938
+ Effect: string;
2939
+ }
2897
2940
  /**
2898
2941
  * ListGroups请求参数结构体
2899
2942
  */
@@ -3310,6 +3353,10 @@ export interface GetPolicyResponse {
3310
3353
  */
3311
3354
  RequestId?: string;
3312
3355
  }
3356
+ /**
3357
+ * GetUserAppId请求参数结构体
3358
+ */
3359
+ export declare type GetUserAppIdRequest = null;
3313
3360
  /**
3314
3361
  * DescribeSafeAuthFlag请求参数结构体
3315
3362
  */
@@ -317,7 +317,8 @@ export declare class Client extends AbstractClient {
317
317
  */
318
318
  DescribeProjectSecurityGroups(req: DescribeProjectSecurityGroupsRequest, cb?: (error: string, rep: DescribeProjectSecurityGroupsResponse) => void): Promise<DescribeProjectSecurityGroupsResponse>;
319
319
  /**
320
- * 本接口(DescribeSlowLogs)用于获取云数据库实例的慢查询日志。说明:若单次查询数据量过大,则有可能响应超时,建议缩短单次查询时间范围,如一小时,避免导致超时。
320
+ * 本接口(DescribeSlowLogs)用于获取云数据库实例的慢查询日志。
321
+ 说明:若单次查询数据量过大,则有可能响应超时,建议缩短单次查询时间范围,如一小时,避免导致超时。
321
322
  */
322
323
  DescribeSlowLogs(req: DescribeSlowLogsRequest, cb?: (error: string, rep: DescribeSlowLogsResponse) => void): Promise<DescribeSlowLogsResponse>;
323
324
  /**
@@ -477,7 +477,8 @@ class Client extends abstract_client_1.AbstractClient {
477
477
  return this.request("DescribeProjectSecurityGroups", req, cb);
478
478
  }
479
479
  /**
480
- * 本接口(DescribeSlowLogs)用于获取云数据库实例的慢查询日志。说明:若单次查询数据量过大,则有可能响应超时,建议缩短单次查询时间范围,如一小时,避免导致超时。
480
+ * 本接口(DescribeSlowLogs)用于获取云数据库实例的慢查询日志。
481
+ 说明:若单次查询数据量过大,则有可能响应超时,建议缩短单次查询时间范围,如一小时,避免导致超时。
481
482
  */
482
483
  async DescribeSlowLogs(req, cb) {
483
484
  return this.request("DescribeSlowLogs", req, cb);