Google Cloud Gemini Data Analytics V1beta Client - Class ContextRetrievalServiceClient (0.1.1)

Reference documentation and code samples for the Google Cloud Gemini Data Analytics V1beta Client class ContextRetrievalServiceClient.

Service Description: Service to ask a natural language question with a provided project, returns BigQuery tables that are relevant to the question within the project scope that is accessible to the user, along with contextual data including table schema information as well as sample values.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods.

Namespace

Google \ Cloud \ GeminiDataAnalytics \ V1beta \ Client

Methods

__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. Important: If you accept a credential configuration (credential JSON/File/Stream) from an external source for authentication to Google Cloud Platform, you must validate it before providing it to any Google API or library. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. For more information https://cloud.google.com/docs/authentication/external/externally-sourced-credentials

↳ 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 false.

↳ 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 rest or grpc. Defaults to grpc if gRPC support is detected on the system. Advanced usage: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.

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

↳ logger false|LoggerInterface

A PSR-3 compliant logger. If set to false, logging is disabled, ignoring the 'GOOGLE_SDK_PHP_LOGGING' environment flag

retrieveBigQueryRecentRelevantTables

Retrieves BigQuery table references from recently accessed tables.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryRecentRelevantTablesAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesResponse;

/**
 * @param string $parent Parent value for RetrieveBigQueryRecentTablesRequest.
 *                       Pattern: `projects/{project}/locations/{___location}`
 *                       For ___location, use "global" for now. Regional ___location value will be
 *                       supported in the future.
 */
