DeadlineCloud / Client / list_fleet_members

list_fleet_members#

DeadlineCloud.Client.list_fleet_members(**kwargs)#

Lists fleet members.

See also: AWS API Documentation

Request Syntax

response = client.list_fleet_members(
    farmId='string',
    fleetId='string',
    maxResults=123,
    nextToken='string'
)
Parameters:
  • farmId (string) –

    [REQUIRED]

    The farm ID of the fleet.

  • fleetId (string) –

    [REQUIRED]

    The fleet ID to include on the list.

  • maxResults (integer) – The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

  • nextToken (string) – The token for the next set of results, or null to start from the beginning.

Return type:

dict

Returns:

Response Syntax

{
    'members': [
        {
            'farmId': 'string',
            'fleetId': 'string',
            'identityStoreId': 'string',
            'membershipLevel': 'VIEWER'|'CONTRIBUTOR'|'OWNER'|'MANAGER',
            'principalId': 'string',
            'principalType': 'USER'|'GROUP'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • members (list) –

      The members on the list.

      • (dict) –

        The fleet member.

        • farmId (string) –

          The farm ID.

        • fleetId (string) –

          The fleet ID.

        • identityStoreId (string) –

          The identity store ID.

        • membershipLevel (string) –

          The fleet member’s membership level.

        • principalId (string) –

          The principal ID of the fleet member.

        • principalType (string) –

          The principal type of the fleet member.

    • nextToken (string) –

      If Deadline Cloud returns nextToken, then there are more results available. The value of nextToken is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then nextToken is set to null. Each pagination token expires after 24 hours. If you provide a token that isn’t valid, then you receive an HTTP 400 ValidationException error.

Exceptions