feed_mapping.proto 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.ads.googleads.v10.resources;
  16. import "google/ads/googleads/v10/enums/ad_customizer_placeholder_field.proto";
  17. import "google/ads/googleads/v10/enums/affiliate_location_placeholder_field.proto";
  18. import "google/ads/googleads/v10/enums/app_placeholder_field.proto";
  19. import "google/ads/googleads/v10/enums/call_placeholder_field.proto";
  20. import "google/ads/googleads/v10/enums/callout_placeholder_field.proto";
  21. import "google/ads/googleads/v10/enums/custom_placeholder_field.proto";
  22. import "google/ads/googleads/v10/enums/dsa_page_feed_criterion_field.proto";
  23. import "google/ads/googleads/v10/enums/education_placeholder_field.proto";
  24. import "google/ads/googleads/v10/enums/feed_mapping_criterion_type.proto";
  25. import "google/ads/googleads/v10/enums/feed_mapping_status.proto";
  26. import "google/ads/googleads/v10/enums/flight_placeholder_field.proto";
  27. import "google/ads/googleads/v10/enums/hotel_placeholder_field.proto";
  28. import "google/ads/googleads/v10/enums/image_placeholder_field.proto";
  29. import "google/ads/googleads/v10/enums/job_placeholder_field.proto";
  30. import "google/ads/googleads/v10/enums/local_placeholder_field.proto";
  31. import "google/ads/googleads/v10/enums/location_extension_targeting_criterion_field.proto";
  32. import "google/ads/googleads/v10/enums/location_placeholder_field.proto";
  33. import "google/ads/googleads/v10/enums/message_placeholder_field.proto";
  34. import "google/ads/googleads/v10/enums/placeholder_type.proto";
  35. import "google/ads/googleads/v10/enums/price_placeholder_field.proto";
  36. import "google/ads/googleads/v10/enums/promotion_placeholder_field.proto";
  37. import "google/ads/googleads/v10/enums/real_estate_placeholder_field.proto";
  38. import "google/ads/googleads/v10/enums/sitelink_placeholder_field.proto";
  39. import "google/ads/googleads/v10/enums/structured_snippet_placeholder_field.proto";
  40. import "google/ads/googleads/v10/enums/travel_placeholder_field.proto";
  41. import "google/api/field_behavior.proto";
  42. import "google/api/resource.proto";
  43. option csharp_namespace = "Google.Ads.GoogleAds.V10.Resources";
  44. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v10/resources;resources";
  45. option java_multiple_files = true;
  46. option java_outer_classname = "FeedMappingProto";
  47. option java_package = "com.google.ads.googleads.v10.resources";
  48. option objc_class_prefix = "GAA";
  49. option php_namespace = "Google\\Ads\\GoogleAds\\V10\\Resources";
  50. option ruby_package = "Google::Ads::GoogleAds::V10::Resources";
  51. // Proto file describing the FeedMapping resource.
  52. // A feed mapping.
  53. message FeedMapping {
  54. option (google.api.resource) = {
  55. type: "googleads.googleapis.com/FeedMapping"
  56. pattern: "customers/{customer_id}/feedMappings/{feed_id}~{feed_mapping_id}"
  57. };
  58. // Immutable. The resource name of the feed mapping.
  59. // Feed mapping resource names have the form:
  60. //
  61. // `customers/{customer_id}/feedMappings/{feed_id}~{feed_mapping_id}`
  62. string resource_name = 1 [
  63. (google.api.field_behavior) = IMMUTABLE,
  64. (google.api.resource_reference) = {
  65. type: "googleads.googleapis.com/FeedMapping"
  66. }
  67. ];
  68. // Immutable. The feed of this feed mapping.
  69. optional string feed = 7 [
  70. (google.api.field_behavior) = IMMUTABLE,
  71. (google.api.resource_reference) = {
  72. type: "googleads.googleapis.com/Feed"
  73. }
  74. ];
  75. // Immutable. Feed attributes to field mappings. These mappings are a one-to-many
  76. // relationship meaning that 1 feed attribute can be used to populate
  77. // multiple placeholder fields, but 1 placeholder field can only draw
  78. // data from 1 feed attribute. Ad Customizer is an exception, 1 placeholder
  79. // field can be mapped to multiple feed attributes. Required.
  80. repeated AttributeFieldMapping attribute_field_mappings = 5 [(google.api.field_behavior) = IMMUTABLE];
  81. // Output only. Status of the feed mapping.
  82. // This field is read-only.
  83. google.ads.googleads.v10.enums.FeedMappingStatusEnum.FeedMappingStatus status = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  84. // Feed mapping target. Can be either a placeholder or a criterion. For a
  85. // given feed, the active FeedMappings must have unique targets. Required.
  86. oneof target {
  87. // Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
  88. // attributes to placeholder fields).
  89. google.ads.googleads.v10.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(google.api.field_behavior) = IMMUTABLE];
  90. // Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
  91. // attributes to criterion fields).
  92. google.ads.googleads.v10.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType criterion_type = 4 [(google.api.field_behavior) = IMMUTABLE];
  93. }
  94. }
  95. // Maps from feed attribute id to a placeholder or criterion field id.
  96. message AttributeFieldMapping {
  97. // Immutable. Feed attribute from which to map.
  98. optional int64 feed_attribute_id = 24 [(google.api.field_behavior) = IMMUTABLE];
  99. // Output only. The placeholder field ID. If a placeholder field enum is not published in
  100. // the current API version, then this field will be populated and the field
  101. // oneof will be empty.
  102. // This field is read-only.
  103. optional int64 field_id = 25 [(google.api.field_behavior) = OUTPUT_ONLY];
  104. // Placeholder or criterion field to be populated using data from
  105. // the above feed attribute. Required.
  106. oneof field {
  107. // Immutable. Sitelink Placeholder Fields.
  108. google.ads.googleads.v10.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField sitelink_field = 3 [(google.api.field_behavior) = IMMUTABLE];
  109. // Immutable. Call Placeholder Fields.
  110. google.ads.googleads.v10.enums.CallPlaceholderFieldEnum.CallPlaceholderField call_field = 4 [(google.api.field_behavior) = IMMUTABLE];
  111. // Immutable. App Placeholder Fields.
  112. google.ads.googleads.v10.enums.AppPlaceholderFieldEnum.AppPlaceholderField app_field = 5 [(google.api.field_behavior) = IMMUTABLE];
  113. // Output only. Location Placeholder Fields. This field is read-only.
  114. google.ads.googleads.v10.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField location_field = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  115. // Output only. Affiliate Location Placeholder Fields. This field is read-only.
  116. google.ads.googleads.v10.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField affiliate_location_field = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  117. // Immutable. Callout Placeholder Fields.
  118. google.ads.googleads.v10.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField callout_field = 8 [(google.api.field_behavior) = IMMUTABLE];
  119. // Immutable. Structured Snippet Placeholder Fields.
  120. google.ads.googleads.v10.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField structured_snippet_field = 9 [(google.api.field_behavior) = IMMUTABLE];
  121. // Immutable. Message Placeholder Fields.
  122. google.ads.googleads.v10.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField message_field = 10 [(google.api.field_behavior) = IMMUTABLE];
  123. // Immutable. Price Placeholder Fields.
  124. google.ads.googleads.v10.enums.PricePlaceholderFieldEnum.PricePlaceholderField price_field = 11 [(google.api.field_behavior) = IMMUTABLE];
  125. // Immutable. Promotion Placeholder Fields.
  126. google.ads.googleads.v10.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField promotion_field = 12 [(google.api.field_behavior) = IMMUTABLE];
  127. // Immutable. Ad Customizer Placeholder Fields
  128. google.ads.googleads.v10.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField ad_customizer_field = 13 [(google.api.field_behavior) = IMMUTABLE];
  129. // Immutable. Dynamic Search Ad Page Feed Fields.
  130. google.ads.googleads.v10.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField dsa_page_feed_field = 14 [(google.api.field_behavior) = IMMUTABLE];
  131. // Immutable. Location Target Fields.
  132. google.ads.googleads.v10.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField location_extension_targeting_field = 15 [(google.api.field_behavior) = IMMUTABLE];
  133. // Immutable. Education Placeholder Fields
  134. google.ads.googleads.v10.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField education_field = 16 [(google.api.field_behavior) = IMMUTABLE];
  135. // Immutable. Flight Placeholder Fields
  136. google.ads.googleads.v10.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField flight_field = 17 [(google.api.field_behavior) = IMMUTABLE];
  137. // Immutable. Custom Placeholder Fields
  138. google.ads.googleads.v10.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField custom_field = 18 [(google.api.field_behavior) = IMMUTABLE];
  139. // Immutable. Hotel Placeholder Fields
  140. google.ads.googleads.v10.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField hotel_field = 19 [(google.api.field_behavior) = IMMUTABLE];
  141. // Immutable. Real Estate Placeholder Fields
  142. google.ads.googleads.v10.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField real_estate_field = 20 [(google.api.field_behavior) = IMMUTABLE];
  143. // Immutable. Travel Placeholder Fields
  144. google.ads.googleads.v10.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField travel_field = 21 [(google.api.field_behavior) = IMMUTABLE];
  145. // Immutable. Local Placeholder Fields
  146. google.ads.googleads.v10.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField local_field = 22 [(google.api.field_behavior) = IMMUTABLE];
  147. // Immutable. Job Placeholder Fields
  148. google.ads.googleads.v10.enums.JobPlaceholderFieldEnum.JobPlaceholderField job_field = 23 [(google.api.field_behavior) = IMMUTABLE];
  149. // Immutable. Image Placeholder Fields
  150. google.ads.googleads.v10.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField image_field = 26 [(google.api.field_behavior) = IMMUTABLE];
  151. }
  152. }