Skip to content

Commit c593583

Browse files
committed
Support for Ad Manager API v202105.
1 parent b33b14b commit c593583

288 files changed

Lines changed: 2131 additions & 1529 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.

README.md

Lines changed: 3 additions & 0 deletions

ad_manager_api/ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.15.0:
2+
- Added support for v202105.
3+
- Removed support for v202005.
4+
- Removed examples for v202008.
5+
- Updated tzinfo dependency.
6+
17
1.14.0:
28
- Added support for v202102.
39
- Removed support for v202002.

ad_manager_api/examples/v202008/activity_group_service/create_activity_groups.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
62+
API_VERSION = :v202105
6363

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

ad_manager_api/examples/v202008/activity_group_service/get_active_activity_groups.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
62+
API_VERSION = :v202105
6363

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

ad_manager_api/examples/v202008/activity_group_service/get_all_activity_groups.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
57+
API_VERSION = :v202105
5858

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

ad_manager_api/examples/v202008/activity_group_service/update_activity_groups.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
61+
API_VERSION = :v202105
6262

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

ad_manager_api/examples/v202008/activity_service/create_activities.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
58+
API_VERSION = :v202105
5959

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

ad_manager_api/examples/v202008/activity_service/get_active_activities.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
57+
API_VERSION = :v202105
5858

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

ad_manager_api/examples/v202008/activity_service/get_all_activities.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
53+
API_VERSION = :v202105
5454

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

ad_manager_api/examples/v202008/activity_service/update_activities.rb renamed to ad_manager_api/examples/v202105/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 = :v202008
62+
API_VERSION = :v202105
6363

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

0 commit comments

Comments
 (0)