DeadlineCloud / Client / list_job_members
list_job_members#
- DeadlineCloud.Client.list_job_members(**kwargs)#
Lists members on a job.
See also: AWS API Documentation
Request Syntax
response = client.list_job_members( farmId='string', queueId='string', jobId='string', nextToken='string', maxResults=123 )
- Parameters:
farmId (string) –
[REQUIRED]
The farm ID of the job to list.
queueId (string) –
[REQUIRED]
The queue ID to include on the list.
jobId (string) –
[REQUIRED]
The job ID to include on the list.
nextToken (string) – The token for the next set of results, or
null
to start from the beginning.maxResults (integer) – The maximum number of results to return. Use this parameter with
NextToken
to get results as a set of sequential pages.
- Return type:
dict
- Returns:
Response Syntax
{ 'members': [ { 'farmId': 'string', 'queueId': 'string', 'jobId': 'string', 'principalId': 'string', 'principalType': 'USER'|'GROUP', 'identityStoreId': 'string', 'membershipLevel': 'VIEWER'|'CONTRIBUTOR'|'OWNER'|'MANAGER' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
members (list) –
The members on the list.
(dict) –
The details for a job member.
farmId (string) –
The farm ID.
queueId (string) –
The queue ID.
jobId (string) –
The job ID.
principalId (string) –
The principal ID of the job member.
principalType (string) –
The principal type of the job member.
identityStoreId (string) –
The identity store ID.
membershipLevel (string) –
The job member’s membership level.
nextToken (string) –
If Deadline Cloud returns
nextToken
, then there are more results available. The value ofnextToken
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, thennextToken
is set tonull
. Each pagination token expires after 24 hours. If you provide a token that isn’t valid, then you receive an HTTP 400ValidationException
error.
Exceptions
DeadlineCloud.Client.exceptions.AccessDeniedException
DeadlineCloud.Client.exceptions.InternalServerErrorException
DeadlineCloud.Client.exceptions.ResourceNotFoundException
DeadlineCloud.Client.exceptions.ThrottlingException
DeadlineCloud.Client.exceptions.ValidationException