..
This commit is contained in:
403
backend/node_modules/googleapis/apis/replicapool/v1beta1.js
generated
vendored
Normal file
403
backend/node_modules/googleapis/apis/replicapool/v1beta1.js
generated
vendored
Normal file
@@ -0,0 +1,403 @@
|
||||
"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");
|
||||
/**
|
||||
* Replica Pool API
|
||||
*
|
||||
* The Replica Pool API allows users to declaratively provision and manage groups of Google Compute Engine instances based on a common template.
|
||||
*
|
||||
* @example
|
||||
* const google = require('googleapis');
|
||||
* const replicapool = google.replicapool('v1beta1');
|
||||
*
|
||||
* @namespace replicapool
|
||||
* @type {Function}
|
||||
* @version v1beta1
|
||||
* @variation v1beta1
|
||||
* @param {object=} options Options for Replicapool
|
||||
*/
|
||||
function Replicapool(options) {
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
self.pools = {
|
||||
/**
|
||||
* replicapool.pools.delete
|
||||
*
|
||||
* @desc Deletes a replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.delete
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).PoolsDeleteRequest} 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
|
||||
*/
|
||||
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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.pools.get
|
||||
*
|
||||
* @desc Gets information about a single replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.get
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.pools.insert
|
||||
*
|
||||
* @desc Inserts a new replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.insert
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).Pool} 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone'],
|
||||
pathParams: ['projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.pools.list
|
||||
*
|
||||
* @desc List all replica pools.
|
||||
*
|
||||
* @alias replicapool.pools.list
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.maxResults Maximum count of results to be returned. Acceptable values are 0 to 100, inclusive. (Default: 50)
|
||||
* @param {string=} params.pageToken Set this to the nextPageToken value returned by a previous list request to obtain the next page of results from the previous list request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone'],
|
||||
pathParams: ['projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.pools.resize
|
||||
*
|
||||
* @desc Resize a pool. This is an asynchronous operation, and multiple overlapping resize requests can be made. Replica Pools will use the information from the last resize request.
|
||||
*
|
||||
* @alias replicapool.pools.resize
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.numReplicas The desired number of replicas to resize to. If this number is larger than the existing number of replicas, new replicas will be added. If the number is smaller, then existing replicas will be deleted.
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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
|
||||
*/
|
||||
resize: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/resize').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.pools.updatetemplate
|
||||
*
|
||||
* @desc Update the template used by the pool.
|
||||
*
|
||||
* @alias replicapool.pools.updatetemplate
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).Template} 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
|
||||
*/
|
||||
updatetemplate: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/updateTemplate').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
}
|
||||
};
|
||||
self.replicas = {
|
||||
/**
|
||||
* replicapool.replicas.delete
|
||||
*
|
||||
* @desc Deletes a replica from the pool.
|
||||
*
|
||||
* @alias replicapool.replicas.delete
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @param {replicapool(v1beta1).ReplicasDeleteRequest} 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
|
||||
*/
|
||||
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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.replicas.get
|
||||
*
|
||||
* @desc Gets information about a specific replica.
|
||||
*
|
||||
* @alias replicapool.replicas.get
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.replicas.list
|
||||
*
|
||||
* @desc Lists all replicas in a pool.
|
||||
*
|
||||
* @alias replicapool.replicas.list
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.maxResults Maximum count of results to be returned. Acceptable values are 0 to 100, inclusive. (Default: 50)
|
||||
* @param {string=} params.pageToken Set this to the nextPageToken value returned by a previous list request to obtain the next page of results from the previous list request.
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.zone The zone where the replica pool lives.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.replicas.restart
|
||||
*
|
||||
* @desc Restarts a replica in a pool.
|
||||
*
|
||||
* @alias replicapool.replicas.restart
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @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
|
||||
*/
|
||||
restart: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}/restart').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
}
|
||||
};
|
||||
}
|
||||
module.exports = Replicapool;
|
||||
//# sourceMappingURL=v1beta1.js.map
|
||||
1
backend/node_modules/googleapis/apis/replicapool/v1beta1.js.map
generated
vendored
Normal file
1
backend/node_modules/googleapis/apis/replicapool/v1beta1.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
675
backend/node_modules/googleapis/apis/replicapool/v1beta1.ts
generated
vendored
Normal file
675
backend/node_modules/googleapis/apis/replicapool/v1beta1.ts
generated
vendored
Normal file
@@ -0,0 +1,675 @@
|
||||
/**
|
||||
* 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';
|
||||
|
||||
/**
|
||||
* Replica Pool API
|
||||
*
|
||||
* The Replica Pool API allows users to declaratively provision and manage groups of Google Compute Engine instances based on a common template.
|
||||
*
|
||||
* @example
|
||||
* const google = require('googleapis');
|
||||
* const replicapool = google.replicapool('v1beta1');
|
||||
*
|
||||
* @namespace replicapool
|
||||
* @type {Function}
|
||||
* @version v1beta1
|
||||
* @variation v1beta1
|
||||
* @param {object=} options Options for Replicapool
|
||||
*/
|
||||
function Replicapool(options) { // eslint-disable-line
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
|
||||
self.pools = {
|
||||
|
||||
/**
|
||||
* replicapool.pools.delete
|
||||
*
|
||||
* @desc Deletes a replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.delete
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).PoolsDeleteRequest} 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
|
||||
*/
|
||||
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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.pools.get
|
||||
*
|
||||
* @desc Gets information about a single replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.get
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.pools.insert
|
||||
*
|
||||
* @desc Inserts a new replica pool.
|
||||
*
|
||||
* @alias replicapool.pools.insert
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).Pool} 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone'],
|
||||
pathParams: ['projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.pools.list
|
||||
*
|
||||
* @desc List all replica pools.
|
||||
*
|
||||
* @alias replicapool.pools.list
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.maxResults Maximum count of results to be returned. Acceptable values are 0 to 100, inclusive. (Default: 50)
|
||||
* @param {string=} params.pageToken Set this to the nextPageToken value returned by a previous list request to obtain the next page of results from the previous list request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone'],
|
||||
pathParams: ['projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.pools.resize
|
||||
*
|
||||
* @desc Resize a pool. This is an asynchronous operation, and multiple overlapping resize requests can be made. Replica Pools will use the information from the last resize request.
|
||||
*
|
||||
* @alias replicapool.pools.resize
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.numReplicas The desired number of replicas to resize to. If this number is larger than the existing number of replicas, new replicas will be added. If the number is smaller, then existing replicas will be deleted.
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @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
|
||||
*/
|
||||
resize: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/resize').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.pools.updatetemplate
|
||||
*
|
||||
* @desc Update the template used by the pool.
|
||||
*
|
||||
* @alias replicapool.pools.updatetemplate
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The name of the replica pool for this request.
|
||||
* @param {string} params.projectName The project ID for this replica pool.
|
||||
* @param {string} params.zone The zone for this replica pool.
|
||||
* @param {replicapool(v1beta1).Template} 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
|
||||
*/
|
||||
updatetemplate: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/updateTemplate').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
self.replicas = {
|
||||
|
||||
/**
|
||||
* replicapool.replicas.delete
|
||||
*
|
||||
* @desc Deletes a replica from the pool.
|
||||
*
|
||||
* @alias replicapool.replicas.delete
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @param {replicapool(v1beta1).ReplicasDeleteRequest} 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
|
||||
*/
|
||||
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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.replicas.get
|
||||
*
|
||||
* @desc Gets information about a specific replica.
|
||||
*
|
||||
* @alias replicapool.replicas.get
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.replicas.list
|
||||
*
|
||||
* @desc Lists all replicas in a pool.
|
||||
*
|
||||
* @alias replicapool.replicas.list
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {integer=} params.maxResults Maximum count of results to be returned. Acceptable values are 0 to 100, inclusive. (Default: 50)
|
||||
* @param {string=} params.pageToken Set this to the nextPageToken value returned by a previous list request to obtain the next page of results from the previous list request.
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.zone The zone where the replica pool lives.
|
||||
* @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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName'],
|
||||
pathParams: ['poolName', 'projectName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.replicas.restart
|
||||
*
|
||||
* @desc Restarts a replica in a pool.
|
||||
*
|
||||
* @alias replicapool.replicas.restart
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.poolName The replica pool name for this request.
|
||||
* @param {string} params.projectName The project ID for this request.
|
||||
* @param {string} params.replicaName The name of the replica for this request.
|
||||
* @param {string} params.zone The zone where the replica lives.
|
||||
* @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
|
||||
*/
|
||||
restart: 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 + '/replicapool/v1beta1/projects/{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}/restart').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['projectName', 'zone', 'poolName', 'replicaName'],
|
||||
pathParams: ['poolName', 'projectName', 'replicaName', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef AccessConfig
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} name Name of this access configuration.
|
||||
* @property {string} natIp An external IP address associated with this instance.
|
||||
* @property {string} type Type of this access configuration file. Currently only ONE_TO_ONE_NAT is supported.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Action
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string[]} commands A list of commands to run, one per line. If any command fails, the whole action is considered a failure and no further actions are run. This also marks the virtual machine or replica as a failure.
|
||||
* @property {replicapool(v1beta1).EnvVariable[]} envVariables A list of environment variables to use for the commands in this action.
|
||||
* @property {integer} timeoutMilliSeconds If an action's commands on a particular replica do not finish in the specified timeoutMilliSeconds, the replica is considered to be in a FAILING state. No efforts are made to stop any processes that were spawned or created as the result of running the action's commands. The default is the max allowed value, 1 hour (i.e. 3600000 milliseconds).
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef DiskAttachment
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} deviceName The device name of this disk.
|
||||
* @property {integer} index A zero-based index to assign to this disk, where 0 is reserved for the boot disk. If not specified, this is assigned by the server.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef EnvVariable
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {boolean} hidden Deprecated, do not use.
|
||||
* @property {string} name The name of the environment variable.
|
||||
* @property {string} value The value of the variable.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ExistingDisk
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {replicapool(v1beta1).DiskAttachment} attachment How the disk will be attached to the Replica.
|
||||
* @property {string} source The name of the Persistent Disk resource. The Persistent Disk resource must be in the same zone as the Pool.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef HealthCheck
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {integer} checkIntervalSec How often (in seconds) to make HTTP requests for this healthcheck. The default value is 5 seconds.
|
||||
* @property {string} description The description for this health check.
|
||||
* @property {integer} healthyThreshold The number of consecutive health check requests that need to succeed before the replica is considered healthy again. The default value is 2.
|
||||
* @property {string} host The value of the host header in the HTTP health check request. If left empty (default value), the localhost IP 127.0.0.1 will be used.
|
||||
* @property {string} name The name of this health check.
|
||||
* @property {string} path The localhost request path to send this health check, in the format /path/to/use. For example, /healthcheck.
|
||||
* @property {integer} port The TCP port for the health check requests.
|
||||
* @property {integer} timeoutSec How long (in seconds) to wait before a timeout failure for this healthcheck. The default value is 5 seconds.
|
||||
* @property {integer} unhealthyThreshold The number of consecutive health check requests that need to fail in order to consider the replica unhealthy. The default value is 2.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Label
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} key The key for this label.
|
||||
* @property {string} value The value of this label.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Metadata
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} fingerPrint The fingerprint of the metadata. Required for updating the metadata entries for this instance.
|
||||
* @property {replicapool(v1beta1).MetadataItem[]} items A list of metadata items.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef MetadataItem
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} key A metadata key.
|
||||
* @property {string} value A metadata value.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef NetworkInterface
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {replicapool(v1beta1).AccessConfig[]} accessConfigs An array of configurations for this interface. This specifies how this interface is configured to interact with other network services.
|
||||
* @property {string} network Name the Network resource to which this interface applies.
|
||||
* @property {string} networkIp An optional IPV4 internal network address to assign to the instance for this network interface.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef NewDisk
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {replicapool(v1beta1).DiskAttachment} attachment How the disk will be attached to the Replica.
|
||||
* @property {boolean} autoDelete If true, then this disk will be deleted when the instance is deleted. The default value is true.
|
||||
* @property {boolean} boot If true, indicates that this is the root persistent disk.
|
||||
* @property {replicapool(v1beta1).NewDiskInitializeParams} initializeParams Create the new disk using these parameters. The name of the disk will be <instance_name>-<four_random_charactersgt;.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef NewDiskInitializeParams
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} diskSizeGb The size of the created disk in gigabytes.
|
||||
* @property {string} diskType Name of the disk type resource describing which disk type to use to create the disk. For example 'pd-ssd' or 'pd-standard'. Default is 'pd-standard'
|
||||
* @property {string} sourceImage The name or fully-qualified URL of a source image to use to create this disk. If you provide a name of the source image, Replica Pool will look for an image with that name in your project. If you are specifying an image provided by Compute Engine, you will need to provide the full URL with the correct project, such as:
|
||||
http://www.googleapis.com/compute/v1/projects/debian-cloud/ global/images/debian-wheezy-7-vYYYYMMDD
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Pool
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {boolean} autoRestart Whether replicas in this pool should be restarted if they experience a failure. The default value is true.
|
||||
* @property {string} baseInstanceName The base instance name to use for the replicas in this pool. This must match the regex [a-z]([-a-z0-9]*[a-z0-9])?. If specified, the instances in this replica pool will be named in the format <base-instance-name>-<ID>. The <ID> postfix will be a four character alphanumeric identifier generated by the service.
|
||||
|
||||
If this is not specified by the user, a random base instance name is generated by the service.
|
||||
* @property {integer} currentNumReplicas [Output Only] The current number of replicas in the pool.
|
||||
* @property {string} description An optional description of the replica pool.
|
||||
* @property {replicapool(v1beta1).HealthCheck[]} healthChecks Deprecated. Please use template[].healthChecks instead.
|
||||
* @property {integer} initialNumReplicas The initial number of replicas this pool should have. You must provide a value greater than or equal to 0.
|
||||
* @property {replicapool(v1beta1).Label[]} labels A list of labels to attach to this replica pool and all created virtual machines in this replica pool.
|
||||
* @property {string} name The name of the replica pool. Must follow the regex [a-z]([-a-z0-9]*[a-z0-9])? and be 1-28 characters long.
|
||||
* @property {integer} numReplicas Deprecated! Use initial_num_replicas instead.
|
||||
* @property {string[]} resourceViews The list of resource views that should be updated with all the replicas that are managed by this pool.
|
||||
* @property {string} selfLink [Output Only] A self-link to the replica pool.
|
||||
* @property {string} targetPool Deprecated, please use target_pools instead.
|
||||
* @property {string[]} targetPools A list of target pools to update with the replicas that are managed by this pool. If specified, the replicas in this replica pool will be added to the specified target pools for load balancing purposes. The replica pool must live in the same region as the specified target pools. These values must be the target pool resource names, and not fully qualified URLs.
|
||||
* @property {replicapool(v1beta1).Template} template The template to use when creating replicas in this pool. This template is used during initial instance creation of the pool, when growing the pool in size, or when a replica restarts.
|
||||
* @property {string} type Deprecated! Do not set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef PoolsDeleteRequest
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string[]} abandonInstances If there are instances you would like to keep, you can specify them here. These instances won't be deleted, but the associated replica objects will be removed.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef PoolsListResponse
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} nextPageToken
|
||||
* @property {replicapool(v1beta1).Pool[]} resources
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Replica
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} name [Output Only] The name of the Replica object.
|
||||
* @property {string} selfLink [Output Only] The self-link of the Replica.
|
||||
* @property {replicapool(v1beta1).ReplicaStatus} status [Output Only] Last known status of the Replica.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ReplicaStatus
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} details [Output Only] Human-readable details about the current state of the replica
|
||||
* @property {string} state [Output Only] The state of the Replica.
|
||||
* @property {string} templateVersion [Output Only] The template used to build the replica.
|
||||
* @property {string} vmLink [Output Only] Link to the virtual machine that this Replica represents.
|
||||
* @property {string} vmStartTime [Output Only] The time that this Replica got to the RUNNING state, in RFC 3339 format. If the start time is unknown, UNKNOWN is returned.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ReplicasDeleteRequest
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {boolean} abandonInstance Whether the instance resource represented by this replica should be deleted or abandoned. If abandoned, the replica will be deleted but the virtual machine instance will remain. By default, this is set to false and the instance will be deleted along with the replica.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ReplicasListResponse
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} nextPageToken
|
||||
* @property {replicapool(v1beta1).Replica[]} resources
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ServiceAccount
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} email The service account email address, for example: 123845678986@project.gserviceaccount.com
|
||||
* @property {string[]} scopes The list of OAuth2 scopes to obtain for the service account, for example: https://www.googleapis.com/auth/devstorage.full_control
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Tag
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} fingerPrint The fingerprint of the tag. Required for updating the list of tags.
|
||||
* @property {string[]} items Items contained in this tag.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Template
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {replicapool(v1beta1).Action} action An action to run during initialization of your replicas. An action is run as shell commands which are executed one after the other in the same bash shell, so any state established by one command is inherited by later commands.
|
||||
* @property {replicapool(v1beta1).HealthCheck[]} healthChecks A list of HTTP Health Checks to configure for this replica pool and all virtual machines in this replica pool.
|
||||
* @property {string} version A free-form string describing the version of this template. You can provide any versioning string you would like. For example, version1 or template-v1.
|
||||
* @property {replicapool(v1beta1).VmParams} vmParams The virtual machine parameters to use for creating replicas. You can define settings such as the machine type and the image of replicas in this pool. This is required if replica type is SMART_VM.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef VmParams
|
||||
* @memberOf! replicapool(v1beta1)
|
||||
* @type object
|
||||
* @property {string} baseInstanceName Deprecated. Please use baseInstanceName instead.
|
||||
* @property {boolean} canIpForward Enables IP Forwarding, which allows this instance to receive packets destined for a different IP address, and send packets with a different source IP. See IP Forwarding for more information.
|
||||
* @property {string} description An optional textual description of the instance.
|
||||
* @property {replicapool(v1beta1).ExistingDisk[]} disksToAttach A list of existing Persistent Disk resources to attach to each replica in the pool. Each disk will be attached in read-only mode to every replica.
|
||||
* @property {replicapool(v1beta1).NewDisk[]} disksToCreate A list of Disk resources to create and attach to each Replica in the Pool. Currently, you can only define one disk and it must be a root persistent disk. Note that Replica Pool will create a root persistent disk for each replica.
|
||||
* @property {string} machineType The machine type for this instance. The resource name (e.g. n1-standard-1).
|
||||
* @property {replicapool(v1beta1).Metadata} metadata The metadata key/value pairs assigned to this instance.
|
||||
* @property {replicapool(v1beta1).NetworkInterface[]} networkInterfaces A list of network interfaces for the instance. Currently only one interface is supported by Google Compute Engine, ONE_TO_ONE_NAT.
|
||||
* @property {string} onHostMaintenance
|
||||
* @property {replicapool(v1beta1).ServiceAccount[]} serviceAccounts A list of Service Accounts to enable for this instance.
|
||||
* @property {replicapool(v1beta1).Tag} tags A list of tags to apply to the Google Compute Engine instance to identify resources.
|
||||
*/
|
||||
export = Replicapool;
|
||||
474
backend/node_modules/googleapis/apis/replicapool/v1beta2.js
generated
vendored
Normal file
474
backend/node_modules/googleapis/apis/replicapool/v1beta2.js
generated
vendored
Normal file
@@ -0,0 +1,474 @@
|
||||
"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");
|
||||
/**
|
||||
* Google Compute Engine Instance Group Manager API
|
||||
*
|
||||
* [Deprecated. Please use Instance Group Manager in Compute API] Provides groups of homogenous Compute Engine instances.
|
||||
*
|
||||
* @example
|
||||
* const google = require('googleapis');
|
||||
* const replicapool = google.replicapool('v1beta2');
|
||||
*
|
||||
* @namespace replicapool
|
||||
* @type {Function}
|
||||
* @version v1beta2
|
||||
* @variation v1beta2
|
||||
* @param {object=} options Options for Replicapool
|
||||
*/
|
||||
function Replicapool(options) {
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
self.instanceGroupManagers = {
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.abandonInstances
|
||||
*
|
||||
* @desc Removes the specified instances from the managed instance group, and from any target pools of which they were members, without deleting the instances.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.abandonInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersAbandonInstancesRequest} 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
|
||||
*/
|
||||
abandonInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.delete
|
||||
*
|
||||
* @desc Deletes the instance group manager and all instances contained within. If you'd like to delete the manager without deleting the instances, you must first abandon the instances to remove them from the group.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.delete
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager Name of the Instance Group Manager resource to delete.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'DELETE'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.deleteInstances
|
||||
*
|
||||
* @desc Deletes the specified instances. The instances are deleted, then removed from the instance group and any target pools of which they were a member. The targetSize of the instance group manager is reduced by the number of instances deleted.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.deleteInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersDeleteInstancesRequest} 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
|
||||
*/
|
||||
deleteInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.get
|
||||
*
|
||||
* @desc Returns the specified Instance Group Manager resource.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.get
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager Name of the instance resource to return.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.insert
|
||||
*
|
||||
* @desc Creates an instance group manager, as well as the instance group and the specified number of instances.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.insert
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {integer} params.size Number of instances that should exist.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManager} 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'size'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.list
|
||||
*
|
||||
* @desc Retrieves the list of Instance Group Manager resources contained within the specified zone.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.list
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string=} params.filter Optional. Filter expression for filtering listed resources.
|
||||
* @param {integer=} params.maxResults Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
|
||||
* @param {string=} params.pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.recreateInstances
|
||||
*
|
||||
* @desc Recreates the specified instances. The instances are deleted, then recreated using the instance group manager's current instance template.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.recreateInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersRecreateInstancesRequest} 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
|
||||
*/
|
||||
recreateInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.resize
|
||||
*
|
||||
* @desc Resizes the managed instance group up or down. If resized up, new instances are created using the current instance template. If resized down, instances are removed in the order outlined in Resizing a managed instance group.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.resize
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {integer} params.size Number of instances that should exist in this Instance Group Manager.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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
|
||||
*/
|
||||
resize: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager', 'size'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.setInstanceTemplate
|
||||
*
|
||||
* @desc Sets the instance template to use when creating new instances in this group. Existing instances are not affected.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.setInstanceTemplate
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersSetInstanceTemplateRequest} 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
|
||||
*/
|
||||
setInstanceTemplate: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.setTargetPools
|
||||
*
|
||||
* @desc Modifies the target pools to which all new instances in this group are assigned. Existing instances in the group are not affected.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.setTargetPools
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersSetTargetPoolsRequest} 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
|
||||
*/
|
||||
setTargetPools: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
}
|
||||
};
|
||||
self.zoneOperations = {
|
||||
/**
|
||||
* replicapool.zoneOperations.get
|
||||
*
|
||||
* @desc Retrieves the specified zone-specific operation resource.
|
||||
*
|
||||
* @alias replicapool.zoneOperations.get
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.operation Name of the operation resource to return.
|
||||
* @param {string} params.project Name of the project scoping this request.
|
||||
* @param {string} params.zone Name of the zone scoping this request.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/operations/{operation}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'operation'],
|
||||
pathParams: ['operation', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
},
|
||||
/**
|
||||
* replicapool.zoneOperations.list
|
||||
*
|
||||
* @desc Retrieves the list of operation resources contained within the specified zone.
|
||||
*
|
||||
* @alias replicapool.zoneOperations.list
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string=} params.filter Optional. Filter expression for filtering listed resources.
|
||||
* @param {integer=} params.maxResults Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
|
||||
* @param {string=} params.pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
|
||||
* @param {string} params.project Name of the project scoping this request.
|
||||
* @param {string} params.zone Name of the zone scoping this request.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/operations').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
}
|
||||
};
|
||||
}
|
||||
module.exports = Replicapool;
|
||||
//# sourceMappingURL=v1beta2.js.map
|
||||
1
backend/node_modules/googleapis/apis/replicapool/v1beta2.js.map
generated
vendored
Normal file
1
backend/node_modules/googleapis/apis/replicapool/v1beta2.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
645
backend/node_modules/googleapis/apis/replicapool/v1beta2.ts
generated
vendored
Normal file
645
backend/node_modules/googleapis/apis/replicapool/v1beta2.ts
generated
vendored
Normal file
@@ -0,0 +1,645 @@
|
||||
/**
|
||||
* 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';
|
||||
|
||||
/**
|
||||
* Google Compute Engine Instance Group Manager API
|
||||
*
|
||||
* [Deprecated. Please use Instance Group Manager in Compute API] Provides groups of homogenous Compute Engine instances.
|
||||
*
|
||||
* @example
|
||||
* const google = require('googleapis');
|
||||
* const replicapool = google.replicapool('v1beta2');
|
||||
*
|
||||
* @namespace replicapool
|
||||
* @type {Function}
|
||||
* @version v1beta2
|
||||
* @variation v1beta2
|
||||
* @param {object=} options Options for Replicapool
|
||||
*/
|
||||
function Replicapool(options) { // eslint-disable-line
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
|
||||
self.instanceGroupManagers = {
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.abandonInstances
|
||||
*
|
||||
* @desc Removes the specified instances from the managed instance group, and from any target pools of which they were members, without deleting the instances.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.abandonInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersAbandonInstancesRequest} 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
|
||||
*/
|
||||
abandonInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.delete
|
||||
*
|
||||
* @desc Deletes the instance group manager and all instances contained within. If you'd like to delete the manager without deleting the instances, you must first abandon the instances to remove them from the group.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.delete
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager Name of the Instance Group Manager resource to delete.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'DELETE'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.deleteInstances
|
||||
*
|
||||
* @desc Deletes the specified instances. The instances are deleted, then removed from the instance group and any target pools of which they were a member. The targetSize of the instance group manager is reduced by the number of instances deleted.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.deleteInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersDeleteInstancesRequest} 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
|
||||
*/
|
||||
deleteInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.get
|
||||
*
|
||||
* @desc Returns the specified Instance Group Manager resource.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.get
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager Name of the instance resource to return.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.insert
|
||||
*
|
||||
* @desc Creates an instance group manager, as well as the instance group and the specified number of instances.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.insert
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {integer} params.size Number of instances that should exist.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManager} 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'size'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.list
|
||||
*
|
||||
* @desc Retrieves the list of Instance Group Manager resources contained within the specified zone.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.list
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string=} params.filter Optional. Filter expression for filtering listed resources.
|
||||
* @param {integer=} params.maxResults Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
|
||||
* @param {string=} params.pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.recreateInstances
|
||||
*
|
||||
* @desc Recreates the specified instances. The instances are deleted, then recreated using the instance group manager's current instance template.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.recreateInstances
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersRecreateInstancesRequest} 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
|
||||
*/
|
||||
recreateInstances: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.resize
|
||||
*
|
||||
* @desc Resizes the managed instance group up or down. If resized up, new instances are created using the current instance template. If resized down, instances are removed in the order outlined in Resizing a managed instance group.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.resize
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {integer} params.size Number of instances that should exist in this Instance Group Manager.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @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
|
||||
*/
|
||||
resize: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager', 'size'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.setInstanceTemplate
|
||||
*
|
||||
* @desc Sets the instance template to use when creating new instances in this group. Existing instances are not affected.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.setInstanceTemplate
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersSetInstanceTemplateRequest} 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
|
||||
*/
|
||||
setInstanceTemplate: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.instanceGroupManagers.setTargetPools
|
||||
*
|
||||
* @desc Modifies the target pools to which all new instances in this group are assigned. Existing instances in the group are not affected.
|
||||
*
|
||||
* @alias replicapool.instanceGroupManagers.setTargetPools
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.instanceGroupManager The name of the instance group manager.
|
||||
* @param {string} params.project The Google Developers Console project name.
|
||||
* @param {string} params.zone The name of the zone in which the instance group manager resides.
|
||||
* @param {replicapool(v1beta2).InstanceGroupManagersSetTargetPoolsRequest} 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
|
||||
*/
|
||||
setTargetPools: 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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'POST'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'instanceGroupManager'],
|
||||
pathParams: ['instanceGroupManager', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
self.zoneOperations = {
|
||||
|
||||
/**
|
||||
* replicapool.zoneOperations.get
|
||||
*
|
||||
* @desc Retrieves the specified zone-specific operation resource.
|
||||
*
|
||||
* @alias replicapool.zoneOperations.get
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.operation Name of the operation resource to return.
|
||||
* @param {string} params.project Name of the project scoping this request.
|
||||
* @param {string} params.zone Name of the zone scoping this request.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/operations/{operation}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone', 'operation'],
|
||||
pathParams: ['operation', 'project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* replicapool.zoneOperations.list
|
||||
*
|
||||
* @desc Retrieves the list of operation resources contained within the specified zone.
|
||||
*
|
||||
* @alias replicapool.zoneOperations.list
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string=} params.filter Optional. Filter expression for filtering listed resources.
|
||||
* @param {integer=} params.maxResults Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
|
||||
* @param {string=} params.pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
|
||||
* @param {string} params.project Name of the project scoping this request.
|
||||
* @param {string} params.zone Name of the zone scoping this request.
|
||||
* @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 + '/replicapool/v1beta2/projects/{project}/zones/{zone}/operations').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['project', 'zone'],
|
||||
pathParams: ['project', 'zone'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManager
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {replicapool(v1beta2).ReplicaPoolAutoHealingPolicy[]} autoHealingPolicies The autohealing policy for this managed instance group. You can specify only one value.
|
||||
* @property {string} baseInstanceName The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
|
||||
* @property {string} creationTimestamp [Output only] The time the instance group manager was created, in RFC3339 text format.
|
||||
* @property {integer} currentSize [Output only] The number of instances that currently exist and are a part of this group. This includes instances that are starting but are not yet RUNNING, and instances that are in the process of being deleted or abandoned.
|
||||
* @property {string} description An optional textual description of the instance group manager.
|
||||
* @property {string} fingerprint [Output only] Fingerprint of the instance group manager. This field is used for optimistic locking. An up-to-date fingerprint must be provided in order to modify the Instance Group Manager resource.
|
||||
* @property {string} group [Output only] The full URL of the instance group created by the manager. This group contains all of the instances being managed, and cannot contain non-managed instances.
|
||||
* @property {string} id [Output only] A server-assigned unique identifier for the resource.
|
||||
* @property {string} instanceTemplate The full URL to an instance template from which all new instances will be created.
|
||||
* @property {string} kind [Output only] The resource type. Always replicapool#instanceGroupManager.
|
||||
* @property {string} name The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
|
||||
* @property {string} selfLink [Output only] The fully qualified URL for this resource.
|
||||
* @property {string[]} targetPools The full URL of all target pools to which new instances in the group are added. Updating the target pool values does not affect existing instances.
|
||||
* @property {integer} targetSize [Output only] The number of instances that the manager is attempting to maintain. Deleting or abandoning instances affects this number, as does resizing the group.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagerList
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} id Unique identifier for the resource; defined by the server (output only).
|
||||
* @property {replicapool(v1beta2).InstanceGroupManager[]} items A list of instance resources.
|
||||
* @property {string} kind Type of resource.
|
||||
* @property {string} nextPageToken A token used to continue a truncated list request (output only).
|
||||
* @property {string} selfLink Server defined URL for this resource (output only).
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagersAbandonInstancesRequest
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string[]} instances The names of one or more instances to abandon. For example:
|
||||
{ 'instances': [ 'instance-c3po', 'instance-r2d2' ] }
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagersDeleteInstancesRequest
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string[]} instances Names of instances to delete.
|
||||
|
||||
Example: 'instance-foo', 'instance-bar'
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagersRecreateInstancesRequest
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string[]} instances The names of one or more instances to recreate. For example:
|
||||
{ 'instances': [ 'instance-c3po', 'instance-r2d2' ] }
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagersSetInstanceTemplateRequest
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} instanceTemplate The full URL to an Instance Template from which all new instances will be created.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef InstanceGroupManagersSetTargetPoolsRequest
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} fingerprint The current fingerprint of the Instance Group Manager resource. If this does not match the server-side fingerprint of the resource, then the request will be rejected.
|
||||
* @property {string[]} targetPools A list of fully-qualified URLs to existing Target Pool resources. New instances in the Instance Group Manager will be added to the specified target pools; existing instances are not affected.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Operation
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} clientOperationId [Output only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project.
|
||||
* @property {string} creationTimestamp [Output Only] The time that this operation was requested, in RFC3339 text format.
|
||||
* @property {string} endTime [Output Only] The time that this operation was completed, in RFC3339 text format.
|
||||
* @property {object} error [Output Only] If errors occurred during processing of this operation, this field will be populated.
|
||||
* @property {string} httpErrorMessage [Output only] If operation fails, the HTTP error message returned.
|
||||
* @property {integer} httpErrorStatusCode [Output only] If operation fails, the HTTP error status code returned.
|
||||
* @property {string} id [Output Only] Unique identifier for the resource, generated by the server.
|
||||
* @property {string} insertTime [Output Only] The time that this operation was requested, in RFC3339 text format.
|
||||
* @property {string} kind [Output only] Type of the resource.
|
||||
* @property {string} name [Output Only] Name of the resource.
|
||||
* @property {string} operationType [Output only] Type of the operation. Operations include insert, update, and delete.
|
||||
* @property {integer} progress [Output only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess at when the operation will be complete. This number should be monotonically increasing as the operation progresses.
|
||||
* @property {string} region [Output Only] URL of the region where the operation resides. Only available when performing regional operations.
|
||||
* @property {string} selfLink [Output Only] Server-defined fully-qualified URL for this resource.
|
||||
* @property {string} startTime [Output Only] The time that this operation was started by the server, in RFC3339 text format.
|
||||
* @property {string} status [Output Only] Status of the operation.
|
||||
* @property {string} statusMessage [Output Only] An optional textual description of the current status of the operation.
|
||||
* @property {string} targetId [Output Only] Unique target ID which identifies a particular incarnation of the target.
|
||||
* @property {string} targetLink [Output only] URL of the resource the operation is mutating.
|
||||
* @property {string} user [Output Only] User who requested the operation, for example: user@example.com.
|
||||
* @property {object[]} warnings [Output Only] If there are issues with this operation, a warning is returned.
|
||||
* @property {string} zone [Output Only] URL of the zone where the operation resides. Only available when performing per-zone operations.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef OperationList
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} id Unique identifier for the resource; defined by the server (output only).
|
||||
* @property {replicapool(v1beta2).Operation[]} items The operation resources.
|
||||
* @property {string} kind Type of resource.
|
||||
* @property {string} nextPageToken A token used to continue a truncated list request (output only).
|
||||
* @property {string} selfLink Server defined URL for this resource (output only).
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef ReplicaPoolAutoHealingPolicy
|
||||
* @memberOf! replicapool(v1beta2)
|
||||
* @type object
|
||||
* @property {string} actionType The action to perform when an instance becomes unhealthy. Possible values are RECREATE or REBOOT. RECREATE replaces an unhealthy instance with a new instance that is based on the instance template for this managed instance group. REBOOT performs a soft reboot on an instance. If the instance cannot reboot, the instance performs a hard restart.
|
||||
* @property {string} healthCheck The URL for the HealthCheck that signals autohealing.
|
||||
*/
|
||||
export = Replicapool;
|
||||
Reference in New Issue
Block a user