Update a gateway node

put

/apiplatform/management/v1/gateways/{gwId}/nodes/{nodeId}

Updates the {nodeId} node registered to the {gwId} gateway. You must provide all the attributes as all are required for the update operation.

Users requesting this resource must be assigned Gateway Manager role and the Manage Gateway grant for the specified gateway.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : UpdateNodeRequest
Match All
Show Source
Nested Schema : UpdateNodeRequest-allOf[0]
Type: object
Show Source
Nested Schema : NodeDef
Type: object
Show Source
Nested Schema : configuration
Type: object
Show Source
Nested Schema : info
Type: object
Show Source
Nested Schema : proxyUrls
Type: array
Show Source
Nested Schema : urls
Type: array
Show Source
Back to Top

Response

Supported Media Types

204 Response

The gateway node was updated.

400 Response

Bad request, indicates a problem with the input parameters.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

403 Response

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

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to update a node registered to a gateway by submitting a PUT request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X PUT 
-u apicsadmin:password
-H "Content-Type:application/json"
-d @node.json
https://example.com/apiplatform/management/v1/gateways/{gwId}/nodes/{nodeId}
  • {gwId} is the unique Id for a gateway. To retrieve available gateway Ids, see Get gateways.

  • {nodeId} is the unique Id for a node. To retrieve available node Ids, see Get gateway nodes.

Example of Request Body

The following shows an example of the request body in JSON format, included with the request above in a file named node.json.

{
 "name":"gateway1",
  " description":"node description",
  "urls": ["http://example.com:8011"]
  "proxyUrls": ["http://proxy-us.example.com:80"]
 }

Example of Response Headers

The following shows an example of the response header:

HTTP/1.1 204 No Content
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Fri, 17 Mar 2017 10:30:10 GMT
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-0002b82a
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top