Edit

Share via


Get-FASTSearchMetadataFullTextIndexMapping

Retrieves mappings between managed properties and the full text indexes.

Syntax

Default (Default)

Get-FASTSearchMetadataFullTextIndexMapping
    [-FullTextIndex <FullTextIndex>]
    [-ManagedProperty <ManagedProperty>]
    [<CommonParameters>]

Description

This cmdlet retrieves mappings from managed properties to full text indexes. These mappings control which managed properties are included in each full text index.

Running Get-FASTSearchMetadataFullTextIndexMapping with only a managed property as a parameter (the ManagedProperty parameter) returns all mappings to full text indexes in which the managed property is included.

Running Get-FASTSearchMetadataFullTextIndexMapping with only a full text index as a parameter (the FullTextIndex parameter) returns all mappings from managed properties that are included in the full text index

Running Get-FASTSearchMetadataFullTextIndexMapping with both the ManagedProperty and the FullTextIndex parameters returns a single FullTextIndexMappingImpl object for that exact mapping, if it exists in the Microsoft FAST Search Server 2010 for SharePoint system.

For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).

Examples

EXAMPLE 1

$fulltextindex = Get-FASTSearchMetadataFullTextIndex -name content
Get-FASTSearchMetadataFullTextIndexMapping -fulltextindex $fulltextindex| ForEach-Object {$_.ManagedProperty.Name}

This example retrieves the full text index mappings for the full text index "content". It then iterates over the mappings and outputs the names of the managed properties included in the full text index.

EXAMPLE 2

$title = Get-FASTSearchMetadataManagedProperty -name title
Get-FASTSearchMetadataFullTextIndexMapping -managedproperty $title

This example retrieves all full text indexes where the managed property named "title" is included.

The specified managed property is mapped to both "content" and "thirdfulltextindex", showing that there is no limit to how many full text indexes a managed property can be part of.

Parameters

-FullTextIndex

Applicable: FAST Server for SharePoint 2010

The full text index specified to retrieve mappings.

Parameter properties

Type:FullTextIndex
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-ManagedProperty

Applicable: FAST Server for SharePoint 2010

The managed property specified to retrieve mappings.

Parameter properties

Type:ManagedProperty
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.