AdsApp.​MediaBundleBuilder

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:

MemberTypeDescription
buildAdsApp.MediaOperationCreates a media bundle.
withDataAdsApp.MediaBundleBuilderSets new media bundle's data to the specified value.
withNameAdsApp.MediaBundleBuilderSets new media bundle's name to the specified value.

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:

TypeDescription
AdsApp.MediaOperationThe media operation.

withData(data)

Sets new media bundle's data to the specified value. This field is required.

Arguments:

NameTypeDescription
dataBlob.BlobThe data for the media bundle.

Return values:

TypeDescription
AdsApp.MediaBundleBuilderThe media bundle builder with the specified data.

withName(name)

Sets new media bundle's name to the specified value. This field is required.

Arguments:

NameTypeDescription
nameStringThe name for the media bundle.

Return values:

TypeDescription
AdsApp.MediaBundleBuilderThe media bundle builder with the specified name.