मैन्युअल तरीके से बोली लगाना

डिसप्ले और Video 360 API की मदद से, कस्टम बिडिंग को पूरी तरह से मैनेज किया जा सकता है लागू करना. कस्टम बिडिंग के एल्गोरिदम बनाए जा सकते हैं, उन्हें अपलोड किया जा सकता है, और उनकी पुष्टि की जा सकती है अलग-अलग स्क्रिप्ट बना सकता है और किसी संसाधन को उसकी बिडिंग के तौर पर एक खास एल्गोरिदम असाइन कर सकता है रणनीति.

इस पेज पर, कस्टम बिडिंग के लिए एल्गोरिदम बनाने, अपडेट करने, और असाइन करने का तरीका बताया गया है डिसप्ले और Video 360 API. हर सेक्शन में एक कोड सैंपल दिया गया है.

कस्टम बिडिंग का एल्गोरिदम बनाना

CustomBiddingAlgorithm ऑब्जेक्ट, किसी व्यक्ति की जानकारी देता है इस एल्गोरिदम को बिडिंग की रणनीति में इस्तेमाल करने के लिए, किसी लाइन आइटम को असाइन किया जा सकता है. यह ऑब्जेक्ट में एल्गोरिदम पर जानकारी होती है, जैसे कि customBiddingAlgorithmType और entityStatus और readinessState और suspensionState के लिए हर काम के विज्ञापन देने वाले के जनरेट किए गए मॉडल का डेटा इकट्ठा करना ज़रूरी है. आप बना सकते हैं CustomBiddingScript और CustomBiddingAlgorithmRules ऑब्जेक्ट, एल्गोरिदम का इस्तेमाल किया जा सकता है.

स्क्रिप्ट-आधारित कस्टम बिडिंग एल्गोरिदम बनाने का तरीका यहां दिया गया है:

Java

// Create the custom bidding algorithm structure.
CustomBiddingAlgorithm customBiddingAlgorithm =
    new CustomBiddingAlgorithm()
        .setAdvertiserId(advertiser-id)
        .setDisplayName(display-name)
        .setEntityStatus("ENTITY_STATUS_ACTIVE")
        .setCustomBiddingAlgorithmType("SCRIPT_BASED");

// Configure the create request.
CustomBiddingAlgorithms.Create request =
    service.customBiddingAlgorithms().create(customBiddingAlgorithm);

// Create the custom bidding algorithm.
CustomBiddingAlgorithm response = request.execute();

// Display the new custom bidding algorithm name.
System.out.printf(
    "Custom bidding algorithm %s was created.%n",
    response.getName()
);

Python

# Create a custom bidding algorithm object.
custom_bidding_algorithm_obj = {
    'advertiserId': advertiser-id,
    'displayName': display-name,
    'entityStatus': 'ENTITY_STATUS_ACTIVE',
    'customBiddingAlgorithmType': 'SCRIPT_BASED'
}

# Create the custom bidding algorithm.
response = service.customBiddingAlgorithms().create(
    body=custom_bidding_algorithm_obj
).execute()

# Display the new custom bidding algorithm.
print(f'The following Custom Bidding Algorithm was created: {response}')

PHP

// Create a custom bidding algorithm object.
$customBiddingAlgorithm =
    new Google_Service_DisplayVideo_CustomBiddingAlgorithm();
$customBiddingAlgorithm->setAdvertiserId(advertiser-id);
$customBiddingAlgorithm->setDisplayName(display-name);
$customBiddingAlgorithm->setEntityStatus('ENTITY_STATUS_ACTIVE');
$customBiddingAlgorithm->setCustomBiddingAlgorithmType('SCRIPT_BASED');

// Create the custom bidding algorithm.
$result =
    $this->service->customBiddingAlgorithms->create($customBiddingAlgorithm);

// Display the new custom bidding algorithm name.
printf('Custom Bidding Algorithm %s was created.\n', $result['name']);

एल्गोरिदम का ऐक्सेस मैनेज करना

