class Azure::Network::Mgmt::V2020_04_01::Models::VirtualWanSecurityProvider

Collection of SecurityProviders.

Attributes

name[RW]

@return [String] Name of the security provider.

type[RW]

@return [VirtualWanSecurityProviderType] Name of the security provider. Possible values include: 'External', 'Native'

url[RW]

@return [String] Url of the security provider.

Public Class Methods

mapper() click to toggle source

Mapper for VirtualWanSecurityProvider class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-04-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