conversion_action_service.proto 5.8 KB

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