Search For Google Ads Fields

Java

// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ads.googleads.examples.basicoperations;

import com.beust.jcommander.Parameter;
import com.google.ads.googleads.examples.utils.ArgumentNames;
import com.google.ads.googleads.examples.utils.CodeSampleParams;
import com.google.ads.googleads.lib.GoogleAdsClient;
import com.google.ads.googleads.v16.errors.GoogleAdsError;
import com.google.ads.googleads.v16.errors.GoogleAdsException;
import com.google.ads.googleads.v16.resources.GoogleAdsField;
import com.google.ads.googleads.v16.services.GoogleAdsFieldServiceClient;
import com.google.ads.googleads.v16.services.GoogleAdsFieldServiceClient.SearchGoogleAdsFieldsPagedResponse;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Searches for {@link GoogleAdsField}s that match a given prefix, retrieving metadata such as
 * whether the field is selectable, filterable, or sortable, along with the data type and the fields
 * that are selectable with the field. Each {@link GoogleAdsField} represents either a resource
 * (such as {@code customer}, {@code campaign}) or a field (such as {@code metrics.impressions},
 * {@code campaign.id}).
 */
public class SearchForGoogleAdsFields {

  private static class SearchForGoogleAdsFieldsParams extends CodeSampleParams {

    @Parameter(names = ArgumentNames.NAME_PREFIX, required = true)
    private String namePrefix;
  }

  public static void main(String[] args) {
    SearchForGoogleAdsFieldsParams params = new SearchForGoogleAdsFieldsParams();
    if (!params.parseArguments(args)) {

      // Either pass the required parameters for this example on the command line, or insert them
      // into the code here. See the parameter class definition above for descriptions.
      params.namePrefix = "INSERT_NAME_PREFIX_HERE";
    }

    GoogleAdsClient googleAdsClient = null;
    try {
      googleAdsClient = GoogleAdsClient.newBuilder().fromPropertiesFile().build();
    } catch (FileNotFoundException fnfe) {
      System.err.printf(
          "Failed to load GoogleAdsClient configuration from file. Exception: %s%n", fnfe);
      System.exit(1);
    } catch (IOException ioe) {
      System.err.printf("Failed to create GoogleAdsClient. Exception: %s%n", ioe);
      System.exit(1);
    }

    try {
      new SearchForGoogleAdsFields().runExample(googleAdsClient, params.namePrefix);
    } catch (GoogleAdsException gae) {
      // GoogleAdsException is the base class for most exceptions thrown by an API request.
      // Instances of this exception have a message and a GoogleAdsFailure that contains a
      // collection of GoogleAdsErrors that indicate the underlying causes of the
      // GoogleAdsException.
      System.err.printf(
          "Request ID %s failed due to GoogleAdsException. Underlying errors:%n",
          gae.getRequestId());
      int i = 0;
      for (GoogleAdsError googleAdsError : gae.getGoogleAdsFailure().getErrorsList()) {
        System.err.printf("  Error %d: %s%n", i++, googleAdsError);
      }
      System.exit(1);
    }
  }

