Retrieves a list of GCP instance types
GET/v1/clouds/gcp/regions/:region/instancetypes
Retrieves a list of GCP instance types
Request
Path Parameters
Region for which GCP instance types are requested
Query Parameters
Filter for instances having cpu greater than or equal
Filter for instances having memory greater than or equal
Filter for instances having gpu greater than or equal
Header Parameters
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
instanceTypes
object[]
List of GCP instance types
Category of instance type
cost
object
Instance cost entity
price
object[]
Array of cloud instance price
OnDemand price of instance
Possible values: [linux
, windows
]
Os associated with instance price. Allowed values - [linux, windows]
Spot price of instance
Cpu of instance type
Gpu of instance type
Memory of instance type
Non supported zones of the instance in a particular region
Price of instance type
Supported architecture of the instance
Type of instance type
{
"instanceTypes": [
{
"category": "string",
"cost": {
"price": [
{
"onDemand": 0,
"os": "linux",
"spot": 0
}
]
},
"cpu": 0,
"gpu": 0,
"memory": 0,
"nonSupportedZones": [
"string"
],
"price": 0,
"supportedArchitectures": [
"string"
],
"type": "string"
}
]
}