Get-AdfsClient

Get-AdfsClient

Retrieves registration information for an OAuth 2.0 client.

구문

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

Parameter Set: ClientId
Get-AdfsClient [-ClientId] <String[]> [ <CommonParameters>]

Parameter Set: InputObject
Get-AdfsClient [-InputObject] <AdfsClient> [ <CommonParameters>]

자세한 설명

The Get-AdfsClient cmdlet retrieves registration information for an OAuth 2.0 client that was previously registered with AD FS(Active Directory Federation Services).

매개 변수

-ClientId<String[]>

Specifies an array of client identifiers for the OAuth 2.0 client for which to retrieve registration information.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByPropertyName)

와일드카드 문자 허용 여부

false

-InputObject<AdfsClient>

Specifies an object of type AdfsClient that represents an OAuth 2.0 client for which to retrieve registration information.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByValue)

와일드카드 문자 허용 여부

false

-Name<String[]>

Specifies the name of the OAuth 2.0 client for which to retrieve registration information.

별칭

없음

필수 여부

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에 파이프할 수 있는 개체의 유형입니다.

출력

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

  • System.Object

예제

Example 1: Retrieve registration information for all clients

This command retrieves registration information for all OAuth 2.0 clients currently registered withAD FS.

PS C:\> Get-AdfsClient

Example 2: Retrieve registration information by client name

This command retrieves registration information for the OAuth 2.0 client named Device Registration Client.

PS C:\> Get-AdfsClient -Name "Device Registration Client"

Example 3: Retrieve registration information by client ID

This command retrieves registration information for the OAuth 2.0 client specified by the client identifier dd762716-544d-4aeb-a526-687b73838a22.

PS C:\> Get-AdfsClient -ClientId "dd762716-544d-4aeb-a526-687b73838a22"

관련 항목

Add-AdfsClient

Disable-AdfsClient

Enable-AdfsClient

Remove-AdfsClient

Set-AdfsClient