  /**
   * Runs the example.
   *
   * @param googleAdsClient the Google Ads API client.
   * @param namePrefix the name prefix to use in the query.
   * @throws GoogleAdsException if an API request failed with one or more service errors.
   */
  private void runExample(GoogleAdsClient googleAdsClient, String namePrefix) {
    try (GoogleAdsFieldServiceClient googleAdsFieldServiceClient =
        googleAdsClient.getLatestVersion().createGoogleAdsFieldServiceClient()) {
      // Searches for all fields whose name begins with the specified namePrefix.
      SearchGoogleAdsFieldsPagedResponse searchGoogleAdsFieldsPagedResponse =
          googleAdsFieldServiceClient.searchGoogleAdsFields(
              String.format(
                  "SELECT "
                      + "name, "
                      + "category, "
                      + "selectable, "
                      + "filterable, "
                      + "sortable, "
                      + "data_type, "
                      + "is_repeated, "
                      + "selectable_with "
                      // The double "%%" below will produce a single "%" in the string returned by
                      // String.format. A single "%" is the wildcard token in the Google Ads Query
                      // language.
                      + "WHERE name LIKE '%s%%'",
                  namePrefix));

      if (searchGoogleAdsFieldsPagedResponse.getPage().getResponse().getTotalResultsCount() == 0) {
        System.out.printf(
            "No GoogleAdsFields found with a name that begins with '%s'.%n", namePrefix);
        return;
      }

      // Retrieves each matching GoogleAdsField and prints its metadata.
      for (GoogleAdsField googleAdsField : searchGoogleAdsFieldsPagedResponse.iterateAll()) {
        System.out.printf("%s:%n", googleAdsField.getName());
        System.out.printf("  %-16s %s%n", "category:", googleAdsField.getCategory());
        System.out.printf("  %-16s %s%n", "data type:", googleAdsField.getDataType());
        System.out.printf("  %-16s %s%n", "selectable:", googleAdsField.getSelectable());
        System.out.printf("  %-16s %s%n", "filterable:", googleAdsField.getFilterable());
        System.out.printf("  %-16s %s%n", "sortable:", googleAdsField.getSortable());
        System.out.printf("  %-16s %s%n", "repeated:", googleAdsField.getIsRepeated());

        // Prints the list of fields that are selectable with the field.
        List<String> selectableWithFields = new ArrayList(googleAdsField.getSelectableWithList());
        if (!selectableWithFields.isEmpty()) {
          // Sorts and then prints the list.
          Collections.sort(selectableWithFields);
          System.out.printf("  %s%n", "selectable with:");
          for (String selectableWithField : selectableWithFields) {
            System.out.printf("    %s%n", selectableWithField);
          }
        }
      }
    }
  }
}

      

C#

// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using CommandLine;
using Google.Ads.Gax.Examples;
using Google.Ads.GoogleAds.Lib;
using Google.Ads.GoogleAds.V16.Errors;
using Google.Ads.GoogleAds.V16.Resources;
using Google.Ads.GoogleAds.V16.Services;
using Google.Api.Gax;
using System;
using System.Collections.Generic;
using System.Linq;

namespace Google.Ads.GoogleAds.Examples.V16
{
    /// <summary>
    /// This code example searches for <see cref="GoogleAdsField" /> that match a given prefix,
    /// retrieving metadata such as whether the field is selectable, filterable, or sortable,
    /// along with the data type and the fields that are selectable with the field. Each
    /// <code>GoogleAdsField</code> represents either a resource (such as <code>customer</code>,
    /// <code>campaign</code> or a field (such as <code>metrics.impressions</code>,
    /// <code>campaign.id</code>).
    /// </summary>
    public class SearchForGoogleAdsFields : ExampleBase
    {
        /// <summary>
        /// Command line options for running the <see cref="SearchForGoogleAdsFields"/> example.
        /// </summary>
        public class Options : OptionsBase
        {
            /// <summary>
            /// The name prefix to search for matching GoogleAdsFields.
            /// </summary>
            [Option("namePrefix", Required = true, HelpText =
                "The name prefix to search for matching GoogleAdsFields.")]
            public string NamePrefix { get; set; }
        }

        /// <summary>
        /// Main method, to run this code example as a standalone application.
        /// </summary>
        /// <param name="args">The command line arguments.</param>
        public static void Main(string[] args)
        {
            Options options = ExampleUtilities.ParseCommandLine<Options>(args);

            SearchForGoogleAdsFields codeExample = new SearchForGoogleAdsFields();
            Console.WriteLine(codeExample.Description);
            codeExample.Run(new GoogleAdsClient(), options.NamePrefix);
        }

