google-ads-googleads 3.1.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +3 -0
  3. data/Rakefile +3 -3
  4. data/lib/google/ads/google_ads/factories/v1/enums.rb +1130 -1130
  5. data/lib/google/ads/google_ads/factories/v1/operations.rb +1057 -1057
  6. data/lib/google/ads/google_ads/factories/v1/resources.rb +2420 -2420
  7. data/lib/google/ads/google_ads/factories/v1/services.rb +298 -298
  8. data/lib/google/ads/google_ads/factories/v2/enums.rb +1221 -1197
  9. data/lib/google/ads/google_ads/factories/v2/operations.rb +1080 -1080
  10. data/lib/google/ads/google_ads/factories/v2/resources.rb +2497 -2458
  11. data/lib/google/ads/google_ads/factories/v2/services.rb +329 -309
  12. data/lib/google/ads/google_ads/google_ads_client.rb +1 -0
  13. data/lib/google/ads/google_ads/v2/common/extensions_pb.rb +5 -0
  14. data/lib/google/ads/google_ads/v2/common/segments_pb.rb +2 -0
  15. data/lib/google/ads/google_ads/v2/enums/extension_type_pb.rb +1 -0
  16. data/lib/google/ads/google_ads/v2/enums/hotel_price_bucket_pb.rb +21 -0
  17. data/lib/google/ads/google_ads/v2/enums/invoice_type_pb.rb +21 -0
  18. data/lib/google/ads/google_ads/v2/errors/errors_pb.rb +2 -0
  19. data/lib/google/ads/google_ads/v2/errors/invoice_error_pb.rb +21 -0
  20. data/lib/google/ads/google_ads/v2/resources/ad_pb.rb +1 -0
  21. data/lib/google/ads/google_ads/v2/resources/campaign_pb.rb +13 -13
  22. data/lib/google/ads/google_ads/v2/resources/extension_feed_item_pb.rb +2 -0
  23. data/lib/google/ads/google_ads/v2/resources/invoice_pb.rb +47 -0
  24. data/lib/google/ads/google_ads/v2/resources/recommendation_pb.rb +21 -21
  25. data/lib/google/ads/google_ads/v2/services/invoice_service_client.rb +233 -0
  26. data/lib/google/ads/google_ads/v2/services/invoice_service_client_config.json +31 -0
  27. data/lib/google/ads/google_ads/v2/services/invoice_service_pb.rb +25 -0
  28. data/lib/google/ads/google_ads/v2/services/invoice_service_services_pb.rb +42 -0
  29. data/lib/google/ads/google_ads/v2/services/merchant_center_link_service_client.rb +1 -1
  30. data/lib/google/ads/google_ads/v2/services/merchant_center_link_service_services_pb.rb +1 -1
  31. data/lib/google/ads/google_ads/v2/services/reach_plan_service_client.rb +1 -1
  32. data/lib/google/ads/google_ads/v2/services/reach_plan_service_services_pb.rb +1 -1
  33. data/lib/google/ads/google_ads/version.rb +1 -1
  34. metadata +10 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d13ddf22d64e49f5138e19a64288e6b0863313c8844bf2856455dc1cf4c9cf2d
4
- data.tar.gz: 0a9489cd97b936779f6582285bb9b6130919feb14fdb07b717e3f1c2546634f8
3
+ metadata.gz: 9c923dfebeaf45c82f01ec41ba2625bd527595a8b689adfdf4828920b6cbb53f
4
+ data.tar.gz: b3c7fab85b8d7e36bc4ce89e33aefee3c6e7e4c6a75e9e91ef3ebac5b196b701
5
5
  SHA512:
6
- metadata.gz: 555ffec607a86ac01d77f669b7f3f6615afd2840a3527e197691af2590c5ea74e8478fffe908da5f235010a4abcff033d281a06ea983c3cd8f45bddac738fb1c
7
- data.tar.gz: f8d6e23cf7c9ce8e5c0017f0bcf494f9dcbc176e339b059d66150690f79e88a4271ba0d5a7c68a376ea1b7824394c122d7136696e740f4d3f2d125c1362ac3fb
6
+ metadata.gz: 3eb2a7e5191c6708d93acc1ceaa9b092a2b606e35be772fa031f9d1833d8d48ad043f4a3389323696bc9d5ed308610bc1e2b8c7c5f7303dc0da0fbad622cf564
7
+ data.tar.gz: 6eb6ec342b3fff7861ef4f6f52f2d0c83c3df7944b26ead1a9d42a4036c2278b7d6255f2c4b0a30574bfa90c7562160f8476aab97c4d80fede3aadaccf18b8eb
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ 3.2.0:
2
+ - Adding support for Google Ads API v2_2.
3
+
1
4
  3.1.0:
2
5
  - Adding support for Google Ads API v2_1.
3
6
 
data/Rakefile CHANGED
@@ -38,7 +38,7 @@ task :apply_patches do |t|
38
38
  end
39
39
 
40
40
  def proto_files
41
- Dir["lib/google/ads/google_ads/v1/**/*.rb"]
41
+ Dir["lib/google/ads/google_ads/v*/**/*.rb"]
42
42
  end
43
43
 
44
44
  def newest_of(files)
@@ -62,7 +62,7 @@ def factories_are_recent?
62
62
  newest_factory_file > newest_proto_file
63
63
  end
64
64
 
65
- task :codegen do |t|
65
+ task :codegen => [:apply_patches, :copy_third_party_code] do |t|
66
66
  `./scripts/codegen.sh` unless factories_are_recent?
67
67
  end
68
68
 
@@ -70,5 +70,5 @@ task :copy_third_party_code do |t|
70
70
  `cp third_party/rspec/caller_filter.rb lib/google/ads/google_ads/deprecation.rb`
71
71
  end
72
72
 
73
- task :build => [:apply_patches, :copy_third_party_code, :codegen, :validate_protos]
73
+ task :build => [:codegen, :validate_protos]
74
74
  task :test => [:copy_third_party_code, :codegen]
@@ -4,148 +4,164 @@ module Google
4
4
  module Factories
5
5
  module V1
6
6
  module Enums
7
- # Returns the descriptor for the MediaType enum
7
+ # Returns the descriptor for the ManagerLinkStatus enum
8
8
  #
9
- # @return [Google::Protobuf::EnumDescriptor] for the MediaType enum
10
- def self.media_type
11
- require "google/ads/google_ads/v1/enums/media_type_pb.rb"
12
- Google::Ads::GoogleAds::V1::Enums::MediaTypeEnum::MediaType.descriptor
9
+ # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkStatus enum
10
+ def self.manager_link_status
11
+ require "google/ads/google_ads/v1/enums/manager_link_status_pb.rb"
12
+ Google::Ads::GoogleAds::V1::Enums::ManagerLinkStatusEnum::ManagerLinkStatus.descriptor
13
13
  end
14
14
 
15
- # Returns the descriptor for the MimeType enum
15
+ # Returns the descriptor for the CampaignDraftStatus enum
16
16
  #
17
- # @return [Google::Protobuf::EnumDescriptor] for the MimeType enum
18
- def self.mime_type
19
- require "google/ads/google_ads/v1/enums/mime_type_pb.rb"
20
- Google::Ads::GoogleAds::V1::Enums::MimeTypeEnum::MimeType.descriptor
17
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftStatus enum
18
+ def self.campaign_draft_status
19
+ require "google/ads/google_ads/v1/enums/campaign_draft_status_pb.rb"
20
+ Google::Ads::GoogleAds::V1::Enums::CampaignDraftStatusEnum::CampaignDraftStatus.descriptor
21
21
  end
22
22
 
23
- # Returns the descriptor for the KeywordMatchType enum
23
+ # Returns the descriptor for the SharedSetStatus enum
24
24
  #
25
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordMatchType enum
26
- def self.keyword_match_type
27
- require "google/ads/google_ads/v1/enums/keyword_match_type_pb.rb"
28
- Google::Ads::GoogleAds::V1::Enums::KeywordMatchTypeEnum::KeywordMatchType.descriptor
25
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetStatus enum
26
+ def self.shared_set_status
27
+ require "google/ads/google_ads/v1/enums/shared_set_status_pb.rb"
28
+ Google::Ads::GoogleAds::V1::Enums::SharedSetStatusEnum::SharedSetStatus.descriptor
29
29
  end
30
30
 
31
- # Returns the descriptor for the TrackingCodePageFormat enum
31
+ # Returns the descriptor for the SharedSetType enum
32
32
  #
33
- # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodePageFormat enum
34
- def self.tracking_code_page_format
35
- require "google/ads/google_ads/v1/enums/tracking_code_page_format_pb.rb"
36
- Google::Ads::GoogleAds::V1::Enums::TrackingCodePageFormatEnum::TrackingCodePageFormat.descriptor
33
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetType enum
34
+ def self.shared_set_type
35
+ require "google/ads/google_ads/v1/enums/shared_set_type_pb.rb"
36
+ Google::Ads::GoogleAds::V1::Enums::SharedSetTypeEnum::SharedSetType.descriptor
37
37
  end
38
38
 
39
- # Returns the descriptor for the TrackingCodeType enum
39
+ # Returns the descriptor for the AgeRangeType enum
40
40
  #
41
- # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodeType enum
42
- def self.tracking_code_type
43
- require "google/ads/google_ads/v1/enums/tracking_code_type_pb.rb"
44
- Google::Ads::GoogleAds::V1::Enums::TrackingCodeTypeEnum::TrackingCodeType.descriptor
41
+ # @return [Google::Protobuf::EnumDescriptor] for the AgeRangeType enum
42
+ def self.age_range_type
43
+ require "google/ads/google_ads/v1/enums/age_range_type_pb.rb"
44
+ Google::Ads::GoogleAds::V1::Enums::AgeRangeTypeEnum::AgeRangeType.descriptor
45
45
  end
46
46
 
47
- # Returns the descriptor for the AttributionModel enum
47
+ # Returns the descriptor for the AppPaymentModelType enum
48
48
  #
49
- # @return [Google::Protobuf::EnumDescriptor] for the AttributionModel enum
50
- def self.attribution_model
51
- require "google/ads/google_ads/v1/enums/attribution_model_pb.rb"
52
- Google::Ads::GoogleAds::V1::Enums::AttributionModelEnum::AttributionModel.descriptor
49
+ # @return [Google::Protobuf::EnumDescriptor] for the AppPaymentModelType enum
50
+ def self.app_payment_model_type
51
+ require "google/ads/google_ads/v1/enums/app_payment_model_type_pb.rb"
52
+ Google::Ads::GoogleAds::V1::Enums::AppPaymentModelTypeEnum::AppPaymentModelType.descriptor
53
53
  end
54
54
 
55
- # Returns the descriptor for the ConversionActionCategory enum
55
+ # Returns the descriptor for the ContentLabelType enum
56
56
  #
57
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCategory enum
58
- def self.conversion_action_category
59
- require "google/ads/google_ads/v1/enums/conversion_action_category_pb.rb"
60
- Google::Ads::GoogleAds::V1::Enums::ConversionActionCategoryEnum::ConversionActionCategory.descriptor
57
+ # @return [Google::Protobuf::EnumDescriptor] for the ContentLabelType enum
58
+ def self.content_label_type
59
+ require "google/ads/google_ads/v1/enums/content_label_type_pb.rb"
60
+ Google::Ads::GoogleAds::V1::Enums::ContentLabelTypeEnum::ContentLabelType.descriptor
61
61
  end
62
62
 
63
- # Returns the descriptor for the ConversionActionCountingType enum
63
+ # Returns the descriptor for the DayOfWeek enum
64
64
  #
65
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCountingType enum
66
- def self.conversion_action_counting_type
67
- require "google/ads/google_ads/v1/enums/conversion_action_counting_type_pb.rb"
68
- Google::Ads::GoogleAds::V1::Enums::ConversionActionCountingTypeEnum::ConversionActionCountingType.descriptor
65
+ # @return [Google::Protobuf::EnumDescriptor] for the DayOfWeek enum
66
+ def self.day_of_week
67
+ require "google/ads/google_ads/v1/enums/day_of_week_pb.rb"
68
+ Google::Ads::GoogleAds::V1::Enums::DayOfWeekEnum::DayOfWeek.descriptor
69
69
  end
70
70
 
71
- # Returns the descriptor for the ConversionActionStatus enum
71
+ # Returns the descriptor for the Device enum
72
72
  #
73
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionStatus enum
74
- def self.conversion_action_status
75
- require "google/ads/google_ads/v1/enums/conversion_action_status_pb.rb"
76
- Google::Ads::GoogleAds::V1::Enums::ConversionActionStatusEnum::ConversionActionStatus.descriptor
73
+ # @return [Google::Protobuf::EnumDescriptor] for the Device enum
74
+ def self.device
75
+ require "google/ads/google_ads/v1/enums/device_pb.rb"
76
+ Google::Ads::GoogleAds::V1::Enums::DeviceEnum::Device.descriptor
77
77
  end
78
78
 
79
- # Returns the descriptor for the ConversionActionType enum
79
+ # Returns the descriptor for the GenderType enum
80
80
  #
81
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionType enum
82
- def self.conversion_action_type
83
- require "google/ads/google_ads/v1/enums/conversion_action_type_pb.rb"
84
- Google::Ads::GoogleAds::V1::Enums::ConversionActionTypeEnum::ConversionActionType.descriptor
81
+ # @return [Google::Protobuf::EnumDescriptor] for the GenderType enum
82
+ def self.gender_type
83
+ require "google/ads/google_ads/v1/enums/gender_type_pb.rb"
84
+ Google::Ads::GoogleAds::V1::Enums::GenderTypeEnum::GenderType.descriptor
85
85
  end
86
86
 
87
- # Returns the descriptor for the DataDrivenModelStatus enum
87
+ # Returns the descriptor for the HotelDateSelectionType enum
88
88
  #
89
- # @return [Google::Protobuf::EnumDescriptor] for the DataDrivenModelStatus enum
90
- def self.data_driven_model_status
91
- require "google/ads/google_ads/v1/enums/data_driven_model_status_pb.rb"
92
- Google::Ads::GoogleAds::V1::Enums::DataDrivenModelStatusEnum::DataDrivenModelStatus.descriptor
89
+ # @return [Google::Protobuf::EnumDescriptor] for the HotelDateSelectionType enum
90
+ def self.hotel_date_selection_type
91
+ require "google/ads/google_ads/v1/enums/hotel_date_selection_type_pb.rb"
92
+ Google::Ads::GoogleAds::V1::Enums::HotelDateSelectionTypeEnum::HotelDateSelectionType.descriptor
93
93
  end
94
94
 
95
- # Returns the descriptor for the GeoTargetConstantStatus enum
95
+ # Returns the descriptor for the IncomeRangeType enum
96
96
  #
97
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetConstantStatus enum
98
- def self.geo_target_constant_status
99
- require "google/ads/google_ads/v1/enums/geo_target_constant_status_pb.rb"
100
- Google::Ads::GoogleAds::V1::Enums::GeoTargetConstantStatusEnum::GeoTargetConstantStatus.descriptor
97
+ # @return [Google::Protobuf::EnumDescriptor] for the IncomeRangeType enum
98
+ def self.income_range_type
99
+ require "google/ads/google_ads/v1/enums/income_range_type_pb.rb"
100
+ Google::Ads::GoogleAds::V1::Enums::IncomeRangeTypeEnum::IncomeRangeType.descriptor
101
101
  end
102
102
 
103
- # Returns the descriptor for the GoogleAdsFieldCategory enum
103
+ # Returns the descriptor for the InteractionType enum
104
104
  #
105
- # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldCategory enum
106
- def self.google_ads_field_category
107
- require "google/ads/google_ads/v1/enums/google_ads_field_category_pb.rb"
108
- Google::Ads::GoogleAds::V1::Enums::GoogleAdsFieldCategoryEnum::GoogleAdsFieldCategory.descriptor
105
+ # @return [Google::Protobuf::EnumDescriptor] for the InteractionType enum
106
+ def self.interaction_type
107
+ require "google/ads/google_ads/v1/enums/interaction_type_pb.rb"
108
+ Google::Ads::GoogleAds::V1::Enums::InteractionTypeEnum::InteractionType.descriptor
109
109
  end
110
110
 
111
- # Returns the descriptor for the GoogleAdsFieldDataType enum
111
+ # Returns the descriptor for the KeywordMatchType enum
112
112
  #
113
- # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldDataType enum
114
- def self.google_ads_field_data_type
115
- require "google/ads/google_ads/v1/enums/google_ads_field_data_type_pb.rb"
116
- Google::Ads::GoogleAds::V1::Enums::GoogleAdsFieldDataTypeEnum::GoogleAdsFieldDataType.descriptor
113
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordMatchType enum
114
+ def self.keyword_match_type
115
+ require "google/ads/google_ads/v1/enums/keyword_match_type_pb.rb"
116
+ Google::Ads::GoogleAds::V1::Enums::KeywordMatchTypeEnum::KeywordMatchType.descriptor
117
117
  end
118
118
 
119
- # Returns the descriptor for the MatchingFunctionContextType enum
119
+ # Returns the descriptor for the ListingCustomAttributeIndex enum
120
120
  #
121
- # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionContextType enum
122
- def self.matching_function_context_type
123
- require "google/ads/google_ads/v1/enums/matching_function_context_type_pb.rb"
124
- Google::Ads::GoogleAds::V1::Enums::MatchingFunctionContextTypeEnum::MatchingFunctionContextType.descriptor
121
+ # @return [Google::Protobuf::EnumDescriptor] for the ListingCustomAttributeIndex enum
122
+ def self.listing_custom_attribute_index
123
+ require "google/ads/google_ads/v1/enums/listing_custom_attribute_index_pb.rb"
124
+ Google::Ads::GoogleAds::V1::Enums::ListingCustomAttributeIndexEnum::ListingCustomAttributeIndex.descriptor
125
125
  end
126
126
 
127
- # Returns the descriptor for the MatchingFunctionOperator enum
127
+ # Returns the descriptor for the ListingGroupType enum
128
128
  #
129
- # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionOperator enum
130
- def self.matching_function_operator
131
- require "google/ads/google_ads/v1/enums/matching_function_operator_pb.rb"
132
- Google::Ads::GoogleAds::V1::Enums::MatchingFunctionOperatorEnum::MatchingFunctionOperator.descriptor
129
+ # @return [Google::Protobuf::EnumDescriptor] for the ListingGroupType enum
130
+ def self.listing_group_type
131
+ require "google/ads/google_ads/v1/enums/listing_group_type_pb.rb"
132
+ Google::Ads::GoogleAds::V1::Enums::ListingGroupTypeEnum::ListingGroupType.descriptor
133
133
  end
134
134
 
135
- # Returns the descriptor for the FeedLinkStatus enum
135
+ # Returns the descriptor for the LocationGroupRadiusUnits enum
136
136
  #
137
- # @return [Google::Protobuf::EnumDescriptor] for the FeedLinkStatus enum
138
- def self.feed_link_status
139
- require "google/ads/google_ads/v1/enums/feed_link_status_pb.rb"
140
- Google::Ads::GoogleAds::V1::Enums::FeedLinkStatusEnum::FeedLinkStatus.descriptor
137
+ # @return [Google::Protobuf::EnumDescriptor] for the LocationGroupRadiusUnits enum
138
+ def self.location_group_radius_units
139
+ require "google/ads/google_ads/v1/enums/location_group_radius_units_pb.rb"
140
+ Google::Ads::GoogleAds::V1::Enums::LocationGroupRadiusUnitsEnum::LocationGroupRadiusUnits.descriptor
141
141
  end
142
142
 
143
- # Returns the descriptor for the PlaceholderType enum
143
+ # Returns the descriptor for the MinuteOfHour enum
144
144
  #
145
- # @return [Google::Protobuf::EnumDescriptor] for the PlaceholderType enum
146
- def self.placeholder_type
147
- require "google/ads/google_ads/v1/enums/placeholder_type_pb.rb"
148
- Google::Ads::GoogleAds::V1::Enums::PlaceholderTypeEnum::PlaceholderType.descriptor
145
+ # @return [Google::Protobuf::EnumDescriptor] for the MinuteOfHour enum
146
+ def self.minute_of_hour
147
+ require "google/ads/google_ads/v1/enums/minute_of_hour_pb.rb"
148
+ Google::Ads::GoogleAds::V1::Enums::MinuteOfHourEnum::MinuteOfHour.descriptor
149
+ end
150
+
151
+ # Returns the descriptor for the ParentalStatusType enum
152
+ #
153
+ # @return [Google::Protobuf::EnumDescriptor] for the ParentalStatusType enum
154
+ def self.parental_status_type
155
+ require "google/ads/google_ads/v1/enums/parental_status_type_pb.rb"
156
+ Google::Ads::GoogleAds::V1::Enums::ParentalStatusTypeEnum::ParentalStatusType.descriptor
157
+ end
158
+
159
+ # Returns the descriptor for the PreferredContentType enum
160
+ #
161
+ # @return [Google::Protobuf::EnumDescriptor] for the PreferredContentType enum
162
+ def self.preferred_content_type
163
+ require "google/ads/google_ads/v1/enums/preferred_content_type_pb.rb"
164
+ Google::Ads::GoogleAds::V1::Enums::PreferredContentTypeEnum::PreferredContentType.descriptor
149
165
  end
150
166
 
151
167
  # Returns the descriptor for the ProductBiddingCategoryLevel enum
@@ -156,76 +172,68 @@ module Google
156
172
  Google::Ads::GoogleAds::V1::Enums::ProductBiddingCategoryLevelEnum::ProductBiddingCategoryLevel.descriptor
157
173
  end
158
174
 
159
- # Returns the descriptor for the ProductBiddingCategoryStatus enum
175
+ # Returns the descriptor for the ProductChannel enum
160
176
  #
161
- # @return [Google::Protobuf::EnumDescriptor] for the ProductBiddingCategoryStatus enum
162
- def self.product_bidding_category_status
163
- require "google/ads/google_ads/v1/enums/product_bidding_category_status_pb.rb"
164
- Google::Ads::GoogleAds::V1::Enums::ProductBiddingCategoryStatusEnum::ProductBiddingCategoryStatus.descriptor
177
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductChannel enum
178
+ def self.product_channel
179
+ require "google/ads/google_ads/v1/enums/product_channel_pb.rb"
180
+ Google::Ads::GoogleAds::V1::Enums::ProductChannelEnum::ProductChannel.descriptor
165
181
  end
166
182
 
167
- # Returns the descriptor for the PolicyTopicEntryType enum
183
+ # Returns the descriptor for the ProductChannelExclusivity enum
168
184
  #
169
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEntryType enum
170
- def self.policy_topic_entry_type
171
- require "google/ads/google_ads/v1/enums/policy_topic_entry_type_pb.rb"
172
- Google::Ads::GoogleAds::V1::Enums::PolicyTopicEntryTypeEnum::PolicyTopicEntryType.descriptor
185
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductChannelExclusivity enum
186
+ def self.product_channel_exclusivity
187
+ require "google/ads/google_ads/v1/enums/product_channel_exclusivity_pb.rb"
188
+ Google::Ads::GoogleAds::V1::Enums::ProductChannelExclusivityEnum::ProductChannelExclusivity.descriptor
173
189
  end
174
190
 
175
- # Returns the descriptor for the PolicyTopicEvidenceDestinationMismatchUrlType enum
191
+ # Returns the descriptor for the ProductCondition enum
176
192
  #
177
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationMismatchUrlType enum
178
- def self.policy_topic_evidence_destination_mismatch_url_type
179
- require "google/ads/google_ads/v1/enums/policy_topic_evidence_destination_mismatch_url_type_pb.rb"
180
- Google::Ads::GoogleAds::V1::Enums::PolicyTopicEvidenceDestinationMismatchUrlTypeEnum::PolicyTopicEvidenceDestinationMismatchUrlType.descriptor
193
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductCondition enum
194
+ def self.product_condition
195
+ require "google/ads/google_ads/v1/enums/product_condition_pb.rb"
196
+ Google::Ads::GoogleAds::V1::Enums::ProductConditionEnum::ProductCondition.descriptor
181
197
  end
182
198
 
183
- # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
199
+ # Returns the descriptor for the ProductTypeLevel enum
184
200
  #
185
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
186
- def self.policy_topic_evidence_destination_not_working_device
187
- require "google/ads/google_ads/v1/enums/policy_topic_evidence_destination_not_working_device_pb.rb"
188
- Google::Ads::GoogleAds::V1::Enums::PolicyTopicEvidenceDestinationNotWorkingDeviceEnum::PolicyTopicEvidenceDestinationNotWorkingDevice.descriptor
201
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductTypeLevel enum
202
+ def self.product_type_level
203
+ require "google/ads/google_ads/v1/enums/product_type_level_pb.rb"
204
+ Google::Ads::GoogleAds::V1::Enums::ProductTypeLevelEnum::ProductTypeLevel.descriptor
189
205
  end
190
206
 
191
- # Returns the descriptor for the AdGroupAdStatus enum
207
+ # Returns the descriptor for the ProximityRadiusUnits enum
192
208
  #
193
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdStatus enum
194
- def self.ad_group_ad_status
195
- require "google/ads/google_ads/v1/enums/ad_group_ad_status_pb.rb"
196
- Google::Ads::GoogleAds::V1::Enums::AdGroupAdStatusEnum::AdGroupAdStatus.descriptor
209
+ # @return [Google::Protobuf::EnumDescriptor] for the ProximityRadiusUnits enum
210
+ def self.proximity_radius_units
211
+ require "google/ads/google_ads/v1/enums/proximity_radius_units_pb.rb"
212
+ Google::Ads::GoogleAds::V1::Enums::ProximityRadiusUnitsEnum::ProximityRadiusUnits.descriptor
197
213
  end
198
214
 
199
- # Returns the descriptor for the AdStrength enum
215
+ # Returns the descriptor for the WebpageConditionOperand enum
200
216
  #
201
- # @return [Google::Protobuf::EnumDescriptor] for the AdStrength enum
202
- def self.ad_strength
203
- require "google/ads/google_ads/v1/enums/ad_strength_pb.rb"
204
- Google::Ads::GoogleAds::V1::Enums::AdStrengthEnum::AdStrength.descriptor
217
+ # @return [Google::Protobuf::EnumDescriptor] for the WebpageConditionOperand enum
218
+ def self.webpage_condition_operand
219
+ require "google/ads/google_ads/v1/enums/webpage_condition_operand_pb.rb"
220
+ Google::Ads::GoogleAds::V1::Enums::WebpageConditionOperandEnum::WebpageConditionOperand.descriptor
205
221
  end
206
222
 
207
- # Returns the descriptor for the PolicyApprovalStatus enum
208
- #
209
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyApprovalStatus enum
210
- def self.policy_approval_status
211
- require "google/ads/google_ads/v1/enums/policy_approval_status_pb.rb"
212
- Google::Ads::GoogleAds::V1::Enums::PolicyApprovalStatusEnum::PolicyApprovalStatus.descriptor
213
- end
214
-
215
- # Returns the descriptor for the PolicyReviewStatus enum
223
+ # Returns the descriptor for the WebpageConditionOperator enum
216
224
  #
217
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyReviewStatus enum
218
- def self.policy_review_status
219
- require "google/ads/google_ads/v1/enums/policy_review_status_pb.rb"
220
- Google::Ads::GoogleAds::V1::Enums::PolicyReviewStatusEnum::PolicyReviewStatus.descriptor
225
+ # @return [Google::Protobuf::EnumDescriptor] for the WebpageConditionOperator enum
226
+ def self.webpage_condition_operator
227
+ require "google/ads/google_ads/v1/enums/webpage_condition_operator_pb.rb"
228
+ Google::Ads::GoogleAds::V1::Enums::WebpageConditionOperatorEnum::WebpageConditionOperator.descriptor
221
229
  end
222
230
 
223
- # Returns the descriptor for the ServedAssetFieldType enum
231
+ # Returns the descriptor for the AppStore enum
224
232
  #
225
- # @return [Google::Protobuf::EnumDescriptor] for the ServedAssetFieldType enum
226
- def self.served_asset_field_type
227
- require "google/ads/google_ads/v1/enums/served_asset_field_type_pb.rb"
228
- Google::Ads::GoogleAds::V1::Enums::ServedAssetFieldTypeEnum::ServedAssetFieldType.descriptor
233
+ # @return [Google::Protobuf::EnumDescriptor] for the AppStore enum
234
+ def self.app_store
235
+ require "google/ads/google_ads/v1/enums/app_store_pb.rb"
236
+ Google::Ads::GoogleAds::V1::Enums::AppStoreEnum::AppStore.descriptor
229
237
  end
230
238
 
231
239
  # Returns the descriptor for the CallConversionReportingState enum
@@ -236,6 +244,70 @@ module Google
236
244
  Google::Ads::GoogleAds::V1::Enums::CallConversionReportingStateEnum::CallConversionReportingState.descriptor
237
245
  end
238
246
 
247
+ # Returns the descriptor for the PriceExtensionPriceQualifier enum
248
+ #
249
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceQualifier enum
250
+ def self.price_extension_price_qualifier
251
+ require "google/ads/google_ads/v1/enums/price_extension_price_qualifier_pb.rb"
252
+ Google::Ads::GoogleAds::V1::Enums::PriceExtensionPriceQualifierEnum::PriceExtensionPriceQualifier.descriptor
253
+ end
254
+
255
+ # Returns the descriptor for the PriceExtensionPriceUnit enum
256
+ #
257
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceUnit enum
258
+ def self.price_extension_price_unit
259
+ require "google/ads/google_ads/v1/enums/price_extension_price_unit_pb.rb"
260
+ Google::Ads::GoogleAds::V1::Enums::PriceExtensionPriceUnitEnum::PriceExtensionPriceUnit.descriptor
261
+ end
262
+
263
+ # Returns the descriptor for the PriceExtensionType enum
264
+ #
265
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionType enum
266
+ def self.price_extension_type
267
+ require "google/ads/google_ads/v1/enums/price_extension_type_pb.rb"
268
+ Google::Ads::GoogleAds::V1::Enums::PriceExtensionTypeEnum::PriceExtensionType.descriptor
269
+ end
270
+
271
+ # Returns the descriptor for the PromotionExtensionDiscountModifier enum
272
+ #
273
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionDiscountModifier enum
274
+ def self.promotion_extension_discount_modifier
275
+ require "google/ads/google_ads/v1/enums/promotion_extension_discount_modifier_pb.rb"
276
+ Google::Ads::GoogleAds::V1::Enums::PromotionExtensionDiscountModifierEnum::PromotionExtensionDiscountModifier.descriptor
277
+ end
278
+
279
+ # Returns the descriptor for the PromotionExtensionOccasion enum
280
+ #
281
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionOccasion enum
282
+ def self.promotion_extension_occasion
283
+ require "google/ads/google_ads/v1/enums/promotion_extension_occasion_pb.rb"
284
+ Google::Ads::GoogleAds::V1::Enums::PromotionExtensionOccasionEnum::PromotionExtensionOccasion.descriptor
285
+ end
286
+
287
+ # Returns the descriptor for the RecommendationType enum
288
+ #
289
+ # @return [Google::Protobuf::EnumDescriptor] for the RecommendationType enum
290
+ def self.recommendation_type
291
+ require "google/ads/google_ads/v1/enums/recommendation_type_pb.rb"
292
+ Google::Ads::GoogleAds::V1::Enums::RecommendationTypeEnum::RecommendationType.descriptor
293
+ end
294
+
295
+ # Returns the descriptor for the TargetCpaOptInRecommendationGoal enum
296
+ #
297
+ # @return [Google::Protobuf::EnumDescriptor] for the TargetCpaOptInRecommendationGoal enum
298
+ def self.target_cpa_opt_in_recommendation_goal
299
+ require "google/ads/google_ads/v1/enums/target_cpa_opt_in_recommendation_goal_pb.rb"
300
+ Google::Ads::GoogleAds::V1::Enums::TargetCpaOptInRecommendationGoalEnum::TargetCpaOptInRecommendationGoal.descriptor
301
+ end
302
+
303
+ # Returns the descriptor for the ServedAssetFieldType enum
304
+ #
305
+ # @return [Google::Protobuf::EnumDescriptor] for the ServedAssetFieldType enum
306
+ def self.served_asset_field_type
307
+ require "google/ads/google_ads/v1/enums/served_asset_field_type_pb.rb"
308
+ Google::Ads::GoogleAds::V1::Enums::ServedAssetFieldTypeEnum::ServedAssetFieldType.descriptor
309
+ end
310
+
239
311
  # Returns the descriptor for the DisplayAdFormatSetting enum
240
312
  #
241
313
  # @return [Google::Protobuf::EnumDescriptor] for the DisplayAdFormatSetting enum
@@ -260,6 +332,14 @@ module Google
260
332
  Google::Ads::GoogleAds::V1::Enums::LegacyAppInstallAdAppStoreEnum::LegacyAppInstallAdAppStore.descriptor
261
333
  end
262
334
 
335
+ # Returns the descriptor for the MimeType enum
336
+ #
337
+ # @return [Google::Protobuf::EnumDescriptor] for the MimeType enum
338
+ def self.mime_type
339
+ require "google/ads/google_ads/v1/enums/mime_type_pb.rb"
340
+ Google::Ads::GoogleAds::V1::Enums::MimeTypeEnum::MimeType.descriptor
341
+ end
342
+
263
343
  # Returns the descriptor for the AppUrlOperatingSystemType enum
264
344
  #
265
345
  # @return [Google::Protobuf::EnumDescriptor] for the AppUrlOperatingSystemType enum
@@ -276,14 +356,6 @@ module Google
276
356
  Google::Ads::GoogleAds::V1::Enums::AdTypeEnum::AdType.descriptor
277
357
  end
278
358
 
279
- # Returns the descriptor for the Device enum
280
- #
281
- # @return [Google::Protobuf::EnumDescriptor] for the Device enum
282
- def self.device
283
- require "google/ads/google_ads/v1/enums/device_pb.rb"
284
- Google::Ads::GoogleAds::V1::Enums::DeviceEnum::Device.descriptor
285
- end
286
-
287
359
  # Returns the descriptor for the SystemManagedResourceSource enum
288
360
  #
289
361
  # @return [Google::Protobuf::EnumDescriptor] for the SystemManagedResourceSource enum
@@ -292,996 +364,860 @@ module Google
292
364
  Google::Ads::GoogleAds::V1::Enums::SystemManagedResourceSourceEnum::SystemManagedResourceSource.descriptor
293
365
  end
294
366
 
295
- # Returns the descriptor for the ChangeStatusOperation enum
367
+ # Returns the descriptor for the CampaignCriterionStatus enum
296
368
  #
297
- # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusOperation enum
298
- def self.change_status_operation
299
- require "google/ads/google_ads/v1/enums/change_status_operation_pb.rb"
300
- Google::Ads::GoogleAds::V1::Enums::ChangeStatusOperationEnum::ChangeStatusOperation.descriptor
369
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionStatus enum
370
+ def self.campaign_criterion_status
371
+ require "google/ads/google_ads/v1/enums/campaign_criterion_status_pb.rb"
372
+ Google::Ads::GoogleAds::V1::Enums::CampaignCriterionStatusEnum::CampaignCriterionStatus.descriptor
301
373
  end
302
374
 
303
- # Returns the descriptor for the ChangeStatusResourceType enum
375
+ # Returns the descriptor for the CriterionType enum
304
376
  #
305
- # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusResourceType enum
306
- def self.change_status_resource_type
307
- require "google/ads/google_ads/v1/enums/change_status_resource_type_pb.rb"
308
- Google::Ads::GoogleAds::V1::Enums::ChangeStatusResourceTypeEnum::ChangeStatusResourceType.descriptor
377
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionType enum
378
+ def self.criterion_type
379
+ require "google/ads/google_ads/v1/enums/criterion_type_pb.rb"
380
+ Google::Ads::GoogleAds::V1::Enums::CriterionTypeEnum::CriterionType.descriptor
309
381
  end
310
382
 
311
- # Returns the descriptor for the AdCustomizerPlaceholderField enum
383
+ # Returns the descriptor for the AssetType enum
312
384
  #
313
- # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerPlaceholderField enum
314
- def self.ad_customizer_placeholder_field
315
- require "google/ads/google_ads/v1/enums/ad_customizer_placeholder_field_pb.rb"
316
- Google::Ads::GoogleAds::V1::Enums::AdCustomizerPlaceholderFieldEnum::AdCustomizerPlaceholderField.descriptor
385
+ # @return [Google::Protobuf::EnumDescriptor] for the AssetType enum
386
+ def self.asset_type
387
+ require "google/ads/google_ads/v1/enums/asset_type_pb.rb"
388
+ Google::Ads::GoogleAds::V1::Enums::AssetTypeEnum::AssetType.descriptor
317
389
  end
318
390
 
319
- # Returns the descriptor for the AffiliateLocationPlaceholderField enum
391
+ # Returns the descriptor for the AdvertisingChannelSubType enum
320
392
  #
321
- # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationPlaceholderField enum
322
- def self.affiliate_location_placeholder_field
323
- require "google/ads/google_ads/v1/enums/affiliate_location_placeholder_field_pb.rb"
324
- Google::Ads::GoogleAds::V1::Enums::AffiliateLocationPlaceholderFieldEnum::AffiliateLocationPlaceholderField.descriptor
393
+ # @return [Google::Protobuf::EnumDescriptor] for the AdvertisingChannelSubType enum
394
+ def self.advertising_channel_sub_type
395
+ require "google/ads/google_ads/v1/enums/advertising_channel_sub_type_pb.rb"
396
+ Google::Ads::GoogleAds::V1::Enums::AdvertisingChannelSubTypeEnum::AdvertisingChannelSubType.descriptor
325
397
  end
326
398
 
327
- # Returns the descriptor for the AppPlaceholderField enum
399
+ # Returns the descriptor for the AdvertisingChannelType enum
328
400
  #
329
- # @return [Google::Protobuf::EnumDescriptor] for the AppPlaceholderField enum
330
- def self.app_placeholder_field
331
- require "google/ads/google_ads/v1/enums/app_placeholder_field_pb.rb"
332
- Google::Ads::GoogleAds::V1::Enums::AppPlaceholderFieldEnum::AppPlaceholderField.descriptor
401
+ # @return [Google::Protobuf::EnumDescriptor] for the AdvertisingChannelType enum
402
+ def self.advertising_channel_type
403
+ require "google/ads/google_ads/v1/enums/advertising_channel_type_pb.rb"
404
+ Google::Ads::GoogleAds::V1::Enums::AdvertisingChannelTypeEnum::AdvertisingChannelType.descriptor
333
405
  end
334
406
 
335
- # Returns the descriptor for the CallPlaceholderField enum
407
+ # Returns the descriptor for the CriterionCategoryChannelAvailabilityMode enum
336
408
  #
337
- # @return [Google::Protobuf::EnumDescriptor] for the CallPlaceholderField enum
338
- def self.call_placeholder_field
339
- require "google/ads/google_ads/v1/enums/call_placeholder_field_pb.rb"
340
- Google::Ads::GoogleAds::V1::Enums::CallPlaceholderFieldEnum::CallPlaceholderField.descriptor
409
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionCategoryChannelAvailabilityMode enum
410
+ def self.criterion_category_channel_availability_mode
411
+ require "google/ads/google_ads/v1/enums/criterion_category_channel_availability_mode_pb.rb"
412
+ Google::Ads::GoogleAds::V1::Enums::CriterionCategoryChannelAvailabilityModeEnum::CriterionCategoryChannelAvailabilityMode.descriptor
341
413
  end
342
414
 
343
- # Returns the descriptor for the CalloutPlaceholderField enum
415
+ # Returns the descriptor for the CriterionCategoryLocaleAvailabilityMode enum
344
416
  #
345
- # @return [Google::Protobuf::EnumDescriptor] for the CalloutPlaceholderField enum
346
- def self.callout_placeholder_field
347
- require "google/ads/google_ads/v1/enums/callout_placeholder_field_pb.rb"
348
- Google::Ads::GoogleAds::V1::Enums::CalloutPlaceholderFieldEnum::CalloutPlaceholderField.descriptor
417
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionCategoryLocaleAvailabilityMode enum
418
+ def self.criterion_category_locale_availability_mode
419
+ require "google/ads/google_ads/v1/enums/criterion_category_locale_availability_mode_pb.rb"
420
+ Google::Ads::GoogleAds::V1::Enums::CriterionCategoryLocaleAvailabilityModeEnum::CriterionCategoryLocaleAvailabilityMode.descriptor
349
421
  end
350
422
 
351
- # Returns the descriptor for the CustomPlaceholderField enum
423
+ # Returns the descriptor for the UserInterestTaxonomyType enum
352
424
  #
353
- # @return [Google::Protobuf::EnumDescriptor] for the CustomPlaceholderField enum
354
- def self.custom_placeholder_field
355
- require "google/ads/google_ads/v1/enums/custom_placeholder_field_pb.rb"
356
- Google::Ads::GoogleAds::V1::Enums::CustomPlaceholderFieldEnum::CustomPlaceholderField.descriptor
425
+ # @return [Google::Protobuf::EnumDescriptor] for the UserInterestTaxonomyType enum
426
+ def self.user_interest_taxonomy_type
427
+ require "google/ads/google_ads/v1/enums/user_interest_taxonomy_type_pb.rb"
428
+ Google::Ads::GoogleAds::V1::Enums::UserInterestTaxonomyTypeEnum::UserInterestTaxonomyType.descriptor
357
429
  end
358
430
 
359
- # Returns the descriptor for the DsaPageFeedCriterionField enum
431
+ # Returns the descriptor for the SimulationModificationMethod enum
360
432
  #
361
- # @return [Google::Protobuf::EnumDescriptor] for the DsaPageFeedCriterionField enum
362
- def self.dsa_page_feed_criterion_field
363
- require "google/ads/google_ads/v1/enums/dsa_page_feed_criterion_field_pb.rb"
364
- Google::Ads::GoogleAds::V1::Enums::DsaPageFeedCriterionFieldEnum::DsaPageFeedCriterionField.descriptor
433
+ # @return [Google::Protobuf::EnumDescriptor] for the SimulationModificationMethod enum
434
+ def self.simulation_modification_method
435
+ require "google/ads/google_ads/v1/enums/simulation_modification_method_pb.rb"
436
+ Google::Ads::GoogleAds::V1::Enums::SimulationModificationMethodEnum::SimulationModificationMethod.descriptor
365
437
  end
366
438
 
367
- # Returns the descriptor for the EducationPlaceholderField enum
439
+ # Returns the descriptor for the SimulationType enum
368
440
  #
369
- # @return [Google::Protobuf::EnumDescriptor] for the EducationPlaceholderField enum
370
- def self.education_placeholder_field
371
- require "google/ads/google_ads/v1/enums/education_placeholder_field_pb.rb"
372
- Google::Ads::GoogleAds::V1::Enums::EducationPlaceholderFieldEnum::EducationPlaceholderField.descriptor
441
+ # @return [Google::Protobuf::EnumDescriptor] for the SimulationType enum
442
+ def self.simulation_type
443
+ require "google/ads/google_ads/v1/enums/simulation_type_pb.rb"
444
+ Google::Ads::GoogleAds::V1::Enums::SimulationTypeEnum::SimulationType.descriptor
373
445
  end
374
446
 
375
- # Returns the descriptor for the FeedMappingCriterionType enum
447
+ # Returns the descriptor for the CampaignSharedSetStatus enum
376
448
  #
377
- # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingCriterionType enum
378
- def self.feed_mapping_criterion_type
379
- require "google/ads/google_ads/v1/enums/feed_mapping_criterion_type_pb.rb"
380
- Google::Ads::GoogleAds::V1::Enums::FeedMappingCriterionTypeEnum::FeedMappingCriterionType.descriptor
449
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignSharedSetStatus enum
450
+ def self.campaign_shared_set_status
451
+ require "google/ads/google_ads/v1/enums/campaign_shared_set_status_pb.rb"
452
+ Google::Ads::GoogleAds::V1::Enums::CampaignSharedSetStatusEnum::CampaignSharedSetStatus.descriptor
381
453
  end
382
454
 
383
- # Returns the descriptor for the FeedMappingStatus enum
455
+ # Returns the descriptor for the GeoTargetingType enum
384
456
  #
385
- # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingStatus enum
386
- def self.feed_mapping_status
387
- require "google/ads/google_ads/v1/enums/feed_mapping_status_pb.rb"
388
- Google::Ads::GoogleAds::V1::Enums::FeedMappingStatusEnum::FeedMappingStatus.descriptor
457
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingType enum
458
+ def self.geo_targeting_type
459
+ require "google/ads/google_ads/v1/enums/geo_targeting_type_pb.rb"
460
+ Google::Ads::GoogleAds::V1::Enums::GeoTargetingTypeEnum::GeoTargetingType.descriptor
389
461
  end
390
462
 
391
- # Returns the descriptor for the FlightPlaceholderField enum
463
+ # Returns the descriptor for the AdGroupCriterionApprovalStatus enum
392
464
  #
393
- # @return [Google::Protobuf::EnumDescriptor] for the FlightPlaceholderField enum
394
- def self.flight_placeholder_field
395
- require "google/ads/google_ads/v1/enums/flight_placeholder_field_pb.rb"
396
- Google::Ads::GoogleAds::V1::Enums::FlightPlaceholderFieldEnum::FlightPlaceholderField.descriptor
465
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionApprovalStatus enum
466
+ def self.ad_group_criterion_approval_status
467
+ require "google/ads/google_ads/v1/enums/ad_group_criterion_approval_status_pb.rb"
468
+ Google::Ads::GoogleAds::V1::Enums::AdGroupCriterionApprovalStatusEnum::AdGroupCriterionApprovalStatus.descriptor
397
469
  end
398
470
 
399
- # Returns the descriptor for the HotelPlaceholderField enum
471
+ # Returns the descriptor for the AdGroupCriterionStatus enum
400
472
  #
401
- # @return [Google::Protobuf::EnumDescriptor] for the HotelPlaceholderField enum
402
- def self.hotel_placeholder_field
403
- require "google/ads/google_ads/v1/enums/hotel_placeholder_field_pb.rb"
404
- Google::Ads::GoogleAds::V1::Enums::HotelPlaceholderFieldEnum::HotelPlaceholderField.descriptor
473
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionStatus enum
474
+ def self.ad_group_criterion_status
475
+ require "google/ads/google_ads/v1/enums/ad_group_criterion_status_pb.rb"
476
+ Google::Ads::GoogleAds::V1::Enums::AdGroupCriterionStatusEnum::AdGroupCriterionStatus.descriptor
405
477
  end
406
478
 
407
- # Returns the descriptor for the JobPlaceholderField enum
479
+ # Returns the descriptor for the BiddingSource enum
408
480
  #
409
- # @return [Google::Protobuf::EnumDescriptor] for the JobPlaceholderField enum
410
- def self.job_placeholder_field
411
- require "google/ads/google_ads/v1/enums/job_placeholder_field_pb.rb"
412
- Google::Ads::GoogleAds::V1::Enums::JobPlaceholderFieldEnum::JobPlaceholderField.descriptor
413
- end
414
-
415
- # Returns the descriptor for the LocalPlaceholderField enum
416
- #
417
- # @return [Google::Protobuf::EnumDescriptor] for the LocalPlaceholderField enum
418
- def self.local_placeholder_field
419
- require "google/ads/google_ads/v1/enums/local_placeholder_field_pb.rb"
420
- Google::Ads::GoogleAds::V1::Enums::LocalPlaceholderFieldEnum::LocalPlaceholderField.descriptor
421
- end
422
-
423
- # Returns the descriptor for the LocationExtensionTargetingCriterionField enum
424
- #
425
- # @return [Google::Protobuf::EnumDescriptor] for the LocationExtensionTargetingCriterionField enum
426
- def self.location_extension_targeting_criterion_field
427
- require "google/ads/google_ads/v1/enums/location_extension_targeting_criterion_field_pb.rb"
428
- Google::Ads::GoogleAds::V1::Enums::LocationExtensionTargetingCriterionFieldEnum::LocationExtensionTargetingCriterionField.descriptor
429
- end
430
-
431
- # Returns the descriptor for the LocationPlaceholderField enum
432
- #
433
- # @return [Google::Protobuf::EnumDescriptor] for the LocationPlaceholderField enum
434
- def self.location_placeholder_field
435
- require "google/ads/google_ads/v1/enums/location_placeholder_field_pb.rb"
436
- Google::Ads::GoogleAds::V1::Enums::LocationPlaceholderFieldEnum::LocationPlaceholderField.descriptor
437
- end
438
-
439
- # Returns the descriptor for the MessagePlaceholderField enum
440
- #
441
- # @return [Google::Protobuf::EnumDescriptor] for the MessagePlaceholderField enum
442
- def self.message_placeholder_field
443
- require "google/ads/google_ads/v1/enums/message_placeholder_field_pb.rb"
444
- Google::Ads::GoogleAds::V1::Enums::MessagePlaceholderFieldEnum::MessagePlaceholderField.descriptor
445
- end
446
-
447
- # Returns the descriptor for the PricePlaceholderField enum
448
- #
449
- # @return [Google::Protobuf::EnumDescriptor] for the PricePlaceholderField enum
450
- def self.price_placeholder_field
451
- require "google/ads/google_ads/v1/enums/price_placeholder_field_pb.rb"
452
- Google::Ads::GoogleAds::V1::Enums::PricePlaceholderFieldEnum::PricePlaceholderField.descriptor
453
- end
454
-
455
- # Returns the descriptor for the PromotionPlaceholderField enum
456
- #
457
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionPlaceholderField enum
458
- def self.promotion_placeholder_field
459
- require "google/ads/google_ads/v1/enums/promotion_placeholder_field_pb.rb"
460
- Google::Ads::GoogleAds::V1::Enums::PromotionPlaceholderFieldEnum::PromotionPlaceholderField.descriptor
461
- end
462
-
463
- # Returns the descriptor for the RealEstatePlaceholderField enum
464
- #
465
- # @return [Google::Protobuf::EnumDescriptor] for the RealEstatePlaceholderField enum
466
- def self.real_estate_placeholder_field
467
- require "google/ads/google_ads/v1/enums/real_estate_placeholder_field_pb.rb"
468
- Google::Ads::GoogleAds::V1::Enums::RealEstatePlaceholderFieldEnum::RealEstatePlaceholderField.descriptor
469
- end
470
-
471
- # Returns the descriptor for the SitelinkPlaceholderField enum
472
- #
473
- # @return [Google::Protobuf::EnumDescriptor] for the SitelinkPlaceholderField enum
474
- def self.sitelink_placeholder_field
475
- require "google/ads/google_ads/v1/enums/sitelink_placeholder_field_pb.rb"
476
- Google::Ads::GoogleAds::V1::Enums::SitelinkPlaceholderFieldEnum::SitelinkPlaceholderField.descriptor
477
- end
478
-
479
- # Returns the descriptor for the StructuredSnippetPlaceholderField enum
480
- #
481
- # @return [Google::Protobuf::EnumDescriptor] for the StructuredSnippetPlaceholderField enum
482
- def self.structured_snippet_placeholder_field
483
- require "google/ads/google_ads/v1/enums/structured_snippet_placeholder_field_pb.rb"
484
- Google::Ads::GoogleAds::V1::Enums::StructuredSnippetPlaceholderFieldEnum::StructuredSnippetPlaceholderField.descriptor
485
- end
486
-
487
- # Returns the descriptor for the TravelPlaceholderField enum
488
- #
489
- # @return [Google::Protobuf::EnumDescriptor] for the TravelPlaceholderField enum
490
- def self.travel_placeholder_field
491
- require "google/ads/google_ads/v1/enums/travel_placeholder_field_pb.rb"
492
- Google::Ads::GoogleAds::V1::Enums::TravelPlaceholderFieldEnum::TravelPlaceholderField.descriptor
493
- end
494
-
495
- # Returns the descriptor for the BillingSetupStatus enum
496
- #
497
- # @return [Google::Protobuf::EnumDescriptor] for the BillingSetupStatus enum
498
- def self.billing_setup_status
499
- require "google/ads/google_ads/v1/enums/billing_setup_status_pb.rb"
500
- Google::Ads::GoogleAds::V1::Enums::BillingSetupStatusEnum::BillingSetupStatus.descriptor
501
- end
502
-
503
- # Returns the descriptor for the TimeType enum
504
- #
505
- # @return [Google::Protobuf::EnumDescriptor] for the TimeType enum
506
- def self.time_type
507
- require "google/ads/google_ads/v1/enums/time_type_pb.rb"
508
- Google::Ads::GoogleAds::V1::Enums::TimeTypeEnum::TimeType.descriptor
509
- end
510
-
511
- # Returns the descriptor for the CustomerPayPerConversionEligibilityFailureReason enum
512
- #
513
- # @return [Google::Protobuf::EnumDescriptor] for the CustomerPayPerConversionEligibilityFailureReason enum
514
- def self.customer_pay_per_conversion_eligibility_failure_reason
515
- require "google/ads/google_ads/v1/enums/customer_pay_per_conversion_eligibility_failure_reason_pb.rb"
516
- Google::Ads::GoogleAds::V1::Enums::CustomerPayPerConversionEligibilityFailureReasonEnum::CustomerPayPerConversionEligibilityFailureReason.descriptor
517
- end
518
-
519
- # Returns the descriptor for the BudgetDeliveryMethod enum
520
- #
521
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetDeliveryMethod enum
522
- def self.budget_delivery_method
523
- require "google/ads/google_ads/v1/enums/budget_delivery_method_pb.rb"
524
- Google::Ads::GoogleAds::V1::Enums::BudgetDeliveryMethodEnum::BudgetDeliveryMethod.descriptor
525
- end
526
-
527
- # Returns the descriptor for the BudgetPeriod enum
528
- #
529
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetPeriod enum
530
- def self.budget_period
531
- require "google/ads/google_ads/v1/enums/budget_period_pb.rb"
532
- Google::Ads::GoogleAds::V1::Enums::BudgetPeriodEnum::BudgetPeriod.descriptor
533
- end
534
-
535
- # Returns the descriptor for the BudgetStatus enum
536
- #
537
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetStatus enum
538
- def self.budget_status
539
- require "google/ads/google_ads/v1/enums/budget_status_pb.rb"
540
- Google::Ads::GoogleAds::V1::Enums::BudgetStatusEnum::BudgetStatus.descriptor
541
- end
542
-
543
- # Returns the descriptor for the BudgetType enum
544
- #
545
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetType enum
546
- def self.budget_type
547
- require "google/ads/google_ads/v1/enums/budget_type_pb.rb"
548
- Google::Ads::GoogleAds::V1::Enums::BudgetTypeEnum::BudgetType.descriptor
481
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingSource enum
482
+ def self.bidding_source
483
+ require "google/ads/google_ads/v1/enums/bidding_source_pb.rb"
484
+ Google::Ads::GoogleAds::V1::Enums::BiddingSourceEnum::BiddingSource.descriptor
549
485
  end
550
486
 
551
- # Returns the descriptor for the AgeRangeType enum
487
+ # Returns the descriptor for the CriterionSystemServingStatus enum
552
488
  #
553
- # @return [Google::Protobuf::EnumDescriptor] for the AgeRangeType enum
554
- def self.age_range_type
555
- require "google/ads/google_ads/v1/enums/age_range_type_pb.rb"
556
- Google::Ads::GoogleAds::V1::Enums::AgeRangeTypeEnum::AgeRangeType.descriptor
489
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionSystemServingStatus enum
490
+ def self.criterion_system_serving_status
491
+ require "google/ads/google_ads/v1/enums/criterion_system_serving_status_pb.rb"
492
+ Google::Ads::GoogleAds::V1::Enums::CriterionSystemServingStatusEnum::CriterionSystemServingStatus.descriptor
557
493
  end
558
494
 
559
- # Returns the descriptor for the AppPaymentModelType enum
495
+ # Returns the descriptor for the QualityScoreBucket enum
560
496
  #
561
- # @return [Google::Protobuf::EnumDescriptor] for the AppPaymentModelType enum
562
- def self.app_payment_model_type
563
- require "google/ads/google_ads/v1/enums/app_payment_model_type_pb.rb"
564
- Google::Ads::GoogleAds::V1::Enums::AppPaymentModelTypeEnum::AppPaymentModelType.descriptor
497
+ # @return [Google::Protobuf::EnumDescriptor] for the QualityScoreBucket enum
498
+ def self.quality_score_bucket
499
+ require "google/ads/google_ads/v1/enums/quality_score_bucket_pb.rb"
500
+ Google::Ads::GoogleAds::V1::Enums::QualityScoreBucketEnum::QualityScoreBucket.descriptor
565
501
  end
566
502
 
567
- # Returns the descriptor for the ContentLabelType enum
503
+ # Returns the descriptor for the ExtensionSettingDevice enum
568
504
  #
569
- # @return [Google::Protobuf::EnumDescriptor] for the ContentLabelType enum
570
- def self.content_label_type
571
- require "google/ads/google_ads/v1/enums/content_label_type_pb.rb"
572
- Google::Ads::GoogleAds::V1::Enums::ContentLabelTypeEnum::ContentLabelType.descriptor
505
+ # @return [Google::Protobuf::EnumDescriptor] for the ExtensionSettingDevice enum
506
+ def self.extension_setting_device
507
+ require "google/ads/google_ads/v1/enums/extension_setting_device_pb.rb"
508
+ Google::Ads::GoogleAds::V1::Enums::ExtensionSettingDeviceEnum::ExtensionSettingDevice.descriptor
573
509
  end
574
510
 
575
- # Returns the descriptor for the DayOfWeek enum
511
+ # Returns the descriptor for the ExtensionType enum
576
512
  #
577
- # @return [Google::Protobuf::EnumDescriptor] for the DayOfWeek enum
578
- def self.day_of_week
579
- require "google/ads/google_ads/v1/enums/day_of_week_pb.rb"
580
- Google::Ads::GoogleAds::V1::Enums::DayOfWeekEnum::DayOfWeek.descriptor
513
+ # @return [Google::Protobuf::EnumDescriptor] for the ExtensionType enum
514
+ def self.extension_type
515
+ require "google/ads/google_ads/v1/enums/extension_type_pb.rb"
516
+ Google::Ads::GoogleAds::V1::Enums::ExtensionTypeEnum::ExtensionType.descriptor
581
517
  end
582
518
 
583
- # Returns the descriptor for the GenderType enum
519
+ # Returns the descriptor for the PolicyTopicEntryType enum
584
520
  #
585
- # @return [Google::Protobuf::EnumDescriptor] for the GenderType enum
586
- def self.gender_type
587
- require "google/ads/google_ads/v1/enums/gender_type_pb.rb"
588
- Google::Ads::GoogleAds::V1::Enums::GenderTypeEnum::GenderType.descriptor
521
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEntryType enum
522
+ def self.policy_topic_entry_type
523
+ require "google/ads/google_ads/v1/enums/policy_topic_entry_type_pb.rb"
524
+ Google::Ads::GoogleAds::V1::Enums::PolicyTopicEntryTypeEnum::PolicyTopicEntryType.descriptor
589
525
  end
590
526
 
591
- # Returns the descriptor for the HotelDateSelectionType enum
527
+ # Returns the descriptor for the PolicyTopicEvidenceDestinationMismatchUrlType enum
592
528
  #
593
- # @return [Google::Protobuf::EnumDescriptor] for the HotelDateSelectionType enum
594
- def self.hotel_date_selection_type
595
- require "google/ads/google_ads/v1/enums/hotel_date_selection_type_pb.rb"
596
- Google::Ads::GoogleAds::V1::Enums::HotelDateSelectionTypeEnum::HotelDateSelectionType.descriptor
529
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationMismatchUrlType enum
530
+ def self.policy_topic_evidence_destination_mismatch_url_type
531
+ require "google/ads/google_ads/v1/enums/policy_topic_evidence_destination_mismatch_url_type_pb.rb"
532
+ Google::Ads::GoogleAds::V1::Enums::PolicyTopicEvidenceDestinationMismatchUrlTypeEnum::PolicyTopicEvidenceDestinationMismatchUrlType.descriptor
597
533
  end
598
534
 
599
- # Returns the descriptor for the IncomeRangeType enum
535
+ # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
600
536
  #
601
- # @return [Google::Protobuf::EnumDescriptor] for the IncomeRangeType enum
602
- def self.income_range_type
603
- require "google/ads/google_ads/v1/enums/income_range_type_pb.rb"
604
- Google::Ads::GoogleAds::V1::Enums::IncomeRangeTypeEnum::IncomeRangeType.descriptor
537
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
538
+ def self.policy_topic_evidence_destination_not_working_device
539
+ require "google/ads/google_ads/v1/enums/policy_topic_evidence_destination_not_working_device_pb.rb"
540
+ Google::Ads::GoogleAds::V1::Enums::PolicyTopicEvidenceDestinationNotWorkingDeviceEnum::PolicyTopicEvidenceDestinationNotWorkingDevice.descriptor
605
541
  end
606
542
 
607
- # Returns the descriptor for the InteractionType enum
543
+ # Returns the descriptor for the FeedItemQualityApprovalStatus enum
608
544
  #
609
- # @return [Google::Protobuf::EnumDescriptor] for the InteractionType enum
610
- def self.interaction_type
611
- require "google/ads/google_ads/v1/enums/interaction_type_pb.rb"
612
- Google::Ads::GoogleAds::V1::Enums::InteractionTypeEnum::InteractionType.descriptor
545
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityApprovalStatus enum
546
+ def self.feed_item_quality_approval_status
547
+ require "google/ads/google_ads/v1/enums/feed_item_quality_approval_status_pb.rb"
548
+ Google::Ads::GoogleAds::V1::Enums::FeedItemQualityApprovalStatusEnum::FeedItemQualityApprovalStatus.descriptor
613
549
  end
614
550
 
615
- # Returns the descriptor for the ListingCustomAttributeIndex enum
551
+ # Returns the descriptor for the FeedItemQualityDisapprovalReason enum
616
552
  #
617
- # @return [Google::Protobuf::EnumDescriptor] for the ListingCustomAttributeIndex enum
618
- def self.listing_custom_attribute_index
619
- require "google/ads/google_ads/v1/enums/listing_custom_attribute_index_pb.rb"
620
- Google::Ads::GoogleAds::V1::Enums::ListingCustomAttributeIndexEnum::ListingCustomAttributeIndex.descriptor
553
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityDisapprovalReason enum
554
+ def self.feed_item_quality_disapproval_reason
555
+ require "google/ads/google_ads/v1/enums/feed_item_quality_disapproval_reason_pb.rb"
556
+ Google::Ads::GoogleAds::V1::Enums::FeedItemQualityDisapprovalReasonEnum::FeedItemQualityDisapprovalReason.descriptor
621
557
  end
622
558
 
623
- # Returns the descriptor for the ListingGroupType enum
559
+ # Returns the descriptor for the FeedItemStatus enum
624
560
  #
625
- # @return [Google::Protobuf::EnumDescriptor] for the ListingGroupType enum
626
- def self.listing_group_type
627
- require "google/ads/google_ads/v1/enums/listing_group_type_pb.rb"
628
- Google::Ads::GoogleAds::V1::Enums::ListingGroupTypeEnum::ListingGroupType.descriptor
561
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemStatus enum
562
+ def self.feed_item_status
563
+ require "google/ads/google_ads/v1/enums/feed_item_status_pb.rb"
564
+ Google::Ads::GoogleAds::V1::Enums::FeedItemStatusEnum::FeedItemStatus.descriptor
629
565
  end
630
566
 
631
- # Returns the descriptor for the LocationGroupRadiusUnits enum
567
+ # Returns the descriptor for the FeedItemValidationStatus enum
632
568
  #
633
- # @return [Google::Protobuf::EnumDescriptor] for the LocationGroupRadiusUnits enum
634
- def self.location_group_radius_units
635
- require "google/ads/google_ads/v1/enums/location_group_radius_units_pb.rb"
636
- Google::Ads::GoogleAds::V1::Enums::LocationGroupRadiusUnitsEnum::LocationGroupRadiusUnits.descriptor
569
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationStatus enum
570
+ def self.feed_item_validation_status
571
+ require "google/ads/google_ads/v1/enums/feed_item_validation_status_pb.rb"
572
+ Google::Ads::GoogleAds::V1::Enums::FeedItemValidationStatusEnum::FeedItemValidationStatus.descriptor
637
573
  end
638
574
 
639
- # Returns the descriptor for the MinuteOfHour enum
575
+ # Returns the descriptor for the GeoTargetingRestriction enum
640
576
  #
641
- # @return [Google::Protobuf::EnumDescriptor] for the MinuteOfHour enum
642
- def self.minute_of_hour
643
- require "google/ads/google_ads/v1/enums/minute_of_hour_pb.rb"
644
- Google::Ads::GoogleAds::V1::Enums::MinuteOfHourEnum::MinuteOfHour.descriptor
577
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingRestriction enum
578
+ def self.geo_targeting_restriction
579
+ require "google/ads/google_ads/v1/enums/geo_targeting_restriction_pb.rb"
580
+ Google::Ads::GoogleAds::V1::Enums::GeoTargetingRestrictionEnum::GeoTargetingRestriction.descriptor
645
581
  end
646
582
 
647
- # Returns the descriptor for the ParentalStatusType enum
583
+ # Returns the descriptor for the PolicyApprovalStatus enum
648
584
  #
649
- # @return [Google::Protobuf::EnumDescriptor] for the ParentalStatusType enum
650
- def self.parental_status_type
651
- require "google/ads/google_ads/v1/enums/parental_status_type_pb.rb"
652
- Google::Ads::GoogleAds::V1::Enums::ParentalStatusTypeEnum::ParentalStatusType.descriptor
585
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyApprovalStatus enum
586
+ def self.policy_approval_status
587
+ require "google/ads/google_ads/v1/enums/policy_approval_status_pb.rb"
588
+ Google::Ads::GoogleAds::V1::Enums::PolicyApprovalStatusEnum::PolicyApprovalStatus.descriptor
653
589
  end
654
590
 
655
- # Returns the descriptor for the PreferredContentType enum
591
+ # Returns the descriptor for the PolicyReviewStatus enum
656
592
  #
657
- # @return [Google::Protobuf::EnumDescriptor] for the PreferredContentType enum
658
- def self.preferred_content_type
659
- require "google/ads/google_ads/v1/enums/preferred_content_type_pb.rb"
660
- Google::Ads::GoogleAds::V1::Enums::PreferredContentTypeEnum::PreferredContentType.descriptor
593
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyReviewStatus enum
594
+ def self.policy_review_status
595
+ require "google/ads/google_ads/v1/enums/policy_review_status_pb.rb"
596
+ Google::Ads::GoogleAds::V1::Enums::PolicyReviewStatusEnum::PolicyReviewStatus.descriptor
661
597
  end
662
598
 
663
- # Returns the descriptor for the ProductChannel enum
599
+ # Returns the descriptor for the FeedItemValidationError enum
664
600
  #
665
- # @return [Google::Protobuf::EnumDescriptor] for the ProductChannel enum
666
- def self.product_channel
667
- require "google/ads/google_ads/v1/enums/product_channel_pb.rb"
668
- Google::Ads::GoogleAds::V1::Enums::ProductChannelEnum::ProductChannel.descriptor
601
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationError enum
602
+ def self.feed_item_validation_error
603
+ require "google/ads/google_ads/v1/errors/feed_item_validation_error_pb.rb"
604
+ Google::Ads::GoogleAds::V1::Errors::FeedItemValidationErrorEnum::FeedItemValidationError.descriptor
669
605
  end
670
606
 
671
- # Returns the descriptor for the ProductChannelExclusivity enum
607
+ # Returns the descriptor for the FeedItemTargetDevice enum
672
608
  #
673
- # @return [Google::Protobuf::EnumDescriptor] for the ProductChannelExclusivity enum
674
- def self.product_channel_exclusivity
675
- require "google/ads/google_ads/v1/enums/product_channel_exclusivity_pb.rb"
676
- Google::Ads::GoogleAds::V1::Enums::ProductChannelExclusivityEnum::ProductChannelExclusivity.descriptor
609
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetDevice enum
610
+ def self.feed_item_target_device
611
+ require "google/ads/google_ads/v1/enums/feed_item_target_device_pb.rb"
612
+ Google::Ads::GoogleAds::V1::Enums::FeedItemTargetDeviceEnum::FeedItemTargetDevice.descriptor
677
613
  end
678
614
 
679
- # Returns the descriptor for the ProductCondition enum
615
+ # Returns the descriptor for the CustomerMatchUploadKeyType enum
680
616
  #
681
- # @return [Google::Protobuf::EnumDescriptor] for the ProductCondition enum
682
- def self.product_condition
683
- require "google/ads/google_ads/v1/enums/product_condition_pb.rb"
684
- Google::Ads::GoogleAds::V1::Enums::ProductConditionEnum::ProductCondition.descriptor
617
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomerMatchUploadKeyType enum
618
+ def self.customer_match_upload_key_type
619
+ require "google/ads/google_ads/v1/enums/customer_match_upload_key_type_pb.rb"
620
+ Google::Ads::GoogleAds::V1::Enums::CustomerMatchUploadKeyTypeEnum::CustomerMatchUploadKeyType.descriptor
685
621
  end
686
622
 
687
- # Returns the descriptor for the ProductTypeLevel enum
623
+ # Returns the descriptor for the UserListCombinedRuleOperator enum
688
624
  #
689
- # @return [Google::Protobuf::EnumDescriptor] for the ProductTypeLevel enum
690
- def self.product_type_level
691
- require "google/ads/google_ads/v1/enums/product_type_level_pb.rb"
692
- Google::Ads::GoogleAds::V1::Enums::ProductTypeLevelEnum::ProductTypeLevel.descriptor
625
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListCombinedRuleOperator enum
626
+ def self.user_list_combined_rule_operator
627
+ require "google/ads/google_ads/v1/enums/user_list_combined_rule_operator_pb.rb"
628
+ Google::Ads::GoogleAds::V1::Enums::UserListCombinedRuleOperatorEnum::UserListCombinedRuleOperator.descriptor
693
629
  end
694
630
 
695
- # Returns the descriptor for the ProximityRadiusUnits enum
631
+ # Returns the descriptor for the UserListCrmDataSourceType enum
696
632
  #
697
- # @return [Google::Protobuf::EnumDescriptor] for the ProximityRadiusUnits enum
698
- def self.proximity_radius_units
699
- require "google/ads/google_ads/v1/enums/proximity_radius_units_pb.rb"
700
- Google::Ads::GoogleAds::V1::Enums::ProximityRadiusUnitsEnum::ProximityRadiusUnits.descriptor
633
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListCrmDataSourceType enum
634
+ def self.user_list_crm_data_source_type
635
+ require "google/ads/google_ads/v1/enums/user_list_crm_data_source_type_pb.rb"
636
+ Google::Ads::GoogleAds::V1::Enums::UserListCrmDataSourceTypeEnum::UserListCrmDataSourceType.descriptor
701
637
  end
702
638
 
703
- # Returns the descriptor for the WebpageConditionOperand enum
639
+ # Returns the descriptor for the UserListDateRuleItemOperator enum
704
640
  #
705
- # @return [Google::Protobuf::EnumDescriptor] for the WebpageConditionOperand enum
706
- def self.webpage_condition_operand
707
- require "google/ads/google_ads/v1/enums/webpage_condition_operand_pb.rb"
708
- Google::Ads::GoogleAds::V1::Enums::WebpageConditionOperandEnum::WebpageConditionOperand.descriptor
641
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListDateRuleItemOperator enum
642
+ def self.user_list_date_rule_item_operator
643
+ require "google/ads/google_ads/v1/enums/user_list_date_rule_item_operator_pb.rb"
644
+ Google::Ads::GoogleAds::V1::Enums::UserListDateRuleItemOperatorEnum::UserListDateRuleItemOperator.descriptor
709
645
  end
710
646
 
711
- # Returns the descriptor for the WebpageConditionOperator enum
647
+ # Returns the descriptor for the UserListLogicalRuleOperator enum
712
648
  #
713
- # @return [Google::Protobuf::EnumDescriptor] for the WebpageConditionOperator enum
714
- def self.webpage_condition_operator
715
- require "google/ads/google_ads/v1/enums/webpage_condition_operator_pb.rb"
716
- Google::Ads::GoogleAds::V1::Enums::WebpageConditionOperatorEnum::WebpageConditionOperator.descriptor
649
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListLogicalRuleOperator enum
650
+ def self.user_list_logical_rule_operator
651
+ require "google/ads/google_ads/v1/enums/user_list_logical_rule_operator_pb.rb"
652
+ Google::Ads::GoogleAds::V1::Enums::UserListLogicalRuleOperatorEnum::UserListLogicalRuleOperator.descriptor
717
653
  end
718
654
 
719
- # Returns the descriptor for the AppStore enum
655
+ # Returns the descriptor for the UserListNumberRuleItemOperator enum
720
656
  #
721
- # @return [Google::Protobuf::EnumDescriptor] for the AppStore enum
722
- def self.app_store
723
- require "google/ads/google_ads/v1/enums/app_store_pb.rb"
724
- Google::Ads::GoogleAds::V1::Enums::AppStoreEnum::AppStore.descriptor
657
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListNumberRuleItemOperator enum
658
+ def self.user_list_number_rule_item_operator
659
+ require "google/ads/google_ads/v1/enums/user_list_number_rule_item_operator_pb.rb"
660
+ Google::Ads::GoogleAds::V1::Enums::UserListNumberRuleItemOperatorEnum::UserListNumberRuleItemOperator.descriptor
725
661
  end
726
662
 
727
- # Returns the descriptor for the PriceExtensionPriceQualifier enum
663
+ # Returns the descriptor for the UserListPrepopulationStatus enum
728
664
  #
729
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceQualifier enum
730
- def self.price_extension_price_qualifier
731
- require "google/ads/google_ads/v1/enums/price_extension_price_qualifier_pb.rb"
732
- Google::Ads::GoogleAds::V1::Enums::PriceExtensionPriceQualifierEnum::PriceExtensionPriceQualifier.descriptor
665
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListPrepopulationStatus enum
666
+ def self.user_list_prepopulation_status
667
+ require "google/ads/google_ads/v1/enums/user_list_prepopulation_status_pb.rb"
668
+ Google::Ads::GoogleAds::V1::Enums::UserListPrepopulationStatusEnum::UserListPrepopulationStatus.descriptor
733
669
  end
734
670
 
735
- # Returns the descriptor for the PriceExtensionPriceUnit enum
671
+ # Returns the descriptor for the UserListRuleType enum
736
672
  #
737
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceUnit enum
738
- def self.price_extension_price_unit
739
- require "google/ads/google_ads/v1/enums/price_extension_price_unit_pb.rb"
740
- Google::Ads::GoogleAds::V1::Enums::PriceExtensionPriceUnitEnum::PriceExtensionPriceUnit.descriptor
673
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListRuleType enum
674
+ def self.user_list_rule_type
675
+ require "google/ads/google_ads/v1/enums/user_list_rule_type_pb.rb"
676
+ Google::Ads::GoogleAds::V1::Enums::UserListRuleTypeEnum::UserListRuleType.descriptor
741
677
  end
742
678
 
743
- # Returns the descriptor for the PriceExtensionType enum
679
+ # Returns the descriptor for the UserListStringRuleItemOperator enum
744
680
  #
745
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionType enum
746
- def self.price_extension_type
747
- require "google/ads/google_ads/v1/enums/price_extension_type_pb.rb"
748
- Google::Ads::GoogleAds::V1::Enums::PriceExtensionTypeEnum::PriceExtensionType.descriptor
681
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListStringRuleItemOperator enum
682
+ def self.user_list_string_rule_item_operator
683
+ require "google/ads/google_ads/v1/enums/user_list_string_rule_item_operator_pb.rb"
684
+ Google::Ads::GoogleAds::V1::Enums::UserListStringRuleItemOperatorEnum::UserListStringRuleItemOperator.descriptor
749
685
  end
750
686
 
751
- # Returns the descriptor for the PromotionExtensionDiscountModifier enum
687
+ # Returns the descriptor for the AccessReason enum
752
688
  #
753
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionDiscountModifier enum
754
- def self.promotion_extension_discount_modifier
755
- require "google/ads/google_ads/v1/enums/promotion_extension_discount_modifier_pb.rb"
756
- Google::Ads::GoogleAds::V1::Enums::PromotionExtensionDiscountModifierEnum::PromotionExtensionDiscountModifier.descriptor
689
+ # @return [Google::Protobuf::EnumDescriptor] for the AccessReason enum
690
+ def self.access_reason
691
+ require "google/ads/google_ads/v1/enums/access_reason_pb.rb"
692
+ Google::Ads::GoogleAds::V1::Enums::AccessReasonEnum::AccessReason.descriptor
757
693
  end
758
694
 
759
- # Returns the descriptor for the PromotionExtensionOccasion enum
695
+ # Returns the descriptor for the UserListAccessStatus enum
760
696
  #
761
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionOccasion enum
762
- def self.promotion_extension_occasion
763
- require "google/ads/google_ads/v1/enums/promotion_extension_occasion_pb.rb"
764
- Google::Ads::GoogleAds::V1::Enums::PromotionExtensionOccasionEnum::PromotionExtensionOccasion.descriptor
697
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListAccessStatus enum
698
+ def self.user_list_access_status
699
+ require "google/ads/google_ads/v1/enums/user_list_access_status_pb.rb"
700
+ Google::Ads::GoogleAds::V1::Enums::UserListAccessStatusEnum::UserListAccessStatus.descriptor
765
701
  end
766
702
 
767
- # Returns the descriptor for the RecommendationType enum
703
+ # Returns the descriptor for the UserListClosingReason enum
768
704
  #
769
- # @return [Google::Protobuf::EnumDescriptor] for the RecommendationType enum
770
- def self.recommendation_type
771
- require "google/ads/google_ads/v1/enums/recommendation_type_pb.rb"
772
- Google::Ads::GoogleAds::V1::Enums::RecommendationTypeEnum::RecommendationType.descriptor
705
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListClosingReason enum
706
+ def self.user_list_closing_reason
707
+ require "google/ads/google_ads/v1/enums/user_list_closing_reason_pb.rb"
708
+ Google::Ads::GoogleAds::V1::Enums::UserListClosingReasonEnum::UserListClosingReason.descriptor
773
709
  end
774
710
 
775
- # Returns the descriptor for the TargetCpaOptInRecommendationGoal enum
711
+ # Returns the descriptor for the UserListMembershipStatus enum
776
712
  #
777
- # @return [Google::Protobuf::EnumDescriptor] for the TargetCpaOptInRecommendationGoal enum
778
- def self.target_cpa_opt_in_recommendation_goal
779
- require "google/ads/google_ads/v1/enums/target_cpa_opt_in_recommendation_goal_pb.rb"
780
- Google::Ads::GoogleAds::V1::Enums::TargetCpaOptInRecommendationGoalEnum::TargetCpaOptInRecommendationGoal.descriptor
713
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListMembershipStatus enum
714
+ def self.user_list_membership_status
715
+ require "google/ads/google_ads/v1/enums/user_list_membership_status_pb.rb"
716
+ Google::Ads::GoogleAds::V1::Enums::UserListMembershipStatusEnum::UserListMembershipStatus.descriptor
781
717
  end
782
718
 
783
- # Returns the descriptor for the PlacementType enum
719
+ # Returns the descriptor for the UserListSizeRange enum
784
720
  #
785
- # @return [Google::Protobuf::EnumDescriptor] for the PlacementType enum
786
- def self.placement_type
787
- require "google/ads/google_ads/v1/enums/placement_type_pb.rb"
788
- Google::Ads::GoogleAds::V1::Enums::PlacementTypeEnum::PlacementType.descriptor
721
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListSizeRange enum
722
+ def self.user_list_size_range
723
+ require "google/ads/google_ads/v1/enums/user_list_size_range_pb.rb"
724
+ Google::Ads::GoogleAds::V1::Enums::UserListSizeRangeEnum::UserListSizeRange.descriptor
789
725
  end
790
726
 
791
- # Returns the descriptor for the MutateJobStatus enum
727
+ # Returns the descriptor for the UserListType enum
792
728
  #
793
- # @return [Google::Protobuf::EnumDescriptor] for the MutateJobStatus enum
794
- def self.mutate_job_status
795
- require "google/ads/google_ads/v1/enums/mutate_job_status_pb.rb"
796
- Google::Ads::GoogleAds::V1::Enums::MutateJobStatusEnum::MutateJobStatus.descriptor
729
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListType enum
730
+ def self.user_list_type
731
+ require "google/ads/google_ads/v1/enums/user_list_type_pb.rb"
732
+ Google::Ads::GoogleAds::V1::Enums::UserListTypeEnum::UserListType.descriptor
797
733
  end
798
734
 
799
- # Returns the descriptor for the GeoTargetingType enum
735
+ # Returns the descriptor for the AdCustomizerPlaceholderField enum
800
736
  #
801
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingType enum
802
- def self.geo_targeting_type
803
- require "google/ads/google_ads/v1/enums/geo_targeting_type_pb.rb"
804
- Google::Ads::GoogleAds::V1::Enums::GeoTargetingTypeEnum::GeoTargetingType.descriptor
737
+ # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerPlaceholderField enum
738
+ def self.ad_customizer_placeholder_field
739
+ require "google/ads/google_ads/v1/enums/ad_customizer_placeholder_field_pb.rb"
740
+ Google::Ads::GoogleAds::V1::Enums::AdCustomizerPlaceholderFieldEnum::AdCustomizerPlaceholderField.descriptor
805
741
  end
806
742
 
807
- # Returns the descriptor for the AssetType enum
743
+ # Returns the descriptor for the AffiliateLocationPlaceholderField enum
808
744
  #
809
- # @return [Google::Protobuf::EnumDescriptor] for the AssetType enum
810
- def self.asset_type
811
- require "google/ads/google_ads/v1/enums/asset_type_pb.rb"
812
- Google::Ads::GoogleAds::V1::Enums::AssetTypeEnum::AssetType.descriptor
745
+ # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationPlaceholderField enum
746
+ def self.affiliate_location_placeholder_field
747
+ require "google/ads/google_ads/v1/enums/affiliate_location_placeholder_field_pb.rb"
748
+ Google::Ads::GoogleAds::V1::Enums::AffiliateLocationPlaceholderFieldEnum::AffiliateLocationPlaceholderField.descriptor
813
749
  end
814
750
 
815
- # Returns the descriptor for the OperatingSystemVersionOperatorType enum
751
+ # Returns the descriptor for the AppPlaceholderField enum
816
752
  #
817
- # @return [Google::Protobuf::EnumDescriptor] for the OperatingSystemVersionOperatorType enum
818
- def self.operating_system_version_operator_type
819
- require "google/ads/google_ads/v1/enums/operating_system_version_operator_type_pb.rb"
820
- Google::Ads::GoogleAds::V1::Enums::OperatingSystemVersionOperatorTypeEnum::OperatingSystemVersionOperatorType.descriptor
753
+ # @return [Google::Protobuf::EnumDescriptor] for the AppPlaceholderField enum
754
+ def self.app_placeholder_field
755
+ require "google/ads/google_ads/v1/enums/app_placeholder_field_pb.rb"
756
+ Google::Ads::GoogleAds::V1::Enums::AppPlaceholderFieldEnum::AppPlaceholderField.descriptor
821
757
  end
822
758
 
823
- # Returns the descriptor for the CampaignSharedSetStatus enum
759
+ # Returns the descriptor for the CallPlaceholderField enum
824
760
  #
825
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignSharedSetStatus enum
826
- def self.campaign_shared_set_status
827
- require "google/ads/google_ads/v1/enums/campaign_shared_set_status_pb.rb"
828
- Google::Ads::GoogleAds::V1::Enums::CampaignSharedSetStatusEnum::CampaignSharedSetStatus.descriptor
761
+ # @return [Google::Protobuf::EnumDescriptor] for the CallPlaceholderField enum
762
+ def self.call_placeholder_field
763
+ require "google/ads/google_ads/v1/enums/call_placeholder_field_pb.rb"
764
+ Google::Ads::GoogleAds::V1::Enums::CallPlaceholderFieldEnum::CallPlaceholderField.descriptor
829
765
  end
830
766
 
831
- # Returns the descriptor for the KeywordPlanForecastInterval enum
767
+ # Returns the descriptor for the CalloutPlaceholderField enum
832
768
  #
833
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanForecastInterval enum
834
- def self.keyword_plan_forecast_interval
835
- require "google/ads/google_ads/v1/enums/keyword_plan_forecast_interval_pb.rb"
836
- Google::Ads::GoogleAds::V1::Enums::KeywordPlanForecastIntervalEnum::KeywordPlanForecastInterval.descriptor
769
+ # @return [Google::Protobuf::EnumDescriptor] for the CalloutPlaceholderField enum
770
+ def self.callout_placeholder_field
771
+ require "google/ads/google_ads/v1/enums/callout_placeholder_field_pb.rb"
772
+ Google::Ads::GoogleAds::V1::Enums::CalloutPlaceholderFieldEnum::CalloutPlaceholderField.descriptor
837
773
  end
838
774
 
839
- # Returns the descriptor for the CampaignExperimentStatus enum
775
+ # Returns the descriptor for the CustomPlaceholderField enum
840
776
  #
841
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignExperimentStatus enum
842
- def self.campaign_experiment_status
843
- require "google/ads/google_ads/v1/enums/campaign_experiment_status_pb.rb"
844
- Google::Ads::GoogleAds::V1::Enums::CampaignExperimentStatusEnum::CampaignExperimentStatus.descriptor
777
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomPlaceholderField enum
778
+ def self.custom_placeholder_field
779
+ require "google/ads/google_ads/v1/enums/custom_placeholder_field_pb.rb"
780
+ Google::Ads::GoogleAds::V1::Enums::CustomPlaceholderFieldEnum::CustomPlaceholderField.descriptor
845
781
  end
846
782
 
847
- # Returns the descriptor for the CampaignExperimentTrafficSplitType enum
783
+ # Returns the descriptor for the DsaPageFeedCriterionField enum
848
784
  #
849
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignExperimentTrafficSplitType enum
850
- def self.campaign_experiment_traffic_split_type
851
- require "google/ads/google_ads/v1/enums/campaign_experiment_traffic_split_type_pb.rb"
852
- Google::Ads::GoogleAds::V1::Enums::CampaignExperimentTrafficSplitTypeEnum::CampaignExperimentTrafficSplitType.descriptor
785
+ # @return [Google::Protobuf::EnumDescriptor] for the DsaPageFeedCriterionField enum
786
+ def self.dsa_page_feed_criterion_field
787
+ require "google/ads/google_ads/v1/enums/dsa_page_feed_criterion_field_pb.rb"
788
+ Google::Ads::GoogleAds::V1::Enums::DsaPageFeedCriterionFieldEnum::DsaPageFeedCriterionField.descriptor
853
789
  end
854
790
 
855
- # Returns the descriptor for the ExtensionType enum
791
+ # Returns the descriptor for the EducationPlaceholderField enum
856
792
  #
857
- # @return [Google::Protobuf::EnumDescriptor] for the ExtensionType enum
858
- def self.extension_type
859
- require "google/ads/google_ads/v1/enums/extension_type_pb.rb"
860
- Google::Ads::GoogleAds::V1::Enums::ExtensionTypeEnum::ExtensionType.descriptor
793
+ # @return [Google::Protobuf::EnumDescriptor] for the EducationPlaceholderField enum
794
+ def self.education_placeholder_field
795
+ require "google/ads/google_ads/v1/enums/education_placeholder_field_pb.rb"
796
+ Google::Ads::GoogleAds::V1::Enums::EducationPlaceholderFieldEnum::EducationPlaceholderField.descriptor
861
797
  end
862
798
 
863
- # Returns the descriptor for the FeedItemStatus enum
799
+ # Returns the descriptor for the FeedMappingCriterionType enum
864
800
  #
865
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemStatus enum
866
- def self.feed_item_status
867
- require "google/ads/google_ads/v1/enums/feed_item_status_pb.rb"
868
- Google::Ads::GoogleAds::V1::Enums::FeedItemStatusEnum::FeedItemStatus.descriptor
801
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingCriterionType enum
802
+ def self.feed_mapping_criterion_type
803
+ require "google/ads/google_ads/v1/enums/feed_mapping_criterion_type_pb.rb"
804
+ Google::Ads::GoogleAds::V1::Enums::FeedMappingCriterionTypeEnum::FeedMappingCriterionType.descriptor
869
805
  end
870
806
 
871
- # Returns the descriptor for the FeedItemTargetDevice enum
807
+ # Returns the descriptor for the FeedMappingStatus enum
872
808
  #
873
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetDevice enum
874
- def self.feed_item_target_device
875
- require "google/ads/google_ads/v1/enums/feed_item_target_device_pb.rb"
876
- Google::Ads::GoogleAds::V1::Enums::FeedItemTargetDeviceEnum::FeedItemTargetDevice.descriptor
809
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingStatus enum
810
+ def self.feed_mapping_status
811
+ require "google/ads/google_ads/v1/enums/feed_mapping_status_pb.rb"
812
+ Google::Ads::GoogleAds::V1::Enums::FeedMappingStatusEnum::FeedMappingStatus.descriptor
877
813
  end
878
814
 
879
- # Returns the descriptor for the ExtensionSettingDevice enum
815
+ # Returns the descriptor for the FlightPlaceholderField enum
880
816
  #
881
- # @return [Google::Protobuf::EnumDescriptor] for the ExtensionSettingDevice enum
882
- def self.extension_setting_device
883
- require "google/ads/google_ads/v1/enums/extension_setting_device_pb.rb"
884
- Google::Ads::GoogleAds::V1::Enums::ExtensionSettingDeviceEnum::ExtensionSettingDevice.descriptor
817
+ # @return [Google::Protobuf::EnumDescriptor] for the FlightPlaceholderField enum
818
+ def self.flight_placeholder_field
819
+ require "google/ads/google_ads/v1/enums/flight_placeholder_field_pb.rb"
820
+ Google::Ads::GoogleAds::V1::Enums::FlightPlaceholderFieldEnum::FlightPlaceholderField.descriptor
885
821
  end
886
822
 
887
- # Returns the descriptor for the CampaignCriterionStatus enum
823
+ # Returns the descriptor for the HotelPlaceholderField enum
888
824
  #
889
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionStatus enum
890
- def self.campaign_criterion_status
891
- require "google/ads/google_ads/v1/enums/campaign_criterion_status_pb.rb"
892
- Google::Ads::GoogleAds::V1::Enums::CampaignCriterionStatusEnum::CampaignCriterionStatus.descriptor
825
+ # @return [Google::Protobuf::EnumDescriptor] for the HotelPlaceholderField enum
826
+ def self.hotel_placeholder_field
827
+ require "google/ads/google_ads/v1/enums/hotel_placeholder_field_pb.rb"
828
+ Google::Ads::GoogleAds::V1::Enums::HotelPlaceholderFieldEnum::HotelPlaceholderField.descriptor
893
829
  end
894
830
 
895
- # Returns the descriptor for the CriterionType enum
831
+ # Returns the descriptor for the JobPlaceholderField enum
896
832
  #
897
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionType enum
898
- def self.criterion_type
899
- require "google/ads/google_ads/v1/enums/criterion_type_pb.rb"
900
- Google::Ads::GoogleAds::V1::Enums::CriterionTypeEnum::CriterionType.descriptor
833
+ # @return [Google::Protobuf::EnumDescriptor] for the JobPlaceholderField enum
834
+ def self.job_placeholder_field
835
+ require "google/ads/google_ads/v1/enums/job_placeholder_field_pb.rb"
836
+ Google::Ads::GoogleAds::V1::Enums::JobPlaceholderFieldEnum::JobPlaceholderField.descriptor
901
837
  end
902
838
 
903
- # Returns the descriptor for the CustomInterestMemberType enum
839
+ # Returns the descriptor for the LocalPlaceholderField enum
904
840
  #
905
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestMemberType enum
906
- def self.custom_interest_member_type
907
- require "google/ads/google_ads/v1/enums/custom_interest_member_type_pb.rb"
908
- Google::Ads::GoogleAds::V1::Enums::CustomInterestMemberTypeEnum::CustomInterestMemberType.descriptor
841
+ # @return [Google::Protobuf::EnumDescriptor] for the LocalPlaceholderField enum
842
+ def self.local_placeholder_field
843
+ require "google/ads/google_ads/v1/enums/local_placeholder_field_pb.rb"
844
+ Google::Ads::GoogleAds::V1::Enums::LocalPlaceholderFieldEnum::LocalPlaceholderField.descriptor
909
845
  end
910
846
 
911
- # Returns the descriptor for the CustomInterestStatus enum
847
+ # Returns the descriptor for the LocationExtensionTargetingCriterionField enum
912
848
  #
913
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestStatus enum
914
- def self.custom_interest_status
915
- require "google/ads/google_ads/v1/enums/custom_interest_status_pb.rb"
916
- Google::Ads::GoogleAds::V1::Enums::CustomInterestStatusEnum::CustomInterestStatus.descriptor
849
+ # @return [Google::Protobuf::EnumDescriptor] for the LocationExtensionTargetingCriterionField enum
850
+ def self.location_extension_targeting_criterion_field
851
+ require "google/ads/google_ads/v1/enums/location_extension_targeting_criterion_field_pb.rb"
852
+ Google::Ads::GoogleAds::V1::Enums::LocationExtensionTargetingCriterionFieldEnum::LocationExtensionTargetingCriterionField.descriptor
917
853
  end
918
854
 
919
- # Returns the descriptor for the CustomInterestType enum
855
+ # Returns the descriptor for the LocationPlaceholderField enum
920
856
  #
921
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestType enum
922
- def self.custom_interest_type
923
- require "google/ads/google_ads/v1/enums/custom_interest_type_pb.rb"
924
- Google::Ads::GoogleAds::V1::Enums::CustomInterestTypeEnum::CustomInterestType.descriptor
857
+ # @return [Google::Protobuf::EnumDescriptor] for the LocationPlaceholderField enum
858
+ def self.location_placeholder_field
859
+ require "google/ads/google_ads/v1/enums/location_placeholder_field_pb.rb"
860
+ Google::Ads::GoogleAds::V1::Enums::LocationPlaceholderFieldEnum::LocationPlaceholderField.descriptor
925
861
  end
926
862
 
927
- # Returns the descriptor for the AdvertisingChannelSubType enum
863
+ # Returns the descriptor for the MessagePlaceholderField enum
928
864
  #
929
- # @return [Google::Protobuf::EnumDescriptor] for the AdvertisingChannelSubType enum
930
- def self.advertising_channel_sub_type
931
- require "google/ads/google_ads/v1/enums/advertising_channel_sub_type_pb.rb"
932
- Google::Ads::GoogleAds::V1::Enums::AdvertisingChannelSubTypeEnum::AdvertisingChannelSubType.descriptor
865
+ # @return [Google::Protobuf::EnumDescriptor] for the MessagePlaceholderField enum
866
+ def self.message_placeholder_field
867
+ require "google/ads/google_ads/v1/enums/message_placeholder_field_pb.rb"
868
+ Google::Ads::GoogleAds::V1::Enums::MessagePlaceholderFieldEnum::MessagePlaceholderField.descriptor
933
869
  end
934
870
 
935
- # Returns the descriptor for the AdvertisingChannelType enum
871
+ # Returns the descriptor for the PlaceholderType enum
936
872
  #
937
- # @return [Google::Protobuf::EnumDescriptor] for the AdvertisingChannelType enum
938
- def self.advertising_channel_type
939
- require "google/ads/google_ads/v1/enums/advertising_channel_type_pb.rb"
940
- Google::Ads::GoogleAds::V1::Enums::AdvertisingChannelTypeEnum::AdvertisingChannelType.descriptor
873
+ # @return [Google::Protobuf::EnumDescriptor] for the PlaceholderType enum
874
+ def self.placeholder_type
875
+ require "google/ads/google_ads/v1/enums/placeholder_type_pb.rb"
876
+ Google::Ads::GoogleAds::V1::Enums::PlaceholderTypeEnum::PlaceholderType.descriptor
941
877
  end
942
878
 
943
- # Returns the descriptor for the CriterionCategoryChannelAvailabilityMode enum
879
+ # Returns the descriptor for the PricePlaceholderField enum
944
880
  #
945
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionCategoryChannelAvailabilityMode enum
946
- def self.criterion_category_channel_availability_mode
947
- require "google/ads/google_ads/v1/enums/criterion_category_channel_availability_mode_pb.rb"
948
- Google::Ads::GoogleAds::V1::Enums::CriterionCategoryChannelAvailabilityModeEnum::CriterionCategoryChannelAvailabilityMode.descriptor
881
+ # @return [Google::Protobuf::EnumDescriptor] for the PricePlaceholderField enum
882
+ def self.price_placeholder_field
883
+ require "google/ads/google_ads/v1/enums/price_placeholder_field_pb.rb"
884
+ Google::Ads::GoogleAds::V1::Enums::PricePlaceholderFieldEnum::PricePlaceholderField.descriptor
949
885
  end
950
886
 
951
- # Returns the descriptor for the CriterionCategoryLocaleAvailabilityMode enum
887
+ # Returns the descriptor for the PromotionPlaceholderField enum
952
888
  #
953
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionCategoryLocaleAvailabilityMode enum
954
- def self.criterion_category_locale_availability_mode
955
- require "google/ads/google_ads/v1/enums/criterion_category_locale_availability_mode_pb.rb"
956
- Google::Ads::GoogleAds::V1::Enums::CriterionCategoryLocaleAvailabilityModeEnum::CriterionCategoryLocaleAvailabilityMode.descriptor
889
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionPlaceholderField enum
890
+ def self.promotion_placeholder_field
891
+ require "google/ads/google_ads/v1/enums/promotion_placeholder_field_pb.rb"
892
+ Google::Ads::GoogleAds::V1::Enums::PromotionPlaceholderFieldEnum::PromotionPlaceholderField.descriptor
957
893
  end
958
894
 
959
- # Returns the descriptor for the UserInterestTaxonomyType enum
895
+ # Returns the descriptor for the RealEstatePlaceholderField enum
960
896
  #
961
- # @return [Google::Protobuf::EnumDescriptor] for the UserInterestTaxonomyType enum
962
- def self.user_interest_taxonomy_type
963
- require "google/ads/google_ads/v1/enums/user_interest_taxonomy_type_pb.rb"
964
- Google::Ads::GoogleAds::V1::Enums::UserInterestTaxonomyTypeEnum::UserInterestTaxonomyType.descriptor
897
+ # @return [Google::Protobuf::EnumDescriptor] for the RealEstatePlaceholderField enum
898
+ def self.real_estate_placeholder_field
899
+ require "google/ads/google_ads/v1/enums/real_estate_placeholder_field_pb.rb"
900
+ Google::Ads::GoogleAds::V1::Enums::RealEstatePlaceholderFieldEnum::RealEstatePlaceholderField.descriptor
965
901
  end
966
902
 
967
- # Returns the descriptor for the ManagerLinkStatus enum
903
+ # Returns the descriptor for the SitelinkPlaceholderField enum
968
904
  #
969
- # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkStatus enum
970
- def self.manager_link_status
971
- require "google/ads/google_ads/v1/enums/manager_link_status_pb.rb"
972
- Google::Ads::GoogleAds::V1::Enums::ManagerLinkStatusEnum::ManagerLinkStatus.descriptor
905
+ # @return [Google::Protobuf::EnumDescriptor] for the SitelinkPlaceholderField enum
906
+ def self.sitelink_placeholder_field
907
+ require "google/ads/google_ads/v1/enums/sitelink_placeholder_field_pb.rb"
908
+ Google::Ads::GoogleAds::V1::Enums::SitelinkPlaceholderFieldEnum::SitelinkPlaceholderField.descriptor
973
909
  end
974
910
 
975
- # Returns the descriptor for the MobileDeviceType enum
911
+ # Returns the descriptor for the StructuredSnippetPlaceholderField enum
976
912
  #
977
- # @return [Google::Protobuf::EnumDescriptor] for the MobileDeviceType enum
978
- def self.mobile_device_type
979
- require "google/ads/google_ads/v1/enums/mobile_device_type_pb.rb"
980
- Google::Ads::GoogleAds::V1::Enums::MobileDeviceTypeEnum::MobileDeviceType.descriptor
913
+ # @return [Google::Protobuf::EnumDescriptor] for the StructuredSnippetPlaceholderField enum
914
+ def self.structured_snippet_placeholder_field
915
+ require "google/ads/google_ads/v1/enums/structured_snippet_placeholder_field_pb.rb"
916
+ Google::Ads::GoogleAds::V1::Enums::StructuredSnippetPlaceholderFieldEnum::StructuredSnippetPlaceholderField.descriptor
981
917
  end
982
918
 
983
- # Returns the descriptor for the SearchTermTargetingStatus enum
919
+ # Returns the descriptor for the TravelPlaceholderField enum
984
920
  #
985
- # @return [Google::Protobuf::EnumDescriptor] for the SearchTermTargetingStatus enum
986
- def self.search_term_targeting_status
987
- require "google/ads/google_ads/v1/enums/search_term_targeting_status_pb.rb"
988
- Google::Ads::GoogleAds::V1::Enums::SearchTermTargetingStatusEnum::SearchTermTargetingStatus.descriptor
921
+ # @return [Google::Protobuf::EnumDescriptor] for the TravelPlaceholderField enum
922
+ def self.travel_placeholder_field
923
+ require "google/ads/google_ads/v1/enums/travel_placeholder_field_pb.rb"
924
+ Google::Ads::GoogleAds::V1::Enums::TravelPlaceholderFieldEnum::TravelPlaceholderField.descriptor
989
925
  end
990
926
 
991
- # Returns the descriptor for the SimulationModificationMethod enum
927
+ # Returns the descriptor for the MediaType enum
992
928
  #
993
- # @return [Google::Protobuf::EnumDescriptor] for the SimulationModificationMethod enum
994
- def self.simulation_modification_method
995
- require "google/ads/google_ads/v1/enums/simulation_modification_method_pb.rb"
996
- Google::Ads::GoogleAds::V1::Enums::SimulationModificationMethodEnum::SimulationModificationMethod.descriptor
929
+ # @return [Google::Protobuf::EnumDescriptor] for the MediaType enum
930
+ def self.media_type
931
+ require "google/ads/google_ads/v1/enums/media_type_pb.rb"
932
+ Google::Ads::GoogleAds::V1::Enums::MediaTypeEnum::MediaType.descriptor
997
933
  end
998
934
 
999
- # Returns the descriptor for the SimulationType enum
935
+ # Returns the descriptor for the LabelStatus enum
1000
936
  #
1001
- # @return [Google::Protobuf::EnumDescriptor] for the SimulationType enum
1002
- def self.simulation_type
1003
- require "google/ads/google_ads/v1/enums/simulation_type_pb.rb"
1004
- Google::Ads::GoogleAds::V1::Enums::SimulationTypeEnum::SimulationType.descriptor
937
+ # @return [Google::Protobuf::EnumDescriptor] for the LabelStatus enum
938
+ def self.label_status
939
+ require "google/ads/google_ads/v1/enums/label_status_pb.rb"
940
+ Google::Ads::GoogleAds::V1::Enums::LabelStatusEnum::LabelStatus.descriptor
1005
941
  end
1006
942
 
1007
- # Returns the descriptor for the AffiliateLocationFeedRelationshipType enum
943
+ # Returns the descriptor for the AccountBudgetProposalStatus enum
1008
944
  #
1009
- # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationFeedRelationshipType enum
1010
- def self.affiliate_location_feed_relationship_type
1011
- require "google/ads/google_ads/v1/enums/affiliate_location_feed_relationship_type_pb.rb"
1012
- Google::Ads::GoogleAds::V1::Enums::AffiliateLocationFeedRelationshipTypeEnum::AffiliateLocationFeedRelationshipType.descriptor
945
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalStatus enum
946
+ def self.account_budget_proposal_status
947
+ require "google/ads/google_ads/v1/enums/account_budget_proposal_status_pb.rb"
948
+ Google::Ads::GoogleAds::V1::Enums::AccountBudgetProposalStatusEnum::AccountBudgetProposalStatus.descriptor
1013
949
  end
1014
950
 
1015
- # Returns the descriptor for the FeedAttributeType enum
1016
- #
1017
- # @return [Google::Protobuf::EnumDescriptor] for the FeedAttributeType enum
1018
- def self.feed_attribute_type
1019
- require "google/ads/google_ads/v1/enums/feed_attribute_type_pb.rb"
1020
- Google::Ads::GoogleAds::V1::Enums::FeedAttributeTypeEnum::FeedAttributeType.descriptor
951
+ # Returns the descriptor for the AccountBudgetProposalType enum
952
+ #
953
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalType enum
954
+ def self.account_budget_proposal_type
955
+ require "google/ads/google_ads/v1/enums/account_budget_proposal_type_pb.rb"
956
+ Google::Ads::GoogleAds::V1::Enums::AccountBudgetProposalTypeEnum::AccountBudgetProposalType.descriptor
1021
957
  end
1022
958
 
1023
- # Returns the descriptor for the FeedOrigin enum
959
+ # Returns the descriptor for the SpendingLimitType enum
1024
960
  #
1025
- # @return [Google::Protobuf::EnumDescriptor] for the FeedOrigin enum
1026
- def self.feed_origin
1027
- require "google/ads/google_ads/v1/enums/feed_origin_pb.rb"
1028
- Google::Ads::GoogleAds::V1::Enums::FeedOriginEnum::FeedOrigin.descriptor
961
+ # @return [Google::Protobuf::EnumDescriptor] for the SpendingLimitType enum
962
+ def self.spending_limit_type
963
+ require "google/ads/google_ads/v1/enums/spending_limit_type_pb.rb"
964
+ Google::Ads::GoogleAds::V1::Enums::SpendingLimitTypeEnum::SpendingLimitType.descriptor
1029
965
  end
1030
966
 
1031
- # Returns the descriptor for the FeedStatus enum
967
+ # Returns the descriptor for the TimeType enum
1032
968
  #
1033
- # @return [Google::Protobuf::EnumDescriptor] for the FeedStatus enum
1034
- def self.feed_status
1035
- require "google/ads/google_ads/v1/enums/feed_status_pb.rb"
1036
- Google::Ads::GoogleAds::V1::Enums::FeedStatusEnum::FeedStatus.descriptor
969
+ # @return [Google::Protobuf::EnumDescriptor] for the TimeType enum
970
+ def self.time_type
971
+ require "google/ads/google_ads/v1/enums/time_type_pb.rb"
972
+ Google::Ads::GoogleAds::V1::Enums::TimeTypeEnum::TimeType.descriptor
1037
973
  end
1038
974
 
1039
- # Returns the descriptor for the Operator enum
975
+ # Returns the descriptor for the ChangeStatusOperation enum
1040
976
  #
1041
- # @return [Google::Protobuf::EnumDescriptor] for the Operator enum
1042
- def self.operator
1043
- require "google/ads/google_ads/v1/resources/feed_pb.rb"
1044
- Google::Ads::GoogleAds::V1::Resources::FeedAttributeOperation::Operator.descriptor
977
+ # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusOperation enum
978
+ def self.change_status_operation
979
+ require "google/ads/google_ads/v1/enums/change_status_operation_pb.rb"
980
+ Google::Ads::GoogleAds::V1::Enums::ChangeStatusOperationEnum::ChangeStatusOperation.descriptor
1045
981
  end
1046
982
 
1047
- # Returns the descriptor for the SharedSetStatus enum
983
+ # Returns the descriptor for the ChangeStatusResourceType enum
1048
984
  #
1049
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetStatus enum
1050
- def self.shared_set_status
1051
- require "google/ads/google_ads/v1/enums/shared_set_status_pb.rb"
1052
- Google::Ads::GoogleAds::V1::Enums::SharedSetStatusEnum::SharedSetStatus.descriptor
985
+ # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusResourceType enum
986
+ def self.change_status_resource_type
987
+ require "google/ads/google_ads/v1/enums/change_status_resource_type_pb.rb"
988
+ Google::Ads::GoogleAds::V1::Enums::ChangeStatusResourceTypeEnum::ChangeStatusResourceType.descriptor
1053
989
  end
1054
990
 
1055
- # Returns the descriptor for the SharedSetType enum
991
+ # Returns the descriptor for the MatchingFunctionContextType enum
1056
992
  #
1057
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetType enum
1058
- def self.shared_set_type
1059
- require "google/ads/google_ads/v1/enums/shared_set_type_pb.rb"
1060
- Google::Ads::GoogleAds::V1::Enums::SharedSetTypeEnum::SharedSetType.descriptor
993
+ # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionContextType enum
994
+ def self.matching_function_context_type
995
+ require "google/ads/google_ads/v1/enums/matching_function_context_type_pb.rb"
996
+ Google::Ads::GoogleAds::V1::Enums::MatchingFunctionContextTypeEnum::MatchingFunctionContextType.descriptor
1061
997
  end
1062
998
 
1063
- # Returns the descriptor for the PageOnePromotedStrategyGoal enum
999
+ # Returns the descriptor for the MatchingFunctionOperator enum
1064
1000
  #
1065
- # @return [Google::Protobuf::EnumDescriptor] for the PageOnePromotedStrategyGoal enum
1066
- def self.page_one_promoted_strategy_goal
1067
- require "google/ads/google_ads/v1/enums/page_one_promoted_strategy_goal_pb.rb"
1068
- Google::Ads::GoogleAds::V1::Enums::PageOnePromotedStrategyGoalEnum::PageOnePromotedStrategyGoal.descriptor
1001
+ # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionOperator enum
1002
+ def self.matching_function_operator
1003
+ require "google/ads/google_ads/v1/enums/matching_function_operator_pb.rb"
1004
+ Google::Ads::GoogleAds::V1::Enums::MatchingFunctionOperatorEnum::MatchingFunctionOperator.descriptor
1069
1005
  end
1070
1006
 
1071
- # Returns the descriptor for the TargetImpressionShareLocation enum
1007
+ # Returns the descriptor for the FeedLinkStatus enum
1072
1008
  #
1073
- # @return [Google::Protobuf::EnumDescriptor] for the TargetImpressionShareLocation enum
1074
- def self.target_impression_share_location
1075
- require "google/ads/google_ads/v1/enums/target_impression_share_location_pb.rb"
1076
- Google::Ads::GoogleAds::V1::Enums::TargetImpressionShareLocationEnum::TargetImpressionShareLocation.descriptor
1009
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedLinkStatus enum
1010
+ def self.feed_link_status
1011
+ require "google/ads/google_ads/v1/enums/feed_link_status_pb.rb"
1012
+ Google::Ads::GoogleAds::V1::Enums::FeedLinkStatusEnum::FeedLinkStatus.descriptor
1077
1013
  end
1078
1014
 
1079
- # Returns the descriptor for the BiddingStrategyStatus enum
1015
+ # Returns the descriptor for the KeywordPlanForecastInterval enum
1080
1016
  #
1081
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyStatus enum
1082
- def self.bidding_strategy_status
1083
- require "google/ads/google_ads/v1/enums/bidding_strategy_status_pb.rb"
1084
- Google::Ads::GoogleAds::V1::Enums::BiddingStrategyStatusEnum::BiddingStrategyStatus.descriptor
1017
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanForecastInterval enum
1018
+ def self.keyword_plan_forecast_interval
1019
+ require "google/ads/google_ads/v1/enums/keyword_plan_forecast_interval_pb.rb"
1020
+ Google::Ads::GoogleAds::V1::Enums::KeywordPlanForecastIntervalEnum::KeywordPlanForecastInterval.descriptor
1085
1021
  end
1086
1022
 
1087
- # Returns the descriptor for the BiddingStrategyType enum
1023
+ # Returns the descriptor for the GoogleAdsFieldCategory enum
1088
1024
  #
1089
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyType enum
1090
- def self.bidding_strategy_type
1091
- require "google/ads/google_ads/v1/enums/bidding_strategy_type_pb.rb"
1092
- Google::Ads::GoogleAds::V1::Enums::BiddingStrategyTypeEnum::BiddingStrategyType.descriptor
1025
+ # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldCategory enum
1026
+ def self.google_ads_field_category
1027
+ require "google/ads/google_ads/v1/enums/google_ads_field_category_pb.rb"
1028
+ Google::Ads::GoogleAds::V1::Enums::GoogleAdsFieldCategoryEnum::GoogleAdsFieldCategory.descriptor
1093
1029
  end
1094
1030
 
1095
- # Returns the descriptor for the BidModifierSource enum
1031
+ # Returns the descriptor for the GoogleAdsFieldDataType enum
1096
1032
  #
1097
- # @return [Google::Protobuf::EnumDescriptor] for the BidModifierSource enum
1098
- def self.bid_modifier_source
1099
- require "google/ads/google_ads/v1/enums/bid_modifier_source_pb.rb"
1100
- Google::Ads::GoogleAds::V1::Enums::BidModifierSourceEnum::BidModifierSource.descriptor
1033
+ # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldDataType enum
1034
+ def self.google_ads_field_data_type
1035
+ require "google/ads/google_ads/v1/enums/google_ads_field_data_type_pb.rb"
1036
+ Google::Ads::GoogleAds::V1::Enums::GoogleAdsFieldDataTypeEnum::GoogleAdsFieldDataType.descriptor
1101
1037
  end
1102
1038
 
1103
- # Returns the descriptor for the CustomerMatchUploadKeyType enum
1039
+ # Returns the descriptor for the GeoTargetConstantStatus enum
1104
1040
  #
1105
- # @return [Google::Protobuf::EnumDescriptor] for the CustomerMatchUploadKeyType enum
1106
- def self.customer_match_upload_key_type
1107
- require "google/ads/google_ads/v1/enums/customer_match_upload_key_type_pb.rb"
1108
- Google::Ads::GoogleAds::V1::Enums::CustomerMatchUploadKeyTypeEnum::CustomerMatchUploadKeyType.descriptor
1041
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetConstantStatus enum
1042
+ def self.geo_target_constant_status
1043
+ require "google/ads/google_ads/v1/enums/geo_target_constant_status_pb.rb"
1044
+ Google::Ads::GoogleAds::V1::Enums::GeoTargetConstantStatusEnum::GeoTargetConstantStatus.descriptor
1109
1045
  end
1110
1046
 
1111
- # Returns the descriptor for the UserListCombinedRuleOperator enum
1047
+ # Returns the descriptor for the MerchantCenterLinkStatus enum
1112
1048
  #
1113
- # @return [Google::Protobuf::EnumDescriptor] for the UserListCombinedRuleOperator enum
1114
- def self.user_list_combined_rule_operator
1115
- require "google/ads/google_ads/v1/enums/user_list_combined_rule_operator_pb.rb"
1116
- Google::Ads::GoogleAds::V1::Enums::UserListCombinedRuleOperatorEnum::UserListCombinedRuleOperator.descriptor
1049
+ # @return [Google::Protobuf::EnumDescriptor] for the MerchantCenterLinkStatus enum
1050
+ def self.merchant_center_link_status
1051
+ require "google/ads/google_ads/v1/enums/merchant_center_link_status_pb.rb"
1052
+ Google::Ads::GoogleAds::V1::Enums::MerchantCenterLinkStatusEnum::MerchantCenterLinkStatus.descriptor
1117
1053
  end
1118
1054
 
1119
- # Returns the descriptor for the UserListCrmDataSourceType enum
1055
+ # Returns the descriptor for the TrackingCodePageFormat enum
1120
1056
  #
1121
- # @return [Google::Protobuf::EnumDescriptor] for the UserListCrmDataSourceType enum
1122
- def self.user_list_crm_data_source_type
1123
- require "google/ads/google_ads/v1/enums/user_list_crm_data_source_type_pb.rb"
1124
- Google::Ads::GoogleAds::V1::Enums::UserListCrmDataSourceTypeEnum::UserListCrmDataSourceType.descriptor
1057
+ # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodePageFormat enum
1058
+ def self.tracking_code_page_format
1059
+ require "google/ads/google_ads/v1/enums/tracking_code_page_format_pb.rb"
1060
+ Google::Ads::GoogleAds::V1::Enums::TrackingCodePageFormatEnum::TrackingCodePageFormat.descriptor
1125
1061
  end
1126
1062
 
1127
- # Returns the descriptor for the UserListDateRuleItemOperator enum
1063
+ # Returns the descriptor for the TrackingCodeType enum
1128
1064
  #
1129
- # @return [Google::Protobuf::EnumDescriptor] for the UserListDateRuleItemOperator enum
1130
- def self.user_list_date_rule_item_operator
1131
- require "google/ads/google_ads/v1/enums/user_list_date_rule_item_operator_pb.rb"
1132
- Google::Ads::GoogleAds::V1::Enums::UserListDateRuleItemOperatorEnum::UserListDateRuleItemOperator.descriptor
1065
+ # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodeType enum
1066
+ def self.tracking_code_type
1067
+ require "google/ads/google_ads/v1/enums/tracking_code_type_pb.rb"
1068
+ Google::Ads::GoogleAds::V1::Enums::TrackingCodeTypeEnum::TrackingCodeType.descriptor
1133
1069
  end
1134
1070
 
1135
- # Returns the descriptor for the UserListLogicalRuleOperator enum
1071
+ # Returns the descriptor for the FeedItemTargetType enum
1136
1072
  #
1137
- # @return [Google::Protobuf::EnumDescriptor] for the UserListLogicalRuleOperator enum
1138
- def self.user_list_logical_rule_operator
1139
- require "google/ads/google_ads/v1/enums/user_list_logical_rule_operator_pb.rb"
1140
- Google::Ads::GoogleAds::V1::Enums::UserListLogicalRuleOperatorEnum::UserListLogicalRuleOperator.descriptor
1073
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetType enum
1074
+ def self.feed_item_target_type
1075
+ require "google/ads/google_ads/v1/enums/feed_item_target_type_pb.rb"
1076
+ Google::Ads::GoogleAds::V1::Enums::FeedItemTargetTypeEnum::FeedItemTargetType.descriptor
1141
1077
  end
1142
1078
 
1143
- # Returns the descriptor for the UserListNumberRuleItemOperator enum
1079
+ # Returns the descriptor for the AccountBudgetStatus enum
1144
1080
  #
1145
- # @return [Google::Protobuf::EnumDescriptor] for the UserListNumberRuleItemOperator enum
1146
- def self.user_list_number_rule_item_operator
1147
- require "google/ads/google_ads/v1/enums/user_list_number_rule_item_operator_pb.rb"
1148
- Google::Ads::GoogleAds::V1::Enums::UserListNumberRuleItemOperatorEnum::UserListNumberRuleItemOperator.descriptor
1081
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetStatus enum
1082
+ def self.account_budget_status
1083
+ require "google/ads/google_ads/v1/enums/account_budget_status_pb.rb"
1084
+ Google::Ads::GoogleAds::V1::Enums::AccountBudgetStatusEnum::AccountBudgetStatus.descriptor
1149
1085
  end
1150
1086
 
1151
- # Returns the descriptor for the UserListPrepopulationStatus enum
1087
+ # Returns the descriptor for the AttributionModel enum
1152
1088
  #
1153
- # @return [Google::Protobuf::EnumDescriptor] for the UserListPrepopulationStatus enum
1154
- def self.user_list_prepopulation_status
1155
- require "google/ads/google_ads/v1/enums/user_list_prepopulation_status_pb.rb"
1156
- Google::Ads::GoogleAds::V1::Enums::UserListPrepopulationStatusEnum::UserListPrepopulationStatus.descriptor
1089
+ # @return [Google::Protobuf::EnumDescriptor] for the AttributionModel enum
1090
+ def self.attribution_model
1091
+ require "google/ads/google_ads/v1/enums/attribution_model_pb.rb"
1092
+ Google::Ads::GoogleAds::V1::Enums::AttributionModelEnum::AttributionModel.descriptor
1157
1093
  end
1158
1094
 
1159
- # Returns the descriptor for the UserListRuleType enum
1095
+ # Returns the descriptor for the ConversionActionCategory enum
1160
1096
  #
1161
- # @return [Google::Protobuf::EnumDescriptor] for the UserListRuleType enum
1162
- def self.user_list_rule_type
1163
- require "google/ads/google_ads/v1/enums/user_list_rule_type_pb.rb"
1164
- Google::Ads::GoogleAds::V1::Enums::UserListRuleTypeEnum::UserListRuleType.descriptor
1097
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCategory enum
1098
+ def self.conversion_action_category
1099
+ require "google/ads/google_ads/v1/enums/conversion_action_category_pb.rb"
1100
+ Google::Ads::GoogleAds::V1::Enums::ConversionActionCategoryEnum::ConversionActionCategory.descriptor
1165
1101
  end
1166
1102
 
1167
- # Returns the descriptor for the UserListStringRuleItemOperator enum
1103
+ # Returns the descriptor for the ConversionActionCountingType enum
1168
1104
  #
1169
- # @return [Google::Protobuf::EnumDescriptor] for the UserListStringRuleItemOperator enum
1170
- def self.user_list_string_rule_item_operator
1171
- require "google/ads/google_ads/v1/enums/user_list_string_rule_item_operator_pb.rb"
1172
- Google::Ads::GoogleAds::V1::Enums::UserListStringRuleItemOperatorEnum::UserListStringRuleItemOperator.descriptor
1105
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCountingType enum
1106
+ def self.conversion_action_counting_type
1107
+ require "google/ads/google_ads/v1/enums/conversion_action_counting_type_pb.rb"
1108
+ Google::Ads::GoogleAds::V1::Enums::ConversionActionCountingTypeEnum::ConversionActionCountingType.descriptor
1173
1109
  end
1174
1110
 
1175
- # Returns the descriptor for the AccessReason enum
1111
+ # Returns the descriptor for the ConversionActionStatus enum
1176
1112
  #
1177
- # @return [Google::Protobuf::EnumDescriptor] for the AccessReason enum
1178
- def self.access_reason
1179
- require "google/ads/google_ads/v1/enums/access_reason_pb.rb"
1180
- Google::Ads::GoogleAds::V1::Enums::AccessReasonEnum::AccessReason.descriptor
1113
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionStatus enum
1114
+ def self.conversion_action_status
1115
+ require "google/ads/google_ads/v1/enums/conversion_action_status_pb.rb"
1116
+ Google::Ads::GoogleAds::V1::Enums::ConversionActionStatusEnum::ConversionActionStatus.descriptor
1181
1117
  end
1182
1118
 
1183
- # Returns the descriptor for the UserListAccessStatus enum
1119
+ # Returns the descriptor for the ConversionActionType enum
1184
1120
  #
1185
- # @return [Google::Protobuf::EnumDescriptor] for the UserListAccessStatus enum
1186
- def self.user_list_access_status
1187
- require "google/ads/google_ads/v1/enums/user_list_access_status_pb.rb"
1188
- Google::Ads::GoogleAds::V1::Enums::UserListAccessStatusEnum::UserListAccessStatus.descriptor
1121
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionType enum
1122
+ def self.conversion_action_type
1123
+ require "google/ads/google_ads/v1/enums/conversion_action_type_pb.rb"
1124
+ Google::Ads::GoogleAds::V1::Enums::ConversionActionTypeEnum::ConversionActionType.descriptor
1189
1125
  end
1190
1126
 
1191
- # Returns the descriptor for the UserListClosingReason enum
1127
+ # Returns the descriptor for the DataDrivenModelStatus enum
1192
1128
  #
1193
- # @return [Google::Protobuf::EnumDescriptor] for the UserListClosingReason enum
1194
- def self.user_list_closing_reason
1195
- require "google/ads/google_ads/v1/enums/user_list_closing_reason_pb.rb"
1196
- Google::Ads::GoogleAds::V1::Enums::UserListClosingReasonEnum::UserListClosingReason.descriptor
1129
+ # @return [Google::Protobuf::EnumDescriptor] for the DataDrivenModelStatus enum
1130
+ def self.data_driven_model_status
1131
+ require "google/ads/google_ads/v1/enums/data_driven_model_status_pb.rb"
1132
+ Google::Ads::GoogleAds::V1::Enums::DataDrivenModelStatusEnum::DataDrivenModelStatus.descriptor
1197
1133
  end
1198
1134
 
1199
- # Returns the descriptor for the UserListMembershipStatus enum
1135
+ # Returns the descriptor for the CustomerPayPerConversionEligibilityFailureReason enum
1200
1136
  #
1201
- # @return [Google::Protobuf::EnumDescriptor] for the UserListMembershipStatus enum
1202
- def self.user_list_membership_status
1203
- require "google/ads/google_ads/v1/enums/user_list_membership_status_pb.rb"
1204
- Google::Ads::GoogleAds::V1::Enums::UserListMembershipStatusEnum::UserListMembershipStatus.descriptor
1137
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomerPayPerConversionEligibilityFailureReason enum
1138
+ def self.customer_pay_per_conversion_eligibility_failure_reason
1139
+ require "google/ads/google_ads/v1/enums/customer_pay_per_conversion_eligibility_failure_reason_pb.rb"
1140
+ Google::Ads::GoogleAds::V1::Enums::CustomerPayPerConversionEligibilityFailureReasonEnum::CustomerPayPerConversionEligibilityFailureReason.descriptor
1205
1141
  end
1206
1142
 
1207
- # Returns the descriptor for the UserListSizeRange enum
1143
+ # Returns the descriptor for the CampaignExperimentStatus enum
1208
1144
  #
1209
- # @return [Google::Protobuf::EnumDescriptor] for the UserListSizeRange enum
1210
- def self.user_list_size_range
1211
- require "google/ads/google_ads/v1/enums/user_list_size_range_pb.rb"
1212
- Google::Ads::GoogleAds::V1::Enums::UserListSizeRangeEnum::UserListSizeRange.descriptor
1145
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignExperimentStatus enum
1146
+ def self.campaign_experiment_status
1147
+ require "google/ads/google_ads/v1/enums/campaign_experiment_status_pb.rb"
1148
+ Google::Ads::GoogleAds::V1::Enums::CampaignExperimentStatusEnum::CampaignExperimentStatus.descriptor
1213
1149
  end
1214
1150
 
1215
- # Returns the descriptor for the UserListType enum
1151
+ # Returns the descriptor for the CampaignExperimentTrafficSplitType enum
1216
1152
  #
1217
- # @return [Google::Protobuf::EnumDescriptor] for the UserListType enum
1218
- def self.user_list_type
1219
- require "google/ads/google_ads/v1/enums/user_list_type_pb.rb"
1220
- Google::Ads::GoogleAds::V1::Enums::UserListTypeEnum::UserListType.descriptor
1153
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignExperimentTrafficSplitType enum
1154
+ def self.campaign_experiment_traffic_split_type
1155
+ require "google/ads/google_ads/v1/enums/campaign_experiment_traffic_split_type_pb.rb"
1156
+ Google::Ads::GoogleAds::V1::Enums::CampaignExperimentTrafficSplitTypeEnum::CampaignExperimentTrafficSplitType.descriptor
1221
1157
  end
1222
1158
 
1223
- # Returns the descriptor for the AdGroupCriterionApprovalStatus enum
1159
+ # Returns the descriptor for the MobileDeviceType enum
1224
1160
  #
1225
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionApprovalStatus enum
1226
- def self.ad_group_criterion_approval_status
1227
- require "google/ads/google_ads/v1/enums/ad_group_criterion_approval_status_pb.rb"
1228
- Google::Ads::GoogleAds::V1::Enums::AdGroupCriterionApprovalStatusEnum::AdGroupCriterionApprovalStatus.descriptor
1161
+ # @return [Google::Protobuf::EnumDescriptor] for the MobileDeviceType enum
1162
+ def self.mobile_device_type
1163
+ require "google/ads/google_ads/v1/enums/mobile_device_type_pb.rb"
1164
+ Google::Ads::GoogleAds::V1::Enums::MobileDeviceTypeEnum::MobileDeviceType.descriptor
1229
1165
  end
1230
1166
 
1231
- # Returns the descriptor for the AdGroupCriterionStatus enum
1167
+ # Returns the descriptor for the OperatingSystemVersionOperatorType enum
1232
1168
  #
1233
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionStatus enum
1234
- def self.ad_group_criterion_status
1235
- require "google/ads/google_ads/v1/enums/ad_group_criterion_status_pb.rb"
1236
- Google::Ads::GoogleAds::V1::Enums::AdGroupCriterionStatusEnum::AdGroupCriterionStatus.descriptor
1169
+ # @return [Google::Protobuf::EnumDescriptor] for the OperatingSystemVersionOperatorType enum
1170
+ def self.operating_system_version_operator_type
1171
+ require "google/ads/google_ads/v1/enums/operating_system_version_operator_type_pb.rb"
1172
+ Google::Ads::GoogleAds::V1::Enums::OperatingSystemVersionOperatorTypeEnum::OperatingSystemVersionOperatorType.descriptor
1237
1173
  end
1238
1174
 
1239
- # Returns the descriptor for the BiddingSource enum
1175
+ # Returns the descriptor for the SearchTermTargetingStatus enum
1240
1176
  #
1241
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingSource enum
1242
- def self.bidding_source
1243
- require "google/ads/google_ads/v1/enums/bidding_source_pb.rb"
1244
- Google::Ads::GoogleAds::V1::Enums::BiddingSourceEnum::BiddingSource.descriptor
1177
+ # @return [Google::Protobuf::EnumDescriptor] for the SearchTermTargetingStatus enum
1178
+ def self.search_term_targeting_status
1179
+ require "google/ads/google_ads/v1/enums/search_term_targeting_status_pb.rb"
1180
+ Google::Ads::GoogleAds::V1::Enums::SearchTermTargetingStatusEnum::SearchTermTargetingStatus.descriptor
1245
1181
  end
1246
1182
 
1247
- # Returns the descriptor for the CriterionSystemServingStatus enum
1183
+ # Returns the descriptor for the AffiliateLocationFeedRelationshipType enum
1248
1184
  #
1249
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionSystemServingStatus enum
1250
- def self.criterion_system_serving_status
1251
- require "google/ads/google_ads/v1/enums/criterion_system_serving_status_pb.rb"
1252
- Google::Ads::GoogleAds::V1::Enums::CriterionSystemServingStatusEnum::CriterionSystemServingStatus.descriptor
1185
+ # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationFeedRelationshipType enum
1186
+ def self.affiliate_location_feed_relationship_type
1187
+ require "google/ads/google_ads/v1/enums/affiliate_location_feed_relationship_type_pb.rb"
1188
+ Google::Ads::GoogleAds::V1::Enums::AffiliateLocationFeedRelationshipTypeEnum::AffiliateLocationFeedRelationshipType.descriptor
1253
1189
  end
1254
1190
 
1255
- # Returns the descriptor for the QualityScoreBucket enum
1191
+ # Returns the descriptor for the FeedAttributeType enum
1256
1192
  #
1257
- # @return [Google::Protobuf::EnumDescriptor] for the QualityScoreBucket enum
1258
- def self.quality_score_bucket
1259
- require "google/ads/google_ads/v1/enums/quality_score_bucket_pb.rb"
1260
- Google::Ads::GoogleAds::V1::Enums::QualityScoreBucketEnum::QualityScoreBucket.descriptor
1193
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedAttributeType enum
1194
+ def self.feed_attribute_type
1195
+ require "google/ads/google_ads/v1/enums/feed_attribute_type_pb.rb"
1196
+ Google::Ads::GoogleAds::V1::Enums::FeedAttributeTypeEnum::FeedAttributeType.descriptor
1261
1197
  end
1262
1198
 
1263
- # Returns the descriptor for the FeedItemTargetType enum
1199
+ # Returns the descriptor for the FeedOrigin enum
1264
1200
  #
1265
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetType enum
1266
- def self.feed_item_target_type
1267
- require "google/ads/google_ads/v1/enums/feed_item_target_type_pb.rb"
1268
- Google::Ads::GoogleAds::V1::Enums::FeedItemTargetTypeEnum::FeedItemTargetType.descriptor
1201
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedOrigin enum
1202
+ def self.feed_origin
1203
+ require "google/ads/google_ads/v1/enums/feed_origin_pb.rb"
1204
+ Google::Ads::GoogleAds::V1::Enums::FeedOriginEnum::FeedOrigin.descriptor
1269
1205
  end
1270
1206
 
1271
- # Returns the descriptor for the MerchantCenterLinkStatus enum
1207
+ # Returns the descriptor for the FeedStatus enum
1272
1208
  #
1273
- # @return [Google::Protobuf::EnumDescriptor] for the MerchantCenterLinkStatus enum
1274
- def self.merchant_center_link_status
1275
- require "google/ads/google_ads/v1/enums/merchant_center_link_status_pb.rb"
1276
- Google::Ads::GoogleAds::V1::Enums::MerchantCenterLinkStatusEnum::MerchantCenterLinkStatus.descriptor
1209
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedStatus enum
1210
+ def self.feed_status
1211
+ require "google/ads/google_ads/v1/enums/feed_status_pb.rb"
1212
+ Google::Ads::GoogleAds::V1::Enums::FeedStatusEnum::FeedStatus.descriptor
1277
1213
  end
1278
1214
 
1279
- # Returns the descriptor for the CampaignDraftStatus enum
1215
+ # Returns the descriptor for the Operator enum
1280
1216
  #
1281
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftStatus enum
1282
- def self.campaign_draft_status
1283
- require "google/ads/google_ads/v1/enums/campaign_draft_status_pb.rb"
1284
- Google::Ads::GoogleAds::V1::Enums::CampaignDraftStatusEnum::CampaignDraftStatus.descriptor
1217
+ # @return [Google::Protobuf::EnumDescriptor] for the Operator enum
1218
+ def self.operator
1219
+ require "google/ads/google_ads/v1/resources/feed_pb.rb"
1220
+ Google::Ads::GoogleAds::V1::Resources::FeedAttributeOperation::Operator.descriptor
1285
1221
  end
1286
1222
 
1287
1223
  # Returns the descriptor for the TargetingDimension enum
@@ -1316,92 +1252,124 @@ module Google
1316
1252
  Google::Ads::GoogleAds::V1::Enums::AdGroupTypeEnum::AdGroupType.descriptor
1317
1253
  end
1318
1254
 
1319
- # Returns the descriptor for the LabelStatus enum
1255
+ # Returns the descriptor for the BudgetDeliveryMethod enum
1320
1256
  #
1321
- # @return [Google::Protobuf::EnumDescriptor] for the LabelStatus enum
1322
- def self.label_status
1323
- require "google/ads/google_ads/v1/enums/label_status_pb.rb"
1324
- Google::Ads::GoogleAds::V1::Enums::LabelStatusEnum::LabelStatus.descriptor
1257
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetDeliveryMethod enum
1258
+ def self.budget_delivery_method
1259
+ require "google/ads/google_ads/v1/enums/budget_delivery_method_pb.rb"
1260
+ Google::Ads::GoogleAds::V1::Enums::BudgetDeliveryMethodEnum::BudgetDeliveryMethod.descriptor
1325
1261
  end
1326
1262
 
1327
- # Returns the descriptor for the FeedItemQualityApprovalStatus enum
1263
+ # Returns the descriptor for the BudgetPeriod enum
1328
1264
  #
1329
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityApprovalStatus enum
1330
- def self.feed_item_quality_approval_status
1331
- require "google/ads/google_ads/v1/enums/feed_item_quality_approval_status_pb.rb"
1332
- Google::Ads::GoogleAds::V1::Enums::FeedItemQualityApprovalStatusEnum::FeedItemQualityApprovalStatus.descriptor
1265
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetPeriod enum
1266
+ def self.budget_period
1267
+ require "google/ads/google_ads/v1/enums/budget_period_pb.rb"
1268
+ Google::Ads::GoogleAds::V1::Enums::BudgetPeriodEnum::BudgetPeriod.descriptor
1333
1269
  end
1334
1270
 
1335
- # Returns the descriptor for the FeedItemQualityDisapprovalReason enum
1271
+ # Returns the descriptor for the BudgetStatus enum
1336
1272
  #
1337
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityDisapprovalReason enum
1338
- def self.feed_item_quality_disapproval_reason
1339
- require "google/ads/google_ads/v1/enums/feed_item_quality_disapproval_reason_pb.rb"
1340
- Google::Ads::GoogleAds::V1::Enums::FeedItemQualityDisapprovalReasonEnum::FeedItemQualityDisapprovalReason.descriptor
1273
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetStatus enum
1274
+ def self.budget_status
1275
+ require "google/ads/google_ads/v1/enums/budget_status_pb.rb"
1276
+ Google::Ads::GoogleAds::V1::Enums::BudgetStatusEnum::BudgetStatus.descriptor
1341
1277
  end
1342
1278
 
1343
- # Returns the descriptor for the FeedItemValidationStatus enum
1279
+ # Returns the descriptor for the BudgetType enum
1344
1280
  #
1345
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationStatus enum
1346
- def self.feed_item_validation_status
1347
- require "google/ads/google_ads/v1/enums/feed_item_validation_status_pb.rb"
1348
- Google::Ads::GoogleAds::V1::Enums::FeedItemValidationStatusEnum::FeedItemValidationStatus.descriptor
1281
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetType enum
1282
+ def self.budget_type
1283
+ require "google/ads/google_ads/v1/enums/budget_type_pb.rb"
1284
+ Google::Ads::GoogleAds::V1::Enums::BudgetTypeEnum::BudgetType.descriptor
1349
1285
  end
1350
1286
 
1351
- # Returns the descriptor for the GeoTargetingRestriction enum
1287
+ # Returns the descriptor for the PlacementType enum
1352
1288
  #
1353
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingRestriction enum
1354
- def self.geo_targeting_restriction
1355
- require "google/ads/google_ads/v1/enums/geo_targeting_restriction_pb.rb"
1356
- Google::Ads::GoogleAds::V1::Enums::GeoTargetingRestrictionEnum::GeoTargetingRestriction.descriptor
1289
+ # @return [Google::Protobuf::EnumDescriptor] for the PlacementType enum
1290
+ def self.placement_type
1291
+ require "google/ads/google_ads/v1/enums/placement_type_pb.rb"
1292
+ Google::Ads::GoogleAds::V1::Enums::PlacementTypeEnum::PlacementType.descriptor
1357
1293
  end
1358
1294
 
1359
- # Returns the descriptor for the FeedItemValidationError enum
1295
+ # Returns the descriptor for the AdGroupAdStatus enum
1360
1296
  #
1361
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationError enum
1362
- def self.feed_item_validation_error
1363
- require "google/ads/google_ads/v1/errors/feed_item_validation_error_pb.rb"
1364
- Google::Ads::GoogleAds::V1::Errors::FeedItemValidationErrorEnum::FeedItemValidationError.descriptor
1297
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdStatus enum
1298
+ def self.ad_group_ad_status
1299
+ require "google/ads/google_ads/v1/enums/ad_group_ad_status_pb.rb"
1300
+ Google::Ads::GoogleAds::V1::Enums::AdGroupAdStatusEnum::AdGroupAdStatus.descriptor
1365
1301
  end
1366
1302
 
1367
- # Returns the descriptor for the AccountBudgetProposalStatus enum
1303
+ # Returns the descriptor for the AdStrength enum
1368
1304
  #
1369
- # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalStatus enum
1370
- def self.account_budget_proposal_status
1371
- require "google/ads/google_ads/v1/enums/account_budget_proposal_status_pb.rb"
1372
- Google::Ads::GoogleAds::V1::Enums::AccountBudgetProposalStatusEnum::AccountBudgetProposalStatus.descriptor
1305
+ # @return [Google::Protobuf::EnumDescriptor] for the AdStrength enum
1306
+ def self.ad_strength
1307
+ require "google/ads/google_ads/v1/enums/ad_strength_pb.rb"
1308
+ Google::Ads::GoogleAds::V1::Enums::AdStrengthEnum::AdStrength.descriptor
1373
1309
  end
1374
1310
 
1375
- # Returns the descriptor for the AccountBudgetProposalType enum
1311
+ # Returns the descriptor for the PageOnePromotedStrategyGoal enum
1376
1312
  #
1377
- # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalType enum
1378
- def self.account_budget_proposal_type
1379
- require "google/ads/google_ads/v1/enums/account_budget_proposal_type_pb.rb"
1380
- Google::Ads::GoogleAds::V1::Enums::AccountBudgetProposalTypeEnum::AccountBudgetProposalType.descriptor
1313
+ # @return [Google::Protobuf::EnumDescriptor] for the PageOnePromotedStrategyGoal enum
1314
+ def self.page_one_promoted_strategy_goal
1315
+ require "google/ads/google_ads/v1/enums/page_one_promoted_strategy_goal_pb.rb"
1316
+ Google::Ads::GoogleAds::V1::Enums::PageOnePromotedStrategyGoalEnum::PageOnePromotedStrategyGoal.descriptor
1381
1317
  end
1382
1318
 
1383
- # Returns the descriptor for the SpendingLimitType enum
1319
+ # Returns the descriptor for the TargetImpressionShareLocation enum
1384
1320
  #
1385
- # @return [Google::Protobuf::EnumDescriptor] for the SpendingLimitType enum
1386
- def self.spending_limit_type
1387
- require "google/ads/google_ads/v1/enums/spending_limit_type_pb.rb"
1388
- Google::Ads::GoogleAds::V1::Enums::SpendingLimitTypeEnum::SpendingLimitType.descriptor
1321
+ # @return [Google::Protobuf::EnumDescriptor] for the TargetImpressionShareLocation enum
1322
+ def self.target_impression_share_location
1323
+ require "google/ads/google_ads/v1/enums/target_impression_share_location_pb.rb"
1324
+ Google::Ads::GoogleAds::V1::Enums::TargetImpressionShareLocationEnum::TargetImpressionShareLocation.descriptor
1389
1325
  end
1390
1326
 
1391
- # Returns the descriptor for the KeywordPlanNetwork enum
1327
+ # Returns the descriptor for the BiddingStrategyStatus enum
1392
1328
  #
1393
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanNetwork enum
1394
- def self.keyword_plan_network
1395
- require "google/ads/google_ads/v1/enums/keyword_plan_network_pb.rb"
1396
- Google::Ads::GoogleAds::V1::Enums::KeywordPlanNetworkEnum::KeywordPlanNetwork.descriptor
1329
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyStatus enum
1330
+ def self.bidding_strategy_status
1331
+ require "google/ads/google_ads/v1/enums/bidding_strategy_status_pb.rb"
1332
+ Google::Ads::GoogleAds::V1::Enums::BiddingStrategyStatusEnum::BiddingStrategyStatus.descriptor
1397
1333
  end
1398
1334
 
1399
- # Returns the descriptor for the AccountBudgetStatus enum
1335
+ # Returns the descriptor for the BiddingStrategyType enum
1400
1336
  #
1401
- # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetStatus enum
1402
- def self.account_budget_status
1403
- require "google/ads/google_ads/v1/enums/account_budget_status_pb.rb"
1404
- Google::Ads::GoogleAds::V1::Enums::AccountBudgetStatusEnum::AccountBudgetStatus.descriptor
1337
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyType enum
1338
+ def self.bidding_strategy_type
1339
+ require "google/ads/google_ads/v1/enums/bidding_strategy_type_pb.rb"
1340
+ Google::Ads::GoogleAds::V1::Enums::BiddingStrategyTypeEnum::BiddingStrategyType.descriptor
1341
+ end
1342
+
1343
+ # Returns the descriptor for the ProductBiddingCategoryStatus enum
1344
+ #
1345
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductBiddingCategoryStatus enum
1346
+ def self.product_bidding_category_status
1347
+ require "google/ads/google_ads/v1/enums/product_bidding_category_status_pb.rb"
1348
+ Google::Ads::GoogleAds::V1::Enums::ProductBiddingCategoryStatusEnum::ProductBiddingCategoryStatus.descriptor
1349
+ end
1350
+
1351
+ # Returns the descriptor for the CustomInterestMemberType enum
1352
+ #
1353
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestMemberType enum
1354
+ def self.custom_interest_member_type
1355
+ require "google/ads/google_ads/v1/enums/custom_interest_member_type_pb.rb"
1356
+ Google::Ads::GoogleAds::V1::Enums::CustomInterestMemberTypeEnum::CustomInterestMemberType.descriptor
1357
+ end
1358
+
1359
+ # Returns the descriptor for the CustomInterestStatus enum
1360
+ #
1361
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestStatus enum
1362
+ def self.custom_interest_status
1363
+ require "google/ads/google_ads/v1/enums/custom_interest_status_pb.rb"
1364
+ Google::Ads::GoogleAds::V1::Enums::CustomInterestStatusEnum::CustomInterestStatus.descriptor
1365
+ end
1366
+
1367
+ # Returns the descriptor for the CustomInterestType enum
1368
+ #
1369
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestType enum
1370
+ def self.custom_interest_type
1371
+ require "google/ads/google_ads/v1/enums/custom_interest_type_pb.rb"
1372
+ Google::Ads::GoogleAds::V1::Enums::CustomInterestTypeEnum::CustomInterestType.descriptor
1405
1373
  end
1406
1374
 
1407
1375
  # Returns the descriptor for the FrequencyCapEventType enum
@@ -1524,12 +1492,44 @@ module Google
1524
1492
  Google::Ads::GoogleAds::V1::Enums::VanityPharmaTextEnum::VanityPharmaText.descriptor
1525
1493
  end
1526
1494
 
1527
- # Returns the descriptor for the ConversionAdjustmentType enum
1495
+ # Returns the descriptor for the KeywordPlanNetwork enum
1496
+ #
1497
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanNetwork enum
1498
+ def self.keyword_plan_network
1499
+ require "google/ads/google_ads/v1/enums/keyword_plan_network_pb.rb"
1500
+ Google::Ads::GoogleAds::V1::Enums::KeywordPlanNetworkEnum::KeywordPlanNetwork.descriptor
1501
+ end
1502
+
1503
+ # Returns the descriptor for the BillingSetupStatus enum
1504
+ #
1505
+ # @return [Google::Protobuf::EnumDescriptor] for the BillingSetupStatus enum
1506
+ def self.billing_setup_status
1507
+ require "google/ads/google_ads/v1/enums/billing_setup_status_pb.rb"
1508
+ Google::Ads::GoogleAds::V1::Enums::BillingSetupStatusEnum::BillingSetupStatus.descriptor
1509
+ end
1510
+
1511
+ # Returns the descriptor for the BidModifierSource enum
1512
+ #
1513
+ # @return [Google::Protobuf::EnumDescriptor] for the BidModifierSource enum
1514
+ def self.bid_modifier_source
1515
+ require "google/ads/google_ads/v1/enums/bid_modifier_source_pb.rb"
1516
+ Google::Ads::GoogleAds::V1::Enums::BidModifierSourceEnum::BidModifierSource.descriptor
1517
+ end
1518
+
1519
+ # Returns the descriptor for the MutateJobStatus enum
1520
+ #
1521
+ # @return [Google::Protobuf::EnumDescriptor] for the MutateJobStatus enum
1522
+ def self.mutate_job_status
1523
+ require "google/ads/google_ads/v1/enums/mutate_job_status_pb.rb"
1524
+ Google::Ads::GoogleAds::V1::Enums::MutateJobStatusEnum::MutateJobStatus.descriptor
1525
+ end
1526
+
1527
+ # Returns the descriptor for the KeywordPlanCompetitionLevel enum
1528
1528
  #
1529
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentType enum
1530
- def self.conversion_adjustment_type
1531
- require "google/ads/google_ads/v1/enums/conversion_adjustment_type_pb.rb"
1532
- Google::Ads::GoogleAds::V1::Enums::ConversionAdjustmentTypeEnum::ConversionAdjustmentType.descriptor
1529
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCompetitionLevel enum
1530
+ def self.keyword_plan_competition_level
1531
+ require "google/ads/google_ads/v1/enums/keyword_plan_competition_level_pb.rb"
1532
+ Google::Ads::GoogleAds::V1::Enums::KeywordPlanCompetitionLevelEnum::KeywordPlanCompetitionLevel.descriptor
1533
1533
  end
1534
1534
 
1535
1535
  # Returns the descriptor for the InteractionEventType enum
@@ -1628,116 +1628,52 @@ module Google
1628
1628
  Google::Ads::GoogleAds::V1::Enums::SlotEnum::Slot.descriptor
1629
1629
  end
1630
1630
 
1631
- # Returns the descriptor for the KeywordPlanCompetitionLevel enum
1632
- #
1633
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCompetitionLevel enum
1634
- def self.keyword_plan_competition_level
1635
- require "google/ads/google_ads/v1/enums/keyword_plan_competition_level_pb.rb"
1636
- Google::Ads::GoogleAds::V1::Enums::KeywordPlanCompetitionLevelEnum::KeywordPlanCompetitionLevel.descriptor
1637
- end
1638
-
1639
- # Returns the descriptor for the KeywordPlanCampaignError enum
1640
- #
1641
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCampaignError enum
1642
- def self.keyword_plan_campaign_error
1643
- require "google/ads/google_ads/v1/errors/keyword_plan_campaign_error_pb.rb"
1644
- Google::Ads::GoogleAds::V1::Errors::KeywordPlanCampaignErrorEnum::KeywordPlanCampaignError.descriptor
1645
- end
1646
-
1647
- # Returns the descriptor for the AdGroupAdError enum
1648
- #
1649
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdError enum
1650
- def self.ad_group_ad_error
1651
- require "google/ads/google_ads/v1/errors/ad_group_ad_error_pb.rb"
1652
- Google::Ads::GoogleAds::V1::Errors::AdGroupAdErrorEnum::AdGroupAdError.descriptor
1653
- end
1654
-
1655
- # Returns the descriptor for the HeaderError enum
1656
- #
1657
- # @return [Google::Protobuf::EnumDescriptor] for the HeaderError enum
1658
- def self.header_error
1659
- require "google/ads/google_ads/v1/errors/header_error_pb.rb"
1660
- Google::Ads::GoogleAds::V1::Errors::HeaderErrorEnum::HeaderError.descriptor
1661
- end
1662
-
1663
- # Returns the descriptor for the RegionCodeError enum
1664
- #
1665
- # @return [Google::Protobuf::EnumDescriptor] for the RegionCodeError enum
1666
- def self.region_code_error
1667
- require "google/ads/google_ads/v1/errors/region_code_error_pb.rb"
1668
- Google::Ads::GoogleAds::V1::Errors::RegionCodeErrorEnum::RegionCodeError.descriptor
1669
- end
1670
-
1671
- # Returns the descriptor for the RecommendationError enum
1672
- #
1673
- # @return [Google::Protobuf::EnumDescriptor] for the RecommendationError enum
1674
- def self.recommendation_error
1675
- require "google/ads/google_ads/v1/errors/recommendation_error_pb.rb"
1676
- Google::Ads::GoogleAds::V1::Errors::RecommendationErrorEnum::RecommendationError.descriptor
1677
- end
1678
-
1679
- # Returns the descriptor for the AdCustomizerError enum
1680
- #
1681
- # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerError enum
1682
- def self.ad_customizer_error
1683
- require "google/ads/google_ads/v1/errors/ad_customizer_error_pb.rb"
1684
- Google::Ads::GoogleAds::V1::Errors::AdCustomizerErrorEnum::AdCustomizerError.descriptor
1685
- end
1686
-
1687
- # Returns the descriptor for the BiddingStrategyError enum
1688
- #
1689
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyError enum
1690
- def self.bidding_strategy_error
1691
- require "google/ads/google_ads/v1/errors/bidding_strategy_error_pb.rb"
1692
- Google::Ads::GoogleAds::V1::Errors::BiddingStrategyErrorEnum::BiddingStrategyError.descriptor
1693
- end
1694
-
1695
- # Returns the descriptor for the CampaignError enum
1631
+ # Returns the descriptor for the ConversionAdjustmentType enum
1696
1632
  #
1697
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignError enum
1698
- def self.campaign_error
1699
- require "google/ads/google_ads/v1/errors/campaign_error_pb.rb"
1700
- Google::Ads::GoogleAds::V1::Errors::CampaignErrorEnum::CampaignError.descriptor
1633
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentType enum
1634
+ def self.conversion_adjustment_type
1635
+ require "google/ads/google_ads/v1/enums/conversion_adjustment_type_pb.rb"
1636
+ Google::Ads::GoogleAds::V1::Enums::ConversionAdjustmentTypeEnum::ConversionAdjustmentType.descriptor
1701
1637
  end
1702
1638
 
1703
- # Returns the descriptor for the MultiplierError enum
1639
+ # Returns the descriptor for the StringLengthError enum
1704
1640
  #
1705
- # @return [Google::Protobuf::EnumDescriptor] for the MultiplierError enum
1706
- def self.multiplier_error
1707
- require "google/ads/google_ads/v1/errors/multiplier_error_pb.rb"
1708
- Google::Ads::GoogleAds::V1::Errors::MultiplierErrorEnum::MultiplierError.descriptor
1641
+ # @return [Google::Protobuf::EnumDescriptor] for the StringLengthError enum
1642
+ def self.string_length_error
1643
+ require "google/ads/google_ads/v1/errors/string_length_error_pb.rb"
1644
+ Google::Ads::GoogleAds::V1::Errors::StringLengthErrorEnum::StringLengthError.descriptor
1709
1645
  end
1710
1646
 
1711
- # Returns the descriptor for the AdxError enum
1647
+ # Returns the descriptor for the CampaignDraftError enum
1712
1648
  #
1713
- # @return [Google::Protobuf::EnumDescriptor] for the AdxError enum
1714
- def self.adx_error
1715
- require "google/ads/google_ads/v1/errors/adx_error_pb.rb"
1716
- Google::Ads::GoogleAds::V1::Errors::AdxErrorEnum::AdxError.descriptor
1649
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftError enum
1650
+ def self.campaign_draft_error
1651
+ require "google/ads/google_ads/v1/errors/campaign_draft_error_pb.rb"
1652
+ Google::Ads::GoogleAds::V1::Errors::CampaignDraftErrorEnum::CampaignDraftError.descriptor
1717
1653
  end
1718
1654
 
1719
- # Returns the descriptor for the PartialFailureError enum
1655
+ # Returns the descriptor for the ContextError enum
1720
1656
  #
1721
- # @return [Google::Protobuf::EnumDescriptor] for the PartialFailureError enum
1722
- def self.partial_failure_error
1723
- require "google/ads/google_ads/v1/errors/partial_failure_error_pb.rb"
1724
- Google::Ads::GoogleAds::V1::Errors::PartialFailureErrorEnum::PartialFailureError.descriptor
1657
+ # @return [Google::Protobuf::EnumDescriptor] for the ContextError enum
1658
+ def self.context_error
1659
+ require "google/ads/google_ads/v1/errors/context_error_pb.rb"
1660
+ Google::Ads::GoogleAds::V1::Errors::ContextErrorEnum::ContextError.descriptor
1725
1661
  end
1726
1662
 
1727
- # Returns the descriptor for the DistinctError enum
1663
+ # Returns the descriptor for the StringFormatError enum
1728
1664
  #
1729
- # @return [Google::Protobuf::EnumDescriptor] for the DistinctError enum
1730
- def self.distinct_error
1731
- require "google/ads/google_ads/v1/errors/distinct_error_pb.rb"
1732
- Google::Ads::GoogleAds::V1::Errors::DistinctErrorEnum::DistinctError.descriptor
1665
+ # @return [Google::Protobuf::EnumDescriptor] for the StringFormatError enum
1666
+ def self.string_format_error
1667
+ require "google/ads/google_ads/v1/errors/string_format_error_pb.rb"
1668
+ Google::Ads::GoogleAds::V1::Errors::StringFormatErrorEnum::StringFormatError.descriptor
1733
1669
  end
1734
1670
 
1735
- # Returns the descriptor for the SharedCriterionError enum
1671
+ # Returns the descriptor for the FieldError enum
1736
1672
  #
1737
- # @return [Google::Protobuf::EnumDescriptor] for the SharedCriterionError enum
1738
- def self.shared_criterion_error
1739
- require "google/ads/google_ads/v1/errors/shared_criterion_error_pb.rb"
1740
- Google::Ads::GoogleAds::V1::Errors::SharedCriterionErrorEnum::SharedCriterionError.descriptor
1673
+ # @return [Google::Protobuf::EnumDescriptor] for the FieldError enum
1674
+ def self.field_error
1675
+ require "google/ads/google_ads/v1/errors/field_error_pb.rb"
1676
+ Google::Ads::GoogleAds::V1::Errors::FieldErrorEnum::FieldError.descriptor
1741
1677
  end
1742
1678
 
1743
1679
  # Returns the descriptor for the YoutubeVideoRegistrationError enum
@@ -1748,132 +1684,108 @@ module Google
1748
1684
  Google::Ads::GoogleAds::V1::Errors::YoutubeVideoRegistrationErrorEnum::YoutubeVideoRegistrationError.descriptor
1749
1685
  end
1750
1686
 
1751
- # Returns the descriptor for the CustomInterestError enum
1752
- #
1753
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestError enum
1754
- def self.custom_interest_error
1755
- require "google/ads/google_ads/v1/errors/custom_interest_error_pb.rb"
1756
- Google::Ads::GoogleAds::V1::Errors::CustomInterestErrorEnum::CustomInterestError.descriptor
1757
- end
1758
-
1759
- # Returns the descriptor for the FeedItemError enum
1760
- #
1761
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemError enum
1762
- def self.feed_item_error
1763
- require "google/ads/google_ads/v1/errors/feed_item_error_pb.rb"
1764
- Google::Ads::GoogleAds::V1::Errors::FeedItemErrorEnum::FeedItemError.descriptor
1765
- end
1766
-
1767
- # Returns the descriptor for the BiddingError enum
1768
- #
1769
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingError enum
1770
- def self.bidding_error
1771
- require "google/ads/google_ads/v1/errors/bidding_error_pb.rb"
1772
- Google::Ads::GoogleAds::V1::Errors::BiddingErrorEnum::BiddingError.descriptor
1773
- end
1774
-
1775
- # Returns the descriptor for the ManagerLinkError enum
1687
+ # Returns the descriptor for the QuotaError enum
1776
1688
  #
1777
- # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkError enum
1778
- def self.manager_link_error
1779
- require "google/ads/google_ads/v1/errors/manager_link_error_pb.rb"
1780
- Google::Ads::GoogleAds::V1::Errors::ManagerLinkErrorEnum::ManagerLinkError.descriptor
1689
+ # @return [Google::Protobuf::EnumDescriptor] for the QuotaError enum
1690
+ def self.quota_error
1691
+ require "google/ads/google_ads/v1/errors/quota_error_pb.rb"
1692
+ Google::Ads::GoogleAds::V1::Errors::QuotaErrorEnum::QuotaError.descriptor
1781
1693
  end
1782
1694
 
1783
- # Returns the descriptor for the NewResourceCreationError enum
1695
+ # Returns the descriptor for the UrlFieldError enum
1784
1696
  #
1785
- # @return [Google::Protobuf::EnumDescriptor] for the NewResourceCreationError enum
1786
- def self.new_resource_creation_error
1787
- require "google/ads/google_ads/v1/errors/new_resource_creation_error_pb.rb"
1788
- Google::Ads::GoogleAds::V1::Errors::NewResourceCreationErrorEnum::NewResourceCreationError.descriptor
1697
+ # @return [Google::Protobuf::EnumDescriptor] for the UrlFieldError enum
1698
+ def self.url_field_error
1699
+ require "google/ads/google_ads/v1/errors/url_field_error_pb.rb"
1700
+ Google::Ads::GoogleAds::V1::Errors::UrlFieldErrorEnum::UrlFieldError.descriptor
1789
1701
  end
1790
1702
 
1791
- # Returns the descriptor for the PolicyFindingError enum
1703
+ # Returns the descriptor for the AuthorizationError enum
1792
1704
  #
1793
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyFindingError enum
1794
- def self.policy_finding_error
1795
- require "google/ads/google_ads/v1/errors/policy_finding_error_pb.rb"
1796
- Google::Ads::GoogleAds::V1::Errors::PolicyFindingErrorEnum::PolicyFindingError.descriptor
1705
+ # @return [Google::Protobuf::EnumDescriptor] for the AuthorizationError enum
1706
+ def self.authorization_error
1707
+ require "google/ads/google_ads/v1/errors/authorization_error_pb.rb"
1708
+ Google::Ads::GoogleAds::V1::Errors::AuthorizationErrorEnum::AuthorizationError.descriptor
1797
1709
  end
1798
1710
 
1799
- # Returns the descriptor for the ResourceAccessDeniedError enum
1711
+ # Returns the descriptor for the FeedItemTargetError enum
1800
1712
  #
1801
- # @return [Google::Protobuf::EnumDescriptor] for the ResourceAccessDeniedError enum
1802
- def self.resource_access_denied_error
1803
- require "google/ads/google_ads/v1/errors/resource_access_denied_error_pb.rb"
1804
- Google::Ads::GoogleAds::V1::Errors::ResourceAccessDeniedErrorEnum::ResourceAccessDeniedError.descriptor
1713
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetError enum
1714
+ def self.feed_item_target_error
1715
+ require "google/ads/google_ads/v1/errors/feed_item_target_error_pb.rb"
1716
+ Google::Ads::GoogleAds::V1::Errors::FeedItemTargetErrorEnum::FeedItemTargetError.descriptor
1805
1717
  end
1806
1718
 
1807
- # Returns the descriptor for the CampaignBudgetError enum
1719
+ # Returns the descriptor for the EnumError enum
1808
1720
  #
1809
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignBudgetError enum
1810
- def self.campaign_budget_error
1811
- require "google/ads/google_ads/v1/errors/campaign_budget_error_pb.rb"
1812
- Google::Ads::GoogleAds::V1::Errors::CampaignBudgetErrorEnum::CampaignBudgetError.descriptor
1721
+ # @return [Google::Protobuf::EnumDescriptor] for the EnumError enum
1722
+ def self.enum_error
1723
+ require "google/ads/google_ads/v1/errors/enum_error_pb.rb"
1724
+ Google::Ads::GoogleAds::V1::Errors::EnumErrorEnum::EnumError.descriptor
1813
1725
  end
1814
1726
 
1815
- # Returns the descriptor for the QuotaError enum
1727
+ # Returns the descriptor for the RangeError enum
1816
1728
  #
1817
- # @return [Google::Protobuf::EnumDescriptor] for the QuotaError enum
1818
- def self.quota_error
1819
- require "google/ads/google_ads/v1/errors/quota_error_pb.rb"
1820
- Google::Ads::GoogleAds::V1::Errors::QuotaErrorEnum::QuotaError.descriptor
1729
+ # @return [Google::Protobuf::EnumDescriptor] for the RangeError enum
1730
+ def self.range_error
1731
+ require "google/ads/google_ads/v1/errors/range_error_pb.rb"
1732
+ Google::Ads::GoogleAds::V1::Errors::RangeErrorEnum::RangeError.descriptor
1821
1733
  end
1822
1734
 
1823
- # Returns the descriptor for the AdGroupFeedError enum
1735
+ # Returns the descriptor for the HeaderError enum
1824
1736
  #
1825
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupFeedError enum
1826
- def self.ad_group_feed_error
1827
- require "google/ads/google_ads/v1/errors/ad_group_feed_error_pb.rb"
1828
- Google::Ads::GoogleAds::V1::Errors::AdGroupFeedErrorEnum::AdGroupFeedError.descriptor
1737
+ # @return [Google::Protobuf::EnumDescriptor] for the HeaderError enum
1738
+ def self.header_error
1739
+ require "google/ads/google_ads/v1/errors/header_error_pb.rb"
1740
+ Google::Ads::GoogleAds::V1::Errors::HeaderErrorEnum::HeaderError.descriptor
1829
1741
  end
1830
1742
 
1831
- # Returns the descriptor for the FeedItemTargetError enum
1743
+ # Returns the descriptor for the SharedSetError enum
1832
1744
  #
1833
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetError enum
1834
- def self.feed_item_target_error
1835
- require "google/ads/google_ads/v1/errors/feed_item_target_error_pb.rb"
1836
- Google::Ads::GoogleAds::V1::Errors::FeedItemTargetErrorEnum::FeedItemTargetError.descriptor
1745
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetError enum
1746
+ def self.shared_set_error
1747
+ require "google/ads/google_ads/v1/errors/shared_set_error_pb.rb"
1748
+ Google::Ads::GoogleAds::V1::Errors::SharedSetErrorEnum::SharedSetError.descriptor
1837
1749
  end
1838
1750
 
1839
- # Returns the descriptor for the FeedMappingError enum
1751
+ # Returns the descriptor for the AccountBudgetProposalError enum
1840
1752
  #
1841
- # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingError enum
1842
- def self.feed_mapping_error
1843
- require "google/ads/google_ads/v1/errors/feed_mapping_error_pb.rb"
1844
- Google::Ads::GoogleAds::V1::Errors::FeedMappingErrorEnum::FeedMappingError.descriptor
1753
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalError enum
1754
+ def self.account_budget_proposal_error
1755
+ require "google/ads/google_ads/v1/errors/account_budget_proposal_error_pb.rb"
1756
+ Google::Ads::GoogleAds::V1::Errors::AccountBudgetProposalErrorEnum::AccountBudgetProposalError.descriptor
1845
1757
  end
1846
1758
 
1847
- # Returns the descriptor for the ConversionActionError enum
1759
+ # Returns the descriptor for the AdxError enum
1848
1760
  #
1849
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionError enum
1850
- def self.conversion_action_error
1851
- require "google/ads/google_ads/v1/errors/conversion_action_error_pb.rb"
1852
- Google::Ads::GoogleAds::V1::Errors::ConversionActionErrorEnum::ConversionActionError.descriptor
1761
+ # @return [Google::Protobuf::EnumDescriptor] for the AdxError enum
1762
+ def self.adx_error
1763
+ require "google/ads/google_ads/v1/errors/adx_error_pb.rb"
1764
+ Google::Ads::GoogleAds::V1::Errors::AdxErrorEnum::AdxError.descriptor
1853
1765
  end
1854
1766
 
1855
- # Returns the descriptor for the ImageError enum
1767
+ # Returns the descriptor for the KeywordPlanAdGroupError enum
1856
1768
  #
1857
- # @return [Google::Protobuf::EnumDescriptor] for the ImageError enum
1858
- def self.image_error
1859
- require "google/ads/google_ads/v1/errors/image_error_pb.rb"
1860
- Google::Ads::GoogleAds::V1::Errors::ImageErrorEnum::ImageError.descriptor
1769
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanAdGroupError enum
1770
+ def self.keyword_plan_ad_group_error
1771
+ require "google/ads/google_ads/v1/errors/keyword_plan_ad_group_error_pb.rb"
1772
+ Google::Ads::GoogleAds::V1::Errors::KeywordPlanAdGroupErrorEnum::KeywordPlanAdGroupError.descriptor
1861
1773
  end
1862
1774
 
1863
- # Returns the descriptor for the QueryError enum
1775
+ # Returns the descriptor for the CriterionError enum
1864
1776
  #
1865
- # @return [Google::Protobuf::EnumDescriptor] for the QueryError enum
1866
- def self.query_error
1867
- require "google/ads/google_ads/v1/errors/query_error_pb.rb"
1868
- Google::Ads::GoogleAds::V1::Errors::QueryErrorEnum::QueryError.descriptor
1777
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionError enum
1778
+ def self.criterion_error
1779
+ require "google/ads/google_ads/v1/errors/criterion_error_pb.rb"
1780
+ Google::Ads::GoogleAds::V1::Errors::CriterionErrorEnum::CriterionError.descriptor
1869
1781
  end
1870
1782
 
1871
- # Returns the descriptor for the AccountBudgetProposalError enum
1783
+ # Returns the descriptor for the AdCustomizerError enum
1872
1784
  #
1873
- # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetProposalError enum
1874
- def self.account_budget_proposal_error
1875
- require "google/ads/google_ads/v1/errors/account_budget_proposal_error_pb.rb"
1876
- Google::Ads::GoogleAds::V1::Errors::AccountBudgetProposalErrorEnum::AccountBudgetProposalError.descriptor
1785
+ # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerError enum
1786
+ def self.ad_customizer_error
1787
+ require "google/ads/google_ads/v1/errors/ad_customizer_error_pb.rb"
1788
+ Google::Ads::GoogleAds::V1::Errors::AdCustomizerErrorEnum::AdCustomizerError.descriptor
1877
1789
  end
1878
1790
 
1879
1791
  # Returns the descriptor for the AdError enum
@@ -1884,6 +1796,14 @@ module Google
1884
1796
  Google::Ads::GoogleAds::V1::Errors::AdErrorEnum::AdError.descriptor
1885
1797
  end
1886
1798
 
1799
+ # Returns the descriptor for the AdGroupAdError enum
1800
+ #
1801
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdError enum
1802
+ def self.ad_group_ad_error
1803
+ require "google/ads/google_ads/v1/errors/ad_group_ad_error_pb.rb"
1804
+ Google::Ads::GoogleAds::V1::Errors::AdGroupAdErrorEnum::AdGroupAdError.descriptor
1805
+ end
1806
+
1887
1807
  # Returns the descriptor for the AdGroupBidModifierError enum
1888
1808
  #
1889
1809
  # @return [Google::Protobuf::EnumDescriptor] for the AdGroupBidModifierError enum
@@ -1908,6 +1828,14 @@ module Google
1908
1828
  Google::Ads::GoogleAds::V1::Errors::AdGroupErrorEnum::AdGroupError.descriptor
1909
1829
  end
1910
1830
 
1831
+ # Returns the descriptor for the AdGroupFeedError enum
1832
+ #
1833
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupFeedError enum
1834
+ def self.ad_group_feed_error
1835
+ require "google/ads/google_ads/v1/errors/ad_group_feed_error_pb.rb"
1836
+ Google::Ads::GoogleAds::V1::Errors::AdGroupFeedErrorEnum::AdGroupFeedError.descriptor
1837
+ end
1838
+
1911
1839
  # Returns the descriptor for the AdParameterError enum
1912
1840
  #
1913
1841
  # @return [Google::Protobuf::EnumDescriptor] for the AdParameterError enum
@@ -1940,12 +1868,20 @@ module Google
1940
1868
  Google::Ads::GoogleAds::V1::Errors::AuthenticationErrorEnum::AuthenticationError.descriptor
1941
1869
  end
1942
1870
 
1943
- # Returns the descriptor for the AuthorizationError enum
1871
+ # Returns the descriptor for the BiddingError enum
1944
1872
  #
1945
- # @return [Google::Protobuf::EnumDescriptor] for the AuthorizationError enum
1946
- def self.authorization_error
1947
- require "google/ads/google_ads/v1/errors/authorization_error_pb.rb"
1948
- Google::Ads::GoogleAds::V1::Errors::AuthorizationErrorEnum::AuthorizationError.descriptor
1873
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingError enum
1874
+ def self.bidding_error
1875
+ require "google/ads/google_ads/v1/errors/bidding_error_pb.rb"
1876
+ Google::Ads::GoogleAds::V1::Errors::BiddingErrorEnum::BiddingError.descriptor
1877
+ end
1878
+
1879
+ # Returns the descriptor for the BiddingStrategyError enum
1880
+ #
1881
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyError enum
1882
+ def self.bidding_strategy_error
1883
+ require "google/ads/google_ads/v1/errors/bidding_strategy_error_pb.rb"
1884
+ Google::Ads::GoogleAds::V1::Errors::BiddingStrategyErrorEnum::BiddingStrategyError.descriptor
1949
1885
  end
1950
1886
 
1951
1887
  # Returns the descriptor for the BillingSetupError enum
@@ -1956,6 +1892,14 @@ module Google
1956
1892
  Google::Ads::GoogleAds::V1::Errors::BillingSetupErrorEnum::BillingSetupError.descriptor
1957
1893
  end
1958
1894
 
1895
+ # Returns the descriptor for the CampaignBudgetError enum
1896
+ #
1897
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignBudgetError enum
1898
+ def self.campaign_budget_error
1899
+ require "google/ads/google_ads/v1/errors/campaign_budget_error_pb.rb"
1900
+ Google::Ads::GoogleAds::V1::Errors::CampaignBudgetErrorEnum::CampaignBudgetError.descriptor
1901
+ end
1902
+
1959
1903
  # Returns the descriptor for the CampaignCriterionError enum
1960
1904
  #
1961
1905
  # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionError enum
@@ -1964,12 +1908,12 @@ module Google
1964
1908
  Google::Ads::GoogleAds::V1::Errors::CampaignCriterionErrorEnum::CampaignCriterionError.descriptor
1965
1909
  end
1966
1910
 
1967
- # Returns the descriptor for the CampaignDraftError enum
1911
+ # Returns the descriptor for the CampaignError enum
1968
1912
  #
1969
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftError enum
1970
- def self.campaign_draft_error
1971
- require "google/ads/google_ads/v1/errors/campaign_draft_error_pb.rb"
1972
- Google::Ads::GoogleAds::V1::Errors::CampaignDraftErrorEnum::CampaignDraftError.descriptor
1913
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignError enum
1914
+ def self.campaign_error
1915
+ require "google/ads/google_ads/v1/errors/campaign_error_pb.rb"
1916
+ Google::Ads::GoogleAds::V1::Errors::CampaignErrorEnum::CampaignError.descriptor
1973
1917
  end
1974
1918
 
1975
1919
  # Returns the descriptor for the CampaignExperimentError enum
@@ -2012,12 +1956,12 @@ module Google
2012
1956
  Google::Ads::GoogleAds::V1::Errors::CollectionSizeErrorEnum::CollectionSizeError.descriptor
2013
1957
  end
2014
1958
 
2015
- # Returns the descriptor for the ContextError enum
1959
+ # Returns the descriptor for the ConversionActionError enum
2016
1960
  #
2017
- # @return [Google::Protobuf::EnumDescriptor] for the ContextError enum
2018
- def self.context_error
2019
- require "google/ads/google_ads/v1/errors/context_error_pb.rb"
2020
- Google::Ads::GoogleAds::V1::Errors::ContextErrorEnum::ContextError.descriptor
1961
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionError enum
1962
+ def self.conversion_action_error
1963
+ require "google/ads/google_ads/v1/errors/conversion_action_error_pb.rb"
1964
+ Google::Ads::GoogleAds::V1::Errors::ConversionActionErrorEnum::ConversionActionError.descriptor
2021
1965
  end
2022
1966
 
2023
1967
  # Returns the descriptor for the ConversionAdjustmentUploadError enum
@@ -2044,12 +1988,12 @@ module Google
2044
1988
  Google::Ads::GoogleAds::V1::Errors::CountryCodeErrorEnum::CountryCodeError.descriptor
2045
1989
  end
2046
1990
 
2047
- # Returns the descriptor for the CriterionError enum
1991
+ # Returns the descriptor for the CustomInterestError enum
2048
1992
  #
2049
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionError enum
2050
- def self.criterion_error
2051
- require "google/ads/google_ads/v1/errors/criterion_error_pb.rb"
2052
- Google::Ads::GoogleAds::V1::Errors::CriterionErrorEnum::CriterionError.descriptor
1993
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestError enum
1994
+ def self.custom_interest_error
1995
+ require "google/ads/google_ads/v1/errors/custom_interest_error_pb.rb"
1996
+ Google::Ads::GoogleAds::V1::Errors::CustomInterestErrorEnum::CustomInterestError.descriptor
2053
1997
  end
2054
1998
 
2055
1999
  # Returns the descriptor for the CustomerClientLinkError enum
@@ -2108,12 +2052,12 @@ module Google
2108
2052
  Google::Ads::GoogleAds::V1::Errors::DateRangeErrorEnum::DateRangeError.descriptor
2109
2053
  end
2110
2054
 
2111
- # Returns the descriptor for the EnumError enum
2055
+ # Returns the descriptor for the DistinctError enum
2112
2056
  #
2113
- # @return [Google::Protobuf::EnumDescriptor] for the EnumError enum
2114
- def self.enum_error
2115
- require "google/ads/google_ads/v1/errors/enum_error_pb.rb"
2116
- Google::Ads::GoogleAds::V1::Errors::EnumErrorEnum::EnumError.descriptor
2057
+ # @return [Google::Protobuf::EnumDescriptor] for the DistinctError enum
2058
+ def self.distinct_error
2059
+ require "google/ads/google_ads/v1/errors/distinct_error_pb.rb"
2060
+ Google::Ads::GoogleAds::V1::Errors::DistinctErrorEnum::DistinctError.descriptor
2117
2061
  end
2118
2062
 
2119
2063
  # Returns the descriptor for the ExtensionFeedItemError enum
@@ -2148,12 +2092,20 @@ module Google
2148
2092
  Google::Ads::GoogleAds::V1::Errors::FeedErrorEnum::FeedError.descriptor
2149
2093
  end
2150
2094
 
2151
- # Returns the descriptor for the FieldError enum
2095
+ # Returns the descriptor for the FeedItemError enum
2152
2096
  #
2153
- # @return [Google::Protobuf::EnumDescriptor] for the FieldError enum
2154
- def self.field_error
2155
- require "google/ads/google_ads/v1/errors/field_error_pb.rb"
2156
- Google::Ads::GoogleAds::V1::Errors::FieldErrorEnum::FieldError.descriptor
2097
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemError enum
2098
+ def self.feed_item_error
2099
+ require "google/ads/google_ads/v1/errors/feed_item_error_pb.rb"
2100
+ Google::Ads::GoogleAds::V1::Errors::FeedItemErrorEnum::FeedItemError.descriptor
2101
+ end
2102
+
2103
+ # Returns the descriptor for the FeedMappingError enum
2104
+ #
2105
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingError enum
2106
+ def self.feed_mapping_error
2107
+ require "google/ads/google_ads/v1/errors/feed_mapping_error_pb.rb"
2108
+ Google::Ads::GoogleAds::V1::Errors::FeedMappingErrorEnum::FeedMappingError.descriptor
2157
2109
  end
2158
2110
 
2159
2111
  # Returns the descriptor for the FieldMaskError enum
@@ -2196,6 +2148,14 @@ module Google
2196
2148
  Google::Ads::GoogleAds::V1::Errors::IdErrorEnum::IdError.descriptor
2197
2149
  end
2198
2150
 
2151
+ # Returns the descriptor for the ImageError enum
2152
+ #
2153
+ # @return [Google::Protobuf::EnumDescriptor] for the ImageError enum
2154
+ def self.image_error
2155
+ require "google/ads/google_ads/v1/errors/image_error_pb.rb"
2156
+ Google::Ads::GoogleAds::V1::Errors::ImageErrorEnum::ImageError.descriptor
2157
+ end
2158
+
2199
2159
  # Returns the descriptor for the InternalError enum
2200
2160
  #
2201
2161
  # @return [Google::Protobuf::EnumDescriptor] for the InternalError enum
@@ -2204,12 +2164,12 @@ module Google
2204
2164
  Google::Ads::GoogleAds::V1::Errors::InternalErrorEnum::InternalError.descriptor
2205
2165
  end
2206
2166
 
2207
- # Returns the descriptor for the KeywordPlanAdGroupError enum
2167
+ # Returns the descriptor for the KeywordPlanCampaignError enum
2208
2168
  #
2209
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanAdGroupError enum
2210
- def self.keyword_plan_ad_group_error
2211
- require "google/ads/google_ads/v1/errors/keyword_plan_ad_group_error_pb.rb"
2212
- Google::Ads::GoogleAds::V1::Errors::KeywordPlanAdGroupErrorEnum::KeywordPlanAdGroupError.descriptor
2169
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCampaignError enum
2170
+ def self.keyword_plan_campaign_error
2171
+ require "google/ads/google_ads/v1/errors/keyword_plan_campaign_error_pb.rb"
2172
+ Google::Ads::GoogleAds::V1::Errors::KeywordPlanCampaignErrorEnum::KeywordPlanCampaignError.descriptor
2213
2173
  end
2214
2174
 
2215
2175
  # Returns the descriptor for the KeywordPlanError enum
@@ -2268,6 +2228,14 @@ module Google
2268
2228
  Google::Ads::GoogleAds::V1::Errors::ListOperationErrorEnum::ListOperationError.descriptor
2269
2229
  end
2270
2230
 
2231
+ # Returns the descriptor for the ManagerLinkError enum
2232
+ #
2233
+ # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkError enum
2234
+ def self.manager_link_error
2235
+ require "google/ads/google_ads/v1/errors/manager_link_error_pb.rb"
2236
+ Google::Ads::GoogleAds::V1::Errors::ManagerLinkErrorEnum::ManagerLinkError.descriptor
2237
+ end
2238
+
2271
2239
  # Returns the descriptor for the MediaBundleError enum
2272
2240
  #
2273
2241
  # @return [Google::Protobuf::EnumDescriptor] for the MediaBundleError enum
@@ -2292,6 +2260,14 @@ module Google
2292
2260
  Google::Ads::GoogleAds::V1::Errors::MediaUploadErrorEnum::MediaUploadError.descriptor
2293
2261
  end
2294
2262
 
2263
+ # Returns the descriptor for the MultiplierError enum
2264
+ #
2265
+ # @return [Google::Protobuf::EnumDescriptor] for the MultiplierError enum
2266
+ def self.multiplier_error
2267
+ require "google/ads/google_ads/v1/errors/multiplier_error_pb.rb"
2268
+ Google::Ads::GoogleAds::V1::Errors::MultiplierErrorEnum::MultiplierError.descriptor
2269
+ end
2270
+
2295
2271
  # Returns the descriptor for the MutateError enum
2296
2272
  #
2297
2273
  # @return [Google::Protobuf::EnumDescriptor] for the MutateError enum
@@ -2308,6 +2284,14 @@ module Google
2308
2284
  Google::Ads::GoogleAds::V1::Errors::MutateJobErrorEnum::MutateJobError.descriptor
2309
2285
  end
2310
2286
 
2287
+ # Returns the descriptor for the NewResourceCreationError enum
2288
+ #
2289
+ # @return [Google::Protobuf::EnumDescriptor] for the NewResourceCreationError enum
2290
+ def self.new_resource_creation_error
2291
+ require "google/ads/google_ads/v1/errors/new_resource_creation_error_pb.rb"
2292
+ Google::Ads::GoogleAds::V1::Errors::NewResourceCreationErrorEnum::NewResourceCreationError.descriptor
2293
+ end
2294
+
2311
2295
  # Returns the descriptor for the NotEmptyError enum
2312
2296
  #
2313
2297
  # @return [Google::Protobuf::EnumDescriptor] for the NotEmptyError enum
@@ -2348,6 +2332,22 @@ module Google
2348
2332
  Google::Ads::GoogleAds::V1::Errors::OperatorErrorEnum::OperatorError.descriptor
2349
2333
  end
2350
2334
 
2335
+ # Returns the descriptor for the PartialFailureError enum
2336
+ #
2337
+ # @return [Google::Protobuf::EnumDescriptor] for the PartialFailureError enum
2338
+ def self.partial_failure_error
2339
+ require "google/ads/google_ads/v1/errors/partial_failure_error_pb.rb"
2340
+ Google::Ads::GoogleAds::V1::Errors::PartialFailureErrorEnum::PartialFailureError.descriptor
2341
+ end
2342
+
2343
+ # Returns the descriptor for the PolicyFindingError enum
2344
+ #
2345
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyFindingError enum
2346
+ def self.policy_finding_error
2347
+ require "google/ads/google_ads/v1/errors/policy_finding_error_pb.rb"
2348
+ Google::Ads::GoogleAds::V1::Errors::PolicyFindingErrorEnum::PolicyFindingError.descriptor
2349
+ end
2350
+
2351
2351
  # Returns the descriptor for the PolicyValidationParameterError enum
2352
2352
  #
2353
2353
  # @return [Google::Protobuf::EnumDescriptor] for the PolicyValidationParameterError enum
@@ -2364,12 +2364,28 @@ module Google
2364
2364
  Google::Ads::GoogleAds::V1::Errors::PolicyViolationErrorEnum::PolicyViolationError.descriptor
2365
2365
  end
2366
2366
 
2367
- # Returns the descriptor for the RangeError enum
2367
+ # Returns the descriptor for the QueryError enum
2368
2368
  #
2369
- # @return [Google::Protobuf::EnumDescriptor] for the RangeError enum
2370
- def self.range_error
2371
- require "google/ads/google_ads/v1/errors/range_error_pb.rb"
2372
- Google::Ads::GoogleAds::V1::Errors::RangeErrorEnum::RangeError.descriptor
2369
+ # @return [Google::Protobuf::EnumDescriptor] for the QueryError enum
2370
+ def self.query_error
2371
+ require "google/ads/google_ads/v1/errors/query_error_pb.rb"
2372
+ Google::Ads::GoogleAds::V1::Errors::QueryErrorEnum::QueryError.descriptor
2373
+ end
2374
+
2375
+ # Returns the descriptor for the RecommendationError enum
2376
+ #
2377
+ # @return [Google::Protobuf::EnumDescriptor] for the RecommendationError enum
2378
+ def self.recommendation_error
2379
+ require "google/ads/google_ads/v1/errors/recommendation_error_pb.rb"
2380
+ Google::Ads::GoogleAds::V1::Errors::RecommendationErrorEnum::RecommendationError.descriptor
2381
+ end
2382
+
2383
+ # Returns the descriptor for the RegionCodeError enum
2384
+ #
2385
+ # @return [Google::Protobuf::EnumDescriptor] for the RegionCodeError enum
2386
+ def self.region_code_error
2387
+ require "google/ads/google_ads/v1/errors/region_code_error_pb.rb"
2388
+ Google::Ads::GoogleAds::V1::Errors::RegionCodeErrorEnum::RegionCodeError.descriptor
2373
2389
  end
2374
2390
 
2375
2391
  # Returns the descriptor for the RequestError enum
@@ -2380,6 +2396,14 @@ module Google
2380
2396
  Google::Ads::GoogleAds::V1::Errors::RequestErrorEnum::RequestError.descriptor
2381
2397
  end
2382
2398
 
2399
+ # Returns the descriptor for the ResourceAccessDeniedError enum
2400
+ #
2401
+ # @return [Google::Protobuf::EnumDescriptor] for the ResourceAccessDeniedError enum
2402
+ def self.resource_access_denied_error
2403
+ require "google/ads/google_ads/v1/errors/resource_access_denied_error_pb.rb"
2404
+ Google::Ads::GoogleAds::V1::Errors::ResourceAccessDeniedErrorEnum::ResourceAccessDeniedError.descriptor
2405
+ end
2406
+
2383
2407
  # Returns the descriptor for the ResourceCountLimitExceededError enum
2384
2408
  #
2385
2409
  # @return [Google::Protobuf::EnumDescriptor] for the ResourceCountLimitExceededError enum
@@ -2396,12 +2420,12 @@ module Google
2396
2420
  Google::Ads::GoogleAds::V1::Errors::SettingErrorEnum::SettingError.descriptor
2397
2421
  end
2398
2422
 
2399
- # Returns the descriptor for the SharedSetError enum
2423
+ # Returns the descriptor for the SharedCriterionError enum
2400
2424
  #
2401
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetError enum
2402
- def self.shared_set_error
2403
- require "google/ads/google_ads/v1/errors/shared_set_error_pb.rb"
2404
- Google::Ads::GoogleAds::V1::Errors::SharedSetErrorEnum::SharedSetError.descriptor
2425
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedCriterionError enum
2426
+ def self.shared_criterion_error
2427
+ require "google/ads/google_ads/v1/errors/shared_criterion_error_pb.rb"
2428
+ Google::Ads::GoogleAds::V1::Errors::SharedCriterionErrorEnum::SharedCriterionError.descriptor
2405
2429
  end
2406
2430
 
2407
2431
  # Returns the descriptor for the SizeLimitError enum
@@ -2412,30 +2436,6 @@ module Google
2412
2436
  Google::Ads::GoogleAds::V1::Errors::SizeLimitErrorEnum::SizeLimitError.descriptor
2413
2437
  end
2414
2438
 
2415
- # Returns the descriptor for the StringFormatError enum
2416
- #
2417
- # @return [Google::Protobuf::EnumDescriptor] for the StringFormatError enum
2418
- def self.string_format_error
2419
- require "google/ads/google_ads/v1/errors/string_format_error_pb.rb"
2420
- Google::Ads::GoogleAds::V1::Errors::StringFormatErrorEnum::StringFormatError.descriptor
2421
- end
2422
-
2423
- # Returns the descriptor for the StringLengthError enum
2424
- #
2425
- # @return [Google::Protobuf::EnumDescriptor] for the StringLengthError enum
2426
- def self.string_length_error
2427
- require "google/ads/google_ads/v1/errors/string_length_error_pb.rb"
2428
- Google::Ads::GoogleAds::V1::Errors::StringLengthErrorEnum::StringLengthError.descriptor
2429
- end
2430
-
2431
- # Returns the descriptor for the UrlFieldError enum
2432
- #
2433
- # @return [Google::Protobuf::EnumDescriptor] for the UrlFieldError enum
2434
- def self.url_field_error
2435
- require "google/ads/google_ads/v1/errors/url_field_error_pb.rb"
2436
- Google::Ads::GoogleAds::V1::Errors::UrlFieldErrorEnum::UrlFieldError.descriptor
2437
- end
2438
-
2439
2439
  # Returns the descriptor for the UserListError enum
2440
2440
  #
2441
2441
  # @return [Google::Protobuf::EnumDescriptor] for the UserListError enum