Common Function Pool

This page describes operations you can perform on common_function_pools. List, and get details for.

List Common Function Pool

List all visible common_function_pools.

Synchronous / Asynchronous

  • Synchronous

Request

HTTP Request Method

  • GET

HTTP Request Path

{endpoint}/v2.0/common_function_pools

HTTP Request Parameters

Parameter Style Type Format Enumeration Description Required
description query string - - Description of the Common Function Pool resource no
id query string hyph-uuid - Unique ID of the Common Function Pool resource no
name query string - - Name of the Common Function Pool resource no

Response

HTTP Response Code List

Response Code Description
200 OK
400 Bad Request
401 UnAuthorized
404 Not Found
500 Internal Server Error

HTTP Response Parameters

Parameter Type Format Description
common_function_pools array<object> datatype_common_function_pool -
description string - Description of the Common Function Pool resource
id string hyph-uuid Unique ID of the Common Function Pool resource
name string - Name of the Common Function Pool resource

Examples

Sample Request Body

This operation does not send a request body.

Sample Response Body

{
  "common_function_pools": [
    {
      "description": "lab3_common_function_pools-01",
      "id": "c57066cc-9553-43a6-90de-c847231bc70b",
      "name": "lab3_common_function_pools-01"
    }
  ]
}

Show Common Function Pool

Show details for common_function_pool.

Synchronous / Asynchronous

  • Synchronous

Request

HTTP Request Method

  • GET

HTTP Request Path

{endpoint}/v2.0/common_function_pools/{common_function_pool_id}

HTTP Request Parameters

Parameter Style Type Format Enumeration Description Required
common_function_pool_id URI string hyph-uuid - Unique ID of the Common Function Pool resource yes

Response

HTTP Response Code List

Response Code Description
200 OK
400 Bad Request
401 UnAuthorized
404 Not Found
500 Internal Server Error

HTTP Response Parameters

Parameter Type Format Description
common_function_pool object datatype_common_function_pool -
description string - Description of the Common Function Pool resource
id string hyph-uuid Unique ID of the Common Function Pool resource
name string - Name of the Common Function Pool resource

Examples

Sample Request Body

This operation does not send a request body.

Sample Response Body

{
  "common_function_pool": {
    "description": "lab3_common_function_pools-01",
    "id": "c57066cc-9553-43a6-90de-c847231bc70b",
    "name": "lab3_common_function_pools-01"
  }
}