कस्टम बिडिंग के एल्गोरिदम का मालिकाना हक, किसी पार्टनर या विज्ञापन देने वाले के पास हो सकता है. एल्गोरिदम कोई भी बच्चा और पार्टनर, उनके मालिकाना हक वाले कॉन्टेंट को ऐक्सेस और बदल सकता है विज्ञापन देने वाली उन कंपनियों के लिए जिन्हें sharedAdvertiserIds फ़ील्ड में डाला गया है. किसी विज्ञापन देने वाले के मालिकाना हक वाले एल्गोरिदम को हालांकि, इसे दूसरे विज्ञापन देने वालों के साथ शेयर नहीं किया जा सकता.

अगर सिर्फ़ एक विज्ञापन देने वाले के लिए एल्गोरिदम का इस्तेमाल किया जा रहा है, तो मालिक के तौर पर विज्ञापन देने वाले के पास advertiserId फ़ील्ड हो. अगर ऐसा नहीं करना है, तो विज्ञापन देने वालों के पैरंट पार्टनर को partnerId फ़ील्ड में भरें और विज्ञापन देने वालों को sharedAdvertiserIds फ़ील्ड.

एल्गोरिदम लॉजिक अपलोड करें

कस्टम बिडिंग वाले एल्गोरिदम के टाइप के आधार पर, आपको किसी स्क्रिप्ट या नियम ऑब्जेक्ट में, जहां एल्गोरिदम का इस्तेमाल करने के लिए लॉजिक उपलब्ध कराना चाहिए.

स्क्रिप्ट अपलोड करें

स्क्रिप्ट पर आधारित कस्टम बिडिंग वाले एल्गोरिदम, उपयोगकर्ता के उपलब्ध कराए गए एल्गोरिदम का इस्तेमाल करते हैं स्क्रिप्ट का इस्तेमाल करें. आसान स्क्रिप्ट के सैंपल और ऐडवांस फ़ील्ड इनके ज़रिए उपलब्ध होते हैं: प्रदर्शन और Video 360 सहायता केंद्र.

नीचे दिए गए सेक्शन में, कस्टम स्क्रिप्ट में नई या अपडेट की गई स्क्रिप्ट जोड़ने का तरीका बताया गया है बिडिंग एल्गोरिदम.

स्क्रिप्ट संसाधन की जगह वापस पाना

सबसे पहले, कस्टम बिडिंग के तहत, उपलब्ध संसाधन की जगह का पता लगाना एल्गोरिदम संसाधन का इस्तेमाल customBiddingAlgorithms.uploadScript तरीका. यह अनुरोध, CustomBiddingScriptRef ऑब्जेक्ट दिखाता है. संसाधन का नाम. आप अपनी स्क्रिप्ट फ़ाइल को उस जगह पर अपलोड करें जो संसाधन का नाम. इसके बाद, कस्टम बिडिंग के स्क्रिप्ट रेफ़रंस ऑब्जेक्ट का इस्तेमाल करके, अपना स्क्रिप्ट संसाधन बनाएं.

यहां दिए गए उदाहरण में बताया गया है कि किसी उपलब्ध संसाधन की जगह को कैसे वापस लाया जा सकता है:

Java

// Retrieve a usable custom bidding script
// reference.
CustomBiddingScriptRef scriptRef =
    service
        .customBiddingAlgorithms()
        .uploadScript(custom-bidding-algorithm-id)
        .setAdvertiserId(advertiser-id)
        .execute();

// Display the custom bidding script reference resource path.
System.out.printf(
    "The script can be uploaded to the following resource path: %s%n",
    scriptRef.getResourceName()
);

Python

# Retrieve a usable custom bidding script reference
# object.
custom_bidding_script_ref = service.customBiddingAlgorithms().uploadScript(
    customBiddingAlgorithmId=custom-bidding-algorithm-id,
    advertiserId=advertiser-id
).execute()

# Display the new custom bidding script reference object.
print('The following custom bidding script reference object was retrieved:'
      f'{custom_bidding_script_ref}')

PHP

