asset_set_service.proto 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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/asset_set.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 = "AssetSetServiceProto";
  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 AssetSet service.
  33. // Service to manage asset set
  34. service AssetSetService {
  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 asset sets. Operation statuses are
  38. // returned.
  39. rpc MutateAssetSets(MutateAssetSetsRequest) returns (MutateAssetSetsResponse) {
  40. option (google.api.http) = {
  41. post: "/v11/customers/{customer_id=*}/assetSets:mutate"
  42. body: "*"
  43. };
  44. option (google.api.method_signature) = "customer_id,operations";
  45. }
  46. }
  47. // Request message for [AssetSetService.MutateAssetSets][google.ads.googleads.v11.services.AssetSetService.MutateAssetSets].
  48. message MutateAssetSetsRequest {
  49. // Required. The ID of the customer whose asset sets are being modified.
  50. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  51. // Required. The list of operations to perform on individual asset sets.
  52. repeated AssetSetOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  53. // If true, successful operations will be carried out and invalid
  54. // operations will return errors. If false, all operations will be carried
  55. // out in one transaction if and only if they are all valid.
  56. // Default is false.
  57. bool partial_failure = 3;
  58. // If true, the request is validated but not executed. Only errors are
  59. // returned, not results.
  60. bool validate_only = 4;
  61. // The response content type setting. Determines whether the mutable resource
  62. // or just the resource name should be returned post mutation.
  63. google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  64. }
  65. // A single operation (create, remove) on an asset set.
  66. message AssetSetOperation {
  67. // FieldMask that determines which resource fields are modified in an update.
  68. google.protobuf.FieldMask update_mask = 4;
  69. // The mutate operation.
  70. oneof operation {
  71. // Create operation: No resource name is expected for the new asset set
  72. google.ads.googleads.v11.resources.AssetSet create = 1;
  73. // Update operation: The asset set is expected to have a valid resource
  74. // name.
  75. google.ads.googleads.v11.resources.AssetSet update = 2;
  76. // Remove operation: A resource name for the removed asset set is
  77. // expected, in this format:
  78. // `customers/{customer_id}/assetSets/{asset_set_id}`
  79. string remove = 3 [(google.api.resource_reference) = {
  80. type: "googleads.googleapis.com/AssetSet"
  81. }];
  82. }
  83. }
  84. // Response message for an asset set mutate.
  85. message MutateAssetSetsResponse {
  86. // All results for the mutate.
  87. repeated MutateAssetSetResult results = 1;
  88. // Errors that pertain to operation failures in the partial failure mode.
  89. // Returned only when partial_failure = true and all errors occur inside the
  90. // operations. If any errors occur outside the operations (for example, auth
  91. // errors), we return an RPC level error.
  92. google.rpc.Status partial_failure_error = 2;
  93. }
  94. // The result for the asset set mutate.
  95. message MutateAssetSetResult {
  96. // Returned for successful operations.
  97. string resource_name = 1 [(google.api.resource_reference) = {
  98. type: "googleads.googleapis.com/AssetSet"
  99. }];
  100. // The mutated asset set with only mutable fields after mutate. The field will
  101. // only be returned when response_content_type is set to "MUTABLE_RESOURCE".
  102. google.ads.googleads.v11.resources.AssetSet asset_set = 2;
  103. }