microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
lib/app-center-node-client/src/test/testClient.d.ts
38lines · modecode
| 1 | /* |
| 2 | * Code generated by Microsoft (R) AutoRest Code Generator. |
| 3 | * Changes may cause incorrect behavior and will be lost if the code is |
| 4 | * regenerated. |
| 5 | */ |
| 6 | |
| 7 | import { ServiceClient, ServiceClientOptions, ServiceClientCredentials } from 'ms-rest'; |
| 8 | import * as operations from "./operations"; |
| 9 | |
| 10 | declare class TestClient extends ServiceClient { |
| 11 | /** |
| 12 | * @class |
| 13 | * Initializes a new instance of the TestClient class. |
| 14 | * @constructor |
| 15 | * |
| 16 | * @param {credentials} credentials - Subscription credentials which uniquely identify client subscription. |
| 17 | * |
| 18 | * @param {string} [baseUri] - The base URI of the service. |
| 19 | * |
| 20 | * @param {object} [options] - The parameter options |
| 21 | * |
| 22 | * @param {Array} [options.filters] - Filters to be added to the request pipeline |
| 23 | * |
| 24 | * @param {object} [options.requestOptions] - Options for the underlying request object |
| 25 | * {@link https://github.com/request/request#requestoptions-callback Options doc} |
| 26 | * |
| 27 | * @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy |
| 28 | * |
| 29 | */ |
| 30 | constructor(credentials: ServiceClientCredentials, baseUri?: string, options?: ServiceClientOptions); |
| 31 | |
| 32 | credentials: ServiceClientCredentials; |
| 33 | |
| 34 | // Operation groups |
| 35 | test: operations.Test; |
| 36 | } |
| 37 | |
| 38 | export = TestClient; |