UnsubscribersClient

UnsubscribersClient

Manages Unsubscribers.

Constructor

new UnsubscribersClient(optionsopt)

Construct an instance of UnsubscribersClient.

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

close()

Terminate the GRPC channel and close the client.

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

createUnsubscriber(request, optionsopt) → {Promise}

Creates an unsubscriber.

The caller must have messaging.unsubscribers.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 resource name of the parent project to create the unsubscriber under. Must be of the form projects/*.

unsubscriber enfonica.messaging.v1.Unsubscriber

The unsubscriber resource to be created.

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 Unsubscriber. The promise has a method named "cancel" which cancels the ongoing API call.

deleteUnsubscriber(request, optionsopt) → {Promise}

Deletes an unsubscriber.

The caller must have messaging.unsubscribers.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 Unsubscriber to be deleted. Must be of the form projects/* /unsubscribers/*.

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 Unsubscriber. 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.

getUnsubscriber(request, optionsopt) → {Promise}

Retrieves a Unsubscriber identified by the supplied resource name.

The caller must have messaging.unsubscribers.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 Unsubscriber to retrieve. Must be of the form projects/* /unsubscribers/*.

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 Unsubscriber. 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.

listUnsubscribers(request, optionsopt) → {Promise}

Lists the Unsubscribers of the specified project. List returns Unsubscribers sorted by create_time descending.

The caller must have messaging.unsubscribers.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 resource name of the parent of which to list unsubscribers. Must be of the form projects/*.

pageSize number

The maximum number of Unsubscribers to return in the response. Default value is 10 and maximum value is 100.

pageToken string

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

phone string

Only return the unsubscriber that matches the phone number exactly. (-- api-linter: core::0132::request-unknown-fields=disabled aip.dev/not-precedent: List has additional fields in this package. --)

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 Unsubscriber. 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 Unsubscriber 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 ListUnsubscribersRequest 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 ListUnsubscribersResponse.

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

listUnsubscribersAsync(request, optionsopt) → {Object}

Equivalent to listUnsubscribers, 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 resource name of the parent of which to list unsubscribers. Must be of the form projects/*.

pageSize number

The maximum number of Unsubscribers to return in the response. Default value is 10 and maximum value is 100.

pageToken string

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

phone string

Only return the unsubscriber that matches the phone number exactly. (-- api-linter: core::0132::request-unknown-fields=disabled aip.dev/not-precedent: List has additional fields in this package. --)

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.

listUnsubscribersStream(request, optionsopt) → {Stream}

Equivalent to listUnsubscribers, but returns a NodeJS Stream object.

This fetches the paged responses for listUnsubscribers 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 resource name of the parent of which to list unsubscribers. Must be of the form projects/*.

pageSize number

The maximum number of Unsubscribers to return in the response. Default value is 10 and maximum value is 100.

pageToken string

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

phone string

Only return the unsubscriber that matches the phone number exactly. (-- api-linter: core::0132::request-unknown-fields=disabled aip.dev/not-precedent: List has additional fields in this package. --)

options object <optional>

Call options. See CallOptions for more details.

Returns:
Type Description
Stream

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

See:

matchMessageFromMessageName(messageName) → {string}

Parse the message from Message resource.

Parameters:
Name Type Description
messageName string

A fully-qualified path representing Message resource.

Returns:
Type Description
string

A string representing the message.

matchProjectFromMessageName(messageName) → {string}

Parse the project from Message resource.

Parameters:
Name Type Description
messageName string

A fully-qualified path representing Message resource.

Returns:
Type Description
string

A string representing the project.

matchProjectFromUnsubscriberName(unsubscriberName) → {string}

Parse the project from Unsubscriber resource.

Parameters:
Name Type Description
unsubscriberName string

A fully-qualified path representing Unsubscriber resource.

Returns:
Type Description
string

A string representing the project.

matchUnsubscriberFromUnsubscriberName(unsubscriberName) → {string}

Parse the unsubscriber from Unsubscriber resource.

Parameters:
Name Type Description
unsubscriberName string

A fully-qualified path representing Unsubscriber resource.

Returns:
Type Description
string

A string representing the unsubscriber.

messagePath(project, message) → {string}

Return a fully-qualified message resource name string.

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

Resource name string.

unsubscriberPath(project, unsubscriber) → {string}

Return a fully-qualified unsubscriber resource name string.

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

Resource name string.

updateUnsubscriber(request, optionsopt) → {Promise}

Updates an unsubscriber.

The caller must have messaging.unsubscribers.update permission on the project.

Parameters:
Name Type Attributes Description
request Object

The request object that will be sent.

Properties
Name Type Description
unsubscriber enfonica.messaging.v1.Unsubscriber

The new definition of the Unsubscriber.

updateMask google.protobuf.FieldMask

Fields to be updated. Only labels can 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 Unsubscriber. The promise has a method named "cancel" which cancels the ongoing API call.