New-AdfsSamlEndpoint

New-AdfsSamlEndpoint

Creates a SAML protocol endpoint object.

구문

Parameter Set: Default
New-AdfsSamlEndpoint -Binding <String> -Protocol <String> -Uri <Uri> [-Index <Int32> ] [-IsDefault <Boolean> ] [-ResponseUri <Uri> ] [ <CommonParameters>]

자세한 설명

The New-AdfsSamlEndpoint cmdlet creates a Security Assertion Markup Language (SAML) protocol endpoint object.

매개 변수

-Binding<String>

Specifies the binding type of the endpoint. 이 매개 변수에 허용되는 값은 다음과 같습니다. POST, SOAP, Artifact, and Redirect.

별칭

없음

필수 여부

true

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Index<Int32>

Specifies the index that is defined for this endpoint.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-IsDefault<Boolean>

Indicates whether this is a default endpoint for the particular protocol type.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Protocol<String>

Specifies the type of service at the endpoint. 이 매개 변수에 허용되는 값은 다음과 같습니다. SAMLSingleSignOn, SAMLArtifactResolution, SAMLLogout, and SAMLAssertionConsumer.

별칭

없음

필수 여부

true

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-ResponseUri<Uri>

Specifies the response URI for the endpoint.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Uri<Uri>

Specifies the URI of this endpoint.

별칭

없음

필수 여부

true

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

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

    This cmdlet generates a class structure that represents a SAML endpoint resource object.

참고

  • You can associate this object with a relying party trust or claims provider trust by using the corresponding cmdlets.

예제

Example 1: Create a SAML endpoint and assign it to a relying party

The first command creates a SAML endpoint, and then stores it in the $EP variable.

The second command uses the Set-AdfsRelyingPartyTrust cmdlet to assign the endpoint stored in $EP to a relying party trust named My application.

PS C:\> $EP = New-AdfsSamlEndpoint -Binding "POST" -Protocol "SAMLAssertionConsumer" -Uri "https://fabrikam.com/saml/ac"
PS C:\> Set-AdfsRelyingPartyTrust -Name "My application" -SamlEndpoint $EP

관련 항목

Get-AdfsClaimsProviderTrust

Get-AdfsRelyingPartyTrust

Get-AdfsRelyingPartyTrust

Set-AdfsClaimsProviderTrust

Set-AdfsRelyingPartyTrust

Update-AdfsClaimsProviderTrust

Update-AdfsRelyingPartyTrust