Class: PlatformAPI::AllowedAddonService
- Inherits:
-
Object
- Object
- PlatformAPI::AllowedAddonService
- Defined in:
- lib/platform-api/client.rb
Overview
Entities that have been allowed to be used by a Team
Instance Method Summary collapse
-
#create_by_team(team_name_or_team_id, body = {}) ⇒ Object
Allow an Add-on Service.
-
#delete_by_team(team_name_or_team_id, allowed_addon_service_id_or_addon_service_name) ⇒ Object
Remove an allowed add-on service.
-
#initialize(client) ⇒ AllowedAddonService
constructor
A new instance of AllowedAddonService.
-
#list_by_team(team_name_or_team_id) ⇒ Object
List all allowed add-on services for a team.
Constructor Details
#initialize(client) ⇒ AllowedAddonService
Returns a new instance of AllowedAddonService.
1219 1220 1221 |
# File 'lib/platform-api/client.rb', line 1219 def initialize(client) @client = client end |
Instance Method Details
#create_by_team(team_name_or_team_id, body = {}) ⇒ Object
Allow an Add-on Service
1234 1235 1236 |
# File 'lib/platform-api/client.rb', line 1234 def create_by_team(team_name_or_team_id, body = {}) @client.allowed_addon_service.create_by_team(team_name_or_team_id, body) end |
#delete_by_team(team_name_or_team_id, allowed_addon_service_id_or_addon_service_name) ⇒ Object
Remove an allowed add-on service
1242 1243 1244 |
# File 'lib/platform-api/client.rb', line 1242 def delete_by_team(team_name_or_team_id, allowed_addon_service_id_or_addon_service_name) @client.allowed_addon_service.delete_by_team(team_name_or_team_id, allowed_addon_service_id_or_addon_service_name) end |
#list_by_team(team_name_or_team_id) ⇒ Object
List all allowed add-on services for a team
1226 1227 1228 |
# File 'lib/platform-api/client.rb', line 1226 def list_by_team(team_name_or_team_id) @client.allowed_addon_service.list_by_team(team_name_or_team_id) end |