Interface ApplicationGateways
-
- All Superinterfaces:
com.microsoft.azure.management.resources.fluentcore.model.HasInner<com.microsoft.azure.management.network.implementation.ApplicationGatewaysInner>,com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager<com.microsoft.azure.management.network.implementation.NetworkManager>,com.microsoft.azure.management.resources.fluentcore.collection.SupportsBatchCreation<ApplicationGateway>,com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsBatchDeletion,com.microsoft.azure.management.resources.fluentcore.collection.SupportsCreating<ApplicationGateway.DefinitionStages.Blank>,com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingById,com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup,com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingById<ApplicationGateway>,com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup<ApplicationGateway>,com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing<ApplicationGateway>,com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsListingByResourceGroup<ApplicationGateway>
public interface ApplicationGateways extends com.microsoft.azure.management.resources.fluentcore.collection.SupportsCreating<ApplicationGateway.DefinitionStages.Blank>, com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing<ApplicationGateway>, com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsListingByResourceGroup<ApplicationGateway>, com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup<ApplicationGateway>, com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingById<ApplicationGateway>, com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingById, com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup, com.microsoft.azure.management.resources.fluentcore.collection.SupportsBatchCreation<ApplicationGateway>, com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsBatchDeletion, com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager<com.microsoft.azure.management.network.implementation.NetworkManager>, com.microsoft.azure.management.resources.fluentcore.model.HasInner<com.microsoft.azure.management.network.implementation.ApplicationGatewaysInner>
Entry point to application gateway management API in Azure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart(String... ids)Starts the specified application gateways.voidstart(Collection<String> ids)Starts the specified application gateways.rx.Observable<String>startAsync(String... ids)Starts the specified application gateways in parallel asynchronously.rx.Observable<String>startAsync(Collection<String> ids)Starts the specified application gateways in parallel asynchronously.voidstop(String... ids)Stops the specified application gateways.voidstop(Collection<String> ids)Stops the specified application gateways.rx.Observable<String>stopAsync(String... ids)Stops the specified application gateways in parallel asynchronously.rx.Observable<String>stopAsync(Collection<String> ids)Stops the specified application gateways in parallel asynchronously.-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.HasInner
inner
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager
manager
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.collection.SupportsBatchCreation
create, create, createAsync, createAsync, createAsync, createAsync
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsBatchDeletion
deleteByIds, deleteByIds, deleteByIdsAsync, deleteByIdsAsync
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.collection.SupportsCreating
define
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingById
deleteById, deleteByIdAsync, deleteByIdAsync
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup
deleteByResourceGroup, deleteByResourceGroupAsync, deleteByResourceGroupAsync
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingById
getById, getByIdAsync, getByIdAsync
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup
getByResourceGroup, getByResourceGroupAsync, getByResourceGroupAsync
-
-
-
-
Method Detail
-
start
void start(String... ids)
Starts the specified application gateways.- Parameters:
ids- application gateway resource ids
-
start
void start(Collection<String> ids)
Starts the specified application gateways.- Parameters:
ids- application gateway resource ids
-
startAsync
rx.Observable<String> startAsync(String... ids)
Starts the specified application gateways in parallel asynchronously.- Parameters:
ids- application gateway resource id- Returns:
- an emitter of the resource ID for each successfully started application gateway
-
startAsync
rx.Observable<String> startAsync(Collection<String> ids)
Starts the specified application gateways in parallel asynchronously.- Parameters:
ids- application gateway resource id- Returns:
- an emitter of the resource ID for each successfully started application gateway
-
stop
void stop(String... ids)
Stops the specified application gateways.- Parameters:
ids- application gateway resource ids
-
stop
void stop(Collection<String> ids)
Stops the specified application gateways.- Parameters:
ids- application gateway resource ids
-
stopAsync
rx.Observable<String> stopAsync(String... ids)
Stops the specified application gateways in parallel asynchronously.- Parameters:
ids- application gateway resource ids- Returns:
- an emitter of the resource ID for each successfully stopped application gateway
-
stopAsync
rx.Observable<String> stopAsync(Collection<String> ids)
Stops the specified application gateways in parallel asynchronously.- Parameters:
ids- application gateway resource id- Returns:
- an emitter of the resource ID for each successfully stopped application gateway
-
-