/resources/campaign_criterion.proto

--- v14/resources/campaign_criterion.proto  2023-06-07 21:43:48.000000000 +0000
+++ v15/resources/campaign_criterion.proto  2023-10-18 20:10:59.000000000 +0000
@@ -1,219 +1,223 @@
 // Copyright 2023 Google LLC
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
 // You may obtain a copy of the License at
 //
 //     http://www.apache.org/licenses/LICENSE-2.0
 //
 // Unless required by applicable law or agreed to in writing, software
 // distributed under the License is distributed on an "AS IS" BASIS,
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.

 syntax = "proto3";

-package google.ads.googleads.v14.resources;
+package google.ads.googleads.v15.resources;

-import "google/ads/googleads/v14/common/criteria.proto";
-import "google/ads/googleads/v14/enums/campaign_criterion_status.proto";
-import "google/ads/googleads/v14/enums/criterion_type.proto";
+import "google/ads/googleads/v15/common/criteria.proto";
+import "google/ads/googleads/v15/enums/campaign_criterion_status.proto";
+import "google/ads/googleads/v15/enums/criterion_type.proto";
 import "google/api/field_behavior.proto";
 import "google/api/resource.proto";

-option csharp_namespace = "Google.Ads.GoogleAds.V14.Resources";
-option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v14/resources;resources";
+option csharp_namespace = "Google.Ads.GoogleAds.V15.Resources";
+option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v15/resources;resources";
 option java_multiple_files = true;
 option java_outer_classname = "CampaignCriterionProto";
-option java_package = "com.google.ads.googleads.v14.resources";
+option java_package = "com.google.ads.googleads.v15.resources";
 option objc_class_prefix = "GAA";
