Google Ads Ad Manager V1 Client - Class CustomTargetingValueServiceClient (0.8.0)

Reference documentation and code samples for the Google Ads Ad Manager V1 Client class CustomTargetingValueServiceClient.

Service Description: Provides methods for handling CustomTargetingValue objects.

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 \ Ads \ AdManager \ V1 \ Client

Methods

__construct

Constructor.

Parameters
Name Description
options array|Google\ApiCore\Options\ClientOptions

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 Google\Auth\FetchAuthTokenInterface|Google\ApiCore\CredentialsWrapper

This option should only be used with a pre-constructed Google\Auth\FetchAuthTokenInterface or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored. Important: If you are providing a path to a credentials file, or a decoded credentials file as a PHP array, this usage is now DEPRECATED. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. It is recommended to create the credentials explicitly use Google\Auth\Credentials\ServiceAccountCredentials; use Google\Ads\AdManager\V1\CustomTargetingValueServiceClient; $creds = new ServiceAccountCredentials($scopes, $json); $options = new CustomTargetingValueServiceClient(['credentials' => $creds]); 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|Google\ApiCore\Transport\TransportInterface

The transport used for executing network requests. At the moment, supports only rest. 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 = [ 'rest' => [...], ]; See the Google\ApiCore\Transport\RestTransport::build() method 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|Psr\Log\LoggerInterface

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

↳ universeDomain string

The service domain for the client. Defaults to 'googleapis.com'.

batchActivateCustomTargetingValues

Batch activates CustomTargetingValue objects.

The async variant is CustomTargetingValueServiceClient::batchActivateCustomTargetingValuesAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchActivateCustomTargetingValuesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\BatchActivateCustomTargetingValuesResponse
Example
use Google\Ads\AdManager\V1\ActivateCustomTargetingValueRequest;
use Google\Ads\AdManager\V1\BatchActivateCustomTargetingValuesRequest;
use Google\Ads\AdManager\V1\BatchActivateCustomTargetingValuesResponse;
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedParent       The parent, which owns this collection of CustomTargetingValues.
 *                                      Format:
 *                                      `networks/{network_code}`
 *                                      Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedRequestsName The resource name of the CustomTargetingValue.
 *                                      Format:
 *                                      `networks/{network_code}/customTargetingValues/{custom_targeting_value_id}`
 *                                      Please see {@see CustomTargetingValueServiceClient::customTargetingValueName()} for help formatting this field.
 */
function batch_activate_custom_targeting_values_sample(
    string $formattedParent,
    string $formattedRequestsName
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $activateCustomTargetingValueRequest = (new ActivateCustomTargetingValueRequest())
        ->setName($formattedRequestsName);
    $requests = [$activateCustomTargetingValueRequest,];
    $request = (new BatchActivateCustomTargetingValuesRequest())
        ->setParent($formattedParent)
        ->setRequests($requests);

    // Call the API and handle any network failures.
    try {
        /** @var BatchActivateCustomTargetingValuesResponse $response */
        $response = $customTargetingValueServiceClient->batchActivateCustomTargetingValues($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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedRequestsName = CustomTargetingValueServiceClient::customTargetingValueName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_VALUE]'
    );

    batch_activate_custom_targeting_values_sample($formattedParent, $formattedRequestsName);
}

batchCreateCustomTargetingValues

Creates CustomTargetingValue objects.

