Class: Azure::ARM::Network::Models::VpnClientConfiguration
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::VpnClientConfiguration
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb
Overview
VpnClientConfiguration for P2S client.
Instance Attribute Summary collapse
-
#vpn_client_address_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
-
#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
#vpn_client_address_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
18 19 20 |
# File 'lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 18 def vpn_client_address_pool @vpn_client_address_pool end |
#vpn_client_protocols ⇒ Array<VpnClientProtocol>
network gateway.
30 31 32 |
# File 'lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 30 def vpn_client_protocols @vpn_client_protocols end |
#vpn_client_revoked_certificates ⇒ Array<VpnClientRevokedCertificate>
VpnClientRevokedCertificate for Virtual network gateway.
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 26 def vpn_client_revoked_certificates @vpn_client_revoked_certificates end |
#vpn_client_root_certificates ⇒ Array<VpnClientRootCertificate>
virtual network gateway.
22 23 24 |
# File 'lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 22 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.
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 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 |
# File 'lib/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 37 def self.mapper() { required: false, serialized_name: 'VpnClientConfiguration', type: { name: 'Composite', class_name: 'VpnClientConfiguration', model_properties: { vpn_client_address_pool: { required: false, serialized_name: 'vpnClientAddressPool', type: { name: 'Composite', class_name: 'AddressSpace' } }, vpn_client_root_certificates: { required: false, serialized_name: 'vpnClientRootCertificates', type: { name: 'Sequence', element: { required: false, serialized_name: 'VpnClientRootCertificateElementType', type: { name: 'Composite', class_name: 'VpnClientRootCertificate' } } } }, vpn_client_revoked_certificates: { required: false, serialized_name: 'vpnClientRevokedCertificates', type: { name: 'Sequence', element: { required: false, serialized_name: 'VpnClientRevokedCertificateElementType', type: { name: 'Composite', class_name: 'VpnClientRevokedCertificate' } } } }, vpn_client_protocols: { required: false, serialized_name: 'vpnClientProtocols', type: { name: 'Sequence', element: { required: false, serialized_name: 'VpnClientProtocolElementType', type: { name: 'String' } } } } } } } end |