mirror of
https://github.com/brygphilomena/pyironscales.git
synced 2025-11-05 16:37:30 +00:00
87 lines
3.3 KiB
Python
87 lines
3.3 KiB
Python
from pyironscales.endpoints.base.base_endpoint import IronscalesEndpoint
|
|
from pyironscales.interfaces import (
|
|
IGettable,
|
|
IPostable,
|
|
IPuttable,
|
|
IDeleteable,
|
|
)
|
|
from pyironscales.models.ironscales import AllowListSettings
|
|
from pyironscales.types import (
|
|
JSON,
|
|
IronscalesRequestParams,
|
|
)
|
|
|
|
class SettingsIdAllowListEndpoint(
|
|
IronscalesEndpoint,
|
|
IGettable[AllowListSettings, IronscalesRequestParams],
|
|
IPostable[AllowListSettings, IronscalesRequestParams],
|
|
IPuttable[AllowListSettings, IronscalesRequestParams],
|
|
IDeleteable[IronscalesRequestParams],
|
|
):
|
|
def __init__(self, client, parent_endpoint=None) -> None:
|
|
IronscalesEndpoint.__init__(self, client, "allow-list/", parent_endpoint=parent_endpoint)
|
|
IGettable.__init__(self, AllowListSettings)
|
|
IPuttable.__init__(self, AllowListSettings)
|
|
|
|
def get(
|
|
self,
|
|
data: JSON | None = None,
|
|
params: IronscalesRequestParams | None = None,
|
|
) -> AllowListSettings:
|
|
"""
|
|
Performs a GET request against the /settings/{id}/allow-list/ endpoint.
|
|
|
|
Parameters:
|
|
data (dict[str, Any]): The data to send in the request body.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
AllowListSettings: The parsed response data.
|
|
"""
|
|
return self._parse_one(
|
|
AllowListSettings,
|
|
super()._make_request("GET", data=data, params=params).json(),
|
|
)
|
|
|
|
def post(self, data: JSON | None = None, params: IronscalesRequestParams | None = None) -> AllowListSettings:
|
|
"""
|
|
Performs a POST request against the /settings/{id}/allow-list/ endpoint.
|
|
|
|
Parameters:
|
|
data (dict[str, Any]): The data to send in the request body.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
AllowListSettings: The parsed Company data.
|
|
"""
|
|
return self._parse_one(AllowListSettings, super()._make_request("POST", data=data, params=params).json())
|
|
|
|
def put(
|
|
self,
|
|
data: JSON | None = None,
|
|
params: IronscalesRequestParams | None = None,
|
|
) -> AllowListSettings:
|
|
"""
|
|
Performs a PUT request against the /settings/{id}/allow-list/ endpoint.
|
|
|
|
Parameters:
|
|
data (dict[str, Any]): The data to send in the request body.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
AllowListSettings: The parsed response data.
|
|
"""
|
|
return self._parse_one(
|
|
AllowListSettings,
|
|
super()._make_request("PUT", data=data, params=params).json(),
|
|
)
|
|
|
|
def delete(self, data: JSON | None = None, params: IronscalesRequestParams | None = None) -> AllowListSettings:
|
|
"""
|
|
Performs a DELETE request against the /settings/{id}/allow-list/ endpoint.
|
|
|
|
Parameters:
|
|
data (dict[str, Any]): The data to send in the request body.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
AllowListSettings: The parsed response data.
|
|
"""
|
|
return self._parse_one(AllowListSettings, super()._make_request("DELETE", data=data, params=params).json())
|