|
| 1 | +# coding=utf-8 |
| 2 | +# |
| 3 | +# Copyright 2018 F5 Networks Inc. |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | + |
| 18 | +"""BIG-IP® system connection module |
| 19 | +
|
| 20 | +REST URI |
| 21 | + ``http://localhost/mgmt/tm/sys/connection`` |
| 22 | +
|
| 23 | +REST Kind |
| 24 | + ``tm:sys:connection:connectionstats:*`` |
| 25 | +""" |
| 26 | + |
| 27 | +from f5.bigip.resource import UnnamedResource |
| 28 | +from f5.sdk_exception import UnsupportedOperation |
| 29 | + |
| 30 | + |
| 31 | +class Connection(UnnamedResource): |
| 32 | + """BIG-IP® system host info unnamed resource""" |
| 33 | + def __init__(self, sys): |
| 34 | + super(Connection, self).__init__(sys) |
| 35 | + self._meta_data['object_has_stats'] = False |
| 36 | + self._meta_data['required_load_parameters'] = set() |
| 37 | + self._meta_data['required_json_kind'] =\ |
| 38 | + 'tm:sys:connection:connectionstats' |
| 39 | + |
| 40 | + def create(self, **kwargs): |
| 41 | + '''Create is not supported for connection resources. |
| 42 | +
|
| 43 | + :raises: UnsupportedOperation |
| 44 | + ''' |
| 45 | + raise UnsupportedOperation( |
| 46 | + "Operation not allowed on connections." |
| 47 | + ) |
0 commit comments