...
Code Block | ||
---|---|---|
| ||
POST
URL: /v1/cadist/logicalcloud/{logical cloud name}/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:
{
name: "name of the cluster"
json bundle: "signed cert, key and chain"
} |
GET
Code Block | ||
---|---|---|
| ||
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 chain" } |
...