You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
## Run Information [/processors/{id}/runs/{runID}]
Provides information about all the Runs on a given processor.
+ Parameters
+ id (string) - The processor ID
+ runID (string) - The run ID
### Retrieve One Run [GET]+Response200(application/json)+ Attributes (Run)
### Configure [POST /processors/{id}/runs/{runID}/configure]+Response200(application/json)+ Attributes (Run)
I want the Parameters from my "Run Information" ResourceGroup to cascade down to my Configure action, but instead, I get this:
So I need to add the + Parameters section to the Action itself, causing duplication.
Additionally, if we were able to use relative URIs (#451), then I wouldn't even have to write /processors/{id}/runs/{runID}/configure, I'd just write ./configure. Once this Parameters cascade issue is fixed, then it'd be super easy to add new actions without duplicating anything.
The text was updated successfully, but these errors were encountered:
I have the following API Blueprint:
I want the
Parameters
from my "Run Information"ResourceGroup
to cascade down to my Configure action, but instead, I get this:So I need to add the
+ Parameters
section to the Action itself, causing duplication.Additionally, if we were able to use relative URIs (#451), then I wouldn't even have to write
/processors/{id}/runs/{runID}/configure
, I'd just write./configure
. Once this Parameters cascade issue is fixed, then it'd be super easy to add new actions without duplicating anything.The text was updated successfully, but these errors were encountered: