class documentation

class ACMEContainerUpdate(Container):

Constructor: ACMEContainerUpdate(id)

View In Hierarchy

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

Method __init__ Initialize the view.
Method action_show_request Show the last / current request as cURL command.
Method compose Build the Update view.
Method doUpdate Handle the Send UPDATE Request button event.
Method updateResource Update the resource to update.
Constant BINDINGS Key bindings for the Update view.
Instance Variable requestOriginator The request originator.
Instance Variable requestView The request view.
Instance Variable resource The resource to update.
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 last / current request as cURL command.

def compose(self) -> ComposeResult:

Build the Update view.

Returns
ComposeResultThe composed view.
def doUpdate(self):

Handle the Send UPDATE Request button event.

def updateResource(self, resource: Resource):

Update the resource to update.

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

Key bindings for the Update view.

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

The request originator.

requestView: ACMEViewRequest =

The request view.

resource: Resource =

The resource to update.

responseView: ACMEViewResponse =

The response view.

_app =

The application.