ऐसेट ऑटोमेशन की सेटिंग

Google Ads, ऐसेट ऑप्टिमाइज़ेशन की कई सुविधाएं देता है. इन सुविधाओं की मदद से, आपके विज्ञापनों की विज्ञापन क्वालिटी को बेहतर बनाने के लिए, अपने-आप ऑप्टिमाइज़ेशन किया जा सकता है.

इनमें, विज्ञापन के लैंडिंग पेज का प्रीव्यू दिखाने वाली इमेज ऐसेट को अपने-आप जनरेट करने से लेकर, अलग-अलग फ़ॉर्मैट और अलग-अलग लंबाई के लिए वीडियो ऐसेट को ऑप्टिमाइज़ करने तक की सुविधाएं शामिल हैं.

ऐसेट ऑटोमेशन की हर सेटिंग में, asset_automation_type, होता है. इससे यह तय होता है कि यह किस तरह के ऐसेट ऑटोमेशन को दिखाता है. साथ ही, इसमें asset_automation_status, भी होता है. इससे यह पता चलता है कि ऑटोमेशन की सुविधा चालू है या बंद.

कुछ ऐसेट ऑटोमेशन, कैंपेन लेवल पर कॉन्फ़िगर किए जाते हैं. वहीं, कुछ को विज्ञापन ग्रुप के विज्ञापन लेवल पर सेट किया जाता है.

कैंपेन-लेवल की ऐसेट ऑटोमेशन सेटिंग

इन सेटिंग से, पूरे कैंपेन के लिए ऐसेट ऑटोमेशन कॉन्फ़िगर किया जाता है. यह ज़रूरी नहीं है कि ये सेटिंग हर तरह के कैंपेन के लिए उपलब्ध हों. ज़्यादा जानकारी के लिए, रेफ़रंस के लिए दस्तावेज़ देखें.

ऐसेट ऑटोमेशन का टाइप Search Ads 360 के साथ इस्तेमाल किए जा सकने वाले कैंपेन टाइप डिफ़ॉल्ट
FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION परफ़ॉर्मेंस मैक्स, Search Network

परफ़ॉर्मेंस मैक्स के लिए चालू और Search Network के लिए बंद.

ध्यान दें: फ़ाइनल यूआरएल एक्सपैंशन की सुविधा चालू करने पर, Google डाइनैमिक तरीके से चुने गए लैंडिंग पेजों के कॉन्टेंट से मैच करने के लिए, डाइनैमिक तरीके से टेक्स्ट ऐसेट (हेडलाइन और ब्यौरे) जनरेट करेगा. अगर फ़ाइनल यूआरएल एक्सपैंशन की सुविधा चालू है, तो इससे ऑप्ट आउट नहीं किया जा सकता. इसकी तुलना, TEXT_ASSET_AUTOMATION (पसंद के मुताबिक टेक्स्ट बनाने की सुविधा) से करें. यह सुविधा, कैंपेन में मौजूद सभी विज्ञापनों की कॉपी को पसंद के मुताबिक बनाती है.

GENERATE_ENHANCED_YOUTUBE_VIDEOS परफ़ॉर्मेंस मैक्स चालू
GENERATE_IMAGE_ENHANCEMENT परफ़ॉर्मेंस मैक्स परफ़ॉर्मेंस मैक्स के लिए चालू और Search Network के लिए बंद
GENERATE_IMAGE_EXTRACTION परफ़ॉर्मेंस मैक्स खाता-लेवल पर, डाइनैमिक इमेज एक्सटेंशन के कंट्रोल की वैल्यू.

ध्यान दें: खाता-लेवल की इस सेटिंग को सिर्फ़ Google Ads के वेब इंटरफ़ेस में कॉन्फ़िगर किया जा सकता है.

TEXT_ASSET_AUTOMATION परफ़ॉर्मेंस मैक्स, Search Network परफ़ॉर्मेंस मैक्स के लिए चालू और Search Network के लिए बंद

