🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

redis-enterprise-python

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-enterprise-python

Redis Enterprise API

1.0.3
PyPI
Maintainers
1

Redis Enterprise API

REST API Specifications

Key Concepts

Clusters

Redis Labs clusters are a set of nodes, typically two or more, providing database services. Clusters are inherently multi-tenant, and a single cluster can manage multiple databases accessed through individual endpoints.

Protocol and Headers

JSON Requests and Responses

The Redis Labs REST API uses the JavaScript Object Notation (JSON) for requests and responses. Some responses may have an empty body, but indicate the response with standard HTTP codes. For more information, see RFC 4627 (http://www.ietf.org/rfc/rfc4627.txt) and www.json.org.

Both requests and responses may include zero or more objects. In case the request is for a single entity, the response shall return a single JSON object, or none. In case the request if for a list of entities, the response shall return a single JSON array with 0 or more elements. Requests may be delivered with some JSON object fields missing. In this case, these fields will be assigned default values (often indicating they are not in use).

Request Headers

The Redis Labs REST API supports the following HTTP headers:

HeaderSupported/Required Values
Acceptapplication/json
Content-LengthLength (in bytes) of request message.
Content-Typeapplication/json

Response Headers

The Redis Labs REST API supports the following HTTP headers:

HeaderSupported/Required Values
Content-Typeapplication/json
Content-LengthLength (in bytes) of request message.

API Versions

All RLEC API operations are versioned, in order to minimize the impact of backwards-incompatible API changes and to coordinate between different versions operating in parallel.

Authentication

Authentication to RLEC API occurs via Basic Auth. Provide your RLEC username and password as the basic auth credentials. All calls must be made over SSL, to port 9443.

Example Request:

curl -u "demo@redislabs.com:password" https://localhost:9443/v1/bdbs 

Common Responses

The following are common responses which may be returned in some cases regardless of any specific request.

ResponseCondition / Required handling
503 (Service Unavailable)Contacted node is currently not a member of any active cluster.
505 (HTTP Version Not Supported)An unsupported X-API-Version was used, see API Versions above.

noqa: E501

Keywords

Swagger

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts