Get-AdfsClaimsProviderTrust

Get-AdfsClaimsProviderTrust

Gets the claims provider trusts in the Federation Service.

구문

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

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

Parameter Set: TokenSigningCertificates
Get-AdfsClaimsProviderTrust [-Certificate] <X509Certificate2[]> [ <CommonParameters>]

자세한 설명

The Get-AdfsClaimsProviderTrust cmdlet gets the claims provider trusts in the Federation Service. You can use this cmdlet with no parameters to get all the claims provider trust objects.

매개 변수

-Certificate<X509Certificate2[]>

Specifies an array of token-signing certificates of the claims provider trust to get.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-Identifier<String[]>

Specifies an array of unique IDs of the claims provider trust to get.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-Name<String[]>

Specifies an array of display names of the claims provider trust 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.ClaimsProviderTrust

    The cmdlet outputs a class structure that represents the claims provider trusts for the Federation Service.

참고

  • If you do not specify the Name parameter, the cmdlet lists all claims providers. The claims provider collects and authenticates a user's credentials, builds up claims for that user, and packages the claims into security tokens or Information Cards. In other words, a claims provider represents the organization for whose users the claims provider issues security tokens or Information Cards on their behalf. When you configure AD FS(Active Directory Federation Services) 2.0, the role of the claims provider is to enable its users to access resources that are hosted in a relying party organization by establishing one side of the federation trust relationship. After the federation trust is established, tokens and Information Cards can be presented to the relying party across the trust.

예제

Example 1: Get claims provider trusts

This command gets the property settings for the claims provider trust named Fabrikam claims provider.

PS C:\> Get-AdfsClaimsProviderTrust -Name "Fabrikam claims provider"

관련 항목

Disable-AdfsClaimsProviderTrust

Enable-AdfsClaimsProviderTrust

Remove-AdfsClaimsProviderTrust

Set-AdfsClaimsProviderTrust

Update-AdfsClaimsProviderTrust