~juju-qa/juju-ci-tools/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
from jujupy.client import (
    AgentsNotStarted,
    AuthNotAccepted,
    ConditionList,
    get_cache_path,
    get_machine_dns_name,
    get_timeout_prefix,
    InvalidEndpoint,
    jes_home_path,
    JESNotSupported,
    JujuData,
    JUJU_DEV_FEATURE_FLAGS,
    Juju2Backend,
    KILL_CONTROLLER,
    KVM_MACHINE,
    LXC_MACHINE,
    LXD_MACHINE,
    Machine,
    ModelClient,
    NameNotAccepted,
    NoProvider,
    parse_new_state_server_from_error,
    SimpleEnvironment,
    SoftDeadlineExceeded,
    Status,
    temp_bootstrap_env,
    _temp_env,
    TypeNotAccepted,
    uniquify_local,
    )
from jujupy.configuration import (
    get_juju_data,
    get_juju_home,
    NoSuchEnvironment,
    )
from jujupy.fake import (
    FakeBackend,
    FakeControllerState,
    fake_juju_client,
    fake_juju_client_optional_jes,
    )
from jujupy.version_client import (
    client_from_config,
    client_for_existing,
    EnvJujuClient1X,
    EnvJujuClient25,
    get_client_class,
    IncompatibleConfigClass,
    )

__all__ = [
    'AgentsNotStarted',
    'AuthNotAccepted',
    'client_from_config',
    'client_for_existing',
    'ConditionList',
    'EnvJujuClient1X',
    'EnvJujuClient25',
    'FakeBackend',
    'FakeControllerState',
    'fake_juju_client',
    'fake_juju_client_optional_jes',
    'get_cache_path',
    'get_client_class',
    'get_juju_data',
    'get_juju_home',
    'get_machine_dns_name',
    'get_timeout_prefix',
    'IncompatibleConfigClass',
    'InvalidEndpoint',
    'jes_home_path',
    'JESNotSupported',
    'JujuData',
    'JUJU_DEV_FEATURE_FLAGS',
    'Juju2Backend',
    'KILL_CONTROLLER',
    'KVM_MACHINE',
    'LXC_MACHINE',
    'LXD_MACHINE',
    'Machine',
    'ModelClient',
    'NameNotAccepted',
    'NoProvider',
    'NoSuchEnvironment',
    'parse_new_state_server_from_error',
    'SimpleEnvironment',
    'SoftDeadlineExceeded',
    'Status',
    'temp_bootstrap_env',
    '_temp_env',
    'TypeNotAccepted',
    'uniquify_local',
    ]