shared_set_service.proto 5.6 KB

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