@signalwire/compatibility-api
Version:
SignalWire Compatibility API
251 lines (222 loc) • 7.38 kB
JavaScript
;
/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */
var Q = require('q'); /* jshint ignore:line */
var _ = require('lodash'); /* jshint ignore:line */
var util = require('util'); /* jshint ignore:line */
var Page = require('../../../../base/Page'); /* jshint ignore:line */
var deserialize = require(
'../../../../base/deserialize'); /* jshint ignore:line */
var values = require('../../../../base/values'); /* jshint ignore:line */
var NewSigningKeyList;
var NewSigningKeyPage;
var NewSigningKeyInstance;
/* jshint ignore:start */
/**
* Initialize the NewSigningKeyList
*
* @constructor Twilio.Api.V2010.AccountContext.NewSigningKeyList
*
* @param {Twilio.Api.V2010} version - Version of the resource
* @param {string} accountSid -
* A 34 character string that uniquely identifies this resource.
*/
/* jshint ignore:end */
NewSigningKeyList = function NewSigningKeyList(version, accountSid) {
/* jshint ignore:start */
/**
* @function newSigningKeys
* @memberof Twilio.Api.V2010.AccountContext#
*
* @param {string} sid - sid of instance
*
* @returns {Twilio.Api.V2010.AccountContext.NewSigningKeyContext}
*/
/* jshint ignore:end */
function NewSigningKeyListInstance(sid) {
return NewSigningKeyListInstance.get(sid);
}
NewSigningKeyListInstance._version = version;
// Path Solution
NewSigningKeyListInstance._solution = {accountSid: accountSid};
NewSigningKeyListInstance._uri = `/Accounts/${accountSid}/SigningKeys.json`;
/* jshint ignore:start */
/**
* create a NewSigningKeyInstance
*
* @function create
* @memberof Twilio.Api.V2010.AccountContext.NewSigningKeyList#
*
* @param {object} [opts] - Options for request
* @param {string} [opts.friendlyName] - A string to describe the resource
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed NewSigningKeyInstance
*/
/* jshint ignore:end */
NewSigningKeyListInstance.create = function create(opts, callback) {
if (_.isFunction(opts)) {
callback = opts;
opts = {};
}
opts = opts || {};
var deferred = Q.defer();
var data = values.of({'FriendlyName': _.get(opts, 'friendlyName')});
var promise = this._version.create({uri: this._uri, method: 'POST', data: data});
promise = promise.then(function(payload) {
deferred.resolve(new NewSigningKeyInstance(this._version, payload));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Api.V2010.AccountContext.NewSigningKeyList#
*
* @returns Object
*/
/* jshint ignore:end */
NewSigningKeyListInstance.toJSON = function toJSON() {
return this._solution;
};
NewSigningKeyListInstance[util.inspect.custom] = function inspect(depth,
options) {
return util.inspect(this.toJSON(), options);
};
return NewSigningKeyListInstance;
};
/* jshint ignore:start */
/**
* Initialize the NewSigningKeyPage
*
* @constructor Twilio.Api.V2010.AccountContext.NewSigningKeyPage
*
* @param {V2010} version - Version of the resource
* @param {Response<string>} response - Response from the API
* @param {NewSigningKeySolution} solution - Path solution
*
* @returns NewSigningKeyPage
*/
/* jshint ignore:end */
NewSigningKeyPage = function NewSigningKeyPage(version, response, solution) {
// Path Solution
this._solution = solution;
Page.prototype.constructor.call(this, version, response, this._solution);
};
_.extend(NewSigningKeyPage.prototype, Page.prototype);
NewSigningKeyPage.prototype.constructor = NewSigningKeyPage;
/* jshint ignore:start */
/**
* Build an instance of NewSigningKeyInstance
*
* @function getInstance
* @memberof Twilio.Api.V2010.AccountContext.NewSigningKeyPage#
*
* @param {NewSigningKeyPayload} payload - Payload response from the API
*
* @returns NewSigningKeyInstance
*/
/* jshint ignore:end */
NewSigningKeyPage.prototype.getInstance = function getInstance(payload) {
return new NewSigningKeyInstance(this._version, payload, this._solution.accountSid);
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Api.V2010.AccountContext.NewSigningKeyPage#
*
* @returns Object
*/
/* jshint ignore:end */
NewSigningKeyPage.prototype.toJSON = function toJSON() {
let clone = {};
_.forOwn(this, function(value, key) {
if (!_.startsWith(key, '_') && ! _.isFunction(value)) {
clone[key] = value;
}
});
return clone;
};
NewSigningKeyPage.prototype[util.inspect.custom] = function inspect(depth,
options) {
return util.inspect(this.toJSON(), options);
};
/* jshint ignore:start */
/**
* Initialize the NewSigningKeyContext
*
* @constructor Twilio.Api.V2010.AccountContext.NewSigningKeyInstance
*
* @property {string} sid - The unique string that identifies the resource
* @property {string} friendlyName -
* The string that you assigned to describe the resource
* @property {Date} dateCreated -
* The RFC 2822 date and time in GMT that the resource was created
* @property {Date} dateUpdated -
* The RFC 2822 date and time in GMT that the resource was last updated
* @property {string} secret -
* The secret your application uses to sign Access Tokens and to authenticate to the REST API.
*
* @param {V2010} version - Version of the resource
* @param {NewSigningKeyPayload} payload - The instance payload
* @param {sid} accountSid -
* A 34 character string that uniquely identifies this resource.
*/
/* jshint ignore:end */
NewSigningKeyInstance = function NewSigningKeyInstance(version, payload,
accountSid) {
this._version = version;
// Marshaled Properties
this.sid = payload.sid; // jshint ignore:line
this.friendlyName = payload.friendly_name; // jshint ignore:line
this.dateCreated = deserialize.rfc2822DateTime(payload.date_created); // jshint ignore:line
this.dateUpdated = deserialize.rfc2822DateTime(payload.date_updated); // jshint ignore:line
this.secret = payload.secret; // jshint ignore:line
// Context
this._context = undefined;
this._solution = {accountSid: accountSid, };
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Api.V2010.AccountContext.NewSigningKeyInstance#
*
* @returns Object
*/
/* jshint ignore:end */
NewSigningKeyInstance.prototype.toJSON = function toJSON() {
let clone = {};
_.forOwn(this, function(value, key) {
if (!_.startsWith(key, '_') && ! _.isFunction(value)) {
clone[key] = value;
}
});
return clone;
};
NewSigningKeyInstance.prototype[util.inspect.custom] = function inspect(depth,
options) {
return util.inspect(this.toJSON(), options);
};
module.exports = {
NewSigningKeyList: NewSigningKeyList,
NewSigningKeyPage: NewSigningKeyPage,
NewSigningKeyInstance: NewSigningKeyInstance
};