// Set parent advertiser ID of custom bidding
// algorithm in optional parameters array for request.
$optParams = array('advertiserId' => advertiser-id);

// Retrieve a usable custom bidding script reference.
$scriptRefResponse = $this->service->customBiddingAlgorithms->uploadScript(
    custom-bidding-algorithm-id,
    $optParams
);

// Display the new custom bidding script reference object.
printf(
    'The script can be uploaded to the following resource path: %s\n',
    $scriptRefResponse->getResourceName()
);

स्क्रिप्ट फ़ाइल अपलोड करें

एक उपलब्ध संसाधन स्थान पुनर्प्राप्त करने के बाद, अपनी स्क्रिप्ट फ़ाइल को उस पर अपलोड करें Display &में जगह Video 360 सिस्टम, जिसमें media.upload तरीका. यह तरीका, आसान अपलोड, जिसमें क्वेरी पैरामीटर की ज़रूरत होती है uploadType=media.

यहां दिए गए उदाहरण में, फिर से हासिल किए गए कस्टम एट्रिब्यूट के मुताबिक स्क्रिप्ट फ़ाइल को अपलोड करने का तरीका बताया गया है बिडिंग स्क्रिप्ट रेफ़रंस ऑब्जेक्ट:

Java

// Create media object.
GoogleBytestreamMedia media = new GoogleBytestreamMedia();
media.setResourceName(resource-name);

// Create input stream for the script file.
InputStreamContent scriptFileStream =
    new InputStreamContent(
        null, new FileInputStream(script-path));

// Create media.upload request.
Media.Upload uploadRequest =
        service
            .media()
            .upload(
                resource-name,
                media,
                scriptFileStream);

// Retrieve uploader from the request and set it to us a simple
// upload request.
MediaHttpUploader uploader = uploadRequest.getMediaHttpUploader();
uploader.setDirectUploadEnabled(true);

// Execute the upload using an Upload URL with the destination resource
// name.
uploader
    .upload(
        new GenericUrl(
            "https://displayvideo.googleapis.com/upload/media/"
                + resource-name));

Python

# Create a media upload object.
media = MediaFileUpload(script-path)

# Create upload request.
upload_request = service.media().upload(
    resourceName=resource-name, media_body=media)

# Override response handler to expect null response.
upload_request.postproc = HttpRequest.null_postproc

# Upload script to resource location given in retrieved custom bidding
# script reference object.
upload_request.execute()

PHP

// Create a media object.
$mediaBody = new Google_Service_DisplayVideo_GoogleBytestreamMedia();
$mediaBody->setResourceName(resource-name);

// Set parameters for upload request.
$optParams = array(
    'data' => file_get_contents(script-path),
    'uploadType' => 'media',
    'resourceName' => resource-name
);

// Upload script file to given resource location.
$this->service->media->upload(
    resource-name,
    $mediaBody,
    $optParams
);

cURL

curl --request POST 'https://displayvideo.googleapis.com/upload/media/resource-name?uploadType=media' 
  -H 'authorization: Bearer access-token'
  -H 'Content-Type: text/plain'
  --data-binary @script-path

स्क्रिप्ट ऑब्जेक्ट बनाएं

स्क्रिप्ट फ़ाइल अपलोड करने के बाद, इसकी मदद से एक कस्टम बिडिंग स्क्रिप्ट संसाधन बनाएं customBiddingAlgorithms.scripts.create तरीका. कॉन्टेंट बनाने अनुरोध में पास किया गया CustomBiddingScript ऑब्जेक्ट सिर्फ़ असाइन किए गए के तौर पर CustomBiddingScriptRef ऑब्जेक्ट को शामिल करें script फ़ील्ड की वैल्यू डालें. इससे, अपलोड की गई फ़ाइल को जोड़ा जाता है नए स्क्रिप्ट संसाधन वाली स्क्रिप्ट फ़ाइल.

यहां स्क्रिप्ट संसाधन बनाने का एक उदाहरण दिया गया है:

Java

// Create the custom bidding script structure.
CustomBiddingScript customBiddingScript =
    new CustomBiddingScript()
        .setScript(custom-bidding-script-ref);

