2018-08-18 03:16:23 -04:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"$id": "endpoints/access-lists",
|
|
|
|
"title": "Access Lists",
|
|
|
|
"description": "Endpoints relating to Access Lists",
|
|
|
|
"stability": "stable",
|
|
|
|
"type": "object",
|
|
|
|
"definitions": {
|
|
|
|
"id": {
|
|
|
|
"$ref": "../definitions.json#/definitions/id"
|
|
|
|
},
|
|
|
|
"created_on": {
|
|
|
|
"$ref": "../definitions.json#/definitions/created_on"
|
|
|
|
},
|
|
|
|
"modified_on": {
|
|
|
|
"$ref": "../definitions.json#/definitions/modified_on"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Name of the Access List"
|
|
|
|
},
|
2020-04-10 19:38:54 -04:00
|
|
|
"directive": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["allow", "deny"]
|
|
|
|
},
|
|
|
|
"address": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "ipv4"
|
|
|
|
},
|
2018-08-18 03:16:23 -04:00
|
|
|
"meta": {
|
|
|
|
"type": "object"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"$ref": "#/definitions/id"
|
|
|
|
},
|
|
|
|
"created_on": {
|
|
|
|
"$ref": "#/definitions/created_on"
|
|
|
|
},
|
|
|
|
"modified_on": {
|
|
|
|
"$ref": "#/definitions/modified_on"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"$ref": "#/definitions/name"
|
|
|
|
},
|
|
|
|
"meta": {
|
|
|
|
"$ref": "#/definitions/meta"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"links": [
|
|
|
|
{
|
|
|
|
"title": "List",
|
|
|
|
"description": "Returns a list of Access Lists",
|
|
|
|
"href": "/nginx/access-lists",
|
|
|
|
"access": "private",
|
|
|
|
"method": "GET",
|
|
|
|
"rel": "self",
|
|
|
|
"http_header": {
|
|
|
|
"$ref": "../examples.json#/definitions/auth_header"
|
|
|
|
},
|
|
|
|
"targetSchema": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "#/properties"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Create",
|
|
|
|
"description": "Creates a new Access List",
|
|
|
|
"href": "/nginx/access-list",
|
|
|
|
"access": "private",
|
|
|
|
"method": "POST",
|
|
|
|
"rel": "create",
|
|
|
|
"http_header": {
|
|
|
|
"$ref": "../examples.json#/definitions/auth_header"
|
|
|
|
},
|
|
|
|
"schema": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"name"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"$ref": "#/definitions/name"
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"type": "array",
|
|
|
|
"minItems": 1,
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"username": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"password": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-04-10 19:38:54 -04:00
|
|
|
"clients": {
|
|
|
|
"type": "array",
|
|
|
|
"minItems": 0,
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"address": {
|
|
|
|
"$ref": "#/definitions/address"
|
|
|
|
},
|
|
|
|
"directive": {
|
|
|
|
"$ref": "#/definitions/directive"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-08-18 03:16:23 -04:00
|
|
|
"meta": {
|
|
|
|
"$ref": "#/definitions/meta"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"targetSchema": {
|
|
|
|
"properties": {
|
|
|
|
"$ref": "#/properties"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-08-20 18:33:51 -04:00
|
|
|
{
|
|
|
|
"title": "Update",
|
|
|
|
"description": "Updates a existing Access List",
|
|
|
|
"href": "/nginx/access-list/{definitions.identity.example}",
|
|
|
|
"access": "private",
|
|
|
|
"method": "PUT",
|
|
|
|
"rel": "update",
|
|
|
|
"http_header": {
|
|
|
|
"$ref": "../examples.json#/definitions/auth_header"
|
|
|
|
},
|
|
|
|
"schema": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"$ref": "#/definitions/name"
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"type": "array",
|
|
|
|
"minItems": 1,
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"username": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"password": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-10 19:38:54 -04:00
|
|
|
},
|
|
|
|
"clients": {
|
|
|
|
"type": "array",
|
|
|
|
"minItems": 0,
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"address": {
|
|
|
|
"$ref": "#/definitions/address"
|
|
|
|
},
|
|
|
|
"directive": {
|
|
|
|
"$ref": "#/definitions/directive"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 18:33:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"targetSchema": {
|
|
|
|
"properties": {
|
|
|
|
"$ref": "#/properties"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-08-18 03:16:23 -04:00
|
|
|
{
|
|
|
|
"title": "Delete",
|
|
|
|
"description": "Deletes a existing Access List",
|
|
|
|
"href": "/nginx/access-list/{definitions.identity.example}",
|
|
|
|
"access": "private",
|
|
|
|
"method": "DELETE",
|
|
|
|
"rel": "delete",
|
|
|
|
"http_header": {
|
|
|
|
"$ref": "../examples.json#/definitions/auth_header"
|
|
|
|
},
|
|
|
|
"targetSchema": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|