Module: Google::Ads::GoogleAds::V13::Services::AssetSetAssetService::Paths
- Extended by:
- Paths
- Defined in:
- lib/google/ads/google_ads/v13/services/asset_set_asset_service/paths.rb
Overview
Path helper methods for the AssetSetAssetService API.
Instance Method Summary collapse
-
#asset_path(customer_id:, asset_id:) ⇒ ::String
Create a fully-qualified Asset resource string.
-
#asset_set_asset_path(customer_id:, asset_set_id:, asset_id:) ⇒ ::String
Create a fully-qualified AssetSetAsset resource string.
-
#asset_set_path(customer_id:, asset_set_id:) ⇒ ::String
Create a fully-qualified AssetSet resource string.
Instance Method Details
#asset_path(customer_id:, asset_id:) ⇒ ::String
Create a fully-qualified Asset resource string.
The resource will be in the following format:
‘customers/customer_id/assets/asset_id`
39 40 41 42 43 |
# File 'lib/google/ads/google_ads/v13/services/asset_set_asset_service/paths.rb', line 39 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 |
#asset_set_asset_path(customer_id:, asset_set_id:, asset_id:) ⇒ ::String
Create a fully-qualified AssetSetAsset resource string.
The resource will be in the following format:
‘customers/customer_id/assetSetAssets/asset_set_id~asset_id`
74 75 76 77 78 79 |
# File 'lib/google/ads/google_ads/v13/services/asset_set_asset_service/paths.rb', line 74 def asset_set_asset_path customer_id:, asset_set_id:, asset_id: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/" raise ::ArgumentError, "asset_set_id cannot contain /" if asset_set_id.to_s.include? "/" "customers/#{customer_id}/assetSetAssets/#{asset_set_id}~#{asset_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/v13/services/asset_set_asset_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 |