cloudflare-python/src/cloudflare/resources/cache/smart_tiered_cache.py
2025-05-06 09:47:55 -04:00

403 lines
17 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Type, Optional, cast
from typing_extensions import Literal
import httpx
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
from ..._utils import maybe_transform, async_maybe_transform
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 ...types.cache import smart_tiered_cache_edit_params
from ..._base_client import make_request_options
from ...types.cache.smart_tiered_cache_get_response import SmartTieredCacheGetResponse
from ...types.cache.smart_tiered_cache_edit_response import SmartTieredCacheEditResponse
from ...types.cache.smart_tiered_cache_delete_response import SmartTieredCacheDeleteResponse
__all__ = ["SmartTieredCacheResource", "AsyncSmartTieredCacheResource"]
class SmartTieredCacheResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> SmartTieredCacheResourceWithRawResponse:
"""
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 SmartTieredCacheResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> SmartTieredCacheResourceWithStreamingResponse:
"""
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 SmartTieredCacheResourceWithStreamingResponse(self)
def delete(
self,
*,
zone_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[SmartTieredCacheDeleteResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return self._delete(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheDeleteResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheDeleteResponse]], ResultWrapper[SmartTieredCacheDeleteResponse]),
)
def edit(
self,
*,
zone_id: str,
value: Literal["on", "off"],
# 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[SmartTieredCacheEditResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
value: Enable or disable the Smart Tiered Cache
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return self._patch(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
body=maybe_transform({"value": value}, smart_tiered_cache_edit_params.SmartTieredCacheEditParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheEditResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheEditResponse]], ResultWrapper[SmartTieredCacheEditResponse]),
)
def get(
self,
*,
zone_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[SmartTieredCacheGetResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return self._get(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheGetResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheGetResponse]], ResultWrapper[SmartTieredCacheGetResponse]),
)
class AsyncSmartTieredCacheResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncSmartTieredCacheResourceWithRawResponse:
"""
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 AsyncSmartTieredCacheResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncSmartTieredCacheResourceWithStreamingResponse:
"""
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 AsyncSmartTieredCacheResourceWithStreamingResponse(self)
async def delete(
self,
*,
zone_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[SmartTieredCacheDeleteResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return await self._delete(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheDeleteResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheDeleteResponse]], ResultWrapper[SmartTieredCacheDeleteResponse]),
)
async def edit(
self,
*,
zone_id: str,
value: Literal["on", "off"],
# 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[SmartTieredCacheEditResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
value: Enable or disable the Smart Tiered Cache
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return await self._patch(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
body=await async_maybe_transform(
{"value": value}, smart_tiered_cache_edit_params.SmartTieredCacheEditParams
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheEditResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheEditResponse]], ResultWrapper[SmartTieredCacheEditResponse]),
)
async def get(
self,
*,
zone_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[SmartTieredCacheGetResponse]:
"""
Smart Tiered Cache dynamically selects the single closest upper tier for each of
your websites origins with no configuration required, using our in-house
performance and routing data. Cloudflare collects latency data for each request
to an origin, and uses the latency data to determine how well any upper-tier
data center is connected with an origin. As a result, Cloudflare can select the
data center with the lowest latency to be the upper-tier for an origin.
Args:
zone_id: Identifier
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 zone_id:
raise ValueError(f"Expected a non-empty value for `zone_id` but received {zone_id!r}")
return await self._get(
f"/zones/{zone_id}/cache/tiered_cache_smart_topology_enable",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
post_parser=ResultWrapper[Optional[SmartTieredCacheGetResponse]]._unwrapper,
),
cast_to=cast(Type[Optional[SmartTieredCacheGetResponse]], ResultWrapper[SmartTieredCacheGetResponse]),
)
class SmartTieredCacheResourceWithRawResponse:
def __init__(self, smart_tiered_cache: SmartTieredCacheResource) -> None:
self._smart_tiered_cache = smart_tiered_cache
self.delete = to_raw_response_wrapper(
smart_tiered_cache.delete,
)
self.edit = to_raw_response_wrapper(
smart_tiered_cache.edit,
)
self.get = to_raw_response_wrapper(
smart_tiered_cache.get,
)
class AsyncSmartTieredCacheResourceWithRawResponse:
def __init__(self, smart_tiered_cache: AsyncSmartTieredCacheResource) -> None:
self._smart_tiered_cache = smart_tiered_cache
self.delete = async_to_raw_response_wrapper(
smart_tiered_cache.delete,
)
self.edit = async_to_raw_response_wrapper(
smart_tiered_cache.edit,
)
self.get = async_to_raw_response_wrapper(
smart_tiered_cache.get,
)
class SmartTieredCacheResourceWithStreamingResponse:
def __init__(self, smart_tiered_cache: SmartTieredCacheResource) -> None:
self._smart_tiered_cache = smart_tiered_cache
self.delete = to_streamed_response_wrapper(
smart_tiered_cache.delete,
)
self.edit = to_streamed_response_wrapper(
smart_tiered_cache.edit,
)
self.get = to_streamed_response_wrapper(
smart_tiered_cache.get,
)
class AsyncSmartTieredCacheResourceWithStreamingResponse:
def __init__(self, smart_tiered_cache: AsyncSmartTieredCacheResource) -> None:
self._smart_tiered_cache = smart_tiered_cache
self.delete = async_to_streamed_response_wrapper(
smart_tiered_cache.delete,
)
self.edit = async_to_streamed_response_wrapper(
smart_tiered_cache.edit,
)
self.get = async_to_streamed_response_wrapper(
smart_tiered_cache.get,
)