Versions Compared

Key

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

...

Code Block
titlePOST
POST
URL: /v1/cadist/logicalcloud/{logicalcloudName}/cluster
POST BODY:
{ 
  name: "name of the cluster" //must be unique with in the logical cloud
  json cert fields: "required cert fields"
}
RETURN STATUS: 201
RETURN BODY: 
{
  lcname: "logical cloud name",
  cname: "name of the cluster",
  jsonbundle: {"rootcert: <cert>, signedcert: <cert>, prikey: <key>, chain: <certs>"}
} 


GET

Code Block
titleGET
GET
URL: /v1/cadist/logicalcloud/{logicalcloudName}/cluster/{clusterName}

RETURN STATUS: 200
RETURN BODY:
{
  lcname: "logical cloud name",
  cname: "name of the cluster",
  jsonbundle: {"rootcert: <cert>, signedcert: <cert>, prikey: <key>, chain: <certs>"}
} 


DELETE

Code Block
titleDELETE
DELETE
URL: /v1/cadist/logicalcloud/{logicalcloudName}/cluster/{clusterName}

RETURN STATUS: 204

...