Skip to main content

index_stats_summaries

Creates, updates, deletes, gets or lists an index_stats_summaries resource.

Overview

Nameindex_stats_summaries
TypeResource
Idazure.search_documents.index_stats_summaries

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_index_stats_summaryexecsearch_service_name$top, $skip, $countRetrieves a summary of statistics for all indexes in the search service.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
search_service_namestringSearch service name. (default: )
$countbooleanA value that specifies whether to fetch the total count of items. Default is false. Default value is None.
$skipintegerThe number of items to skip. Default value is None.
$topintegerThe number of items to retrieve. Default is 50, maximum is 1000. Default value is None.

Lifecycle Methods

Retrieves a summary of statistics for all indexes in the search service.

EXEC azure.search_documents.index_stats_summaries.list_index_stats_summary 
@search_service_name='{{ search_service_name }}' --required,
@$top='{{ $top }}',
@$skip='{{ $skip }}',
@$count={{ $count }}
;