feed_item_set_service.proto 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.v12.services;
  16. import "google/ads/googleads/v12/resources/feed_item_set.proto";
  17. import "google/api/annotations.proto";
  18. import "google/api/client.proto";
  19. import "google/api/field_behavior.proto";
  20. import "google/api/resource.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/rpc/status.proto";
  23. option csharp_namespace = "Google.Ads.GoogleAds.V12.Services";
  24. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/services;services";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "FeedItemSetServiceProto";
  27. option java_package = "com.google.ads.googleads.v12.services";
  28. option objc_class_prefix = "GAA";
  29. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Services";
  30. option ruby_package = "Google::Ads::GoogleAds::V12::Services";
  31. // Proto file describing the FeedItemSet service.
  32. // Service to manage feed Item Set
  33. service FeedItemSetService {
  34. option (google.api.default_host) = "googleads.googleapis.com";
  35. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  36. // Creates, updates or removes feed item sets. Operation statuses are
  37. // returned.
  38. //
  39. // List of thrown errors:
  40. // [AuthenticationError]()
  41. // [AuthorizationError]()
  42. // [HeaderError]()
  43. // [InternalError]()
  44. // [MutateError]()
  45. // [QuotaError]()
  46. // [RequestError]()
  47. rpc MutateFeedItemSets(MutateFeedItemSetsRequest) returns (MutateFeedItemSetsResponse) {
  48. option (google.api.http) = {
  49. post: "/v12/customers/{customer_id=*}/feedItemSets:mutate"
  50. body: "*"
  51. };
  52. option (google.api.method_signature) = "customer_id,operations";
  53. }
  54. }
  55. // Request message for [FeedItemSetService.MutateFeedItemSets][google.ads.googleads.v12.services.FeedItemSetService.MutateFeedItemSets].
  56. message MutateFeedItemSetsRequest {
  57. // Required. The ID of the customer whose feed item sets are being modified.
  58. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  59. // Required. The list of operations to perform on individual feed item sets.
  60. repeated FeedItemSetOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  61. // If true, successful operations will be carried out and invalid
  62. // operations will return errors. If false, all operations will be carried
  63. // out in one transaction if and only if they are all valid.
  64. // Default is false.
  65. bool partial_failure = 3;
  66. // If true, the request is validated but not executed. Only errors are
  67. // returned, not results.
  68. bool validate_only = 4;
  69. }
  70. // A single operation (create, remove) on an feed item set.
  71. message FeedItemSetOperation {
  72. // FieldMask that determines which resource fields are modified in an update.
  73. google.protobuf.FieldMask update_mask = 4;
  74. // The mutate operation.
  75. oneof operation {
  76. // Create operation: No resource name is expected for the new feed item set
  77. google.ads.googleads.v12.resources.FeedItemSet create = 1;
  78. // Update operation: The feed item set is expected to have a valid resource
  79. // name.
  80. google.ads.googleads.v12.resources.FeedItemSet update = 2;
  81. // Remove operation: A resource name for the removed feed item is
  82. // expected, in this format:
  83. // `customers/{customer_id}/feedItems/{feed_id}~{feed_item_set_id}`
  84. string remove = 3 [(google.api.resource_reference) = {
  85. type: "googleads.googleapis.com/FeedItemSet"
  86. }];
  87. }
  88. }
  89. // Response message for an feed item set mutate.
  90. message MutateFeedItemSetsResponse {
  91. // All results for the mutate.
  92. repeated MutateFeedItemSetResult results = 1;
  93. // Errors that pertain to operation failures in the partial failure mode.
  94. // Returned only when partial_failure = true and all errors occur inside the
  95. // operations. If any errors occur outside the operations (for example, auth
  96. // errors), we return an RPC level error.
  97. google.rpc.Status partial_failure_error = 2;
  98. }
  99. // The result for the feed item set mutate.
  100. message MutateFeedItemSetResult {
  101. // Returned for successful operations.
  102. string resource_name = 1 [(google.api.resource_reference) = {
  103. type: "googleads.googleapis.com/FeedItemSet"
  104. }];
  105. }