@alicloud/rds20140815 2.7.4 → 2.7.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 +6 -4
- package/dist/client.js +11 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -4
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -21618,6 +21618,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21618
21618
|
DBInstanceStorageType?: string;
|
|
21619
21619
|
DBNode?: ModifyDBNodeRequestDBNode[];
|
|
21620
21620
|
dryRun?: boolean;
|
|
21621
|
+
effectiveTime?: string;
|
|
21621
21622
|
ownerAccount?: string;
|
|
21622
21623
|
ownerId?: number;
|
|
21623
21624
|
produceAsync?: boolean;
|
|
@@ -21632,6 +21633,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21632
21633
|
DBInstanceStorageType: 'DBInstanceStorageType',
|
|
21633
21634
|
DBNode: 'DBNode',
|
|
21634
21635
|
dryRun: 'DryRun',
|
|
21636
|
+
effectiveTime: 'EffectiveTime',
|
|
21635
21637
|
ownerAccount: 'OwnerAccount',
|
|
21636
21638
|
ownerId: 'OwnerId',
|
|
21637
21639
|
produceAsync: 'ProduceAsync',
|
|
@@ -21649,6 +21651,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21649
21651
|
DBInstanceStorageType: 'string',
|
|
21650
21652
|
DBNode: { 'type': 'array', 'itemType': ModifyDBNodeRequestDBNode },
|
|
21651
21653
|
dryRun: 'boolean',
|
|
21654
|
+
effectiveTime: 'string',
|
|
21652
21655
|
ownerAccount: 'string',
|
|
21653
21656
|
ownerId: 'number',
|
|
21654
21657
|
produceAsync: 'boolean',
|
|
@@ -21670,6 +21673,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21670
21673
|
DBInstanceStorageType?: string;
|
|
21671
21674
|
DBNodeShrink?: string;
|
|
21672
21675
|
dryRun?: boolean;
|
|
21676
|
+
effectiveTime?: string;
|
|
21673
21677
|
ownerAccount?: string;
|
|
21674
21678
|
ownerId?: number;
|
|
21675
21679
|
produceAsync?: boolean;
|
|
@@ -21684,6 +21688,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21684
21688
|
DBInstanceStorageType: 'DBInstanceStorageType',
|
|
21685
21689
|
DBNodeShrink: 'DBNode',
|
|
21686
21690
|
dryRun: 'DryRun',
|
|
21691
|
+
effectiveTime: 'EffectiveTime',
|
|
21687
21692
|
ownerAccount: 'OwnerAccount',
|
|
21688
21693
|
ownerId: 'OwnerId',
|
|
21689
21694
|
produceAsync: 'ProduceAsync',
|
|
@@ -21701,6 +21706,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21701
21706
|
DBInstanceStorageType: 'string',
|
|
21702
21707
|
DBNodeShrink: 'string',
|
|
21703
21708
|
dryRun: 'boolean',
|
|
21709
|
+
effectiveTime: 'string',
|
|
21704
21710
|
ownerAccount: 'string',
|
|
21705
21711
|
ownerId: 'number',
|
|
21706
21712
|
produceAsync: 'boolean',
|
|
@@ -47167,8 +47173,8 @@ export default class Client extends OpenApi {
|
|
|
47167
47173
|
|
|
47168
47174
|
/**
|
|
47169
47175
|
* ### [](#)Supported database engines
|
|
47170
|
-
*
|
|
47171
|
-
* > You can call the
|
|
47176
|
+
* SQL Server
|
|
47177
|
+
* > You can call the DescribeBinlogFiles operation to query the log files of instances that run different database engines.
|
|
47172
47178
|
*
|
|
47173
47179
|
* @param request DescribeLogBackupFilesRequest
|
|
47174
47180
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -47232,8 +47238,8 @@ export default class Client extends OpenApi {
|
|
|
47232
47238
|
|
|
47233
47239
|
/**
|
|
47234
47240
|
* ### [](#)Supported database engines
|
|
47235
|
-
*
|
|
47236
|
-
* > You can call the
|
|
47241
|
+
* SQL Server
|
|
47242
|
+
* > You can call the DescribeBinlogFiles operation to query the log files of instances that run different database engines.
|
|
47237
47243
|
*
|
|
47238
47244
|
* @param request DescribeLogBackupFilesRequest
|
|
47239
47245
|
* @return DescribeLogBackupFilesResponse
|
|
@@ -53959,6 +53965,10 @@ export default class Client extends OpenApi {
|
|
|
53959
53965
|
query["DryRun"] = request.dryRun;
|
|
53960
53966
|
}
|
|
53961
53967
|
|
|
53968
|
+
if (!Util.isUnset(request.effectiveTime)) {
|
|
53969
|
+
query["EffectiveTime"] = request.effectiveTime;
|
|
53970
|
+
}
|
|
53971
|
+
|
|
53962
53972
|
if (!Util.isUnset(request.ownerAccount)) {
|
|
53963
53973
|
query["OwnerAccount"] = request.ownerAccount;
|
|
53964
53974
|
}
|