Source code for f5.bigip.tm.asm.attack_types

# coding=utf-8
#
# Copyright 2015-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.
#

from f5.bigip.resource import AsmResource
from f5.bigip.resource import Collection
from f5.sdk_exception import UnsupportedOperation


[docs]class Attack_Types_s(Collection): """BIG-IP® ASM Attack Types collection.""" def __init__(self, asm): super(Attack_Types_s, self).__init__(asm) self._meta_data['object_has_stats'] = False self._meta_data['allowed_lazy_attributes'] = [Attack_Type] self._meta_data['attribute_registry'] = { 'tm:asm:attack-types:attack-typestate': Attack_Type}
[docs]class Attack_Type(AsmResource): """BIG-IP® ASM Attack Type resource""" def __init__(self, attack_types_s): super(Attack_Type, self).__init__(attack_types_s) self._meta_data['required_json_kind'] =\ 'tm:asm:attack-types:attack-typestate'
[docs] def create(self, **kwargs): """Create is not supported for Attack Type resource :raises: UnsupportedOperation """ raise UnsupportedOperation( "%s does not support the create method" % self.__class__.__name__ )
[docs] def delete(self, **kwargs): """Delete is not supported for Attack Type resource :raises: UnsupportedOperation """ raise UnsupportedOperation( "%s does not support the delete method" % self.__class__.__name__ )
[docs] def modify(self, **kwargs): """Modify is not supported for Attack Type resource :raises: UnsupportedOperation """ raise UnsupportedOperation( "%s does not support the modify method" % self.__class__.__name__ )