@alicloud/dataworks-public20200518 4.4.6 → 4.4.7

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/dataworks-public20200518",
3
- "version": "4.4.6",
3
+ "version": "4.4.7",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -1369,6 +1369,7 @@ export class CreateDataServiceApiRequest extends $tea.Model {
1369
1369
  projectId?: number;
1370
1370
  protocols?: string;
1371
1371
  registrationDetails?: string;
1372
+ requestContentType?: number;
1372
1373
  requestMethod?: number;
1373
1374
  resourceGroupId?: number;
1374
1375
  responseContentType?: number;
@@ -1389,6 +1390,7 @@ export class CreateDataServiceApiRequest extends $tea.Model {
1389
1390
  projectId: 'ProjectId',
1390
1391
  protocols: 'Protocols',
1391
1392
  registrationDetails: 'RegistrationDetails',
1393
+ requestContentType: 'RequestContentType',
1392
1394
  requestMethod: 'RequestMethod',
1393
1395
  resourceGroupId: 'ResourceGroupId',
1394
1396
  responseContentType: 'ResponseContentType',
@@ -1412,6 +1414,7 @@ export class CreateDataServiceApiRequest extends $tea.Model {
1412
1414
  projectId: 'number',
1413
1415
  protocols: 'string',
1414
1416
  registrationDetails: 'string',
1417
+ requestContentType: 'number',
1415
1418
  requestMethod: 'number',
1416
1419
  resourceGroupId: 'number',
1417
1420
  responseContentType: 'number',
@@ -34485,6 +34488,10 @@ export default class Client extends OpenApi {
34485
34488
  body["RegistrationDetails"] = request.registrationDetails;
34486
34489
  }
34487
34490
 
34491
+ if (!Util.isUnset(request.requestContentType)) {
34492
+ body["RequestContentType"] = request.requestContentType;
34493
+ }
34494
+
34488
34495
  if (!Util.isUnset(request.requestMethod)) {
34489
34496
  body["RequestMethod"] = request.requestMethod;
34490
34497
  }