Skip to content

Commit 202a94e

Browse files
Added missing deploymentDownloadFile command.
1 parent 517e2b5 commit 202a94e

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

config/api/version-1.06.config.php

+21-2
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,29 @@
275275
array('--vhost', 'The ID of a single virtual host.'),
276276
//array('Example:','configurationExport --directivesBlacklist="zend_optimizerplus.blacklist_filename,pgsql.auto_reset_persistent"'),
277277
)
278-
278+
279279
)
280280
),
281-
281+
// Deployment
282+
'deploymentDownloadFile' => array (
283+
'options' => array (
284+
'route' => 'deploymentDownloadFile --url= --name= --version= [--override=]',
285+
'defaults' => array (
286+
'controller' => 'webapi-api-controller',
287+
'action' => 'deploymentDownloadFile',
288+
'apiMethod' => 'post'
289+
),
290+
'group' => 'deployment',
291+
'info' => array(
292+
'Download a deployment package file from a given URL to allow passing it to the deployment mechanism later.',
293+
array('--url', 'Package URL.'),
294+
array('--name', 'Package name.'),
295+
array('--version', 'Package version.'),
296+
array('--override', 'Determines whether the download file should be overridden in case it is already being processed. Default to false.')
297+
)
298+
)
299+
),
300+
282301
'librarySetDefault' => array (
283302
'options' => array (
284303
'route' => 'librarySetDefault --libraryVersionId=',

0 commit comments

Comments
 (0)