When you invoke the mfpadm program, you can include various commands for adapters.
The list adapters command returns a list of the adapters that are deployed for a runtime.
Syntax: list adapters [runtime-name]Argument | Description |
---|---|
runtime-name | Name of the runtime. |
Option | Description |
---|---|
--xml | Produce XML output instead of tabular output. |
The deploy adapter command deploys an adapter in a runtime.
Syntax: deploy adapter [runtime-name] fileArgument | Description |
---|---|
runtime-name | Name of the runtime. |
file | Binary adapter file (.adapter) |
deploy adapter mfp MyAdapter.adapter
This command is based on the Adapter (POST) REST service.
The show adapter command shows details about an adapter.
Syntax: show adapter [runtime-name] adapter-nameArgument | Description |
---|---|
runtime-name | Name of the runtime. |
adapter-name | Name of an adapter |
Option | Description |
---|---|
--xml | Produce XML output instead of tabular output. |
The delete adapter command removes (undeploys) an adapter from a runtime.
Syntax: delete adapter [runtime-name] adapter-nameArgument | Description |
---|---|
runtime-name | Name of the runtime. |
adapter-name | Name of an adapter. |
Argument | Description |
---|---|
runtime-name | Name of the runtime. |
adapter-name | Name of an adapter. |
The adapter get binary command returns the binary adapter file.
Syntax: adapter [runtime-name] adapter-name get binary [> tofile]Option | Description | Required | Default |
---|---|---|---|
> tofile | Name of the output file. | No | Standard output |
adapter mfp MyAdapter get binary > /tmp/MyAdapter.adapter
This command is based on the Export runtime resources (GET) REST service.
The adapter show user-config command shows the user configuration of the adapter.
Syntax: adapter [runtime-name] adapter-name show user-config [--xml]The adapter show user-config command takes the following options after the verb.
Option | Description |
---|---|
--xml | Produces output in XML format instead of JSON format. |
adapter mfp MyAdapter show user-config
This command is based on the Adapter Configuration (GET) REST service.
The adapter set user-config command specifies the user configuration of the adapter or a single property within this configuration.
Syntax for the entire configuration: adapter [runtime-name] adapter-name set user-config fileThe adapter set user-config command takes the following arguments after the verb.
Option | Description |
---|---|
file | Name of the JSON or XML file that contains the new configuration. |
Option | Description |
---|---|
property | Name of the JSON property. For a nested property, use the syntax prop1.prop2.....propN. For a JSON array element, use the index instead of a property name. |
value | The value of the property. |
adapter mfp MyAdapter set user-config myconfig.json
adapter mfp MyAdapter set user-config timeout = 240
This command is based on the Adapter configuration (PUT) REST service.