@alicloud/rds20140815 2.4.2 → 2.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/rds20140815",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -20014,6 +20014,7 @@ export class ModifyDBInstanceSpecRequest extends $tea.Model {
20014
20014
  serverlessConfiguration?: ModifyDBInstanceSpecRequestServerlessConfiguration;
20015
20015
  sourceBiz?: string;
20016
20016
  switchTime?: string;
20017
+ targetMinorVersion?: string;
20017
20018
  usedTime?: number;
20018
20019
  zoneId?: string;
20019
20020
  static names(): { [key: string]: string } {
@@ -20038,6 +20039,7 @@ export class ModifyDBInstanceSpecRequest extends $tea.Model {
20038
20039
  serverlessConfiguration: 'ServerlessConfiguration',
20039
20040
  sourceBiz: 'SourceBiz',
20040
20041
  switchTime: 'SwitchTime',
20042
+ targetMinorVersion: 'TargetMinorVersion',
20041
20043
  usedTime: 'UsedTime',
20042
20044
  zoneId: 'ZoneId',
20043
20045
  };
@@ -20065,6 +20067,7 @@ export class ModifyDBInstanceSpecRequest extends $tea.Model {
20065
20067
  serverlessConfiguration: ModifyDBInstanceSpecRequestServerlessConfiguration,
20066
20068
  sourceBiz: 'string',
20067
20069
  switchTime: 'string',
20070
+ targetMinorVersion: 'string',
20068
20071
  usedTime: 'number',
20069
20072
  zoneId: 'string',
20070
20073
  };
@@ -20096,6 +20099,7 @@ export class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
20096
20099
  serverlessConfigurationShrink?: string;
20097
20100
  sourceBiz?: string;
20098
20101
  switchTime?: string;
20102
+ targetMinorVersion?: string;
20099
20103
  usedTime?: number;
20100
20104
  zoneId?: string;
20101
20105
  static names(): { [key: string]: string } {
@@ -20120,6 +20124,7 @@ export class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
20120
20124
  serverlessConfigurationShrink: 'ServerlessConfiguration',
20121
20125
  sourceBiz: 'SourceBiz',
20122
20126
  switchTime: 'SwitchTime',
20127
+ targetMinorVersion: 'TargetMinorVersion',
20123
20128
  usedTime: 'UsedTime',
20124
20129
  zoneId: 'ZoneId',
20125
20130
  };
@@ -20147,6 +20152,7 @@ export class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
20147
20152
  serverlessConfigurationShrink: 'string',
20148
20153
  sourceBiz: 'string',
20149
20154
  switchTime: 'string',
20155
+ targetMinorVersion: 'string',
20150
20156
  usedTime: 'number',
20151
20157
  zoneId: 'string',
20152
20158
  };
@@ -48895,6 +48901,10 @@ export default class Client extends OpenApi {
48895
48901
  query["SwitchTime"] = request.switchTime;
48896
48902
  }
48897
48903
 
48904
+ if (!Util.isUnset(request.targetMinorVersion)) {
48905
+ query["TargetMinorVersion"] = request.targetMinorVersion;
48906
+ }
48907
+
48898
48908
  if (!Util.isUnset(request.usedTime)) {
48899
48909
  query["UsedTime"] = request.usedTime;
48900
48910
  }