共用方式為


Client interface

Rest Level 用戶端的形狀

屬性

path

這個方法將用來傳送要求,以檢查路徑以提供強型別。 當 codegen 使用時,這個型別會以產生的型別覆寫。 例如:

import { Client, Routes } from "@azure-rest/core-client";

export type MyClient = Client & {
  path: Routes;
};
pathUnchecked

這個方法允許任意路徑,而且不提供強型別

pipeline

此客戶端用來提出要求的管線

屬性詳細資料

path

這個方法將用來傳送要求,以檢查路徑以提供強型別。 當 codegen 使用時,這個型別會以產生的型別覆寫。 例如:

import { Client, Routes } from "@azure-rest/core-client";

export type MyClient = Client & {
  path: Routes;
};
path: Function

屬性值

Function

pathUnchecked

這個方法允許任意路徑,而且不提供強型別

pathUnchecked: PathUnchecked

屬性值

pipeline

此客戶端用來提出要求的管線

pipeline: Pipeline

屬性值