The async variant is CustomTargetingValueServiceClient::batchCreateCustomTargetingValuesAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchCreateCustomTargetingValuesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\BatchCreateCustomTargetingValuesResponse
Example
use Google\Ads\AdManager\V1\BatchCreateCustomTargetingValuesRequest;
use Google\Ads\AdManager\V1\BatchCreateCustomTargetingValuesResponse;
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\CreateCustomTargetingValueRequest;
use Google\Ads\AdManager\V1\CustomTargetingValue;
use Google\Ads\AdManager\V1\CustomTargetingValueMatchTypeEnum\CustomTargetingValueMatchType;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedParent                                         The parent, which owns this collection of CustomTargetingValues.
 *                                                                        Format:
 *                                                                        `networks/{network_code}`
 *                                                                        Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedRequestsParent                                 The parent, which owns this collection of CustomTargetingValues.
 *                                                                        Format:
 *                                                                        `networks/{network_code}`
 *                                                                        Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedRequestsCustomTargetingValueCustomTargetingKey Immutable. The resource name of the `CustomTargetingKey`.
 *                                                                        Format:
 *                                                                        `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
 *                                                                        Please see {@see CustomTargetingValueServiceClient::customTargetingKeyName()} for help formatting this field.
 * @param int    $requestsCustomTargetingValueMatchType                   Immutable. The way in which the CustomTargetingValue.name strings
 *                                                                        will be matched.
 */
function batch_create_custom_targeting_values_sample(
    string $formattedParent,
    string $formattedRequestsParent,
    string $formattedRequestsCustomTargetingValueCustomTargetingKey,
    int $requestsCustomTargetingValueMatchType
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $requestsCustomTargetingValue = (new CustomTargetingValue())
        ->setCustomTargetingKey($formattedRequestsCustomTargetingValueCustomTargetingKey)
        ->setMatchType($requestsCustomTargetingValueMatchType);
    $createCustomTargetingValueRequest = (new CreateCustomTargetingValueRequest())
        ->setParent($formattedRequestsParent)
        ->setCustomTargetingValue($requestsCustomTargetingValue);
    $requests = [$createCustomTargetingValueRequest,];
    $request = (new BatchCreateCustomTargetingValuesRequest())
        ->setParent($formattedParent)
        ->setRequests($requests);

    // Call the API and handle any network failures.
    try {
        /** @var BatchCreateCustomTargetingValuesResponse $response */
        $response = $customTargetingValueServiceClient->batchCreateCustomTargetingValues($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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedRequestsParent = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedRequestsCustomTargetingValueCustomTargetingKey = CustomTargetingValueServiceClient::customTargetingKeyName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_KEY]'
    );
    $requestsCustomTargetingValueMatchType = CustomTargetingValueMatchType::CUSTOM_TARGETING_VALUE_MATCH_TYPE_UNSPECIFIED;

    batch_create_custom_targeting_values_sample(
        $formattedParent,
        $formattedRequestsParent,
        $formattedRequestsCustomTargetingValueCustomTargetingKey,
        $requestsCustomTargetingValueMatchType
    );
}

batchDeactivateCustomTargetingValues

Deactivates a list of CustomTargetingValue objects.

The async variant is CustomTargetingValueServiceClient::batchDeactivateCustomTargetingValuesAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesResponse
Example
use Google\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesRequest;
use Google\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesResponse;
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\DeactivateCustomTargetingValueRequest;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedParent       The parent, which owns this collection of CustomTargetingValues.
 *                                      Format:
 *                                      `networks/{network_code}/`
 *                                      Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedRequestsName The resource name of the CustomTargetingValue.
 *                                      Format:
 *                                      `networks/{network_code}/customTargetingValues/{custom_targeting_value_id}`
 *                                      Please see {@see CustomTargetingValueServiceClient::customTargetingValueName()} for help formatting this field.
 */
function batch_deactivate_custom_targeting_values_sample(
    string $formattedParent,
    string $formattedRequestsName
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $deactivateCustomTargetingValueRequest = (new DeactivateCustomTargetingValueRequest())
        ->setName($formattedRequestsName);
    $requests = [$deactivateCustomTargetingValueRequest,];
    $request = (new BatchDeactivateCustomTargetingValuesRequest())
        ->setParent($formattedParent)
        ->setRequests($requests);

    // Call the API and handle any network failures.
    try {
        /** @var BatchDeactivateCustomTargetingValuesResponse $response */
        $response = $customTargetingValueServiceClient->batchDeactivateCustomTargetingValues($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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedRequestsName = CustomTargetingValueServiceClient::customTargetingValueName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_VALUE]'
    );

    batch_deactivate_custom_targeting_values_sample($formattedParent, $formattedRequestsName);
}

batchUpdateCustomTargetingValues

Batch updates CustomTargetingValue objects.

The async variant is CustomTargetingValueServiceClient::batchUpdateCustomTargetingValuesAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesResponse
Example
use Google\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesRequest;
use Google\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesResponse;
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\CustomTargetingValue;
use Google\Ads\AdManager\V1\CustomTargetingValueMatchTypeEnum\CustomTargetingValueMatchType;
use Google\Ads\AdManager\V1\UpdateCustomTargetingValueRequest;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedParent                                         The parent, which owns this collection of CustomTargetingValues.
 *                                                                        Format:
 *                                                                        `networks/{network_code}`
 *                                                                        Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedRequestsCustomTargetingValueCustomTargetingKey Immutable. The resource name of the `CustomTargetingKey`.
 *                                                                        Format:
 *                                                                        `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
 *                                                                        Please see {@see CustomTargetingValueServiceClient::customTargetingKeyName()} for help formatting this field.
 * @param int    $requestsCustomTargetingValueMatchType                   Immutable. The way in which the CustomTargetingValue.name strings
 *                                                                        will be matched.
 */
