Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning
titlePage in development

This page is in development and as such, its contents may be incorrect

The policy policies API provides functionality that allows a administrator to add, delete or update policies

Table of Contents

Section
List

Get all policies

Lists all the policies configured in the Aspire

Panel
borderColorblack
bgColor#fafafb
GET /aspire_api/policypolicies

Query String Parameters

NameTypeRequiredDescription
typestringOptionalFilter returned seeds to only those with the given type
descriptionstringOptionalFilter returned seeds to only those whose description matches the given expression

Response

Code Block
languagejs
{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "throttle",
    ...
  },
  {
    "id": "AAABcIueWUc=",
    "type": "execution",
    ...
  }],
  "message": "optional response message"
}

Status

Response codeDescription
200Success




Section

Get a single policy

Get information about a single policy configured in Aspire

Panel
borderColorblack
bgColor#fafafb

GET /aspire_api/policypolicies/:id

Path Parameters

NameTypeRequiredDescription
idstringRequiredThe id of the policy to return

Response

Code Block
languagejs
{
  "policy": {
    "id": "AAABcID5GBc=",
    "type": "throttle",
    ...
 },

  "message": "optional response message"
}

Status

Response codeDescription
200Success
404The given seed id was not found




Section

Add

a policy

policies

Adds one policy or more policies to Aspire

Panel
borderColorblack
bgColor#fafafb
POST /aspire_api/policypolicies

Request Body Parameters

NameTypeRequiredDescription
typestringRequiredThe type of policy to add
descriptionstringOptionalAn optional description of the seed

Other parameters passed in the request body will depend on the type of policy being created

Examples

Add a single policy

Code Block
languagejs
POST /aspire_api/policies
{
  "type": "Throttle",
  "description": "Europe Net Appliance throttle"
  ...
}


Add multiple policies


Code Block
languagejs
POST /aspire_api/policies
[{
  "type": "Throttle",
  "description": "Europe Net Appliance throttle"
  ...
},
{
  "type": "Route",
  "description": "German server"
  ...
}]

Response

Code Block
languagejs
{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "throttle"
    "description": "Europe Net Appliance"
    ...
   }],
  "message": "optional response message"
}

Status

Response codeDescription
201Created
406Not acceptable - there was an issue validating the input




Section

Update

a policy

policies

Update a policy in Aspire. Updates will be treated as partial updates rather than overwrites. If a field is not present in the input, any previous value will remain after the update. If you wish to "delete" a value, pass a value of null

Panel
borderColorblack
bgColor#fafafb

PUT /aspire_api/policies/:id

PUT /aspire_api/

policy

policies

Path and Request Body Parameters

NameTypeRequiredDescription
idstringRequiredThe identifier of the policy to update
typestringRequiredOptionalThe type of policy
descriptionstringOptionalAn optional description of the seed

Other parameters passed in the request body will depend on the type of policy being created - see Add a Policy API above

Examples

Update a single policy

Code Block
languagejs
PUT /aspire_api/policies/AAABcID5GBc%3D
{
  "id": "AAABcID5GBc=",
  "type": "throttle"
  "description": "Europe Net Appliance"
  ...
}


Update multiple policies


Code Block
languagejs
PUT /aspire_api/policies
{
  "AAABcID5GBc=": {
    "id": "AAABcID5GBc=",
    "type": "throttle"
    "description": "Europe Net Appliance"
    ...
  },
  "AAABcID5GBd=": {
    "id": "AAABcID5GBd=",
    "type": "route"
    "description": "German server"
    ...
  }
}

Response

Code Block
languagejs
{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "throttle"
    "description": "Europe Net Appliance"
    ...
   }],
  "message": "optional response message"
}

Status

Response codeDescription
201Created
404Not found - a given seed identifier was not found
406Not acceptable - there was an issue validating the input




Section

Delete

policy(

policies

)

Delete one or more policies from Aspire.

Panel
borderColorblack
bgColor#fafafb

DELETE /aspire_api/policypolicies/:id

DELETE /aspire_api/policypolicies

Path and Request Body Parameters

NameTypeRequiredDescription
idstringRequiredThe identifier(s) of the policy(s) to delete

Examples

Delete a single policy

Code Block
languagejs
{
  "id": "AAABcID5GBc="
}DELETE /aspire_api/policies/AAABcID5GBc%3D

Delete multiple seeds

Code Block
languagejs
[{
  "id": "AAABcID5GBc="
},
{
  "id": "AAABcIueWUc="
}]

Delete multiple policies (alternative form)

Code Block
languagejs
{
  "id": ["AAABcID5GBc=", "AAABcIueWUc="]
}DELETE /aspire_api/policies?id=AAABcID5GBc%3D&id=AAABcIueWUc%3D

Response

Code Block
languagejs
{
  "message": "optional response message"
}

Status

Response codeDescription
200Success
404Not found - a given seed identifier was not found
406Not acceptable - there was an issue validating the input