Sha256: 9d7824264af94e9c9abbca759b1ef661cc74ee42c7c80ce245f2c36a14652f7a
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Web module Models # # Represents an ip security restriction on a web app. # class IpSecurityRestriction include MsRestAzure # @return [String] IP address the security restriction is valid for attr_accessor :ip_address # @return [String] Subnet mask for the range of IP addresses the # restriction is valid for attr_accessor :subnet_mask # # Mapper for IpSecurityRestriction class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'IpSecurityRestriction', type: { name: 'Composite', class_name: 'IpSecurityRestriction', model_properties: { ip_address: { required: true, serialized_name: 'ipAddress', type: { name: 'String' } }, subnet_mask: { required: false, serialized_name: 'subnetMask', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_web-0.8.0 | lib/generated/azure_mgmt_web/models/ip_security_restriction.rb |