Share via


LoadBalancingRuleCollection Class

Definition

A class representing a collection of LoadBalancingRuleResource and their operations. Each LoadBalancingRuleResource in the collection will belong to the same instance of LoadBalancerResource. To get a LoadBalancingRuleCollection instance call the GetLoadBalancingRules method from an instance of LoadBalancerResource.

public class LoadBalancingRuleCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.Network.LoadBalancingRuleResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Network.LoadBalancingRuleResource>
type LoadBalancingRuleCollection = class
    inherit ArmCollection
    interface seq<LoadBalancingRuleResource>
    interface IEnumerable
    interface IAsyncEnumerable<LoadBalancingRuleResource>
Public Class LoadBalancingRuleCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of LoadBalancingRuleResource), IEnumerable(Of LoadBalancingRuleResource)
Inheritance
LoadBalancingRuleCollection
Implements

Constructors

LoadBalancingRuleCollection()

Initializes a new instance of the LoadBalancingRuleCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
Get(String, CancellationToken)

Gets the specified load balancer load balancing rule.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
GetAll(CancellationToken)

Gets all the load balancing rules in a load balancer.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules
  • Operation Id: LoadBalancerLoadBalancingRules_List
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
GetAllAsync(CancellationToken)

Gets all the load balancing rules in a load balancer.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules
  • Operation Id: LoadBalancerLoadBalancingRules_List
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
GetAsync(String, CancellationToken)

Gets the specified load balancer load balancing rule.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}
  • Operation Id: LoadBalancerLoadBalancingRules_Get
  • Default Api Version: 2023-09-01
  • Resource: LoadBalancingRuleResource
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<LoadBalancingRuleResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<LoadBalancingRuleResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to