CloudHub Command-Line Interface
Anypoint Platform provides a scripting and command-line tool for CloudHub. The command-line interface (CLI) supports both the interactive shell and standard CLI modes and works with:
CloudHub Applications
Command | Description |
---|---|
Describes the history of the alarm |
|
Lists all alerts in the environment |
|
Copies a CloudHub application |
|
Deletes an application |
|
Deploys a new application |
|
Shows application details |
|
Download application logs to specified directory |
|
Lists all applications in the environment |
|
Modifies an existing application, optionally updating the ZIP file |
|
Restarts a running application |
|
Starts an application |
|
Stops a running application |
|
Tail application logs |
|
Lists all supported regions |
|
Lists all available runtimes |
runtime-mgr:cloudhub-alert-history:describe
> runtime-mgr:cloudhub-alert-history:describe [flags] <name>
Describes the history of the alarm passed in <name>
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
runtime-mgr:cloudhub-alert:list
> runtime-mgr:cloudhub-alert:list [flags]
Lists all alerts associated with your current environment
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
runtime-mgr:cloudhub-application:copy
> runtime-mgr:cloudhub-application:copy <source> <target> [flags]
Copies the CloudHub application passed in source
to the target passed in target
Arguments source
and target
should be formatted as follows: ([group_id]/)<asset_id>/<version>
If group_id
is not specified, it defaults to the currently selected Organization ID
For example:
> runtime-mgr:cloudhub-application:copy Services:QA/application-1 Development:QA/application-2
Copies the application named application-1
from the QA environment of the Services organization to the QA environment of the Development organization.
If the Anypoint Platform CLI is using the QA environment in the Services organization, the command can simply take the application name as a source
:
> runtime-mgr:cloudhub-application:copy application-1 Development/QA/application-2
Running this command requires your user to have read/write access to the /tmp directory of the OS where CLI is installed.
|
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Set a property ( |
|
This command has multi-option flags. When using multi-option flags in a command, either put the parameter before the flags or use a `-- ` (two dashes followed by a space) before the parameter. |
When copying an application containing safely hidden application properties, pass the properties in the copy command using the --property flag.
For information about safely hidden application properties, see Safely Hide Application Properties.
|
runtime-mgr:cloudhub-application:delete
> runtime-mgr:cloudhub-application:delete [flags] <name>
Deletes the running application you specify in <name>
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |
This command accepts the default flags.
runtime-mgr:cloudhub-application:deploy
> runtime-mgr:cloudhub-application:deploy <name> <zipfile> [flags]
Deploys the Mule deployable archive ZIP file that you specify in <zipfile>
using the name you set in <name>
You will have to provide the absolute or relative path to the deployable ZIP file in your local hard drive and the name you give to your application has to be unique.
If successful, this command’s output includes the deployment status of UNDEPLOYED ,
which indicates that CloudHub uploaded the application successfully.
|
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Name and version of the runtime environment. |
|
|
Set the name of the release channel to be used for the selected Mule version |
|
|
Set the name of the Java version to be used for the selected Mule version |
|
|
Number of workers |
|
|
Size of the workers in vCores |
|
|
Name of the region to deploy to |
|
|
Set a property ( |
|
`--propertiesFile |
Overwrite all properties with values from this file |
|
|
Enable or disable persistent queues |
|
`--[no-]persistentQueuesEncrypted ` |
Enable or disable persistent queue encryption |
|
|
Enable or disable static IPs |
|
|
Enable or disable Object Store V |
|
|
Enable or disable Object Store V2 |
|
|
Automatically restart app when not responding |
|
|
Specify the response format |
|
|
Set the timeout value in miliseconds |
|
You won’t be able to allocate static IPs Anypoint Platform CLI. You can simply enable and disable them. |
If you deploy without using any flags, your application deploys using all your default values. |
This command has multi-option flags. When using multi-option flags in a command, either put the parameter before the flags or use a `-- ` (two dashes followed by a space) before the parameter. |
runtime-mgr:cloudhub-application:describe
> runtime-mgr:cloudhub-application:describe [flags] <name>
Displays information on the application you pass in <name>
Use the flag -o json
to get the raw JSON response of the application you specify in <name>
.
The command returns data such as the application’s domain, its status, the last time it was updated, the Mule version, the ZIP file name, the region, monitoring, and workers; as well as TRUE
or FALSE
information for persistent queues and static IPs enablement.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
runtime-mgr:cloudhub-application:download-logs
> runtime-mgr:cloudhub-application:download-logs [flags] <name> <directory>
Downloads logs the for application specified in <name>
to the specified directory
Contrarily to what you see in the UI, the logs you download from the CLI won’t separate system logs from worker logs.
This command accepts the default flags.
runtime-mgr:cloudhub-application:list
> runtime-mgr:cloudhub-application:list [flags]
Lists all applications available in your Anypoint Platform CLI
It returns your application name, its status, the number of vCores assigned and the last time it was updated.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
runtime-mgr:cloudhub-application:modify
> runtime-mgr:cloudhub-application:modify <name> [zipfile] [flags]
Updates the settings of an existing application
Optionally, you can update it by uploading a new ZIP file.
This command can take all the same flags as the deploy
command.
This command’s output includes Status , which is the application’s previous deployment status state.
|
This command has multi-option flags. When using multi-option flags in a command, either put the parameter before the flags or use a `-- ` (two dashes followed by a space) before the parameter. |
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Name and version of the runtime environment. |
|
|
Set the name of the release channel to be used for the selected Mule version |
|
|
Set the name of the Java version to be used for the selected Mule version |
|
|
Number of workers |
|
|
Size of the workers in vCores |
|
|
Name of the region to deploy to |
|
|
Set a property ( |
|
`--propertiesFile |
Overwrite all properties with values from this file |
|
|
Enable or disable persistent queues |
|
`--[no-]persistentQueuesEncrypted ` |
Enable or disable persistent queue encryption |
|
|
Enable or disable static IPs |
|
|
Enable or disable Object Store V |
|
|
Enable or disable Object Store V2 |
|
|
Automatically restart app when not responding |
|
|
Specify the response format |
|
|
Set the timeout value in miliseconds |
|
runtime-mgr:cloudhub-application:restart
> runtime-mgr:cloudhub-application:restart [flags] <name>
Restarts the running application you specify in <name>
This command accepts the default flags.
runtime-mgr:cloudhub-application:start
> runtime-mgr:cloudhub-application:start [flags] <name>
Starts the running application you specify in <name>
This command accepts the default flags.
runtime-mgr:cloudhub-application:stop
> runtime-mgr:cloudhub-application:stop [flags] <name>
Stops the running application you specify in <name>
This command accepts the default flags.
runtime-mgr:cloudhub-application:tail-logs
> runtime-mgr:cloudhub-application:tail-logs [flags] <name>
Tails application logs
This command accepts the default flags.
cloudhub:region:list
> cloudhub:region:list [flags]
Lists all supported regions
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:runtime:list
> cloudhub:runtime:list [flags]
Lists all supported runtimes
This command accepts the default flags.
CloudHub Dedicated Load Balancers
Command | Description |
---|---|
Adds an IP or range of IPs to the load balancer allowlist |
|
Removes an IP or range of IPs from the load balancer allowlist |
|
Creates a load balancer |
|
Deletes a load balancer |
|
Shows load balancer details |
|
Disables dynamic IPs |
|
Enables dynamic IPs |
|
Lists all load balancers in an organization |
|
Adds a proxy mapping rule at the specified index |
|
Lists the proxy mapping rules for a load balancer |
|
Removes a proxy mapping rule |
|
Adds an additional certificate to an existing load balancer |
|
Shows the load balancer configuration for a particular certificate |
|
Removes a certificate from a load balancer |
|
Sets the default certificate that the load balancer will serve |
|
Starts a load balancer |
|
Stops a load balancer |
cloudhub:load-balancer:allowlist:add
> cloudhub:load-balancer:allowlist:add [flags] <name> <cidrBlock>
Adds a range of IP addresses specified in <cidrBlock>
to the allowlist of the load balancer specified in <name>
The allowlist works at the load balancer level, not at the CN certificate level. Make sure you only pass IP addresses formatted in CIDR notation. |
This command accepts the default flags.
cloudhub:load-balancer:allowlist:remove
> cloudhub:load-balancer:allowlist:remove <name> <cidrBlock>
Removes an IP or range of IPs addresses specified in <cidrBlock>
to the allowlist of the load balancer specified in <name>
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |
This command accepts the default flags.
cloudhub:load-balancer:create
> cloudhub:load-balancer:create [flags] <vpc> <name> <certificate> <privateKey>
Creates a load balancer using the specified values in the following variables:
Value | Description | Example |
---|---|---|
|
Name of the Anypoint VPC to which this load balancer is bound. |
|
|
Name for the load balancer. |
|
|
Absolute path to the |
|
|
Absolute path to the |
|
The name for the load balancer that you pass in |
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Client certificate file |
|
|
Certificate revocation list file |
|
|
Specifies the Load balancer HTTP behavior. It can be set to |
|
|
Supports TLSv1 in addition to TLSv1.1 and TLSv1.2 |
|
|
Uses dynamic IPs, which are not persistent through restarts |
|
|
Specifies the client verification mode. It can be set to |
|
CloudHub does not implement the Online Certificate Status Protocol (OCSP). To keep your certification revocation list up to date, it’s recommended to use the CloudHub API to update your certificates programmatically. |
For more configuration information, see Configure SSL Endpoints and Certificates.
cloudhub:load-balancer:delete
> cloudhub:load-balancer:delete [flags] <name>
Deletes the load balancer specified in <name>
.
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |
This command accepts the default flags.
cloudhub:load-balancer:describe
> cloudhub:load-balancer:describe [flags] <name>
Displays information about the load balancer that is specified in <name>
Use the flag -o json
to get the raw JSON response of the application you specify in <name>
It displays load balancer’s name, domain, its state and the Anypoint VPC Id to which the load balancer is bound.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:load-balancer:dynamic-ips:disable
> cloudhub:load-balancer:dynamic-ips:disable [flags] <name>
Disables dynamic IPs for the load balancer specified in <name>
This command accepts the default flags.
cloudhub:load-balancer:dynamic-ips:enable
> cloudhub:load-balancer:dynamic-ips:enable [flags] <name>
Enables dynamic IPs for the load balancer specified in <name>
This command accepts the default flags.
cloudhub:load-balancer:list
> cloudhub:load-balancer:list [flags]
Lists all load balancers in your Anypoint Platform
It displays load balancer’s name, domain, its state, and the Anypoint VPC ID to which the load balancer is bound.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:load-balancer:mappings:add
> cloudhub:load-balancer:mappings:add [flags] <name> <index> <inputUri> <appName> <appUri> [certificateName]
Adds a proxy mapping rule to the load balancer specified in <name>
in the CN passed under the certificateName
flag.
If no certificateName
is passed, Anypoint Platform CLI adds the mappings to the default SSL endpoint.
Value | Description | Example |
---|---|---|
|
Name of the load balancer to which this rule is applied. |
|
|
Name of the URI of your input URL |
|
|
Name of the app of your output URL to which the request is forwarded |
|
|
URI of the app of your output URL to which the request is forwarded |
/ |
For the values in the example above, for an input call to my-superapp.api.example.com/status?limit=10
, the endpoint my-superapp-example: /status?limit=10
will be called for the application.
If no upstream protocol is set, HTTP is used as default.
Flag | Description | Example |
---|---|---|
`--certificateName ` |
Certificate name |
|
|
Set the protocol used by your application to communicate internally with your load balancer |
|
cloudhub:load-balancer:mappings:describe
> cloudhub:load-balancer:mappings:describe <name> [certificateName]
Lists the mapping rules for the load balancer specified in <name>
If no certificateName
is passed, Anypoint Platform CLI returns the mappings for the default SSL endpoint.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:load-balancer:mappings:remove
> cloudhub:load-balancer:mappings:remove [flags] <name> <index> [certificateName]
Removes the proxy mapping rules from the load balancer specified in <name>
at the priority index specified in <index>
and the CN specified as the certificateName
flag
If no certificateName
is passed, Anypoint Platform CLI removes the mappings for the default SSL endpoint.
This command accepts the default flags.
cloudhub:load-balancer:ssl-endpoint:add
> cloudhub:load-balancer:ssl-endpoint:add [flags] <name> <certificate> <privateKey>
Adds an SSL endpoint to the load balancer specified in <name>
, using the certificate and private key passed:
Value | Description | Example |
---|---|---|
|
Name for the load balancer. |
|
|
Absolute path to the |
|
|
Absolute path to the |
|
CloudHub does not implement the Online Certificate Status Protocol (OCSP). To keep your certification revocation list up to date, it’s recommended to use the CloudHub API to update your certificates programmatically. |
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Client certificate file |
|
|
Certificate Revocation List file |
|
|
Supports TLSv1 in addition to TLSv1.1 and TLSv1.2 |
|
|
Specifies the client verification mode. It can be set to |
|
For more configuration information, see Configure SSL Endpoints and Certificates.
cloudhub:load-balancer:ssl-endpoint:describe
> cloudhub:load-balancer:ssl-endpoint:set-describe [flags] <name> <certificateName>
Shows information about the configuration of the load balancer passed in <name>
for the certificate specified in <certificateName>
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:load-balancer:ssl-endpoint:remove
> cloudhub:load-balancer:ssl-endpoint:remove [flags] <name> <certificateName>
Removes the ssl certificate specified in <certificateName>
from the load balancer specified in <name>
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |
This command accepts the default flags.
cloudhub:load-balancer:ssl-endpoint:set-default
> cloudhub:load-balancer:ssl-endpoint:set-default [flags] <name> <certificateName>
Sets the certificate specified in <certificateName>
as the default certificate for the load balancer passed in <name>
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
Specifies the Load balancer HTTP behavior |
|
cloudhub:load-balancer:start
> cloudhub:load-balancer:start [flags] <name>
Starts the load balancer specified in <name>
This command accepts the default flags.
cloudhub:load-balancer:stop
> cloudhub:load-balancer:stop [flags] <name>
Stops the load balancer specified in <name>
This command accepts the default flags.
CloudHub Anypoint VPCs
Command | Description |
---|---|
Shares an Anypoint VPC with a list of Business Groups |
|
Shares an Anypoint VPC with a list of Business Groups |
|
Creates a new Anypoint VPC |
|
Deletes an existing Anypoint VPC |
|
Show Anypoint VPC details |
|
Sets the domain names that are resolved using your internal DNS servers |
|
Clears the list domain names that are resolved using your internal DNS servers |
|
Modifies the Anypoint VPC association to Runtime Manager environments |
|
Modifies the Anypoint VPC association to Runtime Manager environments |
|
Adds a firewall rule for Mule applications in this Anypoint VPC |
|
Shows firewall rule for Mule applications in this Anypoint VPC |
|
Removes a firewall rule for Mule applications in this Anypoint VPC |
|
Lists all Anypoint VPCs |
cloudhub:vpc:business-groups:add
> cloudhub:vpc:business-groups:add [flags] <vpc> <businessGroups...>
Assigns the Anypoint VPC defined in <vpc>
to the business group(s) passed as argument(s) thereafter
This command accepts the default flags.
cloudhub:vpc:business-groups:remove
> cloudhub:vpc:business-groups:remove [flags] <vpc> <businessGroups...>
Removes the Anypoint VPC defined in <vpc>
from the business group(s) passed as argument(s) thereafter
This command does not prompt twice before removing the Anypoint VPC from the specified resource. If you send a remove instruction, it does not ask for confirmation. |
This command accepts the default flags.
cloudhub:vpc:create
> cloudhub:vpc:create [flags] <name> <region> <cidrBlock> [environments...]
Creates an Anypoint VPC using the name in <name>
, in the region specified in <region>
, with the size passed in <cidrBlock>
in the form of a Classless Inter-Domain Routing (CIDR) block, using CIDR notation and associates it to the environments passed as argument(s) thereafter.
An Anypoint VPC needs to be bound to a business group within your organization. When creating an Anypoint VPC, make sure to assign it a business group using the business-groups add command. |
This command accepts the --default
flag. When passed, the Anypoint VPC is created as the default Anypoint VPC for the selected environment.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:vpc:delete
> cloudhub:vpc:delete <name>
Deletes the Anypoint VPC specified in <name>
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |
This command accepts the default flags.
cloudhub:vpc:describe
> cloudhub:vpc:describe [flags] <name>
Displays information about the Anypoint VPC that is specified in <name>
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:vpc:dns-servers:set
> cloudhub:vpc:dns-servers:set [flags] <vpc>
Sets a list of local host names (internal domain names) to be resolved using your DNS servers for which you need to provide their IP addresses (whether private or public addresses).
Whenever those private domains are provided, your worker resolves them using your private DNS, so you can still use the internal host names of your private network.
This feature is supported by workers running Mule versions 3.5.x, 3.6.x, 3.7.4, 3.8.0-HF1, 3.8.1 and 3.8.2. |
In addition to the default flags, this command accepts the following flags:
Flag | Description | Example |
---|---|---|
|
A domain to resolve on the special DNS server list |
|
|
IP address for a DNS server to resolve special domains on |
|
Every time you run this command, you overwrite your previous DNS set command.
To remove a DNS set, you need to use the vpc dns-servers unset command.
cloudhub:vpc:dns-servers:unset
> cloudhub:vpc:dns-servers:unset [flags] <vpc>
Clears the list of local host names (internal domain names) to be resolved using your DNS servers from the Anypoint VPC passed in <vpc>
This command accepts the default flags.
cloudhub:vpc:environments:add
> cloudhub:vpc:environments:add [flags] <vpc> [environments...]
Assigns the Anypoint VPC defined in <vpc>
to the environment(s) passed as argument(s) thereafter
The --default
flag allows setting an Anypoint VPC as the default for the organization, which applies to all environments which don’t have an Anypoint VPC explicitly associated.
This command accepts the default flags.
cloudhub:vpc:environments:remove
> cloudhub:vpc:environments:remove [flag] <vpc> [environments...]
Removes the Anypoint VPC defined in <vpc>
from the environment(s) passed as argument(s) thereafter
This command accepts the --default
flag, that removes this Anypoint VPC as the default Anypoint VPC for the environment.
This command accepts the default flags.
cloudhub:vpc:firewall-rules:add
> cloudhub:vpc:firewall-rules:add [flags] <vpc> <cidrBlock> <protocol> <fromPort> [toPort]
Adds a firewall rule to the Anypoint VPC defined in <vpc>
using the values set in the variables:
Value | Description | Example |
---|---|---|
|
Name of the Anypoint VPC to which this load balancer is bound |
|
|
IP address in CIDR notation for the firewall to allow |
|
|
The protocol to use in the rules. It can be |
|
|
The port from which the firewall will allow requests. It can go from 0 to 65535 |
|
|
optional In case a port range is needed, the |
|
When creating an Anypoint VPC, make sure to allow your outbound address. |
This command accepts the default flags.
cloudhub:vpc:firewall-rules:describe
> cloudhub:vpc:firewall-rules:describe <vpc>
Describes all the firewall rules for the Anypoint VPC defined in <vpc>
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.
cloudhub:vpc:firewall-rules:remove
> cloudhub:vpc:firewall-rules:remove <vpc> <index>
Removes the firewall rule from the workers inside the Anypoint VPC specified in <vpc>
at the index passed in the <index>
This command accepts the default flags.
cloudhub:vpc:list
> cloudhub:vpc:list [flags]
Lists all available Anypoint VPCs
It returns ID, region, and environment of the network and whether it is the default Anypoint VPC or not.
Use the --output
flag to specify the response format. Supported values are table
(default) and json
.
This command accepts the default flags.