@@ -46,13 +46,13 @@ def get_actions_list(
4646
4747 :param status: List[str] (optional)
4848 Response will have only actions with specified statuses. Choices: `running` `success` `error`
49- :param sort: List[str] (optional)
49+ :param sort: List[str] (optional)
5050 Specify how the results are sorted. Choices: `id` `id:asc` `id:desc` `command` `command:asc` `command:desc` `status` `status:asc` `status:desc` `progress` `progress:asc` `progress:desc` `started` `started:asc` `started:desc` `finished` `finished:asc` `finished:desc`
51- :param page: int (optional)
51+ :param page: int (optional)
5252 Specifies the page to fetch
53- :param per_page: int (optional)
53+ :param per_page: int (optional)
5454 Specifies how many results are returned by page
55- :return: (List[:class:`BoundAction <hcloud.actions.client.BoundAction>`], :class:`Meta <hcloud.core.domain.Meta>`)
55+ :return: (List[:class:`BoundAction <hcloud.actions.client.BoundAction>`], :class:`Meta <hcloud.core.domain.Meta>`)
5656 """
5757 return self ._client .get_actions_list (self , status , sort , page , per_page )
5858
@@ -67,7 +67,6 @@ def get_actions(
6767 Response will have only actions with specified statuses. Choices: `running` `success` `error`
6868 :param sort: List[str] (optional)
6969 Specify how the results are sorted. Choices: `id` `id:asc` `id:desc` `command` `command:asc` `command:desc` `status` `status:asc` `status:desc` `progress` `progress:asc` `progress:desc` `started` `started:asc` `started:desc` `finished` `finished:asc` `finished:desc`
70-
7170 :return: List[:class:`BoundAction <hcloud.actions.client.BoundAction>`]
7271 """
7372 return self ._client .get_actions (self , status , sort )
0 commit comments