cloudflare-python/src/cloudflare/resources/custom_certificates/prioritize.py

188 lines
7.2 KiB
Python

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Iterable
import httpx
from ..._types import Body, Query, Headers, NotGiven, not_given
from ..._utils import 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 ...pagination import SyncSinglePage, AsyncSinglePage
from ..._base_client import AsyncPaginator, make_request_options
from ...types.custom_certificates import prioritize_update_params
from ...types.custom_certificates.custom_certificate import CustomCertificate
__all__ = ["PrioritizeResource", "AsyncPrioritizeResource"]
class PrioritizeResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> PrioritizeResourceWithRawResponse:
"""
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 PrioritizeResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> PrioritizeResourceWithStreamingResponse:
"""
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 PrioritizeResourceWithStreamingResponse(self)
def update(
self,
*,
zone_id: str,
certificates: Iterable[prioritize_update_params.Certificate],
# 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,
) -> SyncSinglePage[CustomCertificate]:
"""
If a zone has multiple SSL certificates, you can set the order in which they
should be used during a request. The higher priority will break ties across
overlapping 'legacy_custom' certificates.
Args:
zone_id: Identifier.
certificates: Array of ordered certificates.
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_api_list(
f"/zones/{zone_id}/custom_certificates/prioritize",
page=SyncSinglePage[CustomCertificate],
body=maybe_transform({"certificates": certificates}, prioritize_update_params.PrioritizeUpdateParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
model=CustomCertificate,
method="put",
)
class AsyncPrioritizeResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncPrioritizeResourceWithRawResponse:
"""
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 AsyncPrioritizeResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncPrioritizeResourceWithStreamingResponse:
"""
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 AsyncPrioritizeResourceWithStreamingResponse(self)
def update(
self,
*,
zone_id: str,
certificates: Iterable[prioritize_update_params.Certificate],
# 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,
) -> AsyncPaginator[CustomCertificate, AsyncSinglePage[CustomCertificate]]:
"""
If a zone has multiple SSL certificates, you can set the order in which they
should be used during a request. The higher priority will break ties across
overlapping 'legacy_custom' certificates.
Args:
zone_id: Identifier.
certificates: Array of ordered certificates.
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_api_list(
f"/zones/{zone_id}/custom_certificates/prioritize",
page=AsyncSinglePage[CustomCertificate],
body=maybe_transform({"certificates": certificates}, prioritize_update_params.PrioritizeUpdateParams),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
model=CustomCertificate,
method="put",
)
class PrioritizeResourceWithRawResponse:
def __init__(self, prioritize: PrioritizeResource) -> None:
self._prioritize = prioritize
self.update = to_raw_response_wrapper(
prioritize.update,
)
class AsyncPrioritizeResourceWithRawResponse:
def __init__(self, prioritize: AsyncPrioritizeResource) -> None:
self._prioritize = prioritize
self.update = async_to_raw_response_wrapper(
prioritize.update,
)
class PrioritizeResourceWithStreamingResponse:
def __init__(self, prioritize: PrioritizeResource) -> None:
self._prioritize = prioritize
self.update = to_streamed_response_wrapper(
prioritize.update,
)
class AsyncPrioritizeResourceWithStreamingResponse:
def __init__(self, prioritize: AsyncPrioritizeResource) -> None:
self._prioritize = prioritize
self.update = async_to_streamed_response_wrapper(
prioritize.update,
)