class documentation

class ACMEContainerDelete(Container):

Constructor: ACMEContainerDelete(id)

View In Hierarchy

The Delete view for the ACME text UI. This is a container that contains the Delete request view and the response view.

Method __init__ Initialize the view.
Method action_show_request Show the current request as cURL command.
Method compose Build the Delete view.
Method doDelete Handle the DELETE Request button event. This is a callback function.
Method updateResource Update the resource to delete.
Constant BINDINGS Key bindings for the Delete view.
Instance Variable requestOriginator The request originator.
Instance Variable requestView The request view.
Instance Variable resource The resource to delete.
Instance Variable responseView The response view.
Instance Variable _app The application.
def __init__(self, id: str):

Initialize the view.

Parameters
id:strThe view ID.
def action_show_request(self):

Show the current request as cURL command.

def compose(self) -> ComposeResult:

Build the Delete view.

Returns
ComposeResultThe composed view.
def doDelete(self):

Handle the DELETE Request button event. This is a callback function.

def updateResource(self, resource: Resource):

Update the resource to delete.

Parameters
resource:ResourceThe resource to delete.
BINDINGS: list =

Key bindings for the Delete view.

Value
[('c', 'show_request', 'cURL command')]
requestOriginator =

The request originator.

requestView: ACMEViewRequest =

The request view.

resource: Resource =

The resource to delete.

responseView =

The response view.

_app =

The application.