@alicloud/dds20151201 3.6.16 → 3.6.17
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/dist/client.d.ts +3 -0
- package/dist/client.js +6 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +9 -0
package/dist/client.d.ts
CHANGED
|
@@ -1583,7 +1583,10 @@ export declare class DescribeDBInstanceTDEInfoRequest extends $tea.Model {
|
|
|
1583
1583
|
});
|
|
1584
1584
|
}
|
|
1585
1585
|
export declare class DescribeDBInstanceTDEInfoResponseBody extends $tea.Model {
|
|
1586
|
+
encryptionKey?: string;
|
|
1587
|
+
encryptorName?: string;
|
|
1586
1588
|
requestId?: string;
|
|
1589
|
+
roleARN?: string;
|
|
1587
1590
|
TDEStatus?: string;
|
|
1588
1591
|
static names(): {
|
|
1589
1592
|
[key: string]: string;
|
package/dist/client.js
CHANGED
|
@@ -2333,13 +2333,19 @@ class DescribeDBInstanceTDEInfoResponseBody extends $tea.Model {
|
|
|
2333
2333
|
}
|
|
2334
2334
|
static names() {
|
|
2335
2335
|
return {
|
|
2336
|
+
encryptionKey: 'EncryptionKey',
|
|
2337
|
+
encryptorName: 'EncryptorName',
|
|
2336
2338
|
requestId: 'RequestId',
|
|
2339
|
+
roleARN: 'RoleARN',
|
|
2337
2340
|
TDEStatus: 'TDEStatus',
|
|
2338
2341
|
};
|
|
2339
2342
|
}
|
|
2340
2343
|
static types() {
|
|
2341
2344
|
return {
|
|
2345
|
+
encryptionKey: 'string',
|
|
2346
|
+
encryptorName: 'string',
|
|
2342
2347
|
requestId: 'string',
|
|
2348
|
+
roleARN: 'string',
|
|
2343
2349
|
TDEStatus: 'string',
|
|
2344
2350
|
};
|
|
2345
2351
|
}
|