Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::FirewallRule
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::FirewallRule
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/firewall_rule.rb
Overview
Data Lake Analytics firewall rule information.
Instance Attribute Summary collapse
-
#end_ip_address ⇒ String
either ipv4 or ipv6.
-
#start_ip_address ⇒ String
be either ipv4 or ipv6.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FirewallRule class as Ruby Hash.
Instance Attribute Details
#end_ip_address ⇒ String
either ipv4 or ipv6. Start and End should be in the same protocol.
21 22 23 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/firewall_rule.rb', line 21 def end_ip_address @end_ip_address end |
#start_ip_address ⇒ String
be either ipv4 or ipv6. Start and End should be in the same protocol.
17 18 19 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/firewall_rule.rb', line 17 def start_ip_address @start_ip_address end |
Class Method Details
.mapper ⇒ Object
Mapper for FirewallRule class as Ruby Hash. This will be used for serialization/deserialization.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# 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 |