1297 lines
66 KiB
JavaScript
1297 lines
66 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/* jshint maxlen: false */
|
|
const apirequest_1 = require("../../lib/apirequest");
|
|
/**
|
|
* Cloud Storage JSON API
|
|
*
|
|
* Lets you store and retrieve potentially-large, immutable data objects.
|
|
*
|
|
* @example
|
|
* const google = require('googleapis');
|
|
* const storage = google.storage('v1beta2');
|
|
*
|
|
* @namespace storage
|
|
* @type {Function}
|
|
* @version v1beta2
|
|
* @variation v1beta2
|
|
* @param {object=} options Options for Storage
|
|
*/
|
|
function Storage(options) {
|
|
const self = this;
|
|
self._options = options || {};
|
|
self.bucketAccessControls = {
|
|
/**
|
|
* storage.bucketAccessControls.delete
|
|
*
|
|
* @desc Permanently deletes the ACL entry for the specified entity on the specified bucket.
|
|
*
|
|
* @alias storage.bucketAccessControls.delete
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'DELETE'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.bucketAccessControls.get
|
|
*
|
|
* @desc Returns the ACL entry for the specified entity on the specified bucket.
|
|
*
|
|
* @alias storage.bucketAccessControls.get
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.bucketAccessControls.insert
|
|
*
|
|
* @desc Creates a new ACL entry on the specified bucket.
|
|
*
|
|
* @alias storage.bucketAccessControls.insert
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {storage(v1beta2).BucketAccessControl} 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 + '/storage/v1beta2/b/{bucket}/acl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.bucketAccessControls.list
|
|
*
|
|
* @desc Retrieves ACL entries on the specified bucket.
|
|
*
|
|
* @alias storage.bucketAccessControls.list
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/acl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.bucketAccessControls.patch
|
|
*
|
|
* @desc Updates an ACL entry on the specified bucket. This method supports patch semantics.
|
|
*
|
|
* @alias storage.bucketAccessControls.patch
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {storage(v1beta2).BucketAccessControl} 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
|
|
*/
|
|
patch: 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 + '/storage/v1beta2/b/{bucket}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PATCH'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.bucketAccessControls.update
|
|
*
|
|
* @desc Updates an ACL entry on the specified bucket.
|
|
*
|
|
* @alias storage.bucketAccessControls.update
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {storage(v1beta2).BucketAccessControl} 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 + '/storage/v1beta2/b/{bucket}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PUT'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
self.buckets = {
|
|
/**
|
|
* storage.buckets.delete
|
|
*
|
|
* @desc Permanently deletes an empty bucket.
|
|
*
|
|
* @alias storage.buckets.delete
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.
|
|
* @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 + '/storage/v1beta2/b/{bucket}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'DELETE'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.buckets.get
|
|
*
|
|
* @desc Returns metadata for the specified bucket.
|
|
*
|
|
* @alias storage.buckets.get
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl.
|
|
* @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 + '/storage/v1beta2/b/{bucket}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.buckets.insert
|
|
*
|
|
* @desc Creates a new bucket.
|
|
*
|
|
* @alias storage.buckets.insert
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.project A valid API project identifier.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or defaultObjectAcl properties, when it defaults to full.
|
|
* @param {storage(v1beta2).Bucket} 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 + '/storage/v1beta2/b').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['project'],
|
|
pathParams: [],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.buckets.list
|
|
*
|
|
* @desc Retrieves a list of buckets for a given project.
|
|
*
|
|
* @alias storage.buckets.list
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {integer=} params.maxResults Maximum number of buckets to return.
|
|
* @param {string=} params.pageToken A previously-returned page token representing part of the larger set of results to view.
|
|
* @param {string} params.project A valid API project identifier.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl.
|
|
* @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 + '/storage/v1beta2/b').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['project'],
|
|
pathParams: [],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.buckets.patch
|
|
*
|
|
* @desc Updates a bucket. This method supports patch semantics.
|
|
*
|
|
* @alias storage.buckets.patch
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to full.
|
|
* @param {storage(v1beta2).Bucket} 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
|
|
*/
|
|
patch: 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 + '/storage/v1beta2/b/{bucket}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PATCH'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.buckets.update
|
|
*
|
|
* @desc Updates a bucket.
|
|
*
|
|
* @alias storage.buckets.update
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to full.
|
|
* @param {storage(v1beta2).Bucket} 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 + '/storage/v1beta2/b/{bucket}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PUT'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
self.channels = {
|
|
/**
|
|
* storage.channels.stop
|
|
*
|
|
* @desc Stop watching resources through this channel
|
|
*
|
|
* @alias storage.channels.stop
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {storage(v1beta2).Channel} 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
|
|
*/
|
|
stop: 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 + '/storage/v1beta2/channels/stop').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: [],
|
|
pathParams: [],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
self.defaultObjectAccessControls = {
|
|
/**
|
|
* storage.defaultObjectAccessControls.delete
|
|
*
|
|
* @desc Permanently deletes the default object ACL entry for the specified entity on the specified bucket.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.delete
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'DELETE'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.defaultObjectAccessControls.get
|
|
*
|
|
* @desc Returns the default object ACL entry for the specified entity on the specified bucket.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.get
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.defaultObjectAccessControls.insert
|
|
*
|
|
* @desc Creates a new default object ACL entry on the specified bucket.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.insert
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.defaultObjectAccessControls.list
|
|
*
|
|
* @desc Retrieves default object ACL entries on the specified bucket.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.list
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.ifMetagenerationMatch If present, only return default ACL listing if the bucket's current metageneration matches this value.
|
|
* @param {string=} params.ifMetagenerationNotMatch If present, only return default ACL listing if the bucket's current metageneration does not match the given value.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.defaultObjectAccessControls.patch
|
|
*
|
|
* @desc Updates a default object ACL entry on the specified bucket. This method supports patch semantics.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.patch
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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
|
|
*/
|
|
patch: 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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PATCH'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.defaultObjectAccessControls.update
|
|
*
|
|
* @desc Updates a default object ACL entry on the specified bucket.
|
|
*
|
|
* @alias storage.defaultObjectAccessControls.update
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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 + '/storage/v1beta2/b/{bucket}/defaultObjectAcl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PUT'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'entity'],
|
|
pathParams: ['bucket', 'entity'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
self.objectAccessControls = {
|
|
/**
|
|
* storage.objectAccessControls.delete
|
|
*
|
|
* @desc Permanently deletes the ACL entry for the specified entity on the specified object.
|
|
*
|
|
* @alias storage.objectAccessControls.delete
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'DELETE'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object', 'entity'],
|
|
pathParams: ['bucket', 'entity', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objectAccessControls.get
|
|
*
|
|
* @desc Returns the ACL entry for the specified entity on the specified object.
|
|
*
|
|
* @alias storage.objectAccessControls.get
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object', 'entity'],
|
|
pathParams: ['bucket', 'entity', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objectAccessControls.insert
|
|
*
|
|
* @desc Creates a new ACL entry on the specified object.
|
|
*
|
|
* @alias storage.objectAccessControls.insert
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objectAccessControls.list
|
|
*
|
|
* @desc Retrieves ACL entries on the specified object.
|
|
*
|
|
* @alias storage.objectAccessControls.list
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objectAccessControls.patch
|
|
*
|
|
* @desc Updates an ACL entry on the specified object. This method supports patch semantics.
|
|
*
|
|
* @alias storage.objectAccessControls.patch
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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
|
|
*/
|
|
patch: 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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PATCH'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object', 'entity'],
|
|
pathParams: ['bucket', 'entity', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objectAccessControls.update
|
|
*
|
|
* @desc Updates an ACL entry on the specified object.
|
|
*
|
|
* @alias storage.objectAccessControls.update
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of a bucket.
|
|
* @param {string} params.entity The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string} params.object Name of the object.
|
|
* @param {storage(v1beta2).ObjectAccessControl} 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 + '/storage/v1beta2/b/{bucket}/o/{object}/acl/{entity}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PUT'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object', 'entity'],
|
|
pathParams: ['bucket', 'entity', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
self.objects = {
|
|
/**
|
|
* storage.objects.compose
|
|
*
|
|
* @desc Concatenates a list of existing objects into a new object in the same bucket.
|
|
*
|
|
* @alias storage.objects.compose
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.destinationBucket Name of the bucket in which to store the new object.
|
|
* @param {string} params.destinationObject Name of the new object.
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's current generation matches the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {storage(v1beta2).ComposeRequest} 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
|
|
*/
|
|
compose: 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 + '/storage/v1beta2/b/{destinationBucket}/o/{destinationObject}/compose').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['destinationBucket', 'destinationObject'],
|
|
pathParams: ['destinationBucket', 'destinationObject'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.copy
|
|
*
|
|
* @desc Copies an object to a destination in the same location. Optionally overrides metadata.
|
|
*
|
|
* @alias storage.objects.copy
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.destinationBucket Name of the bucket in which to store the new object. Overrides the provided object metadata's bucket value, if any.
|
|
* @param {string} params.destinationObject Name of the new object. Required when the object metadata is not otherwise provided. Overrides the object metadata's name value, if any.
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the destination object's current generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the destination object's current generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the destination object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the destination object's current metageneration does not match the given value.
|
|
* @param {string=} params.ifSourceGenerationMatch Makes the operation conditional on whether the source object's generation matches the given value.
|
|
* @param {string=} params.ifSourceGenerationNotMatch Makes the operation conditional on whether the source object's generation does not match the given value.
|
|
* @param {string=} params.ifSourceMetagenerationMatch Makes the operation conditional on whether the source object's current metageneration matches the given value.
|
|
* @param {string=} params.ifSourceMetagenerationNotMatch Makes the operation conditional on whether the source object's current metageneration does not match the given value.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
|
|
* @param {string} params.sourceBucket Name of the bucket in which to find the source object.
|
|
* @param {string=} params.sourceGeneration If present, selects a specific revision of the source object (as opposed to the latest version, the default).
|
|
* @param {string} params.sourceObject Name of the source object.
|
|
* @param {storage(v1beta2).Object} 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
|
|
*/
|
|
copy: 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 + '/storage/v1beta2/b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['sourceBucket', 'sourceObject', 'destinationBucket', 'destinationObject'],
|
|
pathParams: ['destinationBucket', 'destinationObject', 'sourceBucket', 'sourceObject'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.delete
|
|
*
|
|
* @desc Deletes data blobs and associated metadata. Deletions are permanent if versioning is not enabled for the bucket, or if the generation parameter is used.
|
|
*
|
|
* @alias storage.objects.delete
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which the object resides.
|
|
* @param {string=} params.generation If present, permanently deletes a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's current generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the object's current generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the object's current metageneration does not match the given value.
|
|
* @param {string} params.object Name of the object.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o/{object}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'DELETE'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.get
|
|
*
|
|
* @desc Retrieves objects or their associated metadata.
|
|
*
|
|
* @alias storage.objects.get
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which the object resides.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the object's generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the object's current metageneration does not match the given value.
|
|
* @param {string} params.object Name of the object.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o/{object}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.insert
|
|
*
|
|
* @desc Stores new data blobs and associated metadata.
|
|
*
|
|
* @alias storage.objects.insert
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which to store the new object. Overrides the provided object metadata's bucket value, if any.
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's current generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the object's current generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the object's current metageneration does not match the given value.
|
|
* @param {string=} params.name Name of the object. Required when the object metadata is not otherwise provided. Overrides the object metadata's name value, if any.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
|
|
* @param {object} params.resource Media resource metadata
|
|
* @param {object} params.media Media object
|
|
* @param {string} params.media.mimeType Media mime-type
|
|
* @param {string|object} params.media.body Media body contents
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
mediaUrl: (rootUrl + '/upload/storage/v1beta2/b/{bucket}/o').replace(/([^:]\/)\/+/g, '$1'),
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.list
|
|
*
|
|
* @desc Retrieves a list of objects matching the criteria.
|
|
*
|
|
* @alias storage.objects.list
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which to look for objects.
|
|
* @param {string=} params.delimiter Returns results in a directory-like mode. items will contain only objects whose names, aside from the prefix, do not contain delimiter. Objects whose names, aside from the prefix, contain delimiter will have their name, truncated after the delimiter, returned in prefixes. Duplicate prefixes are omitted.
|
|
* @param {integer=} params.maxResults Maximum number of items plus prefixes to return. As duplicate prefixes are omitted, fewer total results may be returned than requested.
|
|
* @param {string=} params.pageToken A previously-returned page token representing part of the larger set of results to view.
|
|
* @param {string=} params.prefix Filter results to objects whose names begin with this prefix.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl.
|
|
* @param {boolean=} params.versions If true, lists all versions of a file as distinct results.
|
|
* @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 + '/storage/v1beta2/b/{bucket}/o').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'GET'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.patch
|
|
*
|
|
* @desc Updates a data blob's associated metadata. This method supports patch semantics.
|
|
*
|
|
* @alias storage.objects.patch
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which the object resides.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's current generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the object's current generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the object's current metageneration does not match the given value.
|
|
* @param {string} params.object Name of the object.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to full.
|
|
* @param {storage(v1beta2).Object} 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
|
|
*/
|
|
patch: 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 + '/storage/v1beta2/b/{bucket}/o/{object}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PATCH'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.update
|
|
*
|
|
* @desc Updates a data blob's associated metadata.
|
|
*
|
|
* @alias storage.objects.update
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which the object resides.
|
|
* @param {string=} params.generation If present, selects a specific revision of this object (as opposed to the latest version, the default).
|
|
* @param {string=} params.ifGenerationMatch Makes the operation conditional on whether the object's current generation matches the given value.
|
|
* @param {string=} params.ifGenerationNotMatch Makes the operation conditional on whether the object's current generation does not match the given value.
|
|
* @param {string=} params.ifMetagenerationMatch Makes the operation conditional on whether the object's current metageneration matches the given value.
|
|
* @param {string=} params.ifMetagenerationNotMatch Makes the operation conditional on whether the object's current metageneration does not match the given value.
|
|
* @param {string} params.object Name of the object.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to full.
|
|
* @param {storage(v1beta2).Object} 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 + '/storage/v1beta2/b/{bucket}/o/{object}').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'PUT'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket', 'object'],
|
|
pathParams: ['bucket', 'object'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
},
|
|
/**
|
|
* storage.objects.watchAll
|
|
*
|
|
* @desc Watch for changes on all objects in a bucket.
|
|
*
|
|
* @alias storage.objects.watchAll
|
|
* @memberOf! storage(v1beta2)
|
|
*
|
|
* @param {object} params Parameters for request
|
|
* @param {string} params.bucket Name of the bucket in which to look for objects.
|
|
* @param {string=} params.delimiter Returns results in a directory-like mode. items will contain only objects whose names, aside from the prefix, do not contain delimiter. Objects whose names, aside from the prefix, contain delimiter will have their name, truncated after the delimiter, returned in prefixes. Duplicate prefixes are omitted.
|
|
* @param {integer=} params.maxResults Maximum number of items plus prefixes to return. As duplicate prefixes are omitted, fewer total results may be returned than requested.
|
|
* @param {string=} params.pageToken A previously-returned page token representing part of the larger set of results to view.
|
|
* @param {string=} params.prefix Filter results to objects whose names begin with this prefix.
|
|
* @param {string=} params.projection Set of properties to return. Defaults to noAcl.
|
|
* @param {boolean=} params.versions If true, lists all versions of a file as distinct results.
|
|
* @param {storage(v1beta2).Channel} 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
|
|
*/
|
|
watchAll: 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 + '/storage/v1beta2/b/{bucket}/o/watch').replace(/([^:]\/)\/+/g, '$1'),
|
|
method: 'POST'
|
|
}, options),
|
|
params: params,
|
|
requiredParams: ['bucket'],
|
|
pathParams: ['bucket'],
|
|
context: self
|
|
};
|
|
return apirequest_1.default(parameters, callback);
|
|
}
|
|
};
|
|
}
|
|
module.exports = Storage;
|
|
//# sourceMappingURL=v1beta2.js.map
|