(PUT) /cloud/gatewayPools/{ID}
Edits settings of a cloud gateway pool with the specified ID.
Request
To edit settings of the cloud gateway pool, you need to send the PUT HTTP request to the URL of the /cloud/gatewayPools/{ID} resource.
HTTP Request
Request Headers
The request contains the following headers:
Header | Required | Description |
---|---|---|
X-RestSvcSessionId | True | The request requires authorization. In the header, the client must send a session ID copied from the server reply to the request creating a new logon session. To learn more, see Authentication and Security. |
Content-Type | True | Identifies the format of the request body message. Possible values:
|
Accept | False | Identifies the format of the response. Possible values:
If the request does not contain the header, the server will return the response in the XML format. |
Request Body
In the request body, the client must send parameters for the cloud gateway pool which settings must be updated. The body of the request must conform to the XML Schema Definition of Veeam Backup Enterprise Manager RESTful API.
The request body must contain the following elements:
Element | Type | Description | Modifiable | Min/Max Occurrence |
---|---|---|---|---|
Name | String | Name of the cloud gateway pool. | Yes | 1/1 |
Description | String | Description of the cloud gateway pool. | Yes | 0/1 |
CloudGateways | CloudGatewayPool | Specifies the list of the cloud gateways included in the cloud gateway pool. At least one cloud gateway must be specified in order to create a cloud gateway pool. For more information, see Cloud Gateway Settings. | Yes | 1/1 |
CloudTenants | CloudGatewayPool | Specifies a list of cloud tenants to whom the cloud gateway pool will be assigned. This parameter is optional, because a gateway pool can be assigned to no tenants. For more information, see Cloud Tenant Settings. | Yes | 0/1 |
BackupServerUid | URN | UID of the Veeam backup server on which the cloud gateway pool must be created. | Yes | 1/1 |
For example:
<?xml version="1.0" encoding="utf-8"?> |
You can define the following parameters:
Element | Type | Description | Modifiable | Min/Max Occurrence |
---|---|---|---|---|
CloudGatewayUid | URN | UID of the cloud gateway included in the cloud gateway pool. Can be obtained from the representation of the /cloud/gateways resource. | Yes | 1/Unbounded |
<CloudGateways> |
You can define the following parameters:
Element | Type | Description | Modifiable | Min/Max Occurrence |
---|---|---|---|---|
CloudTenantUid | URN | UID of the tenant account to which the cloud gateway pool will be assigned. Can be obtained from the representation of the /cloud/tenants resource. | Yes | 1/Unbounded |
<CloudTenants> |
The server returns the following response to the client.
A successfully completed operation returns response code 202 Accepted.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message. Possible values:
|
Request: PUT https://localhost:9398/api/cloud/gatewayPools/4f90635a-7ecc-49fe-beb6-60b37eb4bd89
Request Headers: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj
Request Body: <?xml version="1.0" encoding="utf-8"?>
Response: 202 Accepted
Response Body: <?xml version="1.0" encoding="utf-8"?> |
Request: GET https://localhost:9398/api/tasks/task-2
Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj
Response: 200 OK
Response Body: <Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="https://localhost:9398/api/tasks/task-2"> |