@enfonica/voice
Version:
Enfonica Numbering SDK for Node.js
775 lines • 33.2 kB
JavaScript
"use strict";
// Copyright 2023 Enfonica Pty Ltd
//
// 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
//
// https://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.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **
Object.defineProperty(exports, "__esModule", { value: true });
exports.AliasesClient = void 0;
const gax = require("google-gax");
const localAuth = require("@enfonica/auth-library");
const path = require("path");
const gapicConfig = require("./aliases_client_config.json");
const version = require('../../../package.json').version;
/**
* Manages SIP aliases.
* @class
* @memberof v1beta1
*/
class AliasesClient {
/**
* Construct an instance of AliasesClient.
*
* @param {object} [options] - The configuration object. See the subsequent
* parameters for more details.
* @param {object} [options.credentials] - Credentials object.
* @param {string} [options.credentials.client_email]
* @param {string} [options.credentials.private_key]
* @param {string} [options.email] - Account email address. Required when
* using a .pem or .p12 keyFilename.
* @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
* .p12 key downloaded from the Google Developers Console. If you provide
* a path to a JSON file, the projectId option below is not necessary.
* NOTE: .pem and .p12 require you to specify options.email as well.
* @param {number} [options.port] - The port on which to connect to
* the remote host.
* @param {string} [options.projectId] - The project ID from the Google
* Developer's Console, e.g. 'grape-spaceship-123'. We will also check
* the environment variable GCLOUD_PROJECT for your project ID. If your
* app is running in an environment which supports
* {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
* your project ID will be detected automatically.
* @param {string} [options.apiEndpoint] - The domain name of the
* API remote host.
*/
constructor(opts) {
this._terminated = false;
this.descriptors = {
page: {},
stream: {},
longrunning: {},
batching: {},
};
// Ensure that options include the service address and port.
const staticMembers = this.constructor;
const servicePath = opts && opts.servicePath
? opts.servicePath
: opts && opts.apiEndpoint
? opts.apiEndpoint
: staticMembers.servicePath;
const port = opts && opts.port ? opts.port : staticMembers.port;
if (!opts) {
opts = { servicePath, port };
}
opts.servicePath = opts.servicePath || servicePath;
opts.port = opts.port || port;
opts.auth = new localAuth.GoogleAuth({ keyFilename: opts.keyFile });
// users can override the config from client side, like retry codes name.
// The detailed structure of the clientConfig can be found here: https://github.com/googleapis/gax-nodejs/blob/master/src/gax.ts#L546
// The way to override client config for Showcase API:
//
// const customConfig = {"interfaces": {"google.showcase.v1beta1.Echo": {"methods": {"Echo": {"retry_codes_name": "idempotent", "retry_params_name": "default"}}}}}
// const showcaseClient = new showcaseClient({ projectId, customConfig });
opts.clientConfig = opts.clientConfig || {};
// If we're running in browser, it's OK to omit `fallback` since
// google-gax has `browser` field in its `package.json`.
// For Electron (which does not respect `browser` field),
// pass `{fallback: true}` to the AliasesClient constructor.
this._gaxModule = opts.fallback ? gax.fallback : gax;
// Create a `gaxGrpc` object, with any grpc-specific options
// sent to the client.
opts.scopes = this.constructor.scopes;
this._gaxGrpc = new this._gaxModule.GrpcClient(opts);
// Save options to use in initialize() method.
this._opts = opts;
// Save the auth object to the client, for use by other methods.
this.auth = this._gaxGrpc.auth;
// Determine the client header string.
const clientHeader = [`gax/${this._gaxModule.version}`, `gapic/${version}`];
if (typeof process !== 'undefined' && 'versions' in process) {
clientHeader.push(`gl-node/${process.versions.node}`);
}
else {
clientHeader.push(`gl-web/${this._gaxModule.version}`);
}
if (!opts.fallback) {
clientHeader.push(`grpc/${this._gaxGrpc.grpcVersion}`);
}
if (opts.libName && opts.libVersion) {
clientHeader.push(`${opts.libName}/${opts.libVersion}`);
}
// Load the applicable protos.
// For Node.js, pass the path to JSON proto file.
// For browsers, pass the JSON content.
const nodejsProtoPath = path.join(__dirname, '..', '..', 'protos', 'protos.json');
this._protos = this._gaxGrpc.loadProto(opts.fallback
? // eslint-disable-next-line @typescript-eslint/no-var-requires
require('../../protos/protos.json')
: nodejsProtoPath);
// This API contains "path templates"; forward-slash-separated
// identifiers to uniquely identify resources within the API.
// Create useful helper objects for these.
this.pathTemplates = {
aliasPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/sipDomains/{sip_domain}/aliases/{alias}'),
callPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}'),
recordingPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/recordings/{recording}'),
sipDomainPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/sipDomains/{sip_domain}'),
sipInfoPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/sipInfo'),
transcriptionPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/transcriptions/{transcription}'),
};
// Some of the methods on this service return "paged" results,
// (e.g. 50 results at a time, with tokens to get subsequent
// pages). Denote the keys used for pagination and results.
this.descriptors.page = {
listAliases: new this._gaxModule.PageDescriptor('pageToken', 'nextPageToken', 'aliases'),
};
// Put together the default options sent with requests.
this._defaults = this._gaxGrpc.constructSettings('enfonica.voice.v1beta1.Aliases', gapicConfig, opts.clientConfig || {}, { 'x-goog-api-client': clientHeader.join(' ') });
// Set up a dictionary of "inner API calls"; the core implementation
// of calling the API is handled in `google-gax`, with this code
// merely providing the destination and request information.
this.innerApiCalls = {};
}
/**
* Initialize the client.
* Performs asynchronous operations (such as authentication) and prepares the client.
* This function will be called automatically when any class method is called for the
* first time, but if you need to initialize it before calling an actual method,
* feel free to call initialize() directly.
*
* You can await on this method if you want to make sure the client is initialized.
*
* @returns {Promise} A promise that resolves to an authenticated service stub.
*/
initialize() {
// If the client stub promise is already initialized, return immediately.
if (this.aliasesStub) {
return this.aliasesStub;
}
// Put together the "service stub" for
// enfonica.voice.v1beta1.Aliases.
this.aliasesStub = this._gaxGrpc.createStub(this._opts.fallback
? this._protos.lookupService('enfonica.voice.v1beta1.Aliases')
: // eslint-disable-next-line @typescript-eslint/no-explicit-any
this._protos.enfonica.voice.v1beta1.Aliases, this._opts);
// Iterate over each of the methods that the service provides
// and create an API call method for each.
const aliasesStubMethods = [
'createAlias',
'getAlias',
'listAliases',
'updateAlias',
'deleteAlias',
];
for (const methodName of aliasesStubMethods) {
const callPromise = this.aliasesStub.then(stub => (...args) => {
if (this._terminated) {
return Promise.reject('The client has already been closed.');
}
const func = stub[methodName];
return func.apply(stub, args);
}, (err) => () => {
throw err;
});
const descriptor = this.descriptors.page[methodName] || undefined;
const apiCall = this._gaxModule.createApiCall(callPromise, this._defaults[methodName], descriptor);
this.innerApiCalls[methodName] = apiCall;
}
return this.aliasesStub;
}
/**
* The DNS address for this API service.
*/
static get servicePath() {
return 'voice.api.enfonica.com';
}
/**
* The DNS address for this API service - same as servicePath(),
* exists for compatibility reasons.
*/
static get apiEndpoint() {
return 'voice.api.enfonica.com';
}
/**
* The port for this API service.
*/
static get port() {
return 443;
}
/**
* The scopes needed to make gRPC calls for every method defined
* in this service.
*/
static get scopes() {
return ['https://api.enfonica.com/auth/voice'];
}
/**
* Return the project ID used by this class.
* @param {function(Error, string)} callback - the callback to
* be called with the current project Id.
*/
getProjectId(callback) {
if (callback) {
this.auth.getProjectId(callback);
return;
}
return this.auth.getProjectId();
}
/**
* Creates a alias.
*
* The caller must have `voice.aliases.create` permission on the project.
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.parent
* The SIP domain under which to create the alias in the form `projects/* /sipDomains/*`.
* @param {enfonica.voice.v1beta1.Alias} request.alias
* The alias resource to be created.
* @param {string} request.aliasId
* The `alias_id` component of the resource name to create, which will be of the form
* `projects/{project_id}/sipDomains/{sip_domain_id}/aliases/{alias_id}`.
*
* This also forms the address of the alias, of the form: {alias}@{sip_domain_id}.sip.enfonica.com
*
* This must be lowercase alpha-numeric or hyphens and
* must start and end with an alpha-numeric character, and must be a minimum of 2 and maximum of 30 characters.
* This is captured in the following regular expression: ^{@link a-z0-9-|a-z0-9}{0,28}[a-z0-9]$
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [Alias]{@link enfonica.voice.v1beta1.Alias}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
createAlias(request, optionsOrCallback, callback) {
request = request || {};
let options;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
}
else {
options = optionsOrCallback;
}
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
parent: request.parent || '',
});
this.initialize();
return this.innerApiCalls.createAlias(request, options, callback);
}
/**
* Retrieves a alias identified by the supplied resource name.
*
* The caller must have `voice.aliases.get` permission on the project.
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.name
* The resource name of the alias to retrieve.
* Must be of the form `projects/* /sipDomains/* /aliases/*`.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [Alias]{@link enfonica.voice.v1beta1.Alias}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
getAlias(request, optionsOrCallback, callback) {
request = request || {};
let options;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
}
else {
options = optionsOrCallback;
}
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
name: request.name || '',
});
this.initialize();
return this.innerApiCalls.getAlias(request, options, callback);
}
/**
* Updates a alias.
*
* The caller must have `voice.aliases.update` permission on the project.
*
* @param {Object} request
* The request object that will be sent.
* @param {enfonica.voice.v1beta1.Alias} request.alias
* The new definition of the Alias.
* @param {google.protobuf.FieldMask} request.updateMask
* Fields to be updated.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [Alias]{@link enfonica.voice.v1beta1.Alias}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
updateAlias(request, optionsOrCallback, callback) {
request = request || {};
let options;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
}
else {
options = optionsOrCallback;
}
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
'alias.name': request.alias.name || '',
});
this.initialize();
return this.innerApiCalls.updateAlias(request, options, callback);
}
/**
* Deletes the specified alias.
*
* The caller must have `voice.aliases.delete` permission on the project.
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.name
* The resource name of the alias to be deleted.
* Must be of the form `projects/* /sipDomains/* /aliases/*`.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is an object representing [Empty]{@link google.protobuf.Empty}.
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
deleteAlias(request, optionsOrCallback, callback) {
request = request || {};
let options;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
}
else {
options = optionsOrCallback;
}
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
name: request.name || '',
});
this.initialize();
return this.innerApiCalls.deleteAlias(request, options, callback);
}
/**
* Lists all Aliases.
* List returns alias sorted by create_time descending.
*
* The caller must have `voice.aliases.list` permission on the project.
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.parent
* The SIP domain under which to list aliases, in the form `projects/* /sipDomains/*`.
* @param {number} request.pageSize
* The maximum number of aliases to return in the response.
* Default value of 10 and maximum value of 100.
* @param {string} request.pageToken
* A pagination token returned from a previous call to `ListAliases`
* that indicates where this listing should continue from.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
* The first element of the array is Array of [Alias]{@link enfonica.voice.v1beta1.Alias}.
* The client library support auto-pagination by default: it will call the API as many
* times as needed and will merge results from all the pages into this array.
*
* When autoPaginate: false is specified through options, the array has three elements.
* The first element is Array of [Alias]{@link enfonica.voice.v1beta1.Alias} that corresponds to
* the one page received from the API server.
* If the second element is not null it contains the request object of type [ListAliasesRequest]{@link enfonica.voice.v1beta1.ListAliasesRequest}
* that can be used to obtain the next page of the results.
* If it is null, the next page does not exist.
* The third element contains the raw response received from the API server. Its type is
* [ListAliasesResponse]{@link enfonica.voice.v1beta1.ListAliasesResponse}.
*
* The promise has a method named "cancel" which cancels the ongoing API call.
*/
listAliases(request, optionsOrCallback, callback) {
request = request || {};
let options;
if (typeof optionsOrCallback === 'function' && callback === undefined) {
callback = optionsOrCallback;
options = {};
}
else {
options = optionsOrCallback;
}
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
parent: request.parent || '',
});
this.initialize();
return this.innerApiCalls.listAliases(request, options, callback);
}
/**
* Equivalent to {@link listAliases}, but returns a NodeJS Stream object.
*
* This fetches the paged responses for {@link listAliases} continuously
* and invokes the callback registered for 'data' event for each element in the
* responses.
*
* The returned object has 'end' method when no more elements are required.
*
* autoPaginate option will be ignored.
*
* @see {@link https://nodejs.org/api/stream.html}
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.parent
* The SIP domain under which to list aliases, in the form `projects/* /sipDomains/*`.
* @param {number} request.pageSize
* The maximum number of aliases to return in the response.
* Default value of 10 and maximum value of 100.
* @param {string} request.pageToken
* A pagination token returned from a previous call to `ListAliases`
* that indicates where this listing should continue from.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Stream}
* An object stream which emits an object representing [Alias]{@link enfonica.voice.v1beta1.Alias} on 'data' event.
*/
listAliasesStream(request, options) {
request = request || {};
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
parent: request.parent || '',
});
const callSettings = new gax.CallSettings(options);
this.initialize();
return this.descriptors.page.listAliases.createStream(this.innerApiCalls.listAliases, request, callSettings);
}
/**
* Equivalent to {@link listAliases}, but returns an iterable object.
*
* for-await-of syntax is used with the iterable to recursively get response element on-demand.
*
* @param {Object} request
* The request object that will be sent.
* @param {string} request.parent
* The SIP domain under which to list aliases, in the form `projects/* /sipDomains/*`.
* @param {number} request.pageSize
* The maximum number of aliases to return in the response.
* Default value of 10 and maximum value of 100.
* @param {string} request.pageToken
* A pagination token returned from a previous call to `ListAliases`
* that indicates where this listing should continue from.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Object}
* An iterable Object that conforms to @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols.
*/
listAliasesAsync(request, options) {
request = request || {};
options = options || {};
options.otherArgs = options.otherArgs || {};
options.otherArgs.headers = options.otherArgs.headers || {};
options.otherArgs.headers['x-goog-request-params'] =
gax.routingHeader.fromParams({
parent: request.parent || '',
});
options = options || {};
const callSettings = new gax.CallSettings(options);
this.initialize();
return this.descriptors.page.listAliases.asyncIterate(this.innerApiCalls['listAliases'], request, callSettings);
}
// --------------------
// -- Path templates --
// --------------------
/**
* Return a fully-qualified alias resource name string.
*
* @param {string} project
* @param {string} sip_domain
* @param {string} alias
* @returns {string} Resource name string.
*/
aliasPath(project, sipDomain, alias) {
return this.pathTemplates.aliasPathTemplate.render({
project: project,
sip_domain: sipDomain,
alias: alias,
});
}
/**
* Parse the project from Alias resource.
*
* @param {string} aliasName
* A fully-qualified path representing Alias resource.
* @returns {string} A string representing the project.
*/
matchProjectFromAliasName(aliasName) {
return this.pathTemplates.aliasPathTemplate.match(aliasName).project;
}
/**
* Parse the sip_domain from Alias resource.
*
* @param {string} aliasName
* A fully-qualified path representing Alias resource.
* @returns {string} A string representing the sip_domain.
*/
matchSipDomainFromAliasName(aliasName) {
return this.pathTemplates.aliasPathTemplate.match(aliasName).sip_domain;
}
/**
* Parse the alias from Alias resource.
*
* @param {string} aliasName
* A fully-qualified path representing Alias resource.
* @returns {string} A string representing the alias.
*/
matchAliasFromAliasName(aliasName) {
return this.pathTemplates.aliasPathTemplate.match(aliasName).alias;
}
/**
* Return a fully-qualified call resource name string.
*
* @param {string} project
* @param {string} call
* @returns {string} Resource name string.
*/
callPath(project, call) {
return this.pathTemplates.callPathTemplate.render({
project: project,
call: call,
});
}
/**
* Parse the project from Call resource.
*
* @param {string} callName
* A fully-qualified path representing Call resource.
* @returns {string} A string representing the project.
*/
matchProjectFromCallName(callName) {
return this.pathTemplates.callPathTemplate.match(callName).project;
}
/**
* Parse the call from Call resource.
*
* @param {string} callName
* A fully-qualified path representing Call resource.
* @returns {string} A string representing the call.
*/
matchCallFromCallName(callName) {
return this.pathTemplates.callPathTemplate.match(callName).call;
}
/**
* Return a fully-qualified recording resource name string.
*
* @param {string} project
* @param {string} call
* @param {string} recording
* @returns {string} Resource name string.
*/
recordingPath(project, call, recording) {
return this.pathTemplates.recordingPathTemplate.render({
project: project,
call: call,
recording: recording,
});
}
/**
* Parse the project from Recording resource.
*
* @param {string} recordingName
* A fully-qualified path representing Recording resource.
* @returns {string} A string representing the project.
*/
matchProjectFromRecordingName(recordingName) {
return this.pathTemplates.recordingPathTemplate.match(recordingName)
.project;
}
/**
* Parse the call from Recording resource.
*
* @param {string} recordingName
* A fully-qualified path representing Recording resource.
* @returns {string} A string representing the call.
*/
matchCallFromRecordingName(recordingName) {
return this.pathTemplates.recordingPathTemplate.match(recordingName).call;
}
/**
* Parse the recording from Recording resource.
*
* @param {string} recordingName
* A fully-qualified path representing Recording resource.
* @returns {string} A string representing the recording.
*/
matchRecordingFromRecordingName(recordingName) {
return this.pathTemplates.recordingPathTemplate.match(recordingName)
.recording;
}
/**
* Return a fully-qualified sipDomain resource name string.
*
* @param {string} project
* @param {string} sip_domain
* @returns {string} Resource name string.
*/
sipDomainPath(project, sipDomain) {
return this.pathTemplates.sipDomainPathTemplate.render({
project: project,
sip_domain: sipDomain,
});
}
/**
* Parse the project from SipDomain resource.
*
* @param {string} sipDomainName
* A fully-qualified path representing SipDomain resource.
* @returns {string} A string representing the project.
*/
matchProjectFromSipDomainName(sipDomainName) {
return this.pathTemplates.sipDomainPathTemplate.match(sipDomainName)
.project;
}
/**
* Parse the sip_domain from SipDomain resource.
*
* @param {string} sipDomainName
* A fully-qualified path representing SipDomain resource.
* @returns {string} A string representing the sip_domain.
*/
matchSipDomainFromSipDomainName(sipDomainName) {
return this.pathTemplates.sipDomainPathTemplate.match(sipDomainName)
.sip_domain;
}
/**
* Return a fully-qualified sipInfo resource name string.
*
* @param {string} project
* @param {string} call
* @returns {string} Resource name string.
*/
sipInfoPath(project, call) {
return this.pathTemplates.sipInfoPathTemplate.render({
project: project,
call: call,
});
}
/**
* Parse the project from SipInfo resource.
*
* @param {string} sipInfoName
* A fully-qualified path representing SipInfo resource.
* @returns {string} A string representing the project.
*/
matchProjectFromSipInfoName(sipInfoName) {
return this.pathTemplates.sipInfoPathTemplate.match(sipInfoName).project;
}
/**
* Parse the call from SipInfo resource.
*
* @param {string} sipInfoName
* A fully-qualified path representing SipInfo resource.
* @returns {string} A string representing the call.
*/
matchCallFromSipInfoName(sipInfoName) {
return this.pathTemplates.sipInfoPathTemplate.match(sipInfoName).call;
}
/**
* Return a fully-qualified transcription resource name string.
*
* @param {string} project
* @param {string} call
* @param {string} transcription
* @returns {string} Resource name string.
*/
transcriptionPath(project, call, transcription) {
return this.pathTemplates.transcriptionPathTemplate.render({
project: project,
call: call,
transcription: transcription,
});
}
/**
* Parse the project from Transcription resource.
*
* @param {string} transcriptionName
* A fully-qualified path representing Transcription resource.
* @returns {string} A string representing the project.
*/
matchProjectFromTranscriptionName(transcriptionName) {
return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName)
.project;
}
/**
* Parse the call from Transcription resource.
*
* @param {string} transcriptionName
* A fully-qualified path representing Transcription resource.
* @returns {string} A string representing the call.
*/
matchCallFromTranscriptionName(transcriptionName) {
return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName)
.call;
}
/**
* Parse the transcription from Transcription resource.
*
* @param {string} transcriptionName
* A fully-qualified path representing Transcription resource.
* @returns {string} A string representing the transcription.
*/
matchTranscriptionFromTranscriptionName(transcriptionName) {
return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName)
.transcription;
}
/**
* Terminate the GRPC channel and close the client.
*
* The client will no longer be usable and all future behavior is undefined.
*/
close() {
this.initialize();
if (!this._terminated) {
return this.aliasesStub.then(stub => {
this._terminated = true;
stub.close();
});
}
return Promise.resolve();
}
}
exports.AliasesClient = AliasesClient;
//# sourceMappingURL=aliases_client.js.map