NetworkExtensions.GetNetworkInterfaces Method

Definition

Overloads

GetNetworkInterfaces(ResourceGroupResource)

Gets a collection of NetworkInterfaceResources in the ResourceGroupResource. MockingTo mock this method, please mock GetNetworkInterfaces() instead.

GetNetworkInterfaces(SubscriptionResource, CancellationToken)

Gets all network interfaces in a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces
  • Operation Id: NetworkInterfaces_ListAll
  • Default Api Version: 2023-09-01
  • Resource: NetworkInterfaceResource

GetNetworkInterfaces(ResourceGroupResource)

Source:
NetworkExtensions.cs
Source:
NetworkExtensions.cs

Gets a collection of NetworkInterfaceResources in the ResourceGroupResource. MockingTo mock this method, please mock GetNetworkInterfaces() instead.

public static Azure.ResourceManager.Network.NetworkInterfaceCollection GetNetworkInterfaces (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetNetworkInterfaces : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.Network.NetworkInterfaceCollection
<Extension()>
Public Function GetNetworkInterfaces (resourceGroupResource As ResourceGroupResource) As NetworkInterfaceCollection

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

Returns

An object representing collection of NetworkInterfaceResources and their operations over a NetworkInterfaceResource.

Exceptions

resourceGroupResource is null.

Applies to

GetNetworkInterfaces(SubscriptionResource, CancellationToken)

Source:
NetworkExtensions.cs
Source:
NetworkExtensions.cs

Gets all network interfaces in a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces
  • Operation Id: NetworkInterfaces_ListAll
  • Default Api Version: 2023-09-01
  • Resource: NetworkInterfaceResource
public static Azure.Pageable<Azure.ResourceManager.Network.NetworkInterfaceResource> GetNetworkInterfaces (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, System.Threading.CancellationToken cancellationToken = default);
static member GetNetworkInterfaces : Azure.ResourceManager.Resources.SubscriptionResource * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Network.NetworkInterfaceResource>
<Extension()>
Public Function GetNetworkInterfaces (subscriptionResource As SubscriptionResource, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of NetworkInterfaceResource)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of NetworkInterfaceResource that may take multiple service requests to iterate over.

Exceptions

subscriptionResource is null.

Applies to