Enterprise Vault™ PowerShell Cmdlets
- Introducing the Enterprise Vault PowerShell cmdlets
- Archiving: Exchange
- Archiving: FSA
- Archiving: Skype for Business
- Archiving: SMTP
- Backup
- Classification
- Databases
- IMAP access
- Indexing
- Records management
- Retention plans
- Roles-based administration
- Sites and servers
- Tasks and services
- Vault stores and archives
Get-EVElasticsearchIndex
Get-EVElasticsearchIndex retrieves details of all the Elasticsearch indices of the specified archive from the Elasticsearch.
Get-EVElasticsearchIndex is provided by Symantec.EnterpriseVault.PowerShell.AdminAPI.dll
, which the Enterprise Vault Management Shell loads.
Get-EVElasticsearchIndex -ArchiveId <String> [-IndexState <String>] [<CommonParameters>]
Table: Get-EVElasticsearchIndex parameters
Parameter | Description |
---|---|
-ArchiveId (required) | The ID for the archive for which you want to retrieve the details of the indices. |
-IndexState | The state (Open/Close) of the index with which you want to filter the results. |
C:\PS> Get-EVElasticsearchIndex -ArchiveId "116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM"
List all the Elasticsearch indices of the archive "116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM".
C:\PS> Get-EVArchive | Get-EVElasticsearchIndex
List all the Elasticsearch indices of the archive(s) returned by the Get-EVArchive command.
C:\PS> Get-EVElasticsearchIndex -ArchiveId "116C02E87F248354DA9E9FECEDA650C721110000VJ-SQL.QA.COM" -IndexState "Open"
List all the open Elasticsearch indices of the archive of which archive ID is specified.
C:\PS> Get-EVArchive | Get-EVElasticsearchIndex -IndexState "Close"
List all the Elasticsearch closed indices of the archive(s) returned by the Get-EVArchive command.
This command returns the object(s) of type Symantec.EnterpriseVault.PowerShell.AdminAPI.ElasticsearchIndex composed of the following properties:
Table: Get-EVElasticsearchIndex properties
Name | Type | Description |
---|---|---|
ArchiveId | String | The ID for the archive of the Elasticsearch index. |
IndexName | String | The name of the Elasticsearch index which is associated with the archive ID. |
IndexState | String | The state of the Elasticsearch index. |
IndexStatus | ElasticsearchIndexStatus enumeration value | The health status of the index. |
IndexedItems | Integer | Number of items in the index. |
IndexSizeInMB | Integer | Size of the index in MBs. |
ShardsCount | Integer | Number of shards in the index. |
EVServerEntryId | String | EntryId of Enterprise Vault index server of Elasticsearch index. |