Class: Azure::ARM::Network::Models::VerificationIPFlowParameters
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::VerificationIPFlowParameters
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb
Overview
Parameters that define the IP flow to be verified.
Instance Attribute Summary collapse
-
#direction ⇒ Direction
5-tuple.
-
#local_ipaddress ⇒ String
addresses.
-
#local_port ⇒ String
in the range (0-65535).
-
#protocol ⇒ Protocol
‘TCP’, ‘UDP’.
-
#remote_ipaddress ⇒ String
IPv4 addresses.
-
#remote_port ⇒ String
integer in the range (0-65535).
-
#target_nic_resource_id ⇒ String
is enabled on any of them, then this parameter must be specified.
-
#target_resource_id ⇒ String
The ID of the target resource to perform next-hop on.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VerificationIPFlowParameters class as Ruby Hash.
Instance Attribute Details
#direction ⇒ Direction
5-tuple. Possible values include: ‘Inbound’, ‘Outbound’
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 21 def direction @direction end |
#local_ipaddress ⇒ String
addresses.
39 40 41 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 39 def local_ipaddress @local_ipaddress end |
#local_port ⇒ String
in the range (0-65535). Support for * for the source port, which depends on the direction.
30 31 32 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 30 def local_port @local_port end |
#protocol ⇒ Protocol
‘TCP’, ‘UDP’
25 26 27 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 25 def protocol @protocol end |
#remote_ipaddress ⇒ String
IPv4 addresses.
43 44 45 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 43 def remote_ipaddress @remote_ipaddress end |
#remote_port ⇒ String
integer in the range (0-65535). Support for * for the source port, which depends on the direction.
35 36 37 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 35 def remote_port @remote_port end |
#target_nic_resource_id ⇒ String
is enabled on any of them, then this parameter must be specified. Otherwise optional).
48 49 50 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 48 def target_nic_resource_id @target_nic_resource_id end |
#target_resource_id ⇒ String
Returns The ID of the target resource to perform next-hop on.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 17 def target_resource_id @target_resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for VerificationIPFlowParameters class as Ruby Hash. This will be used for serialization/deserialization.
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/generated/azure_mgmt_network/models/verification_ipflow_parameters.rb', line 55 def self.mapper() { required: false, serialized_name: 'VerificationIPFlowParameters', type: { name: 'Composite', class_name: 'VerificationIPFlowParameters', model_properties: { target_resource_id: { required: true, serialized_name: 'targetResourceId', type: { name: 'String' } }, direction: { required: true, serialized_name: 'direction', type: { name: 'String' } }, protocol: { required: true, serialized_name: 'protocol', type: { name: 'String' } }, local_port: { required: true, serialized_name: 'localPort', type: { name: 'String' } }, remote_port: { required: true, serialized_name: 'remotePort', type: { name: 'String' } }, local_ipaddress: { required: true, serialized_name: 'localIPAddress', type: { name: 'String' } }, remote_ipaddress: { required: true, serialized_name: 'remoteIPAddress', type: { name: 'String' } }, target_nic_resource_id: { required: false, serialized_name: 'targetNicResourceId', type: { name: 'String' } } } } } end |