AdsApp.MediaBundleBuilder
Stay organized with collections Save and categorize content based on your preferences.
Builder for a media bundle under construction.
Typical usage:
var mediaBundleUrl = "http://www.example.com/example.zip";
var mediaBundleBlob = UrlFetchApp.fetch(mediaBundleUrl).getBlob();
var mediaOperation = AdsApp.adMedia().newMediaBundleBuilder()
.withName("name")
.withData(mediaBundleBlob)
.build();
var mediaBundle = mediaOperation.getResult();
Note that it is only necessary to call MediaOperation.getResult() if you need to access the new media item for further processing (for instance, to reate an ad). Otherwise, calling MediaBundleBuilder.build() is sufficient to ensure that the ad is created.
Methods:
build()
Creates a media bundle. Returns a
MediaOperation
that can be used to get the new media bundle (or access any associated errors if the creation failed).
Return values:
withData(data)
Sets new media bundle's data to the specified value. This field is required.
Arguments:
Name | Type | Description |
---|
data | Blob.Blob | The data for the media bundle. |
Return values:
withName(name)
Sets new media bundle's name to the specified value. This field is required.
Arguments:
Name | Type | Description |
---|
name | String | The name for the media bundle. |
Return values:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-04-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-21 UTC."],[[["The MediaBundleBuilder facilitates the creation of media bundles within Google Ads scripts."],["`withData` and `withName` methods are required to set the bundle's data and name respectively."],["`build()` initiates the creation process, returning a MediaOperation for further handling or error checking."],["Calling `getResult()` on the MediaOperation is optional and only needed for further processing, such as ad creation."]]],[]]