你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
适用于 JavaScript 的 Azure Core HTTP 兼容性库
此库提供 Azure 客户端库要使用的类和接口,这些类和接口需要从 使用 @azure/core-http 迁移到 @azure/core-client & @azure/core-rest-pipeline ,而不会在其公共 API 图面中引起中断性变更。
使用情况
ExtendedCommonClientOptions
使用 @azure/core-http
库时 options
,自定义客户端的参数将如下所示:
export interface SearchClientOptions extends PipelineOptions {
apiVersion?: string;
}
@azure/core-client
使用 & @azure/core-rest-pipeline
库时,options
自定义客户端的参数将如下所示:
export interface SearchClientOptions extends CommonClientOptions {
apiVersion?: string;
}
使用 Core HTTP 兼容性库时 options
,自定义客户端的参数将如下所示:
export interface SearchClientOptions extends ExtendedCommonClientOptions {
apiVersion?: string;
}