@alicloud/dds20151201 3.6.5 → 3.6.6
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +2 -209
- package/dist/client.js +7 -440
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -553
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
English | [简体中文](README-CN.md)
|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
# Alibaba Cloud Dds SDK for NodeJS
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
If you use `npm` to manage your dependence, you can use the following command:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @alicloud/dds20151201 -S
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Issues
|
|
14
|
+
[Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
[Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
|
|
18
|
+
|
|
19
|
+
## References
|
|
20
|
+
* [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
|
24
|
+
|
|
25
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
package/dist/client.d.ts
CHANGED
|
@@ -255,7 +255,6 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
255
255
|
databaseNames?: string;
|
|
256
256
|
engine?: string;
|
|
257
257
|
engineVersion?: string;
|
|
258
|
-
hiddenZoneId?: string;
|
|
259
258
|
networkType?: string;
|
|
260
259
|
ownerAccount?: string;
|
|
261
260
|
ownerId?: number;
|
|
@@ -267,7 +266,6 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
267
266
|
resourceOwnerAccount?: string;
|
|
268
267
|
resourceOwnerId?: number;
|
|
269
268
|
restoreTime?: string;
|
|
270
|
-
secondaryZoneId?: string;
|
|
271
269
|
securityIPList?: string;
|
|
272
270
|
securityToken?: string;
|
|
273
271
|
srcDBInstanceId?: string;
|
|
@@ -420,53 +418,6 @@ export declare class CreateNodeBatchResponse extends $tea.Model {
|
|
|
420
418
|
[key: string]: any;
|
|
421
419
|
});
|
|
422
420
|
}
|
|
423
|
-
export declare class CreateRecommendationTaskRequest extends $tea.Model {
|
|
424
|
-
endTime?: string;
|
|
425
|
-
instanceId?: string;
|
|
426
|
-
nodeId?: string;
|
|
427
|
-
ownerAccount?: string;
|
|
428
|
-
ownerId?: number;
|
|
429
|
-
resourceOwnerAccount?: string;
|
|
430
|
-
resourceOwnerId?: number;
|
|
431
|
-
securityToken?: string;
|
|
432
|
-
startTime?: string;
|
|
433
|
-
static names(): {
|
|
434
|
-
[key: string]: string;
|
|
435
|
-
};
|
|
436
|
-
static types(): {
|
|
437
|
-
[key: string]: any;
|
|
438
|
-
};
|
|
439
|
-
constructor(map?: {
|
|
440
|
-
[key: string]: any;
|
|
441
|
-
});
|
|
442
|
-
}
|
|
443
|
-
export declare class CreateRecommendationTaskResponseBody extends $tea.Model {
|
|
444
|
-
requestId?: string;
|
|
445
|
-
static names(): {
|
|
446
|
-
[key: string]: string;
|
|
447
|
-
};
|
|
448
|
-
static types(): {
|
|
449
|
-
[key: string]: any;
|
|
450
|
-
};
|
|
451
|
-
constructor(map?: {
|
|
452
|
-
[key: string]: any;
|
|
453
|
-
});
|
|
454
|
-
}
|
|
455
|
-
export declare class CreateRecommendationTaskResponse extends $tea.Model {
|
|
456
|
-
headers: {
|
|
457
|
-
[key: string]: string;
|
|
458
|
-
};
|
|
459
|
-
body: CreateRecommendationTaskResponseBody;
|
|
460
|
-
static names(): {
|
|
461
|
-
[key: string]: string;
|
|
462
|
-
};
|
|
463
|
-
static types(): {
|
|
464
|
-
[key: string]: any;
|
|
465
|
-
};
|
|
466
|
-
constructor(map?: {
|
|
467
|
-
[key: string]: any;
|
|
468
|
-
});
|
|
469
|
-
}
|
|
470
421
|
export declare class CreateServerlessDBInstanceRequest extends $tea.Model {
|
|
471
422
|
accountPassword?: string;
|
|
472
423
|
autoRenew?: string;
|
|
@@ -827,57 +778,6 @@ export declare class DescribeActiveOperationTaskTypeResponse extends $tea.Model
|
|
|
827
778
|
[key: string]: any;
|
|
828
779
|
});
|
|
829
780
|
}
|
|
830
|
-
export declare class DescribeAuditFilesRequest extends $tea.Model {
|
|
831
|
-
DBInstanceId?: string;
|
|
832
|
-
nodeId?: string;
|
|
833
|
-
ownerAccount?: string;
|
|
834
|
-
ownerId?: number;
|
|
835
|
-
pageNumber?: number;
|
|
836
|
-
pageSize?: number;
|
|
837
|
-
resourceOwnerAccount?: string;
|
|
838
|
-
resourceOwnerId?: number;
|
|
839
|
-
securityToken?: string;
|
|
840
|
-
static names(): {
|
|
841
|
-
[key: string]: string;
|
|
842
|
-
};
|
|
843
|
-
static types(): {
|
|
844
|
-
[key: string]: any;
|
|
845
|
-
};
|
|
846
|
-
constructor(map?: {
|
|
847
|
-
[key: string]: any;
|
|
848
|
-
});
|
|
849
|
-
}
|
|
850
|
-
export declare class DescribeAuditFilesResponseBody extends $tea.Model {
|
|
851
|
-
items?: DescribeAuditFilesResponseBodyItems;
|
|
852
|
-
pageNumber?: number;
|
|
853
|
-
pageRecordCount?: number;
|
|
854
|
-
requestId?: string;
|
|
855
|
-
totalRecordCount?: number;
|
|
856
|
-
static names(): {
|
|
857
|
-
[key: string]: string;
|
|
858
|
-
};
|
|
859
|
-
static types(): {
|
|
860
|
-
[key: string]: any;
|
|
861
|
-
};
|
|
862
|
-
constructor(map?: {
|
|
863
|
-
[key: string]: any;
|
|
864
|
-
});
|
|
865
|
-
}
|
|
866
|
-
export declare class DescribeAuditFilesResponse extends $tea.Model {
|
|
867
|
-
headers: {
|
|
868
|
-
[key: string]: string;
|
|
869
|
-
};
|
|
870
|
-
body: DescribeAuditFilesResponseBody;
|
|
871
|
-
static names(): {
|
|
872
|
-
[key: string]: string;
|
|
873
|
-
};
|
|
874
|
-
static types(): {
|
|
875
|
-
[key: string]: any;
|
|
876
|
-
};
|
|
877
|
-
constructor(map?: {
|
|
878
|
-
[key: string]: any;
|
|
879
|
-
});
|
|
880
|
-
}
|
|
881
781
|
export declare class DescribeAuditLogFilterRequest extends $tea.Model {
|
|
882
782
|
DBInstanceId?: string;
|
|
883
783
|
ownerAccount?: string;
|
|
@@ -1122,52 +1022,6 @@ export declare class DescribeAvailableResourceResponse extends $tea.Model {
|
|
|
1122
1022
|
[key: string]: any;
|
|
1123
1023
|
});
|
|
1124
1024
|
}
|
|
1125
|
-
export declare class DescribeAvailableTimeRangeRequest extends $tea.Model {
|
|
1126
|
-
instanceId?: string;
|
|
1127
|
-
nodeId?: string;
|
|
1128
|
-
ownerAccount?: string;
|
|
1129
|
-
ownerId?: number;
|
|
1130
|
-
resourceOwnerAccount?: string;
|
|
1131
|
-
resourceOwnerId?: number;
|
|
1132
|
-
securityToken?: string;
|
|
1133
|
-
static names(): {
|
|
1134
|
-
[key: string]: string;
|
|
1135
|
-
};
|
|
1136
|
-
static types(): {
|
|
1137
|
-
[key: string]: any;
|
|
1138
|
-
};
|
|
1139
|
-
constructor(map?: {
|
|
1140
|
-
[key: string]: any;
|
|
1141
|
-
});
|
|
1142
|
-
}
|
|
1143
|
-
export declare class DescribeAvailableTimeRangeResponseBody extends $tea.Model {
|
|
1144
|
-
requestId?: string;
|
|
1145
|
-
timeRange?: DescribeAvailableTimeRangeResponseBodyTimeRange;
|
|
1146
|
-
static names(): {
|
|
1147
|
-
[key: string]: string;
|
|
1148
|
-
};
|
|
1149
|
-
static types(): {
|
|
1150
|
-
[key: string]: any;
|
|
1151
|
-
};
|
|
1152
|
-
constructor(map?: {
|
|
1153
|
-
[key: string]: any;
|
|
1154
|
-
});
|
|
1155
|
-
}
|
|
1156
|
-
export declare class DescribeAvailableTimeRangeResponse extends $tea.Model {
|
|
1157
|
-
headers: {
|
|
1158
|
-
[key: string]: string;
|
|
1159
|
-
};
|
|
1160
|
-
body: DescribeAvailableTimeRangeResponseBody;
|
|
1161
|
-
static names(): {
|
|
1162
|
-
[key: string]: string;
|
|
1163
|
-
};
|
|
1164
|
-
static types(): {
|
|
1165
|
-
[key: string]: any;
|
|
1166
|
-
};
|
|
1167
|
-
constructor(map?: {
|
|
1168
|
-
[key: string]: any;
|
|
1169
|
-
});
|
|
1170
|
-
}
|
|
1171
1025
|
export declare class DescribeBackupDBsRequest extends $tea.Model {
|
|
1172
1026
|
backupId?: string;
|
|
1173
1027
|
ownerAccount?: string;
|
|
@@ -2213,6 +2067,7 @@ export declare class DescribePriceResponse extends $tea.Model {
|
|
|
2213
2067
|
});
|
|
2214
2068
|
}
|
|
2215
2069
|
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
2070
|
+
acceptLanguage?: string;
|
|
2216
2071
|
ownerAccount?: string;
|
|
2217
2072
|
ownerId?: number;
|
|
2218
2073
|
regionId?: string;
|
|
@@ -4632,35 +4487,6 @@ export declare class DescribeActiveOperationTaskTypeResponseBodyTypeList extends
|
|
|
4632
4487
|
[key: string]: any;
|
|
4633
4488
|
});
|
|
4634
4489
|
}
|
|
4635
|
-
export declare class DescribeAuditFilesResponseBodyItemsLogFile extends $tea.Model {
|
|
4636
|
-
fileID?: number;
|
|
4637
|
-
logDownloadURL?: string;
|
|
4638
|
-
logEndTime?: string;
|
|
4639
|
-
logSize?: number;
|
|
4640
|
-
logStartTime?: string;
|
|
4641
|
-
logStatus?: string;
|
|
4642
|
-
static names(): {
|
|
4643
|
-
[key: string]: string;
|
|
4644
|
-
};
|
|
4645
|
-
static types(): {
|
|
4646
|
-
[key: string]: any;
|
|
4647
|
-
};
|
|
4648
|
-
constructor(map?: {
|
|
4649
|
-
[key: string]: any;
|
|
4650
|
-
});
|
|
4651
|
-
}
|
|
4652
|
-
export declare class DescribeAuditFilesResponseBodyItems extends $tea.Model {
|
|
4653
|
-
logFile?: DescribeAuditFilesResponseBodyItemsLogFile[];
|
|
4654
|
-
static names(): {
|
|
4655
|
-
[key: string]: string;
|
|
4656
|
-
};
|
|
4657
|
-
static types(): {
|
|
4658
|
-
[key: string]: any;
|
|
4659
|
-
};
|
|
4660
|
-
constructor(map?: {
|
|
4661
|
-
[key: string]: any;
|
|
4662
|
-
});
|
|
4663
|
-
}
|
|
4664
4490
|
export declare class DescribeAuditRecordsResponseBodyItemsSQLRecord extends $tea.Model {
|
|
4665
4491
|
accountName?: string;
|
|
4666
4492
|
DBName?: string;
|
|
@@ -4857,34 +4683,6 @@ export declare class DescribeAvailableResourceResponseBodySupportedDBTypes exten
|
|
|
4857
4683
|
[key: string]: any;
|
|
4858
4684
|
});
|
|
4859
4685
|
}
|
|
4860
|
-
export declare class DescribeAvailableTimeRangeResponseBodyTimeRangeTimeRange extends $tea.Model {
|
|
4861
|
-
endTime?: string;
|
|
4862
|
-
nodeId?: string;
|
|
4863
|
-
startTime?: string;
|
|
4864
|
-
status?: string;
|
|
4865
|
-
taskId?: string;
|
|
4866
|
-
static names(): {
|
|
4867
|
-
[key: string]: string;
|
|
4868
|
-
};
|
|
4869
|
-
static types(): {
|
|
4870
|
-
[key: string]: any;
|
|
4871
|
-
};
|
|
4872
|
-
constructor(map?: {
|
|
4873
|
-
[key: string]: any;
|
|
4874
|
-
});
|
|
4875
|
-
}
|
|
4876
|
-
export declare class DescribeAvailableTimeRangeResponseBodyTimeRange extends $tea.Model {
|
|
4877
|
-
timeRange?: DescribeAvailableTimeRangeResponseBodyTimeRangeTimeRange[];
|
|
4878
|
-
static names(): {
|
|
4879
|
-
[key: string]: string;
|
|
4880
|
-
};
|
|
4881
|
-
static types(): {
|
|
4882
|
-
[key: string]: any;
|
|
4883
|
-
};
|
|
4884
|
-
constructor(map?: {
|
|
4885
|
-
[key: string]: any;
|
|
4886
|
-
});
|
|
4887
|
-
}
|
|
4888
4686
|
export declare class DescribeBackupDBsResponseBodyDatabasesDatabase extends $tea.Model {
|
|
4889
4687
|
DBName?: string;
|
|
4890
4688
|
static names(): {
|
|
@@ -5849,6 +5647,7 @@ export declare class DescribeRegionsResponseBodyRegionsDdsRegionZones extends $t
|
|
|
5849
5647
|
}
|
|
5850
5648
|
export declare class DescribeRegionsResponseBodyRegionsDdsRegion extends $tea.Model {
|
|
5851
5649
|
regionId?: string;
|
|
5650
|
+
regionName?: string;
|
|
5852
5651
|
zones?: DescribeRegionsResponseBodyRegionsDdsRegionZones;
|
|
5853
5652
|
static names(): {
|
|
5854
5653
|
[key: string]: string;
|
|
@@ -6326,8 +6125,6 @@ export default class Client extends OpenApi {
|
|
|
6326
6125
|
createNode(request: CreateNodeRequest): Promise<CreateNodeResponse>;
|
|
6327
6126
|
createNodeBatchWithOptions(request: CreateNodeBatchRequest, runtime: $Util.RuntimeOptions): Promise<CreateNodeBatchResponse>;
|
|
6328
6127
|
createNodeBatch(request: CreateNodeBatchRequest): Promise<CreateNodeBatchResponse>;
|
|
6329
|
-
createRecommendationTaskWithOptions(request: CreateRecommendationTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateRecommendationTaskResponse>;
|
|
6330
|
-
createRecommendationTask(request: CreateRecommendationTaskRequest): Promise<CreateRecommendationTaskResponse>;
|
|
6331
6128
|
createServerlessDBInstanceWithOptions(request: CreateServerlessDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateServerlessDBInstanceResponse>;
|
|
6332
6129
|
createServerlessDBInstance(request: CreateServerlessDBInstanceRequest): Promise<CreateServerlessDBInstanceResponse>;
|
|
6333
6130
|
createShardingDBInstanceWithOptions(request: CreateShardingDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateShardingDBInstanceResponse>;
|
|
@@ -6342,8 +6139,6 @@ export default class Client extends OpenApi {
|
|
|
6342
6139
|
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
6343
6140
|
describeActiveOperationTaskTypeWithOptions(request: DescribeActiveOperationTaskTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6344
6141
|
describeActiveOperationTaskType(request: DescribeActiveOperationTaskTypeRequest): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6345
|
-
describeAuditFilesWithOptions(request: DescribeAuditFilesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditFilesResponse>;
|
|
6346
|
-
describeAuditFiles(request: DescribeAuditFilesRequest): Promise<DescribeAuditFilesResponse>;
|
|
6347
6142
|
describeAuditLogFilterWithOptions(request: DescribeAuditLogFilterRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditLogFilterResponse>;
|
|
6348
6143
|
describeAuditLogFilter(request: DescribeAuditLogFilterRequest): Promise<DescribeAuditLogFilterResponse>;
|
|
6349
6144
|
describeAuditPolicyWithOptions(request: DescribeAuditPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditPolicyResponse>;
|
|
@@ -6354,8 +6149,6 @@ export default class Client extends OpenApi {
|
|
|
6354
6149
|
describeAvailableEngineVersion(request: DescribeAvailableEngineVersionRequest): Promise<DescribeAvailableEngineVersionResponse>;
|
|
6355
6150
|
describeAvailableResourceWithOptions(request: DescribeAvailableResourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourceResponse>;
|
|
6356
6151
|
describeAvailableResource(request: DescribeAvailableResourceRequest): Promise<DescribeAvailableResourceResponse>;
|
|
6357
|
-
describeAvailableTimeRangeWithOptions(request: DescribeAvailableTimeRangeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableTimeRangeResponse>;
|
|
6358
|
-
describeAvailableTimeRange(request: DescribeAvailableTimeRangeRequest): Promise<DescribeAvailableTimeRangeResponse>;
|
|
6359
6152
|
describeBackupDBsWithOptions(request: DescribeBackupDBsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupDBsResponse>;
|
|
6360
6153
|
describeBackupDBs(request: DescribeBackupDBsRequest): Promise<DescribeBackupDBsResponse>;
|
|
6361
6154
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|