Class: PlatformAPI::Team
- Inherits:
-
Object
- Object
- PlatformAPI::Team
- Defined in:
- lib/platform-api/client.rb
Overview
Teams allow you to manage access to a shared group of applications and other resources.
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new team.
-
#create_in_enterprise_account(enterprise_account_id, body = {}) ⇒ Object
Create a team in an enterprise account.
-
#delete(team_name_or_team_id) ⇒ Object
Delete an existing team.
-
#info(team_name_or_team_id) ⇒ Object
Info for a team.
-
#initialize(client) ⇒ Team
constructor
A new instance of Team.
-
#list ⇒ Object
List teams in which you are a member.
-
#list_by_enterprise_account(enterprise_account_id) ⇒ Object
List teams for an enterprise account.
-
#update(team_name_or_team_id, body = {}) ⇒ Object
Update team properties.
Constructor Details
#initialize(client) ⇒ Team
Returns a new instance of Team.
3440 3441 3442 |
# File 'lib/platform-api/client.rb', line 3440 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new team.
3467 3468 3469 |
# File 'lib/platform-api/client.rb', line 3467 def create(body = {}) @client.team.create(body) end |
#create_in_enterprise_account(enterprise_account_id, body = {}) ⇒ Object
Create a team in an enterprise account.
3489 3490 3491 |
# File 'lib/platform-api/client.rb', line 3489 def create_in_enterprise_account(enterprise_account_id, body = {}) @client.team.create_in_enterprise_account(enterprise_account_id, body) end |
#delete(team_name_or_team_id) ⇒ Object
Delete an existing team.
3474 3475 3476 |
# File 'lib/platform-api/client.rb', line 3474 def delete(team_name_or_team_id) @client.team.delete(team_name_or_team_id) end |
#info(team_name_or_team_id) ⇒ Object
Info for a team.
3452 3453 3454 |
# File 'lib/platform-api/client.rb', line 3452 def info(team_name_or_team_id) @client.team.info(team_name_or_team_id) end |
#list ⇒ Object
List teams in which you are a member.
3445 3446 3447 |
# File 'lib/platform-api/client.rb', line 3445 def list() @client.team.list() end |
#list_by_enterprise_account(enterprise_account_id) ⇒ Object
List teams for an enterprise account.
3481 3482 3483 |
# File 'lib/platform-api/client.rb', line 3481 def list_by_enterprise_account(enterprise_account_id) @client.team.list_by_enterprise_account(enterprise_account_id) end |
#update(team_name_or_team_id, body = {}) ⇒ Object
Update team properties.
3460 3461 3462 |
# File 'lib/platform-api/client.rb', line 3460 def update(team_name_or_team_id, body = {}) @client.team.update(team_name_or_team_id, body) end |