@alicloud/dataworks-public20200518 4.3.5 → 4.3.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
@@ -862,6 +862,8 @@ export declare class CreateFileRequest extends $tea.Model {
862
862
  fileName?: string;
863
863
  fileType?: number;
864
864
  inputList?: string;
865
+ inputParameters?: string;
866
+ outputParameters?: string;
865
867
  owner?: string;
866
868
  paraValue?: string;
867
869
  projectId?: number;
@@ -9416,7 +9418,9 @@ export declare class UpdateFileRequest extends $tea.Model {
9416
9418
  fileId?: number;
9417
9419
  fileName?: string;
9418
9420
  inputList?: string;
9421
+ inputParameters?: string;
9419
9422
  outputList?: string;
9423
+ outputParameters?: string;
9420
9424
  owner?: string;
9421
9425
  paraValue?: string;
9422
9426
  projectId?: number;
@@ -11409,6 +11413,19 @@ export declare class GetFileResponseBodyDataNodeConfigurationInputList extends $
11409
11413
  [key: string]: any;
11410
11414
  });
11411
11415
  }
11416
+ export declare class GetFileResponseBodyDataNodeConfigurationInputParameters extends $tea.Model {
11417
+ parameterName?: string;
11418
+ valueSource?: string;
11419
+ static names(): {
11420
+ [key: string]: string;
11421
+ };
11422
+ static types(): {
11423
+ [key: string]: any;
11424
+ };
11425
+ constructor(map?: {
11426
+ [key: string]: any;
11427
+ });
11428
+ }
11412
11429
  export declare class GetFileResponseBodyDataNodeConfigurationOutputList extends $tea.Model {
11413
11430
  output?: string;
11414
11431
  refTableName?: string;
@@ -11422,6 +11439,21 @@ export declare class GetFileResponseBodyDataNodeConfigurationOutputList extends
11422
11439
  [key: string]: any;
11423
11440
  });
11424
11441
  }
11442
+ export declare class GetFileResponseBodyDataNodeConfigurationOutputParameters extends $tea.Model {
11443
+ description?: string;
11444
+ parameterName?: string;
11445
+ type?: string;
11446
+ value?: string;
11447
+ static names(): {
11448
+ [key: string]: string;
11449
+ };
11450
+ static types(): {
11451
+ [key: string]: any;
11452
+ };
11453
+ constructor(map?: {
11454
+ [key: string]: any;
11455
+ });
11456
+ }
11425
11457
  export declare class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
11426
11458
  autoRerunIntervalMillis?: number;
11427
11459
  autoRerunTimes?: number;
@@ -11431,7 +11463,9 @@ export declare class GetFileResponseBodyDataNodeConfiguration extends $tea.Model
11431
11463
  dependentType?: string;
11432
11464
  endEffectDate?: number;
11433
11465
  inputList?: GetFileResponseBodyDataNodeConfigurationInputList[];
11466
+ inputParameters?: GetFileResponseBodyDataNodeConfigurationInputParameters[];
11434
11467
  outputList?: GetFileResponseBodyDataNodeConfigurationOutputList[];
11468
+ outputParameters?: GetFileResponseBodyDataNodeConfigurationOutputParameters[];
11435
11469
  paraValue?: string;
11436
11470
  rerunMode?: string;
11437
11471
  resourceGroupId?: number;
