Source code for f5.bigip.tm.sys.crypto

# coding=utf-8
#
# Copyright 2016 F5 Networks Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""BIG-IP® system config module

REST URI
    ``http://localhost/mgmt/tm/sys/config``

GUI Path
    N/A

REST Kind
    ``tm:sys:config:*``
"""
from f5.bigip.mixins import CommandExecutionMixin
from f5.bigip.resource import Collection
from f5.bigip.resource import OrganizingCollection
from f5.bigip.resource import Resource


[docs]class Crypto(OrganizingCollection): def __init__(self, sys): super(Crypto, self).__init__(sys) self._meta_data['allowed_lazy_attributes'] = [ Certs, Keys ]
[docs]class Keys(Collection, CommandExecutionMixin): """BIG-IP® Crypto key collection note:: This collection supports install command. Given the fact that we will be expecting hyphen parameters, the function will need to utilize variable keyword argument syntax. In other words define a dictionary with the arbitrary keys and then pass it as in the form **foo into the method call. e.g. param_set ={'from-local-file': FOOPATH, 'name': 'FOOKEY'} bigip.tm.sys.crypto.keys.exec_cmd('install', **param_set) """ def __init__(self, crypto): super(Keys, self).__init__(crypto) self._meta_data['allowed_lazy_attributes'] = [Key] self._meta_data['allowed_commands'].append('install') self._meta_data['attribute_registry'] =\ {'tm:sys:crypto:key:keystate': Key}
[docs]class Key(Resource): """BIG-IP® Crypto key resource""" def __init__(self, keys): super(Key, self).__init__(keys) self._meta_data['required_json_kind'] = 'tm:sys:crypto:key:keystate'
[docs]class Certs(Collection, CommandExecutionMixin): """BIG-IP® Crypto cert collection note:: This collection supports install command. Given the fact that we will be expecting hyphen parameters, the function will need to utilize variable keyword argument syntax. In other words define a dictionary with the arbitrary keys and then pass it as in the form **foo into the method call. e.g. param_set ={'from-local-file': FOOPATH, 'name': 'FOOCERT'} bigip.tm.sys.crypto.certs.exec_cmd('install', **param_set) """ def __init__(self, crypto): super(Certs, self).__init__(crypto) self._meta_data['allowed_lazy_attributes'] = [Cert] self._meta_data['allowed_commands'].append('install') self._meta_data['attribute_registry'] =\ {'tm:sys:crypto:cert:certstate': Cert}
[docs]class Cert(Resource): """BIG-IP® Crypto cert resource""" def __init__(self, certs): super(Cert, self).__init__(certs) self._meta_data['required_json_kind'] = 'tm:sys:crypto:cert:certstate'