ApiWikisOperations Interface

public interface ApiWikisOperations

Resource collection API of ApiWikisOperations.

Method Summary

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

Gets the wikis for an API specified by its identifier.

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

Gets the wikis for an API specified by its identifier.

Method Details

list

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

Gets the wikis for an API specified by its identifier.

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:

the wikis for an API specified by its identifier as paginated response with PagedIterable<T>.

list

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

Gets the wikis for an API specified by its identifier.

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>| name | filter | eq | contains |</br>.
top - Number of records to return.
skip - Number of records to skip.
context - The context to associate with this operation.

Returns:

the wikis for an API specified by its identifier as paginated response with PagedIterable<T>.

Applies to