ICaches Interface

Definition

Caches operations.

public interface ICaches
type ICaches = interface
Public Interface ICaches
Derived

Methods

CreateOrUpdateWithHttpMessagesAsync(String, String, Cache, Dictionary<String,List<String>>, CancellationToken)

Create or update a Cache.

DebugInfoWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Tells a Cache to write generate debug info for support to process.

DeleteWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Schedules a Cache for deletion.

FlushWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Tells a Cache to write all dirty data to the Storage Target(s). During the flush, clients will see errors returned until the flush is complete.

GetWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Returns a Cache.

ListByResourceGroupWithHttpMessagesAsync(String, Dictionary<String,List<String>>, CancellationToken)

Returns all Caches the user has access to under a resource group.

ListWithHttpMessagesAsync(Dictionary<String,List<String>>, CancellationToken)

Returns all Caches the user has access to under a subscription.

StartWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Tells a Stopped state Cache to transition to Active state.

StopWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Tells an Active Cache to transition to Stopped state.

UpdateWithHttpMessagesAsync(String, String, Cache, Dictionary<String,List<String>>, CancellationToken)

Update a Cache instance.

UpgradeFirmwareWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Upgrade a Cache's firmware if a new version is available. Otherwise, this operation has no effect.

Extension Methods

CreateOrUpdate(ICaches, String, String, Cache)

Create or update a Cache.

CreateOrUpdateAsync(ICaches, String, String, Cache, CancellationToken)

Create or update a Cache.

DebugInfo(ICaches, String, String)

Tells a Cache to write generate debug info for support to process.

DebugInfoAsync(ICaches, String, String, CancellationToken)

Tells a Cache to write generate debug info for support to process.

Delete(ICaches, String, String)

Schedules a Cache for deletion.

DeleteAsync(ICaches, String, String, CancellationToken)

Schedules a Cache for deletion.

Flush(ICaches, String, String)

Tells a Cache to write all dirty data to the Storage Target(s). During the flush, clients will see errors returned until the flush is complete.

FlushAsync(ICaches, String, String, CancellationToken)

Tells a Cache to write all dirty data to the Storage Target(s). During the flush, clients will see errors returned until the flush is complete.

Get(ICaches, String, String)

Returns a Cache.

GetAsync(ICaches, String, String, CancellationToken)

Returns a Cache.

List(ICaches)

Returns all Caches the user has access to under a subscription.

ListAsync(ICaches, CancellationToken)

Returns all Caches the user has access to under a subscription.

ListByResourceGroup(ICaches, String)

Returns all Caches the user has access to under a resource group.

ListByResourceGroupAsync(ICaches, String, CancellationToken)

Returns all Caches the user has access to under a resource group.

Start(ICaches, String, String)

Tells a Stopped state Cache to transition to Active state.

StartAsync(ICaches, String, String, CancellationToken)

Tells a Stopped state Cache to transition to Active state.

Stop(ICaches, String, String)

Tells an Active Cache to transition to Stopped state.

StopAsync(ICaches, String, String, CancellationToken)

Tells an Active Cache to transition to Stopped state.

Update(ICaches, String, String, Cache)

Update a Cache instance.

UpdateAsync(ICaches, String, String, Cache, CancellationToken)

Update a Cache instance.

UpgradeFirmware(ICaches, String, String)

Upgrade a Cache's firmware if a new version is available. Otherwise, this operation has no effect.

UpgradeFirmwareAsync(ICaches, String, String, CancellationToken)

Upgrade a Cache's firmware if a new version is available. Otherwise, this operation has no effect.

Applies to