@alicloud/polardb20170801 7.10.0 → 7.11.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.d.ts +113 -26
- package/dist/client.js +192 -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/CreateGwConsumerOrderRequest.d.ts +6 -6
- 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 +203 -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/CreateGwConsumerOrderRequest.ts +6 -6
- 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
|
@@ -2,51 +2,51 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class UnbindResourceControlRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The
|
|
5
|
+
* The PolarDB cluster ID.
|
|
6
6
|
*
|
|
7
7
|
* This parameter is required.
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
|
-
* pc
|
|
10
|
+
* pc-**************
|
|
11
11
|
*/
|
|
12
12
|
DBClusterId?: string;
|
|
13
13
|
/**
|
|
14
14
|
* @remarks
|
|
15
|
-
* The region ID.
|
|
16
|
-
* >You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query
|
|
15
|
+
* The region ID of the PolarDB cluster.
|
|
16
|
+
* >You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query region IDs.
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
|
-
* cn-
|
|
19
|
+
* cn-beijing
|
|
20
20
|
*/
|
|
21
21
|
regionId?: string;
|
|
22
22
|
/**
|
|
23
23
|
* @remarks
|
|
24
|
-
* The resource control name.
|
|
24
|
+
* 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.
|
|
25
25
|
*
|
|
26
26
|
* This parameter is required.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
*
|
|
29
|
+
* test_rc
|
|
30
30
|
*/
|
|
31
31
|
resourceControlName?: string;
|
|
32
32
|
/**
|
|
33
33
|
* @remarks
|
|
34
|
-
* The target
|
|
34
|
+
* The type of the target to unbind. Valid values: USER, DATABASE, QUERY, CONNECTION. The value is case-insensitive.
|
|
35
35
|
*
|
|
36
36
|
* This parameter is required.
|
|
37
37
|
*
|
|
38
38
|
* @example
|
|
39
|
-
*
|
|
39
|
+
* USER
|
|
40
40
|
*/
|
|
41
41
|
targetType?: string;
|
|
42
42
|
/**
|
|
43
43
|
* @remarks
|
|
44
|
-
* The
|
|
44
|
+
* The value of the target to unbind. The format is the same as the TargetValue for the corresponding target type in the BindResourceControl operation.
|
|
45
45
|
*
|
|
46
46
|
* This parameter is required.
|
|
47
47
|
*
|
|
48
48
|
* @example
|
|
49
|
-
*
|
|
49
|
+
* app_user
|
|
50
50
|
*/
|
|
51
51
|
targetValue?: string;
|
|
52
52
|
static names(): {
|
package/dist/models/model.d.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';
|