|
def | __init__ (self, *args, **kwargs) |
|
def | setup_args (self, parser) |
|
def | run (self, args) |
|
def | prerun (self, *args, **kwargs) |
|
def | get_stack (self, name) |
|
Public Member Functions inherited from cli.base.HostingCommand |
def | add_stack_argument (self, *args, env=DEFAULT_STACK_ENV, help=None, metavar='STACK_NAME', **kwargs) |
|
def | check_requirements (self, stack) |
|
|
| terse_headers |
|
| verbose_headers |
|
| table_args_parser |
|
| stacks |
|
|
string | name = 'ls' |
|
dictionary | state_style |
|
string | stacks_bucket = 'homecu.odyssey.stacks' |
|
Static Public Attributes inherited from cli.base.HostingCommand |
| allowed_states = set() |
|
string | min_version = "0" |
|
| max_version = VERSION |
|
|
def | _get_stack_data (self, stack) |
|
List Odyssey stacks used in AWS.
Definition at line 48 of file stack.py.
◆ __init__()
def cli.stack.ListCommand.__init__ |
( |
|
self, |
|
|
* |
args, |
|
|
** |
kwargs |
|
) |
| |
List Command Initialization
Definition at line 62 of file stack.py.
62 def __init__(self, *args, **kwargs):
63 '''List Command Initialization''' 64 super().__init__(*args, **kwargs)
65 self.terse_headers = [
73 self.verbose_headers = [
◆ state_style
dictionary cli.stack.ListCommand.state_style |
|
static |
Initial value:= {
'init': 'blue',
'ready': 'green',
'active': 'green',
'partial_deploy': 'red',
'corrupt': 'red',
'deploying': 'b',
'removing': 'b'
}
Definition at line 52 of file stack.py.
The documentation for this class was generated from the following file: