media_file_service.proto 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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/media_file.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/rpc/status.proto";
  23. option csharp_namespace = "Google.Ads.GoogleAds.V11.Services";
  24. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/services;services";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "MediaFileServiceProto";
  27. option java_package = "com.google.ads.googleads.v11.services";
  28. option objc_class_prefix = "GAA";
  29. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Services";
  30. option ruby_package = "Google::Ads::GoogleAds::V11::Services";
  31. // Proto file describing the Media File service.
  32. // Service to manage media files.
  33. service MediaFileService {
  34. option (google.api.default_host) = "googleads.googleapis.com";
  35. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
  36. // Creates media files. Operation statuses are returned.
  37. //
  38. // List of thrown errors:
  39. // [AuthenticationError]()
  40. // [AuthorizationError]()
  41. // [DatabaseError]()
  42. // [DistinctError]()
  43. // [FieldError]()
  44. // [HeaderError]()
  45. // [IdError]()
  46. // [ImageError]()
  47. // [InternalError]()
  48. // [MediaBundleError]()
  49. // [MediaFileError]()
  50. // [NewResourceCreationError]()
  51. // [NotEmptyError]()
  52. // [NullError]()
  53. // [OperatorError]()
  54. // [QuotaError]()
  55. // [RangeError]()
  56. // [RequestError]()
  57. // [SizeLimitError]()
  58. // [StringFormatError]()
  59. // [StringLengthError]()
  60. rpc MutateMediaFiles(MutateMediaFilesRequest) returns (MutateMediaFilesResponse) {
  61. option (google.api.http) = {
  62. post: "/v11/customers/{customer_id=*}/mediaFiles:mutate"
  63. body: "*"
  64. };
  65. option (google.api.method_signature) = "customer_id,operations";
  66. }
  67. }
  68. // Request message for [MediaFileService.MutateMediaFiles][google.ads.googleads.v11.services.MediaFileService.MutateMediaFiles]
  69. message MutateMediaFilesRequest {
  70. // Required. The ID of the customer whose media files are being modified.
  71. string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
  72. // Required. The list of operations to perform on individual media file.
  73. repeated MediaFileOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
  74. // If true, successful operations will be carried out and invalid
  75. // operations will return errors. If false, all operations will be carried
  76. // out in one transaction if and only if they are all valid.
  77. // Default is false.
  78. bool partial_failure = 3;
  79. // If true, the request is validated but not executed. Only errors are
  80. // returned, not results.
  81. bool validate_only = 4;
  82. // The response content type setting. Determines whether the mutable resource
  83. // or just the resource name should be returned post mutation.
  84. google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5;
  85. }
  86. // A single operation to create media file.
  87. message MediaFileOperation {
  88. // The mutate operation.
  89. oneof operation {
  90. // Create operation: No resource name is expected for the new media file.
  91. google.ads.googleads.v11.resources.MediaFile create = 1;
  92. }
  93. }
  94. // Response message for a media file mutate.
  95. message MutateMediaFilesResponse {
  96. // Errors that pertain to operation failures in the partial failure mode.
  97. // Returned only when partial_failure = true and all errors occur inside the
  98. // operations. If any errors occur outside the operations (for example, auth
  99. // errors), we return an RPC level error.
  100. google.rpc.Status partial_failure_error = 3;
  101. // All results for the mutate.
  102. repeated MutateMediaFileResult results = 2;
  103. }
  104. // The result for the media file mutate.
  105. message MutateMediaFileResult {
  106. // The resource name returned for successful operations.
  107. string resource_name = 1 [(google.api.resource_reference) = {
  108. type: "googleads.googleapis.com/MediaFile"
  109. }];
  110. // The mutated media file with only mutable fields after mutate. The field
  111. // will only be returned when response_content_type is set to
  112. // "MUTABLE_RESOURCE".
  113. google.ads.googleads.v11.resources.MediaFile media_file = 2;
  114. }