Class: Azure::Network::Mgmt::V2020_07_01::Models::VpnConnectionPacketCaptureStartParameters
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_07_01::Models::VpnConnectionPacketCaptureStartParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_start_parameters.rb
Overview
Vpn Connection packet capture parameters supplied to start packet capture on gateway connection.
Instance Attribute Summary collapse
-
#filter_data ⇒ String
Start Packet capture parameters on vpn connection.
-
#link_connection_names ⇒ Array<String>
List of site link connection names.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VpnConnectionPacketCaptureStartParameters class as Ruby Hash.
Instance Attribute Details
#filter_data ⇒ String
Returns Start Packet capture parameters on vpn connection.
17 18 19 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_start_parameters.rb', line 17 def filter_data @filter_data end |
#link_connection_names ⇒ Array<String>
Returns List of site link connection names.
20 21 22 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_start_parameters.rb', line 20 def link_connection_names @link_connection_names end |
Class Method Details
.mapper ⇒ Object
Mapper for VpnConnectionPacketCaptureStartParameters 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 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_start_parameters.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VpnConnectionPacketCaptureStartParameters', type: { name: 'Composite', class_name: 'VpnConnectionPacketCaptureStartParameters', model_properties: { filter_data: { client_side_validation: true, required: false, serialized_name: 'filterData', type: { name: 'String' } }, link_connection_names: { client_side_validation: true, required: false, serialized_name: 'linkConnectionNames', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |