File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 9052
9052
},
9053
9053
"internal": {
9054
9054
"$ref": "#/definitions/CallbackInternal"
9055
+ },
9056
+ "links": {
9057
+ "type": "array",
9058
+ "items": {
9059
+ "type": "object",
9060
+ "$ref": "#/definitions/apicommonv1Link"
9061
+ },
9062
+ "description": "Links associated with the callback. It can be used to link to underlying resources of the\ncallback."
9055
9063
}
9056
9064
},
9057
9065
"description": "Callback to attach to various events in the system, e.g. workflow run completion."
Original file line number Diff line number Diff line change @@ -6596,6 +6596,13 @@ components:
6596
6596
$ref: '#/components/schemas/Callback_Nexus'
6597
6597
internal:
6598
6598
$ref: '#/components/schemas/Callback_Internal'
6599
+ links:
6600
+ type: array
6601
+ items:
6602
+ $ref: '#/components/schemas/Link'
6603
+ description: |-
6604
+ Links associated with the callback. It can be used to link to underlying resources of the
6605
+ callback.
6599
6606
description: Callback to attach to various events in the system, e.g. workflow run completion.
6600
6607
CallbackInfo:
6601
6608
type: object
Original file line number Diff line number Diff line change @@ -211,6 +211,10 @@ message Callback {
211
211
Nexus nexus = 2 ;
212
212
Internal internal = 3 ;
213
213
}
214
+
215
+ // Links associated with the callback. It can be used to link to underlying resources of the
216
+ // callback.
217
+ repeated Link links = 100 ;
214
218
}
215
219
216
220
// Link can be associated with history events. It might contain information about an external entity
You can’t perform that action at this time.
0 commit comments