@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/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/dist/client.d.ts
CHANGED
|
@@ -763,6 +763,7 @@ export declare class CreateDataServiceApiRequest extends $tea.Model {
|
|
|
763
763
|
projectId?: number;
|
|
764
764
|
protocols?: string;
|
|
765
765
|
registrationDetails?: string;
|
|
766
|
+
requestContentType?: number;
|
|
766
767
|
requestMethod?: number;
|
|
767
768
|
resourceGroupId?: number;
|
|
768
769
|
responseContentType?: number;
|
package/dist/client.js
CHANGED
|
@@ -1092,6 +1092,7 @@ class CreateDataServiceApiRequest extends $tea.Model {
|
|
|
1092
1092
|
projectId: 'ProjectId',
|
|
1093
1093
|
protocols: 'Protocols',
|
|
1094
1094
|
registrationDetails: 'RegistrationDetails',
|
|
1095
|
+
requestContentType: 'RequestContentType',
|
|
1095
1096
|
requestMethod: 'RequestMethod',
|
|
1096
1097
|
resourceGroupId: 'ResourceGroupId',
|
|
1097
1098
|
responseContentType: 'ResponseContentType',
|
|
@@ -1114,6 +1115,7 @@ class CreateDataServiceApiRequest extends $tea.Model {
|
|
|
1114
1115
|
projectId: 'number',
|
|
1115
1116
|
protocols: 'string',
|
|
1116
1117
|
registrationDetails: 'string',
|
|
1118
|
+
requestContentType: 'number',
|
|
1117
1119
|
requestMethod: 'number',
|
|
1118
1120
|
resourceGroupId: 'number',
|
|
1119
1121
|
responseContentType: 'number',
|
|
@@ -26831,6 +26833,9 @@ class Client extends openapi_client_1.default {
|
|
|
26831
26833
|
if (!tea_util_1.default.isUnset(request.registrationDetails)) {
|
|
26832
26834
|
body["RegistrationDetails"] = request.registrationDetails;
|
|
26833
26835
|
}
|
|
26836
|
+
if (!tea_util_1.default.isUnset(request.requestContentType)) {
|
|
26837
|
+
body["RequestContentType"] = request.requestContentType;
|
|
26838
|
+
}
|
|
26834
26839
|
if (!tea_util_1.default.isUnset(request.requestMethod)) {
|
|
26835
26840
|
body["RequestMethod"] = request.requestMethod;
|
|
26836
26841
|
}
|