function batch_update_custom_targeting_values_sample(
    string $formattedParent,
    string $formattedRequestsCustomTargetingValueCustomTargetingKey,
    int $requestsCustomTargetingValueMatchType
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $requestsCustomTargetingValue = (new CustomTargetingValue())
        ->setCustomTargetingKey($formattedRequestsCustomTargetingValueCustomTargetingKey)
        ->setMatchType($requestsCustomTargetingValueMatchType);
    $updateCustomTargetingValueRequest = (new UpdateCustomTargetingValueRequest())
        ->setCustomTargetingValue($requestsCustomTargetingValue);
    $requests = [$updateCustomTargetingValueRequest,];
    $request = (new BatchUpdateCustomTargetingValuesRequest())
        ->setParent($formattedParent)
        ->setRequests($requests);

    // Call the API and handle any network failures.
    try {
        /** @var BatchUpdateCustomTargetingValuesResponse $response */
        $response = $customTargetingValueServiceClient->batchUpdateCustomTargetingValues($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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedRequestsCustomTargetingValueCustomTargetingKey = CustomTargetingValueServiceClient::customTargetingKeyName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_KEY]'
    );
    $requestsCustomTargetingValueMatchType = CustomTargetingValueMatchType::CUSTOM_TARGETING_VALUE_MATCH_TYPE_UNSPECIFIED;

    batch_update_custom_targeting_values_sample(
        $formattedParent,
        $formattedRequestsCustomTargetingValueCustomTargetingKey,
        $requestsCustomTargetingValueMatchType
    );
}

createCustomTargetingValue

Creates a CustomTargetingValue object.

