@alicloud/polardb20170801 5.1.1 → 5.1.2

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/polardb20170801",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -5235,6 +5235,7 @@ export class DescribeDBClusterVersionResponseBody extends $tea.Model {
5235
5235
  isProxyLatestVersion?: string;
5236
5236
  proxyLatestVersion?: string;
5237
5237
  proxyRevisionVersion?: string;
5238
+ proxyRevisionVersionList?: DescribeDBClusterVersionResponseBodyProxyRevisionVersionList[];
5238
5239
  proxyVersionStatus?: string;
5239
5240
  requestId?: string;
5240
5241
  static names(): { [key: string]: string } {
@@ -5250,6 +5251,7 @@ export class DescribeDBClusterVersionResponseBody extends $tea.Model {
5250
5251
  isProxyLatestVersion: 'IsProxyLatestVersion',
5251
5252
  proxyLatestVersion: 'ProxyLatestVersion',
5252
5253
  proxyRevisionVersion: 'ProxyRevisionVersion',
5254
+ proxyRevisionVersionList: 'ProxyRevisionVersionList',
5253
5255
  proxyVersionStatus: 'ProxyVersionStatus',
5254
5256
  requestId: 'RequestId',
5255
5257
  };
@@ -5268,6 +5270,7 @@ export class DescribeDBClusterVersionResponseBody extends $tea.Model {
5268
5270
  isProxyLatestVersion: 'string',
5269
5271
  proxyLatestVersion: 'string',
5270
5272
  proxyRevisionVersion: 'string',
5273
+ proxyRevisionVersionList: { 'type': 'array', 'itemType': DescribeDBClusterVersionResponseBodyProxyRevisionVersionList },
5271
5274
  proxyVersionStatus: 'string',
5272
5275
  requestId: 'string',
5273
5276
  };
@@ -13221,6 +13224,7 @@ export class UpgradeDBClusterVersionRequest extends $tea.Model {
13221
13224
  resourceOwnerAccount?: string;
13222
13225
  resourceOwnerId?: number;
13223
13226
  targetDBRevisionVersionCode?: string;
13227
+ targetProxyRevisionVersionCode?: string;
13224
13228
  upgradeLabel?: string;
13225
13229
  upgradePolicy?: string;
13226
13230
  upgradeType?: string;
@@ -13235,6 +13239,7 @@ export class UpgradeDBClusterVersionRequest extends $tea.Model {
13235
13239
  resourceOwnerAccount: 'ResourceOwnerAccount',
13236
13240
  resourceOwnerId: 'ResourceOwnerId',
13237
13241
  targetDBRevisionVersionCode: 'TargetDBRevisionVersionCode',
13242
+ targetProxyRevisionVersionCode: 'TargetProxyRevisionVersionCode',
13238
13243
  upgradeLabel: 'UpgradeLabel',
13239
13244
  upgradePolicy: 'UpgradePolicy',
13240
13245
  upgradeType: 'UpgradeType',
@@ -13252,6 +13257,7 @@ export class UpgradeDBClusterVersionRequest extends $tea.Model {
13252
13257
  resourceOwnerAccount: 'string',
13253
13258
  resourceOwnerId: 'number',
13254
13259
  targetDBRevisionVersionCode: 'string',
13260
+ targetProxyRevisionVersionCode: 'string',
13255
13261
  upgradeLabel: 'string',
13256
13262
  upgradePolicy: 'string',
13257
13263
  upgradeType: 'string',
@@ -14589,6 +14595,34 @@ export class DescribeDBClusterVersionResponseBodyDBRevisionVersionList extends $
14589
14595
  }
14590
14596
  }
14591
14597
 
14598
+ export class DescribeDBClusterVersionResponseBodyProxyRevisionVersionList extends $tea.Model {
14599
+ releaseNote?: string;
14600
+ releaseType?: string;
14601
+ revisionVersionCode?: string;
14602
+ revisionVersionName?: string;
14603
+ static names(): { [key: string]: string } {
14604
+ return {
14605
+ releaseNote: 'ReleaseNote',
14606
+ releaseType: 'ReleaseType',
14607
+ revisionVersionCode: 'RevisionVersionCode',
14608
+ revisionVersionName: 'RevisionVersionName',
14609
+ };
14610
+ }
14611
+
14612
+ static types(): { [key: string]: any } {
14613
+ return {
14614
+ releaseNote: 'string',
14615
+ releaseType: 'string',
14616
+ revisionVersionCode: 'string',
14617
+ revisionVersionName: 'string',
14618
+ };
14619
+ }
14620
+
14621
+ constructor(map?: { [key: string]: any }) {
14622
+ super(map);
14623
+ }
14624
+ }
14625
+
14592
14626
  export class DescribeDBClustersRequestTag extends $tea.Model {
14593
14627
  key?: string;
14594
14628
  value?: string;
@@ -27260,6 +27294,10 @@ export default class Client extends OpenApi {
27260
27294
  query["TargetDBRevisionVersionCode"] = request.targetDBRevisionVersionCode;
27261
27295
  }
27262
27296
 
27297
+ if (!Util.isUnset(request.targetProxyRevisionVersionCode)) {
27298
+ query["TargetProxyRevisionVersionCode"] = request.targetProxyRevisionVersionCode;
27299
+ }
27300
+
27263
27301
  if (!Util.isUnset(request.upgradeLabel)) {
27264
27302
  query["UpgradeLabel"] = request.upgradeLabel;
27265
27303
  }