Class: Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorSource
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorSource
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/connection_monitor_source.rb
Overview
Describes the source of connection monitor.
Instance Attribute Summary collapse
-
#port ⇒ Integer
The source port used by connection monitor.
-
#resource_id ⇒ String
connection monitor.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectionMonitorSource class as Ruby Hash.
Instance Attribute Details
#port ⇒ Integer
Returns The source port used by connection monitor.
20 21 22 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/connection_monitor_source.rb', line 20 def port @port end |
#resource_id ⇒ String
connection monitor.
17 18 19 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/connection_monitor_source.rb', line 17 def resource_id @resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectionMonitorSource class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/connection_monitor_source.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectionMonitorSource', type: { name: 'Composite', class_name: 'ConnectionMonitorSource', model_properties: { resource_id: { client_side_validation: true, required: true, serialized_name: 'resourceId', type: { name: 'String' } }, port: { client_side_validation: true, required: false, serialized_name: 'port', type: { name: 'Number' } } } } } end |