CATs

Contents

CATs

List CATs

GET /v2/plugins/tosca/cats

Lists all CATs.

Inputs

None

Returns

An array of CATs of the following format:

Field Type Description
id String Identifier of the CAT.
name String Name of the CAT.
version String The version of the CAT.
inputs Array of String An array of strings that contains the inputs for the CAT.
is_mock Boolean Indicates whether this CAT is mock or not.
global Boolean Indicates whether this CAT is global or not.

Back to top

Show CAT

GET /v2/plugins/tosca/cats/:id

Shows information about a specific CAT.

Inputs

None

Returns

A CAT of the following format:

Field Type Description
id String Identifier of the CAT.
name String Name of the CAT.
version String The version of the CAT.
inputs Array of String An array of strings that contains the inputs for the CAT.
is_mock Boolean Indicates whether this CAT is mock or not.
global Boolean Indicates whether this CAT is global or not.

Back to top

Create CAT

POST /v2/plugins/tosca/cats

Creates a new CAT.

Inputs

Field Type Description Required
is_mock String Indicates whether this CAT is mock or not. Yes

Returns

A CAT of the following format:

Field Type Description
id String Identifier of the CAT.
name String Name of the CAT.
version String Version of the CAT.
inputs Array of String Array of strings that contains the inputs for the CAT.
is_mock Boolean Indicates whether this CAT is mock or not.
global Boolean Indicates whether this CAT is global or not.
upload_url String URL where the user must upload the CAT file.

Back to top

Parse CAT Metadata

PUT /v2/plugins/tosca/cats/:id/parse_metadata

Parses the data of the CAT file uploaded by the user.

Inputs

None

Returns

A CAT of the following format:

Field Type Description
id String Identifier of the CAT.
name String Name of the CAT.
version String The version of the CAT.
inputs Array of String An array of strings that contains the inputs for the CAT.
is_mock Boolean Indicates whether this CAT is mock or not.
global Boolean Indicates whether this CAT is global or not.

Back to top

Destroy CAT

DELETE /v2/plugins/tosca/cats/:id

It destroys a CAT.

Inputs

None

Returns

None

Back to top