-option php_namespace = "Google\\Ads\\GoogleAds\\V14\\Resources";
-option ruby_package = "Google::Ads::GoogleAds::V14::Resources";
+option php_namespace = "Google\\Ads\\GoogleAds\\V15\\Resources";
+option ruby_package = "Google::Ads::GoogleAds::V15::Resources";

 // Proto file describing the Campaign Criterion resource.

 // A campaign criterion.
 message CampaignCriterion {
   option (google.api.resource) = {
     type: "googleads.googleapis.com/CampaignCriterion"
     pattern: "customers/{customer_id}/campaignCriteria/{campaign_id}~{criterion_id}"
   };

   // Immutable. The resource name of the campaign criterion.
   // Campaign criterion resource names have the form:
   //
   // `customers/{customer_id}/campaignCriteria/{campaign_id}~{criterion_id}`
   string resource_name = 1 [
     (google.api.field_behavior) = IMMUTABLE,
     (google.api.resource_reference) = {
       type: "googleads.googleapis.com/CampaignCriterion"
     }
   ];

   // Immutable. The campaign to which the criterion belongs.
   optional string campaign = 37 [
     (google.api.field_behavior) = IMMUTABLE,
     (google.api.resource_reference) = {
       type: "googleads.googleapis.com/Campaign"
     }
   ];

   // Output only. The ID of the criterion.
   //
   // This field is ignored during mutate.
   optional int64 criterion_id = 38 [(google.api.field_behavior) = OUTPUT_ONLY];

   // Output only. The display name of the criterion.
   //
   // This field is ignored for mutates.
   string display_name = 43 [(google.api.field_behavior) = OUTPUT_ONLY];

   // The modifier for the bids when the criterion matches. The modifier must be
   // in the range: 0.1 - 10.0. Most targetable criteria types support modifiers.
   // Use 0 to opt out of a Device type.
   optional float bid_modifier = 39;

   // Immutable. Whether to target (`false`) or exclude (`true`) the criterion.
   optional bool negative = 40 [(google.api.field_behavior) = IMMUTABLE];

   // Output only. The type of the criterion.
-  google.ads.googleads.v14.enums.CriterionTypeEnum.CriterionType type = 6
+  google.ads.googleads.v15.enums.CriterionTypeEnum.CriterionType type = 6
       [(google.api.field_behavior) = OUTPUT_ONLY];

   // The status of the criterion.
-  google.ads.googleads.v14.enums.CampaignCriterionStatusEnum
+  google.ads.googleads.v15.enums.CampaignCriterionStatusEnum
       .CampaignCriterionStatus status = 35;

   // The campaign criterion.
   //
   // Exactly one must be set.
   oneof criterion {
     // Immutable. Keyword.
-    google.ads.googleads.v14.common.KeywordInfo keyword = 8
+    google.ads.googleads.v15.common.KeywordInfo keyword = 8
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Placement.
-    google.ads.googleads.v14.common.PlacementInfo placement = 9
+    google.ads.googleads.v15.common.PlacementInfo placement = 9
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Mobile app category.
-    google.ads.googleads.v14.common.MobileAppCategoryInfo mobile_app_category =
+    google.ads.googleads.v15.common.MobileAppCategoryInfo mobile_app_category =
         10 [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Mobile application.
-    google.ads.googleads.v14.common.MobileApplicationInfo mobile_application =
+    google.ads.googleads.v15.common.MobileApplicationInfo mobile_application =
         11 [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Location.
-    google.ads.googleads.v14.common.LocationInfo location = 12
+    google.ads.googleads.v15.common.LocationInfo location = 12
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Device.
-    google.ads.googleads.v14.common.DeviceInfo device = 13
+    google.ads.googleads.v15.common.DeviceInfo device = 13
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Ad Schedule.
-    google.ads.googleads.v14.common.AdScheduleInfo ad_schedule = 15
+    google.ads.googleads.v15.common.AdScheduleInfo ad_schedule = 15
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Age range.
-    google.ads.googleads.v14.common.AgeRangeInfo age_range = 16
+    google.ads.googleads.v15.common.AgeRangeInfo age_range = 16
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Gender.
-    google.ads.googleads.v14.common.GenderInfo gender = 17
+    google.ads.googleads.v15.common.GenderInfo gender = 17
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Income range.
-    google.ads.googleads.v14.common.IncomeRangeInfo income_range = 18
+    google.ads.googleads.v15.common.IncomeRangeInfo income_range = 18
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Parental status.
-    google.ads.googleads.v14.common.ParentalStatusInfo parental_status = 19
+    google.ads.googleads.v15.common.ParentalStatusInfo parental_status = 19
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. User List.
     // The Similar Audiences sunset starts May 2023. Refer to
     // https://ads-developers.googleblog.com/2022/11/announcing-deprecation-and-sunset-of.html
     // for other options.
-    google.ads.googleads.v14.common.UserListInfo user_list = 22
+    google.ads.googleads.v15.common.UserListInfo user_list = 22
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. YouTube Video.
-    google.ads.googleads.v14.common.YouTubeVideoInfo youtube_video = 20
+    google.ads.googleads.v15.common.YouTubeVideoInfo youtube_video = 20
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. YouTube Channel.
-    google.ads.googleads.v14.common.YouTubeChannelInfo youtube_channel = 21
+    google.ads.googleads.v15.common.YouTubeChannelInfo youtube_channel = 21
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Proximity.
-    google.ads.googleads.v14.common.ProximityInfo proximity = 23
+    google.ads.googleads.v15.common.ProximityInfo proximity = 23
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Topic.
-    google.ads.googleads.v14.common.TopicInfo topic = 24
+    google.ads.googleads.v15.common.TopicInfo topic = 24
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Listing scope.
-    google.ads.googleads.v14.common.ListingScopeInfo listing_scope = 25
+    google.ads.googleads.v15.common.ListingScopeInfo listing_scope = 25
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Language.
-    google.ads.googleads.v14.common.LanguageInfo language = 26
+    google.ads.googleads.v15.common.LanguageInfo language = 26
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. IpBlock.
-    google.ads.googleads.v14.common.IpBlockInfo ip_block = 27
+    google.ads.googleads.v15.common.IpBlockInfo ip_block = 27
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. ContentLabel.
-    google.ads.googleads.v14.common.ContentLabelInfo content_label = 28
+    google.ads.googleads.v15.common.ContentLabelInfo content_label = 28
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Carrier.
-    google.ads.googleads.v14.common.CarrierInfo carrier = 29
+    google.ads.googleads.v15.common.CarrierInfo carrier = 29
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. User Interest.
-    google.ads.googleads.v14.common.UserInterestInfo user_interest = 30
+    google.ads.googleads.v15.common.UserInterestInfo user_interest = 30
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Webpage.
-    google.ads.googleads.v14.common.WebpageInfo webpage = 31
+    google.ads.googleads.v15.common.WebpageInfo webpage = 31
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Operating system version.
-    google.ads.googleads.v14.common.OperatingSystemVersionInfo
+    google.ads.googleads.v15.common.OperatingSystemVersionInfo
         operating_system_version = 32 [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Mobile Device.
-    google.ads.googleads.v14.common.MobileDeviceInfo mobile_device = 33
+    google.ads.googleads.v15.common.MobileDeviceInfo mobile_device = 33
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Location Group
-    google.ads.googleads.v14.common.LocationGroupInfo location_group = 34
+    google.ads.googleads.v15.common.LocationGroupInfo location_group = 34
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Custom Affinity.
-    google.ads.googleads.v14.common.CustomAffinityInfo custom_affinity = 36
+    google.ads.googleads.v15.common.CustomAffinityInfo custom_affinity = 36
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Custom Audience
-    google.ads.googleads.v14.common.CustomAudienceInfo custom_audience = 41
+    google.ads.googleads.v15.common.CustomAudienceInfo custom_audience = 41
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Combined Audience.
-    google.ads.googleads.v14.common.CombinedAudienceInfo combined_audience = 42
+    google.ads.googleads.v15.common.CombinedAudienceInfo combined_audience = 42
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. Smart Campaign Keyword Theme.
-    google.ads.googleads.v14.common.KeywordThemeInfo keyword_theme = 45
+    google.ads.googleads.v15.common.KeywordThemeInfo keyword_theme = 45
         [(google.api.field_behavior) = IMMUTABLE];

     // Immutable. GLS service campaign criterion.
-    google.ads.googleads.v14.common.LocalServiceIdInfo local_service_id = 46
+    google.ads.googleads.v15.common.LocalServiceIdInfo local_service_id = 46
+        [(google.api.field_behavior) = IMMUTABLE];
+
+    // Immutable. Brand list campaign criterion.
+    google.ads.googleads.v15.common.BrandListInfo brand_list = 47
         [(google.api.field_behavior) = IMMUTABLE];
   }
 }