次の方法で共有


ServiceClient class

ServiceClient の新しいインスタンスを初期化します。

コンストラクター

ServiceClient(ServiceClientOptions)

ServiceClient コンストラクター

プロパティ

pipeline

このクライアントが要求を行うために使用するパイプライン

メソッド

sendOperationRequest<T>(OperationArguments, OperationSpec)

指定された OperationSpec を使用して設定された HTTP 要求を送信します。

sendRequest(PipelineRequest)

指定された httpRequest を送信します。

コンストラクターの詳細

ServiceClient(ServiceClientOptions)

ServiceClient コンストラクター

new ServiceClient(options?: ServiceClientOptions)

パラメーター

options
ServiceClientOptions

クライアントの動作を制御するサービス クライアント オプション。

プロパティの詳細

pipeline

このクライアントが要求を行うために使用するパイプライン

pipeline: Pipeline

プロパティ値

メソッドの詳細

sendOperationRequest<T>(OperationArguments, OperationSpec)

指定された OperationSpec を使用して設定された HTTP 要求を送信します。

function sendOperationRequest<T>(operationArguments: OperationArguments, operationSpec: OperationSpec): Promise<T>

パラメーター

operationArguments
OperationArguments

HTTP 要求のテンプレート値が設定される引数。

operationSpec
OperationSpec

httpRequest の設定に使用する OperationSpec。

戻り値

Promise<T>

sendRequest(PipelineRequest)

指定された httpRequest を送信します。

function sendRequest(request: PipelineRequest): Promise<PipelineResponse>

パラメーター

request
PipelineRequest

戻り値

Promise<PipelineResponse>