@alicloud/polardb20170801 4.0.0 → 4.0.1
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -870,6 +870,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
870
870
|
parameterGroupId?: string;
|
|
871
871
|
payType?: string;
|
|
872
872
|
period?: string;
|
|
873
|
+
provisionedIops?: number;
|
|
873
874
|
proxyClass?: string;
|
|
874
875
|
proxyType?: string;
|
|
875
876
|
regionId?: string;
|
|
@@ -925,6 +926,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
925
926
|
parameterGroupId: 'ParameterGroupId',
|
|
926
927
|
payType: 'PayType',
|
|
927
928
|
period: 'Period',
|
|
929
|
+
provisionedIops: 'ProvisionedIops',
|
|
928
930
|
proxyClass: 'ProxyClass',
|
|
929
931
|
proxyType: 'ProxyType',
|
|
930
932
|
regionId: 'RegionId',
|
|
@@ -983,6 +985,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
983
985
|
parameterGroupId: 'string',
|
|
984
986
|
payType: 'string',
|
|
985
987
|
period: 'string',
|
|
988
|
+
provisionedIops: 'number',
|
|
986
989
|
proxyClass: 'string',
|
|
987
990
|
proxyType: 'string',
|
|
988
991
|
regionId: 'string',
|
|
@@ -17181,6 +17184,10 @@ export default class Client extends OpenApi {
|
|
|
17181
17184
|
query["Period"] = request.period;
|
|
17182
17185
|
}
|
|
17183
17186
|
|
|
17187
|
+
if (!Util.isUnset(request.provisionedIops)) {
|
|
17188
|
+
query["ProvisionedIops"] = request.provisionedIops;
|
|
17189
|
+
}
|
|
17190
|
+
|
|
17184
17191
|
if (!Util.isUnset(request.proxyClass)) {
|
|
17185
17192
|
query["ProxyClass"] = request.proxyClass;
|
|
17186
17193
|
}
|