Class: Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProvider
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProvider
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/virtual_wan_security_provider.rb
Overview
Collection of SecurityProviders.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the security provider.
-
#type ⇒ VirtualWanSecurityProviderType
Possible values include: 'External', 'Native'.
-
#url ⇒ String
Url of the security provider.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualWanSecurityProvider class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns Name of the security provider.
16 17 18 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/virtual_wan_security_provider.rb', line 16 def name @name end |
#type ⇒ VirtualWanSecurityProviderType
Possible values include: 'External', 'Native'
23 24 25 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/virtual_wan_security_provider.rb', line 23 def type @type end |
#url ⇒ String
Returns Url of the security provider.
19 20 21 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/virtual_wan_security_provider.rb', line 19 def url @url end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualWanSecurityProvider class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/virtual_wan_security_provider.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualWanSecurityProvider', type: { name: 'Composite', class_name: 'VirtualWanSecurityProvider', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, url: { client_side_validation: true, required: false, serialized_name: 'url', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |