module Google::Ads::GoogleAds::V8::Services::AdGroupAdAssetViewService::Paths
Path helper methods for the AdGroupAdAssetViewService
API.
Public Instance Methods
Create a fully-qualified AdGroupAdAssetView resource string.
The resource will be in the following format:
`customers/{customer_id}/adGroupAdAssetViews/{ad_group_id}~{ad_id}~{asset_id}~{field_type}`
@param customer_id [String] @param ad_group_id [String] @param ad_id [String] @param asset_id [String] @param field_type [String]
@return [::String]
# File lib/google/ads/google_ads/v8/services/ad_group_ad_asset_view_service/paths.rb, line 61 def ad_group_ad_asset_view_path customer_id:, ad_group_id:, ad_id:, asset_id:, field_type: 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, "ad_id cannot contain /" if ad_id.to_s.include? "/" raise ::ArgumentError, "asset_id cannot contain /" if asset_id.to_s.include? "/" "customers/#{customer_id}/adGroupAdAssetViews/#{ad_group_id}~#{ad_id}~#{asset_id}~#{field_type}" end
Create a fully-qualified AdGroupAd resource string.
The resource will be in the following format:
`customers/{customer_id}/adGroupAds/{ad_group_id}~{ad_id}`
@param customer_id [String] @param ad_group_id [String] @param ad_id [String]
@return [::String]
# File lib/google/ads/google_ads/v8/services/ad_group_ad_asset_view_service/paths.rb, line 40 def ad_group_ad_path customer_id:, ad_group_id:, ad_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}/adGroupAds/#{ad_group_id}~#{ad_id}" end
Create a fully-qualified Asset resource string.
The resource will be in the following format:
`customers/{customer_id}/assets/{asset_id}`
@param customer_id [String] @param asset_id [String]
@return [::String]
# File lib/google/ads/google_ads/v8/services/ad_group_ad_asset_view_service/paths.rb, line 81 def asset_path customer_id:, asset_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" "customers/#{customer_id}/assets/#{asset_id}" end