HTTPMethod#

class eclypse.remote.communication.rest.methods.HTTPMethod[source]#

Bases: StrEnum

HTTP methods supported by the EclypseREST communication interface.

Methods

Attributes

GET

The HTTP GET method.

POST

The HTTP POST method.

PUT

The HTTP PUT method.

DELETE

The HTTP DELETE method.

GET = 'GET'#

The HTTP GET method.

POST = 'POST'#

The HTTP POST method.

__new__(value)#
PUT = 'PUT'#

The HTTP PUT method.

DELETE = 'DELETE'#

The HTTP DELETE method.