function retrieve_big_query_recent_relevant_tables_sample(string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryRecentRelevantTablesRequest())
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryRecentRelevantTablesResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryRecentRelevantTables($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
{
    $parent = '[PARENT]';

    retrieve_big_query_recent_relevant_tables_sample($parent);
}

retrieveBigQueryTableContext

Retrieves BigQuery table contextual data for provided table references.

Contextual data includes table schema information as well as sample values.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryTableContextAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextResponse;

/**
 * @param string $project Required.
 * @param string $parent  Parent value for RetrieveBigQueryTableContextRequest.
 *                        Pattern: `projects/{project}/locations/{___location}`
 *                        For ___location, use "global" for now. Regional ___location value will be
 *                        supported in the future.
 */
function retrieve_big_query_table_context_sample(string $project, string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryTableContextRequest())
        ->setProject($project)
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryTableContextResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryTableContext($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
{
    $project = '[PROJECT]';
    $parent = '[PARENT]';

    retrieve_big_query_table_context_sample($project, $parent);
}

retrieveBigQueryTableContexts

Retrieves BigQuery table contextual data for provided table references.

Contextual data includes table schema information as well as sample values.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryTableContextsAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsResponse;

/**
 * @param string $parent Parent value for RetrieveBigQueryTableContextRequest.
 *                       Pattern: `projects/{project}/locations/{___location}`
 *                       For ___location, use "global" for now. Regional ___location value will be
 *                       supported in the future.
 */
function retrieve_big_query_table_contexts_sample(string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryTableContextsRequest())
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryTableContextsResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryTableContexts($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
{
    $parent = '[PARENT]';

    retrieve_big_query_table_contexts_sample($parent);
}

retrieveBigQueryTableContextsFromRecentTables

Retrieves BigQuery table contextual data from recently accessed tables.

Contextual data includes table schema information as well as sample values.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryTableContextsFromRecentTablesAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesResponse;

/**
 * @param string $parent Parent value for
 *                       RetrieveBigQueryTableContextsFromRecentTablesRequest. Pattern:
 *                       `projects/{project}/locations/{___location}` For ___location, use "global" for
 *                       now. Regional ___location value will be supported in the future.
 */
function retrieve_big_query_table_contexts_from_recent_tables_sample(string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryTableContextsFromRecentTablesRequest())
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryTableContextsFromRecentTablesResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryTableContextsFromRecentTables($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
{
    $parent = '[PARENT]';

    retrieve_big_query_table_contexts_from_recent_tables_sample($parent);
}

retrieveBigQueryTableSuggestedDescriptions

Retrieves BigQuery table schema with suggested table and column descriptions.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryTableSuggestedDescriptionsAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsResponse;

/**
 * @param string $parent Parent value for
 *                       RetrieveBigQueryTableSuggestedDescriptionsRequest. Pattern:
 *                       `projects/{project}/locations/{___location}` For ___location, use "global" for
 *                       now. Regional ___location value will be supported in the future.
 */
function retrieve_big_query_table_suggested_descriptions_sample(string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryTableSuggestedDescriptionsRequest())
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryTableSuggestedDescriptionsResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryTableSuggestedDescriptions($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
{
    $parent = '[PARENT]';

    retrieve_big_query_table_suggested_descriptions_sample($parent);
}

retrieveBigQueryTableSuggestedExamples

Retrieves BigQuery table schema with suggested NL-SQL examples.

The async variant is ContextRetrievalServiceClient::retrieveBigQueryTableSuggestedExamplesAsync() .

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesRequest

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\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesRequest;
use Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesResponse;

/**
 * @param string $parent Parent value for RetrieveBigQueryTableSuggestedExamplesRequest.
 *                       Pattern: `projects/{project}/locations/{___location}`
 *                       For ___location, use "global" for now. Regional ___location value will be
 *                       supported in the future.
 */
function retrieve_big_query_table_suggested_examples_sample(string $parent): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = (new RetrieveBigQueryTableSuggestedExamplesRequest())
        ->setParent($parent);

    // Call the API and handle any network failures.
    try {
        /** @var RetrieveBigQueryTableSuggestedExamplesResponse $response */
        $response = $contextRetrievalServiceClient->retrieveBigQueryTableSuggestedExamples($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
{
    $parent = '[PARENT]';

    retrieve_big_query_table_suggested_examples_sample($parent);
}

getLocation

Gets information about a ___location.

The async variant is ContextRetrievalServiceClient::getLocationAsync() .

Parameters
Name Description
request Google\Cloud\Location\GetLocationRequest

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\Location\Location
Example
use Google\ApiCore\ApiException;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\Location\GetLocationRequest;
use Google\Cloud\Location\Location;

/**
 * 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 get_location_sample(): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = new GetLocationRequest();

    // Call the API and handle any network failures.
    try {
        /** @var Location $response */
        $response = $contextRetrievalServiceClient->getLocation($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

listLocations

Lists information about the supported locations for this service.

The async variant is ContextRetrievalServiceClient::listLocationsAsync() .

Parameters
Name Description
request Google\Cloud\Location\ListLocationsRequest

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
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\GeminiDataAnalytics\V1beta\Client\ContextRetrievalServiceClient;
use Google\Cloud\Location\ListLocationsRequest;
use Google\Cloud\Location\Location;

/**
 * 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 list_locations_sample(): void
{
    // Create a client.
    $contextRetrievalServiceClient = new ContextRetrievalServiceClient();

    // Prepare the request message.
    $request = new ListLocationsRequest();

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $contextRetrievalServiceClient->listLocations($request);

        /** @var Location $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());
    }
}

retrieveBigQueryRecentRelevantTablesAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryRecentRelevantTablesResponse>

retrieveBigQueryTableContextAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextResponse>

retrieveBigQueryTableContextsAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsResponse>

retrieveBigQueryTableContextsFromRecentTablesAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableContextsFromRecentTablesResponse>

retrieveBigQueryTableSuggestedDescriptionsAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedDescriptionsResponse>

retrieveBigQueryTableSuggestedExamplesAsync

Parameters
Name Description
request Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\GeminiDataAnalytics\V1beta\RetrieveBigQueryTableSuggestedExamplesResponse>

getLocationAsync

Parameters
Name Description
request Google\Cloud\Location\GetLocationRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Location\Location>

listLocationsAsync

Parameters
Name Description
request Google\Cloud\Location\ListLocationsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse>