Statistics
| Branch: | Tag: | Revision:

root / ncclient / operations / __init__.py @ dd225c7a

History | View | Annotate | Download (1.8 kB)

1
# Copyright 2009 Shikhar Bhushan
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
5
# You may obtain a copy of the License at
6
#
7
#    http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14

    
15
from errors import OperationError, TimeoutExpiredError, MissingCapabilityError
16
from rpc import RPC, RPCReply, RPCError
17

    
18
# rfc4741 ops
19
from retrieve import Get, GetConfig, GetReply
20
from edit import EditConfig, CopyConfig, DeleteConfig, Validate, Commit, DiscardChanges
21
from session import CloseSession, KillSession
22
from lock import Lock, Unlock, LockContext
23
# others...
24
from flowmon import PoweroffMachine, RebootMachine
25

    
26
INDEX = {
27
    'get': Get,
28
    'get_config': GetConfig,
29
    'edit_config': EditConfig,
30
    'copy_config': CopyConfig,
31
    'validate': Validate,
32
    'commit': Commit,
33
    'discard_changes': DiscardChanges,
34
    'delete_config': DeleteConfig,
35
    'lock': Lock,
36
    'unlock': Unlock,
37
    'close_session': CloseSession,
38
    'kill_session': KillSession,
39
    'poweroff_machine': PoweroffMachine,
40
    'reboot_machine': RebootMachine
41
}
42

    
43
__all__ = [
44
    'RPC',
45
    'RPCReply',
46
    'RPCError',
47
    'OPERATIONS',
48
    'Get',
49
    'GetConfig',
50
    'GetReply',
51
    'EditConfig',
52
    'CopyConfig',
53
    'Validate',
54
    'Commit',
55
    'DiscardChanges',
56
    'DeleteConfig',
57
    'Lock',
58
    'Unlock',
59
    'PoweroffMachine',
60
    'RebootMachine',
61
    'LockContext',
62
    'CloseSession',
63
    'KillSession',
64
    'OperationError',
65
    'TimeoutExpiredError',
66
    'MissingCapabilityError'
67
]