Class: Azure::Network::Mgmt::V2018_06_01::Models::VpnClientParameters
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_06_01::Models::VpnClientParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb
Overview
Vpn Client Parameters for package generation
Instance Attribute Summary collapse
-
#authentication_method ⇒ AuthenticationMethod
Possible values are: 'EAPTLS' and 'EAPMSCHAPv2'.
-
#client_root_certificates ⇒ Array<String>
certificate data encoded as Base-64 strings.
-
#processor_architecture ⇒ ProcessorArchitecture
Possible values are: 'AMD64' and 'X86'.
-
#radius_server_auth_certificate ⇒ String
authentication certificate as a Base-64 encoded string.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VpnClientParameters class as Ruby Hash.
Instance Attribute Details
#authentication_method ⇒ AuthenticationMethod
Possible values are: 'EAPTLS' and 'EAPMSCHAPv2'. Possible values include: 'EAPTLS', 'EAPMSCHAPv2'
23 24 25 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 23 def authentication_method @authentication_method end |
#client_root_certificates ⇒ Array<String>
certificate data encoded as Base-64 strings. Optional parameter for external radius based authentication with EAPTLS.
34 35 36 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 34 def client_root_certificates @client_root_certificates end |
#processor_architecture ⇒ ProcessorArchitecture
Possible values are: 'AMD64' and 'X86'. Possible values include: 'Amd64', 'X86'
18 19 20 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 18 def processor_architecture @processor_architecture end |
#radius_server_auth_certificate ⇒ String
authentication certificate as a Base-64 encoded string. Required only if external radius authentication has been configured with EAPTLS authentication.
29 30 31 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 29 def radius_server_auth_certificate @radius_server_auth_certificate end |
Class Method Details
.mapper ⇒ Object
Mapper for VpnClientParameters class as Ruby Hash. This will be used for serialization/deserialization.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/vpn_client_parameters.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VpnClientParameters', type: { name: 'Composite', class_name: 'VpnClientParameters', model_properties: { processor_architecture: { client_side_validation: true, required: false, serialized_name: 'processorArchitecture', type: { name: 'String' } }, authentication_method: { client_side_validation: true, required: false, serialized_name: 'authenticationMethod', type: { name: 'String' } }, radius_server_auth_certificate: { client_side_validation: true, required: false, serialized_name: 'radiusServerAuthCertificate', type: { name: 'String' } }, client_root_certificates: { client_side_validation: true, required: false, serialized_name: 'clientRootCertificates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |