Source code for azure.mgmt.compute.v2018_10_01.models.network_profile_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 NetworkProfile(Model): """Specifies the network interfaces of the virtual machine. :param network_interfaces: Specifies the list of resource Ids for the network interfaces associated with the virtual machine. :type network_interfaces: list[~azure.mgmt.compute.v2018_10_01.models.NetworkInterfaceReference] """ _attribute_map = { 'network_interfaces': {'key': 'networkInterfaces', 'type': '[NetworkInterfaceReference]'}, } def __init__(self, *, network_interfaces=None, **kwargs) -> None: super(NetworkProfile, self).__init__(**kwargs) self.network_interfaces = network_interfaces