Files
old-slucajna-televizija/backend/node_modules/googleapis/apis/taskqueue/v1beta1.ts
GotPPay a75ea978f9 ..
2017-10-16 20:21:19 +02:00

283 lines
9.8 KiB
TypeScript

/**
* 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';
/**
* TaskQueue API
*
* Accesses a Google App Engine Pull Task Queue over REST.
*
* @example
* const google = require('googleapis');
* const taskqueue = google.taskqueue('v1beta1');
*
* @namespace taskqueue
* @type {Function}
* @version v1beta1
* @variation v1beta1
* @param {object=} options Options for Taskqueue
*/
function Taskqueue(options) { // eslint-disable-line
const self = this;
self._options = options || {};
self.taskqueues = {
/**
* taskqueue.taskqueues.get
*
* @desc Get detailed information about a TaskQueue.
*
* @alias taskqueue.taskqueues.get
* @memberOf! taskqueue(v1beta1)
*
* @param {object} params Parameters for request
* @param {boolean=} params.getStats Whether to get stats. Optional.
* @param {string} params.project The project under which the queue lies.
* @param {string} params.taskqueue The id of the taskqueue to get the properties of.
* @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 + '/taskqueue/v1beta1/projects/{project}/taskqueues/{taskqueue}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'taskqueue'],
pathParams: ['project', 'taskqueue'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
self.tasks = {
/**
* taskqueue.tasks.delete
*
* @desc Delete a task from a TaskQueue.
*
* @alias taskqueue.tasks.delete
* @memberOf! taskqueue(v1beta1)
*
* @param {object} params Parameters for request
* @param {string} params.project The project under which the queue lies.
* @param {string} params.task The id of the task to delete.
* @param {string} params.taskqueue The taskqueue to delete a task from.
* @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 + '/taskqueue/v1beta1/projects/{project}/taskqueues/{taskqueue}/tasks/{task}').replace(/([^:]\/)\/+/g, '$1'),
method: 'DELETE'
}, options),
params: params,
requiredParams: ['project', 'taskqueue', 'task'],
pathParams: ['project', 'task', 'taskqueue'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* taskqueue.tasks.get
*
* @desc Get a particular task from a TaskQueue.
*
* @alias taskqueue.tasks.get
* @memberOf! taskqueue(v1beta1)
*
* @param {object} params Parameters for request
* @param {string} params.project The project under which the queue lies.
* @param {string} params.task The task to get properties of.
* @param {string} params.taskqueue The taskqueue in which the task belongs.
* @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 + '/taskqueue/v1beta1/projects/{project}/taskqueues/{taskqueue}/tasks/{task}').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'taskqueue', 'task'],
pathParams: ['project', 'task', 'taskqueue'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* taskqueue.tasks.lease
*
* @desc Lease 1 or more tasks from a TaskQueue.
*
* @alias taskqueue.tasks.lease
* @memberOf! taskqueue(v1beta1)
*
* @param {object} params Parameters for request
* @param {integer} params.leaseSecs The lease in seconds.
* @param {integer} params.numTasks The number of tasks to lease.
* @param {string} params.project The project under which the queue lies.
* @param {string} params.taskqueue The taskqueue to lease a task from.
* @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
*/
lease: 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 + '/taskqueue/v1beta1/projects/{project}/taskqueues/{taskqueue}/tasks/lease').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
}, options),
params: params,
requiredParams: ['project', 'taskqueue', 'numTasks', 'leaseSecs'],
pathParams: ['project', 'taskqueue'],
context: self
};
return createAPIRequest(parameters, callback);
},
/**
* taskqueue.tasks.list
*
* @desc List Tasks in a TaskQueue
*
* @alias taskqueue.tasks.list
* @memberOf! taskqueue(v1beta1)
*
* @param {object} params Parameters for request
* @param {string} params.project The project under which the queue lies.
* @param {string} params.taskqueue The id of the taskqueue to list tasks from.
* @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 + '/taskqueue/v1beta1/projects/{project}/taskqueues/{taskqueue}/tasks').replace(/([^:]\/)\/+/g, '$1'),
method: 'GET'
}, options),
params: params,
requiredParams: ['project', 'taskqueue'],
pathParams: ['project', 'taskqueue'],
context: self
};
return createAPIRequest(parameters, callback);
}
};
}
/**
* @typedef Task
* @memberOf! taskqueue(v1beta1)
* @type object
* @property {string} enqueueTimestamp Time (in seconds since the epoch) at which the task was enqueued.
* @property {string} id Name of the task.
* @property {string} kind The kind of object returned, in this case set to task.
* @property {string} leaseTimestamp Time (in seconds since the epoch) at which the task lease will expire. This value is 0 if the task isnt currently leased out to a worker.
* @property {string} payloadBase64 A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded.
* @property {string} queueName Name of the queue that the task is in.
*/
/**
* @typedef TaskQueue
* @memberOf! taskqueue(v1beta1)
* @type object
* @property {object} acl ACLs that are applicable to this TaskQueue object.
* @property {string} id Name of the taskqueue.
* @property {string} kind The kind of REST object returned, in this case taskqueue.
* @property {integer} maxLeases The number of times we should lease out tasks before giving up on them. If unset we lease them out forever until a worker deletes the task.
* @property {object} stats Statistics for the TaskQueue object in question.
*/
/**
* @typedef Tasks
* @memberOf! taskqueue(v1beta1)
* @type object
* @property {taskqueue(v1beta1).Task[]} items The actual list of tasks returned as a result of the lease operation.
* @property {string} kind The kind of object returned, a list of tasks.
*/
/**
* @typedef Tasks2
* @memberOf! taskqueue(v1beta1)
* @type object
* @property {taskqueue(v1beta1).Task[]} items The actual list of tasks currently active in the TaskQueue.
* @property {string} kind The kind of object returned, a list of tasks.
*/
export = Taskqueue;