Skip to content

Commit 1778b31

Browse files
Support for Ad Manager API v202308.
1 parent a7135c1 commit 1778b31

548 files changed

Lines changed: 1475 additions & 1388 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 & 3 deletions

ad_manager_api/ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.5.0:
2+
- Added support for v202311.
3+
- Removed examples for v202302.
4+
- Removed support for v202211.
5+
6+
2.4.1:
7+
- Fixed Issue #194 (updated default version)
8+
19
2.4.0:
210
- Added support for v202308.
311
- Removed examples for v202211.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)