This commit is contained in:
GotPPay
2017-10-16 20:21:19 +02:00
parent 8a7f8794cf
commit a75ea978f9
2554 changed files with 804218 additions and 109 deletions

245
backend/node_modules/googleapis/apis/prediction/v1.2.js generated vendored Normal file
View File

@@ -0,0 +1,245 @@
"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.
*/
/* jshint maxlen: false */
const apirequest_1 = require("../../lib/apirequest");
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.2');
*
* @namespace prediction
* @type {Function}
* @version v1.2
* @variation v1.2
* @param {object=} options Options for Prediction
*/
function Prediction(options) {
const self = this;
self._options = options || {};
/**
* prediction.predict
*
* @desc Submit data and request a prediction
*
* @alias prediction.predict
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket%2Fmydata resource in Google Storage
* @param {prediction(v1.2).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
this.predict = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model
* @param {prediction(v1.2).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
self.training = {
/**
* prediction.training.delete
*
* @desc Delete a trained model
*
* @alias prediction.training.delete
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.get
*
* @desc Check training status of your model
*
* @alias prediction.training.get
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.insert
*
* @desc Begin training your model
*
* @alias prediction.training.insert
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string=} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.2).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.update
*
* @desc Add new data to a trained model
*
* @alias prediction.training.update
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.2).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
}
module.exports = Prediction;
//# sourceMappingURL=v1.2.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"v1.2.js","sourceRoot":"","sources":["v1.2.ts"],"names":[],"mappings":"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"}

312
backend/node_modules/googleapis/apis/prediction/v1.2.ts generated vendored Normal file
View File

@@ -0,0 +1,312 @@
/**
* 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.
*/
/* jshint maxlen: false */
import createAPIRequest from '../../lib/apirequest';
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.2');
*
* @namespace prediction
* @type {Function}
* @version v1.2
* @variation v1.2
* @param {object=} options Options for Prediction
*/
function Prediction(options) { // eslint-disable-line
const self = this;
self._options = options || {};
/**
* prediction.predict
*
* @desc Submit data and request a prediction
*
* @alias prediction.predict
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket%2Fmydata resource in Google Storage
* @param {prediction(v1.2).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
this.predict = function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model
* @param {prediction(v1.2).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.training = {
/**
* prediction.training.delete
*
* @desc Delete a trained model
*
* @alias prediction.training.delete
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.get
*
* @desc Check training status of your model
*
* @alias prediction.training.get
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.insert
*
* @desc Begin training your model
*
* @alias prediction.training.insert
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string=} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.2).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.update
*
* @desc Add new data to a trained model
*
* @alias prediction.training.update
* @memberOf! prediction(v1.2)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.2).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.2/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Input
* @memberOf! prediction(v1.2)
* @type object
* @property {object} input
*/
/**
* @typedef Output
* @memberOf! prediction(v1.2)
* @type object
* @property {string} id
* @property {string} kind
* @property {string} outputLabel
* @property {object[]} outputMulti
* @property {number} outputValue
* @property {string} selfLink
*/
/**
* @typedef Training
* @memberOf! prediction(v1.2)
* @type object
* @property {string} id
* @property {string} kind
* @property {object} modelInfo
* @property {string} selfLink
* @property {string} trainingStatus
*/
/**
* @typedef Update
* @memberOf! prediction(v1.2)
* @type object
* @property {string} classLabel The true class label of this instance
* @property {any[]} csvInstance The input features for this instance
*/
export = Prediction;

244
backend/node_modules/googleapis/apis/prediction/v1.3.js generated vendored Normal file
View File

@@ -0,0 +1,244 @@
"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.
*/
/* jshint maxlen: false */
const apirequest_1 = require("../../lib/apirequest");
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.3');
*
* @namespace prediction
* @type {Function}
* @version v1.3
* @variation v1.3
* @param {object=} options Options for Prediction
*/
function Prediction(options) {
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model
* @param {prediction(v1.3).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
self.training = {
/**
* prediction.training.delete
*
* @desc Delete a trained model
*
* @alias prediction.training.delete
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.get
*
* @desc Check training status of your model
*
* @alias prediction.training.get
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.insert
*
* @desc Begin training your model
*
* @alias prediction.training.insert
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {prediction(v1.3).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.predict
*
* @desc Submit data and request a prediction
*
* @alias prediction.training.predict
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.3).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.training.update
*
* @desc Add new data to a trained model
*
* @alias prediction.training.update
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.3).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
}
module.exports = Prediction;
//# sourceMappingURL=v1.3.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"v1.3.js","sourceRoot":"","sources":["v1.3.ts"],"names":[],"mappings":"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"}

312
backend/node_modules/googleapis/apis/prediction/v1.3.ts generated vendored Normal file
View File

@@ -0,0 +1,312 @@
/**
* 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.
*/
/* jshint maxlen: false */
import createAPIRequest from '../../lib/apirequest';
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.3');
*
* @namespace prediction
* @type {Function}
* @version v1.3
* @variation v1.3
* @param {object=} options Options for Prediction
*/
function Prediction(options) { // eslint-disable-line
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model
* @param {prediction(v1.3).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.training = {
/**
* prediction.training.delete
*
* @desc Delete a trained model
*
* @alias prediction.training.delete
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.get
*
* @desc Check training status of your model
*
* @alias prediction.training.get
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.insert
*
* @desc Begin training your model
*
* @alias prediction.training.insert
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {prediction(v1.3).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.predict
*
* @desc Submit data and request a prediction
*
* @alias prediction.training.predict
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.3).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.training.update
*
* @desc Add new data to a trained model
*
* @alias prediction.training.update
* @memberOf! prediction(v1.3)
*
* @param {object} params Parameters for request
* @param {string} params.data mybucket/mydata resource in Google Storage
* @param {prediction(v1.3).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.3/training/{data}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['data'],
pathParams: ['data'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Input
* @memberOf! prediction(v1.3)
* @type object
* @property {object} input Input to the model for a prediction
*/
/**
* @typedef Output
* @memberOf! prediction(v1.3)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {string} outputLabel The most likely class [Categorical models only].
* @property {object[]} outputMulti A list of classes with their estimated probabilities [Categorical models only].
* @property {number} outputValue The estimated regression value [Regression models only].
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Training
* @memberOf! prediction(v1.3)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelInfo Model metadata.
* @property {string} selfLink A URL to re-request this resource.
* @property {string} trainingStatus The current status of the training job. This can be one of following: RUNNING; DONE; ERROR; ERROR: TRAINING JOB NOT FOUND
* @property {object[]} utility A class weighting function, which allows the importance weights for classes to be specified [Categorical models only].
*/
/**
* @typedef Update
* @memberOf! prediction(v1.3)
* @type object
* @property {string} classLabel The true class label of this instance
* @property {any[]} csvInstance The input features for this instance
*/
export = Prediction;

244
backend/node_modules/googleapis/apis/prediction/v1.4.js generated vendored Normal file
View File

@@ -0,0 +1,244 @@
"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.
*/
/* jshint maxlen: false */
const apirequest_1 = require("../../lib/apirequest");
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.4');
*
* @namespace prediction
* @type {Function}
* @version v1.4
* @variation v1.4
* @param {object=} options Options for Prediction
*/
function Prediction(options) {
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {prediction(v1.4).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Begin training your model.
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {prediction(v1.4).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.4).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.4).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
}
module.exports = Prediction;
//# sourceMappingURL=v1.4.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"v1.4.js","sourceRoot":"","sources":["v1.4.ts"],"names":[],"mappings":"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"}

317
backend/node_modules/googleapis/apis/prediction/v1.4.ts generated vendored Normal file
View File

@@ -0,0 +1,317 @@
/**
* 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.
*/
/* jshint maxlen: false */
import createAPIRequest from '../../lib/apirequest';
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.4');
*
* @namespace prediction
* @type {Function}
* @version v1.4
* @variation v1.4
* @param {object=} options Options for Prediction
*/
function Prediction(options) { // eslint-disable-line
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {prediction(v1.4).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Begin training your model.
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {prediction(v1.4).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.4).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.4)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.4).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.4/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Input
* @memberOf! prediction(v1.4)
* @type object
* @property {object} input Input to the model for a prediction
*/
/**
* @typedef Output
* @memberOf! prediction(v1.4)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {string} outputLabel The most likely class label [Categorical models only].
* @property {object[]} outputMulti A list of class labels with their estimated probabilities [Categorical models only].
* @property {number} outputValue The estimated regression value [Regression models only].
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Training
* @memberOf! prediction(v1.4)
* @type object
* @property {object} dataAnalysis Data Analysis.
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelInfo Model metadata.
* @property {string} selfLink A URL to re-request this resource.
* @property {string} storageDataLocation Google storage location of the training data file.
* @property {string} storagePMMLLocation Google storage location of the preprocessing pmml file.
* @property {string} storagePMMLModelLocation Google storage location of the pmml model file.
* @property {string} trainingStatus The current status of the training job. This can be one of following: RUNNING; DONE; ERROR; ERROR: TRAINING JOB NOT FOUND
* @property {object[]} utility A class weighting function, which allows the importance weights for class labels to be specified [Categorical models only].
*/
/**
* @typedef Update
* @memberOf! prediction(v1.4)
* @type object
* @property {any[]} csvInstance The input features for this instance
* @property {string} label The class label of this instance
* @property {string} output The generic output value - could be regression value or class label
*/
export = Prediction;

311
backend/node_modules/googleapis/apis/prediction/v1.5.js generated vendored Normal file
View File

@@ -0,0 +1,311 @@
"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.
*/
/* jshint maxlen: false */
const apirequest_1 = require("../../lib/apirequest");
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.5');
*
* @namespace prediction
* @type {Function}
* @version v1.5
* @variation v1.5
* @param {object=} options Options for Prediction
*/
function Prediction(options) {
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {prediction(v1.5).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.analyze
*
* @desc Get analysis of the model and the data the model was trained on.
*
* @alias prediction.trainedmodels.analyze
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
analyze: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}/analyze').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Begin training your model.
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {prediction(v1.5).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.list
*
* @desc List available models.
*
* @alias prediction.trainedmodels.list
* @memberOf! prediction(v1.5)
*
* @param {object=} params Parameters for request
* @param {integer=} params.maxResults Maximum number of results to return
* @param {string=} params.pageToken Pagination token
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/list').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction.
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.5).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.5).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
}
module.exports = Prediction;
//# sourceMappingURL=v1.5.js.map

File diff suppressed because one or more lines are too long

417
backend/node_modules/googleapis/apis/prediction/v1.5.ts generated vendored Normal file
View File

@@ -0,0 +1,417 @@
/**
* 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.
*/
/* jshint maxlen: false */
import createAPIRequest from '../../lib/apirequest';
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.5');
*
* @namespace prediction
* @type {Function}
* @version v1.5
* @variation v1.5
* @param {object=} options Options for Prediction
*/
function Prediction(options) { // eslint-disable-line
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {prediction(v1.5).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['hostedModelName'],
pathParams: ['hostedModelName'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.analyze
*
* @desc Get analysis of the model and the data the model was trained on.
*
* @alias prediction.trainedmodels.analyze
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
analyze: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}/analyze').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Begin training your model.
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {prediction(v1.5).Training} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.list
*
* @desc List available models.
*
* @alias prediction.trainedmodels.list
* @memberOf! prediction(v1.5)
*
* @param {object=} params Parameters for request
* @param {integer=} params.maxResults Maximum number of results to return
* @param {string=} params.pageToken Pagination token
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/list').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction.
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.5).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.5)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {prediction(v1.5).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.5/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['id'],
pathParams: ['id'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Analyze
* @memberOf! prediction(v1.5)
* @type object
* @property {object} dataDescription Description of the data the model was trained on.
* @property {object[]} errors List of errors with the data.
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelDescription Description of the model.
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Input
* @memberOf! prediction(v1.5)
* @type object
* @property {object} input Input to the model for a prediction
*/
/**
* @typedef List
* @memberOf! prediction(v1.5)
* @type object
* @property {prediction(v1.5).Training[]} items List of models.
* @property {string} kind What kind of resource this is.
* @property {string} nextPageToken Pagination token to fetch the next page, if one exists.
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Output
* @memberOf! prediction(v1.5)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {string} outputLabel The most likely class label [Categorical models only].
* @property {object[]} outputMulti A list of class labels with their estimated probabilities [Categorical models only].
* @property {number} outputValue The estimated regression value [Regression models only].
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Training
* @memberOf! prediction(v1.5)
* @type object
* @property {string} created Insert time of the model (as a RFC 3339 timestamp).
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelInfo Model metadata.
* @property {string} modelType Type of predictive model (classification or regression)
* @property {string} selfLink A URL to re-request this resource.
* @property {string} storageDataLocation Google storage location of the training data file.
* @property {string} storagePMMLLocation Google storage location of the preprocessing pmml file.
* @property {string} storagePMMLModelLocation Google storage location of the pmml model file.
* @property {string} trainingComplete Training completion time (as a RFC 3339 timestamp).
* @property {object[]} trainingInstances Instances to train model on.
* @property {string} trainingStatus The current status of the training job. This can be one of following: RUNNING; DONE; ERROR; ERROR: TRAINING JOB NOT FOUND
* @property {object[]} utility A class weighting function, which allows the importance weights for class labels to be specified [Categorical models only].
*/
/**
* @typedef Update
* @memberOf! prediction(v1.5)
* @type object
* @property {any[]} csvInstance The input features for this instance
* @property {string} label The class label of this instance
* @property {string} output The generic output value - could be regression value or class label
*/
export = Prediction;

772
backend/node_modules/googleapis/apis/prediction/v1.6.js generated vendored Normal file
View File

@@ -0,0 +1,772 @@
"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.
*/
/* jshint maxlen: false */
const apirequest_1 = require("../../lib/apirequest");
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.6');
*
* @namespace prediction
* @type {Function}
* @version v1.6
* @variation v1.6
* @param {object=} options Options for Prediction
*/
function Prediction(options) {
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The name of a hosted model.
* hostedModelName: 'my-hosted-model-name', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.hostedmodels.predict(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project', 'hostedModelName'],
pathParams: ['hostedModelName', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.analyze
*
* @desc Get analysis of the model and the data the model was trained on.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.analyze(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.analyze
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
analyze: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}/analyze').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.delete(request, function(err) {
* if (err) {
* console.error(err);
* return;
* }
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.get(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Train a Prediction API model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.insert(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Insert} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project'],
pathParams: ['project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.list
*
* @desc List available models.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* var handlePage = function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* var itemsPage = response['items'];
* if (!itemsPage) {
* return;
* }
* for (var i = 0; i < itemsPage.length; i++) {
* // TODO: Change code below to process each resource in `itemsPage`:
* console.log(JSON.stringify(itemsPage[i], null, 2));
* }
*
* if (response.nextPageToken) {
* request.pageToken = response.nextPageToken;
* prediction.trainedmodels.list(request, handlePage);
* }
* };
*
* prediction.trainedmodels.list(request, handlePage);
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.list
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {integer=} params.maxResults Maximum number of results to return.
* @param {string=} params.pageToken Pagination token.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/list').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project'],
pathParams: ['project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.predict(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body. All existing properties
* // will be replaced.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.update(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return apirequest_1.default(parameters, callback);
}
};
}
module.exports = Prediction;
//# sourceMappingURL=v1.6.js.map

File diff suppressed because one or more lines are too long

889
backend/node_modules/googleapis/apis/prediction/v1.6.ts generated vendored Normal file
View File

@@ -0,0 +1,889 @@
/**
* 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.
*/
/* jshint maxlen: false */
import createAPIRequest from '../../lib/apirequest';
/**
* Prediction API
*
* Lets you access a cloud hosted machine learning service that makes it easy to build smart apps
*
* @example
* const google = require('googleapis');
* const prediction = google.prediction('v1.6');
*
* @namespace prediction
* @type {Function}
* @version v1.6
* @variation v1.6
* @param {object=} options Options for Prediction
*/
function Prediction(options) { // eslint-disable-line
const self = this;
self._options = options || {};
self.hostedmodels = {
/**
* prediction.hostedmodels.predict
*
* @desc Submit input and request an output against a hosted model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The name of a hosted model.
* hostedModelName: 'my-hosted-model-name', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.hostedmodels.predict(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.hostedmodels.predict
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.hostedModelName The name of a hosted model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/hostedmodels/{hostedModelName}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project', 'hostedModelName'],
pathParams: ['hostedModelName', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.trainedmodels = {
/**
* prediction.trainedmodels.analyze
*
* @desc Get analysis of the model and the data the model was trained on.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.analyze(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.analyze
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
analyze: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}/analyze').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.delete
*
* @desc Delete a trained model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.delete(request, function(err) {
* if (err) {
* console.error(err);
* return;
* }
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.delete
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.get
*
* @desc Check training status of your model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* prediction.trainedmodels.get(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.get
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.insert
*
* @desc Train a Prediction API model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.insert(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.insert
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Insert} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
insert: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project'],
pathParams: ['project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.list
*
* @desc List available models.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* auth: authClient,
* };
*
* var handlePage = function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* var itemsPage = response['items'];
* if (!itemsPage) {
* return;
* }
* for (var i = 0; i < itemsPage.length; i++) {
* // TODO: Change code below to process each resource in `itemsPage`:
* console.log(JSON.stringify(itemsPage[i], null, 2));
* }
*
* if (response.nextPageToken) {
* request.pageToken = response.nextPageToken;
* prediction.trainedmodels.list(request, handlePage);
* }
* };
*
* prediction.trainedmodels.list(request, handlePage);
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.list
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {integer=} params.maxResults Maximum number of results to return.
* @param {string=} params.pageToken Pagination token.
* @param {string} params.project The project associated with the model.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/list').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project'],
pathParams: ['project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.predict
*
* @desc Submit model id and request a prediction.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.predict(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.predict
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Input} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
predict: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}/predict').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* prediction.trainedmodels.update
*
* @desc Add new data to a trained model.
*
* @example
* // BEFORE RUNNING:
* // ---------------
* // 1. If not already done, enable the Prediction API
* // and check the quota for your project at
* // https://console.developers.google.com/apis/api/prediction
* // 2. This sample uses Application Default Credentials for authentication.
* // If not already done, install the gcloud CLI from
* // https://cloud.google.com/sdk and run
* // `gcloud beta auth application-default login`.
* // For more information, see
* // https://developers.google.com/identity/protocols/application-default-credentials
* // 3. Install the Node.js client library by running
* // `npm install googleapis --save`
*
* var google = require('googleapis');
* var prediction = google.prediction('v1.6');
*
* authorize(function(authClient) {
* var request = {
* // The project associated with the model.
* project: 'my-project', // TODO: Update placeholder value.
*
* // The unique name for the predictive model.
* id: 'my-id', // TODO: Update placeholder value.
*
* resource: {
* // TODO: Add desired properties to the request body. All existing properties
* // will be replaced.
* },
*
* auth: authClient,
* };
*
* prediction.trainedmodels.update(request, function(err, response) {
* if (err) {
* console.error(err);
* return;
* }
*
* // TODO: Change code below to process the `response` object:
* console.log(JSON.stringify(response, null, 2));
* });
* });
*
* function authorize(callback) {
* google.auth.getApplicationDefault(function(err, authClient) {
* if (err) {
* console.error('authentication failed: ', err);
* return;
* }
* if (authClient.createScopedRequired && authClient.createScopedRequired()) {
* var scopes = ['https://www.googleapis.com/auth/cloud-platform'];
* authClient = authClient.createScoped(scopes);
* }
* callback(authClient);
* });
* }
*
* @alias prediction.trainedmodels.update
* @memberOf! prediction(v1.6)
*
* @param {object} params Parameters for request
* @param {string} params.id The unique name for the predictive model.
* @param {string} params.project The project associated with the model.
* @param {prediction(v1.6).Update} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
update: function (params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options || (options = {});
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign({
url: (rootUrl + '/prediction/v1.6/projects/{project}/trainedmodels/{id}').replace(/([^:]\/)\/+/g, '$1'),
method: 'PUT'
}, options),
params: params,
requiredParams: ['project', 'id'],
pathParams: ['id', 'project'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Analyze
* @memberOf! prediction(v1.6)
* @type object
* @property {object} dataDescription Description of the data the model was trained on.
* @property {object[]} errors List of errors with the data.
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelDescription Description of the model.
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Input
* @memberOf! prediction(v1.6)
* @type object
* @property {object} input Input to the model for a prediction.
*/
/**
* @typedef Insert
* @memberOf! prediction(v1.6)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} modelType Type of predictive model (classification or regression).
* @property {string} sourceModel The Id of the model to be copied over.
* @property {string} storageDataLocation Google storage location of the training data file.
* @property {string} storagePMMLLocation Google storage location of the preprocessing pmml file.
* @property {string} storagePMMLModelLocation Google storage location of the pmml model file.
* @property {object[]} trainingInstances Instances to train model on.
* @property {object[]} utility A class weighting function, which allows the importance weights for class labels to be specified (Categorical models only).
*/
/**
* @typedef Insert2
* @memberOf! prediction(v1.6)
* @type object
* @property {string} created Insert time of the model (as a RFC 3339 timestamp).
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {object} modelInfo Model metadata.
* @property {string} modelType Type of predictive model (CLASSIFICATION or REGRESSION).
* @property {string} selfLink A URL to re-request this resource.
* @property {string} storageDataLocation Google storage location of the training data file.
* @property {string} storagePMMLLocation Google storage location of the preprocessing pmml file.
* @property {string} storagePMMLModelLocation Google storage location of the pmml model file.
* @property {string} trainingComplete Training completion time (as a RFC 3339 timestamp).
* @property {string} trainingStatus The current status of the training job. This can be one of following: RUNNING; DONE; ERROR; ERROR: TRAINING JOB NOT FOUND
*/
/**
* @typedef List
* @memberOf! prediction(v1.6)
* @type object
* @property {prediction(v1.6).Insert2[]} items List of models.
* @property {string} kind What kind of resource this is.
* @property {string} nextPageToken Pagination token to fetch the next page, if one exists.
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Output
* @memberOf! prediction(v1.6)
* @type object
* @property {string} id The unique name for the predictive model.
* @property {string} kind What kind of resource this is.
* @property {string} outputLabel The most likely class label (Categorical models only).
* @property {object[]} outputMulti A list of class labels with their estimated probabilities (Categorical models only).
* @property {string} outputValue The estimated regression value (Regression models only).
* @property {string} selfLink A URL to re-request this resource.
*/
/**
* @typedef Update
* @memberOf! prediction(v1.6)
* @type object
* @property {any[]} csvInstance The input features for this instance.
* @property {string} output The generic output value - could be regression or class label.
*/
export = Prediction;