Imports an AWS cluster
POSThttps://api.spectrocloud.com/v1/spectroclusters/aws/import
Authorization: ApiKey
name: ApiKeytype: apiKeydescription: API key authorization where API key can be generated from Palette console under Profile > My API Keysin: header
Imports an AWS cluster
Request
Header Parameters
ProjectUid string
Scope the request to the specified project uid
- application/json
Body
metadata object
spec object
Responses
- 201
Created successfully
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
uidstringrequired
{
"uid": "string"
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X POST 'https://api.spectrocloud.com/v1/spectroclusters/aws/import' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'ApiKey: <API_KEY_VALUE>' \
--data-raw '{
"metadata": {
"annotations": {},
"labels": {},
"name": "string"
},
"spec": {
"clusterConfig": {
"importMode": "read-only",
"proxy": {
"caContainerMountPath": "string",
"caHostPath": "string",
"httpProxy": "string",
"httpsProxy": "string",
"noProxy": "string"
}
}
}
}'