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
Copy file name to clipboardExpand all lines: hull-vidispine-addon/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Describes a subresource on an endpoint which is communicated with. <br>Has exclu
98
98
| `entities` | Dictionary of entities on the subresource to create, modify or delete.<br><br>Key: <br>Key for entry in dictionary `entities`<br><br>Value: <br>The entity definition in form of a `<entitySpec>`
99
99
100
100
### EntitySpec
101
-
Describes a particular entity on a subresource on an endpoint which is communicated with. <br>Has exclusively the following sub-fields: <br><br>`register`<br>`remove`<br>`identifier`<br>`putUriExcludeIdentifier`<br>`putInsteadOfPost`<br>`postQueryParams`<br>`overwriteExisting`<br>`getUriExcludeIdentifier`<br>`getCustomScript`<br>`noGet`<br>`contentType`<br>`config`<br>`extraHeaders`
101
+
Describes a particular entity on a subresource on an endpoint which is communicated with. <br>Has exclusively the following sub-fields: <br><br>`extraHeaders`<br>`identifier`<br>`getQueryParams`<br>`getUriExcludeIdentifier`<br>`getCustomScript`<br>`noGet`<br>`customGetScriptJsonResponseConfigReplacements`<br>`readConfigFromFile`<br>`readConfigValuesFromFiles`<br>`updateConfigValues`<br>`config`<br>`register`<br>`overwriteExisting`<br>`contentType`<br>`postQueryParams`<br>`putInteadOfPost`<br>`putUriExcludeIdentifier`<br>`putQueryParams`<br>`remove`<br>`deleteUriExcludeIdentifier`<br>`deleteQueryParams`<br>`processNoOp`
@@ -119,6 +119,7 @@ Describes a particular entity on a subresource on an endpoint which is communica
119
119
| `postQueryParams` | Query Parameters to add to the Url of a POST command. Not a frequent use case but required to submit for example the `guid` of a UseCaseDefinition to migrate. | | `POST`
120
120
| `putInsteadOfPost` | Some APIs use PUTting instead of POSTing for creation of new entities. If the subresource uses PUTting instead of POSTing, set this parameter to `true`. | `false` | `POST` <br> `PUT`
121
121
| `putUriExcludeIdentifier` | Some APIs handle PUTting of entities by PUTing to the parent resource and specifying the entity to create in the body. If the subresource handles PUTting in that way, set this parameter to `true`. If `false` or unspecified, PUT calls will be made to the path which ends with the entities __identifier__. | `false` | `PUT`
122
+
| `putQueryParams` | Query Parameters to add to the Url of a PUT command. | | `PUT`
122
123
| `remove` | The entity will be DELETEd if it exists. If both `register` and `remove` is true, any found entity is first removed if it exists before it is being created. | `false` | `DELETE`
123
124
| `deleteUriExcludeIdentifier` | Some APIs handle DELETEing of entities by calling DELETE to the parent resource and specifying the entity to delete in query params. If the subresource handles DELETEing in that way, set this parameter to `true` and provide the subresource `identifierQueryParam` to identify the entity. If `false` or unspecified, DELETE calls will be made to the path which ends with the entities identifier name. | `false` | `DELETE`
124
125
| `deleteQueryParams` | Query Parameters to add to the Url of a DELETE command. Not a frequent use case but required to delete an entity in auth service. | `false` | `DELETE`
0 commit comments