SipDomainsClient

SipDomainsClient

Manages SIP Domains.

Constructor

new SipDomainsClient(optionsopt)

Construct an instance of SipDomainsClient.

Parameters:
Name Type Attributes Description
options object <optional>

The configuration object. See the subsequent parameters for more details.

Properties
Name Type Attributes Description
credentials object <optional>

Credentials object.

Properties
Name Type Attributes Description
client_email string <optional>
private_key string <optional>
email string <optional>

Account email address. Required when using a .pem or .p12 keyFilename.

keyFilename string <optional>

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.

port number <optional>

The port on which to connect to the remote host.

projectId string <optional>

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 Application Default Credentials, your project ID will be detected automatically.

apiEndpoint string <optional>

The domain name of the API remote host.

Members

apiEndpoint

The DNS address for this API service - same as servicePath(), exists for compatibility reasons.

port

The port for this API service.

scopes

The scopes needed to make gRPC calls for every method defined in this service.

servicePath

The DNS address for this API service.

Methods

aliasPath(project, sip_domain, alias) → {string}

Return a fully-qualified alias resource name string.

Parameters:
Name Type Description
project string
sip_domain string
alias string
Returns:
Type Description
string

Resource name string.

callPath(project, call) → {string}

Return a fully-qualified call resource name string.

Parameters:
Name Type Description
project string
call string
Returns:
Type Description
string

Resource name string.

close()

Terminate the GRPC channel and close the client.

The client will no longer be usable and all future behavior is undefined.

createSipDomain(request, optionsopt) → {Promise}

Creates a sip domain.

The caller must have voice.sipDomains.create permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
parent string

