NetworkExtensions.GetNetworkManagers Method

Definition

Overloads

GetNetworkManagers(ResourceGroupResource)

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

GetNetworkManagers(SubscriptionResource, Nullable<Int32>, String, CancellationToken)

List all network managers in a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkManagers
  • Operation Id: NetworkManagers_ListBySubscription
  • Default Api Version: 2023-09-01
  • Resource: NetworkManagerResource

GetNetworkManagers(ResourceGroupResource)

Source:
NetworkExtensions.cs
Source:
NetworkExtensions.cs

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

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

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

Returns

An object representing collection of NetworkManagerResources and their operations over a NetworkManagerResource.

Exceptions

resourceGroupResource is null.

Applies to

GetNetworkManagers(SubscriptionResource, Nullable<Int32>, String, CancellationToken)

Source:
NetworkExtensions.cs
Source:
NetworkExtensions.cs

List all network managers in a subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkManagers
  • Operation Id: NetworkManagers_ListBySubscription
  • Default Api Version: 2023-09-01
  • Resource: NetworkManagerResource
public static Azure.Pageable<Azure.ResourceManager.Network.NetworkManagerResource> GetNetworkManagers (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, int? top = default, string skipToken = default, System.Threading.CancellationToken cancellationToken = default);
static member GetNetworkManagers : Azure.ResourceManager.Resources.SubscriptionResource * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Network.NetworkManagerResource>
<Extension()>
Public Function GetNetworkManagers (subscriptionResource As SubscriptionResource, Optional top As Nullable(Of Integer) = Nothing, Optional skipToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of NetworkManagerResource)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

top
Nullable<Int32>

An optional query parameter which specifies the maximum number of records to be returned by the server.

skipToken
String

SkipToken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Exceptions

subscriptionResource is null.

Applies to