@alicloud/polardbx20200202 1.0.4 → 1.0.5
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 +94 -0
- package/dist/client.js +1164 -61
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1220 -61
package/dist/client.d.ts
CHANGED
|
@@ -716,6 +716,60 @@ export declare class DescribeActiveOperationTaskCountResponse extends $tea.Model
|
|
|
716
716
|
[key: string]: any;
|
|
717
717
|
});
|
|
718
718
|
}
|
|
719
|
+
export declare class DescribeActiveOperationTasksRequest extends $tea.Model {
|
|
720
|
+
allowCancel?: number;
|
|
721
|
+
allowChange?: number;
|
|
722
|
+
changeLevel?: string;
|
|
723
|
+
dbType?: string;
|
|
724
|
+
insName?: string;
|
|
725
|
+
pageNumber?: number;
|
|
726
|
+
pageSize?: number;
|
|
727
|
+
productId?: string;
|
|
728
|
+
region?: string;
|
|
729
|
+
regionId?: string;
|
|
730
|
+
status?: number;
|
|
731
|
+
taskType?: string;
|
|
732
|
+
static names(): {
|
|
733
|
+
[key: string]: string;
|
|
734
|
+
};
|
|
735
|
+
static types(): {
|
|
736
|
+
[key: string]: any;
|
|
737
|
+
};
|
|
738
|
+
constructor(map?: {
|
|
739
|
+
[key: string]: any;
|
|
740
|
+
});
|
|
741
|
+
}
|
|
742
|
+
export declare class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
743
|
+
items?: DescribeActiveOperationTasksResponseBodyItems[];
|
|
744
|
+
pageNumber?: number;
|
|
745
|
+
pageSize?: number;
|
|
746
|
+
requestId?: string;
|
|
747
|
+
totalRecordCount?: number;
|
|
748
|
+
static names(): {
|
|
749
|
+
[key: string]: string;
|
|
750
|
+
};
|
|
751
|
+
static types(): {
|
|
752
|
+
[key: string]: any;
|
|
753
|
+
};
|
|
754
|
+
constructor(map?: {
|
|
755
|
+
[key: string]: any;
|
|
756
|
+
});
|
|
757
|
+
}
|
|
758
|
+
export declare class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
759
|
+
headers: {
|
|
760
|
+
[key: string]: string;
|
|
761
|
+
};
|
|
762
|
+
body: DescribeActiveOperationTasksResponseBody;
|
|
763
|
+
static names(): {
|
|
764
|
+
[key: string]: string;
|
|
765
|
+
};
|
|
766
|
+
static types(): {
|
|
767
|
+
[key: string]: any;
|
|
768
|
+
};
|
|
769
|
+
constructor(map?: {
|
|
770
|
+
[key: string]: any;
|
|
771
|
+
});
|
|
772
|
+
}
|
|
719
773
|
export declare class DescribeBackupPolicyRequest extends $tea.Model {
|
|
720
774
|
DBInstanceName?: string;
|
|
721
775
|
regionId?: string;
|
|
@@ -2538,6 +2592,44 @@ export declare class DescribeActiveOperationMaintainConfResponseBodyConfig exten
|
|
|
2538
2592
|
[key: string]: any;
|
|
2539
2593
|
});
|
|
2540
2594
|
}
|
|
2595
|
+
export declare class DescribeActiveOperationTasksResponseBodyItems extends $tea.Model {
|
|
2596
|
+
allowCancel?: string;
|
|
2597
|
+
allowChange?: string;
|
|
2598
|
+
changeLevel?: string;
|
|
2599
|
+
changeLevelEn?: string;
|
|
2600
|
+
changeLevelZh?: string;
|
|
2601
|
+
createdTime?: string;
|
|
2602
|
+
currentAVZ?: string;
|
|
2603
|
+
dbType?: string;
|
|
2604
|
+
dbVersion?: string;
|
|
2605
|
+
deadline?: string;
|
|
2606
|
+
id?: number;
|
|
2607
|
+
impact?: string;
|
|
2608
|
+
impactEn?: string;
|
|
2609
|
+
impactZh?: string;
|
|
2610
|
+
insComment?: string;
|
|
2611
|
+
insName?: string;
|
|
2612
|
+
modifiedTime?: string;
|
|
2613
|
+
prepareInterval?: string;
|
|
2614
|
+
region?: string;
|
|
2615
|
+
resultInfo?: string;
|
|
2616
|
+
startTime?: string;
|
|
2617
|
+
status?: number;
|
|
2618
|
+
subInsNames?: string[];
|
|
2619
|
+
switchTime?: string;
|
|
2620
|
+
taskType?: string;
|
|
2621
|
+
taskTypeEn?: string;
|
|
2622
|
+
taskTypeZh?: string;
|
|
2623
|
+
static names(): {
|
|
2624
|
+
[key: string]: string;
|
|
2625
|
+
};
|
|
2626
|
+
static types(): {
|
|
2627
|
+
[key: string]: any;
|
|
2628
|
+
};
|
|
2629
|
+
constructor(map?: {
|
|
2630
|
+
[key: string]: any;
|
|
2631
|
+
});
|
|
2632
|
+
}
|
|
2541
2633
|
export declare class DescribeBackupPolicyResponseBodyData extends $tea.Model {
|
|
2542
2634
|
backupPeriod?: string;
|
|
2543
2635
|
backupPlanBegin?: string;
|
|
@@ -3405,6 +3497,8 @@ export default class Client extends OpenApi {
|
|
|
3405
3497
|
describeActiveOperationMaintainConf(request: DescribeActiveOperationMaintainConfRequest): Promise<DescribeActiveOperationMaintainConfResponse>;
|
|
3406
3498
|
describeActiveOperationTaskCountWithOptions(request: DescribeActiveOperationTaskCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3407
3499
|
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3500
|
+
describeActiveOperationTasksWithOptions(request: DescribeActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTasksResponse>;
|
|
3501
|
+
describeActiveOperationTasks(request: DescribeActiveOperationTasksRequest): Promise<DescribeActiveOperationTasksResponse>;
|
|
3408
3502
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
3409
3503
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
3410
3504
|
describeBackupSetListWithOptions(request: DescribeBackupSetListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupSetListResponse>;
|