// Create the custom bidding script.
CustomBiddingScript response =
    service
        .customBiddingAlgorithms()
        .scripts()
        .create(custom-bidding-algorithm-id, customBiddingScript)
        .setAdvertiserId(advertiser-id)
        .execute();

// Display the new script resource name
System.out.printf(
    "The following script was created: %s%n",
    response.getName());

Python

# Create a custom bidding script object.
script_obj = {
    'script': custom-bidding-script-ref
}

# Create the custom bidding script.
response = service.customBiddingAlgorithms().scripts().create(
    customBiddingAlgorithmId=custom-bidding-algorithm-id,
    advertiserId=advertiser-id,
    body=script_obj).execute()

# Display the new custom bidding script object.
print(f'The following custom bidding script was created: {response}')

PHP

// Create the custom bidding script object.
$customBiddingScript =
    new Google_Service_DisplayVideo_CustomBiddingScript();
$customBiddingScript->setScript(custom-bidding-script-ref);

// Set parameters for create script request.
$optParams = array(
    'advertiserId' => advertiser-id
);

// Create the custom bidding script.
$result = $this->service->customBiddingAlgorithms_scripts->create(
    custom-bidding-algorithm-id,
    $customBiddingScript,
    $optParams
);

// Display the new script resource name.
printf('The following script was created: %s.\n', $result->getName());

कस्टम बिडिंग के लिए स्क्रिप्ट संसाधन बनाने के बाद, Display & Video 360, स्क्रिप्ट दर्ज करके सुनिश्चित करें कि इंप्रेशन स्कोर करने के लिए इसका सफलतापूर्वक उपयोग किया जा सकता है. स्क्रिप्ट ऑब्जेक्ट के ज़रिए इस संसाधन की स्थिति का पता लगाएं state फ़ील्ड. नई स्क्रिप्ट स्वीकार होने के बाद, कस्टम बिडिंग एल्गोरिदम, इंप्रेशन वैल्यू इकट्ठा करने के लिए स्क्रिप्ट का इस्तेमाल करना शुरू करता है. यह की प्रक्रिया तुरंत हो जाती है, इसलिए आप इस प्रक्रिया से पहले एल्गोरिदम को अपडेट करना न भूलें कोई नया स्क्रिप्ट संसाधन बनाकर.

अपलोड करने के नियम

नियम-आधारित कस्टम बिडिंग एल्गोरिदम, इंप्रेशन की कीमत का आकलन करने के लिए, AlgorithmRules ऑब्जेक्ट.

AlgorithmRules ऑब्जेक्ट को JSON फ़ाइल में अपलोड किया जाता है. इसके बाद, कस्टम बिडिंग एल्गोरिदम से जुड़ने के लिए, CustomBiddingAlgorithmRules ऑब्जेक्ट.

नियम संसाधन की जगह वापस पाना

सबसे पहले, कस्टम बिडिंग के तहत, उपलब्ध संसाधन की जगह का पता लगाना एल्गोरिदम संसाधन का इस्तेमाल customBiddingAlgorithms.uploadRules तरीका. यह अनुरोध से CustomBiddingAlgorithmsRulesRef ऑब्जेक्ट दिखता है इसके लिए, संसाधन का नाम डालें. अपने नियम अपलोड किए जा सकते हैं फ़ाइल को किसी संसाधन के नाम से तय की गई जगह पर भेजता है. इसके बाद अपने नियम बनाने के लिए, कस्टम बिडिंग एल्गोरिदम के नियम के रेफ़रंस ऑब्जेक्ट का इस्तेमाल करें संसाधन.

यहां दिए गए उदाहरण में बताया गया है कि किसी उपलब्ध संसाधन की जगह को कैसे वापस लाया जा सकता है:

Java

// Create the custom bidding algorithm structure.
CustomBiddingAlgorithmRulesRef rulesRef =
    service
        .customBiddingAlgorithms()
        .uploadRules(custom-bidding-algorithm-id)
        .setAdvertiserId(advertiser-id)
        .execute();

