--- v20/resources/ad_group.proto 2025-08-05 14:39:34.000000000 +0000 +++ v21/resources/ad_group.proto 2025-08-05 14:39:50.000000000 +0000 @@ -106,6 +106,28 @@ DemandGenChannelControls channel_controls = 1; } + // Settings for video ad groups. + message VideoAdGroupSettings { + // The video ads sequence step settings containing step ID. + message VideoAdSequenceStepSetting { + // The ID of this sequence step from an existing + // `campaign.video_campaign_settings.video_ad_sequence` definition. Only + // one Ad Group can point to a given `step_id`. + int64 step_id = 1; + } + + // The video ads sequence step settings containing step ID. + VideoAdSequenceStepSetting video_ad_sequence = 1; + } + + // Settings for AI Max feature in standard search adgroups. + message AiMaxAdGroupSetting { + // Disable search term matching for this adgroup when AI Max is enabled. + // Search term matching uses broad match, asset-based, and landing + // page-based technology to improve reach. + optional bool disable_search_term_matching = 1; + } + // Immutable. The resource name of the ad group. // Ad group resource names have the form: // @@ -301,10 +323,16 @@ // Output only. Provides reasons for why an ad group is not serving or not // serving optimally. - repeated google.ads.googleads.v20.enums.AdGroupPrimaryStatusReasonEnum + repeated google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum .AdGroupPrimaryStatusReason primary_status_reasons = 63 [(google.api.field_behavior) = OUTPUT_ONLY]; // Settings for Demand Gen ad groups. DemandGenAdGroupSettings demand_gen_ad_group_settings = 91; + + // Settings for video ad groups. + VideoAdGroupSettings video_ad_group_settings = 92; + + // Settings for AI Max feature in standard search adgroups. + AiMaxAdGroupSetting ai_max_ad_group_setting = 71; }
/resources/ad_group.proto
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-21 UTC。
[null,null,["最終更新日 2025-08-21 UTC。"],[],[],null,["# /resources/ad_group.proto\n\n```diff\n--- v20/resources/ad_group.proto 2025-08-05 14:39:34.000000000 +0000\n+++ v21/resources/ad_group.proto 2025-08-05 14:39:50.000000000 +0000\n@@ -106,6 +106,28 @@\n DemandGenChannelControls channel_controls = 1;\n }\n\n+ // Settings for video ad groups.\n+ message VideoAdGroupSettings {\n+ // The video ads sequence step settings containing step ID.\n+ message VideoAdSequenceStepSetting {\n+ // The ID of this sequence step from an existing\n+ // `campaign.video_campaign_settings.video_ad_sequence` definition. Only\n+ // one Ad Group can point to a given `step_id`.\n+ int64 step_id = 1;\n+ }\n+\n+ // The video ads sequence step settings containing step ID.\n+ VideoAdSequenceStepSetting video_ad_sequence = 1;\n+ }\n+\n+ // Settings for AI Max feature in standard search adgroups.\n+ message AiMaxAdGroupSetting {\n+ // Disable search term matching for this adgroup when AI Max is enabled.\n+ // Search term matching uses broad match, asset-based, and landing\n+ // page-based technology to improve reach.\n+ optional bool disable_search_term_matching = 1;\n+ }\n+\n // Immutable. The resource name of the ad group.\n // Ad group resource names have the form:\n //\n@@ -301,10 +323,16 @@\n\n // Output only. Provides reasons for why an ad group is not serving or not\n // serving optimally.\n- repeated google.ads.googleads.v20.enums.AdGroupPrimaryStatusReasonEnum\n+ repeated google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum\n .AdGroupPrimaryStatusReason primary_status_reasons = 63\n [(google.api.field_behavior) = OUTPUT_ONLY];\n\n // Settings for Demand Gen ad groups.\n DemandGenAdGroupSettings demand_gen_ad_group_settings = 91;\n+\n+ // Settings for video ad groups.\n+ VideoAdGroupSettings video_ad_group_settings = 92;\n+\n+ // Settings for AI Max feature in standard search adgroups.\n+ AiMaxAdGroupSetting ai_max_ad_group_setting = 71;\n }\n```"]]