Class: Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConfiguration
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb
Overview
VpnClientConfiguration for P2S client.
Instance Attribute Summary collapse
-
#radius_server_address ⇒ String
VirtualNetworkGateway resource for vpn client connection.
-
#radius_server_secret ⇒ String
VirtualNetworkGateway resource for vpn client connection.
-
#vpn_client_address_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
-
#vpn_client_ipsec_policies ⇒ Array<IpsecPolicy>
gateway P2S client.
-
#vpn_client_protocols ⇒ Array<VpnClientProtocol>
network gateway.
-
#vpn_client_revoked_certificates ⇒ Array<VpnClientRevokedCertificate>
VpnClientRevokedCertificate for Virtual network gateway.
-
#vpn_client_root_certificates ⇒ Array<VpnClientRootCertificate>
virtual network gateway.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VpnClientConfiguration class as Ruby Hash.
Instance Attribute Details
#radius_server_address ⇒ String
VirtualNetworkGateway resource for vpn client connection.
37 38 39 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 37 def radius_server_address @radius_server_address end |
#radius_server_secret ⇒ String
VirtualNetworkGateway resource for vpn client connection.
41 42 43 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 41 def radius_server_secret @radius_server_secret end |
#vpn_client_address_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
17 18 19 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 17 def vpn_client_address_pool @vpn_client_address_pool end |
#vpn_client_ipsec_policies ⇒ Array<IpsecPolicy>
gateway P2S client.
33 34 35 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 33 def vpn_client_ipsec_policies @vpn_client_ipsec_policies end |
#vpn_client_protocols ⇒ Array<VpnClientProtocol>
network gateway.
29 30 31 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 29 def vpn_client_protocols @vpn_client_protocols end |
#vpn_client_revoked_certificates ⇒ Array<VpnClientRevokedCertificate>
VpnClientRevokedCertificate for Virtual network gateway.
25 26 27 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 25 def vpn_client_revoked_certificates @vpn_client_revoked_certificates end |
#vpn_client_root_certificates ⇒ Array<VpnClientRootCertificate>
virtual network gateway.
21 22 23 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 21 def vpn_client_root_certificates @vpn_client_root_certificates end |
Class Method Details
.mapper ⇒ Object
Mapper for VpnClientConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VpnClientConfiguration', type: { name: 'Composite', class_name: 'VpnClientConfiguration', model_properties: { vpn_client_address_pool: { client_side_validation: true, required: false, serialized_name: 'vpnClientAddressPool', type: { name: 'Composite', class_name: 'AddressSpace' } }, vpn_client_root_certificates: { client_side_validation: true, required: false, serialized_name: 'vpnClientRootCertificates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VpnClientRootCertificateElementType', type: { name: 'Composite', class_name: 'VpnClientRootCertificate' } } } }, vpn_client_revoked_certificates: { client_side_validation: true, required: false, serialized_name: 'vpnClientRevokedCertificates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VpnClientRevokedCertificateElementType', type: { name: 'Composite', class_name: 'VpnClientRevokedCertificate' } } } }, vpn_client_protocols: { client_side_validation: true, required: false, serialized_name: 'vpnClientProtocols', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VpnClientProtocolElementType', type: { name: 'String' } } } }, vpn_client_ipsec_policies: { client_side_validation: true, required: false, serialized_name: 'vpnClientIpsecPolicies', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'IpsecPolicyElementType', type: { name: 'Composite', class_name: 'IpsecPolicy' } } } }, radius_server_address: { client_side_validation: true, required: false, serialized_name: 'radiusServerAddress', type: { name: 'String' } }, radius_server_secret: { client_side_validation: true, required: false, serialized_name: 'radiusServerSecret', type: { name: 'String' } } } } } end |