googleapis
Version:
Google APIs Client Library for Node.js
271 lines • 9.14 kB
JavaScript
"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 Vision API
*
* Integrates Google Vision features, including image labeling, face, logo, and
* landmark detection, optical character recognition (OCR), and detection of
* explicit content, into applications.
*
* @example
* const google = require('googleapis');
* const vision = google.vision('v1');
*
* @namespace vision
* @type {Function}
* @version v1
* @variation v1
* @param {object=} options Options for Vision
*/
var Vision = /** @class */ (function () {
function Vision(options, google) {
this.root = this;
this._options = options || {};
this.google = google;
this.getRoot.bind(this);
this.images = new Resource$Images(this);
this.locations = new Resource$Locations(this);
this.operations = new Resource$Operations(this);
}
Vision.prototype.getRoot = function () {
return this.root;
};
return Vision;
}());
exports.Vision = Vision;
var Resource$Images = /** @class */ (function () {
function Resource$Images(root) {
this.root = root;
this.getRoot.bind(this);
}
Resource$Images.prototype.getRoot = function () {
return this.root;
};
Resource$Images.prototype.annotate = 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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/images:annotate').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$Images;
}());
exports.Resource$Images = Resource$Images;
var Resource$Locations = /** @class */ (function () {
function Resource$Locations(root) {
this.root = root;
this.getRoot.bind(this);
this.operations = new Resource$Locations$Operations(root);
}
Resource$Locations.prototype.getRoot = function () {
return this.root;
};
return Resource$Locations;
}());
exports.Resource$Locations = Resource$Locations;
var Resource$Locations$Operations = /** @class */ (function () {
function Resource$Locations$Operations(root) {
this.root = root;
this.getRoot.bind(this);
}
Resource$Locations$Operations.prototype.getRoot = function () {
return this.root;
};
Resource$Locations$Operations.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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/{+name}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['name'],
pathParams: ['name'],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
return Resource$Locations$Operations;
}());
exports.Resource$Locations$Operations = Resource$Locations$Operations;
var Resource$Operations = /** @class */ (function () {
function Resource$Operations(root) {
this.root = root;
this.getRoot.bind(this);
}
Resource$Operations.prototype.getRoot = function () {
return this.root;
};
Resource$Operations.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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/{+name}:cancel').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['name'],
pathParams: ['name'],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
Resource$Operations.prototype.delete = 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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/{+name}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['name'],
pathParams: ['name'],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
Resource$Operations.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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/{+name}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['name'],
pathParams: ['name'],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
Resource$Operations.prototype.list = 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://vision.googleapis.com/';
var parameters = {
options: Object.assign({
url: (rootUrl + '/v1/{+name}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['name'],
pathParams: ['name'],
context: this.getRoot()
};
if (callback) {
apirequest_1.createAPIRequest(parameters, callback);
}
else {
return apirequest_1.createAPIRequest(parameters);
}
};
return Resource$Operations;
}());
exports.Resource$Operations = Resource$Operations;
//# sourceMappingURL=v1.js.map