Skip to content

Commit 4a411a3

Browse files
committed
Ad Manager v202311 release.
1 parent 4d40a9e commit 4a411a3

File tree

204 files changed

+319
-335
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

+319
-335
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
40.0.0 -- 11/03/2023
2+
* Added support for v202311.
3+
* Removed support for v202211.
4+
* Removed examples for v202302.
5+
16
39.0.0 -- 08/14/2023
27
* Added support for v202308.
38
* Removed support for v202208.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# The googleads Python client library
1+
# The Google Ad Manager SOAP API Python client library
22

3-
This client library simplifies accessing Google's SOAP Ads APIs - such as
4-
Ad Manager. The library provides easy ways to store your authentication and
3+
This client library simplifies accessing the Google Ad Manager SOAP API.
4+
The library provides easy ways to store your authentication and
55
create SOAP web service clients. It also contains example code to help you get
66
started integrating with our APIs.
77

examples/ad_manager/v202302/activity_group_service/__init__.py renamed to examples/ad_manager/v202311/activity_group_service/__init__.py

File renamed without changes.

examples/ad_manager/v202302/activity_group_service/create_activity_groups.py renamed to examples/ad_manager/v202311/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='v202302')
41+
version='v202311')
4242

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

examples/ad_manager/v202302/activity_group_service/get_active_activity_groups.py renamed to examples/ad_manager/v202311/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='v202302')
26+
'ActivityGroupService', version='v202311')
2727
# Create a statement to select activity groups.
28-
statement = (ad_manager.StatementBuilder(version='v202302')
28+
statement = (ad_manager.StatementBuilder(version='v202311')
2929
.Where('status = :status')
3030
.WithBindVariable('status', 'ACTIVE'))
3131

examples/ad_manager/v202302/activity_group_service/get_all_activity_groups.py renamed to examples/ad_manager/v202311/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='v202302')
26+
'ActivityGroupService', version='v202311')
2727

2828
# Create a statement to select activity groups.
29-
statement = ad_manager.StatementBuilder(version='v202302')
29+
statement = ad_manager.StatementBuilder(version='v202311')
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/v202302/activity_group_service/update_activity_groups.py renamed to examples/ad_manager/v202311/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='v202302')
40+
version='v202311')
4141

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

examples/ad_manager/v202302/activity_service/__init__.py renamed to examples/ad_manager/v202311/activity_service/__init__.py

File renamed without changes.

examples/ad_manager/v202302/activity_service/create_activities.py renamed to examples/ad_manager/v202311/activity_service/create_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
def main(client, activity_group_id):
3939
# Initialize appropriate service.
40-
activity_service = client.GetService('ActivityService', version='v202302')
40+
activity_service = client.GetService('ActivityService', version='v202311')
4141

4242
# Create a daily visits activity.
4343
daily_visits_activity = {

examples/ad_manager/v202302/activity_service/get_active_activities.py renamed to examples/ad_manager/v202311/activity_service/get_active_activities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
def main(client):
2424
# Initialize appropriate service.
25-
activity_service = client.GetService('ActivityService', version='v202302')
25+
activity_service = client.GetService('ActivityService', version='v202311')
2626
# Create a statement to select activities.
27-
statement = (ad_manager.StatementBuilder(version='v202302')
27+
statement = (ad_manager.StatementBuilder(version='v202311')
2828
.Where('status = :status')
2929
.WithBindVariable('status', 'ACTIVE'))
3030

0 commit comments

Comments
 (0)