DeadlineCloud / Client / list_budgets

list_budgets#

DeadlineCloud.Client.list_budgets(**kwargs)#

A list of budgets in a farm.

See also: AWS API Documentation

Request Syntax

response = client.list_budgets(
    farmId='string',
    maxResults=123,
    nextToken='string',
    status='ACTIVE'|'INACTIVE'
)
Parameters:
  • farmId (string) –

    [REQUIRED]

    The farm ID associated with the budgets.

  • 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.

  • status (string) – The status to list for the budgets.

Return type:

dict

Returns:

Response Syntax

{
    'budgets': [
        {
            'approximateDollarLimit': ...,
            'budgetId': 'string',
            'createdAt': datetime(2015, 1, 1),
            'createdBy': 'string',
            'description': 'string',
            'displayName': 'string',
            'status': 'ACTIVE'|'INACTIVE',
            'updatedAt': datetime(2015, 1, 1),
            'updatedBy': 'string',
            'usageTrackingResource': {
                'queueId': 'string'
            },
            'usages': {
                'approximateDollarUsage': ...
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • budgets (list) –

      The budgets to include on the list.

      • (dict) –

        The budget summary.

        • approximateDollarLimit (float) –

          The approximate dollar limit of the budget.

        • budgetId (string) –

          The budget ID.

        • createdAt (datetime) –

          The date and time the resource was created.

        • createdBy (string) –

          The user or system that created this resource.

        • description (string) –

          The description of the budget summary.

        • displayName (string) –

          The display name of the budget summary to update.

        • status (string) –

          The status of the budget.

          • ACTIVE–The budget is being evaluated.

          • INACTIVE–The budget is inactive. This can include Expired, Canceled, or deleted Deleted statuses.

        • updatedAt (datetime) –

          The date and time the resource was updated.

        • updatedBy (string) –

          The user or system that updated this resource.

        • usageTrackingResource (dict) –

          The resource used to track expenditure in the budget.

          Note

          This is a Tagged Union structure. Only one of the following top level keys will be set: queueId. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

          'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
          
          • queueId (string) –

            The queue ID.

        • usages (dict) –

          The consumed usage for the budget.

          • approximateDollarUsage (float) –

            The amount of the budget consumed.

    • 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