customer_asset_service.proto 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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/customer_asset.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 = "CustomerAssetServiceProto";
  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 CustomerAsset service.
  33. // Service to manage customer assets.
  34. service CustomerAssetService {
  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 customer assets. Operation statuses are
  38. // returned.
  39. //
  40. // List of thrown errors:
  41. // [AssetLinkError]()
  42. // [AuthenticationError]()
  43. // [AuthorizationError]()
  44. // [FieldError]()
  45. // [HeaderError]()
  46. // [InternalError]()
  47. // [MutateError]()
  48. // [QuotaError]()
  49. // [RequestError]()
  50. rpc MutateCustomerAssets(MutateCustomerAssetsRequest) returns (MutateCustomerAssetsResponse) {
  51. option (google.api.http) = {
  52. post: "/v12/customers/{customer_id=*}/customerAssets:mutate"
  53. body: "*"
  54. };
  55. option (google.api.method_signature) = "customer_id,operations";
  56. }
  57. }
  58. // Request message for [CustomerAssetService.MutateCustomerAssets][google.ads.googleads.v12.services.CustomerAssetService.MutateCustomerAssets].
  59. message MutateCustomerAssetsRequest {
  60. // Required. The ID of the customer whose customer assets are being modified.
  61. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  62. // Required. The list of operations to perform on individual customer assets.
  63. repeated CustomerAssetOperation 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. // The response content type setting. Determines whether the mutable resource
  73. // or just the resource name should be returned post mutation.
  74. google.ads.googleads.v12.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  75. }
  76. // A single operation (create, update, remove) on a customer asset.
  77. message CustomerAssetOperation {
  78. // FieldMask that determines which resource fields are modified in an update.
  79. google.protobuf.FieldMask update_mask = 4;
  80. // The mutate operation.
  81. oneof operation {
  82. // Create operation: No resource name is expected for the new customer
  83. // asset.
  84. google.ads.googleads.v12.resources.CustomerAsset create = 1;
  85. // Update operation: The customer asset is expected to have a valid resource
  86. // name.
  87. google.ads.googleads.v12.resources.CustomerAsset update = 3;
  88. // Remove operation: A resource name for the removed customer asset is
  89. // expected, in this format:
  90. //
  91. // `customers/{customer_id}/customerAssets/{asset_id}~{field_type}`
  92. string remove = 2 [(google.api.resource_reference) = {
  93. type: "googleads.googleapis.com/CustomerAsset"
  94. }];
  95. }
  96. }
  97. // Response message for a customer asset mutate.
  98. message MutateCustomerAssetsResponse {
  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 (for example, auth
  102. // errors), we return an RPC level error.
  103. google.rpc.Status partial_failure_error = 1;
  104. // All results for the mutate.
  105. repeated MutateCustomerAssetResult results = 2;
  106. }
  107. // The result for the customer asset mutate.
  108. message MutateCustomerAssetResult {
  109. // Returned for successful operations.
  110. string resource_name = 1 [(google.api.resource_reference) = {
  111. type: "googleads.googleapis.com/CustomerAsset"
  112. }];
  113. // The mutated customer asset with only mutable fields after
  114. // mutate. The field will only be returned when response_content_type is set
  115. // to "MUTABLE_RESOURCE".
  116. google.ads.googleads.v12.resources.CustomerAsset customer_asset = 2;
  117. }