Create an extension
Creates the extension.
The extensions API supports two types of usage patterns.
A). Specify a download_url
, http or https URL, where the extension is currently hosted. This will result in extension being copied to elastic repository.
B). Create only the extension metadata using the POST
endpoint and then use PUT
to upload the extension file. Leave the download_url
unspecified in this case.
Responses
-
The extension that was just created.
-
Could not download the extension from the specified URL. (code:
extensions.request_execution_failed
) -
Your current session does not have a user id associated with it. (code:
extensions.no_user_id
) -
An extension already exists with the generated id. Please try again. (code:
extensions.id_already_exists
)
POST
/deployments/extensions
curl \
--request POST 'https://api.elastic-cloud.com/api/v1/deployments/extensions' \
--header "Content-Type: application/json" \
--data '{"name":"string","description":"string","download_url":"string","extension_type":"plugin","version":"string"}'