Share via


RouteCollection Class

Definition

A class representing a collection of RouteResource and their operations. Each RouteResource in the collection will belong to the same instance of RouteTableResource. To get a RouteCollection instance call the GetRoutes method from an instance of RouteTableResource.

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

Constructors

RouteCollection()

Initializes a new instance of the RouteCollection 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

CreateOrUpdate(WaitUntil, String, RouteData, CancellationToken)

Creates or updates a route in the specified route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_CreateOrUpdate
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
CreateOrUpdateAsync(WaitUntil, String, RouteData, CancellationToken)

Creates or updates a route in the specified route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_CreateOrUpdate
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
Get(String, CancellationToken)

Gets the specified route from a route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
GetAll(CancellationToken)

Gets all routes in a route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes
  • Operation Id: Routes_List
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
GetAllAsync(CancellationToken)

Gets all routes in a route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes
  • Operation Id: Routes_List
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
GetAsync(String, CancellationToken)

Gets the specified route from a route table.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}
  • Operation Id: Routes_Get
  • Default Api Version: 2023-09-01
  • Resource: RouteResource
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<RouteResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<RouteResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to