System.out.printf(
    "The rules can be uploaded to the following resource path: %s%n",
    rulesRef.getResourceName()
);

Python

# Retrieve a usable custom bidding algorithm rules reference
# object.
custom_bidding_algorithm_rules_ref = service.customBiddingAlgorithms().uploadRules(
    customBiddingAlgorithmId=custom-bidding-algorithm-id,
    advertiserId=advertiser-id
).execute()

# Display the new custom bidding algorithm rules reference object.
print('The following custom bidding algorithm rules reference object was retrieved:'
      f' {custom_bidding_algorithm_rules_ref}')

PHP

// Set parent advertiser ID of custom bidding algorithm
// in optional parameters array for request.
$optParams = array('advertiserId' => advertiser-id);

// Retrieve a usable custom bidding algorithm rules reference.
$rulesRefResponse = $this->service->customBiddingAlgorithms->uploadRules(
    custom-bidding-algorithm-id,
    $optParams
);

// Display the new custom bidding algorithm rules reference object resource path.
printf(
    'The rules can be uploaded to the following resource path: %s\n',
    $rulesRefResponse->getResourceName()
);

AlgorithmRules फ़ाइल अपलोड करें

एक उपलब्ध संसाधन स्थान को पुनर्प्राप्त करने के बाद, अपनी नियम फ़ाइल को उस पर अपलोड करें Display &में जगह Video 360 सिस्टम, जिसमें media.upload तरीका. यह तरीका, आसान अपलोड, जिसमें क्वेरी पैरामीटर की ज़रूरत होती है uploadType=media.

वापस मिले डेटा के आधार पर, AlgorithmRules फ़ाइल को अपलोड करने का तरीका यहां दिया गया है कस्टम बिडिंग एल्गोरिदम के नियमों का रेफ़रंस ऑब्जेक्ट:

Java

// Create media object.
GoogleBytestreamMedia media = new GoogleBytestreamMedia();
media.setResourceName(resource-name);

// Create input stream for the rules file.
InputStreamContent rulesFileStream =
    new InputStreamContent(
        null, new FileInputStream(rules-file-path));

// Create media.upload request.
 Media.Upload uploadRequest =
    service
        .media()
        .upload(
            resource-name,
            media,
            rulesFileStream);

// Retrieve uploader from the request and set it to us a simple
// upload request.
MediaHttpUploader uploader = uploadRequest.getMediaHttpUploader();
uploader.setDirectUploadEnabled(true);

// Execute the upload using an Upload URL with the destination resource
// name.
uploader
    .upload(
        new GenericUrl(
            "https://displayvideo.googleapis.com/upload/media/"
                + resource-name));

Python

# Create a media upload object.
media = MediaFileUpload(rules-file-path)

# Create upload request.
upload_request = service.media().upload(
    resourceName=resource-name, media_body=media)

# Override response handler to expect null response.
upload_request.postproc = HttpRequest.null_postproc

# Upload rules file to resource location given in retrieved custom bidding
# algorithm rules reference object.
upload_request.execute()

PHP

// Create a media object.
$mediaBody = new Google_Service_DisplayVideo_GoogleBytestreamMedia();
$mediaBody->setResourceName(resource-name);

// Set parameters for upload request.
$optParams = array(
    'data' => file_get_contents(rules-file-path),
    'uploadType' => 'media',
    'resourceName' => resource-name
);

// Upload rules file to given resource location.
$this->service->media->upload(
    resource-name,
    $mediaBody,
    $optParams
);

cURL

curl --request POST 'https://displayvideo.googleapis.com/upload/media/resource-name?uploadType=media' 
  -H 'authorization: Bearer access-token'
  -H 'Content-Type: text/plain'
  --data-binary @rules-file-path

नियम ऑब्जेक्ट बनाना

