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
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class IpSecurityRestriction(Model):
"""IP security restriction on an app.
All required parameters must be populated in order to send to Azure.
:param ip_address: Required. IP address the security restriction is valid
for.
It can be in form of pure ipv4 address (required SubnetMask property) or
CIDR notation such as ipv4/mask (leading bit match). For CIDR,
SubnetMask property must not be specified.
:type ip_address: str
:param subnet_mask: Subnet mask for the range of IP addresses the
restriction is valid for.
:type subnet_mask: str
:param action: Allow or Deny access for this IP range.
:type action: str
:param tag: Defines what this IP filter will be used for. This is to
support IP filtering on proxies. Possible values include: 'Default',
'XffProxy'
:type tag: str or ~azure.mgmt.web.models.IpFilterTag
:param priority: Priority of IP restriction rule.
:type priority: int
:param name: IP restriction rule name.
:type name: str
:param description: IP restriction rule description.
:type description: str
"""
_validation = {
'ip_address': {'required': True},
}
_attribute_map = {
'ip_address': {'key': 'ipAddress', 'type': 'str'},
'subnet_mask': {'key': 'subnetMask', 'type': 'str'},
'action': {'key': 'action', 'type': 'str'},
'tag': {'key': 'tag', 'type': 'IpFilterTag'},
'priority': {'key': 'priority', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'},
'description': {'key': 'description', 'type': 'str'},
}
def __init__(self, **kwargs):
super(IpSecurityRestriction, self).__init__(**kwargs)
self.ip_address = kwargs.get('ip_address', None)
self.subnet_mask = kwargs.get('subnet_mask', None)
self.action = kwargs.get('action', None)
self.tag = kwargs.get('tag', None)
self.priority = kwargs.get('priority', None)
self.name = kwargs.get('name', None)
self.description = kwargs.get('description', None)
|