-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #562 from npamudika/master
Add missing doc changes
- Loading branch information
Showing
4 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## apictl mg | ||
|
||
Handle Microgateway related operations | ||
|
||
### Synopsis | ||
|
||
Initialize, Add, Update an apictl project to the microgateway | ||
|
||
``` | ||
apictl mg [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for mg | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-k, --insecure Allow connections to SSL endpoints without certs | ||
--verbose Enable verbose mode | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [apictl](apictl.md) - CLI for Importing and Exporting APIs and Applications and Managing WSO2 Micro Integrator | ||
* [apictl mg deploy](apictl_mg_deploy.md) - Deploy apictl project. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
## apictl mg deploy | ||
|
||
Deploy apictl project. | ||
|
||
### Synopsis | ||
|
||
Deploy the apictl project in Microgateway | ||
|
||
``` | ||
apictl mg deploy --host [control plane url] --file [file name] --username [username] --password [password] [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
apictl mg deploy -h https://localhost:9095 -f qa/TwitterAPI.zip -u admin -p admin | ||
cat ~/.mypassword | apictlmg deploy -h https://localhost:9095 -f qa/TwitterAPI.zip -u admin | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-f, --file string Provide the filepath of the apictl project to be imported | ||
-h, --help help for deploy | ||
-c, --host string Provide the host url for the control plane with port | ||
-p, --password string Provide the password | ||
--skipCleanup Leave all temporary files created during import process | ||
-u, --username string Provide the username | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-k, --insecure Allow connections to SSL endpoints without certs | ||
--verbose Enable verbose mode | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [apictl mg](apictl_mg.md) - Handle Microgateway related operations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters