bidding_strategy_system_status.proto 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.v12.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V12.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "BiddingStrategySystemStatusProto";
  20. option java_package = "com.google.ads.googleads.v12.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V12::Enums";
  24. // Proto file describing BiddingStrategy statuses.
  25. // Message describing BiddingStrategy system statuses.
  26. message BiddingStrategySystemStatusEnum {
  27. // The possible system statuses of a BiddingStrategy.
  28. enum BiddingStrategySystemStatus {
  29. // Signals that an unexpected error occurred, for example, no bidding
  30. // strategy type was found, or no status information was found.
  31. UNSPECIFIED = 0;
  32. // Used for return value only. Represents value unknown in this version.
  33. UNKNOWN = 1;
  34. // The bid strategy is active, and AdWords cannot find any specific issues
  35. // with the strategy.
  36. ENABLED = 2;
  37. // The bid strategy is learning because it has been recently created or
  38. // recently reactivated.
  39. LEARNING_NEW = 3;
  40. // The bid strategy is learning because of a recent setting change.
  41. LEARNING_SETTING_CHANGE = 4;
  42. // The bid strategy is learning because of a recent budget change.
  43. LEARNING_BUDGET_CHANGE = 5;
  44. // The bid strategy is learning because of recent change in number of
  45. // campaigns, ad groups or keywords attached to it.
  46. LEARNING_COMPOSITION_CHANGE = 6;
  47. // The bid strategy depends on conversion reporting and the customer
  48. // recently modified conversion types that were relevant to the
  49. // bid strategy.
  50. LEARNING_CONVERSION_TYPE_CHANGE = 7;
  51. // The bid strategy depends on conversion reporting and the customer
  52. // recently changed their conversion settings.
  53. LEARNING_CONVERSION_SETTING_CHANGE = 8;
  54. // The bid strategy is limited by its bid ceiling.
  55. LIMITED_BY_CPC_BID_CEILING = 9;
  56. // The bid strategy is limited by its bid floor.
  57. LIMITED_BY_CPC_BID_FLOOR = 10;
  58. // The bid strategy is limited because there was not enough conversion
  59. // traffic over the past weeks.
  60. LIMITED_BY_DATA = 11;
  61. // A significant fraction of keywords in this bid strategy are limited by
  62. // budget.
  63. LIMITED_BY_BUDGET = 12;
  64. // The bid strategy cannot reach its target spend because its spend has
  65. // been de-prioritized.
  66. LIMITED_BY_LOW_PRIORITY_SPEND = 13;
  67. // A significant fraction of keywords in this bid strategy have a low
  68. // Quality Score.
  69. LIMITED_BY_LOW_QUALITY = 14;
  70. // The bid strategy cannot fully spend its budget because of narrow
  71. // targeting.
  72. LIMITED_BY_INVENTORY = 15;
  73. // Missing conversion tracking (no pings present) and/or remarketing lists
  74. // for SSC.
  75. MISCONFIGURED_ZERO_ELIGIBILITY = 16;
  76. // The bid strategy depends on conversion reporting and the customer is
  77. // lacking conversion types that might be reported against this strategy.
  78. MISCONFIGURED_CONVERSION_TYPES = 17;
  79. // The bid strategy depends on conversion reporting and the customer's
  80. // conversion settings are misconfigured.
  81. MISCONFIGURED_CONVERSION_SETTINGS = 18;
  82. // There are campaigns outside the bid strategy that share budgets with
  83. // campaigns included in the strategy.
  84. MISCONFIGURED_SHARED_BUDGET = 19;
  85. // The campaign has an invalid strategy type and is not serving.
  86. MISCONFIGURED_STRATEGY_TYPE = 20;
  87. // The bid strategy is not active. Either there are no active campaigns,
  88. // ad groups or keywords attached to the bid strategy. Or there are no
  89. // active budgets connected to the bid strategy.
  90. PAUSED = 21;
  91. // This bid strategy currently does not support status reporting.
  92. UNAVAILABLE = 22;
  93. // There were multiple LEARNING_* system statuses for this bid strategy
  94. // during the time in question.
  95. MULTIPLE_LEARNING = 23;
  96. // There were multiple LIMITED_* system statuses for this bid strategy
  97. // during the time in question.
  98. MULTIPLE_LIMITED = 24;
  99. // There were multiple MISCONFIGURED_* system statuses for this bid strategy
  100. // during the time in question.
  101. MULTIPLE_MISCONFIGURED = 25;
  102. // There were multiple system statuses for this bid strategy during the
  103. // time in question.
  104. MULTIPLE = 26;
  105. }
  106. }