Reference documentation and code samples for the Google Ads Ad Manager V1 Client class AdUnitServiceClient.
Service Description: Provides methods for handling AdUnit 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 \ ClientMethods
__construct
Constructor.
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
FetchAuthTokenInterface|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\AdUnitServiceClient; $creds = new ServiceAccountCredentials($scopes, $json); $options = new AdUnitServiceClient(['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|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|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'.
batchActivateAdUnits
API to batch activate AdUnit
objects.
The async variant is AdUnitServiceClient::batchActivateAdUnitsAsync() .
request
Google\Ads\AdManager\V1\BatchActivateAdUnitsRequest
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.
use Google\Ads\AdManager\V1\BatchActivateAdUnitsRequest;
use Google\Ads\AdManager\V1\BatchActivateAdUnitsResponse;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\ApiCore\ApiException;
/**
* @param string $formattedParent Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedNamesElement The resource names of the `AdUnit`s to activate.
* Format: `networks/{network_code}/adUnits/{ad_unit_id}`
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
*/
function batch_activate_ad_units_sample(
string $formattedParent,
string $formattedNamesElement
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$formattedNames = [$formattedNamesElement,];
$request = (new BatchActivateAdUnitsRequest())
->setParent($formattedParent)
->setNames($formattedNames);
// Call the API and handle any network failures.
try {
/** @var BatchActivateAdUnitsResponse $response */
$response = $adUnitServiceClient->batchActivateAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedNamesElement = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
batch_activate_ad_units_sample($formattedParent, $formattedNamesElement);
}
batchArchiveAdUnits
Archives a list of AdUnit
objects.
The async variant is AdUnitServiceClient::batchArchiveAdUnitsAsync() .
request
Google\Ads\AdManager\V1\BatchArchiveAdUnitsRequest
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.
use Google\Ads\AdManager\V1\BatchArchiveAdUnitsRequest;
use Google\Ads\AdManager\V1\BatchArchiveAdUnitsResponse;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\ApiCore\ApiException;
/**
* @param string $formattedParent Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedNamesElement The resource names of the `AdUnit`s to archive.
* Format: `networks/{network_code}/adUnits/{ad_unit_id}`
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
*/
function batch_archive_ad_units_sample(
string $formattedParent,
string $formattedNamesElement
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$formattedNames = [$formattedNamesElement,];
$request = (new BatchArchiveAdUnitsRequest())
->setParent($formattedParent)
->setNames($formattedNames);
// Call the API and handle any network failures.
try {
/** @var BatchArchiveAdUnitsResponse $response */
$response = $adUnitServiceClient->batchArchiveAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedNamesElement = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
batch_archive_ad_units_sample($formattedParent, $formattedNamesElement);
}
batchCreateAdUnits
API to batch create AdUnit
objects.
The async variant is AdUnitServiceClient::batchCreateAdUnitsAsync() .
request
Google\Ads\AdManager\V1\BatchCreateAdUnitsRequest
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.
use Google\Ads\AdManager\V1\AdUnit;
use Google\Ads\AdManager\V1\BatchCreateAdUnitsRequest;
use Google\Ads\AdManager\V1\BatchCreateAdUnitsResponse;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\CreateAdUnitRequest;
use Google\ApiCore\ApiException;
/**
* @param string $formattedParent The parent resource where `AdUnits` will be created.
* Format: `networks/{network_code}`
* The parent field in the CreateAdUnitRequest must match this
* field. Please see
* {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedRequestsParent The parent resource where this `AdUnit` will be created.
* Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedRequestsAdUnitParentAdUnit Immutable. The AdUnit's parent. Every ad unit has a parent except
* for the root ad unit, which is created by Google. Format:
* "networks/{network_code}/adUnits/{ad_unit_id}"
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
* @param string $requestsAdUnitDisplayName The display name of the ad unit. Its maximum length is 255
* characters.
*/
function batch_create_ad_units_sample(
string $formattedParent,
string $formattedRequestsParent,
string $formattedRequestsAdUnitParentAdUnit,
string $requestsAdUnitDisplayName
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$requestsAdUnit = (new AdUnit())
->setParentAdUnit($formattedRequestsAdUnitParentAdUnit)
->setDisplayName($requestsAdUnitDisplayName);
$createAdUnitRequest = (new CreateAdUnitRequest())
->setParent($formattedRequestsParent)
->setAdUnit($requestsAdUnit);
$requests = [$createAdUnitRequest,];
$request = (new BatchCreateAdUnitsRequest())
->setParent($formattedParent)
->setRequests($requests);
// Call the API and handle any network failures.
try {
/** @var BatchCreateAdUnitsResponse $response */
$response = $adUnitServiceClient->batchCreateAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedRequestsParent = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedRequestsAdUnitParentAdUnit = AdUnitServiceClient::adUnitName(
'[NETWORK_CODE]',
'[AD_UNIT]'
);
$requestsAdUnitDisplayName = '[DISPLAY_NAME]';
batch_create_ad_units_sample(
$formattedParent,
$formattedRequestsParent,
$formattedRequestsAdUnitParentAdUnit,
$requestsAdUnitDisplayName
);
}
batchDeactivateAdUnits
Deactivates a list of AdUnit
objects.
The async variant is AdUnitServiceClient::batchDeactivateAdUnitsAsync() .
request
Google\Ads\AdManager\V1\BatchDeactivateAdUnitsRequest
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.
use Google\Ads\AdManager\V1\BatchDeactivateAdUnitsRequest;
use Google\Ads\AdManager\V1\BatchDeactivateAdUnitsResponse;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\ApiCore\ApiException;
/**
* @param string $formattedParent Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedNamesElement The resource names of the `AdUnit`s to deactivate.
* Format: `networks/{network_code}/adUnits/{ad_unit_id}`
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
*/
function batch_deactivate_ad_units_sample(
string $formattedParent,
string $formattedNamesElement
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$formattedNames = [$formattedNamesElement,];
$request = (new BatchDeactivateAdUnitsRequest())
->setParent($formattedParent)
->setNames($formattedNames);
// Call the API and handle any network failures.
try {
/** @var BatchDeactivateAdUnitsResponse $response */
$response = $adUnitServiceClient->batchDeactivateAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedNamesElement = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
batch_deactivate_ad_units_sample($formattedParent, $formattedNamesElement);
}
batchUpdateAdUnits
API to batch update AdUnit
objects.
The async variant is AdUnitServiceClient::batchUpdateAdUnitsAsync() .
request
Google\Ads\AdManager\V1\BatchUpdateAdUnitsRequest
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.
use Google\Ads\AdManager\V1\AdUnit;
use Google\Ads\AdManager\V1\BatchUpdateAdUnitsRequest;
use Google\Ads\AdManager\V1\BatchUpdateAdUnitsResponse;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\UpdateAdUnitRequest;
use Google\ApiCore\ApiException;
use Google\Protobuf\FieldMask;
/**
* @param string $formattedParent The parent resource where `AdUnits` will be updated.
* Format: `networks/{network_code}`
* The parent field in the UpdateAdUnitRequest must match this
* field. Please see
* {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedRequestsAdUnitParentAdUnit Immutable. The AdUnit's parent. Every ad unit has a parent except
* for the root ad unit, which is created by Google. Format:
* "networks/{network_code}/adUnits/{ad_unit_id}"
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
* @param string $requestsAdUnitDisplayName The display name of the ad unit. Its maximum length is 255
* characters.
*/
function batch_update_ad_units_sample(
string $formattedParent,
string $formattedRequestsAdUnitParentAdUnit,
string $requestsAdUnitDisplayName
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$requestsAdUnit = (new AdUnit())
->setParentAdUnit($formattedRequestsAdUnitParentAdUnit)
->setDisplayName($requestsAdUnitDisplayName);
$requestsUpdateMask = new FieldMask();
$updateAdUnitRequest = (new UpdateAdUnitRequest())
->setAdUnit($requestsAdUnit)
->setUpdateMask($requestsUpdateMask);
$requests = [$updateAdUnitRequest,];
$request = (new BatchUpdateAdUnitsRequest())
->setParent($formattedParent)
->setRequests($requests);
// Call the API and handle any network failures.
try {
/** @var BatchUpdateAdUnitsResponse $response */
$response = $adUnitServiceClient->batchUpdateAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedRequestsAdUnitParentAdUnit = AdUnitServiceClient::adUnitName(
'[NETWORK_CODE]',
'[AD_UNIT]'
);
$requestsAdUnitDisplayName = '[DISPLAY_NAME]';
batch_update_ad_units_sample(
$formattedParent,
$formattedRequestsAdUnitParentAdUnit,
$requestsAdUnitDisplayName
);
}
createAdUnit
API to create an AdUnit
object.
The async variant is AdUnitServiceClient::createAdUnitAsync() .
request
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.
use Google\Ads\AdManager\V1\AdUnit;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\CreateAdUnitRequest;
use Google\ApiCore\ApiException;
/**
* @param string $formattedParent The parent resource where this `AdUnit` will be created.
* Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
* @param string $formattedAdUnitParentAdUnit Immutable. The AdUnit's parent. Every ad unit has a parent except
* for the root ad unit, which is created by Google. Format:
* "networks/{network_code}/adUnits/{ad_unit_id}"
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
* @param string $adUnitDisplayName The display name of the ad unit. Its maximum length is 255
* characters.
*/
function create_ad_unit_sample(
string $formattedParent,
string $formattedAdUnitParentAdUnit,
string $adUnitDisplayName
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$adUnit = (new AdUnit())
->setParentAdUnit($formattedAdUnitParentAdUnit)
->setDisplayName($adUnitDisplayName);
$request = (new CreateAdUnitRequest())
->setParent($formattedParent)
->setAdUnit($adUnit);
// Call the API and handle any network failures.
try {
/** @var AdUnit $response */
$response = $adUnitServiceClient->createAdUnit($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
$formattedAdUnitParentAdUnit = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
$adUnitDisplayName = '[DISPLAY_NAME]';
create_ad_unit_sample($formattedParent, $formattedAdUnitParentAdUnit, $adUnitDisplayName);
}
getAdUnit
API to retrieve an AdUnit object.
The async variant is AdUnitServiceClient::getAdUnitAsync() .
request
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.
use Google\Ads\AdManager\V1\AdUnit;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\GetAdUnitRequest;
use Google\ApiCore\ApiException;
/**
* @param string $formattedName The resource name of the AdUnit.
* Format: `networks/{network_code}/adUnits/{ad_unit_id}`
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
*/
function get_ad_unit_sample(string $formattedName): void
{
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$request = (new GetAdUnitRequest())
->setName($formattedName);
// Call the API and handle any network failures.
try {
/** @var AdUnit $response */
$response = $adUnitServiceClient->getAdUnit($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 = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
get_ad_unit_sample($formattedName);
}
listAdUnitSizes
API to retrieve a list of AdUnitSize objects.
The async variant is AdUnitServiceClient::listAdUnitSizesAsync() .
request
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.
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\ListAdUnitSizesRequest;
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
/**
* @param string $formattedParent The parent, which owns this collection of AdUnitSizes.
* Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
*/
function list_ad_unit_sizes_sample(string $formattedParent): void
{
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$request = (new ListAdUnitSizesRequest())
->setParent($formattedParent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $adUnitServiceClient->listAdUnitSizes($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
list_ad_unit_sizes_sample($formattedParent);
}
listAdUnits
API to retrieve a list of AdUnit objects.
The async variant is AdUnitServiceClient::listAdUnitsAsync() .
request
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.
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\ListAdUnitsRequest;
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
/**
* @param string $formattedParent The parent, which owns this collection of AdUnits.
* Format: `networks/{network_code}`
* Please see {@see AdUnitServiceClient::networkName()} for help formatting this field.
*/
function list_ad_units_sample(string $formattedParent): void
{
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$request = (new ListAdUnitsRequest())
->setParent($formattedParent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $adUnitServiceClient->listAdUnits($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 = AdUnitServiceClient::networkName('[NETWORK_CODE]');
list_ad_units_sample($formattedParent);
}
updateAdUnit
API to update an AdUnit
object.
The async variant is AdUnitServiceClient::updateAdUnitAsync() .
request
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.
use Google\Ads\AdManager\V1\AdUnit;
use Google\Ads\AdManager\V1\Client\AdUnitServiceClient;
use Google\Ads\AdManager\V1\UpdateAdUnitRequest;
use Google\ApiCore\ApiException;
use Google\Protobuf\FieldMask;
/**
* @param string $formattedAdUnitParentAdUnit Immutable. The AdUnit's parent. Every ad unit has a parent except
* for the root ad unit, which is created by Google. Format:
* "networks/{network_code}/adUnits/{ad_unit_id}"
* Please see {@see AdUnitServiceClient::adUnitName()} for help formatting this field.
* @param string $adUnitDisplayName The display name of the ad unit. Its maximum length is 255
* characters.
*/
function update_ad_unit_sample(
string $formattedAdUnitParentAdUnit,
string $adUnitDisplayName
): void {
// Create a client.
$adUnitServiceClient = new AdUnitServiceClient();
// Prepare the request message.
$adUnit = (new AdUnit())
->setParentAdUnit($formattedAdUnitParentAdUnit)
->setDisplayName($adUnitDisplayName);
$updateMask = new FieldMask();
$request = (new UpdateAdUnitRequest())
->setAdUnit($adUnit)
->setUpdateMask($updateMask);
// Call the API and handle any network failures.
try {
/** @var AdUnit $response */
$response = $adUnitServiceClient->updateAdUnit($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
{
$formattedAdUnitParentAdUnit = AdUnitServiceClient::adUnitName('[NETWORK_CODE]', '[AD_UNIT]');
$adUnitDisplayName = '[DISPLAY_NAME]';
update_ad_unit_sample($formattedAdUnitParentAdUnit, $adUnitDisplayName);
}
batchActivateAdUnitsAsync
optionalArgs
array
batchArchiveAdUnitsAsync
optionalArgs
array
batchCreateAdUnitsAsync
optionalArgs
array
batchDeactivateAdUnitsAsync
optionalArgs
array
batchUpdateAdUnitsAsync
optionalArgs
array
createAdUnitAsync
getAdUnitAsync
listAdUnitSizesAsync
optionalArgs
array
listAdUnitsAsync
updateAdUnitAsync
static::adUnitName
Formats a string containing the fully-qualified path to represent a ad_unit resource.
networkCode
string
adUnit
string
string
static::labelName
Formats a string containing the fully-qualified path to represent a label resource.
networkCode
string
label
string
string
static::networkName
Formats a string containing the fully-qualified path to represent a network resource.
networkCode
string
string
static::teamName
Formats a string containing the fully-qualified path to represent a team resource.
networkCode
string
team
string
string
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
- adUnit: networks/{network_code}/adUnits/{ad_unit}
- label: networks/{network_code}/labels/{label}
- network: networks/{network_code}
- team: networks/{network_code}/teams/{team}
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.
formattedName
string
The formatted name string
template
?string
Optional name of template to match
array

