다음을 통해 공유


SearchAadAuthDataPlaneAuthOptions 클래스

정의

Search Service 데이터 평면 API가 요청을 인증하는 방법에 대한 옵션을 정의합니다. 'disableLocalAuth'가 true로 설정된 경우 설정할 수 없습니다.

public class SearchAadAuthDataPlaneAuthOptions
type SearchAadAuthDataPlaneAuthOptions = class
Public Class SearchAadAuthDataPlaneAuthOptions
상속
SearchAadAuthDataPlaneAuthOptions

생성자

SearchAadAuthDataPlaneAuthOptions()

SearchAadAuthDataPlaneAuthOptions의 새 instance 초기화합니다.

속성

AadAuthFailureMode

인증에 실패한 요청에 대해 Search Service 데이터 평면 API가 보내는 응답에 대해 설명합니다.

ApiKeyOnly

인증에 API 키만 사용해야 했음을 나타냅니다.

이 속성에 개체를 할당하려면 를 사용합니다 FromObjectAsJson<T>(T, JsonSerializerOptions).

이미 서식이 지정된 json 문자열을 이 속성에 할당하려면 를 사용합니다 FromString(String).

예제:

  • BinaryData.FromObjectAsJson("foo")"foo"의 페이로드를 만듭니다.
  • BinaryData.FromString("\"foo\"")"foo"의 페이로드를 만듭니다.
  • BinaryData.FromObjectAsJson(new { key = "value" }){ "key": "value" }의 페이로드를 만듭니다.
  • BinaryData.FromString("{\"key\": \"value\"}"){"key": "value" }의 페이로드를 만듭니다.

적용 대상