microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ff1d5ab06605e4bd55f797b94c9a0aa5cdfde076

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/codepush/codepushClient.d.ts

43lines · 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
7import { ServiceClient, ServiceClientOptions, ServiceClientCredentials } from 'ms-rest';
8import * as operations from "./operations";
9
10declare class CodepushClient extends ServiceClient {
11 /**
12 * @class
13 * Initializes a new instance of the CodepushClient 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 codePushAcquisition: operations.CodePushAcquisition;
36 codePushDeployments: operations.CodePushDeployments;
37 codePushDeploymentMetrics: operations.CodePushDeploymentMetrics;
38 codePushDeploymentReleases: operations.CodePushDeploymentReleases;
39 deploymentReleases: operations.DeploymentReleases;
40 codePushDeploymentRelease: operations.CodePushDeploymentRelease;
41}
42
43export = CodepushClient;
44