Skip to content

Commit ccef6ce

Browse files
author
David Wihl
committed
Ad Manager v202008 release
1 parent 7a7ee66 commit ccef6ce

File tree

204 files changed

+1001
-570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+1001
-570
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
25.0.0 -- 08/18/2020
2+
* Added support for Ad Manager v202008.
3+
* Removed support for Ad Manager v201908.
4+
* Removed examples for Ad Manager v201911.
5+
16
24.1.0 -- 07/13/2020
27
* Added 'GoogleCredentialsClient' class to re-use an OAuth2 credentials object
38

examples/ad_manager/v201911/adjustment_service/create_traffic_adjustments.py

Lines changed: 0 additions & 143 deletions
This file was deleted.

examples/ad_manager/v201911/adjustment_service/update_traffic_adjustments.py

Lines changed: 0 additions & 88 deletions
This file was deleted.

examples/ad_manager/v202002/network_service/make_test_network.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
is not associated with any other Ad Manager test networks. Once this network is
2323
created, you can supply the network code in your settings to make calls to
2424
other services.
25-
26-
Alternatively, if you do not wish to run this example, you can create a test
27-
network at:
28-
https://dfp-playground.appspot.com
2925
"""
3026

3127

examples/ad_manager/v202005/network_service/make_test_network.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
is not associated with any other Ad Manager test networks. Once this network is
2323
created, you can supply the network code in your settings to make calls to
2424
other services.
25-
26-
Alternatively, if you do not wish to run this example, you can create a test
27-
network at:
28-
https://dfp-playground.appspot.com
2925
"""
3026

3127

examples/ad_manager/v201911/activity_group_service/__init__.py renamed to examples/ad_manager/v202008/activity_group_service/__init__.py

File renamed without changes.

examples/ad_manager/v201911/activity_group_service/create_activity_groups.py renamed to examples/ad_manager/v202008/activity_group_service/create_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
def main(client, advertiser_company_id):
3939
# Initialize appropriate service.
4040
activity_group_service = client.GetService('ActivityGroupService',
41-
version='v201911')
41+
version='v202008')
4242

4343
# Create a short-term activity group.
4444
short_term_activity_group = {

examples/ad_manager/v201911/activity_group_service/get_active_activity_groups.py renamed to examples/ad_manager/v202008/activity_group_service/get_active_activity_groups.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
def main(client):
2424
# Initialize appropriate service.
2525
activity_group_service = client.GetService(
26-
'ActivityGroupService', version='v201911')
26+
'ActivityGroupService', version='v202008')
2727
# Create a statement to select activity groups.
28-
statement = (ad_manager.StatementBuilder(version='v201911')
28+
statement = (ad_manager.StatementBuilder(version='v202008')
2929
.Where('status = :status')
3030
.WithBindVariable('status', 'ACTIVE'))
3131

examples/ad_manager/v201911/activity_group_service/get_all_activity_groups.py renamed to examples/ad_manager/v202008/activity_group_service/get_all_activity_groups.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
def main(client):
2424
# Initialize appropriate service.
2525
activity_group_service = client.GetService(
26-
'ActivityGroupService', version='v201911')
26+
'ActivityGroupService', version='v202008')
2727

2828
# Create a statement to select activity groups.
29-
statement = ad_manager.StatementBuilder(version='v201911')
29+
statement = ad_manager.StatementBuilder(version='v202008')
3030

3131
# Retrieve a small amount of activity groups at a time, paging
3232
# through until all activity groups have been retrieved.

examples/ad_manager/v201911/activity_group_service/update_activity_groups.py renamed to examples/ad_manager/v202008/activity_group_service/update_activity_groups.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
def main(client, activity_group_id, advertiser_company_id):
3838
# Initialize appropriate service.
3939
activity_group_service = client.GetService('ActivityGroupService',
40-
version='v201911')
40+
version='v202008')
4141

4242
# Create statement object to select a single activity groups by ID.
43-
statement = (ad_manager.StatementBuilder(version='v201911')
43+
statement = (ad_manager.StatementBuilder(version='v202008')
4444
.Where('id = :activityGroupId')
4545
.WithBindVariable('activityGroupId', int(activity_group_id))
4646
.Limit(1))

0 commit comments

Comments
 (0)