--- v16/errors/campaign_criterion_error.proto 2024-02-22 08:40:46.000000000 +0000 +++ v16-1/errors/campaign_criterion_error.proto 2024-04-18 15:49:00.000000000 +0000 @@ -1,128 +1,135 @@ // Copyright 2023 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. syntax = "proto3"; package google.ads.googleads.v16.errors; option csharp_namespace = "Google.Ads.GoogleAds.V16.Errors"; option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v16/errors;errors"; option java_multiple_files = true; option java_outer_classname = "CampaignCriterionErrorProto"; option java_package = "com.google.ads.googleads.v16.errors"; option objc_class_prefix = "GAA"; option php_namespace = "Google\\Ads\\GoogleAds\\V16\\Errors"; option ruby_package = "Google::Ads::GoogleAds::V16::Errors"; // Proto file describing campaign criterion errors. // Container for enum describing possible campaign criterion errors. message CampaignCriterionErrorEnum { // Enum describing possible campaign criterion errors. enum CampaignCriterionError { // Enum unspecified. UNSPECIFIED = 0; // The received error code is not known in this version. UNKNOWN = 1; // Concrete type of criterion (keyword v.s. placement) is required for // CREATE and UPDATE operations. CONCRETE_TYPE_REQUIRED = 2; // Invalid placement URL. INVALID_PLACEMENT_URL = 3; // Criteria type can not be excluded for the campaign by the customer. like // AOL account type cannot target site type criteria CANNOT_EXCLUDE_CRITERIA_TYPE = 4; // Cannot set the campaign criterion status for this criteria type. CANNOT_SET_STATUS_FOR_CRITERIA_TYPE = 5; // Cannot set the campaign criterion status for an excluded criteria. CANNOT_SET_STATUS_FOR_EXCLUDED_CRITERIA = 6; // Cannot target and exclude the same criterion. CANNOT_TARGET_AND_EXCLUDE = 7; // The mutate contained too many operations. TOO_MANY_OPERATIONS = 8; // This operator cannot be applied to a criterion of this type. OPERATOR_NOT_SUPPORTED_FOR_CRITERION_TYPE = 9; // The Shopping campaign sales country is not supported for // ProductSalesChannel targeting. SHOPPING_CAMPAIGN_SALES_COUNTRY_NOT_SUPPORTED_FOR_SALES_CHANNEL = 10; // The existing field can't be updated with CREATE operation. It can be // updated with UPDATE operation only. CANNOT_ADD_EXISTING_FIELD = 11; // Negative criteria are immutable, so updates are not allowed. CANNOT_UPDATE_NEGATIVE_CRITERION = 12; // Only free form names are allowed for negative Smart campaign keyword // theme. CANNOT_SET_NEGATIVE_KEYWORD_THEME_CONSTANT_CRITERION = 13; // Invalid Smart campaign keyword theme constant criterion. INVALID_KEYWORD_THEME_CONSTANT = 14; // A Smart campaign keyword theme constant or free-form Smart campaign // keyword theme is required. MISSING_KEYWORD_THEME_CONSTANT_OR_FREE_FORM_KEYWORD_THEME = 15; // A Smart campaign may not target proximity and location criteria // simultaneously. CANNOT_TARGET_BOTH_PROXIMITY_AND_LOCATION_CRITERIA_FOR_SMART_CAMPAIGN = 16; // A Smart campaign may not target multiple proximity criteria. CANNOT_TARGET_MULTIPLE_PROXIMITY_CRITERIA_FOR_SMART_CAMPAIGN = 17; // Location is not launched for Local Services Campaigns. LOCATION_NOT_LAUNCHED_FOR_LOCAL_SERVICES_CAMPAIGN = 18; // A Local Services campaign may not target certain criteria types. LOCATION_INVALID_FOR_LOCAL_SERVICES_CAMPAIGN = 19; // Country locations are not supported for Local Services campaign. CANNOT_TARGET_COUNTRY_FOR_LOCAL_SERVICES_CAMPAIGN = 20; // Location is not within the home country of Local Services campaign. LOCATION_NOT_IN_HOME_COUNTRY_FOR_LOCAL_SERVICES_CAMPAIGN = 21; // Local Services profile does not exist for a particular Local Services // campaign. CANNOT_ADD_OR_REMOVE_LOCATION_FOR_LOCAL_SERVICES_CAMPAIGN = 22; // Local Services campaign must have at least one target location. AT_LEAST_ONE_POSITIVE_LOCATION_REQUIRED_FOR_LOCAL_SERVICES_CAMPAIGN = 23; // At least one positive local service ID criterion is required for a Local // Services campaign. AT_LEAST_ONE_LOCAL_SERVICE_ID_CRITERION_REQUIRED_FOR_LOCAL_SERVICES_CAMPAIGN = 24; // Local service ID is not found under selected categories in local // services campaign setting. LOCAL_SERVICE_ID_NOT_FOUND_FOR_CATEGORY = 25; // For search advertising channel, brand lists can only be applied to // exclusive targeting, broad match campaigns for inclusive targeting or // PMax generated campaigns. CANNOT_ATTACH_BRAND_LIST_TO_NON_QUALIFIED_SEARCH_CAMPAIGN = 26; + + // Campaigns that target all countries and territories are limited to a + // certain number of top-level location exclusions. If removing a criterion + // causes the campaign to target all countries and territories and the + // campaign has more top-level location exclusions than the limit allows, + // then this error is returned. + CANNOT_REMOVE_ALL_LOCATIONS_DUE_TO_TOO_MANY_COUNTRY_EXCLUSIONS = 27; } }
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-04-19 UTC.