@@ -50208,7 +50208,16 @@ definitions:
50208
50208
example: '2017-05-19T13:40:17.727Z'
50209
50209
owner:
50210
50210
"$ref": "#/definitions/API_Entities_UserBasic"
50211
+ inputs:
50212
+ "$ref": "#/definitions/API_Entities_Ci_Input"
50211
50213
description: API_Entities_Ci_PipelineSchedule model
50214
+ API_Entities_Ci_Input:
50215
+ type: object
50216
+ properties:
50217
+ name:
50218
+ type: string
50219
+ value:
50220
+ type: string
50212
50221
API_Entities_Ci_PipelineScheduleDetails:
50213
50222
type: object
50214
50223
properties:
@@ -50245,6 +50254,8 @@ definitions:
50245
50254
example: '2017-05-19T13:40:17.727Z'
50246
50255
owner:
50247
50256
"$ref": "#/definitions/API_Entities_UserBasic"
50257
+ inputs:
50258
+ "$ref": "#/definitions/API_Entities_Ci_Input"
50248
50259
last_pipeline:
50249
50260
"$ref": "#/definitions/API_Entities_Ci_PipelineBasic"
50250
50261
variables:
@@ -50275,6 +50286,30 @@ definitions:
50275
50286
description: The activation of pipeline schedule
50276
50287
default: true
50277
50288
example: true
50289
+ inputs:
50290
+ type: array
50291
+ description: Inputs for the pipeline schedule
50292
+ example:
50293
+ - name: array_input
50294
+ value:
50295
+ - 1
50296
+ - 2
50297
+ - name: boolean_input
50298
+ value: true
50299
+ items:
50300
+ type: object
50301
+ properties:
50302
+ name:
50303
+ type: string
50304
+ description: The name of the input
50305
+ example: deploy_strategy
50306
+ value:
50307
+ type: string
50308
+ description: The value of the input
50309
+ example: blue-green
50310
+ required:
50311
+ - name
50312
+ - value
50278
50313
required:
50279
50314
- description
50280
50315
- ref
@@ -50303,6 +50338,30 @@ definitions:
50303
50338
type: boolean
50304
50339
description: The activation of pipeline schedule
50305
50340
example: true
50341
+ inputs:
50342
+ type: array
50343
+ description: Inputs for the pipeline schedule
50344
+ example:
50345
+ - name: deploy_strategy
50346
+ value: blue-green
50347
+ items:
50348
+ type: object
50349
+ properties:
50350
+ name:
50351
+ type: string
50352
+ description: The name of the input
50353
+ example: deploy_strategy
50354
+ destroy:
50355
+ type: boolean
50356
+ description: Whether to delete the input
50357
+ default: false
50358
+ value:
50359
+ type: string
50360
+ description: The value of the input
50361
+ example: blue-green
50362
+ required:
50363
+ - name
50364
+ - value
50306
50365
description: Edit a pipeline schedule
50307
50366
postApiV4ProjectsIdPipelineSchedulesPipelineScheduleIdVariables:
50308
50367
type: object
0 commit comments