AlgorithmRules JSON फ़ाइल अपलोड होने के बाद, कस्टम बिडिंग बनाएं एल्गोरिदम के नियम संसाधन को customBiddingAlgorithms.rules.create तरीका. कॉन्टेंट बनाने अनुरोध में पास किया गया CustomBiddingAlgorithmRules ऑब्जेक्ट यह होना चाहिए सिर्फ़ CustomBiddingAlgorithmRulesRef ऑब्जेक्ट को इस तरह शामिल करें rules फ़ील्ड की असाइन की गई वैल्यू. यह नए नियमों वाले रिसॉर्स के साथ AlgorithmRules JSON फ़ाइल अपलोड की गई.

यहां एक नियम संसाधन बनाने का एक उदाहरण दिया गया है:

Java

// Create the custom bidding algorithm rules structure.
CustomBiddingAlgorithmRules customBiddingAlgorithmRules =
    new CustomBiddingAlgorithmRules()
        .setRules(custom-bidding-algorithm-rules-ref);

// Create the rules resource.
CustomBiddingAlgorithmRules response =
    service
        .customBiddingAlgorithms()
        .rules()
        .create(custom-bidding-algorithm-id, customBiddingAlgorithmRules)
        .setAdvertiserId(advertiser-id)
        .execute();

// Display the new rules resource name.
System.out.printf(
    "The following custom bidding algorithm rules object was created: %s%n",
    response.getName());

Python

# Create the custom bidding algorithm rules object.
rules_obj = {
    'rules': custom-bidding-algorithm-rules-ref
}

# Create the rules resource.
response = service.customBiddingAlgorithms().rules().create(
    customBiddingAlgorithmId=custom-bidding-algorithm-id,
    advertiserId=advertiser-id,
    body=rules_obj).execute()

# Display the new custom bidding algorithm rules object.
print(f'The following custom bidding algorithm rules resource was created: {response}')

PHP

// Create the custom bidding algorithm rules object.
$customBiddingAlgorithmRules =
    new Google_Service_DisplayVideo_CustomBiddingAlgorithmRules();
$customBiddingAlgorithmRules->setRules(custom-bidding-algorithm-rules-ref);

// Set parameters for create rules request.
$optParams = array(
    'advertiserId' => advertiser-id
);

// Create the custom bidding algorithm rules resource.
$result = $this->service->customBiddingAlgorithms_rules->create(
    custom-bidding-algorithm-id,
    $customBiddingAlgorithmRules,
    $optParams
);

// Display the new custom bidding algorithm rules resource name.
printf('The following rules resource was created: %s.\n', $result->getName());

नियमों का संसाधन बनाने के बाद, Display & Video 360, नियमसेट को प्रोसेस करता है पक्का किया है कि इंप्रेशन स्कोर करने के लिए इसका इस्तेमाल सही तरीके से किया जा सकता है. स्थिति का पता लगाएं प्रोसेस करने के लिए, नियम के ऑब्जेक्ट के state फ़ील्ड का इस्तेमाल करें. नए नियम स्वीकार करने के बाद, कस्टम बिडिंग वाला एल्गोरिदम, नियमों का पालन करते हैं, ताकि इंप्रेशन वैल्यू तुरंत स्कोर की जा सकें.

अगर नियम अस्वीकार किए जाते हैं, तो नियमों में से अस्वीकार किए जाने की वजह जानें ऑब्जेक्ट का error. अगर आवेदन अस्वीकार हो जाता है, तो अपना AlgorithmRules ऑब्जेक्ट की मदद से गड़बड़ी को ठीक करें और शुरू होने वाली अपलोड की प्रोसेस को दोहराएं नियमों के रेफ़रंस ऑब्जेक्ट को फिर से हासिल करने से.

कस्टम बिडिंग का एल्गोरिदम असाइन करना

कस्टम बिडिंग वाला एल्गोरिदम बनाने के बाद, स्वीकार किया गया लॉजिक अपलोड करें और ज़रूरी शर्तों को पूरा करना होगा, तो आप अपने कस्टम किसी लाइन आइटम या इंसर्शन ऑर्डर की बिडिंग की रणनीति के लिए बिडिंग एल्गोरिदम.

