Module python_odpt.api.default.files_operations_get_files
Functions
async def asyncio_detailed(file_path: str, *, client: Union[AuthenticatedClient, Client], aclconsumer_key: str) ‑> Response[typing.Any]-
ファイルを取得する
Args
- file_path (str):
aclconsumer_key:str- アクセストークン
Raises
errors.UnexpectedStatus- If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException- If the request takes longer than Client.timeout.
Returns
Response[Any]
def sync_detailed(file_path: str, *, client: Union[AuthenticatedClient, Client], aclconsumer_key: str) ‑> Response[typing.Any]-
ファイルを取得する
Args
- file_path (str):
aclconsumer_key:str- アクセストークン
Raises
errors.UnexpectedStatus- If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException- If the request takes longer than Client.timeout.
Returns
Response[Any]