@@ -147,6 +147,7 @@ type parameterExternal struct {
147147 JsonSchema string `json:"jsonSchema,omitempty"`
148148 Masked bool `json:"masked,omitempty"`
149149 ContainsLargeData bool `json:"containsLargeData,omitempty"`
150+ Description string `json:"description,omitempty"`
150151}
151152
152153type parameterConfig struct {
@@ -178,6 +179,8 @@ type triggerconfig struct {
178179 Properties map [string ]string `json:"properties,omitempty"`
179180 CloudSchedulerConfig * cloudSchedulerConfig `json:"cloudSchedulerConfig,omitempty"`
180181 ErrorCatcherId string `json:"errorCatcherId,omitempty"`
182+ InputVariables inputOutputVariableNames `json:"inputVariables,omitempty"`
183+ OutputVariables inputOutputVariableNames `json:"outputVariables,omitempty"`
181184}
182185
183186type taskconfig struct {
@@ -209,6 +212,10 @@ type tasks struct {
209212 TaskId string `json:"taskId,omitempty"`
210213}
211214
215+ type inputOutputVariableNames struct {
216+ Names []string `json:"names,omitempty"`
217+ }
218+
212219type eventparameter struct {
213220 Key string `json:"key,omitempty"`
214221 Value valueType `json:"value,omitempty"`
0 commit comments