@alicloud/polardb20170801 6.4.0 → 6.4.1
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.js +6 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeUserEncryptionKeyListRequest.d.ts +10 -0
- package/dist/models/DescribeUserEncryptionKeyListRequest.js +4 -0
- package/dist/models/DescribeUserEncryptionKeyListRequest.js.map +1 -1
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.d.ts +20 -0
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.js +8 -0
- package/dist/models/DescribeUserEncryptionKeyListResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/DescribeUserEncryptionKeyListRequest.ts +14 -0
- package/src/models/DescribeUserEncryptionKeyListResponseBody.ts +28 -0
|
@@ -12,6 +12,16 @@ export declare class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
12
12
|
DBClusterId?: string;
|
|
13
13
|
ownerAccount?: string;
|
|
14
14
|
ownerId?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @example
|
|
17
|
+
* 1
|
|
18
|
+
*/
|
|
19
|
+
pageNumber?: number;
|
|
20
|
+
/**
|
|
21
|
+
* @example
|
|
22
|
+
* 30
|
|
23
|
+
*/
|
|
24
|
+
pageSize?: number;
|
|
15
25
|
/**
|
|
16
26
|
* @remarks
|
|
17
27
|
* The ID of the region.
|
|
@@ -42,6 +42,8 @@ class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
42
42
|
DBClusterId: 'DBClusterId',
|
|
43
43
|
ownerAccount: 'OwnerAccount',
|
|
44
44
|
ownerId: 'OwnerId',
|
|
45
|
+
pageNumber: 'PageNumber',
|
|
46
|
+
pageSize: 'PageSize',
|
|
45
47
|
regionId: 'RegionId',
|
|
46
48
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
47
49
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -53,6 +55,8 @@ class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
53
55
|
DBClusterId: 'string',
|
|
54
56
|
ownerAccount: 'string',
|
|
55
57
|
ownerId: 'number',
|
|
58
|
+
pageNumber: 'number',
|
|
59
|
+
pageSize: 'number',
|
|
56
60
|
regionId: 'string',
|
|
57
61
|
resourceOwnerAccount: 'string',
|
|
58
62
|
resourceOwnerId: 'number',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeUserEncryptionKeyListRequest.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeUserEncryptionKeyListRequest.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IA2CnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9ED,oFA8EC"}
|
|
@@ -13,6 +13,21 @@ export declare class DescribeUserEncryptionKeyListResponseBody extends $dara.Mod
|
|
|
13
13
|
* Cluster key list.
|
|
14
14
|
*/
|
|
15
15
|
keyList?: string[];
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 1
|
|
19
|
+
*/
|
|
20
|
+
pageNumber?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1
|
|
24
|
+
*/
|
|
25
|
+
pageRecordCount?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 30
|
|
29
|
+
*/
|
|
30
|
+
pageSize?: number;
|
|
16
31
|
/**
|
|
17
32
|
* @remarks
|
|
18
33
|
* The ID of the request.
|
|
@@ -21,6 +36,11 @@ export declare class DescribeUserEncryptionKeyListResponseBody extends $dara.Mod
|
|
|
21
36
|
* A7E6A8FD-C50B-46B2-BA85-D8B8D3******
|
|
22
37
|
*/
|
|
23
38
|
requestId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* 1
|
|
42
|
+
*/
|
|
43
|
+
totalRecordCount?: number;
|
|
24
44
|
static names(): {
|
|
25
45
|
[key: string]: string;
|
|
26
46
|
};
|
|
@@ -41,14 +41,22 @@ class DescribeUserEncryptionKeyListResponseBody extends $dara.Model {
|
|
|
41
41
|
return {
|
|
42
42
|
DBClusterId: 'DBClusterId',
|
|
43
43
|
keyList: 'KeyList',
|
|
44
|
+
pageNumber: 'PageNumber',
|
|
45
|
+
pageRecordCount: 'PageRecordCount',
|
|
46
|
+
pageSize: 'PageSize',
|
|
44
47
|
requestId: 'RequestId',
|
|
48
|
+
totalRecordCount: 'TotalRecordCount',
|
|
45
49
|
};
|
|
46
50
|
}
|
|
47
51
|
static types() {
|
|
48
52
|
return {
|
|
49
53
|
DBClusterId: 'string',
|
|
50
54
|
keyList: { 'type': 'array', 'itemType': 'string' },
|
|
55
|
+
pageNumber: 'number',
|
|
56
|
+
pageRecordCount: 'number',
|
|
57
|
+
pageSize: 'number',
|
|
51
58
|
requestId: 'string',
|
|
59
|
+
totalRecordCount: 'number',
|
|
52
60
|
};
|
|
53
61
|
}
|
|
54
62
|
validate() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeUserEncryptionKeyListResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeUserEncryptionKeyListResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeUserEncryptionKeyListResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IA0CxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,eAAe,EAAE,iBAAiB;YAClC,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,gBAAgB,EAAE,kBAAkB;SACrC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YAClD,UAAU,EAAE,QAAQ;YACpB,eAAe,EAAE,QAAQ;YACzB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,gBAAgB,EAAE,QAAQ;SAC3B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC/B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5ED,8FA4EC"}
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -12562,6 +12562,14 @@ export default class Client extends OpenApi {
|
|
|
12562
12562
|
query["OwnerId"] = request.ownerId;
|
|
12563
12563
|
}
|
|
12564
12564
|
|
|
12565
|
+
if (!$dara.isNull(request.pageNumber)) {
|
|
12566
|
+
query["PageNumber"] = request.pageNumber;
|
|
12567
|
+
}
|
|
12568
|
+
|
|
12569
|
+
if (!$dara.isNull(request.pageSize)) {
|
|
12570
|
+
query["PageSize"] = request.pageSize;
|
|
12571
|
+
}
|
|
12572
|
+
|
|
12565
12573
|
if (!$dara.isNull(request.regionId)) {
|
|
12566
12574
|
query["RegionId"] = request.regionId;
|
|
12567
12575
|
}
|
|
@@ -15,6 +15,16 @@ export class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
15
15
|
DBClusterId?: string;
|
|
16
16
|
ownerAccount?: string;
|
|
17
17
|
ownerId?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 1
|
|
21
|
+
*/
|
|
22
|
+
pageNumber?: number;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 30
|
|
26
|
+
*/
|
|
27
|
+
pageSize?: number;
|
|
18
28
|
/**
|
|
19
29
|
* @remarks
|
|
20
30
|
* The ID of the region.
|
|
@@ -40,6 +50,8 @@ export class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
40
50
|
DBClusterId: 'DBClusterId',
|
|
41
51
|
ownerAccount: 'OwnerAccount',
|
|
42
52
|
ownerId: 'OwnerId',
|
|
53
|
+
pageNumber: 'PageNumber',
|
|
54
|
+
pageSize: 'PageSize',
|
|
43
55
|
regionId: 'RegionId',
|
|
44
56
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
45
57
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -52,6 +64,8 @@ export class DescribeUserEncryptionKeyListRequest extends $dara.Model {
|
|
|
52
64
|
DBClusterId: 'string',
|
|
53
65
|
ownerAccount: 'string',
|
|
54
66
|
ownerId: 'number',
|
|
67
|
+
pageNumber: 'number',
|
|
68
|
+
pageSize: 'number',
|
|
55
69
|
regionId: 'string',
|
|
56
70
|
resourceOwnerAccount: 'string',
|
|
57
71
|
resourceOwnerId: 'number',
|
|
@@ -16,6 +16,21 @@ export class DescribeUserEncryptionKeyListResponseBody extends $dara.Model {
|
|
|
16
16
|
* Cluster key list.
|
|
17
17
|
*/
|
|
18
18
|
keyList?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* 1
|
|
22
|
+
*/
|
|
23
|
+
pageNumber?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* 1
|
|
27
|
+
*/
|
|
28
|
+
pageRecordCount?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* 30
|
|
32
|
+
*/
|
|
33
|
+
pageSize?: number;
|
|
19
34
|
/**
|
|
20
35
|
* @remarks
|
|
21
36
|
* The ID of the request.
|
|
@@ -24,11 +39,20 @@ export class DescribeUserEncryptionKeyListResponseBody extends $dara.Model {
|
|
|
24
39
|
* A7E6A8FD-C50B-46B2-BA85-D8B8D3******
|
|
25
40
|
*/
|
|
26
41
|
requestId?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @example
|
|
44
|
+
* 1
|
|
45
|
+
*/
|
|
46
|
+
totalRecordCount?: number;
|
|
27
47
|
static names(): { [key: string]: string } {
|
|
28
48
|
return {
|
|
29
49
|
DBClusterId: 'DBClusterId',
|
|
30
50
|
keyList: 'KeyList',
|
|
51
|
+
pageNumber: 'PageNumber',
|
|
52
|
+
pageRecordCount: 'PageRecordCount',
|
|
53
|
+
pageSize: 'PageSize',
|
|
31
54
|
requestId: 'RequestId',
|
|
55
|
+
totalRecordCount: 'TotalRecordCount',
|
|
32
56
|
};
|
|
33
57
|
}
|
|
34
58
|
|
|
@@ -36,7 +60,11 @@ export class DescribeUserEncryptionKeyListResponseBody extends $dara.Model {
|
|
|
36
60
|
return {
|
|
37
61
|
DBClusterId: 'string',
|
|
38
62
|
keyList: { 'type': 'array', 'itemType': 'string' },
|
|
63
|
+
pageNumber: 'number',
|
|
64
|
+
pageRecordCount: 'number',
|
|
65
|
+
pageSize: 'number',
|
|
39
66
|
requestId: 'string',
|
|
67
|
+
totalRecordCount: 'number',
|
|
40
68
|
};
|
|
41
69
|
}
|
|
42
70
|
|