ad_group_label_service.proto 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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/ad_group_label.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/rpc/status.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 = "AdGroupLabelServiceProto";
  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 Ad Group Label service.
  31. // Service to manage labels on ad groups.
  32. service AdGroupLabelService {
  33. option (google.api.default_host) = "googleads.googleapis.com";
  34. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  35. // Creates and removes ad group labels.
  36. // Operation statuses are returned.
  37. //
  38. // List of thrown errors:
  39. // [AuthenticationError]()
  40. // [AuthorizationError]()
  41. // [DatabaseError]()
  42. // [FieldError]()
  43. // [HeaderError]()
  44. // [InternalError]()
  45. // [LabelError]()
  46. // [MutateError]()
  47. // [NewResourceCreationError]()
  48. // [QuotaError]()
  49. // [RequestError]()
  50. rpc MutateAdGroupLabels(MutateAdGroupLabelsRequest) returns (MutateAdGroupLabelsResponse) {
  51. option (google.api.http) = {
  52. post: "/v11/customers/{customer_id=*}/adGroupLabels:mutate"
  53. body: "*"
  54. };
  55. option (google.api.method_signature) = "customer_id,operations";
  56. }
  57. }
  58. // Request message for [AdGroupLabelService.MutateAdGroupLabels][google.ads.googleads.v11.services.AdGroupLabelService.MutateAdGroupLabels].
  59. message MutateAdGroupLabelsRequest {
  60. // Required. ID of the customer whose ad group labels are being modified.
  61. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  62. // Required. The list of operations to perform on ad group labels.
  63. repeated AdGroupLabelOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  64. // If true, successful operations will be carried out and invalid
  65. // operations will return errors. If false, all operations will be carried
  66. // out in one transaction if and only if they are all valid.
  67. // Default is false.
  68. bool partial_failure = 3;
  69. // If true, the request is validated but not executed. Only errors are
  70. // returned, not results.
  71. bool validate_only = 4;
  72. }
  73. // A single operation (create, remove) on an ad group label.
  74. message AdGroupLabelOperation {
  75. // The mutate operation.
  76. oneof operation {
  77. // Create operation: No resource name is expected for the new ad group
  78. // label.
  79. google.ads.googleads.v11.resources.AdGroupLabel create = 1;
  80. // Remove operation: A resource name for the ad group label
  81. // being removed, in this format:
  82. //
  83. // `customers/{customer_id}/adGroupLabels/{ad_group_id}~{label_id}`
  84. string remove = 2 [(google.api.resource_reference) = {
  85. type: "googleads.googleapis.com/AdGroupLabel"
  86. }];
  87. }
  88. }
  89. // Response message for an ad group labels mutate.
  90. message MutateAdGroupLabelsResponse {
  91. // Errors that pertain to operation failures in the partial failure mode.
  92. // Returned only when partial_failure = true and all errors occur inside the
  93. // operations. If any errors occur outside the operations (for example, auth
  94. // errors), we return an RPC level error.
  95. google.rpc.Status partial_failure_error = 3;
  96. // All results for the mutate.
  97. repeated MutateAdGroupLabelResult results = 2;
  98. }
  99. // The result for an ad group label mutate.
  100. message MutateAdGroupLabelResult {
  101. // Returned for successful operations.
  102. string resource_name = 1 [(google.api.resource_reference) = {
  103. type: "googleads.googleapis.com/AdGroupLabel"
  104. }];
  105. }