Client interface
Shape of a Rest Level Client
Properties
path | This method will be used to send request that would check the path to provide strong types. When used by the codegen this type gets overridden with the generated types. For example:
|
path |
This method allows arbitrary paths and doesn't provide strong types |
pipeline | The pipeline used by this client to make requests |
Property Details
path
This method will be used to send request that would check the path to provide strong types. When used by the codegen this type gets overridden with the generated types. For example:
import { Client, Routes } from "@azure-rest/core-client";
export type MyClient = Client & {
path: Routes;
};
path: Function
Property Value
Function
pathUnchecked
This method allows arbitrary paths and doesn't provide strong types
pathUnchecked: PathUnchecked