यहां दिया गया स्निपेट दिखाता है कि परफ़ॉर्मेंस मैक्स कैंपेन के लिए, ऐसेट ऑटोमेशन सेटिंग को OPT_IN पर कैसे सेट किया जाता है:

Java

// Configures the optional opt-in/out status for asset automation settings.
.addAllAssetAutomationSettings(ImmutableList.of(
    AssetAutomationSetting.newBuilder()
        .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_EXTRACTION)
        .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(),
    AssetAutomationSetting.newBuilder()
        .setAssetAutomationType(
            AssetAutomationType.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION)
        .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(),
    AssetAutomationSetting.newBuilder()
        .setAssetAutomationType(AssetAutomationType.TEXT_ASSET_AUTOMATION)
        .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(),
    AssetAutomationSetting.newBuilder()
        .setAssetAutomationType(AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS)
        .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(),
    AssetAutomationSetting.newBuilder()
        .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_ENHANCEMENT)
        .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build()))
      

C#

campaign.AssetAutomationSettings.AddRange(new[]{
    new Campaign.Types.AssetAutomationSetting
    {
        AssetAutomationType = AssetAutomationType.GenerateImageExtraction,
        AssetAutomationStatus = AssetAutomationStatus.OptedIn
    },
    new Campaign.Types.AssetAutomationSetting
    {
        AssetAutomationType = AssetAutomationType.FinalUrlExpansionTextAssetAutomation,
        AssetAutomationStatus = AssetAutomationStatus.OptedIn
    },
    new Campaign.Types.AssetAutomationSetting
    {
        AssetAutomationType = AssetAutomationType.TextAssetAutomation,
        AssetAutomationStatus = AssetAutomationStatus.OptedIn
    },
    new Campaign.Types.AssetAutomationSetting
    {
        AssetAutomationType = AssetAutomationType.GenerateEnhancedYoutubeVideos,
        AssetAutomationStatus = AssetAutomationStatus.OptedIn
    },
    new Campaign.Types.AssetAutomationSetting
    {
        AssetAutomationType = AssetAutomationType.GenerateImageEnhancement,
        AssetAutomationStatus = AssetAutomationStatus.OptedIn
    },
});
      

PHP

This example is not yet available in PHP; you can take a look at the other languages.
    

Python

# Configures the optional opt-in/out status for asset automation settings.
for asset_automation_type_enum in [
    client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_EXTRACTION,
    client.enums.AssetAutomationTypeEnum.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION,
    client.enums.AssetAutomationTypeEnum.TEXT_ASSET_AUTOMATION,
    client.enums.AssetAutomationTypeEnum.GENERATE_ENHANCED_YOUTUBE_VIDEOS,
    client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_ENHANCEMENT,
]:
    asset_automattion_setting: Campaign.AssetAutomationSetting = (
        client.get_type("Campaign").AssetAutomationSetting()
    )
    asset_automattion_setting.asset_automation_type = (
        asset_automation_type_enum
    )
    asset_automattion_setting.asset_automation_status = (
        client.enums.AssetAutomationStatusEnum.OPTED_IN
    )
    campaign.asset_automation_settings.append(asset_automattion_setting)
      

Ruby

# Configures the optional opt-in/out status for asset automation settings.
c.asset_automation_settings << client.resource.asset_automation_setting do |aas|
  aas.asset_automation_type = :GENERATE_IMAGE_EXTRACTION
  aas.asset_automation_status = :OPTED_IN
end
c.asset_automation_settings << client.resource.asset_automation_setting do |aas|
  aas.asset_automation_type = :FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION
  aas.asset_automation_status = :OPTED_IN
end
c.asset_automation_settings << client.resource.asset_automation_setting do |aas|
  aas.asset_automation_type = :TEXT_ASSET_AUTOMATION
  aas.asset_automation_status = :OPTED_IN
end
c.asset_automation_settings << client.resource.asset_automation_setting do |aas|
  aas.asset_automation_type = :GENERATE_ENHANCED_YOUTUBE_VIDEOS
  aas.asset_automation_status = :OPTED_IN
