Partager via


HubRouteTablesClient Interface

public interface HubRouteTablesClient

An instance of this class provides access to all the operations defined in HubRouteTablesClient.

Method Summary

Modifier and Type Method and Description
abstract SyncPoller<PollResult<HubRouteTableInner>,HubRouteTableInner> beginCreateOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract SyncPoller<PollResult<HubRouteTableInner>,HubRouteTableInner> beginCreateOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters, Context context)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract PollerFlux<PollResult<HubRouteTableInner>,HubRouteTableInner> beginCreateOrUpdateAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract SyncPoller<PollResult<Void>,Void> beginDelete(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

abstract SyncPoller<PollResult<Void>,Void> beginDelete(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Deletes a RouteTable.

abstract PollerFlux<PollResult<Void>,Void> beginDeleteAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

abstract HubRouteTableInner createOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract HubRouteTableInner createOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters, Context context)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract Mono<HubRouteTableInner> createOrUpdateAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

abstract void delete(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

abstract void delete(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Deletes a RouteTable.

abstract Mono<Void> deleteAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

abstract Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

abstract HubRouteTableInner get(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

abstract Mono<HubRouteTableInner> getAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

abstract Response<HubRouteTableInner> getWithResponse(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Retrieves the details of a RouteTable.

abstract Mono<Response<HubRouteTableInner>> getWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

abstract PagedIterable<HubRouteTableInner> list(String resourceGroupName, String virtualHubName)

Retrieves the details of all RouteTables.

abstract PagedIterable<HubRouteTableInner> list(String resourceGroupName, String virtualHubName, Context context)

Retrieves the details of all RouteTables.

abstract PagedFlux<HubRouteTableInner> listAsync(String resourceGroupName, String virtualHubName)

Retrieves the details of all RouteTables.

Method Details

beginCreateOrUpdate

public abstract SyncPoller,HubRouteTableInner> beginCreateOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.

Returns:

the SyncPoller<T,U> for polling of routeTable resource in a virtual hub.

beginCreateOrUpdate

public abstract SyncPoller,HubRouteTableInner> beginCreateOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters, Context context)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.
context - The context to associate with this operation.

Returns:

the SyncPoller<T,U> for polling of routeTable resource in a virtual hub.

beginCreateOrUpdateAsync

public abstract PollerFlux,HubRouteTableInner> beginCreateOrUpdateAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.

Returns:

the PollerFlux<T,U> for polling of routeTable resource in a virtual hub.

beginDelete

public abstract SyncPoller,Void> beginDelete(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

the SyncPoller<T,U> for polling of long-running operation.

beginDelete

public abstract SyncPoller,Void> beginDelete(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
context - The context to associate with this operation.

Returns:

the SyncPoller<T,U> for polling of long-running operation.

beginDeleteAsync

public abstract PollerFlux,Void> beginDeleteAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

the PollerFlux<T,U> for polling of long-running operation.

createOrUpdate

public abstract HubRouteTableInner createOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.

Returns:

routeTable resource in a virtual hub.

createOrUpdate

public abstract HubRouteTableInner createOrUpdate(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters, Context context)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.
context - The context to associate with this operation.

Returns:

routeTable resource in a virtual hub.

createOrUpdateAsync

public abstract Mono createOrUpdateAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.

Returns:

routeTable resource in a virtual hub on successful completion of Mono.

createOrUpdateWithResponseAsync

public abstract Mono>> createOrUpdateWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName, HubRouteTableInner routeTableParameters)

Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
routeTableParameters - Parameters supplied to create or update RouteTable.

Returns:

routeTable resource in a virtual hub along with Response<T> on successful completion of Mono.

delete

public abstract void delete(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

delete

public abstract void delete(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
context - The context to associate with this operation.

deleteAsync

public abstract Mono deleteAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

A Mono that completes when a successful response is received.

deleteWithResponseAsync

public abstract Mono>> deleteWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Deletes a RouteTable.

Parameters:

resourceGroupName - The resource group name of the RouteTable.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

the Response<T> on successful completion of Mono.

get

public abstract HubRouteTableInner get(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

routeTable resource in a virtual hub.

getAsync

public abstract Mono getAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

routeTable resource in a virtual hub on successful completion of Mono.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String virtualHubName, String routeTableName, Context context)

Retrieves the details of a RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.
context - The context to associate with this operation.

Returns:

routeTable resource in a virtual hub along with Response<T>.

getWithResponseAsync

public abstract Mono> getWithResponseAsync(String resourceGroupName, String virtualHubName, String routeTableName)

Retrieves the details of a RouteTable.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
routeTableName - The name of the RouteTable.

Returns:

routeTable resource in a virtual hub along with Response<T> on successful completion of Mono.

list

public abstract PagedIterable list(String resourceGroupName, String virtualHubName)

Retrieves the details of all RouteTables.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.

Returns:

list of RouteTables and a URL nextLink to get the next set of results as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(String resourceGroupName, String virtualHubName, Context context)

Retrieves the details of all RouteTables.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.
context - The context to associate with this operation.

Returns:

list of RouteTables and a URL nextLink to get the next set of results as paginated response with PagedIterable<T>.

listAsync

public abstract PagedFlux listAsync(String resourceGroupName, String virtualHubName)

Retrieves the details of all RouteTables.

Parameters:

resourceGroupName - The resource group name of the VirtualHub.
virtualHubName - The name of the VirtualHub.

Returns:

list of RouteTables and a URL nextLink to get the next set of results as paginated response with PagedFlux<T>.

Applies to