custom_audience_service.proto 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.v11.services;
  16. import "google/ads/googleads/v11/resources/custom_audience.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. option csharp_namespace = "Google.Ads.GoogleAds.V11.Services";
  23. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/services;services";
  24. option java_multiple_files = true;
  25. option java_outer_classname = "CustomAudienceServiceProto";
  26. option java_package = "com.google.ads.googleads.v11.services";
  27. option objc_class_prefix = "GAA";
  28. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Services";
  29. option ruby_package = "Google::Ads::GoogleAds::V11::Services";
  30. // Proto file describing the Custom Audience service.
  31. // Service to manage custom audiences.
  32. service CustomAudienceService {
  33. option (google.api.default_host) = "googleads.googleapis.com";
  34. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  35. // Creates or updates custom audiences. Operation statuses are returned.
  36. //
  37. // List of thrown errors:
  38. // [AuthenticationError]()
  39. // [AuthorizationError]()
  40. // [CustomAudienceError]()
  41. // [CustomInterestError]()
  42. // [FieldError]()
  43. // [FieldMaskError]()
  44. // [HeaderError]()
  45. // [InternalError]()
  46. // [MutateError]()
  47. // [OperationAccessDeniedError]()
  48. // [PolicyViolationError]()
  49. // [QuotaError]()
  50. // [RequestError]()
  51. rpc MutateCustomAudiences(MutateCustomAudiencesRequest) returns (MutateCustomAudiencesResponse) {
  52. option (google.api.http) = {
  53. post: "/v11/customers/{customer_id=*}/customAudiences:mutate"
  54. body: "*"
  55. };
  56. option (google.api.method_signature) = "customer_id,operations";
  57. }
  58. }
  59. // Request message for [CustomAudienceService.MutateCustomAudiences][google.ads.googleads.v11.services.CustomAudienceService.MutateCustomAudiences].
  60. message MutateCustomAudiencesRequest {
  61. // Required. The ID of the customer whose custom audiences are being modified.
  62. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  63. // Required. The list of operations to perform on individual custom audiences.
  64. repeated CustomAudienceOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  65. // If true, the request is validated but not executed. Only errors are
  66. // returned, not results.
  67. bool validate_only = 3;
  68. }
  69. // A single operation (create, update) on a custom audience.
  70. message CustomAudienceOperation {
  71. // FieldMask that determines which resource fields are modified in an update.
  72. google.protobuf.FieldMask update_mask = 4;
  73. // The mutate operation.
  74. oneof operation {
  75. // Create operation: No resource name is expected for the new custom
  76. // audience.
  77. google.ads.googleads.v11.resources.CustomAudience create = 1;
  78. // Update operation: The custom audience is expected to have a valid
  79. // resource name.
  80. google.ads.googleads.v11.resources.CustomAudience update = 2;
  81. // Remove operation: A resource name for the removed custom audience is
  82. // expected, in this format:
  83. //
  84. // `customers/{customer_id}/customAudiences/{custom_audience_id}`
  85. string remove = 3 [(google.api.resource_reference) = {
  86. type: "googleads.googleapis.com/CustomAudience"
  87. }];
  88. }
  89. }
  90. // Response message for custom audience mutate.
  91. message MutateCustomAudiencesResponse {
  92. // All results for the mutate.
  93. repeated MutateCustomAudienceResult results = 1;
  94. }
  95. // The result for the custom audience mutate.
  96. message MutateCustomAudienceResult {
  97. // Returned for successful operations.
  98. string resource_name = 1 [(google.api.resource_reference) = {
  99. type: "googleads.googleapis.com/CustomAudience"
  100. }];
  101. }