campaign_extension_setting_service.proto 6.3 KB

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