Load Balancer/Actions

This page describes actions you can perform on load_balancers. Reboot and reset password of firewall instance.

Reboot Load Balancer

Reboot load_balancer.

Synchronous / Asynchronous

  • Asynchronous

Request

HTTP Request method

  • POST

HTTP Request Path

{endpoint}/v2.0/load_balancers/{load_balancer_id}/reboot

HTTP Request Parameters

Parameter Style Type Format Enumeration Description Required
load_balancer_id URI string hyph-uuid - Unique ID of the Load Balancer yes
type plain string - ['HARD'] - 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

This operation does not receive a response body.

Examples

Sample Request Body

{
  "type": "HARD"
}

Sample Response Body

This operation does not receive a response body.

Reset Password Load Balancer

Reset password of load_balancer instance.

Synchronous / Asynchronous

  • Asynchronous

Request

HTTP Request method

  • POST

HTTP Request Path

{endpoint}/v2.0/load_balancers/{load_balancer_id}/reset_password

HTTP Request Parameters

Parameter Style Type Format Enumeration Description Required
load_balancer_id URI string hyph-uuid - Unique ID of the Load Balancer yes
username plain string - - - 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
new_password string - -
username string - -

Examples

Sample Request Body

{
  "username": "user-read"
}

Sample Response Body

{
  "new_password": "ABCDabcd4321",
  "username": "user-read"
}