You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// won't exist until launched/provisioned in backend
121
121
state?: WORKFLOW_STATE;
122
+
// won't exist until launched/provisioned in backend
123
+
resourcesCreated?: WorkflowResource[];
122
124
};
123
125
124
126
exportenumUSE_CASE{
@@ -152,6 +154,20 @@ export enum WORKFLOW_STATE {
152
154
COMPLETED='Completed',
153
155
}
154
156
157
+
exporttypeWorkflowResource={
158
+
id: string;
159
+
type: WORKFLOW_RESOURCE_TYPE;
160
+
};
161
+
162
+
// Based off of https://github.com/opensearch-project/flow-framework/blob/main/src/main/java/org/opensearch/flowframework/common/WorkflowResources.java
0 commit comments