Retrieves a list of AWS storage types
GET/v1/clouds/aws/regions/:region/storagetypes
Retrieves a list of AWS storage types
Request
Path Parameters
Region for which AWS storage types are requested
Header Parameters
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
Array [
]
Array [
]
]
storageTypes
object[]
List of AWS storage types
cost
object
Cloud storage cost
Cloud storage upper limit which is free.
price
object[]
Array of cloud storage range prices
Upper limit of cloud storage usage
Price of cloud storage type
iopsCost
object
Cloud storage cost
Cloud storage upper limit which is free.
price
object[]
Array of cloud storage range prices
Upper limit of cloud storage usage
Price of cloud storage type
kind of storage type
Name of the storage type
throughputCost
object
Cloud storage cost
Cloud storage upper limit which is free.
price
object[]
Array of cloud storage range prices
Upper limit of cloud storage usage
Price of cloud storage type
{
"storageTypes": [
{
"cost": {
"discountedUsage": "string",
"price": [
{
"limit": "string",
"price": "string"
}
]
},
"iopsCost": {
"discountedUsage": "string",
"price": [
{
"limit": "string",
"price": "string"
}
]
},
"kind": "string",
"name": "string",
"throughputCost": {
"discountedUsage": "string",
"price": [
{
"limit": "string",
"price": "string"
}
]
}
}
]
}