feed_service.proto 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. // Copyright 2021 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.v7.services;
  16. import "google/ads/googleads/v7/enums/response_content_type.proto";
  17. import "google/ads/googleads/v7/resources/feed.proto";
  18. import "google/api/annotations.proto";
  19. import "google/api/client.proto";
  20. import "google/api/field_behavior.proto";
  21. import "google/api/resource.proto";
  22. import "google/protobuf/field_mask.proto";
  23. import "google/rpc/status.proto";
  24. option csharp_namespace = "Google.Ads.GoogleAds.V7.Services";
  25. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v7/services;services";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "FeedServiceProto";
  28. option java_package = "com.google.ads.googleads.v7.services";
  29. option objc_class_prefix = "GAA";
  30. option php_namespace = "Google\\Ads\\GoogleAds\\V7\\Services";
  31. option ruby_package = "Google::Ads::GoogleAds::V7::Services";
  32. // Proto file describing the Feed service.
  33. // Service to manage feeds.
  34. service FeedService {
  35. option (google.api.default_host) = "googleads.googleapis.com";
  36. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  37. // Returns the requested feed in full detail.
  38. //
  39. // List of thrown errors:
  40. // [AuthenticationError]()
  41. // [AuthorizationError]()
  42. // [HeaderError]()
  43. // [InternalError]()
  44. // [QuotaError]()
  45. // [RequestError]()
  46. rpc GetFeed(GetFeedRequest) returns (google.ads.googleads.v7.resources.Feed) {
  47. option (google.api.http) = {
  48. get: "/v7/{resource_name=customers/*/feeds/*}"
  49. };
  50. option (google.api.method_signature) = "resource_name";
  51. }
  52. // Creates, updates, or removes feeds. Operation statuses are
  53. // returned.
  54. //
  55. // List of thrown errors:
  56. // [AuthenticationError]()
  57. // [AuthorizationError]()
  58. // [CollectionSizeError]()
  59. // [DatabaseError]()
  60. // [DistinctError]()
  61. // [FeedError]()
  62. // [FieldError]()
  63. // [FieldMaskError]()
  64. // [HeaderError]()
  65. // [IdError]()
  66. // [InternalError]()
  67. // [ListOperationError]()
  68. // [MutateError]()
  69. // [NewResourceCreationError]()
  70. // [NotEmptyError]()
  71. // [NullError]()
  72. // [OperatorError]()
  73. // [QuotaError]()
  74. // [RangeError]()
  75. // [RequestError]()
  76. // [ResourceCountLimitExceededError]()
  77. // [SizeLimitError]()
  78. // [StringFormatError]()
  79. // [StringLengthError]()
  80. rpc MutateFeeds(MutateFeedsRequest) returns (MutateFeedsResponse) {
  81. option (google.api.http) = {
  82. post: "/v7/customers/{customer_id=*}/feeds:mutate"
  83. body: "*"
  84. };
  85. option (google.api.method_signature) = "customer_id,operations";
  86. }
  87. }
  88. // Request message for [FeedService.GetFeed][google.ads.googleads.v7.services.FeedService.GetFeed].
  89. message GetFeedRequest {
  90. // Required. The resource name of the feed to fetch.
  91. string resource_name = 1 [
  92. (google.api.field_behavior) = REQUIRED,
  93. (google.api.resource_reference) = {
  94. type: "googleads.googleapis.com/Feed"
  95. }
  96. ];
  97. }
  98. // Request message for [FeedService.MutateFeeds][google.ads.googleads.v7.services.FeedService.MutateFeeds].
  99. message MutateFeedsRequest {
  100. // Required. The ID of the customer whose feeds are being modified.
  101. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  102. // Required. The list of operations to perform on individual feeds.
  103. repeated FeedOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  104. // If true, successful operations will be carried out and invalid
  105. // operations will return errors. If false, all operations will be carried
  106. // out in one transaction if and only if they are all valid.
  107. // Default is false.
  108. bool partial_failure = 3;
  109. // If true, the request is validated but not executed. Only errors are
  110. // returned, not results.
  111. bool validate_only = 4;
  112. // The response content type setting. Determines whether the mutable resource
  113. // or just the resource name should be returned post mutation.
  114. google.ads.googleads.v7.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  115. }
  116. // A single operation (create, update, remove) on an feed.
  117. message FeedOperation {
  118. // FieldMask that determines which resource fields are modified in an update.
  119. google.protobuf.FieldMask update_mask = 4;
  120. // The mutate operation.
  121. oneof operation {
  122. // Create operation: No resource name is expected for the new feed.
  123. google.ads.googleads.v7.resources.Feed create = 1;
  124. // Update operation: The feed is expected to have a valid resource
  125. // name.
  126. google.ads.googleads.v7.resources.Feed update = 2;
  127. // Remove operation: A resource name for the removed feed is
  128. // expected, in this format:
  129. //
  130. // `customers/{customer_id}/feeds/{feed_id}`
  131. string remove = 3;
  132. }
  133. }
  134. // Response message for an feed mutate.
  135. message MutateFeedsResponse {
  136. // Errors that pertain to operation failures in the partial failure mode.
  137. // Returned only when partial_failure = true and all errors occur inside the
  138. // operations. If any errors occur outside the operations (e.g. auth errors),
  139. // we return an RPC level error.
  140. google.rpc.Status partial_failure_error = 3;
  141. // All results for the mutate.
  142. repeated MutateFeedResult results = 2;
  143. }
  144. // The result for the feed mutate.
  145. message MutateFeedResult {
  146. // Returned for successful operations.
  147. string resource_name = 1;
  148. // The mutated feed with only mutable fields after mutate. The field will only
  149. // be returned when response_content_type is set to "MUTABLE_RESOURCE".
  150. google.ads.googleads.v7.resources.Feed feed = 2;
  151. }