Module: Google::Ads::GoogleAds::V17::Services::AdParameterService::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/ads/google_ads/v17/services/ad_parameter_service/paths.rb
Overview
Path helper methods for the AdParameterService API.
Instance Method Summary collapse
-
#ad_group_criterion_path(customer_id:, ad_group_id:, criterion_id:) ⇒ ::String
Create a fully-qualified AdGroupCriterion resource string.
-
#ad_parameter_path(customer_id:, ad_group_id:, criterion_id:, parameter_index:) ⇒ ::String
Create a fully-qualified AdParameter resource string.
Instance Method Details
#ad_group_criterion_path(customer_id:, ad_group_id:, criterion_id:) ⇒ ::String
Create a fully-qualified AdGroupCriterion resource string.
The resource will be in the following format:
‘customers/customer_id/adGroupCriteria/ad_group_id~criterion_id`
40 41 42 43 44 45 |
# File 'lib/google/ads/google_ads/v17/services/ad_parameter_service/paths.rb', line 40 def ad_group_criterion_path customer_id:, ad_group_id:, criterion_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" raise ::ArgumentError, "ad_group_id cannot contain /" if ad_group_id.to_s.include? "/" "customers/#{customer_id}/adGroupCriteria/#{ad_group_id}~#{criterion_id}" end |
#ad_parameter_path(customer_id:, ad_group_id:, criterion_id:, parameter_index:) ⇒ ::String
Create a fully-qualified AdParameter resource string.
The resource will be in the following format:
‘customers/customer_id/adParameters/ad_group_id~criterion_id~parameter_index`
60 61 62 63 64 65 66 |
# File 'lib/google/ads/google_ads/v17/services/ad_parameter_service/paths.rb', line 60 def ad_parameter_path customer_id:, ad_group_id:, criterion_id:, parameter_index: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" raise ::ArgumentError, "ad_group_id cannot contain /" if ad_group_id.to_s.include? "/" raise ::ArgumentError, "criterion_id cannot contain /" if criterion_id.to_s.include? "/" "customers/#{customer_id}/adParameters/#{ad_group_id}~#{criterion_id}~#{parameter_index}" end |