Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-09-29 16:05:40 -07:00
parent 31cd9e532d
commit 12c164620b
268 changed files with 22464 additions and 18287 deletions

View File

@ -2,20 +2,19 @@ from enum import Enum
class ApiCallQueryGroupBy(str, Enum):
"""The field of an API call to group by.""" # noqa: E501
""" The field of an API call to group by. """ # noqa: E501
"""# The email of the user that requested the API call. """ # noqa: E501
EMAIL = 'email'
"""# The HTTP method of the API call. """ # noqa: E501
METHOD = 'method'
"""# The endpoint of the API call. """ # noqa: E501
ENDPOINT = 'endpoint'
"""# The user ID of the user that requested the API call. """ # noqa: E501
USER_ID = 'user_id'
"""# The origin of the API call. This is parsed from the `Origin` header. """ # noqa: E501
ORIGIN = 'origin'
"""# The IP address of the user making the API call. """ # noqa: E501
IP_ADDRESS = 'ip_address'
"""# The email of the user that requested the API call. """ # noqa: E501
EMAIL = "email"
"""# The HTTP method of the API call. """ # noqa: E501
METHOD = "method"
"""# The endpoint of the API call. """ # noqa: E501
ENDPOINT = "endpoint"
"""# The user ID of the user that requested the API call. """ # noqa: E501
USER_ID = "user_id"
"""# The origin of the API call. This is parsed from the `Origin` header. """ # noqa: E501
ORIGIN = "origin"
"""# The IP address of the user making the API call. """ # noqa: E501
IP_ADDRESS = "ip_address"
def __str__(self) -> str:
return str(self.value)
def __str__(self) -> str:
return str(self.value)