package/dist/client.js CHANGED
@@ -1220,6 +1220,8 @@ class CreateFileRequest extends $tea.Model {
1220
1220
  fileName: 'FileName',
1221
1221
  fileType: 'FileType',
1222
1222
  inputList: 'InputList',
1223
+ inputParameters: 'InputParameters',
1224
+ outputParameters: 'OutputParameters',
1223
1225
  owner: 'Owner',
1224
1226
  paraValue: 'ParaValue',
1225
1227
  projectId: 'ProjectId',
@@ -1251,6 +1253,8 @@ class CreateFileRequest extends $tea.Model {
1251
1253
  fileName: 'string',
1252
1254
  fileType: 'number',
1253
1255
  inputList: 'string',
1256
+ inputParameters: 'string',
1257
+ outputParameters: 'string',
1254
1258
  owner: 'string',
1255
1259
  paraValue: 'string',
1256
1260
  projectId: 'number',
@@ -13096,7 +13100,9 @@ class UpdateFileRequest extends $tea.Model {
13096
13100
  fileId: 'FileId',
13097
13101
  fileName: 'FileName',
13098
13102
  inputList: 'InputList',
13103
+ inputParameters: 'InputParameters',
13099
13104
  outputList: 'OutputList',
13105
+ outputParameters: 'OutputParameters',
13100
13106
  owner: 'Owner',
13101
13107
  paraValue: 'ParaValue',
13102
13108
  projectId: 'ProjectId',
@@ -13127,7 +13133,9 @@ class UpdateFileRequest extends $tea.Model {
13127
13133
  fileId: 'number',
13128
13134
  fileName: 'string',
13129
13135
  inputList: 'string',
13136
+ inputParameters: 'string',
13130
13137
  outputList: 'string',
13138
+ outputParameters: 'string',
13131
13139
  owner: 'string',
13132
13140
  paraValue: 'string',
13133
13141
  projectId: 'number',
@@ -16078,6 +16086,24 @@ class GetFileResponseBodyDataNodeConfigurationInputList extends $tea.Model {
16078
16086
  }
16079
16087
  }
16080
16088
  exports.GetFileResponseBodyDataNodeConfigurationInputList = GetFileResponseBodyDataNodeConfigurationInputList;
16089
+ class GetFileResponseBodyDataNodeConfigurationInputParameters extends $tea.Model {
16090
+ constructor(map) {
16091
+ super(map);
16092
+ }
16093
+ static names() {
16094
+ return {
16095
+ parameterName: 'ParameterName',
16096
+ valueSource: 'ValueSource',
16097
+ };
16098
+ }
16099
+ static types() {
16100
+ return {
16101
+ parameterName: 'string',
16102
+ valueSource: 'string',
16103
+ };
16104
+ }
16105
+ }
16106
+ exports.GetFileResponseBodyDataNodeConfigurationInputParameters = GetFileResponseBodyDataNodeConfigurationInputParameters;
16081
16107
  class GetFileResponseBodyDataNodeConfigurationOutputList extends $tea.Model {
16082
16108
  constructor(map) {
16083
16109
  super(map);
@@ -16096,6 +16122,28 @@ class GetFileResponseBodyDataNodeConfigurationOutputList extends $tea.Model {
16096
16122
  }
16097
16123
  }
16098
16124
  exports.GetFileResponseBodyDataNodeConfigurationOutputList = GetFileResponseBodyDataNodeConfigurationOutputList;
16125
+ class GetFileResponseBodyDataNodeConfigurationOutputParameters extends $tea.Model {
16126
+ constructor(map) {
16127
+ super(map);
16128
+ }
16129
+ static names() {
16130
+ return {
16131
+ description: 'Description',
16132
+ parameterName: 'ParameterName',
16133
+ type: 'Type',
16134
+ value: 'Value',
16135
+ };
16136
+ }
16137
+ static types() {
16138
+ return {
16139
+ description: 'string',
16140
+ parameterName: 'string',
16141
+ type: 'string',
16142
+ value: 'string',
16143
+ };
16144
+ }
16145
+ }
16146
+ exports.GetFileResponseBodyDataNodeConfigurationOutputParameters = GetFileResponseBodyDataNodeConfigurationOutputParameters;
16099
16147
  class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
16100
16148
  constructor(map) {
16101
16149
  super(map);
@@ -16110,7 +16158,9 @@ class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
16110
16158
  dependentType: 'DependentType',
16111
16159
  endEffectDate: 'EndEffectDate',
16112
16160
  inputList: 'InputList',
16161
+ inputParameters: 'InputParameters',
16113
16162
  outputList: 'OutputList',
16163
+ outputParameters: 'OutputParameters',
16114
16164
  paraValue: 'ParaValue',
16115
16165
  rerunMode: 'RerunMode',
16116
16166
  resourceGroupId: 'ResourceGroupId',
@@ -16130,7 +16180,9 @@ class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
16130
16180
  dependentType: 'string',
16131
16181
  endEffectDate: 'number',
16132
16182
  inputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputList },
16183
+ inputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputParameters },
16133
16184
  outputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputList },
16185
+ outputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputParameters },
16134
16186
  paraValue: 'string',
16135
16187
  rerunMode: 'string',
16136
16188
  resourceGroupId: 'number',
@@ -23106,6 +23158,12 @@ class Client extends openapi_client_1.default {
23106
23158
  if (!tea_util_1.default.isUnset(request.inputList)) {
23107
23159
  body["InputList"] = request.inputList;
23108
23160
  }
23161
+ if (!tea_util_1.default.isUnset(request.inputParameters)) {
23162
+ body["InputParameters"] = request.inputParameters;
23163
+ }
23164
+ if (!tea_util_1.default.isUnset(request.outputParameters)) {
23165
+ body["OutputParameters"] = request.outputParameters;
23166
+ }
23109
23167
  if (!tea_util_1.default.isUnset(request.owner)) {
23110
23168
  body["Owner"] = request.owner;
23111
23169
  }
@@ -29662,9 +29720,15 @@ class Client extends openapi_client_1.default {
29662
29720
  if (!tea_util_1.default.isUnset(request.inputList)) {
29663
29721
  body["InputList"] = request.inputList;
29664
29722
  }
29723
+ if (!tea_util_1.default.isUnset(request.inputParameters)) {
29724
+ body["InputParameters"] = request.inputParameters;
29725
+ }
29665
29726
  if (!tea_util_1.default.isUnset(request.outputList)) {
29666
29727
  body["OutputList"] = request.outputList;
29667
29728
  }
29729
+ if (!tea_util_1.default.isUnset(request.outputParameters)) {
29730
+ body["OutputParameters"] = request.outputParameters;
29731
+ }
29668
29732
  if (!tea_util_1.default.isUnset(request.owner)) {
29669
29733
  body["Owner"] = request.owner;
29670
29734
  }