Get Information about artifacts deployed on this node

get

/apiplatform/gatewaynode/v1/config/artifacts

Returns metadata information about all artifacts deployed on this node.

Users requesting this resource must be assigned the Gateway Manager role for the logical gateway this node is registered to.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

The artifacts deployed on this node.
Body ()
Returns metadata information for all deployed artifacts.
Root Schema : ArtifactsDetails
Returns metadata information for all deployed artifacts.
Match All
Show Source
Nested Schema : ArtifactsMetadata
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : ArtifactMetadata
Type: object
Show Source

401 Response

Authentication required.
Body ()
Error Definition.
Root Schema : Error
Type: object
Error Definition.
Show Source
Nested Schema : errorDetails
Type: array
Additional errors.
Show Source

403 Response

Forbidden.
Body ()
Error Definition.
Root Schema : Error
Type: object
Error Definition.
Show Source
Nested Schema : errorDetails
Type: array
Additional errors.
Show Source

500 Response

Unexpected error.
Body ()
Error Definition.
Root Schema : Error
Type: object
Error Definition.
Show Source
Nested Schema : errorDetails
Type: array
Additional errors.
Show Source

503 Response

Temporarily unavailable error.
Body ()
Error Definition.
Root Schema : Error
Type: object
Error Definition.
Show Source
Nested Schema : errorDetails
Type: array
Additional errors.
Show Source
Back to Top

Examples

The following example shows how to retrieve the status of a gateway node by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X GET 
-u apicsadmin:password
https://example.com/apiplatform/gatewaynode/v1/config/artifacts

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Date: Wed, 13 Sep 2017 15:28:36 GMT
Transfer-Encoding: chunked
Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body in JSON format, including details about the artifacts deployed to the node.

{
    "count": 2,
    "items": [
        {
            "name": "SharedSDK",
            "mutable": false,
            "type": "runtime.sdk.ear",
            "version": "5.0",
            "revision": "1"
        },
        {
            "name": "GatewayController",
            "mutable": false,
            "type": "runtime.gc.ear",
            "version": "1.0",
            "revision": "4"
        }
    ]
}
Back to Top