Skip to content

Add plugin_runs to open-api #232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 11, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,26 @@ paths:
$ref: '#/definitions/function'
default:
$ref: '#/responses/error'
/deploys/{deploy_id}/plugin_runs:
post:
operationId: createPluginRun
tags: [x-internal]
parameters:
- name: deploy_id
type: string
in: path
required: true
- name: plugin_run
in: body
schema:
$ref: '#/definitions/pluginRun'
responses:
'201':
description: CREATED
schema:
$ref: '#/definitions/pluginRun'
default:
$ref: '#/responses/error'
/forms:
get:
operationId: listForms
Expand Down Expand Up @@ -2259,6 +2279,25 @@ definitions:
type: string
error:
type: boolean
pluginRun:
type: object
properties:
deploy_id:
type: string
package:
type: string
version:
type: string
state:
type: string
reporting_event:
type: string
title:
type: string
summary:
type: string
text:
type: string
metadata:
type: object
dnsZoneSetup:
Expand Down