        /// <summary>
        /// Returns a description about the code example.
        /// </summary>
        public override string Description =>
            "This code example searches for <see cref='GoogleAdsField' /> that match a given " +
            "prefix retrieving metadata such as whether the field is selectable, filterable, " +
            "or sortable, along with the data type and the fields that are selectable with " +
            "the field. Each <code>GoogleAdsField</code> represents either a resource (such " +
            "as <code>customer</code>, <code>campaign</code> or a field (such as " +
            "<code>metrics.impressions</code>, <code>campaign.id</code>).";

        /// <summary>
        /// Runs the code example.
        /// </summary>
        /// <param name="client">The Google Ads client.</param>
        /// <param name="namePrefix">The name prefix to search for matching GoogleAdsFields.</param>
        public void Run(GoogleAdsClient client, string namePrefix)
        {
            // Get the GoogleAdsFieldService.
            GoogleAdsFieldServiceClient googleAdsFieldService = client.GetService(
                Services.V16.GoogleAdsFieldService);

            // Create the query.
            string searchQuery = $"SELECT name, category, selectable, filterable, sortable, " +
                $"selectable_with, data_type, is_repeated, selectable_with WHERE " +
                $"name LIKE '{namePrefix}%%'";

            try
            {
                // Searches for all fields whose name begins with the specified namePrefix.
                PagedEnumerable<SearchGoogleAdsFieldsResponse, GoogleAdsField> googleAdsFields =
                    googleAdsFieldService.SearchGoogleAdsFields(searchQuery);

                if (googleAdsFields.Any())
                {
                    // Get all returned artifacts and print out their metadata.
                    foreach (GoogleAdsField googleAdsField in googleAdsFields)
                    {
                        Console.WriteLine(googleAdsField.Name);
                        Console.WriteLine($"  Category: {googleAdsField.Category}");
                        Console.WriteLine($"  DataType: {googleAdsField.DataType}");
                        Console.WriteLine($"  Selectable: {googleAdsField.Selectable}");
                        Console.WriteLine($"  Filterable: {googleAdsField.Filterable}");
                        Console.WriteLine($"  Sortable: {googleAdsField.Sortable}");
                        Console.WriteLine($"  Repeated: {googleAdsField.IsRepeated}");

                        if (googleAdsField.SelectableWith.Count > 0)
                        {
                            List<string> selectableLists = new List<string>(
                                googleAdsField.SelectableWith);
                            selectableLists.Sort();

                            Console.WriteLine("  Selectable with:");
                            foreach (string item in selectableLists)
                            {
                                Console.WriteLine($"    {item}");
                            }
                        }
                        Console.WriteLine();
                    }
                }
                else
                {
                    Console.Error.WriteLine($"No GoogleAdsFields found with a name that " +
                        $"begins with '{namePrefix}'.");
                }
            }
            catch (GoogleAdsException e)
            {
                Console.WriteLine("Failure:");
                Console.WriteLine($"Message: {e.Message}");
                Console.WriteLine($"Failure: {e.Failure}");
                Console.WriteLine($"Request ID: {e.RequestId}");
                throw;
            }
        }
    }
}

      

PHP

<?php

/**
 * Copyright 2022 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

namespace Google\Ads\GoogleAds\Examples\BasicOperations;

require __DIR__ . '/../../vendor/autoload.php';

use GetOpt\GetOpt;
use Google\Ads\GoogleAds\Examples\Utils\ArgumentNames;
use Google\Ads\GoogleAds\Examples\Utils\ArgumentParser;
use Google\Ads\GoogleAds\Lib\V16\GoogleAdsClient;
use Google\Ads\GoogleAds\Lib\V16\GoogleAdsClientBuilder;
use Google\Ads\GoogleAds\Lib\V16\GoogleAdsException;
use Google\Ads\GoogleAds\Lib\OAuth2TokenBuilder;
use Google\Ads\GoogleAds\V16\Enums\GoogleAdsFieldCategoryEnum\GoogleAdsFieldCategory;
use Google\Ads\GoogleAds\V16\Enums\GoogleAdsFieldDataTypeEnum\GoogleAdsFieldDataType;
use Google\Ads\GoogleAds\V16\Errors\GoogleAdsError;
use Google\Ads\GoogleAds\V16\Resources\GoogleAdsField;
use Google\Ads\GoogleAds\V16\Services\SearchGoogleAdsFieldsRequest;
use Google\ApiCore\ApiException;

/**
 * Searches for GoogleAdsFields that match a given prefix, retrieving metadata such as
 * whether the field is selectable, filterable, or sortable, along with the data type and the fields
 * that are selectable with the field. Each GoogleAdsField represents either a resource (such as
 * customer, campaign) or a field (such as metrics.impressions, campaign.id).
 */
