shared_criterion_service.proto 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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/enums/response_content_type.proto";
  17. import "google/ads/googleads/v11/resources/shared_criterion.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/rpc/status.proto";
  23. option csharp_namespace = "Google.Ads.GoogleAds.V11.Services";
  24. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/services;services";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "SharedCriterionServiceProto";
  27. option java_package = "com.google.ads.googleads.v11.services";
  28. option objc_class_prefix = "GAA";
  29. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Services";
  30. option ruby_package = "Google::Ads::GoogleAds::V11::Services";
  31. // Proto file describing the Shared Criterion service.
  32. // Service to manage shared criteria.
  33. service SharedCriterionService {
  34. option (google.api.default_host) = "googleads.googleapis.com";
  35. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  36. // Creates or removes shared criteria. Operation statuses are returned.
  37. //
  38. // List of thrown errors:
  39. // [AuthenticationError]()
  40. // [AuthorizationError]()
  41. // [CriterionError]()
  42. // [DatabaseError]()
  43. // [DistinctError]()
  44. // [FieldError]()
  45. // [HeaderError]()
  46. // [IdError]()
  47. // [InternalError]()
  48. // [MutateError]()
  49. // [NotEmptyError]()
  50. // [NullError]()
  51. // [OperatorError]()
  52. // [QuotaError]()
  53. // [RangeError]()
  54. // [RequestError]()
  55. // [ResourceCountLimitExceededError]()
  56. // [SizeLimitError]()
  57. // [StringFormatError]()
  58. // [StringLengthError]()
  59. rpc MutateSharedCriteria(MutateSharedCriteriaRequest) returns (MutateSharedCriteriaResponse) {
  60. option (google.api.http) = {
  61. post: "/v11/customers/{customer_id=*}/sharedCriteria:mutate"
  62. body: "*"
  63. };
  64. option (google.api.method_signature) = "customer_id,operations";
  65. }
  66. }
  67. // Request message for [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v11.services.SharedCriterionService.MutateSharedCriteria].
  68. message MutateSharedCriteriaRequest {
  69. // Required. The ID of the customer whose shared criteria are being modified.
  70. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  71. // Required. The list of operations to perform on individual shared criteria.
  72. repeated SharedCriterionOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  73. // If true, successful operations will be carried out and invalid
  74. // operations will return errors. If false, all operations will be carried
  75. // out in one transaction if and only if they are all valid.
  76. // Default is false.
  77. bool partial_failure = 3;
  78. // If true, the request is validated but not executed. Only errors are
  79. // returned, not results.
  80. bool validate_only = 4;
  81. // The response content type setting. Determines whether the mutable resource
  82. // or just the resource name should be returned post mutation.
  83. google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  84. }
  85. // A single operation (create, remove) on an shared criterion.
  86. message SharedCriterionOperation {
  87. // The mutate operation.
  88. oneof operation {
  89. // Create operation: No resource name is expected for the new shared
  90. // criterion.
  91. google.ads.googleads.v11.resources.SharedCriterion create = 1;
  92. // Remove operation: A resource name for the removed shared criterion is
  93. // expected, in this format:
  94. //
  95. // `customers/{customer_id}/sharedCriteria/{shared_set_id}~{criterion_id}`
  96. string remove = 3 [(google.api.resource_reference) = {
  97. type: "googleads.googleapis.com/SharedCriterion"
  98. }];
  99. }
  100. }
  101. // Response message for a shared criterion mutate.
  102. message MutateSharedCriteriaResponse {
  103. // Errors that pertain to operation failures in the partial failure mode.
  104. // Returned only when partial_failure = true and all errors occur inside the
  105. // operations. If any errors occur outside the operations (for example, auth
  106. // errors), we return an RPC level error.
  107. google.rpc.Status partial_failure_error = 3;
  108. // All results for the mutate.
  109. repeated MutateSharedCriterionResult results = 2;
  110. }
  111. // The result for the shared criterion mutate.
  112. message MutateSharedCriterionResult {
  113. // Returned for successful operations.
  114. string resource_name = 1 [(google.api.resource_reference) = {
  115. type: "googleads.googleapis.com/SharedCriterion"
  116. }];
  117. // The mutated shared criterion with only mutable fields after mutate. The
  118. // field will only be returned when response_content_type is set to
  119. // "MUTABLE_RESOURCE".
  120. google.ads.googleads.v11.resources.SharedCriterion shared_criterion = 2;
  121. }