UNPKG

googleapis

Version:
249 lines 8.83 kB
"use strict"; /** * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); var apirequest_1 = require("../../lib/apirequest"); // TODO: We will eventually get the `any` in here cleared out, but in the // interim we want to turn on no-implicit-any. // tslint:disable: no-any // tslint:disable: class-name // tslint:disable: variable-name // tslint:disable: jsdoc-format /** * Cloud Testing API * * Allows developers to run automated tests for their mobile applications on * Google infrastructure. * * @example * const google = require('googleapis'); * const testing = google.testing('v1'); * * @namespace testing * @type {Function} * @version v1 * @variation v1 * @param {object=} options Options for Testing */ var Testing = /** @class */ (function () { function Testing(options, google) { this.root = this; this._options = options || {}; this.google = google; this.getRoot.bind(this); this.applicationDetailService = new Resource$Applicationdetailservice(this); this.projects = new Resource$Projects(this); this.testEnvironmentCatalog = new Resource$Testenvironmentcatalog(this); } Testing.prototype.getRoot = function () { return this.root; }; return Testing; }()); exports.Testing = Testing; var Resource$Applicationdetailservice = /** @class */ (function () { function Resource$Applicationdetailservice(root) { this.root = root; this.getRoot.bind(this); } Resource$Applicationdetailservice.prototype.getRoot = function () { return this.root; }; Resource$Applicationdetailservice.prototype.getApkDetails = function (params, options, callback) { if (typeof options === 'function') { callback = options; options = {}; } if (typeof params === 'function') { callback = params; params = {}; } options = options || {}; var rootUrl = options.rootUrl || 'https://testing.googleapis.com/'; var parameters = { options: Object.assign({ url: (rootUrl + '/v1/applicationDetailService/getApkDetails') .replace(/([^:]\/)\/+/g, '$1'), method: 'POST' }, options), params: params, requiredParams: [], pathParams: [], context: this.getRoot() }; if (callback) { apirequest_1.createAPIRequest(parameters, callback); } else { return apirequest_1.createAPIRequest(parameters); } }; return Resource$Applicationdetailservice; }()); exports.Resource$Applicationdetailservice = Resource$Applicationdetailservice; var Resource$Projects = /** @class */ (function () { function Resource$Projects(root) { this.root = root; this.getRoot.bind(this); this.testMatrices = new Resource$Projects$Testmatrices(root); } Resource$Projects.prototype.getRoot = function () { return this.root; }; return Resource$Projects; }()); exports.Resource$Projects = Resource$Projects; var Resource$Projects$Testmatrices = /** @class */ (function () { function Resource$Projects$Testmatrices(root) { this.root = root; this.getRoot.bind(this); } Resource$Projects$Testmatrices.prototype.getRoot = function () { return this.root; }; Resource$Projects$Testmatrices.prototype.cancel = function (params, options, callback) { if (typeof options === 'function') { callback = options; options = {}; } if (typeof params === 'function') { callback = params; params = {}; } options = options || {}; var rootUrl = options.rootUrl || 'https://testing.googleapis.com/'; var parameters = { options: Object.assign({ url: (rootUrl + '/v1/projects/{projectId}/testMatrices/{testMatrixId}:cancel') .replace(/([^:]\/)\/+/g, '$1'), method: 'POST' }, options), params: params, requiredParams: ['projectId', 'testMatrixId'], pathParams: ['projectId', 'testMatrixId'], context: this.getRoot() }; if (callback) { apirequest_1.createAPIRequest(parameters, callback); } else { return apirequest_1.createAPIRequest(parameters); } }; Resource$Projects$Testmatrices.prototype.create = function (params, options, callback) { if (typeof options === 'function') { callback = options; options = {}; } if (typeof params === 'function') { callback = params; params = {}; } options = options || {}; var rootUrl = options.rootUrl || 'https://testing.googleapis.com/'; var parameters = { options: Object.assign({ url: (rootUrl + '/v1/projects/{projectId}/testMatrices') .replace(/([^:]\/)\/+/g, '$1'), method: 'POST' }, options), params: params, requiredParams: ['projectId'], pathParams: ['projectId'], context: this.getRoot() }; if (callback) { apirequest_1.createAPIRequest(parameters, callback); } else { return apirequest_1.createAPIRequest(parameters); } }; Resource$Projects$Testmatrices.prototype.get = function (params, options, callback) { if (typeof options === 'function') { callback = options; options = {}; } if (typeof params === 'function') { callback = params; params = {}; } options = options || {}; var rootUrl = options.rootUrl || 'https://testing.googleapis.com/'; var parameters = { options: Object.assign({ url: (rootUrl + '/v1/projects/{projectId}/testMatrices/{testMatrixId}') .replace(/([^:]\/)\/+/g, '$1'), method: 'GET' }, options), params: params, requiredParams: ['projectId', 'testMatrixId'], pathParams: ['projectId', 'testMatrixId'], context: this.getRoot() }; if (callback) { apirequest_1.createAPIRequest(parameters, callback); } else { return apirequest_1.createAPIRequest(parameters); } }; return Resource$Projects$Testmatrices; }()); exports.Resource$Projects$Testmatrices = Resource$Projects$Testmatrices; var Resource$Testenvironmentcatalog = /** @class */ (function () { function Resource$Testenvironmentcatalog(root) { this.root = root; this.getRoot.bind(this); } Resource$Testenvironmentcatalog.prototype.getRoot = function () { return this.root; }; Resource$Testenvironmentcatalog.prototype.get = function (params, options, callback) { if (typeof options === 'function') { callback = options; options = {}; } if (typeof params === 'function') { callback = params; params = {}; } options = options || {}; var rootUrl = options.rootUrl || 'https://testing.googleapis.com/'; var parameters = { options: Object.assign({ url: (rootUrl + '/v1/testEnvironmentCatalog/{environmentType}') .replace(/([^:]\/)\/+/g, '$1'), method: 'GET' }, options), params: params, requiredParams: ['environmentType'], pathParams: ['environmentType'], context: this.getRoot() }; if (callback) { apirequest_1.createAPIRequest(parameters, callback); } else { return apirequest_1.createAPIRequest(parameters); } }; return Resource$Testenvironmentcatalog; }()); exports.Resource$Testenvironmentcatalog = Resource$Testenvironmentcatalog; //# sourceMappingURL=v1.js.map