label_service.proto 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // Copyright 2021 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.v6.services;
  16. import "google/ads/googleads/v6/enums/response_content_type.proto";
  17. import "google/ads/googleads/v6/resources/label.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.V6.Services";
  25. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v6/services;services";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "LabelServiceProto";
  28. option java_package = "com.google.ads.googleads.v6.services";
  29. option objc_class_prefix = "GAA";
  30. option php_namespace = "Google\\Ads\\GoogleAds\\V6\\Services";
  31. option ruby_package = "Google::Ads::GoogleAds::V6::Services";
  32. // Service to manage labels.
  33. service LabelService {
  34. option (google.api.default_host) = "googleads.googleapis.com";
  35. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  36. // Returns the requested label in full detail.
  37. rpc GetLabel(GetLabelRequest) returns (google.ads.googleads.v6.resources.Label) {
  38. option (google.api.http) = {
  39. get: "/v6/{resource_name=customers/*/labels/*}"
  40. };
  41. option (google.api.method_signature) = "resource_name";
  42. }
  43. // Creates, updates, or removes labels. Operation statuses are returned.
  44. rpc MutateLabels(MutateLabelsRequest) returns (MutateLabelsResponse) {
  45. option (google.api.http) = {
  46. post: "/v6/customers/{customer_id=*}/labels:mutate"
  47. body: "*"
  48. };
  49. option (google.api.method_signature) = "customer_id,operations";
  50. }
  51. }
  52. // Request message for [LabelService.GetLabel][google.ads.googleads.v6.services.LabelService.GetLabel].
  53. message GetLabelRequest {
  54. // Required. The resource name of the label to fetch.
  55. string resource_name = 1 [
  56. (google.api.field_behavior) = REQUIRED,
  57. (google.api.resource_reference) = {
  58. type: "googleads.googleapis.com/Label"
  59. }
  60. ];
  61. }
  62. // Request message for [LabelService.MutateLabels][google.ads.googleads.v6.services.LabelService.MutateLabels].
  63. message MutateLabelsRequest {
  64. // Required. ID of the customer whose labels are being modified.
  65. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  66. // Required. The list of operations to perform on labels.
  67. repeated LabelOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  68. // If true, successful operations will be carried out and invalid
  69. // operations will return errors. If false, all operations will be carried
  70. // out in one transaction if and only if they are all valid.
  71. // Default is false.
  72. bool partial_failure = 3;
  73. // If true, the request is validated but not executed. Only errors are
  74. // returned, not results.
  75. bool validate_only = 4;
  76. // The response content type setting. Determines whether the mutable resource
  77. // or just the resource name should be returned post mutation.
  78. google.ads.googleads.v6.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  79. }
  80. // A single operation (create, remove, update) on a label.
  81. message LabelOperation {
  82. // FieldMask that determines which resource fields are modified in an update.
  83. google.protobuf.FieldMask update_mask = 4;
  84. // The mutate operation.
  85. oneof operation {
  86. // Create operation: No resource name is expected for the new label.
  87. google.ads.googleads.v6.resources.Label create = 1;
  88. // Update operation: The label is expected to have a valid resource name.
  89. google.ads.googleads.v6.resources.Label update = 2;
  90. // Remove operation: A resource name for the label being removed, in
  91. // this format:
  92. //
  93. // `customers/{customer_id}/labels/{label_id}`
  94. string remove = 3;
  95. }
  96. }
  97. // Response message for a labels mutate.
  98. message MutateLabelsResponse {
  99. // Errors that pertain to operation failures in the partial failure mode.
  100. // Returned only when partial_failure = true and all errors occur inside the
  101. // operations. If any errors occur outside the operations (e.g. auth errors),
  102. // we return an RPC level error.
  103. google.rpc.Status partial_failure_error = 3;
  104. // All results for the mutate.
  105. repeated MutateLabelResult results = 2;
  106. }
  107. // The result for a label mutate.
  108. message MutateLabelResult {
  109. // Returned for successful operations.
  110. string resource_name = 1;
  111. // The mutated label with only mutable fields after mutate. The field will
  112. // only be returned when response_content_type is set to "MUTABLE_RESOURCE".
  113. google.ads.googleads.v6.resources.Label label = 2;
  114. }