Class: Azure::ARM::Network::Models::VpnClientParameters

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb

Overview

Vpn Client Parameters for package generation

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#authentication_methodAuthenticationMethod

Possible values are: ‘EAPTLS’ and ‘EAPMSCHAPv2’. Possible values include: ‘EAPTLS’, ‘EAPMSCHAPv2’

Returns:



24
25
26
# File 'lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 24

def authentication_method
  @authentication_method
end

#client_root_certificatesArray<String>

certificate data encoded as Base-64 strings. Optional parameter for external radius based authentication with EAPTLS.

Returns:

  • (Array<String>)

    A list of client root certificates public



35
36
37
# File 'lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 35

def client_root_certificates
  @client_root_certificates
end

#processor_architectureProcessorArchitecture

Possible values are: ‘AMD64’ and ‘X86’. Possible values include: ‘Amd64’, ‘X86’

Returns:



19
20
21
# File 'lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 19

def processor_architecture
  @processor_architecture
end

#radius_server_auth_certificateString

authentication certificate as a Base-64 encoded string. Required only if external radius authentication has been configured with EAPTLS authentication.

Returns:

  • (String)

    The public certificate data for the radius server



30
31
32
# File 'lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 30

def radius_server_auth_certificate
  @radius_server_auth_certificate
end

Class Method Details

.mapperObject

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



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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 42

def self.mapper()
  {
    required: false,
    serialized_name: 'VpnClientParameters',
    type: {
      name: 'Composite',
      class_name: 'VpnClientParameters',
      model_properties: {
        processor_architecture: {
          required: false,
          serialized_name: 'processorArchitecture',
          type: {
            name: 'String'
          }
        },
        authentication_method: {
          required: false,
          serialized_name: 'authenticationMethod',
          type: {
            name: 'String'
          }
        },
        radius_server_auth_certificate: {
          required: false,
          serialized_name: 'radiusServerAuthCertificate',
          type: {
            name: 'String'
          }
        },
        client_root_certificates: {
          required: false,
          serialized_name: 'clientRootCertificates',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end