mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
290 lines
11 KiB
Python
290 lines
11 KiB
Python
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Type, Optional, cast
|
|
|
|
import httpx
|
|
|
|
from ....._files import read_file_content, async_read_file_content
|
|
from ....._types import Body, Query, Headers, NotGiven, FileContent, not_given
|
|
from ....._compat import cached_property
|
|
from ....._resource import SyncAPIResource, AsyncAPIResource
|
|
from ....._response import (
|
|
to_raw_response_wrapper,
|
|
to_streamed_response_wrapper,
|
|
async_to_raw_response_wrapper,
|
|
async_to_streamed_response_wrapper,
|
|
)
|
|
from ....._wrappers import ResultWrapper
|
|
from ....._base_client import make_request_options
|
|
from .....types.zero_trust.dlp.datasets.upload_edit_response import UploadEditResponse
|
|
from .....types.zero_trust.dlp.datasets.upload_create_response import UploadCreateResponse
|
|
|
|
__all__ = ["UploadResource", "AsyncUploadResource"]
|
|
|
|
|
|
class UploadResource(SyncAPIResource):
|
|
@cached_property
|
|
def with_raw_response(self) -> UploadResourceWithRawResponse:
|
|
"""
|
|
This property can be used as a prefix for any HTTP method call to return
|
|
the raw response object instead of the parsed content.
|
|
|
|
For more information, see https://www.github.com/cloudflare/cloudflare-python#accessing-raw-response-data-eg-headers
|
|
"""
|
|
return UploadResourceWithRawResponse(self)
|
|
|
|
@cached_property
|
|
def with_streaming_response(self) -> UploadResourceWithStreamingResponse:
|
|
"""
|
|
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
|
|
For more information, see https://www.github.com/cloudflare/cloudflare-python#with_streaming_response
|
|
"""
|
|
return UploadResourceWithStreamingResponse(self)
|
|
|
|
def create(
|
|
self,
|
|
dataset_id: str,
|
|
*,
|
|
account_id: str,
|
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
extra_headers: Headers | None = None,
|
|
extra_query: Query | None = None,
|
|
extra_body: Body | None = None,
|
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
) -> Optional[UploadCreateResponse]:
|
|
"""
|
|
Prepare to upload a new version of a dataset
|
|
|
|
Args:
|
|
extra_headers: Send extra headers
|
|
|
|
extra_query: Add additional query parameters to the request
|
|
|
|
extra_body: Add additional JSON properties to the request
|
|
|
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
"""
|
|
if not account_id:
|
|
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
|
|
if not dataset_id:
|
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
return self._post(
|
|
f"/accounts/{account_id}/dlp/datasets/{dataset_id}/upload",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[UploadCreateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[UploadCreateResponse]], ResultWrapper[UploadCreateResponse]),
|
|
)
|
|
|
|
def edit(
|
|
self,
|
|
version: int,
|
|
dataset: FileContent,
|
|
*,
|
|
account_id: str,
|
|
dataset_id: str,
|
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
extra_headers: Headers | None = None,
|
|
extra_query: Query | None = None,
|
|
extra_body: Body | None = None,
|
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
) -> Optional[UploadEditResponse]:
|
|
"""This is used for single-column EDMv1 and Custom Word Lists.
|
|
|
|
The EDM format can
|
|
only be created in the Cloudflare dashboard. For other clients, this operation
|
|
can only be used for non-secret Custom Word Lists. The body must be a UTF-8
|
|
encoded, newline (NL or CRNL) separated list of words to be matched.
|
|
|
|
Args:
|
|
extra_headers: Send extra headers
|
|
|
|
extra_query: Add additional query parameters to the request
|
|
|
|
extra_body: Add additional JSON properties to the request
|
|
|
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
"""
|
|
if not account_id:
|
|
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
|
|
if not dataset_id:
|
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
|
|
return self._post(
|
|
f"/accounts/{account_id}/dlp/datasets/{dataset_id}/upload/{version}",
|
|
body=read_file_content(dataset),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[UploadEditResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[UploadEditResponse]], ResultWrapper[UploadEditResponse]),
|
|
)
|
|
|
|
|
|
class AsyncUploadResource(AsyncAPIResource):
|
|
@cached_property
|
|
def with_raw_response(self) -> AsyncUploadResourceWithRawResponse:
|
|
"""
|
|
This property can be used as a prefix for any HTTP method call to return
|
|
the raw response object instead of the parsed content.
|
|
|
|
For more information, see https://www.github.com/cloudflare/cloudflare-python#accessing-raw-response-data-eg-headers
|
|
"""
|
|
return AsyncUploadResourceWithRawResponse(self)
|
|
|
|
@cached_property
|
|
def with_streaming_response(self) -> AsyncUploadResourceWithStreamingResponse:
|
|
"""
|
|
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
|
|
For more information, see https://www.github.com/cloudflare/cloudflare-python#with_streaming_response
|
|
"""
|
|
return AsyncUploadResourceWithStreamingResponse(self)
|
|
|
|
async def create(
|
|
self,
|
|
dataset_id: str,
|
|
*,
|
|
account_id: str,
|
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
extra_headers: Headers | None = None,
|
|
extra_query: Query | None = None,
|
|
extra_body: Body | None = None,
|
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
) -> Optional[UploadCreateResponse]:
|
|
"""
|
|
Prepare to upload a new version of a dataset
|
|
|
|
Args:
|
|
extra_headers: Send extra headers
|
|
|
|
extra_query: Add additional query parameters to the request
|
|
|
|
extra_body: Add additional JSON properties to the request
|
|
|
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
"""
|
|
if not account_id:
|
|
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
|
|
if not dataset_id:
|
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
return await self._post(
|
|
f"/accounts/{account_id}/dlp/datasets/{dataset_id}/upload",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[UploadCreateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[UploadCreateResponse]], ResultWrapper[UploadCreateResponse]),
|
|
)
|
|
|
|
async def edit(
|
|
self,
|
|
version: int,
|
|
dataset: FileContent,
|
|
*,
|
|
account_id: str,
|
|
dataset_id: str,
|
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
extra_headers: Headers | None = None,
|
|
extra_query: Query | None = None,
|
|
extra_body: Body | None = None,
|
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
) -> Optional[UploadEditResponse]:
|
|
"""This is used for single-column EDMv1 and Custom Word Lists.
|
|
|
|
The EDM format can
|
|
only be created in the Cloudflare dashboard. For other clients, this operation
|
|
can only be used for non-secret Custom Word Lists. The body must be a UTF-8
|
|
encoded, newline (NL or CRNL) separated list of words to be matched.
|
|
|
|
Args:
|
|
extra_headers: Send extra headers
|
|
|
|
extra_query: Add additional query parameters to the request
|
|
|
|
extra_body: Add additional JSON properties to the request
|
|
|
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
"""
|
|
if not account_id:
|
|
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
|
|
if not dataset_id:
|
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
|
|
return await self._post(
|
|
f"/accounts/{account_id}/dlp/datasets/{dataset_id}/upload/{version}",
|
|
body=await async_read_file_content(dataset),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[UploadEditResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[UploadEditResponse]], ResultWrapper[UploadEditResponse]),
|
|
)
|
|
|
|
|
|
class UploadResourceWithRawResponse:
|
|
def __init__(self, upload: UploadResource) -> None:
|
|
self._upload = upload
|
|
|
|
self.create = to_raw_response_wrapper(
|
|
upload.create,
|
|
)
|
|
self.edit = to_raw_response_wrapper(
|
|
upload.edit,
|
|
)
|
|
|
|
|
|
class AsyncUploadResourceWithRawResponse:
|
|
def __init__(self, upload: AsyncUploadResource) -> None:
|
|
self._upload = upload
|
|
|
|
self.create = async_to_raw_response_wrapper(
|
|
upload.create,
|
|
)
|
|
self.edit = async_to_raw_response_wrapper(
|
|
upload.edit,
|
|
)
|
|
|
|
|
|
class UploadResourceWithStreamingResponse:
|
|
def __init__(self, upload: UploadResource) -> None:
|
|
self._upload = upload
|
|
|
|
self.create = to_streamed_response_wrapper(
|
|
upload.create,
|
|
)
|
|
self.edit = to_streamed_response_wrapper(
|
|
upload.edit,
|
|
)
|
|
|
|
|
|
class AsyncUploadResourceWithStreamingResponse:
|
|
def __init__(self, upload: AsyncUploadResource) -> None:
|
|
self._upload = upload
|
|
|
|
self.create = async_to_streamed_response_wrapper(
|
|
upload.create,
|
|
)
|
|
self.edit = async_to_streamed_response_wrapper(
|
|
upload.edit,
|
|
)
|