Get-AdfsClaimDescription

Get-AdfsClaimDescription

Gets claim descriptions from the Federation Service.

Sintaxis

Parameter Set: Name
Get-AdfsClaimDescription [[-Name] <String[]> ] [ <CommonParameters>]

Parameter Set: Identifier
Get-AdfsClaimDescription -ClaimType <String[]> [ <CommonParameters>]

Descripción detallada

The Get-AdfsClaimDescription cmdlet gets claim descriptions from the Federation Service. Claim descriptions describe the claims that the Federation Service uses. Claim descriptions also describe how claims are published in federation metadata. You can use this cmdlet without parameters to get all claim descriptions in the Federation Service.

Parámetros

-ClaimType<String[]>

Specifies an array of claim type URNs or URIs of the claim. The cmdlet gets the claim descriptions for the claims that you specify.

Alias

ninguno

¿Requerido?

true

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue)

¿Aceptar caracteres comodín?

false

-Name<String[]>

Specifies an array of names of claim descriptions to get.

Alias

ninguno

¿Requerido?

false

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue, ByPropertyName)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • None

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.IdentityServer.PowerShell.Resources.ClaimDescription

    This cmdlet generates a class structure that represents the claim description resources for the Federation Service.

Notas

  • Use claim descriptions to configure the list of claims available to be offered or accepted by Servicios de federación de Active Directory (AD FS) 2.0.

Ejemplos

Example 1: Get a claim description

This command gets the list of claim descriptions that the Federation Service offers.

PS C:\> Get-AdfsClaimDescription | Where -Object {$_.IsOffered}

Temas relacionados

Add-AdfsClaimDescription

Remove-AdfsClaimDescription

Set-AdfsClaimDescription