The project under which to create the sip domain in the form projects/*.

sipDomain enfonica.voice.v1beta1.SipDomain

The sip domain resource to be created.

sipDomainId string

The subdomain component of the SIP domain. This is the {sip_domain_id} value from name and can only be set on create. The FQDN of the SIP domain will be <sip_domain_id>.sip.enfonica.com.

This value must be globally unique. If the identifier already exists, the create method will fail with ALREADY_EXISTS.

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: ^a-z0-9{0,28}[a-z0-9]$ Can only be set on create.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Promise
  • The promise which resolves to an array. The first element of the array is an object representing SipDomain. The promise has a method named "cancel" which cancels the ongoing API call.

deleteSipDomain(request, optionsopt) → {Promise}

Performs a soft-delete of the specified SIP domain.

The caller must have voice.sipDomains.delete permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
name string

The resource name of the sip domain to be deleted. Must be of the form projects/* /sipDomains/*.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Promise
  • The promise which resolves to an array. The first element of the array is an object representing SipDomain. The promise has a method named "cancel" which cancels the ongoing API call.

getProjectId(callback)

Return the project ID used by this class.

Parameters:
Name Type Description
callback function

the callback to be called with the current project Id.

getSipDomain(request, optionsopt) → {Promise}

Retrieves a sip domain identified by the supplied resource name.

The caller must have voice.sipDomains.get permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
name string

The resource name of the sip domain to retrieve. Must be of the form projects/* /sipDomains/*.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Promise
  • The promise which resolves to an array. The first element of the array is an object representing SipDomain. The promise has a method named "cancel" which cancels the ongoing API call.

initialize() → {Promise}

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:
Type Description
Promise

A promise that resolves to an authenticated service stub.

listSipDomains(request, optionsopt) → {Promise}

Lists all SipDomains. List returns sip domain sorted by create_time descending.

The caller must have voice.sipDomains.list permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
parent string

The project under which to list sip domain, in the form projects/*.

pageSize number

The maximum number of sip domain to return in the response. Default value of 10 and maximum value of 100.

pageToken string

A pagination token returned from a previous call to ListSipDomains that indicates where this listing should continue from.

showDeleted boolean

Whether to include deleted sip domains in the response. Defaults to false.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Promise
  • The promise which resolves to an array. The first element of the array is Array of SipDomain. 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 SipDomain 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 ListSipDomainsRequest 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 ListSipDomainsResponse.

    The promise has a method named "cancel" which cancels the ongoing API call.

listSipDomainsAsync(request, optionsopt) → {Object}

Equivalent to listSipDomains, but returns an iterable object.

for-await-of syntax is used with the iterable to recursively get response element on-demand.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
parent string

The project under which to list sip domain, in the form projects/*.

pageSize number

The maximum number of sip domain to return in the response. Default value of 10 and maximum value of 100.

pageToken string

A pagination token returned from a previous call to ListSipDomains that indicates where this listing should continue from.

showDeleted boolean

Whether to include deleted sip domains in the response. Defaults to false.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Object

An iterable Object that conforms to @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols.

listSipDomainsStream(request, optionsopt) → {Stream}

Equivalent to listSipDomains, but returns a NodeJS Stream object.

This fetches the paged responses for listSipDomains 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.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
parent string

The project under which to list sip domain, in the form projects/*.

pageSize number

The maximum number of sip domain to return in the response. Default value of 10 and maximum value of 100.

pageToken string

A pagination token returned from a previous call to ListSipDomains that indicates where this listing should continue from.

showDeleted boolean

Whether to include deleted sip domains in the response. Defaults to false.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Stream

An object stream which emits an object representing SipDomain on 'data' event.

See:

matchAliasFromAliasName(aliasName) → {string}

Parse the alias from Alias resource.

Parameters:
Name Type Description
aliasName string

A fully-qualified path representing Alias resource.

Returns:
Type Description
string

A string representing the alias.

matchCallFromCallName(callName) → {string}

Parse the call from Call resource.

Parameters:
Name Type Description
callName string

A fully-qualified path representing Call resource.

Returns:
Type Description
string

A string representing the call.

matchCallFromRecordingName(recordingName) → {string}

Parse the call from Recording resource.

Parameters:
Name Type Description
recordingName string

A fully-qualified path representing Recording resource.

Returns:
Type Description
string

A string representing the call.

matchCallFromSipInfoName(sipInfoName) → {string}

Parse the call from SipInfo resource.

Parameters:
Name Type Description
sipInfoName string

A fully-qualified path representing SipInfo resource.

Returns:
Type Description
string

A string representing the call.

matchCallFromTranscriptionName(transcriptionName) → {string}

Parse the call from Transcription resource.

Parameters:
Name Type Description
transcriptionName string

A fully-qualified path representing Transcription resource.

Returns:
Type Description
string

A string representing the call.

matchProjectFromAliasName(aliasName) → {string}

Parse the project from Alias resource.

Parameters:
Name Type Description
aliasName string

A fully-qualified path representing Alias resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromCallName(callName) → {string}

Parse the project from Call resource.

Parameters:
Name Type Description
callName string

A fully-qualified path representing Call resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromRecordingName(recordingName) → {string}

Parse the project from Recording resource.

Parameters:
Name Type Description
recordingName string

A fully-qualified path representing Recording resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromSipDomainName(sipDomainName) → {string}

Parse the project from SipDomain resource.

Parameters:
Name Type Description
sipDomainName string

A fully-qualified path representing SipDomain resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromSipInfoName(sipInfoName) → {string}

Parse the project from SipInfo resource.

Parameters:
Name Type Description
sipInfoName string

A fully-qualified path representing SipInfo resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromTranscriptionName(transcriptionName) → {string}

Parse the project from Transcription resource.

Parameters:
Name Type Description
transcriptionName string

A fully-qualified path representing Transcription resource.

Returns:
Type Description
string

A string representing the project.

matchRecordingFromRecordingName(recordingName) → {string}

Parse the recording from Recording resource.

Parameters:
Name Type Description
recordingName string

A fully-qualified path representing Recording resource.

Returns:
Type Description
string

A string representing the recording.

matchSipDomainFromAliasName(aliasName) → {string}

Parse the sip_domain from Alias resource.

Parameters:
Name Type Description
aliasName string

A fully-qualified path representing Alias resource.

Returns:
Type Description
string

A string representing the sip_domain.

matchSipDomainFromSipDomainName(sipDomainName) → {string}

Parse the sip_domain from SipDomain resource.

Parameters:
Name Type Description
sipDomainName string

A fully-qualified path representing SipDomain resource.

Returns:
Type Description
string

A string representing the sip_domain.

matchTranscriptionFromTranscriptionName(transcriptionName) → {string}

Parse the transcription from Transcription resource.

Parameters:
Name Type Description
transcriptionName string

A fully-qualified path representing Transcription resource.

Returns:
Type Description
string

A string representing the transcription.

recordingPath(project, call, recording) → {string}

Return a fully-qualified recording resource name string.

Parameters:
Name Type Description
project string
call string
recording string
Returns:
Type Description
string

Resource name string.

sipDomainPath(project, sip_domain) → {string}

Return a fully-qualified sipDomain resource name string.

Parameters:
Name Type Description
project string
sip_domain string
Returns:
Type Description
string

Resource name string.

sipInfoPath(project, call) → {string}

Return a fully-qualified sipInfo resource name string.

Parameters:
Name Type Description
project string
call string
Returns:
Type Description
string

Resource name string.

transcriptionPath(project, call, transcription) → {string}

Return a fully-qualified transcription resource name string.

Parameters:
Name Type Description
project string
call string
transcription string
Returns:
Type Description
string

Resource name string.

updateSipDomain(request, optionsopt) → {Promise}

Updates a sip domain.

The caller must have voice.sipDomains.update permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
sipDomain enfonica.voice.v1beta1.SipDomain

The new definition of the SipDomain.

updateMask google.protobuf.FieldMask

Fields to be updated.

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Promise
  • The promise which resolves to an array. The first element of the array is an object representing SipDomain. The promise has a method named "cancel" which cancels the ongoing API call.