class documentation
class Operation(ACMEIntEnum):
Request operations.
| Class Method | isvalid |
Check whether an operation is valid. |
| Class Method | to |
Convert an integer or None to an Operation. Returns an Operation or None. |
| Method | permission |
Return the corresponding permission for an operation. |
| Constant | CREATE |
CREATE operation |
| Constant | DELETE |
DELETE operation |
| Constant | DISCOVERY |
DISCOVERY operation (special form of a RETRIEVE operation) |
| Constant | NA |
Not applicable |
| Constant | NOTIFY |
NOTIFY operation |
| Constant | RETRIEVE |
RETRIEVE operation |
| Constant | UPDATE |
UPDATE operation |
Inherited from ACMEIntEnum:
| Class Method | has |
Check whether the enum type has an entry with either the given int value or string name. |
| Class Method | to |
Return an enum value by its name. |
| Method | __int__ |
Get the integer value of an enum. |
| Method | __repr__ |
Stringify an enum. |
| Method | __str__ |
Stringify an enum. |