Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleGET,DELETE
GET
URL: /v1/cadist/logicalcloud/{logical cloud name}

RETURN STATUS: 200
RETURN BODY:
{
  name: "name of the logical cloud" //must be unique
}

DELETE
URL: /v1/cadist/logicalcloud/{logical cloud name}

RETURN STATUS: 204


Cluster API's


POST

Code Block
titlePOST
POST
URL: /v1/cadist/logicalcloud/{logical cloud name}/cluster
POST BODY:
{ 
  name: "name of the cluster" //must be unique with in the logical cloud
}
RETURN STATUS: 201
RETURN BODY: 
{
  name: "name of the cluster"
} 


GET

Code Block
titleGET
GET
URL: /v1/cadist/logicalcloud/{logical cloud name}/cluster/{cluster name}

RETURN STATUS: 200
RETURN BODY:
{
 name: "name of the cluster"
 json bundle: "signed cert, key and csr"
} 


DELETE


Code Block
titleDELETE
DELETE
URL: /v1/cadist/logicalcloud/{logical cloud name}/cluster/{cluster name}

RETURN STATUS: 204