module Google::Ads::GoogleAds::V8::Services::KeywordPlanAdGroupKeywordService::Paths

Path helper methods for the KeywordPlanAdGroupKeywordService API.

Public Instance Methods

keyword_plan_ad_group_keyword_path(customer_id:, keyword_plan_ad_group_keyword_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/") click to toggle source

Create a fully-qualified KeywordPlanAdGroupKeyword resource string.

The resource will be in the following format:

`customers/{customer_id}/keywordPlanAdGroupKeywords/{keyword_plan_ad_group_keyword_id}`

@param customer_id [String] @param keyword_plan_ad_group_keyword_id [String]

@return [::String]

# File lib/google/ads/google_ads/v8/services/keyword_plan_ad_group_keyword_service/paths.rb, line 56
def keyword_plan_ad_group_keyword_path customer_id:, keyword_plan_ad_group_keyword_id:
  raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/"

  "customers/#{customer_id}/keywordPlanAdGroupKeywords/#{keyword_plan_ad_group_keyword_id}"
end
keyword_plan_ad_group_path(customer_id:, keyword_plan_ad_group_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/") click to toggle source

Create a fully-qualified KeywordPlanAdGroup resource string.

The resource will be in the following format:

`customers/{customer_id}/keywordPlanAdGroups/{keyword_plan_ad_group_id}`

@param customer_id [String] @param keyword_plan_ad_group_id [String]

@return [::String]

# File lib/google/ads/google_ads/v8/services/keyword_plan_ad_group_keyword_service/paths.rb, line 39
def keyword_plan_ad_group_path customer_id:, keyword_plan_ad_group_id:
  raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/"

  "customers/#{customer_id}/keywordPlanAdGroups/#{keyword_plan_ad_group_id}"
end