class SearchForGoogleAdsFields
{
    private const NAME_PREFIX = 'INSERT_NAME_PREFIX_HERE';

    public static function main()
    {
        // Either pass the required parameters for this example on the command line, or insert them
        // into the constants above.
        $options = (new ArgumentParser())->parseCommandArguments([
            ArgumentNames::NAME_PREFIX => GetOpt::REQUIRED_ARGUMENT
        ]);

        // Generate a refreshable OAuth2 credential for authentication.
        $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();

        // Construct a Google Ads client configured from a properties file and the
        // OAuth2 credentials above.
        $googleAdsClient = (new GoogleAdsClientBuilder())->fromFile()
            ->withOAuth2Credential($oAuth2Credential)
            // We set this value to true to show how to use GAPIC v2 source code. You can remove the
            // below line if you wish to use the old-style source code. Note that in that case, you
            // probably need to modify some parts of the code below to make it work.
            // For more information, see
            // https://developers.devsite.corp.google.com/google-ads/api/docs/client-libs/php/gapic.
            ->usingGapicV2Source(true)
            ->build();

        try {
            self::runExample(
                $googleAdsClient,
                $options[ArgumentNames::NAME_PREFIX] ?: self::NAME_PREFIX
            );
        } catch (GoogleAdsException $googleAdsException) {
            printf(
                "Request with ID '%s' has failed.%sGoogle Ads failure details:%s",
                $googleAdsException->getRequestId(),
                PHP_EOL,
                PHP_EOL
            );
            foreach ($googleAdsException->getGoogleAdsFailure()->getErrors() as $error) {
                /** @var GoogleAdsError $error */
                printf(
                    "\t%s: %s%s",
                    $error->getErrorCode()->getErrorCode(),
                    $error->getMessage(),
                    PHP_EOL
                );
            }
            exit(1);
        } catch (ApiException $apiException) {
            printf(
                "ApiException was thrown with message '%s'.%s",
                $apiException->getMessage(),
                PHP_EOL
            );
            exit(1);
        }
    }

