Skip to content

Commit 00db0d0

Browse files
Merge pull request #409 from GoogleCloudPlatform/issue408
fix: #408
2 parents ed3cca6 + a1a7275 commit 00db0d0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

internal/client/integrations/integrations.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

152153
type 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

183186
type 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+
212219
type eventparameter struct {
213220
Key string `json:"key,omitempty"`
214221
Value valueType `json:"value,omitempty"`

0 commit comments

Comments
 (0)