Reference documentation and code samples for the Google Cloud Recommendation Engine V1beta1 Client class UserEventServiceClient.
Service Description: Service for ingesting end user actions on the customer website.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.
Namespace
Google \ Cloud \ RecommendationEngine \ V1beta1 \ ClientMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
options |
array
Optional. Options for configuring the service API wrapper. |
↳ apiEndpoint |
string
The address of the API remote host. May optionally include the port, formatted as "
|
↳ credentials |
string|array|FetchAuthTokenInterface|CredentialsWrapper
The credentials to be used by the client to authorize API calls. This option accepts either a path to a credentials file, or a decoded credentials file as a PHP array. Advanced usage: In addition, this option can also accept a pre-constructed Google\Auth\FetchAuthTokenInterface object or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored. |
↳ credentialsConfig |
array
Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() . |
↳ disableRetries |
bool
Determines whether or not retries defined by the client configuration should be disabled. Defaults to |
↳ clientConfig |
string|array
Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder. |
↳ transport |
string|TransportInterface
The transport used for executing network requests. May be either the string |
↳ transportConfig |
array
Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options. |
↳ clientCertSource |
callable
A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS. |
collectUserEvent
Writes a single user event from the browser. This uses a GET request to due to browser restriction of POST-ing to a 3rd party domain.
This method is used only by the Recommendations AI JavaScript pixel. Users should not call this method directly.
The async variant is UserEventServiceClient::collectUserEventAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\CollectUserEventRequest
A request to house fields associated with the call. |
callOptions |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage. |
Returns | |
---|---|
Type | Description |
Google\Api\HttpBody |
use Google\ApiCore\ApiException;
use Google\Api\HttpBody;
use Google\Cloud\RecommendationEngine\V1beta1\Client\UserEventServiceClient;
use Google\Cloud\RecommendationEngine\V1beta1\CollectUserEventRequest;
/**
* @param string $formattedParent The parent eventStore name, such as
* `projects/1234/locations/global/catalogs/default_catalog/eventStores/default_event_store`. Please see
* {@see UserEventServiceClient::eventStoreName()} for help formatting this field.
* @param string $userEvent URL encoded UserEvent proto.
*/
function collect_user_event_sample(string $formattedParent, string $userEvent): void
{
// Create a client.
$userEventServiceClient = new UserEventServiceClient();
// Prepare the request message.
$request = (new CollectUserEventRequest())
->setParent($formattedParent)
->setUserEvent($userEvent);
// Call the API and handle any network failures.
try {
/** @var HttpBody $response */
$response = $userEventServiceClient->collectUserEvent($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* This sample has been automatically generated and should be regarded as a code
* template only. It will require modifications to work:
* - It may require correct/in-range values for request initialization.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = UserEventServiceClient::eventStoreName(
'[PROJECT]',
'[LOCATION]',
'[CATALOG]',
'[EVENT_STORE]'
);
$userEvent = '[USER_EVENT]';
collect_user_event_sample($formattedParent, $userEvent);
}
importUserEvents
Bulk import of User events. Request processing might be synchronous. Events that already exist are skipped.
Use this method for backfilling historical user events.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully inserted. Operation.metadata is of type ImportMetadata.
The async variant is UserEventServiceClient::importUserEventsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\ImportUserEventsRequest
A request to house fields associated with the call. |
callOptions |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\RecommendationEngine\V1beta1\Client\UserEventServiceClient;
use Google\Cloud\RecommendationEngine\V1beta1\ImportUserEventsRequest;
use Google\Cloud\RecommendationEngine\V1beta1\ImportUserEventsResponse;
use Google\Cloud\RecommendationEngine\V1beta1\InputConfig;
use Google\Rpc\Status;
/**
* @param string $formattedParent Required.
* `projects/1234/locations/global/catalogs/default_catalog/eventStores/default_event_store`
* Please see {@see UserEventServiceClient::eventStoreName()} for help formatting this field.
*/
function import_user_events_sample(string $formattedParent): void
{
// Create a client.
$userEventServiceClient = new UserEventServiceClient();
// Prepare the request message.
$inputConfig = new InputConfig();
$request = (new ImportUserEventsRequest())
->setParent($formattedParent)
->setInputConfig($inputConfig);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $userEventServiceClient->importUserEvents($request);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var ImportUserEventsResponse $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* This sample has been automatically generated and should be regarded as a code
* template only. It will require modifications to work:
* - It may require correct/in-range values for request initialization.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = UserEventServiceClient::eventStoreName(
'[PROJECT]',
'[LOCATION]',
'[CATALOG]',
'[EVENT_STORE]'
);
import_user_events_sample($formattedParent);
}
listUserEvents
Gets a list of user events within a time range, with potential filtering.
The async variant is UserEventServiceClient::listUserEventsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\ListUserEventsRequest
A request to house fields associated with the call. |
callOptions |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\PagedListResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\RecommendationEngine\V1beta1\Client\UserEventServiceClient;
use Google\Cloud\RecommendationEngine\V1beta1\ListUserEventsRequest;
use Google\Cloud\RecommendationEngine\V1beta1\UserEvent;
/**
* @param string $formattedParent The parent eventStore resource name, such as
* `projects/*/locations/*/catalogs/default_catalog/eventStores/default_event_store`. Please see
* {@see UserEventServiceClient::eventStoreName()} for help formatting this field.
*/
function list_user_events_sample(string $formattedParent): void
{
// Create a client.
$userEventServiceClient = new UserEventServiceClient();
// Prepare the request message.
$request = (new ListUserEventsRequest())
->setParent($formattedParent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $userEventServiceClient->listUserEvents($request);
/** @var UserEvent $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* This sample has been automatically generated and should be regarded as a code
* template only. It will require modifications to work:
* - It may require correct/in-range values for request initialization.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = UserEventServiceClient::eventStoreName(
'[PROJECT]',
'[LOCATION]',
'[CATALOG]',
'[EVENT_STORE]'
);
list_user_events_sample($formattedParent);
}
purgeUserEvents
Deletes permanently all user events specified by the filter provided.
Depending on the number of events specified by the filter, this operation could take hours or days to complete. To test a filter, use the list command first.
The async variant is UserEventServiceClient::purgeUserEventsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\PurgeUserEventsRequest
A request to house fields associated with the call. |
callOptions |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\RecommendationEngine\V1beta1\Client\UserEventServiceClient;
use Google\Cloud\RecommendationEngine\V1beta1\PurgeUserEventsRequest;
use Google\Cloud\RecommendationEngine\V1beta1\PurgeUserEventsResponse;
use Google\Rpc\Status;
/**
* @param string $formattedParent The resource name of the event_store under which the events are
* created. The format is
* `projects/${projectId}/locations/global/catalogs/${catalogId}/eventStores/${eventStoreId}`
* Please see {@see UserEventServiceClient::eventStoreName()} for help formatting this field.
* @param string $filter The filter string to specify the events to be deleted. Empty
* string filter is not allowed. This filter can also be used with
* ListUserEvents API to list events that will be deleted. The eligible fields
* for filtering are:
* * eventType - UserEvent.eventType field of type string.
* * eventTime - in ISO 8601 "zulu" format.
* * visitorId - field of type string. Specifying this will delete all events
* associated with a visitor.
* * userId - field of type string. Specifying this will delete all events
* associated with a user.
* Example 1: Deleting all events in a time range.
* `eventTime > "2012-04-23T18:25:43.511Z" eventTime <
* "2012-04-23T18:30:43.511Z"`
* Example 2: Deleting specific eventType in time range.
* `eventTime > "2012-04-23T18:25:43.511Z" eventType = "detail-page-view"`
* Example 3: Deleting all events for a specific visitor
* `visitorId = visitor1024`
* The filtering fields are assumed to have an implicit AND.
*/
function purge_user_events_sample(string $formattedParent, string $filter): void
{
// Create a client.
$userEventServiceClient = new UserEventServiceClient();
// Prepare the request message.
$request = (new PurgeUserEventsRequest())
->setParent($formattedParent)
->setFilter($filter);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $userEventServiceClient->purgeUserEvents($request);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var PurgeUserEventsResponse $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* This sample has been automatically generated and should be regarded as a code
* template only. It will require modifications to work:
* - It may require correct/in-range values for request initialization.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = UserEventServiceClient::eventStoreName(
'[PROJECT]',
'[LOCATION]',
'[CATALOG]',
'[EVENT_STORE]'
);
$filter = '[FILTER]';
purge_user_events_sample($formattedParent, $filter);
}
writeUserEvent
Writes a single user event.
The async variant is UserEventServiceClient::writeUserEventAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\WriteUserEventRequest
A request to house fields associated with the call. |
callOptions |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage. |
Returns | |
---|---|
Type | Description |
Google\Cloud\RecommendationEngine\V1beta1\UserEvent |
use Google\ApiCore\ApiException;
use Google\Cloud\RecommendationEngine\V1beta1\Client\UserEventServiceClient;
use Google\Cloud\RecommendationEngine\V1beta1\UserEvent;
use Google\Cloud\RecommendationEngine\V1beta1\UserInfo;
use Google\Cloud\RecommendationEngine\V1beta1\WriteUserEventRequest;
/**
* @param string $formattedParent The parent eventStore resource name, such as
* `projects/1234/locations/global/catalogs/default_catalog/eventStores/default_event_store`. Please see
* {@see UserEventServiceClient::eventStoreName()} for help formatting this field.
* @param string $userEventEventType User event type. Allowed values are:
*
* * `add-to-cart` Products being added to cart.
* * `add-to-list` Items being added to a list (shopping list, favorites
* etc).
* * `category-page-view` Special pages such as sale or promotion pages
* viewed.
* * `checkout-start` User starting a checkout process.
* * `detail-page-view` Products detail page viewed.
* * `home-page-view` Homepage viewed.
* * `page-visit` Generic page visits not included in the event types above.
* * `purchase-complete` User finishing a purchase.
* * `refund` Purchased items being refunded or returned.
* * `remove-from-cart` Products being removed from cart.
* * `remove-from-list` Items being removed from a list.
* * `search` Product search.
* * `shopping-cart-page-view` User viewing a shopping cart.
* * `impression` List of items displayed. Used by Google Tag Manager.
* @param string $userEventUserInfoVisitorId A unique identifier for tracking visitors with a length limit of
* 128 bytes.
*
* For example, this could be implemented with a http cookie, which should be
* able to uniquely identify a visitor on a single device. This unique
* identifier should not change if the visitor log in/out of the website.
* Maximum length 128 bytes. Cannot be empty.
*/
function write_user_event_sample(
string $formattedParent,
string $userEventEventType,
string $userEventUserInfoVisitorId
): void {
// Create a client.
$userEventServiceClient = new UserEventServiceClient();
// Prepare the request message.
$userEventUserInfo = (new UserInfo())
->setVisitorId($userEventUserInfoVisitorId);
$userEvent = (new UserEvent())
->setEventType($userEventEventType)
->setUserInfo($userEventUserInfo);
$request = (new WriteUserEventRequest())
->setParent($formattedParent)
->setUserEvent($userEvent);
// Call the API and handle any network failures.
try {
/** @var UserEvent $response */
$response = $userEventServiceClient->writeUserEvent($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* This sample has been automatically generated and should be regarded as a code
* template only. It will require modifications to work:
* - It may require correct/in-range values for request initialization.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = UserEventServiceClient::eventStoreName(
'[PROJECT]',
'[LOCATION]',
'[CATALOG]',
'[EVENT_STORE]'
);
$userEventEventType = '[EVENT_TYPE]';
$userEventUserInfoVisitorId = '[VISITOR_ID]';
write_user_event_sample($formattedParent, $userEventEventType, $userEventUserInfoVisitorId);
}
collectUserEventAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\CollectUserEventRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Api\HttpBody> |
importUserEventsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\ImportUserEventsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse> |
listUserEventsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\ListUserEventsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse> |
purgeUserEventsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\PurgeUserEventsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse> |
writeUserEventAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\RecommendationEngine\V1beta1\WriteUserEventRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\RecommendationEngine\V1beta1\UserEvent> |
getOperationsClient
Return an OperationsClient object with the same endpoint as $this.
Returns | |
---|---|
Type | Description |
Google\ApiCore\LongRunning\OperationsClient |
resumeOperation
Resume an existing long running operation that was previously started by a long running API method. If $methodName is not provided, or does not match a long running API method, then the operation can still be resumed, but the OperationResponse object will not deserialize the final response.
Parameters | |
---|---|
Name | Description |
operationName |
string
The name of the long running operation |
methodName |
string
The name of the method used to start the operation |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
static::eventStoreName
Formats a string containing the fully-qualified path to represent a event_store resource.
Parameters | |
---|---|
Name | Description |
project |
string
|
location |
string
|
catalog |
string
|
eventStore |
string
|
Returns | |
---|---|
Type | Description |
string |
The formatted event_store resource. |
static::parseName
Parses a formatted name string and returns an associative array of the components in the name.
The following name formats are supported: Template: Pattern
- eventStore: projects/{project}/locations/{location}/catalogs/{catalog}/eventStores/{event_store}
The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.
Parameters | |
---|---|
Name | Description |
formattedName |
string
The formatted name string |
template |
string
Optional name of template to match |
Returns | |
---|---|
Type | Description |
array |
An associative array from name component IDs to component values. |