cloudflare-python/src/cloudflare/resources/api_gateway/configurations.py
2025-11-11 09:58:39 +00:00

300 lines
12 KiB
Python

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Type, Iterable, cast
import httpx
from ..._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
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 ..._base_client import make_request_options
from ...types.api_gateway import configuration_get_params, configuration_update_params
from ...types.api_gateway.configuration import Configuration
__all__ = ["ConfigurationsResource", "AsyncConfigurationsResource"]
class ConfigurationsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> ConfigurationsResourceWithRawResponse:
"""
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 ConfigurationsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> ConfigurationsResourceWithStreamingResponse:
"""
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 ConfigurationsResourceWithStreamingResponse(self)
def update(
self,
*,
zone_id: str,
auth_id_characteristics: Iterable[configuration_update_params.AuthIDCharacteristic],
normalize: bool | Omit = omit,
# 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,
) -> Configuration:
"""
Update configuration properties
Args:
zone_id: Identifier.
normalize: Ensures that the configuration is written or retrieved in normalized fashion
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._put(
f"/zones/{zone_id}/api_gateway/configuration",
body=maybe_transform(
{"auth_id_characteristics": auth_id_characteristics},
configuration_update_params.ConfigurationUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform({"normalize": normalize}, configuration_update_params.ConfigurationUpdateParams),
post_parser=ResultWrapper[Configuration]._unwrapper,
),
cast_to=cast(Type[Configuration], ResultWrapper[Configuration]),
)
def get(
self,
*,
zone_id: str,
normalize: bool | Omit = omit,
# 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,
) -> Configuration:
"""
Retrieve information about specific configuration properties
Args:
zone_id: Identifier.
normalize: Ensures that the configuration is written or retrieved in normalized fashion
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}/api_gateway/configuration",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform({"normalize": normalize}, configuration_get_params.ConfigurationGetParams),
post_parser=ResultWrapper[Configuration]._unwrapper,
),
cast_to=cast(Type[Configuration], ResultWrapper[Configuration]),
)
class AsyncConfigurationsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncConfigurationsResourceWithRawResponse:
"""
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 AsyncConfigurationsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncConfigurationsResourceWithStreamingResponse:
"""
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 AsyncConfigurationsResourceWithStreamingResponse(self)
async def update(
self,
*,
zone_id: str,
auth_id_characteristics: Iterable[configuration_update_params.AuthIDCharacteristic],
normalize: bool | Omit = omit,
# 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,
) -> Configuration:
"""
Update configuration properties
Args:
zone_id: Identifier.
normalize: Ensures that the configuration is written or retrieved in normalized fashion
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._put(
f"/zones/{zone_id}/api_gateway/configuration",
body=await async_maybe_transform(
{"auth_id_characteristics": auth_id_characteristics},
configuration_update_params.ConfigurationUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=await async_maybe_transform(
{"normalize": normalize}, configuration_update_params.ConfigurationUpdateParams
),
post_parser=ResultWrapper[Configuration]._unwrapper,
),
cast_to=cast(Type[Configuration], ResultWrapper[Configuration]),
)
async def get(
self,
*,
zone_id: str,
normalize: bool | Omit = omit,
# 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,
) -> Configuration:
"""
Retrieve information about specific configuration properties
Args:
zone_id: Identifier.
normalize: Ensures that the configuration is written or retrieved in normalized fashion
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}/api_gateway/configuration",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=await async_maybe_transform(
{"normalize": normalize}, configuration_get_params.ConfigurationGetParams
),
post_parser=ResultWrapper[Configuration]._unwrapper,
),
cast_to=cast(Type[Configuration], ResultWrapper[Configuration]),
)
class ConfigurationsResourceWithRawResponse:
def __init__(self, configurations: ConfigurationsResource) -> None:
self._configurations = configurations
self.update = to_raw_response_wrapper(
configurations.update,
)
self.get = to_raw_response_wrapper(
configurations.get,
)
class AsyncConfigurationsResourceWithRawResponse:
def __init__(self, configurations: AsyncConfigurationsResource) -> None:
self._configurations = configurations
self.update = async_to_raw_response_wrapper(
configurations.update,
)
self.get = async_to_raw_response_wrapper(
configurations.get,
)
class ConfigurationsResourceWithStreamingResponse:
def __init__(self, configurations: ConfigurationsResource) -> None:
self._configurations = configurations
self.update = to_streamed_response_wrapper(
configurations.update,
)
self.get = to_streamed_response_wrapper(
configurations.get,
)
class AsyncConfigurationsResourceWithStreamingResponse:
def __init__(self, configurations: AsyncConfigurationsResource) -> None:
self._configurations = configurations
self.update = async_to_streamed_response_wrapper(
configurations.update,
)
self.get = async_to_streamed_response_wrapper(
configurations.get,
)