@alicloud/polardb20170801 7.10.0 → 7.11.0
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 +113 -26
- package/dist/client.js +191 -26
- package/dist/client.js.map +1 -1
- package/dist/models/BindResourceControlRequest.d.ts +9 -9
- package/dist/models/CreateAidbclusterApiKeyRequest.d.ts +33 -0
- package/dist/models/CreateAidbclusterApiKeyRequest.js +60 -0
- package/dist/models/CreateAidbclusterApiKeyRequest.js.map +1 -0
- package/dist/models/CreateAidbclusterApiKeyResponse.d.ts +19 -0
- package/dist/models/CreateAidbclusterApiKeyResponse.js +69 -0
- package/dist/models/CreateAidbclusterApiKeyResponse.js.map +1 -0
- package/dist/models/CreateAidbclusterApiKeyResponseBody.d.ts +78 -0
- package/dist/models/CreateAidbclusterApiKeyResponseBody.js +90 -0
- package/dist/models/CreateAidbclusterApiKeyResponseBody.js.map +1 -0
- package/dist/models/CreateResourceControlRequest.d.ts +8 -8
- package/dist/models/DeleteAidbclusterApiKeyRequest.d.ts +34 -0
- package/dist/models/DeleteAidbclusterApiKeyRequest.js +60 -0
- package/dist/models/DeleteAidbclusterApiKeyRequest.js.map +1 -0
- package/dist/models/DeleteAidbclusterApiKeyResponse.d.ts +19 -0
- package/dist/models/DeleteAidbclusterApiKeyResponse.js +69 -0
- package/dist/models/DeleteAidbclusterApiKeyResponse.js.map +1 -0
- package/dist/models/DeleteAidbclusterApiKeyResponseBody.d.ts +29 -0
- package/dist/models/DeleteAidbclusterApiKeyResponseBody.js +60 -0
- package/dist/models/DeleteAidbclusterApiKeyResponseBody.js.map +1 -0
- package/dist/models/DeleteResourceControlRequest.d.ts +6 -5
- package/dist/models/DeleteResourceControlRequest.js.map +1 -1
- package/dist/models/DescribeAidbclusterApiKeysRequest.d.ts +23 -0
- package/dist/models/DescribeAidbclusterApiKeysRequest.js +58 -0
- package/dist/models/DescribeAidbclusterApiKeysRequest.js.map +1 -0
- package/dist/models/DescribeAidbclusterApiKeysResponse.d.ts +19 -0
- package/dist/models/DescribeAidbclusterApiKeysResponse.js +69 -0
- package/dist/models/DescribeAidbclusterApiKeysResponse.js.map +1 -0
- package/dist/models/DescribeAidbclusterApiKeysResponseBody.d.ts +78 -0
- package/dist/models/DescribeAidbclusterApiKeysResponseBody.js +90 -0
- package/dist/models/DescribeAidbclusterApiKeysResponseBody.js.map +1 -0
- package/dist/models/ModifyResourceControlRequest.d.ts +9 -9
- package/dist/models/UnbindResourceControlRequest.d.ts +11 -11
- package/dist/models/model.d.ts +11 -0
- package/dist/models/model.js +57 -35
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +202 -26
- package/src/models/BindResourceControlRequest.ts +9 -9
- package/src/models/CreateAidbclusterApiKeyRequest.ts +48 -0
- package/src/models/CreateAidbclusterApiKeyResponse.ts +40 -0
- package/src/models/CreateAidbclusterApiKeyResponseBody.ts +114 -0
- package/src/models/CreateResourceControlRequest.ts +8 -8
- package/src/models/DeleteAidbclusterApiKeyRequest.ts +49 -0
- package/src/models/DeleteAidbclusterApiKeyResponse.ts +40 -0
- package/src/models/DeleteAidbclusterApiKeyResponseBody.ts +44 -0
- package/src/models/DeleteResourceControlRequest.ts +6 -5
- package/src/models/DescribeAidbclusterApiKeysRequest.ts +36 -0
- package/src/models/DescribeAidbclusterApiKeysResponse.ts +40 -0
- package/src/models/DescribeAidbclusterApiKeysResponseBody.ts +114 -0
- package/src/models/ModifyResourceControlRequest.ts +9 -9
- package/src/models/UnbindResourceControlRequest.ts +11 -11
- package/src/models/model.ts +11 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DeleteAIDBClusterApiKeyRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The API key of the model service.
|
|
9
|
+
*
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* xxx
|
|
14
|
+
*/
|
|
15
|
+
apiKey?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* The region ID.
|
|
19
|
+
* >You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query region IDs.
|
|
20
|
+
*
|
|
21
|
+
* This parameter is required.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* cn-beijing
|
|
25
|
+
*/
|
|
26
|
+
regionId?: string;
|
|
27
|
+
static names(): { [key: string]: string } {
|
|
28
|
+
return {
|
|
29
|
+
apiKey: 'ApiKey',
|
|
30
|
+
regionId: 'RegionId',
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static types(): { [key: string]: any } {
|
|
35
|
+
return {
|
|
36
|
+
apiKey: 'string',
|
|
37
|
+
regionId: 'string',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
validate() {
|
|
42
|
+
super.validate();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
constructor(map?: { [key: string]: any }) {
|
|
46
|
+
super(map);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DeleteAIDBClusterApiKeyResponseBody } from "./DeleteAidbclusterApiKeyResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DeleteAIDBClusterApiKeyResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DeleteAIDBClusterApiKeyResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DeleteAIDBClusterApiKeyResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DeleteAIDBClusterApiKeyResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The API key of the model service.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* xxx
|
|
12
|
+
*/
|
|
13
|
+
apiKey?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* Id of the request
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* 068F730C-9130-596E-B696-5B4388C840DF
|
|
20
|
+
*/
|
|
21
|
+
requestId?: string;
|
|
22
|
+
static names(): { [key: string]: string } {
|
|
23
|
+
return {
|
|
24
|
+
apiKey: 'ApiKey',
|
|
25
|
+
requestId: 'RequestId',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
apiKey: 'string',
|
|
32
|
+
requestId: 'string',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
validate() {
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -5,17 +5,18 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class DeleteResourceControlRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The
|
|
8
|
+
* The cluster ID of the PolarDB cluster.
|
|
9
9
|
*
|
|
10
10
|
* This parameter is required.
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
|
-
* pc
|
|
13
|
+
* pc-**************
|
|
14
14
|
*/
|
|
15
15
|
DBClusterId?: string;
|
|
16
16
|
/**
|
|
17
17
|
* @remarks
|
|
18
|
-
* The region ID.
|
|
18
|
+
* The region ID of the PolarDB cluster.
|
|
19
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query available regions.
|
|
19
20
|
*
|
|
20
21
|
* @example
|
|
21
22
|
* cn-beijing
|
|
@@ -23,12 +24,12 @@ export class DeleteResourceControlRequest extends $dara.Model {
|
|
|
23
24
|
regionId?: string;
|
|
24
25
|
/**
|
|
25
26
|
* @remarks
|
|
26
|
-
* The resource control name.
|
|
27
|
+
* The name of the resource control rule. The name must be 1 to 63 ASCII bytes in length, start with a letter, and can contain letters, digits, and underscores.
|
|
27
28
|
*
|
|
28
29
|
* This parameter is required.
|
|
29
30
|
*
|
|
30
31
|
* @example
|
|
31
|
-
*
|
|
32
|
+
* test_rc
|
|
32
33
|
*/
|
|
33
34
|
resourceControlName?: string;
|
|
34
35
|
static names(): { [key: string]: string } {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeAIDBClusterApiKeysRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The region ID.
|
|
9
|
+
*
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* cn-beijing
|
|
14
|
+
*/
|
|
15
|
+
regionId?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
regionId: 'RegionId',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static types(): { [key: string]: any } {
|
|
23
|
+
return {
|
|
24
|
+
regionId: 'string',
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
validate() {
|
|
29
|
+
super.validate();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
constructor(map?: { [key: string]: any }) {
|
|
33
|
+
super(map);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DescribeAIDBClusterApiKeysResponseBody } from "./DescribeAidbclusterApiKeysResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DescribeAIDBClusterApiKeysResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DescribeAIDBClusterApiKeysResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DescribeAIDBClusterApiKeysResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeAIDBClusterApiKeysResponseBodyApiKeys extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The API key of the model service.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* Scxxx-xxx-x-xxWW
|
|
12
|
+
*/
|
|
13
|
+
apiKey?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The creation time.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* 2026-04-09T03:19:19Z
|
|
20
|
+
*/
|
|
21
|
+
createTime?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The description of the API key.
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* my api key
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* ApiKey ID
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* 573
|
|
36
|
+
*/
|
|
37
|
+
id?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* The status of the API key.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* active
|
|
44
|
+
*/
|
|
45
|
+
status?: string;
|
|
46
|
+
static names(): { [key: string]: string } {
|
|
47
|
+
return {
|
|
48
|
+
apiKey: 'ApiKey',
|
|
49
|
+
createTime: 'CreateTime',
|
|
50
|
+
description: 'Description',
|
|
51
|
+
id: 'Id',
|
|
52
|
+
status: 'Status',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
static types(): { [key: string]: any } {
|
|
57
|
+
return {
|
|
58
|
+
apiKey: 'string',
|
|
59
|
+
createTime: 'string',
|
|
60
|
+
description: 'string',
|
|
61
|
+
id: 'string',
|
|
62
|
+
status: 'string',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
validate() {
|
|
67
|
+
super.validate();
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
constructor(map?: { [key: string]: any }) {
|
|
71
|
+
super(map);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export class DescribeAIDBClusterApiKeysResponseBody extends $dara.Model {
|
|
76
|
+
/**
|
|
77
|
+
* @remarks
|
|
78
|
+
* API Keys。
|
|
79
|
+
*/
|
|
80
|
+
apiKeys?: DescribeAIDBClusterApiKeysResponseBodyApiKeys[];
|
|
81
|
+
/**
|
|
82
|
+
* @remarks
|
|
83
|
+
* Id of the request
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* 7F2007D3-7E74-4ECB-89A8-BF130D******
|
|
87
|
+
*/
|
|
88
|
+
requestId?: string;
|
|
89
|
+
static names(): { [key: string]: string } {
|
|
90
|
+
return {
|
|
91
|
+
apiKeys: 'ApiKeys',
|
|
92
|
+
requestId: 'RequestId',
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
static types(): { [key: string]: any } {
|
|
97
|
+
return {
|
|
98
|
+
apiKeys: { 'type': 'array', 'itemType': DescribeAIDBClusterApiKeysResponseBodyApiKeys },
|
|
99
|
+
requestId: 'string',
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
validate() {
|
|
104
|
+
if(Array.isArray(this.apiKeys)) {
|
|
105
|
+
$dara.Model.validateArray(this.apiKeys);
|
|
106
|
+
}
|
|
107
|
+
super.validate();
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
constructor(map?: { [key: string]: any }) {
|
|
111
|
+
super(map);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -5,33 +5,33 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class ModifyResourceControlRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The
|
|
8
|
+
* The modified maximum number of CPU cores. The minimum value is 1. The maximum value is determined by the cluster kernel parameter resource_control_cpu_count_limit. You must specify one and only one of this parameter and MaxCpu.
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
|
-
*
|
|
11
|
+
* 8
|
|
12
12
|
*/
|
|
13
13
|
cpuCount?: number;
|
|
14
14
|
/**
|
|
15
15
|
* @remarks
|
|
16
|
-
* The cluster ID.
|
|
16
|
+
* The PolarDB cluster ID.
|
|
17
17
|
*
|
|
18
18
|
* This parameter is required.
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
|
-
* pc
|
|
21
|
+
* pc-**************
|
|
22
22
|
*/
|
|
23
23
|
DBClusterId?: string;
|
|
24
24
|
/**
|
|
25
25
|
* @remarks
|
|
26
|
-
* The maximum
|
|
26
|
+
* The modified maximum CPU quota percentage. Valid values: 1 to 100. You must specify one and only one of this parameter and CpuCount.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
*
|
|
29
|
+
* 30
|
|
30
30
|
*/
|
|
31
31
|
maxCpu?: number;
|
|
32
32
|
/**
|
|
33
33
|
* @remarks
|
|
34
|
-
* The region ID.
|
|
34
|
+
* The region ID of the PolarDB cluster.
|
|
35
35
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query available regions.
|
|
36
36
|
*
|
|
37
37
|
* @example
|
|
@@ -40,12 +40,12 @@ export class ModifyResourceControlRequest extends $dara.Model {
|
|
|
40
40
|
regionId?: string;
|
|
41
41
|
/**
|
|
42
42
|
* @remarks
|
|
43
|
-
* The resource control name.
|
|
43
|
+
* The name of the resource control rule. The name must be 1 to 63 ASCII bytes in length, start with a letter, and can contain only letters, digits, and underscores.
|
|
44
44
|
*
|
|
45
45
|
* This parameter is required.
|
|
46
46
|
*
|
|
47
47
|
* @example
|
|
48
|
-
*
|
|
48
|
+
* test_rc
|
|
49
49
|
*/
|
|
50
50
|
resourceControlName?: string;
|
|
51
51
|
static names(): { [key: string]: string } {
|
|
@@ -5,51 +5,51 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class UnbindResourceControlRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The
|
|
8
|
+
* The PolarDB cluster ID.
|
|
9
9
|
*
|
|
10
10
|
* This parameter is required.
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
|
-
* pc
|
|
13
|
+
* pc-**************
|
|
14
14
|
*/
|
|
15
15
|
DBClusterId?: string;
|
|
16
16
|
/**
|
|
17
17
|
* @remarks
|
|
18
|
-
* The region ID.
|
|
19
|
-
* >You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query
|
|
18
|
+
* The region ID of the PolarDB cluster.
|
|
19
|
+
* >You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query region IDs.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* cn-
|
|
22
|
+
* cn-beijing
|
|
23
23
|
*/
|
|
24
24
|
regionId?: string;
|
|
25
25
|
/**
|
|
26
26
|
* @remarks
|
|
27
|
-
* The resource control name.
|
|
27
|
+
* The name of the resource control rule. The name must be 1 to 63 ASCII bytes in length, start with a letter, and can contain only letters, digits, and underscores.
|
|
28
28
|
*
|
|
29
29
|
* This parameter is required.
|
|
30
30
|
*
|
|
31
31
|
* @example
|
|
32
|
-
*
|
|
32
|
+
* test_rc
|
|
33
33
|
*/
|
|
34
34
|
resourceControlName?: string;
|
|
35
35
|
/**
|
|
36
36
|
* @remarks
|
|
37
|
-
* The target
|
|
37
|
+
* The type of the target to unbind. Valid values: USER, DATABASE, QUERY, CONNECTION. The value is case-insensitive.
|
|
38
38
|
*
|
|
39
39
|
* This parameter is required.
|
|
40
40
|
*
|
|
41
41
|
* @example
|
|
42
|
-
*
|
|
42
|
+
* USER
|
|
43
43
|
*/
|
|
44
44
|
targetType?: string;
|
|
45
45
|
/**
|
|
46
46
|
* @remarks
|
|
47
|
-
* The
|
|
47
|
+
* The value of the target to unbind. The format is the same as the TargetValue for the corresponding target type in the BindResourceControl operation.
|
|
48
48
|
*
|
|
49
49
|
* This parameter is required.
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
|
-
*
|
|
52
|
+
* app_user
|
|
53
53
|
*/
|
|
54
54
|
targetValue?: string;
|
|
55
55
|
static names(): { [key: string]: string } {
|
package/src/models/model.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { ApprovePolarClawDevicePairResponseBodyDevice } from './ApprovePolarClaw
|
|
|
4
4
|
export { BindPolarClawAgentResponseBodyBinding } from './BindPolarClawAgentResponseBody';
|
|
5
5
|
export { CheckPolarFsQuotaConsistencyResponseBodyQuotaItem } from './CheckPolarFsQuotaConsistencyResponseBody';
|
|
6
6
|
export { CreateAIDBClusterRequestTimeSlices } from './CreateAidbclusterRequest';
|
|
7
|
+
export { CreateAIDBClusterApiKeyResponseBodyApiKey } from './CreateAidbclusterApiKeyResponseBody';
|
|
7
8
|
export { CreateAINodesRequestDBNodes } from './CreateAinodesRequest';
|
|
8
9
|
export { CreateApplicationRequestComponents } from './CreateApplicationRequest';
|
|
9
10
|
export { CreateApplicationRequestEndpoints } from './CreateApplicationRequest';
|
|
@@ -35,6 +36,7 @@ export { CreatePolarClawCronJobResponseBodyJob } from './CreatePolarClawCronJobR
|
|
|
35
36
|
export { DeleteGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup } from './DeleteGlobalSecurityIpgroupResponseBody';
|
|
36
37
|
export { DeletePolarFsPathMappingRequestCustomBucketPathList } from './DeletePolarFsPathMappingRequest';
|
|
37
38
|
export { DeletePolarFsQuotaRequestQuotas } from './DeletePolarFsQuotaRequest';
|
|
39
|
+
export { DescribeAIDBClusterApiKeysResponseBodyApiKeys } from './DescribeAidbclusterApiKeysResponseBody';
|
|
38
40
|
export { DescribeAIDBClusterAttributeResponseBodyDBNodesChildVolumes } from './DescribeAidbclusterAttributeResponseBody';
|
|
39
41
|
export { DescribeAIDBClusterAttributeResponseBodyDBNodes } from './DescribeAidbclusterAttributeResponseBody';
|
|
40
42
|
export { DescribeAIDBClusterAttributeResponseBodyEndpointListNetInfoItems } from './DescribeAidbclusterAttributeResponseBody';
|
|
@@ -489,6 +491,9 @@ export { ContinueDBClusterMigrationResponse } from './ContinueDbclusterMigration
|
|
|
489
491
|
export { CreateAIDBClusterRequest } from './CreateAidbclusterRequest';
|
|
490
492
|
export { CreateAIDBClusterResponseBody } from './CreateAidbclusterResponseBody';
|
|
491
493
|
export { CreateAIDBClusterResponse } from './CreateAidbclusterResponse';
|
|
494
|
+
export { CreateAIDBClusterApiKeyRequest } from './CreateAidbclusterApiKeyRequest';
|
|
495
|
+
export { CreateAIDBClusterApiKeyResponseBody } from './CreateAidbclusterApiKeyResponseBody';
|
|
496
|
+
export { CreateAIDBClusterApiKeyResponse } from './CreateAidbclusterApiKeyResponse';
|
|
492
497
|
export { CreateAIDBClusterDatasetRequest } from './CreateAidbclusterDatasetRequest';
|
|
493
498
|
export { CreateAIDBClusterDatasetResponseBody } from './CreateAidbclusterDatasetResponseBody';
|
|
494
499
|
export { CreateAIDBClusterDatasetResponse } from './CreateAidbclusterDatasetResponse';
|
|
@@ -643,6 +648,9 @@ export { CreateStoragePlanResponse } from './CreateStoragePlanResponse';
|
|
|
643
648
|
export { DeleteAIDBClusterRequest } from './DeleteAidbclusterRequest';
|
|
644
649
|
export { DeleteAIDBClusterResponseBody } from './DeleteAidbclusterResponseBody';
|
|
645
650
|
export { DeleteAIDBClusterResponse } from './DeleteAidbclusterResponse';
|
|
651
|
+
export { DeleteAIDBClusterApiKeyRequest } from './DeleteAidbclusterApiKeyRequest';
|
|
652
|
+
export { DeleteAIDBClusterApiKeyResponseBody } from './DeleteAidbclusterApiKeyResponseBody';
|
|
653
|
+
export { DeleteAIDBClusterApiKeyResponse } from './DeleteAidbclusterApiKeyResponse';
|
|
646
654
|
export { DeleteAIDBClusterDatasetRequest } from './DeleteAidbclusterDatasetRequest';
|
|
647
655
|
export { DeleteAIDBClusterDatasetResponseBody } from './DeleteAidbclusterDatasetResponseBody';
|
|
648
656
|
export { DeleteAIDBClusterDatasetResponse } from './DeleteAidbclusterDatasetResponse';
|
|
@@ -782,6 +790,9 @@ export { DeleteResourceControlResponse } from './DeleteResourceControlResponse';
|
|
|
782
790
|
export { DeleteSQLRateLimitingRulesRequest } from './DeleteSqlrateLimitingRulesRequest';
|
|
783
791
|
export { DeleteSQLRateLimitingRulesResponseBody } from './DeleteSqlrateLimitingRulesResponseBody';
|
|
784
792
|
export { DeleteSQLRateLimitingRulesResponse } from './DeleteSqlrateLimitingRulesResponse';
|
|
793
|
+
export { DescribeAIDBClusterApiKeysRequest } from './DescribeAidbclusterApiKeysRequest';
|
|
794
|
+
export { DescribeAIDBClusterApiKeysResponseBody } from './DescribeAidbclusterApiKeysResponseBody';
|
|
795
|
+
export { DescribeAIDBClusterApiKeysResponse } from './DescribeAidbclusterApiKeysResponse';
|
|
785
796
|
export { DescribeAIDBClusterAttributeRequest } from './DescribeAidbclusterAttributeRequest';
|
|
786
797
|
export { DescribeAIDBClusterAttributeResponseBody } from './DescribeAidbclusterAttributeResponseBody';
|
|
787
798
|
export { DescribeAIDBClusterAttributeResponse } from './DescribeAidbclusterAttributeResponse';
|