You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/iam/v1alpha1/api.py
+28-1Lines changed: 28 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2003,7 +2003,7 @@ async def get_quotum(
2003
2003
) ->Quotum:
2004
2004
"""
2005
2005
Get a quota in the Organization.
2006
-
Retrieve information about a resource quota, speficified by the `quotum_name` parameter. The quota's `limit`, or whether it is unlimited, is returned in the response.
2006
+
Retrieve information about a resource quota, specified by the `quotum_name` parameter. The quota's `limit`, or whether it is unlimited, is returned in the response.
2007
2007
:param quotum_name: Name of the quota to get.
2008
2008
:param organization_id: ID of the Organization.
2009
2009
:return: :class:`Quotum <Quotum>`
@@ -2169,6 +2169,18 @@ async def list_logs(
2169
2169
search: Optional[str] =None,
2170
2170
) ->ListLogsResponse:
2171
2171
"""
2172
+
List logs.
2173
+
List logs available for given Organization. You must define the `organization_id` in the query path of your request.
2174
+
:param order_by: Criteria for sorting results.
2175
+
:param organization_id: Filter by Organization ID.
2176
+
:param page_size: Number of results per page. Value must be between 1 and 100.
2177
+
:param page: Page number. Value must be greater to 1.
2178
+
:param created_after: Defined whether or not to filter out logs created after this timestamp.
2179
+
:param created_before: Defined whether or not to filter out logs created before this timestamp.
2180
+
:param action: Defined whether or not to filter out by a specific action.
2181
+
:param resource_type: Defined whether or not to filter out by a specific type of resource.
2182
+
:param search: Defined whether or not to filter out log by bearer ID or resource ID.
Retrieve information about a log, specified by the `log_id` parameter. The log's full details, including `id`, `ip`, `user_agent`, `action`, `bearer_id`, `resource_type` and `resource_id` are returned in the response.
Copy file name to clipboardExpand all lines: scaleway/scaleway/iam/v1alpha1/api.py
+28-1Lines changed: 28 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2003,7 +2003,7 @@ def get_quotum(
2003
2003
) ->Quotum:
2004
2004
"""
2005
2005
Get a quota in the Organization.
2006
-
Retrieve information about a resource quota, speficified by the `quotum_name` parameter. The quota's `limit`, or whether it is unlimited, is returned in the response.
2006
+
Retrieve information about a resource quota, specified by the `quotum_name` parameter. The quota's `limit`, or whether it is unlimited, is returned in the response.
2007
2007
:param quotum_name: Name of the quota to get.
2008
2008
:param organization_id: ID of the Organization.
2009
2009
:return: :class:`Quotum <Quotum>`
@@ -2169,6 +2169,18 @@ def list_logs(
2169
2169
search: Optional[str] =None,
2170
2170
) ->ListLogsResponse:
2171
2171
"""
2172
+
List logs.
2173
+
List logs available for given Organization. You must define the `organization_id` in the query path of your request.
2174
+
:param order_by: Criteria for sorting results.
2175
+
:param organization_id: Filter by Organization ID.
2176
+
:param page_size: Number of results per page. Value must be between 1 and 100.
2177
+
:param page: Page number. Value must be greater to 1.
2178
+
:param created_after: Defined whether or not to filter out logs created after this timestamp.
2179
+
:param created_before: Defined whether or not to filter out logs created before this timestamp.
2180
+
:param action: Defined whether or not to filter out by a specific action.
2181
+
:param resource_type: Defined whether or not to filter out by a specific type of resource.
2182
+
:param search: Defined whether or not to filter out log by bearer ID or resource ID.
Retrieve information about a log, specified by the `log_id` parameter. The log's full details, including `id`, `ip`, `user_agent`, `action`, `bearer_id`, `resource_type` and `resource_id` are returned in the response.
0 commit comments