@alicloud/gpdb20160503 1.2.5 → 1.2.6

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 CHANGED
@@ -202,6 +202,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
202
202
  DBInstanceDescription?: string;
203
203
  DBInstanceGroupCount?: string;
204
204
  DBInstanceMode?: string;
205
+ enableSSL?: boolean;
205
206
  encryptionKey?: string;
206
207
  encryptionType?: string;
207
208
  engine?: string;
package/dist/client.js CHANGED
@@ -299,6 +299,7 @@ class CreateDBInstanceRequest extends $tea.Model {
299
299
  DBInstanceDescription: 'DBInstanceDescription',
300
300
  DBInstanceGroupCount: 'DBInstanceGroupCount',
301
301
  DBInstanceMode: 'DBInstanceMode',
302
+ enableSSL: 'EnableSSL',
302
303
  encryptionKey: 'EncryptionKey',
303
304
  encryptionType: 'EncryptionType',
304
305
  engine: 'Engine',
@@ -341,6 +342,7 @@ class CreateDBInstanceRequest extends $tea.Model {
341
342
  DBInstanceDescription: 'string',
342
343
  DBInstanceGroupCount: 'string',
343
344
  DBInstanceMode: 'string',
345
+ enableSSL: 'boolean',
344
346
  encryptionKey: 'string',
345
347
  encryptionType: 'string',
346
348
  engine: 'string',
@@ -10400,6 +10402,9 @@ class Client extends openapi_client_1.default {
10400
10402
  if (!tea_util_1.default.isUnset(request.DBInstanceMode)) {
10401
10403
  query["DBInstanceMode"] = request.DBInstanceMode;
10402
10404
  }
10405
+ if (!tea_util_1.default.isUnset(request.enableSSL)) {
10406
+ query["EnableSSL"] = request.enableSSL;
10407
+ }
10403
10408
  if (!tea_util_1.default.isUnset(request.encryptionKey)) {
10404
10409
  query["EncryptionKey"] = request.encryptionKey;
10405
10410
  }