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.
1205 1206 1207 |
# File 'lib/platform-api/client.rb', line 1205 def initialize(client) @client = client end |
Instance Method Details
#create_by_team(team_name_or_team_id, body = {}) ⇒ Object
Allow an Add-on Service
1220 1221 1222 |
# File 'lib/platform-api/client.rb', line 1220 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
1228 1229 1230 |
# File 'lib/platform-api/client.rb', line 1228 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
1212 1213 1214 |
# File 'lib/platform-api/client.rb', line 1212 def list_by_team(team_name_or_team_id) @client.allowed_addon_service.list_by_team(team_name_or_team_id) end |