Class: PlatformAPI::Team

Inherits:
Object
  • Object
show all
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

Constructor Details

#initialize(client) ⇒ Team

Returns a new instance of Team.



3373
3374
3375
# File 'lib/platform-api/client.rb', line 3373

def initialize(client)
  @client = client
end

Instance Method Details

#create(body = {}) ⇒ Object

Create a new team.

Parameters:

  • body:

    the object to pass as the request payload



3400
3401
3402
# File 'lib/platform-api/client.rb', line 3400

def create(body = {})
  @client.team.create(body)
end

#create_in_enterprise_account(enterprise_account_id, body = {}) ⇒ Object

Create a team in an enterprise account.

Parameters:

  • enterprise_account_id:

    unique identifier of the enterprise account

  • body:

    the object to pass as the request payload



3422
3423
3424
# File 'lib/platform-api/client.rb', line 3422

def (, body = {})
  @client.team.(, body)
end

#delete(team_name_or_team_id) ⇒ Object

Delete an existing team.

Parameters:

  • team_name_or_team_id:

    unique name of team or unique identifier of team



3407
3408
3409
# File 'lib/platform-api/client.rb', line 3407

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.

Parameters:

  • team_name_or_team_id:

    unique name of team or unique identifier of team



3385
3386
3387
# File 'lib/platform-api/client.rb', line 3385

def info(team_name_or_team_id)
  @client.team.info(team_name_or_team_id)
end

#listObject

List teams in which you are a member.



3378
3379
3380
# File 'lib/platform-api/client.rb', line 3378

def list()
  @client.team.list()
end

#list_by_enterprise_account(enterprise_account_id) ⇒ Object

List teams for an enterprise account.

Parameters:

  • enterprise_account_id:

    unique identifier of the enterprise account



3414
3415
3416
# File 'lib/platform-api/client.rb', line 3414

def ()
  @client.team.()
end

#update(team_name_or_team_id, body = {}) ⇒ Object

Update team properties.

Parameters:

  • team_name_or_team_id:

    unique name of team or unique identifier of team

  • body:

    the object to pass as the request payload



3393
3394
3395
# File 'lib/platform-api/client.rb', line 3393

def update(team_name_or_team_id, body = {})
  @client.team.update(team_name_or_team_id, body)
end