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.
/** * 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.fasterxml.jackson.annotation.JsonProperty;
Describes a virtual machine scale set VM network profile.
/** * Describes a virtual machine scale set VM network profile. */
public class VirtualMachineScaleSetVMNetworkProfileConfiguration {
The list of network configurations.
/** * The list of network configurations. */
@JsonProperty(value = "networkInterfaceConfigurations") private List<VirtualMachineScaleSetNetworkConfiguration> networkInterfaceConfigurations;
Get the list of network configurations.
Returns:the networkInterfaceConfigurations value
/** * Get the list of network configurations. * * @return the networkInterfaceConfigurations value */
public List<VirtualMachineScaleSetNetworkConfiguration> networkInterfaceConfigurations() { return this.networkInterfaceConfigurations; }
Set the list of network configurations.
Params:
  • networkInterfaceConfigurations – the networkInterfaceConfigurations value to set
Returns:the VirtualMachineScaleSetVMNetworkProfileConfiguration object itself.
/** * Set the list of network configurations. * * @param networkInterfaceConfigurations the networkInterfaceConfigurations value to set * @return the VirtualMachineScaleSetVMNetworkProfileConfiguration object itself. */
public VirtualMachineScaleSetVMNetworkProfileConfiguration withNetworkInterfaceConfigurations(List<VirtualMachineScaleSetNetworkConfiguration> networkInterfaceConfigurations) { this.networkInterfaceConfigurations = networkInterfaceConfigurations; return this; } }