Skip to content

Commit 36c134b

Browse files
committed
Support for Ad Manager API v202011.
1 parent 6e41f68 commit 36c134b

291 files changed

Lines changed: 3368 additions & 1889 deletions

File tree

Some content is hidden

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

ad_manager_api/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.13.0:
2+
- Added support for v202011.
3+
- Removed support for v201911.
4+
- Removed examples for v202002.
5+
16
1.12.0:
27
- Added support for v202008.
38
- Removed support for v201908.

ad_manager_api/examples/v202002/adjustment_service/create_traffic_adjustments.rb

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

ad_manager_api/examples/v202002/activity_group_service/create_activity_groups.rb renamed to ad_manager_api/examples/v202011/activity_group_service/create_activity_groups.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def create_activity_groups(ad_manager, advertiser_company_id)
5959
end
6060

6161
if __FILE__ == $0
62-
API_VERSION = :v202002
62+
API_VERSION = :v202011
6363

6464
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6565
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_group_service/get_active_activity_groups.rb renamed to ad_manager_api/examples/v202011/activity_group_service/get_active_activity_groups.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_active_activity_groups(ad_manager)
5959
end
6060

6161
if __FILE__ == $0
62-
API_VERSION = :v202002
62+
API_VERSION = :v202011
6363

6464
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6565
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_group_service/get_all_activity_groups.rb renamed to ad_manager_api/examples/v202011/activity_group_service/get_all_activity_groups.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_all_activity_groups(ad_manager)
5454
end
5555

5656
if __FILE__ == $0
57-
API_VERSION = :v202002
57+
API_VERSION = :v202011
5858

5959
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6060
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_group_service/update_activity_groups.rb renamed to ad_manager_api/examples/v202011/activity_group_service/update_activity_groups.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def update_activity_groups(ad_manager, advertiser_company_id, activity_group_id)
5858
end
5959

6060
if __FILE__ == $0
61-
API_VERSION = :v202002
61+
API_VERSION = :v202011
6262

6363
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6464
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_service/create_activities.rb renamed to ad_manager_api/examples/v202011/activity_service/create_activities.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def create_activities(ad_manager, activity_group_id)
5555
end
5656

5757
if __FILE__ == $0
58-
API_VERSION = :v202002
58+
API_VERSION = :v202011
5959

6060
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6161
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_service/get_active_activities.rb renamed to ad_manager_api/examples/v202011/activity_service/get_active_activities.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_active_activities(ad_manager)
5454
end
5555

5656
if __FILE__ == $0
57-
API_VERSION = :v202002
57+
API_VERSION = :v202011
5858

5959
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6060
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_service/get_all_activities.rb renamed to ad_manager_api/examples/v202011/activity_service/get_all_activities.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_all_activities(ad_manager)
5050
end
5151

5252
if __FILE__ == $0
53-
API_VERSION = :v202002
53+
API_VERSION = :v202011
5454

5555
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
5656
ad_manager = AdManagerApi::Api.new

ad_manager_api/examples/v202002/activity_service/update_activities.rb renamed to ad_manager_api/examples/v202011/activity_service/update_activities.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def update_activities(ad_manager, activity_id)
5959
end
6060

6161
if __FILE__ == $0
62-
API_VERSION = :v202002
62+
API_VERSION = :v202011
6363

6464
# Get AdManagerApi instance and load configuration from ~/ad_manager_api.yml.
6565
ad_manager = AdManagerApi::Api.new

0 commit comments

Comments
 (0)