Create session persistence for a load balancer
(Difference between revisions)
Mike.robski (Talk | contribs) m (1 revision: Release 95) |
|||
Line 1: | Line 1: | ||
+ | ='''PUT''' /accounts/''{accountId}''/loadbalancers/''{lbId}''/nodePools/''{nodePoolId}''/sessionPersistence= | ||
This operation will add or modify the session persistence of an existing load balancer | This operation will add or modify the session persistence of an existing load balancer | ||
− | |||
− | |||
== Request == | == Request == | ||
+ | <code>PUT /accounts/''{accountId}''/loadbalancers/''{lbId}''/nodePools/''{nodePoolId}''/sessionPersistence</code> | ||
− | === | + | === Request Parameters === |
; accountId - ''string'' | ; accountId - ''string'' | ||
− | : The selected account | + | : The selected account id. |
+ | |||
+ | ; lbId - ''string'' | ||
+ | : The selected loadbalancer id. | ||
− | ; | + | ; nodePoolId - ''string'' |
− | : The | + | : The selected node pool id. |
=== Request Body === | === Request Body === | ||
<pre> | <pre> | ||
{ | { | ||
− | "persistenceType":"{type}", | + | "persistenceType": "{type}", |
} | } | ||
</pre> | </pre> | ||
Line 21: | Line 24: | ||
==== Parameters ==== | ==== Parameters ==== | ||
; type - ''string'' | ; type - ''string'' | ||
− | : type of session persistence (currently, only HTTP_COOKIE is supported) | + | : type of session persistence |
+ | : Allowed value is '''HTTP_COOKIE''' (currently, only HTTP_COOKIE is supported) | ||
== Response == | == Response == | ||
Line 27: | Line 31: | ||
=== Response Codes === | === Response Codes === | ||
; 204 No Content | ; 204 No Content | ||
+ | |||
+ | ; 400 Bad Request | ||
+ | : The request has wrong data | ||
; 401 Unauthorized | ; 401 Unauthorized | ||
Line 33: | Line 40: | ||
; 404 Not Found | ; 404 Not Found | ||
: The resource does not exist. | : The resource does not exist. | ||
− | |||
− | |||
− | |||
== Examples == | == Examples == | ||
Line 42: | Line 46: | ||
'''Request''' | '''Request''' | ||
<pre> | <pre> | ||
− | PUT /accounts/{accountId}/loadbalancers/0001/ | + | PUT /accounts/{accountId}/loadbalancers/0001/nodePools/123/sessionPersistence |
Content-Type:application/json | Content-Type:application/json | ||
Charset=UTF-8 | Charset=UTF-8 | ||
− | Authorization:Base64-encoded username & password string | + | Authorization: Basic {Base64-encoded username & password string} |
{ | { | ||
Line 55: | Line 59: | ||
<pre> | <pre> | ||
HTTP/1.1 204 No Content | HTTP/1.1 204 No Content | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</pre> | </pre> | ||
− | |||
[[Category:Hostway API]] | [[Category:Hostway API]] | ||
[[Category:Load Balancer API]] | [[Category:Load Balancer API]] |
Revision as of 13:44, 3 February 2015
Contents |
PUT /accounts/{accountId}/loadbalancers/{lbId}/nodePools/{nodePoolId}/sessionPersistence
This operation will add or modify the session persistence of an existing load balancer
Request
PUT /accounts/{accountId}/loadbalancers/{lbId}/nodePools/{nodePoolId}/sessionPersistence
Request Parameters
- accountId - string
- The selected account id.
- lbId - string
- The selected loadbalancer id.
- nodePoolId - string
- The selected node pool id.
Request Body
{ "persistenceType": "{type}", }
Parameters
- type - string
- type of session persistence
- Allowed value is HTTP_COOKIE (currently, only HTTP_COOKIE is supported)
Response
Response Codes
- 204 No Content
- 400 Bad Request
- The request has wrong data
- 401 Unauthorized
- This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
- 404 Not Found
- The resource does not exist.
Examples
Successfully add persistence to a load balancer (whether or not persistence was already enabled)
Request
PUT /accounts/{accountId}/loadbalancers/0001/nodePools/123/sessionPersistence Content-Type:application/json Charset=UTF-8 Authorization: Basic {Base64-encoded username & password string} { "persistenceType":"HTTP_COOKIE" }
Response
HTTP/1.1 204 No Content