Module: Google::Ads::GoogleAds::V15::Services::CampaignService::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/ads/google_ads/v15/services/campaign_service/paths.rb
Overview
Path helper methods for the CampaignService API.
Instance Method Summary collapse
-
#accessible_bidding_strategy_path(customer_id:, bidding_strategy_id:) ⇒ ::String
Create a fully-qualified AccessibleBiddingStrategy resource string.
-
#asset_set_path(customer_id:, asset_set_id:) ⇒ ::String
Create a fully-qualified AssetSet resource string.
-
#bidding_strategy_path(customer_id:, bidding_strategy_id:) ⇒ ::String
Create a fully-qualified BiddingStrategy resource string.
-
#campaign_budget_path(customer_id:, campaign_budget_id:) ⇒ ::String
Create a fully-qualified CampaignBudget resource string.
-
#campaign_group_path(customer_id:, campaign_group_id:) ⇒ ::String
Create a fully-qualified CampaignGroup resource string.
-
#campaign_label_path(customer_id:, campaign_id:, label_id:) ⇒ ::String
Create a fully-qualified CampaignLabel resource string.
-
#campaign_path(customer_id:, campaign_id:) ⇒ ::String
Create a fully-qualified Campaign resource string.
-
#conversion_action_path(customer_id:, conversion_action_id:) ⇒ ::String
Create a fully-qualified ConversionAction resource string.
-
#feed_path(customer_id:, feed_id:) ⇒ ::String
Create a fully-qualified Feed resource string.
Instance Method Details
#accessible_bidding_strategy_path(customer_id:, bidding_strategy_id:) ⇒ ::String
Create a fully-qualified AccessibleBiddingStrategy resource string.
The resource will be in the following format:
‘customers/customer_id/accessibleBiddingStrategies/bidding_strategy_id`
39 40 41 42 43 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 39 def accessible_bidding_strategy_path customer_id:, bidding_strategy_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/accessibleBiddingStrategies/#{bidding_strategy_id}" end |
#asset_set_path(customer_id:, asset_set_id:) ⇒ ::String
Create a fully-qualified AssetSet resource string.
The resource will be in the following format:
‘customers/customer_id/assetSets/asset_set_id`
56 57 58 59 60 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 56 def asset_set_path customer_id:, asset_set_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/assetSets/#{asset_set_id}" end |
#bidding_strategy_path(customer_id:, bidding_strategy_id:) ⇒ ::String
Create a fully-qualified BiddingStrategy resource string.
The resource will be in the following format:
‘customers/customer_id/biddingStrategies/bidding_strategy_id`
73 74 75 76 77 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 73 def bidding_strategy_path customer_id:, bidding_strategy_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/biddingStrategies/#{bidding_strategy_id}" end |
#campaign_budget_path(customer_id:, campaign_budget_id:) ⇒ ::String
Create a fully-qualified CampaignBudget resource string.
The resource will be in the following format:
‘customers/customer_id/campaignBudgets/campaign_budget_id`
107 108 109 110 111 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 107 def campaign_budget_path customer_id:, campaign_budget_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/campaignBudgets/#{campaign_budget_id}" end |
#campaign_group_path(customer_id:, campaign_group_id:) ⇒ ::String
Create a fully-qualified CampaignGroup resource string.
The resource will be in the following format:
‘customers/customer_id/campaignGroups/campaign_group_id`
124 125 126 127 128 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 124 def campaign_group_path customer_id:, campaign_group_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/campaignGroups/#{campaign_group_id}" end |
#campaign_label_path(customer_id:, campaign_id:, label_id:) ⇒ ::String
Create a fully-qualified CampaignLabel resource string.
The resource will be in the following format:
‘customers/customer_id/campaignLabels/campaign_id~label_id`
142 143 144 145 146 147 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 142 def campaign_label_path customer_id:, campaign_id:, label_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" raise ::ArgumentError, "campaign_id cannot contain /" if campaign_id.to_s.include? "/" "customers/#{customer_id}/campaignLabels/#{campaign_id}~#{label_id}" end |
#campaign_path(customer_id:, campaign_id:) ⇒ ::String
Create a fully-qualified Campaign resource string.
The resource will be in the following format:
‘customers/customer_id/campaigns/campaign_id`
90 91 92 93 94 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 90 def campaign_path customer_id:, campaign_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/campaigns/#{campaign_id}" end |
#conversion_action_path(customer_id:, conversion_action_id:) ⇒ ::String
Create a fully-qualified ConversionAction resource string.
The resource will be in the following format:
‘customers/customer_id/conversionActions/conversion_action_id`
160 161 162 163 164 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 160 def conversion_action_path customer_id:, conversion_action_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/conversionActions/#{conversion_action_id}" end |
#feed_path(customer_id:, feed_id:) ⇒ ::String
Create a fully-qualified Feed resource string.
The resource will be in the following format:
‘customers/customer_id/feeds/feed_id`
177 178 179 180 181 |
# File 'lib/google/ads/google_ads/v15/services/campaign_service/paths.rb', line 177 def feed_path customer_id:, feed_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/feeds/#{feed_id}" end |