class Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::FirewallRule
Data Lake Analytics firewall rule information.
Attributes
end_ip_address[RW]
@return [String] The end IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
start_ip_address[RW]
@return [String] The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
Private Class Methods
mapper()
click to toggle source
Mapper for FirewallRule
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/firewall_rule.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FirewallRule', type: { name: 'Composite', class_name: 'FirewallRule', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, start_ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.startIpAddress', type: { name: 'String' } }, end_ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.endIpAddress', type: { name: 'String' } } } } } end