Skip to content

Commit 0069159

Browse files
committed
Update API GetWorkflowInstance: add response parameters Body.WorkflowInstance.WorkflowParameters.
1 parent a7e0fd7 commit 0069159

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

dataworks-public-20240518/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/dataworks-public20240518",
3-
"version": "7.2.2",
3+
"version": "7.2.3",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

dataworks-public-20240518/src/models/GetWorkflowInstanceResponseBodyWorkflowInstance.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ export class GetWorkflowInstanceResponseBodyWorkflowInstance extends $dara.Model
133133
* 1234
134134
*/
135135
workflowId?: number;
136+
workflowParameters?: string;
136137
static names(): { [key: string]: string } {
137138
return {
138139
bizDate: 'BizDate',
@@ -149,6 +150,7 @@ export class GetWorkflowInstanceResponseBodyWorkflowInstance extends $dara.Model
149150
status: 'Status',
150151
type: 'Type',
151152
workflowId: 'WorkflowId',
153+
workflowParameters: 'WorkflowParameters',
152154
};
153155
}
154156

@@ -168,6 +170,7 @@ export class GetWorkflowInstanceResponseBodyWorkflowInstance extends $dara.Model
168170
status: 'string',
169171
type: 'string',
170172
workflowId: 'number',
173+
workflowParameters: 'string',
171174
};
172175
}
173176

dataworks-public-20240518/src/models/ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances extend
121121
* 1234
122122
*/
123123
workflowId?: number;
124+
workflowParameters?: string;
124125
static names(): { [key: string]: string } {
125126
return {
126127
bizDate: 'BizDate',
@@ -137,6 +138,7 @@ export class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances extend
137138
status: 'Status',
138139
type: 'Type',
139140
workflowId: 'WorkflowId',
141+
workflowParameters: 'WorkflowParameters',
140142
};
141143
}
142144

@@ -156,6 +158,7 @@ export class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances extend
156158
status: 'string',
157159
type: 'string',
158160
workflowId: 'number',
161+
workflowParameters: 'string',
159162
};
160163
}
161164

0 commit comments

Comments
 (0)