AppliableWithTags<T> Interface

Type Parameters

T

the type of the resource returned from the update.

Implements

public interface AppliableWithTags
extends UpdateWithTags<T>

The base interface for all template interfaces that support update tags operations.

Method Summary

Modifier and Type Method and Description
abstract T applyTags()

Execute the update request.

abstract rx.Observable<T> applyTagsAsync()

Execute the update request asynchronously.

abstract com.microsoft.rest.ServiceFuture<T> applyTagsAsync(ServiceCallback<T> callback)

Execute the update request asynchronously.

Method Details

applyTags

public abstract T applyTags()

Execute the update request.

Returns:

the updated resource

applyTagsAsync

public abstract Observable applyTagsAsync()

Execute the update request asynchronously.

Returns:

the handle to the REST call

applyTagsAsync

public abstract ServiceFuture applyTagsAsync(ServiceCallback callback)

Execute the update request asynchronously.

Parameters:

callback - the callback for success and failure

Returns:

the handle to the REST call

Applies to