end
c.asset_automation_settings << client.resource.asset_automation_setting do |aas|
  aas.asset_automation_type = :GENERATE_IMAGE_ENHANCEMENT
  aas.asset_automation_status = :OPTED_IN
end
      

Perl

# Configures the optional opt-in/out status for asset automation settings.
# When we create the campaign object, we set campaign->{assetAutomationSettings}
# equal to $asset_automation_settings.
my $asset_automation_settings = [];
my $asset_automation_types    = [
  GENERATE_IMAGE_EXTRACTION, FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION,
  TEXT_ASSET_AUTOMATION,     GENERATE_ENHANCED_YOUTUBE_VIDEOS,
  GENERATE_IMAGE_ENHANCEMENT
];
foreach my $asset_automation_type (@$asset_automation_types) {
  push @$asset_automation_settings,
    Google::Ads::GoogleAds::V24::Resources::AssetAutomationSetting->new({
      assetAutomationStatus => OPTED_IN,
      assetAutomationType   => $asset_automation_type
    });
}
      

curl

विज्ञापन-लेवल की ऐसेट ऑटोमेशन सेटिंग

इन सेटिंग से, किसी एक विज्ञापन के लिए ऐसेट ऑटोमेशन कॉन्फ़िगर किया जाता है. यह ज़रूरी नहीं है कि ये सेटिंग हर तरह के विज्ञापन के टाइप के लिए उपलब्ध हों. ज़्यादा जानकारी के लिए, रेफ़रंस के लिए दस्तावेज़ देखें.

ऐसेट ऑटोमेशन का टाइप इस्तेमाल किए जा सकने वाले विज्ञापन टाइप डिफ़ॉल्ट
GENERATE_ANIMATED_IMAGES_FROM_OTHER_ASSETS DemandGenMultiAssetAd चालू
GENERATE_DESIGN_VERSIONS_FOR_IMAGES DemandGenMultiAssetAd चालू
GENERATE_LANDING_PAGE_PREVIEW DemandgenVideoResponsiveAd बंद
GENERATE_LANDING_PAGE_TEXT DemandgenVideoResponsiveAd चालू
GENERATE_SHORTER_YOUTUBE_VIDEOS DemandGenVideoResponsiveAd चालू
GENERATE_VERTICAL_YOUTUBE_VIDEOS DemandGenVideoResponsiveAd चालू
GENERATE_VIDEOS_FROM_OTHER_ASSETS DemandGenMultiAssetAds चालू

टेक्स्ट से जुड़े दिशा-निर्देश

टेक्स्ट से जुड़े दिशा-निर्देशों की मदद से, परफ़ॉर्मेंस मैक्स और एआई मैक्स कैंपेन में, अपने-आप जनरेट होने वाली टेक्स्ट ऐसेट के लिए ब्रैंड मैसेज को बेहतर बनाया जा सकता है. इसके लिए, शब्दों को बाहर रखने की सेटिंग और मैसेज भेजने से जुड़ी पाबंदियां तय की जा सकती हैं.

टेक्स्ट से जुड़े दिशा-निर्देशों का इस्तेमाल करने के लिए, text_guidelines फ़ील्ड में जानकारी भरें:Campaign

  • शब्दों को बाहर रखने की सेटिंग: जनरेट की गई टेक्स्ट ऐसेट से बाहर रखे जाने वाले सटीक शब्दों या वाक्यांशों की सूची दें. हर शब्द या वाक्यांश में ज़्यादा से ज़्यादा 30 वर्ण हो सकते हैं. साथ ही, ज़्यादा से ज़्यादा 25 शब्दों या वाक्यांशों को बाहर रखा जा सकता है.
  • मैसेज भेजने से जुड़ी पाबंदियां: एआई की मदद से टेक्स्ट जनरेट करने के लिए, फ़्रीफ़ॉर्म निर्देश (हर निर्देश में ज़्यादा से ज़्यादा 300 वर्ण) दें. ज़्यादा से ज़्यादा 40 पाबंदियां दी जा सकती हैं. पाबंदी के टाइप के लिए, सिर्फ़ RESTRICTION_BASED_EXCLUSION का इस्तेमाल किया जा सकता है.