The async variant is CustomTargetingValueServiceClient::createCustomTargetingValueAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\CreateCustomTargetingValueRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\CustomTargetingValue
Example
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\CreateCustomTargetingValueRequest;
use Google\Ads\AdManager\V1\CustomTargetingValue;
use Google\Ads\AdManager\V1\CustomTargetingValueMatchTypeEnum\CustomTargetingValueMatchType;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedParent                                 The parent, which owns this collection of CustomTargetingValues.
 *                                                                Format:
 *                                                                `networks/{network_code}`
 *                                                                Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 * @param string $formattedCustomTargetingValueCustomTargetingKey Immutable. The resource name of the `CustomTargetingKey`.
 *                                                                Format:
 *                                                                `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
 *                                                                Please see {@see CustomTargetingValueServiceClient::customTargetingKeyName()} for help formatting this field.
 * @param int    $customTargetingValueMatchType                   Immutable. The way in which the CustomTargetingValue.name strings
 *                                                                will be matched.
 */
function create_custom_targeting_value_sample(
    string $formattedParent,
    string $formattedCustomTargetingValueCustomTargetingKey,
    int $customTargetingValueMatchType
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $customTargetingValue = (new CustomTargetingValue())
        ->setCustomTargetingKey($formattedCustomTargetingValueCustomTargetingKey)
        ->setMatchType($customTargetingValueMatchType);
    $request = (new CreateCustomTargetingValueRequest())
        ->setParent($formattedParent)
        ->setCustomTargetingValue($customTargetingValue);

    // Call the API and handle any network failures.
    try {
        /** @var CustomTargetingValue $response */
        $response = $customTargetingValueServiceClient->createCustomTargetingValue($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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');
    $formattedCustomTargetingValueCustomTargetingKey = CustomTargetingValueServiceClient::customTargetingKeyName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_KEY]'
    );
    $customTargetingValueMatchType = CustomTargetingValueMatchType::CUSTOM_TARGETING_VALUE_MATCH_TYPE_UNSPECIFIED;

    create_custom_targeting_value_sample(
        $formattedParent,
        $formattedCustomTargetingValueCustomTargetingKey,
        $customTargetingValueMatchType
    );
}

getCustomTargetingValue

Retrieves a CustomTargetingValue object.

The async variant is CustomTargetingValueServiceClient::getCustomTargetingValueAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\GetCustomTargetingValueRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\CustomTargetingValue
Example
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\CustomTargetingValue;
use Google\Ads\AdManager\V1\GetCustomTargetingValueRequest;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedName The resource name of the CustomTargetingValue.
 *                              Format:
 *                              `networks/{network_code}/customTargetingValues/{custom_targeting_value_id}`
 *                              Please see {@see CustomTargetingValueServiceClient::customTargetingValueName()} for help formatting this field.
 */
function get_custom_targeting_value_sample(string $formattedName): void
{
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $request = (new GetCustomTargetingValueRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var CustomTargetingValue $response */
        $response = $customTargetingValueServiceClient->getCustomTargetingValue($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
{
    $formattedName = CustomTargetingValueServiceClient::customTargetingValueName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_VALUE]'
    );

    get_custom_targeting_value_sample($formattedName);
}

listCustomTargetingValues

Lists CustomTargetingValue objects.

The async variant is CustomTargetingValueServiceClient::listCustomTargetingValuesAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\ListCustomTargetingValuesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\ListCustomTargetingValuesRequest;
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;

/**
 * @param string $formattedParent The parent, which owns this collection of CustomTargetingValues.
 *                                Format:
 *                                `networks/{network_code}`
 *                                Please see {@see CustomTargetingValueServiceClient::networkName()} for help formatting this field.
 */
function list_custom_targeting_values_sample(string $formattedParent): void
{
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $request = (new ListCustomTargetingValuesRequest())
        ->setParent($formattedParent);

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

        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 = CustomTargetingValueServiceClient::networkName('[NETWORK_CODE]');

    list_custom_targeting_values_sample($formattedParent);
}

updateCustomTargetingValue

Updates a CustomTargetingValue object.

The async variant is CustomTargetingValueServiceClient::updateCustomTargetingValueAsync() .

Parameters
Name Description
request Google\Ads\AdManager\V1\UpdateCustomTargetingValueRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\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\Ads\AdManager\V1\CustomTargetingValue
Example
use Google\Ads\AdManager\V1\Client\CustomTargetingValueServiceClient;
use Google\Ads\AdManager\V1\CustomTargetingValue;
use Google\Ads\AdManager\V1\CustomTargetingValueMatchTypeEnum\CustomTargetingValueMatchType;
use Google\Ads\AdManager\V1\UpdateCustomTargetingValueRequest;
use Google\ApiCore\ApiException;

/**
 * @param string $formattedCustomTargetingValueCustomTargetingKey Immutable. The resource name of the `CustomTargetingKey`.
 *                                                                Format:
 *                                                                `networks/{network_code}/customTargetingKeys/{custom_targeting_key_id}`
 *                                                                Please see {@see CustomTargetingValueServiceClient::customTargetingKeyName()} for help formatting this field.
 * @param int    $customTargetingValueMatchType                   Immutable. The way in which the CustomTargetingValue.name strings
 *                                                                will be matched.
 */
function update_custom_targeting_value_sample(
    string $formattedCustomTargetingValueCustomTargetingKey,
    int $customTargetingValueMatchType
): void {
    // Create a client.
    $customTargetingValueServiceClient = new CustomTargetingValueServiceClient();

    // Prepare the request message.
    $customTargetingValue = (new CustomTargetingValue())
        ->setCustomTargetingKey($formattedCustomTargetingValueCustomTargetingKey)
        ->setMatchType($customTargetingValueMatchType);
    $request = (new UpdateCustomTargetingValueRequest())
        ->setCustomTargetingValue($customTargetingValue);

    // Call the API and handle any network failures.
    try {
        /** @var CustomTargetingValue $response */
        $response = $customTargetingValueServiceClient->updateCustomTargetingValue($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
{
    $formattedCustomTargetingValueCustomTargetingKey = CustomTargetingValueServiceClient::customTargetingKeyName(
        '[NETWORK_CODE]',
        '[CUSTOM_TARGETING_KEY]'
    );
    $customTargetingValueMatchType = CustomTargetingValueMatchType::CUSTOM_TARGETING_VALUE_MATCH_TYPE_UNSPECIFIED;

    update_custom_targeting_value_sample(
        $formattedCustomTargetingValueCustomTargetingKey,
        $customTargetingValueMatchType
    );
}

batchActivateCustomTargetingValuesAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchActivateCustomTargetingValuesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\BatchActivateCustomTargetingValuesResponse>

batchCreateCustomTargetingValuesAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchCreateCustomTargetingValuesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\BatchCreateCustomTargetingValuesResponse>

batchDeactivateCustomTargetingValuesAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\BatchDeactivateCustomTargetingValuesResponse>

batchUpdateCustomTargetingValuesAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\BatchUpdateCustomTargetingValuesResponse>

createCustomTargetingValueAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\CreateCustomTargetingValueRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\CustomTargetingValue>

getCustomTargetingValueAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\GetCustomTargetingValueRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\CustomTargetingValue>

listCustomTargetingValuesAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\ListCustomTargetingValuesRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse>

updateCustomTargetingValueAsync

Parameters
Name Description
request Google\Ads\AdManager\V1\UpdateCustomTargetingValueRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Ads\AdManager\V1\CustomTargetingValue>

static::customTargetingKeyName

Formats a string containing the fully-qualified path to represent a custom_targeting_key resource.

Parameters
Name Description
networkCode string
customTargetingKey string
Returns
Type Description
string The formatted custom_targeting_key resource.

static::customTargetingValueName

Formats a string containing the fully-qualified path to represent a custom_targeting_value resource.

Parameters
Name Description
networkCode string
customTargetingValue string
Returns
Type Description
string The formatted custom_targeting_value resource.

static::networkName

Formats a string containing the fully-qualified path to represent a network resource.

Parameter
Name Description
networkCode string
Returns
Type Description
string The formatted network 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

  • customTargetingKey: networks/{network_code}/customTargetingKeys/{custom_targeting_key}
  • customTargetingValue: networks/{network_code}/customTargetingValues/{custom_targeting_value}
  • network: networks/{network_code}

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.