Class: Azure::Network::Mgmt::V2017_09_01::Models::VpnClientConfiguration

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb

Overview

VpnClientConfiguration for P2S client.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#radius_server_addressString

VirtualNetworkGateway resource for vpn client connection.

Returns:

  • (String)

    The radius server address property of the



33
34
35
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 33

def radius_server_address
  @radius_server_address
end

#radius_server_secretString

VirtualNetworkGateway resource for vpn client connection.

Returns:

  • (String)

    The radius secret property of the



37
38
39
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 37

def radius_server_secret
  @radius_server_secret
end

#vpn_client_address_poolAddressSpace

which represents Address space for P2S VpnClient.

Returns:

  • (AddressSpace)

    The reference of the address space resource



17
18
19
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 17

def vpn_client_address_pool
  @vpn_client_address_pool
end

#vpn_client_protocolsArray<VpnClientProtocol>

network gateway.

Returns:



29
30
31
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 29

def vpn_client_protocols
  @vpn_client_protocols
end

#vpn_client_revoked_certificatesArray<VpnClientRevokedCertificate>

VpnClientRevokedCertificate for Virtual network gateway.

Returns:



25
26
27
# File 'lib/2017-09-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_certificatesArray<VpnClientRootCertificate>

virtual network gateway.

Returns:



21
22
23
# File 'lib/2017-09-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

.mapperObject

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



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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/vpn_client_configuration.rb', line 44

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'
                }
            }
          }
        },
        radius_server_address: {
          required: false,
          serialized_name: 'radiusServerAddress',
          type: {
            name: 'String'
          }
        },
        radius_server_secret: {
          required: false,
          serialized_name: 'radiusServerSecret',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end