ApiRevisions Interface

public interface ApiRevisions

Resource collection API of ApiRevisions.

Method Summary

Modifier and Type Method and Description
abstract PagedIterable<ApiRevisionContract> listByService(String resourceGroupName, String serviceName, String apiId)

Lists all revisions of an API.

abstract PagedIterable<ApiRevisionContract> listByService(String resourceGroupName, String serviceName, String apiId, String filter, Integer top, Integer skip, Context context)

Lists all revisions of an API.

Method Details

listByService

public abstract PagedIterable listByService(String resourceGroupName, String serviceName, String apiId)

Lists all revisions of an API.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serviceName - The name of the API Management service.
apiId - API identifier. Must be unique in the current API Management service instance.

Returns:

paged API Revision list representation as paginated response with PagedIterable<T>.

listByService

public abstract PagedIterable listByService(String resourceGroupName, String serviceName, String apiId, String filter, Integer top, Integer skip, Context context)

Lists all revisions of an API.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
serviceName - The name of the API Management service.
apiId - API identifier. Must be unique in the current API Management service instance.
filter - | Field | Usage | Supported operators | Supported functions |</br>|-------------|-------------|-------------|-------------|</br>| apiRevision | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith |</br>.
top - Number of records to return.
skip - Number of records to skip.
context - The context to associate with this operation.

Returns:

paged API Revision list representation as paginated response with PagedIterable<T>.

Applies to