class documentation

class ACMEContainerCreate(Container):

Constructor: ACMEContainerCreate(id)

View In Hierarchy

The Create view for the ACME text UI. This is a container that contains the Create 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 doCreate Handle the Send CREATE Request button event.
Method selectChangedCallback Callback for the select change.
Method updateResource Update the resource to update.
Constant BINDINGS Key bindings for the Create view.
Instance Variable requestOriginator The request originator.
Instance Variable requestView The request view.
Instance Variable resource The current resource under which a new resource will be created.
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 doCreate(self):

Handle the Send CREATE Request button event.

def selectChangedCallback(self, value: int):

Callback for the select change.

Parameters
value:intThe value of the select.
def updateResource(self, resource: Resource):

Update the resource to update.

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

Key bindings for the Create view.

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

The request originator.

requestView: ACMEViewRequest =

The request view.

resource: Resource =

The current resource under which a new resource will be created.

responseView: ACMEViewResponse =

The response view.

_app =

The application.