Get-AdfsClaimDescription

Get-AdfsClaimDescription

Gets claim descriptions from the Federation Service.

구문

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

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

자세한 설명

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.

매개 변수

-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.

별칭

없음

필수 여부

true

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-Name<String[]>

Specifies an array of names of claim descriptions to get.

별칭

없음

필수 여부

false

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

  • None

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • Microsoft.IdentityServer.PowerShell.Resources.ClaimDescription

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

참고

  • Use claim descriptions to configure the list of claims available to be offered or accepted by AD FS(Active Directory Federation Services) 2.0.

예제

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}

관련 항목

Add-AdfsClaimDescription

Remove-AdfsClaimDescription

Set-AdfsClaimDescription