Versions Compared

Key

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

...

Code Block
titlePOST
POST
URL: /v1v2/cadist/projects
POST BODY:
{
  "pname": "name of the project" //must be unique
  "description": "<description>"
  "casignerin": {"rootcert": <cert>, "signedcert": <cert>, "prikey": <key>, "chain": <certs>}
}

RETURN STATUS: 201
RETURN BODY:
{
  "pname": "name of the project"
  "description": "<description>"
}


GET, DELETE

Code Block
titleGET,DELETE
GET
URL: /v1v2/cadist/projects/{project-name}

RETURN STATUS: 200
RETURN BODY:
{
  "namepname": "name of Project" //must be unique 
  "description": "<description>"
}

DELETE
URL: /v1/cadist/projects/{project-name}

RETURN STATUS: 204

...

Code Block
titlePOST
POST
URL: /v1v2/cadist/projects/{project-name}/logicalclouds
POST BODY:
{
  "lcname": "name of the logical cloud" //must be unique with in the project
  "description": "<description>"
}

RETURN STATUS: 201
RETURN BODY:
{
  "lcname": "name of the logical cloud"
  "description": "<description>"
}


GET, DELETE

Code Block
titleGET,DELETE
GET
URL: /v1v2/cadist/projects/{project-name}/logicalclouds/{logicalcloud-name}

RETURN STATUS: 200
RETURN BODY:
{
  "lcname": "name of the logical cloud"
  "description": "<description>"
}

DELETE
URL: /v1/cadist/projects/{project-name}/logicalclouds/{logicalcloud-name}

RETURN STATUS: 204

...

Code Block
titlePOST
POST
URL: /v1v2/cadist/projects/{project-name}/logicalclouds/{logicalcloud-name}/clusters
POST BODY:
{ 
  "cname": "cluster1", //must be unique with in the logical cloud
  "profile":"intermediate",
  "request":{"CN":"","hosts":["new.com"],"key":{"algo":"rsa","size":2048},"names":[{"C":"US","L":"Santa Clara","O":"Test,Inc.","OU":"WWW","ST":"CA"}]}
  "description": "<description>"
}
RETURN STATUS: 201
RETURN BODY: 
{
  "lcname": "logical cloud name",
  "cname": "name of the cluster",
  "jsonbundledescription": {"rootcert": <cert>, "signedcert": <cert>, "prikey": <key>, "chain": <certs>}<description>"
} 


GET

Code Block
titleGET
GET
URL: /v1v2/cadist/projects/{project-name}/logicalclouds/{logicalcloud-name}/clusters/{cluster-name}

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


DELETE

Code Block
titleDELETE
DELETE
URL: /v1v2/cadist/projects/{project-name}/logicalcloudlogicalclouds/{logicalcloud-name}/clusterclusters/{cluster-name}

RETURN STATUS: 204

...