@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api NetworkManagementClient
@base https://management.azure.com
@version 2018-10-01
@auth OAuth2
@endpoints 5
@toc subscriptions(5)

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces
@desc Gets information about all network interfaces in a virtual machine in a virtual machine scale set.
@required {resourceGroupName: any # The name of the resource group., virtualMachineScaleSetName: any # The name of the virtual machine scale set., virtualmachineIndex: any # The virtual machine index.}
@returns(200) Request successful. The operation returns a list of NetworkInterface resources.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/networkInterfaces
@desc Gets all network interfaces in a virtual machine scale set.
@required {resourceGroupName: any # The name of the resource group., virtualMachineScaleSetName: any # The name of the virtual machine scale set.}
@returns(200) Request successful. The operation returns a list of NetworkInterface resources.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}
@desc Get the specified network interface in a virtual machine scale set.
@required {resourceGroupName: any # The name of the resource group., virtualMachineScaleSetName: any # The name of the virtual machine scale set., virtualmachineIndex: any # The virtual machine index., networkInterfaceName: any # The name of the network interface.}
@optional {$expand: any # Expands referenced resources.}
@returns(200) Request successful. The operation returns the resulting NetworkInterface resource.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations
@desc Get the specified network interface ip configuration in a virtual machine scale set.
@required {resourceGroupName: any # The name of the resource group., virtualMachineScaleSetName: any # The name of the virtual machine scale set., virtualmachineIndex: any # The virtual machine index., networkInterfaceName: any # The name of the network interface.}
@optional {$expand: any # Expands referenced resources.}
@returns(200) Request successful. The operation returns the list of resulting NetworkInterfaceIPConfigurations resources.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}
@desc Get the specified network interface ip configuration in a virtual machine scale set.
@required {resourceGroupName: any # The name of the resource group., virtualMachineScaleSetName: any # The name of the virtual machine scale set., virtualmachineIndex: any # The virtual machine index., networkInterfaceName: any # The name of the network interface., ipConfigurationName: any # The name of the ip configuration.}
@optional {$expand: any # Expands referenced resources.}
@returns(200) Request successful. The operation returns the resulting NetworkInterfaceIPConfiguration resource.

@end