    /**
     * Runs the example.
     *
     * @param GoogleAdsClient $googleAdsClient the Google Ads API client
     * @param string $namePrefix the name prefix to use in the query
     */
    public static function runExample(GoogleAdsClient $googleAdsClient, string $namePrefix)
    {
        $googleAdsFieldServiceClient = $googleAdsClient->getGoogleAdsFieldServiceClient();
        // Searches for all fields whose name begins with the specified namePrefix.
        // A single "%" is the wildcard token in the Google Ads Query language.
        $query = "SELECT name, category, selectable, filterable, sortable, selectable_with, "
            . "data_type, is_repeated WHERE name LIKE '$namePrefix%'";
        $response = $googleAdsFieldServiceClient->searchGoogleAdsFields(
            SearchGoogleAdsFieldsRequest::build($query)
        );

        if (iterator_count($response->getIterator()) === 0) {
            printf(
                "No GoogleAdsFields found with a name that begins with %s.%s",
                $namePrefix,
                PHP_EOL
            );
            return;
        }
        // Iterates over all rows and prints our the metadata of each matching GoogleAdsField.
        foreach ($response->iterateAllElements() as $googleAdsField) {
            /** @var GoogleAdsField $googleAdsField */
            printf("%s:%s", $googleAdsField->getName(), PHP_EOL);
            printf(
                "  %-16s: %s%s",
                "category:",
                GoogleAdsFieldCategory::name($googleAdsField->getCategory()),
                PHP_EOL
            );
            printf(
                "  %-16s: %s%s",
                "data type:",
                GoogleAdsFieldDataType::name($googleAdsField->getDataType()),
                PHP_EOL
            );
            printf(
                "  %-16s: %s%s",
                "selectable:",
                $googleAdsField->getSelectable() ? 'true' : 'false',
                PHP_EOL
            );
            printf(
                "  %-16s: %s%s",
                "filterable:",
                $googleAdsField->getFilterable() ? 'true' : 'false',
                PHP_EOL
            );
            printf(
                "  %-16s: %s%s",
                "sortable:",
                $googleAdsField->getSortable() ? 'true' : 'false',
                PHP_EOL
            );
            printf(
                "  %-16s: %s%s",
                "repeated:",
                $googleAdsField->getIsRepeated() ? 'true' : 'false',
                PHP_EOL
            );

            if ($googleAdsField->getSelectableWith()->count() > 0) {
                // Prints the list of fields that are selectable with the field.
                $selectableWithFields =
                    iterator_to_array($googleAdsField->getSelectableWith()->getIterator());
                // Sorts and then prints the list.
                sort($selectableWithFields);
                print '  selectable with:' . PHP_EOL;
                foreach ($selectableWithFields as $selectableWithField) {
                    /** @var string $selectableWithField */
                    printf("    $selectableWithField%s", PHP_EOL);
                }
            }
        }
    }
}

SearchForGoogleAdsFields::main();

      

Python

#!/usr/bin/env python
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Searches for GoogleAdsFields that match a given prefix.

