/** * 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. */ package com.microsoft.azure.management.compute; import java.util.List; import com.microsoft.azure.management.compute.implementation.NetworkInterfaceReferenceInner; import com.fasterxml.jackson.annotation.JsonProperty; /** * Describes a network profile. */ public class NetworkProfile { /** * Specifies the list of resource IDs for the network interfaces associated * with the virtual machine. */ @JsonProperty(value = "networkInterfaces") private List<NetworkInterfaceReferenceInner> networkInterfaces; /** * Get the networkInterfaces value. * * @return the networkInterfaces value */ public List<NetworkInterfaceReferenceInner> networkInterfaces() { return this.networkInterfaces; } /** * Set the networkInterfaces value. * * @param networkInterfaces the networkInterfaces value to set * @return the NetworkProfile object itself. */ public NetworkProfile withNetworkInterfaces(List<NetworkInterfaceReferenceInner> networkInterfaces) { this.networkInterfaces = networkInterfaces; return this; } }