Class: Azure::Network::Mgmt::V2020_07_01::Models::VpnConnectionPacketCaptureStopParameters
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_07_01::Models::VpnConnectionPacketCaptureStopParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_stop_parameters.rb
Overview
Vpn Connection packet capture parameters supplied to stop packet capture on gateway connection.
Instance Attribute Summary collapse
-
#link_connection_names ⇒ Array<String>
List of site link connection names.
-
#sas_url ⇒ String
SAS url for packet capture on vpn connection.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VpnConnectionPacketCaptureStopParameters class as Ruby Hash.
Instance Attribute Details
#link_connection_names ⇒ Array<String>
20 21 22 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_stop_parameters.rb', line 20 def link_connection_names @link_connection_names end |
#sas_url ⇒ String
17 18 19 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_stop_parameters.rb', line 17 def sas_url @sas_url end |
Class Method Details
.mapper ⇒ Object
Mapper for VpnConnectionPacketCaptureStopParameters 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 56 57 58 59 60 61 62 63 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/vpn_connection_packet_capture_stop_parameters.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VpnConnectionPacketCaptureStopParameters', type: { name: 'Composite', class_name: 'VpnConnectionPacketCaptureStopParameters', model_properties: { sas_url: { client_side_validation: true, required: false, serialized_name: 'sasUrl', 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 |