@alicloud/rds20140815 7.1.3 → 7.2.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 +367 -49
- package/dist/client.js +361 -41
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +625 -49
package/dist/client.d.ts
CHANGED
|
@@ -2174,7 +2174,31 @@ export declare class ConfirmNotifyResponse extends $tea.Model {
|
|
|
2174
2174
|
});
|
|
2175
2175
|
}
|
|
2176
2176
|
export declare class CopyDatabaseRequest extends $tea.Model {
|
|
2177
|
+
/**
|
|
2178
|
+
* @remarks
|
|
2179
|
+
* The instance name.
|
|
2180
|
+
*
|
|
2181
|
+
* @example
|
|
2182
|
+
* rm-uf6wjk5******
|
|
2183
|
+
*/
|
|
2184
|
+
DBInstanceName?: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* @remarks
|
|
2187
|
+
* Destination database name.
|
|
2188
|
+
*
|
|
2189
|
+
* @example
|
|
2190
|
+
* db2***
|
|
2191
|
+
*/
|
|
2192
|
+
dstDBName?: string;
|
|
2177
2193
|
ownerId?: number;
|
|
2194
|
+
/**
|
|
2195
|
+
* @remarks
|
|
2196
|
+
* Reserve account.
|
|
2197
|
+
*
|
|
2198
|
+
* @example
|
|
2199
|
+
* 1
|
|
2200
|
+
*/
|
|
2201
|
+
reserveAccount?: number;
|
|
2178
2202
|
/**
|
|
2179
2203
|
* @remarks
|
|
2180
2204
|
* The ID of the resource group.
|
|
@@ -2185,6 +2209,14 @@ export declare class CopyDatabaseRequest extends $tea.Model {
|
|
|
2185
2209
|
resourceGroupId?: string;
|
|
2186
2210
|
resourceOwnerAccount?: string;
|
|
2187
2211
|
resourceOwnerId?: number;
|
|
2212
|
+
/**
|
|
2213
|
+
* @remarks
|
|
2214
|
+
* Source database name.
|
|
2215
|
+
*
|
|
2216
|
+
* @example
|
|
2217
|
+
* db1***
|
|
2218
|
+
*/
|
|
2219
|
+
srcDBName?: string;
|
|
2188
2220
|
static names(): {
|
|
2189
2221
|
[key: string]: string;
|
|
2190
2222
|
};
|
|
@@ -2440,6 +2472,7 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
2440
2472
|
* Normal
|
|
2441
2473
|
*/
|
|
2442
2474
|
accountType?: string;
|
|
2475
|
+
checkPolicy?: boolean;
|
|
2443
2476
|
/**
|
|
2444
2477
|
* @remarks
|
|
2445
2478
|
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
@@ -5775,6 +5808,21 @@ export declare class CreateDdrInstanceRequest extends $tea.Model {
|
|
|
5775
5808
|
* local_ssd
|
|
5776
5809
|
*/
|
|
5777
5810
|
DBInstanceStorageType?: string;
|
|
5811
|
+
/**
|
|
5812
|
+
* @remarks
|
|
5813
|
+
* The ID of the customer master key (CMK) for cloud disk encryption. If this parameter is specified, cloud disk encryption is enabled and you must also specify the **RoleARN** parameter. Cloud disk encryption cannot be disabled after it is enabled. You can obtain the ID of the key in the KMS console or create a key. For more information, see [Create a key](https://help.aliyun.com/document_detail/181610.html).
|
|
5814
|
+
*
|
|
5815
|
+
* **
|
|
5816
|
+
*
|
|
5817
|
+
* **Notes**
|
|
5818
|
+
*
|
|
5819
|
+
* * This parameter is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
5820
|
+
*
|
|
5821
|
+
* * You can leave this parameter empty. If you do not specify this parameter, you only need to specify the **RoleARN** to use the service key that is managed by ApsaraDB RDS to encrypt cloud disks.
|
|
5822
|
+
*
|
|
5823
|
+
* @example
|
|
5824
|
+
* 749c1df7-****-****-****-****
|
|
5825
|
+
*/
|
|
5778
5826
|
encryptionKey?: string;
|
|
5779
5827
|
/**
|
|
5780
5828
|
* @remarks
|
|
@@ -5898,6 +5946,15 @@ export declare class CreateDdrInstanceRequest extends $tea.Model {
|
|
|
5898
5946
|
* BackupSet
|
|
5899
5947
|
*/
|
|
5900
5948
|
restoreType?: string;
|
|
5949
|
+
/**
|
|
5950
|
+
* @remarks
|
|
5951
|
+
* The Alibaba Cloud Resource Name (ARN) that is provided by your Alibaba Cloud account for Resource Access Management (RAM) users. RAM users can use the ARN to connect to ApsaraDB RDS to Key Management Service (KMS). You can call the [CheckCloudResourceAuthorized](https://help.aliyun.com/document_detail/2628797.html) operation to query the ARN.
|
|
5952
|
+
*
|
|
5953
|
+
* > This parameter is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
5954
|
+
*
|
|
5955
|
+
* @example
|
|
5956
|
+
* acs:ram::1406****:role/aliyunrdsinstanceencryptiondefaultrole
|
|
5957
|
+
*/
|
|
5901
5958
|
roleARN?: string;
|
|
5902
5959
|
/**
|
|
5903
5960
|
* @remarks
|
|
@@ -7926,7 +7983,7 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7926
7983
|
* @remarks
|
|
7927
7984
|
* The name of the source instance.
|
|
7928
7985
|
*
|
|
7929
|
-
* >
|
|
7986
|
+
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
7930
7987
|
*
|
|
7931
7988
|
* @example
|
|
7932
7989
|
* testInstance
|
|
@@ -7934,9 +7991,9 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7934
7991
|
sourceInstanceName?: string;
|
|
7935
7992
|
/**
|
|
7936
7993
|
* @remarks
|
|
7937
|
-
* The ID of the
|
|
7994
|
+
* The region ID of the source instance.
|
|
7938
7995
|
*
|
|
7939
|
-
* >
|
|
7996
|
+
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
7940
7997
|
*
|
|
7941
7998
|
* @example
|
|
7942
7999
|
* cn-hangzhou
|
|
@@ -7944,7 +8001,7 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7944
8001
|
sourceInstanceRegionId?: string;
|
|
7945
8002
|
/**
|
|
7946
8003
|
* @remarks
|
|
7947
|
-
* The port
|
|
8004
|
+
* The port of the source instance.
|
|
7948
8005
|
*
|
|
7949
8006
|
* @example
|
|
7950
8007
|
* 5432
|
|
@@ -10765,7 +10822,7 @@ export declare class DescribeAccountsRequest extends $tea.Model {
|
|
|
10765
10822
|
export declare class DescribeAccountsResponseBody extends $tea.Model {
|
|
10766
10823
|
/**
|
|
10767
10824
|
* @remarks
|
|
10768
|
-
* The details
|
|
10825
|
+
* The details of the account.
|
|
10769
10826
|
*/
|
|
10770
10827
|
accounts?: DescribeAccountsResponseBodyAccounts;
|
|
10771
10828
|
/**
|
|
@@ -12430,6 +12487,16 @@ export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
12430
12487
|
* 1
|
|
12431
12488
|
*/
|
|
12432
12489
|
supportVolumeShadowCopy?: number;
|
|
12490
|
+
/**
|
|
12491
|
+
* @remarks
|
|
12492
|
+
* Indicates whether log backups for SQL Server are performed verery five minutes.
|
|
12493
|
+
*
|
|
12494
|
+
* * 0: No
|
|
12495
|
+
* * 1: Yes
|
|
12496
|
+
*
|
|
12497
|
+
* @example
|
|
12498
|
+
* 0
|
|
12499
|
+
*/
|
|
12433
12500
|
supportsHighFrequencyBackup?: number;
|
|
12434
12501
|
static names(): {
|
|
12435
12502
|
[key: string]: string;
|
|
@@ -20037,7 +20104,7 @@ export declare class DescribeHistoryTasksStatRequest extends $tea.Model {
|
|
|
20037
20104
|
fromExecTime?: number;
|
|
20038
20105
|
/**
|
|
20039
20106
|
* @remarks
|
|
20040
|
-
* The beginning of the time range to query. Specify the time in the ISO 8601 standard in the
|
|
20107
|
+
* The beginning of the time range to query. Specify the time in the ISO 8601 standard in the `yyyy-MM-ddTHH:mm:ssZ` format. The time must be in UTC.
|
|
20041
20108
|
*
|
|
20042
20109
|
* This parameter is required.
|
|
20043
20110
|
*
|
|
@@ -20119,7 +20186,7 @@ export declare class DescribeHistoryTasksStatRequest extends $tea.Model {
|
|
|
20119
20186
|
toExecTime?: number;
|
|
20120
20187
|
/**
|
|
20121
20188
|
* @remarks
|
|
20122
|
-
* The end of the time range to query. Only tasks that have a start time earlier than or equal to the time specified by this parameter are queried. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
|
|
20189
|
+
* The end of the time range to query. Only tasks that have a start time earlier than or equal to the time specified by this parameter are queried. Specify the time in the ISO 8601 standard in the `yyyy-MM-ddTHH:mm:ssZ` format. The time must be in UTC.
|
|
20123
20190
|
*
|
|
20124
20191
|
* This parameter is required.
|
|
20125
20192
|
*
|
|
@@ -23776,6 +23843,7 @@ export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model
|
|
|
23776
23843
|
internetMaxBandwidthIn?: number;
|
|
23777
23844
|
internetMaxBandwidthOut?: number;
|
|
23778
23845
|
ioOptimized?: string;
|
|
23846
|
+
keyPairName?: string;
|
|
23779
23847
|
memory?: number;
|
|
23780
23848
|
operationLocks?: DescribeRCInstanceAttributeResponseBodyOperationLocks;
|
|
23781
23849
|
publicIpAddress?: DescribeRCInstanceAttributeResponseBodyPublicIpAddress;
|
|
@@ -26861,7 +26929,7 @@ export declare class DescribeVSwitchesResponseBody extends $tea.Model {
|
|
|
26861
26929
|
totalCount?: number;
|
|
26862
26930
|
/**
|
|
26863
26931
|
* @remarks
|
|
26864
|
-
*
|
|
26932
|
+
* Details of the vSwitches.
|
|
26865
26933
|
*/
|
|
26866
26934
|
vSwitchs?: DescribeVSwitchesResponseBodyVSwitchs[];
|
|
26867
26935
|
static names(): {
|
|
@@ -29098,6 +29166,90 @@ export declare class ModifyADInfoResponse extends $tea.Model {
|
|
|
29098
29166
|
[key: string]: any;
|
|
29099
29167
|
});
|
|
29100
29168
|
}
|
|
29169
|
+
export declare class ModifyAccountCheckPolicyRequest extends $tea.Model {
|
|
29170
|
+
/**
|
|
29171
|
+
* @remarks
|
|
29172
|
+
* This parameter is required.
|
|
29173
|
+
*
|
|
29174
|
+
* @example
|
|
29175
|
+
* DatabaseTest
|
|
29176
|
+
*/
|
|
29177
|
+
accountName?: string;
|
|
29178
|
+
/**
|
|
29179
|
+
* @remarks
|
|
29180
|
+
* This parameter is required.
|
|
29181
|
+
*
|
|
29182
|
+
* @example
|
|
29183
|
+
* true
|
|
29184
|
+
*/
|
|
29185
|
+
checkPolicy?: boolean;
|
|
29186
|
+
/**
|
|
29187
|
+
* @example
|
|
29188
|
+
* ETnLKlblzczshOTUbOC****
|
|
29189
|
+
*/
|
|
29190
|
+
clientToken?: string;
|
|
29191
|
+
/**
|
|
29192
|
+
* @remarks
|
|
29193
|
+
* This parameter is required.
|
|
29194
|
+
*
|
|
29195
|
+
* @example
|
|
29196
|
+
* rm-uf6wjk5xxxxxxxxxx
|
|
29197
|
+
*/
|
|
29198
|
+
DBInstanceId?: string;
|
|
29199
|
+
ownerAccount?: string;
|
|
29200
|
+
ownerId?: number;
|
|
29201
|
+
/**
|
|
29202
|
+
* @example
|
|
29203
|
+
* rg-acfmy****
|
|
29204
|
+
*/
|
|
29205
|
+
resourceGroupId?: string;
|
|
29206
|
+
resourceOwnerAccount?: string;
|
|
29207
|
+
resourceOwnerId?: number;
|
|
29208
|
+
static names(): {
|
|
29209
|
+
[key: string]: string;
|
|
29210
|
+
};
|
|
29211
|
+
static types(): {
|
|
29212
|
+
[key: string]: any;
|
|
29213
|
+
};
|
|
29214
|
+
constructor(map?: {
|
|
29215
|
+
[key: string]: any;
|
|
29216
|
+
});
|
|
29217
|
+
}
|
|
29218
|
+
export declare class ModifyAccountCheckPolicyResponseBody extends $tea.Model {
|
|
29219
|
+
/**
|
|
29220
|
+
* @remarks
|
|
29221
|
+
* Id of the request
|
|
29222
|
+
*
|
|
29223
|
+
* @example
|
|
29224
|
+
* 866F5EB8-4650-4061-87F0-379F6F968BCE
|
|
29225
|
+
*/
|
|
29226
|
+
requestId?: string;
|
|
29227
|
+
static names(): {
|
|
29228
|
+
[key: string]: string;
|
|
29229
|
+
};
|
|
29230
|
+
static types(): {
|
|
29231
|
+
[key: string]: any;
|
|
29232
|
+
};
|
|
29233
|
+
constructor(map?: {
|
|
29234
|
+
[key: string]: any;
|
|
29235
|
+
});
|
|
29236
|
+
}
|
|
29237
|
+
export declare class ModifyAccountCheckPolicyResponse extends $tea.Model {
|
|
29238
|
+
headers?: {
|
|
29239
|
+
[key: string]: string;
|
|
29240
|
+
};
|
|
29241
|
+
statusCode?: number;
|
|
29242
|
+
body?: ModifyAccountCheckPolicyResponseBody;
|
|
29243
|
+
static names(): {
|
|
29244
|
+
[key: string]: string;
|
|
29245
|
+
};
|
|
29246
|
+
static types(): {
|
|
29247
|
+
[key: string]: any;
|
|
29248
|
+
};
|
|
29249
|
+
constructor(map?: {
|
|
29250
|
+
[key: string]: any;
|
|
29251
|
+
});
|
|
29252
|
+
}
|
|
29101
29253
|
export declare class ModifyAccountDescriptionRequest extends $tea.Model {
|
|
29102
29254
|
/**
|
|
29103
29255
|
* @remarks
|
|
@@ -29243,6 +29395,79 @@ export declare class ModifyAccountMaskingPrivilegeResponse extends $tea.Model {
|
|
|
29243
29395
|
[key: string]: any;
|
|
29244
29396
|
});
|
|
29245
29397
|
}
|
|
29398
|
+
export declare class ModifyAccountSecurityPolicyRequest extends $tea.Model {
|
|
29399
|
+
/**
|
|
29400
|
+
* @example
|
|
29401
|
+
* ETnLKlblzczshOTUbOCz****
|
|
29402
|
+
*/
|
|
29403
|
+
clientToken?: string;
|
|
29404
|
+
/**
|
|
29405
|
+
* @remarks
|
|
29406
|
+
* This parameter is required.
|
|
29407
|
+
*
|
|
29408
|
+
* @example
|
|
29409
|
+
* rm-bp1ibu****
|
|
29410
|
+
*/
|
|
29411
|
+
DBInstanceId?: string;
|
|
29412
|
+
/**
|
|
29413
|
+
* @remarks
|
|
29414
|
+
* This parameter is required.
|
|
29415
|
+
*
|
|
29416
|
+
* @example
|
|
29417
|
+
* {"accountSecurityPolicy": {"MaximumPasswordAge": 30, "MinimumPasswordAge": 20}}
|
|
29418
|
+
*/
|
|
29419
|
+
groupPolicy?: string;
|
|
29420
|
+
ownerAccount?: string;
|
|
29421
|
+
ownerId?: number;
|
|
29422
|
+
/**
|
|
29423
|
+
* @example
|
|
29424
|
+
* rg-acfmy****
|
|
29425
|
+
*/
|
|
29426
|
+
resourceGroupId?: string;
|
|
29427
|
+
resourceOwnerAccount?: string;
|
|
29428
|
+
resourceOwnerId?: number;
|
|
29429
|
+
static names(): {
|
|
29430
|
+
[key: string]: string;
|
|
29431
|
+
};
|
|
29432
|
+
static types(): {
|
|
29433
|
+
[key: string]: any;
|
|
29434
|
+
};
|
|
29435
|
+
constructor(map?: {
|
|
29436
|
+
[key: string]: any;
|
|
29437
|
+
});
|
|
29438
|
+
}
|
|
29439
|
+
export declare class ModifyAccountSecurityPolicyResponseBody extends $tea.Model {
|
|
29440
|
+
/**
|
|
29441
|
+
* @example
|
|
29442
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
29443
|
+
*/
|
|
29444
|
+
requestId?: string;
|
|
29445
|
+
static names(): {
|
|
29446
|
+
[key: string]: string;
|
|
29447
|
+
};
|
|
29448
|
+
static types(): {
|
|
29449
|
+
[key: string]: any;
|
|
29450
|
+
};
|
|
29451
|
+
constructor(map?: {
|
|
29452
|
+
[key: string]: any;
|
|
29453
|
+
});
|
|
29454
|
+
}
|
|
29455
|
+
export declare class ModifyAccountSecurityPolicyResponse extends $tea.Model {
|
|
29456
|
+
headers?: {
|
|
29457
|
+
[key: string]: string;
|
|
29458
|
+
};
|
|
29459
|
+
statusCode?: number;
|
|
29460
|
+
body?: ModifyAccountSecurityPolicyResponseBody;
|
|
29461
|
+
static names(): {
|
|
29462
|
+
[key: string]: string;
|
|
29463
|
+
};
|
|
29464
|
+
static types(): {
|
|
29465
|
+
[key: string]: any;
|
|
29466
|
+
};
|
|
29467
|
+
constructor(map?: {
|
|
29468
|
+
[key: string]: any;
|
|
29469
|
+
});
|
|
29470
|
+
}
|
|
29246
29471
|
export declare class ModifyActionEventPolicyRequest extends $tea.Model {
|
|
29247
29472
|
/**
|
|
29248
29473
|
* @remarks
|
|
@@ -32009,6 +32234,7 @@ export declare class ModifyDBInstanceSecurityGroupRuleResponse extends $tea.Mode
|
|
|
32009
32234
|
});
|
|
32010
32235
|
}
|
|
32011
32236
|
export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
32237
|
+
allowMajorVersionUpgrade?: boolean;
|
|
32012
32238
|
/**
|
|
32013
32239
|
* @remarks
|
|
32014
32240
|
* Specifies whether to use vouchers to offset fees. Valid values:
|
|
@@ -32244,6 +32470,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32244
32470
|
* 3
|
|
32245
32471
|
*/
|
|
32246
32472
|
usedTime?: number;
|
|
32473
|
+
vSwitchId?: string;
|
|
32247
32474
|
/**
|
|
32248
32475
|
* @remarks
|
|
32249
32476
|
* The RDS edition of the instance. Valid values:
|
|
@@ -32259,6 +32486,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32259
32486
|
* cn-hangzhou-b
|
|
32260
32487
|
*/
|
|
32261
32488
|
zoneId?: string;
|
|
32489
|
+
zoneIdSlave1?: string;
|
|
32262
32490
|
static names(): {
|
|
32263
32491
|
[key: string]: string;
|
|
32264
32492
|
};
|
|
@@ -32270,6 +32498,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32270
32498
|
});
|
|
32271
32499
|
}
|
|
32272
32500
|
export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
32501
|
+
allowMajorVersionUpgrade?: boolean;
|
|
32273
32502
|
/**
|
|
32274
32503
|
* @remarks
|
|
32275
32504
|
* Specifies whether to use vouchers to offset fees. Valid values:
|
|
@@ -32505,6 +32734,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32505
32734
|
* 3
|
|
32506
32735
|
*/
|
|
32507
32736
|
usedTime?: number;
|
|
32737
|
+
vSwitchId?: string;
|
|
32508
32738
|
/**
|
|
32509
32739
|
* @remarks
|
|
32510
32740
|
* The RDS edition of the instance. Valid values:
|
|
@@ -32520,6 +32750,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32520
32750
|
* cn-hangzhou-b
|
|
32521
32751
|
*/
|
|
32522
32752
|
zoneId?: string;
|
|
32753
|
+
zoneIdSlave1?: string;
|
|
32523
32754
|
static names(): {
|
|
32524
32755
|
[key: string]: string;
|
|
32525
32756
|
};
|
|
@@ -34064,7 +34295,7 @@ export declare class ModifyDbProxyInstanceSslResponse extends $tea.Model {
|
|
|
34064
34295
|
export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
34065
34296
|
/**
|
|
34066
34297
|
* @remarks
|
|
34067
|
-
* The action
|
|
34298
|
+
* The action-related parameters. You can add action-related parameters based on your business requirements. The parameter value varies with the value of the TaskAction parameter.
|
|
34068
34299
|
*
|
|
34069
34300
|
* @example
|
|
34070
34301
|
* {\\"recoverTime\\":\\"2023-04-17T14:02:35Z\\",\\"recoverMode\\":\\"timePoint\\"}
|
|
@@ -34072,7 +34303,12 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34072
34303
|
actionParams?: string;
|
|
34073
34304
|
/**
|
|
34074
34305
|
* @remarks
|
|
34075
|
-
* The event handling action.
|
|
34306
|
+
* The event handling action. Valid values:
|
|
34307
|
+
*
|
|
34308
|
+
* * **archive**
|
|
34309
|
+
* * **undo**
|
|
34310
|
+
*
|
|
34311
|
+
* > This parameter is required.
|
|
34076
34312
|
*
|
|
34077
34313
|
* @example
|
|
34078
34314
|
* archive
|
|
@@ -34080,7 +34316,7 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34080
34316
|
eventAction?: string;
|
|
34081
34317
|
/**
|
|
34082
34318
|
* @remarks
|
|
34083
|
-
* The event ID. Separate multiple event IDs with commas (,). You can
|
|
34319
|
+
* The event ID. You can call the DescribeEvents operation to obtain the IDs of the events. Separate multiple event IDs with commas (,). You can specify up to 20 event IDs.
|
|
34084
34320
|
*
|
|
34085
34321
|
* This parameter is required.
|
|
34086
34322
|
*
|
|
@@ -34090,7 +34326,7 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34090
34326
|
eventId?: string;
|
|
34091
34327
|
/**
|
|
34092
34328
|
* @remarks
|
|
34093
|
-
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
34329
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/610399.html) operation to query the most recent region list.
|
|
34094
34330
|
*
|
|
34095
34331
|
* This parameter is required.
|
|
34096
34332
|
*
|
|
@@ -35891,7 +36127,15 @@ export declare class ModifySecurityIpsResponse extends $tea.Model {
|
|
|
35891
36127
|
export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
35892
36128
|
/**
|
|
35893
36129
|
* @remarks
|
|
35894
|
-
* The action parameter
|
|
36130
|
+
* The action-related parameters. You can add action-related parameters based on your business requirements. If you set the TaskAction parameter to modifySwitchTime, you must set this parameter to `{"recoverMode": "xxx", "recoverTime": "xxx"}`.
|
|
36131
|
+
*
|
|
36132
|
+
* The recoverMode field specifies the task restoration mode. valid values:
|
|
36133
|
+
*
|
|
36134
|
+
* * **timePoint**: The task is executed at a specified point in time.
|
|
36135
|
+
* * **Immediate**: The task is executed immediately.
|
|
36136
|
+
* * **maintainTime**: The task is executed based on the O\\&M time.
|
|
36137
|
+
*
|
|
36138
|
+
* The recoverTime field specifies restoration time. Specify the time in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If you set the recoverMode field to timePoint, you must also specify the recoverTime field.
|
|
35895
36139
|
*
|
|
35896
36140
|
* @example
|
|
35897
36141
|
* {\\"recoverTime\\":\\"2023-04-12T18:30:00Z\\",\\"recoverMode\\":\\"timePoint\\"}
|
|
@@ -35920,12 +36164,7 @@ export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
|
35920
36164
|
stepName?: string;
|
|
35921
36165
|
/**
|
|
35922
36166
|
* @remarks
|
|
35923
|
-
* The
|
|
35924
|
-
*
|
|
35925
|
-
* * ImportImage
|
|
35926
|
-
* * ExportImage
|
|
35927
|
-
* * RedeployInstance
|
|
35928
|
-
* * ModifyDiskSpec
|
|
36167
|
+
* The task action. Set the value to modifySwitchTime. The value specifies that you want to change the switching time or restoration time.
|
|
35929
36168
|
*
|
|
35930
36169
|
* @example
|
|
35931
36170
|
* ImportImage
|
|
@@ -35933,7 +36172,7 @@ export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
|
35933
36172
|
taskAction?: string;
|
|
35934
36173
|
/**
|
|
35935
36174
|
* @remarks
|
|
35936
|
-
* The task ID.
|
|
36175
|
+
* The task ID. You can call the DescribeTasks operation to query task IDs.
|
|
35937
36176
|
*
|
|
35938
36177
|
* This parameter is required.
|
|
35939
36178
|
*
|
|
@@ -38430,6 +38669,7 @@ export declare class RunRCInstancesRequest extends $tea.Model {
|
|
|
38430
38669
|
dataDisk?: RunRCInstancesRequestDataDisk[];
|
|
38431
38670
|
deploymentSetId?: string;
|
|
38432
38671
|
description?: string;
|
|
38672
|
+
dryRun?: boolean;
|
|
38433
38673
|
imageId?: string;
|
|
38434
38674
|
instanceChargeType?: string;
|
|
38435
38675
|
instanceName?: string;
|
|
@@ -38481,6 +38721,7 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
|
38481
38721
|
dataDiskShrink?: string;
|
|
38482
38722
|
deploymentSetId?: string;
|
|
38483
38723
|
description?: string;
|
|
38724
|
+
dryRun?: boolean;
|
|
38484
38725
|
imageId?: string;
|
|
38485
38726
|
instanceChargeType?: string;
|
|
38486
38727
|
instanceName?: string;
|
|
@@ -41892,6 +42133,7 @@ export declare class DescribeAccountsResponseBodyAccountsDBInstanceAccount exten
|
|
|
41892
42133
|
* f
|
|
41893
42134
|
*/
|
|
41894
42135
|
bypassRLS?: string;
|
|
42136
|
+
checkPolicy?: boolean;
|
|
41895
42137
|
/**
|
|
41896
42138
|
* @remarks
|
|
41897
42139
|
* Indicates whether the account has the permissions to create databases. Valid values:
|
|
@@ -41931,6 +42173,7 @@ export declare class DescribeAccountsResponseBodyAccountsDBInstanceAccount exten
|
|
|
41931
42173
|
* The details about the permissions that are granted to the account.
|
|
41932
42174
|
*/
|
|
41933
42175
|
databasePrivileges?: DescribeAccountsResponseBodyAccountsDBInstanceAccountDatabasePrivileges;
|
|
42176
|
+
passwordExpireTime?: string;
|
|
41934
42177
|
/**
|
|
41935
42178
|
* @remarks
|
|
41936
42179
|
* Indicates whether the number of databases that are managed by the account exceeds the upper limit. Valid values:
|
|
@@ -44428,6 +44671,15 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44428
44671
|
});
|
|
44429
44672
|
}
|
|
44430
44673
|
export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeExtra extends $tea.Model {
|
|
44674
|
+
/**
|
|
44675
|
+
* @remarks
|
|
44676
|
+
* Instance account group policy.
|
|
44677
|
+
* - MaximumPasswordAge: Maximum usage time
|
|
44678
|
+
* - MinimumPasswordAge: Minimum usage time
|
|
44679
|
+
*
|
|
44680
|
+
* @example
|
|
44681
|
+
* {"MaximumPasswordAge": 42,"MinimumPasswordAge": 30}
|
|
44682
|
+
*/
|
|
44431
44683
|
accountSecurityPolicy?: string;
|
|
44432
44684
|
/**
|
|
44433
44685
|
* @remarks
|
|
@@ -44864,7 +45116,21 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44864
45116
|
* true
|
|
44865
45117
|
*/
|
|
44866
45118
|
deletionProtection?: boolean;
|
|
45119
|
+
/**
|
|
45120
|
+
* @remarks
|
|
45121
|
+
* Disaster recovery source instance information.
|
|
45122
|
+
*
|
|
45123
|
+
* @example
|
|
45124
|
+
* {"replicatorAccount": "******","sourcePort":******,"sourceAddress": "pgm-2ze******","sourceCategory": "aliyunRDS","sourceInstanceRegionId": "cn-******","replicatorPassword": "******","sourceInstanceName": "pgm-2ze******"}
|
|
45125
|
+
*/
|
|
44867
45126
|
disasterRecoveryInfo?: string;
|
|
45127
|
+
/**
|
|
45128
|
+
* @remarks
|
|
45129
|
+
* All disaster recovery instances of the current instance.
|
|
45130
|
+
*
|
|
45131
|
+
* @example
|
|
45132
|
+
* [{"regionId":"cn-******","insName":"pgm-2ze******"},{"regionId":"cn-******","insName":"pgm-2ze******"}]
|
|
45133
|
+
*/
|
|
44868
45134
|
disasterRecoveryInstances?: string;
|
|
44869
45135
|
/**
|
|
44870
45136
|
* @remarks
|
|
@@ -52311,6 +52577,15 @@ export declare class DescribePostgresExtensionsResponseBodyInstalledExtensions e
|
|
|
52311
52577
|
* {dblink,plpgsql}
|
|
52312
52578
|
*/
|
|
52313
52579
|
requires?: string;
|
|
52580
|
+
/**
|
|
52581
|
+
* @remarks
|
|
52582
|
+
* Alibaba Cloud account ID.
|
|
52583
|
+
*
|
|
52584
|
+
* > Only exclusive plug-ins (plug-ins written by users) will return this parameter. Each Alibaba Cloud account only displays its own exclusive plug-ins.
|
|
52585
|
+
*
|
|
52586
|
+
* @example
|
|
52587
|
+
* 181578148294****
|
|
52588
|
+
*/
|
|
52314
52589
|
uid?: string;
|
|
52315
52590
|
static names(): {
|
|
52316
52591
|
[key: string]: string;
|
|
@@ -52387,6 +52662,15 @@ export declare class DescribePostgresExtensionsResponseBodyUninstalledExtensions
|
|
|
52387
52662
|
* {dblink,plpgsql}
|
|
52388
52663
|
*/
|
|
52389
52664
|
requires?: string;
|
|
52665
|
+
/**
|
|
52666
|
+
* @remarks
|
|
52667
|
+
* Alibaba Cloud account ID.
|
|
52668
|
+
*
|
|
52669
|
+
* > Only exclusive plug-ins (plug-ins written by users) will return this parameter. Each Alibaba Cloud account only displays its own exclusive plug-ins.
|
|
52670
|
+
*
|
|
52671
|
+
* @example
|
|
52672
|
+
* 181578148294****
|
|
52673
|
+
*/
|
|
52390
52674
|
uid?: string;
|
|
52391
52675
|
static names(): {
|
|
52392
52676
|
[key: string]: string;
|
|
@@ -55289,7 +55573,7 @@ export declare class DescribeVSwitchesResponseBodyVSwitchs extends $tea.Model {
|
|
|
55289
55573
|
* The description of the vSwitch.
|
|
55290
55574
|
*
|
|
55291
55575
|
* @example
|
|
55292
|
-
*
|
|
55576
|
+
* vSwitchDescription
|
|
55293
55577
|
*/
|
|
55294
55578
|
description?: string;
|
|
55295
55579
|
/**
|
|
@@ -60705,7 +60989,7 @@ export default class Client extends OpenApi {
|
|
|
60705
60989
|
*/
|
|
60706
60990
|
describeHASwitchConfig(request: DescribeHASwitchConfigRequest): Promise<DescribeHASwitchConfigResponse>;
|
|
60707
60991
|
/**
|
|
60708
|
-
*
|
|
60992
|
+
* Queries historical events in the event center.
|
|
60709
60993
|
*
|
|
60710
60994
|
* @param request - DescribeHistoryEventsRequest
|
|
60711
60995
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60713,14 +60997,14 @@ export default class Client extends OpenApi {
|
|
|
60713
60997
|
*/
|
|
60714
60998
|
describeHistoryEventsWithOptions(request: DescribeHistoryEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsResponse>;
|
|
60715
60999
|
/**
|
|
60716
|
-
*
|
|
61000
|
+
* Queries historical events in the event center.
|
|
60717
61001
|
*
|
|
60718
61002
|
* @param request - DescribeHistoryEventsRequest
|
|
60719
61003
|
* @returns DescribeHistoryEventsResponse
|
|
60720
61004
|
*/
|
|
60721
61005
|
describeHistoryEvents(request: DescribeHistoryEventsRequest): Promise<DescribeHistoryEventsResponse>;
|
|
60722
61006
|
/**
|
|
60723
|
-
* Queries
|
|
61007
|
+
* Queries the statistics of historical events in the event center.
|
|
60724
61008
|
*
|
|
60725
61009
|
* @param request - DescribeHistoryEventsStatRequest
|
|
60726
61010
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60728,7 +61012,7 @@ export default class Client extends OpenApi {
|
|
|
60728
61012
|
*/
|
|
60729
61013
|
describeHistoryEventsStatWithOptions(request: DescribeHistoryEventsStatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsStatResponse>;
|
|
60730
61014
|
/**
|
|
60731
|
-
* Queries
|
|
61015
|
+
* Queries the statistics of historical events in the event center.
|
|
60732
61016
|
*
|
|
60733
61017
|
* @param request - DescribeHistoryEventsStatRequest
|
|
60734
61018
|
* @returns DescribeHistoryEventsStatResponse
|
|
@@ -60772,7 +61056,7 @@ export default class Client extends OpenApi {
|
|
|
60772
61056
|
*/
|
|
60773
61057
|
describeHistoryTasks(request: DescribeHistoryTasksRequest): Promise<DescribeHistoryTasksResponse>;
|
|
60774
61058
|
/**
|
|
60775
|
-
*
|
|
61059
|
+
* Collects tasks in the task center.
|
|
60776
61060
|
*
|
|
60777
61061
|
* @param request - DescribeHistoryTasksStatRequest
|
|
60778
61062
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60780,7 +61064,7 @@ export default class Client extends OpenApi {
|
|
|
60780
61064
|
*/
|
|
60781
61065
|
describeHistoryTasksStatWithOptions(request: DescribeHistoryTasksStatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryTasksStatResponse>;
|
|
60782
61066
|
/**
|
|
60783
|
-
*
|
|
61067
|
+
* Collects tasks in the task center.
|
|
60784
61068
|
*
|
|
60785
61069
|
* @param request - DescribeHistoryTasksStatRequest
|
|
60786
61070
|
* @returns DescribeHistoryTasksStatResponse
|
|
@@ -62013,14 +62297,16 @@ export default class Client extends OpenApi {
|
|
|
62013
62297
|
* @remarks
|
|
62014
62298
|
* ### [](#)Supported database engines
|
|
62015
62299
|
* * MySQL
|
|
62016
|
-
*
|
|
62300
|
+
* **
|
|
62301
|
+
* **Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
62017
62302
|
* * SQL Server
|
|
62018
|
-
*
|
|
62303
|
+
* **
|
|
62304
|
+
* **Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
62019
62305
|
* * MariaDB
|
|
62020
|
-
* ### [](#)
|
|
62306
|
+
* ### [](#)Prerequisites
|
|
62021
62307
|
* * Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
62022
62308
|
* * If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
62023
|
-
* * Starting from
|
|
62309
|
+
* * Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
62024
62310
|
*
|
|
62025
62311
|
* @param request - DescribeSlowLogsRequest
|
|
62026
62312
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -62033,14 +62319,16 @@ export default class Client extends OpenApi {
|
|
|
62033
62319
|
* @remarks
|
|
62034
62320
|
* ### [](#)Supported database engines
|
|
62035
62321
|
* * MySQL
|
|
62036
|
-
*
|
|
62322
|
+
* **
|
|
62323
|
+
* **Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
62037
62324
|
* * SQL Server
|
|
62038
|
-
*
|
|
62325
|
+
* **
|
|
62326
|
+
* **Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
62039
62327
|
* * MariaDB
|
|
62040
|
-
* ### [](#)
|
|
62328
|
+
* ### [](#)Prerequisites
|
|
62041
62329
|
* * Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
62042
62330
|
* * If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
62043
|
-
* * Starting from
|
|
62331
|
+
* * Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
62044
62332
|
*
|
|
62045
62333
|
* @param request - DescribeSlowLogsRequest
|
|
62046
62334
|
* @returns DescribeSlowLogsResponse
|
|
@@ -62184,7 +62472,7 @@ export default class Client extends OpenApi {
|
|
|
62184
62472
|
*/
|
|
62185
62473
|
describeUpgradeMajorVersionTasks(request: DescribeUpgradeMajorVersionTasksRequest): Promise<DescribeUpgradeMajorVersionTasksResponse>;
|
|
62186
62474
|
/**
|
|
62187
|
-
* Queries the details of
|
|
62475
|
+
* Queries the details of vSwitch that are available in a virtual private cloud (VPC).
|
|
62188
62476
|
*
|
|
62189
62477
|
* @remarks
|
|
62190
62478
|
* ### Supported database engines
|
|
@@ -62199,7 +62487,7 @@ export default class Client extends OpenApi {
|
|
|
62199
62487
|
*/
|
|
62200
62488
|
describeVSwitchesWithOptions(request: DescribeVSwitchesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVSwitchesResponse>;
|
|
62201
62489
|
/**
|
|
62202
|
-
* Queries the details of
|
|
62490
|
+
* Queries the details of vSwitch that are available in a virtual private cloud (VPC).
|
|
62203
62491
|
*
|
|
62204
62492
|
* @remarks
|
|
62205
62493
|
* ### Supported database engines
|
|
@@ -62776,6 +63064,21 @@ export default class Client extends OpenApi {
|
|
|
62776
63064
|
* @returns ModifyADInfoResponse
|
|
62777
63065
|
*/
|
|
62778
63066
|
modifyADInfo(request: ModifyADInfoRequest): Promise<ModifyADInfoResponse>;
|
|
63067
|
+
/**
|
|
63068
|
+
* 修改账号检查策略
|
|
63069
|
+
*
|
|
63070
|
+
* @param request - ModifyAccountCheckPolicyRequest
|
|
63071
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63072
|
+
* @returns ModifyAccountCheckPolicyResponse
|
|
63073
|
+
*/
|
|
63074
|
+
modifyAccountCheckPolicyWithOptions(request: ModifyAccountCheckPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountCheckPolicyResponse>;
|
|
63075
|
+
/**
|
|
63076
|
+
* 修改账号检查策略
|
|
63077
|
+
*
|
|
63078
|
+
* @param request - ModifyAccountCheckPolicyRequest
|
|
63079
|
+
* @returns ModifyAccountCheckPolicyResponse
|
|
63080
|
+
*/
|
|
63081
|
+
modifyAccountCheckPolicy(request: ModifyAccountCheckPolicyRequest): Promise<ModifyAccountCheckPolicyResponse>;
|
|
62779
63082
|
/**
|
|
62780
63083
|
* Modifies the description of a database account.
|
|
62781
63084
|
*
|
|
@@ -62820,6 +63123,21 @@ export default class Client extends OpenApi {
|
|
|
62820
63123
|
* @returns ModifyAccountMaskingPrivilegeResponse
|
|
62821
63124
|
*/
|
|
62822
63125
|
modifyAccountMaskingPrivilege(request: ModifyAccountMaskingPrivilegeRequest): Promise<ModifyAccountMaskingPrivilegeResponse>;
|
|
63126
|
+
/**
|
|
63127
|
+
* 修改密码策略
|
|
63128
|
+
*
|
|
63129
|
+
* @param request - ModifyAccountSecurityPolicyRequest
|
|
63130
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63131
|
+
* @returns ModifyAccountSecurityPolicyResponse
|
|
63132
|
+
*/
|
|
63133
|
+
modifyAccountSecurityPolicyWithOptions(request: ModifyAccountSecurityPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountSecurityPolicyResponse>;
|
|
63134
|
+
/**
|
|
63135
|
+
* 修改密码策略
|
|
63136
|
+
*
|
|
63137
|
+
* @param request - ModifyAccountSecurityPolicyRequest
|
|
63138
|
+
* @returns ModifyAccountSecurityPolicyResponse
|
|
63139
|
+
*/
|
|
63140
|
+
modifyAccountSecurityPolicy(request: ModifyAccountSecurityPolicyRequest): Promise<ModifyAccountSecurityPolicyResponse>;
|
|
62823
63141
|
/**
|
|
62824
63142
|
* Enables or disables the event history feature of an instance.
|
|
62825
63143
|
*
|
|
@@ -63905,7 +64223,7 @@ export default class Client extends OpenApi {
|
|
|
63905
64223
|
*/
|
|
63906
64224
|
modifyDbProxyInstanceSsl(request: ModifyDbProxyInstanceSslRequest): Promise<ModifyDbProxyInstanceSslResponse>;
|
|
63907
64225
|
/**
|
|
63908
|
-
*
|
|
64226
|
+
* Modifies information about the events in the event center.
|
|
63909
64227
|
*
|
|
63910
64228
|
* @param request - ModifyEventInfoRequest
|
|
63911
64229
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -63913,7 +64231,7 @@ export default class Client extends OpenApi {
|
|
|
63913
64231
|
*/
|
|
63914
64232
|
modifyEventInfoWithOptions(request: ModifyEventInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyEventInfoResponse>;
|
|
63915
64233
|
/**
|
|
63916
|
-
*
|
|
64234
|
+
* Modifies information about the events in the event center.
|
|
63917
64235
|
*
|
|
63918
64236
|
* @param request - ModifyEventInfoRequest
|
|
63919
64237
|
* @returns ModifyEventInfoResponse
|
|
@@ -64479,7 +64797,7 @@ export default class Client extends OpenApi {
|
|
|
64479
64797
|
*/
|
|
64480
64798
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
64481
64799
|
/**
|
|
64482
|
-
* Modifies the
|
|
64800
|
+
* Modifies information about the historical tasks in the task center.
|
|
64483
64801
|
*
|
|
64484
64802
|
* @param request - ModifyTaskInfoRequest
|
|
64485
64803
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64487,7 +64805,7 @@ export default class Client extends OpenApi {
|
|
|
64487
64805
|
*/
|
|
64488
64806
|
modifyTaskInfoWithOptions(request: ModifyTaskInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTaskInfoResponse>;
|
|
64489
64807
|
/**
|
|
64490
|
-
* Modifies the
|
|
64808
|
+
* Modifies information about the historical tasks in the task center.
|
|
64491
64809
|
*
|
|
64492
64810
|
* @param request - ModifyTaskInfoRequest
|
|
64493
64811
|
* @returns ModifyTaskInfoResponse
|
|
@@ -65062,12 +65380,12 @@ export default class Client extends OpenApi {
|
|
|
65062
65380
|
* Restores data to an existing instance across regions.
|
|
65063
65381
|
*
|
|
65064
65382
|
* @remarks
|
|
65065
|
-
* > Before restoration, you can call the
|
|
65066
|
-
* ### [](#)Supported database
|
|
65383
|
+
* > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
65384
|
+
* ### [](#)Supported database engines
|
|
65067
65385
|
* MySQL
|
|
65068
65386
|
* ### [](#)References
|
|
65069
|
-
* >
|
|
65070
|
-
* * [
|
|
65387
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
65388
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
65071
65389
|
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
65072
65390
|
*
|
|
65073
65391
|
* @param request - RestoreDdrTableRequest
|
|
@@ -65079,12 +65397,12 @@ export default class Client extends OpenApi {
|
|
|
65079
65397
|
* Restores data to an existing instance across regions.
|
|
65080
65398
|
*
|
|
65081
65399
|
* @remarks
|
|
65082
|
-
* > Before restoration, you can call the
|
|
65083
|
-
* ### [](#)Supported database
|
|
65400
|
+
* > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
65401
|
+
* ### [](#)Supported database engines
|
|
65084
65402
|
* MySQL
|
|
65085
65403
|
* ### [](#)References
|
|
65086
|
-
* >
|
|
65087
|
-
* * [
|
|
65404
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
65405
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
65088
65406
|
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
65089
65407
|
*
|
|
65090
65408
|
* @param request - RestoreDdrTableRequest
|