get-fence-custom-image

Prev Next

Available in VPC

Get a user server image within a datafence.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET /api/v1/fence/get-fence-custom-image

Request headers

For information about the headers common to all Datafence APIs, see Datafence request headers.

Request query parameters

You can use the following query parameters with your request:

Field Type Required Description
fenceId Integer Required Datafence number
productCode String Required Datafence product code
  • FENCE_UBUNTU (valid value)

Request example

The request example is as follows:

curl --location --request GET 'https://datafence.apigw.ntruss.com/api/v1/fence/get-fence-custom-image?fenceId=26&productCode=FENCE_UBUNTU' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'

Response

This section describes the response format.

Response body

The response body includes the following data:

Field Type Required Description
content Array - User server image information

content

The following describes content.

Field Type Required Description
imageNo Integer - Image number
imageName String - Image name
productCode String - Datafence product code
baseServerName String - Default server name of the image

Response status codes

For information about the HTTP status codes common to all Datafence APIs, see Datafence API response status codes.

Response example

The response example is as follows:

{
  "content": [
    {
      "imageNo": 1,
      "imageName": "fence-custom-image-1",
      "productCode": "FENCE_UBUNTU",
      "baseServerName": "fence-1-1"
    }
  ]
}