Source code for azure.mgmt.network.v2015_06_15.models.vpn_client_parameters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class VpnClientParameters(Model): """VpnClientParameters. :param processor_architecture: VPN client Processor Architecture. Possible values are: 'AMD64' and 'X86'. Possible values include: 'Amd64', 'X86' :type processor_architecture: str or ~azure.mgmt.network.v2015_06_15.models.ProcessorArchitecture """ _attribute_map = { 'processor_architecture': {'key': 'ProcessorArchitecture', 'type': 'str'}, } def __init__(self, *, processor_architecture=None, **kwargs) -> None: super(VpnClientParameters, self).__init__(**kwargs) self.processor_architecture = processor_architecture