Retrieves metadata such as whether the field is selectable, filterable, or
sortable, along with the data type and the fields that are selectable with the
field. Each GoogleAdsField represents either a resource (such as customer,
campaign) or a field (such as metrics.impressions, campaign.id).
"""


import argparse
import sys
from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.errors import GoogleAdsException


_DEFAULT_PAGE_SIZE = 1000


def main(client, name_prefix, page_size):
    """The main method that creates all necessary entities for the example.

    Args:
        client: an initialized GoogleAdsClient instance.
        name_prefix: the name prefix to use when searching for Google Ads field
            names.
        page_size: the number of rows to return per page.
    """
    gaf_service = client.get_service("GoogleAdsFieldService")

    # Searches for all fields whose name begins with the specified name prefix.
    query = f"""
        SELECT
          name,
          category,
          selectable,
          filterable,
          sortable,
          selectable_with,
          data_type,
          is_repeated
        WHERE name LIKE '{name_prefix}%'"""

    request = client.get_type("SearchGoogleAdsFieldsRequest")
    request.query = query
    request.page_size = page_size

    response = gaf_service.search_google_ads_fields(request=request)

    # Checks if any results were returned and exits if not.
    if response.total_results_count == 0:
        print(
            "No GoogleAdsFields found with a name that begins with "
            f"'{name_prefix}'."
        )
        sys.exit(0)

    # Retrieves each matching GoogleAdsField and prints its metadata.
    for googleads_field in response:
        print(f"{googleads_field.name}:")
        # These statements format the printed string so that the left side is
        # always a 16-character string so that the values on the right line up
        # vertically.
        print(f"{'  category:':<16}", googleads_field.category.name)
        print(f"{'  data type:':<16}", googleads_field.data_type.name)
        print(f"{'  selectable:':<16}", googleads_field.selectable)
        print(f"{'  filterable:':<16}", googleads_field.filterable)
        print(f"{'  sortable:':<16}", googleads_field.sortable)
        print(f"{'  repeated:':<16}", googleads_field.is_repeated)

        # Prints the list of fields that are selectable with the field.
        if googleads_field.selectable_with:
            # Sorts the selectable_with list then prints each field name.
            googleads_field.selectable_with.sort()
            print("  selectable with:")
            for selectable_with_field in googleads_field.selectable_with:
                print(f"    {selectable_with_field}")

        # Print an extra line to visually separate each GoogleAdsField.
        print()


if __name__ == "__main__":
    # GoogleAdsClient will read the google-ads.yaml configuration file in the
    # home directory if none is specified.
    googleads_client = GoogleAdsClient.load_from_storage(version="v16")

    parser = argparse.ArgumentParser(
        description="Lists metadata for the specified artifact."
    )
    # The following argument(s) should be provided to run the example.
    parser.add_argument(
        "-n",
        "--name_prefix",
        type=str,
        required=True,
        help="The name prefix to use when searching for Google Ads field names",
    )
    args = parser.parse_args()

    try:
        main(googleads_client, args.name_prefix, _DEFAULT_PAGE_SIZE)
    except GoogleAdsException as ex:
        print(
            f'Request with ID "{ex.request_id}" failed with status '
            f'"{ex.error.code().name}" and includes the following errors:'
        )
        for error in ex.failure.errors:
            print(f'\tError with message "{error.message}".')
            if error.location:
                for field_path_element in error.location.field_path_elements:
                    print(f"\t\tOn field: {field_path_element.field_name}")
        sys.exit(1)

      

Ruby

#!/usr/bin/env ruby
# Encoding: utf-8
#
# Copyright:: Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This example gets the metadata, such as whether the artifact is selectable,
# filterable and sortable, of an artifact. The artifact can be either a resource
# (such as customer, campaign) or a field (such as metrics.impressions,
# campaign.id). It'll also show the data type and artifacts that are
# selectable with the artifact.

require 'optparse'
require 'google/ads/google_ads'

def search_for_google_ads_fields(name_prefix)
  # GoogleAdsClient will read a config file from
  # ENV['HOME']/google_ads_config.rb when called without parameters
  client = Google::Ads::GoogleAds::GoogleAdsClient.new

  query = <<~QUERY
    SELECT
      name,
      category,
      selectable,
      filterable,
      sortable,
      selectable_with,
      data_type,
      is_repeated
    WHERE name LIKE '#{name_prefix}%'
  QUERY
  # The % after the name prefix indicates that any series of characters may
  # come after the provided prefix.

  response = client.service.google_ads_field.search_google_ads_fields(query: query)

  if response.response.results.empty?
    puts "No GoogleAdsField found with name that begins with '#{name_prefix}'"
    return
  end

  response.each do |row|
    puts "#{row.name}:"
    puts "\t\tcategory: #{row.category}"
    puts "\t\tdata type: #{row.data_type}"
    puts "\t\tselectable: #{row.selectable}"
    puts "\t\tfilterable: #{row.filterable}"
    puts "\t\tsortable: #{row.sortable}"
    puts "\t\trepeated: #{row.is_repeated}"

    if !row.selectable_with.empty?
      puts "\tselectable with:"
      row.selectable_with.sort_by {|field| field}.each do |field|
        puts "\t\t#{field}"
      end
    end
  end
end

if __FILE__ == $PROGRAM_NAME
  options = {}
  # Running the example with -h will print the command line usage.

  OptionParser.new do |opts|
    opts.banner = sprintf('Usage: ruby %s [options]', File.basename(__FILE__))

    opts.separator ''
    opts.separator 'Options:'

    opts.on('-n', '--name-prefix NAME-PREFIX', String) do |v|
      options[:name_prefix] = v
    end

    opts.separator ''
    opts.separator 'Help:'

    opts.on_tail('-h', '--help', 'Show this message') do
      puts opts
      exit
    end
  end.parse!

  begin
    search_for_google_ads_fields(options[:name_prefix])
  rescue Google::Ads::GoogleAds::Errors::GoogleAdsError => e
    e.failure.errors.each do |error|
      error.error_code.to_h.each do |k, v|
        next if v == :UNSPECIFIED
        STDERR.printf("Error: %s\nDetails: %s\n", k, v)
      end
    end
    raise
  end
end

      

Perl

This example is not yet available in Perl; you can take a look at the other languages.