Getting Buckets
You can get a list of Amazon S3 buckets.
Request
GET https://<hostname>:4443/v6/S3Resources/buckets?accountId=<string>&RegionType=<string>&RegionId=<string> |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
The following parameters must be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
accountId | string | Specifies the identification number of a cloud account. For more information on how to get this parameter, see Getting Accounts. |
RegionType | string | Specifies a region type. The following types are available:
|
The following optional parameters can be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
RegionId | string | Specifies the region ID to which the bucket belongs. |
Name | string | Specifies a bucket name. |
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 200 OK.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTPS headers.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the response body message: application/json; charset=utf-8 |
Response Body
In the response body, the server returns a resource representation of the /S3Resources/buckets resource. The response body contains the following properties:
Property | Type | Description |
---|---|---|
regionType | string | Specifies the region type. |
regionName | string | Specifies the region name. |
regionId | string | Specifies the region ID. |
name | string | Specifies the bucket name. |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Example
The example returns a list of Amazon S3 buckets created by the specified cloud account in the region with the Global region type.
Request: GET https://abc.tech.local:4443/v6/S3Resources/buckets?accountId=c0f030cb-a43a-4713-8da8-717c62a0b4f7&RegionType=Global
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: [ { "regionType": "Global", "regionName": "EU (Paris)", "regionId": "eu-west-3", "name": "Bucket1", "links": { "self": { "href": "/v6/S3Resources/buckets/Bucket1?accountId=c0f030cb-a43a-4713-8da8-717c62a0b4f7&RegionType=Global&RegionId=eu-west-3" }, "account": { "href": "/v6/accounts/c0f030cb-a43a-4713-8da8-717c62a0b4f7" } } }, { "regionType": "Global", "regionName": "EU (Stockholm)", "regionId": "eu-north-1", "name": "Bucket2", "links": { "self": { "href": "/v6/S3Resources/buckets/Bucket2?accountId=c0f030cb-a43a-4713-8da8-717c62a0b4f7&RegionType=Global&RegionId=eu-north-1" }, "account": { "href": "/v6/accounts/c0f030cb-a43a-4713-8da8-717c62a0b4f7" } } }, { "regionType": "Global", "regionName": "US East (Ohio)", "regionId": "us-east-2", "name": "Bucket3", "links": { "self": { "href": "/v6/S3Resources/buckets/Bucket3?accountId=c0f030cb-a43a-4713-8da8-717c62a0b4f7&RegionType=Global&RegionId=us-east-2" }, "account": { "href": "/v6/accounts/c0f030cb-a43a-4713-8da8-717c62a0b4f7" } } }, ... ]
|