aboutsummaryrefslogtreecommitdiff
path: root/google/ads/googleads/v0/errors/request_error.proto
diff options
context:
space:
mode:
Diffstat (limited to 'google/ads/googleads/v0/errors/request_error.proto')
-rw-r--r--google/ads/googleads/v0/errors/request_error.proto74
1 files changed, 0 insertions, 74 deletions
diff --git a/google/ads/googleads/v0/errors/request_error.proto b/google/ads/googleads/v0/errors/request_error.proto
deleted file mode 100644
index a9abe5807..000000000
--- a/google/ads/googleads/v0/errors/request_error.proto
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright 2018 Google LLC
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-// implied. See the License for the specific language governing
-// permissions and limitations under the License.
-
-
-// Proto file describing request errors.
-syntax = "proto3";
-
-package google.ads.googleads.v0.errors;
-
-option java_package = "com.google.ads.googleads.v0.errors";
-option java_outer_classname = "RequestErrorProto";
-option java_multiple_files = true;
-
-// Objective-C prefix. Google Ads API.
-option objc_class_prefix = "GAA";
-option csharp_namespace = "Google.Ads.GoogleAds.V0.Errors";
-option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";
-option php_metadata_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";
-
-// Container for enum describing possible request errors.
-message RequestErrorEnum {
-
- // Enum describing possible request errors.
- enum RequestError {
- // Enum unspecified.
- UNSPECIFIED = 0;
- // The received error code is not known in this version.
- UNKNOWN = 1;
- // Resource name is required for this request.
- RESOURCE_NAME_MISSING = 3;
- // Resource name provided is malformed.
- RESOURCE_NAME_MALFORMED = 4;
- // Resource name provided is malformed.
- BAD_RESOURCE_ID = 17;
- // Customer ID is invalid.
- INVALID_CUSTOMER_ID = 16;
- // Mutate operation should have either create, update, or remove specified.
- OPERATION_REQUIRED = 5;
- // Requested resource not found.
- RESOURCE_NOT_FOUND = 6;
- // Next page token specified in user request is invalid.
- INVALID_PAGE_TOKEN = 7;
- // Next page token specified in user request has expired.
- EXPIRED_PAGE_TOKEN = 8;
- // Required field is missing.
- REQUIRED_FIELD_MISSING = 9;
- // The field cannot be modified because it's immutable. It's also possible
- // that the field can be modified using 'create' operation but not 'update'.
- IMMUTABLE_FIELD = 11;
- // Received too many entries in request.
- TOO_MANY_MUTATE_OPERATIONS = 13;
- // Request cannot be executed by a manager account.
- CANNOT_BE_EXECUTED_BY_MANAGER_ACCOUNT = 14;
- // Mutate request was attempting to modify a readonly field.
- // For instance, Budget fields can be requested for Ad Group,
- // but are read-only for adGroups:mutate.
- CANNOT_MODIFY_FOREIGN_FIELD = 15;
- // Enum value is not permitted.
- INVALID_ENUM_VALUE = 18;
- // The developer-token parameter is required for all requests.
- DEVELOPER_TOKEN_PARAMETER_MISSING = 19;
- }
-}