कस्टम बिडिंग वाले एल्गोरिदम का इस्तेमाल इन कामों में किया जा सकता है खर्च को बढ़ाएं और BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO असाइन करके, परफ़ॉर्मेंस लक्ष्य बिडिंग की रणनीतियां और कस्टम बिडिंग एल्गोरिदम आईडी को performanceGoalType और customBiddingAlgorithmId फ़ील्ड. बिडिंग की रणनीति के आधार पर, अन्य बिड पैरामीटर उपलब्ध हो सकते हैं या आवश्यक.

खर्च बढ़ाने की बोली का इस्तेमाल करने के लिए, लाइन आइटम को अपडेट करने का तरीका यहां दिया गया है रणनीति, जिसमें कस्टम बिडिंग के लिए इस्तेमाल होने वाले एल्गोरिदम की जानकारी दी गई है:

Java

// Create the line item structure.
LineItem lineItem = new LineItem();

// Create and set the bidding strategy structure.
BiddingStrategy biddingStrategy = new BiddingStrategy();
MaximizeSpendBidStrategy maxSpendBidStrategy =
    new MaximizeSpendBidStrategy()
        .setPerformanceGoalType(
            "BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO")
        .setCustomBiddingAlgorithmId(custom-bidding-algorithm-id);
biddingStrategy.setMaximizeSpendAutoBid(maxSpendBidStrategy);
lineItem.setBidStrategy(biddingStrategy);

// Configure the patch request and set update mask to only update
// the bid strategy.
LineItems.Patch request =
    service
        .advertisers()
        .lineItems()
        .patch(advertiser-id, line-item-id, lineItem)
        .setUpdateMask("bidStrategy");

// Update the line item.
LineItem response = request.execute();

// Display the custom bidding algorithm ID used in the new
// bid strategy.
System.out.printf(
    "LineItem %s now has a bid strategy utilizing custom "
        + "bidding algorithm %s%n",
    response.getName(),
    response
        .getBidStrategy()
        .getMaximizeSpendAutoBid()
        .getCustomBiddingAlgorithmId());

Python

# Create the new bid strategy object.
bidding_strategy = {
    'maximizeSpendAutoBid': {
        'performanceGoalType':
            'BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO',
        'customBiddingAlgorithmId': custom-bidding-algorithm-id
    }
}

# Create a line item object assigning the new bid strategy.
line_item_obj = {'bidStrategy': bidding_strategy}

# Update the line item with a new bid strategy.
response = service.advertisers().lineItems().patch(
    advertiserId=advertiser-id,
    lineItemId=line-item-id,
    updateMask='bidStrategy',
    body=line_item_obj).execute()

# Display the line item's new bid strategy
print(f'Line Item {response["name"]} is now using the following bid'
     f' strategy: {response["bidStrategy"]}.')

PHP

// Create the line item structure.
$lineItem = new Google_Service_DisplayVideo_LineItem();

// Create and set the bidding strategy structure.
$biddingStrategy =  new Google_Service_DisplayVideo_BiddingStrategy();
$maximizeSpendBidStrategy =
    new Google_Service_DisplayVideo_MaximizeSpendBidStrategy();
$maximizeSpendBidStrategy->setPerformanceGoalType(
    'BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO'
);
$maximizeSpendBidStrategy->setCustomBiddingAlgorithmId(
    custom-bidding-algorithm-id
);
$biddingStrategy->setMaximizeSpendAutoBid($maximizeSpendBidStrategy);
$lineItem->setBidStrategy($biddingStrategy);

// Set update mask.
$optParams = array('updateMask' => 'bidStrategy');

// Update the line item.
$result = $this->service->advertisers_lineItems->patch(
    advertiser-id,
    line-item-id,
    $lineItem,
    $optParams
);

// Display the custom bidding algorithm ID used in the new bid strategy.
printf(
    'Line Item %s now has a bid strategy utilizing custom bidding algorithm %s.\n',
    $result['name'],
    $result['bidStrategy']['maximizeSpendBidStrategy']['customBiddingAlgorithmId']
);