mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
680 lines
28 KiB
Python
680 lines
28 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 ...._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 ....pagination import SyncSinglePage, AsyncSinglePage
|
|
from ...._base_client import AsyncPaginator, make_request_options
|
|
from ....types.zero_trust.gateway import (
|
|
certificate_create_params,
|
|
certificate_activate_params,
|
|
certificate_deactivate_params,
|
|
)
|
|
from ....types.zero_trust.gateway.certificate_get_response import CertificateGetResponse
|
|
from ....types.zero_trust.gateway.certificate_list_response import CertificateListResponse
|
|
from ....types.zero_trust.gateway.certificate_create_response import CertificateCreateResponse
|
|
from ....types.zero_trust.gateway.certificate_delete_response import CertificateDeleteResponse
|
|
from ....types.zero_trust.gateway.certificate_activate_response import CertificateActivateResponse
|
|
from ....types.zero_trust.gateway.certificate_deactivate_response import CertificateDeactivateResponse
|
|
|
|
__all__ = ["CertificatesResource", "AsyncCertificatesResource"]
|
|
|
|
|
|
class CertificatesResource(SyncAPIResource):
|
|
@cached_property
|
|
def with_raw_response(self) -> CertificatesResourceWithRawResponse:
|
|
"""
|
|
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 CertificatesResourceWithRawResponse(self)
|
|
|
|
@cached_property
|
|
def with_streaming_response(self) -> CertificatesResourceWithStreamingResponse:
|
|
"""
|
|
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 CertificatesResourceWithStreamingResponse(self)
|
|
|
|
def create(
|
|
self,
|
|
*,
|
|
account_id: str,
|
|
validity_period_days: int | 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,
|
|
) -> Optional[CertificateCreateResponse]:
|
|
"""
|
|
Create a new Zero Trust certificate.
|
|
|
|
Args:
|
|
validity_period_days: Sets the certificate validity period in days (range: 1-10,950 days / ~30 years).
|
|
Defaults to 1,825 days (5 years). **Important**: This field is only settable
|
|
during the certificate creation. Certificates becomes immutable after creation -
|
|
use the `/activate` and `/deactivate` endpoints to manage certificate lifecycle.
|
|
|
|
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}")
|
|
return self._post(
|
|
f"/accounts/{account_id}/gateway/certificates",
|
|
body=maybe_transform(
|
|
{"validity_period_days": validity_period_days}, certificate_create_params.CertificateCreateParams
|
|
),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateCreateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateCreateResponse]], ResultWrapper[CertificateCreateResponse]),
|
|
)
|
|
|
|
def list(
|
|
self,
|
|
*,
|
|
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,
|
|
) -> SyncSinglePage[CertificateListResponse]:
|
|
"""
|
|
List all Zero Trust certificates for an account.
|
|
|
|
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}")
|
|
return self._get_api_list(
|
|
f"/accounts/{account_id}/gateway/certificates",
|
|
page=SyncSinglePage[CertificateListResponse],
|
|
options=make_request_options(
|
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
),
|
|
model=CertificateListResponse,
|
|
)
|
|
|
|
def delete(
|
|
self,
|
|
certificate_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[CertificateDeleteResponse]:
|
|
"""Delete a gateway-managed Zero Trust certificate.
|
|
|
|
You must deactivate the
|
|
certificate from the edge (inactive) before deleting it.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return self._delete(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateDeleteResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateDeleteResponse]], ResultWrapper[CertificateDeleteResponse]),
|
|
)
|
|
|
|
def activate(
|
|
self,
|
|
certificate_id: str,
|
|
*,
|
|
account_id: str,
|
|
body: object,
|
|
# 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[CertificateActivateResponse]:
|
|
"""
|
|
Bind a single Zero Trust certificate to the edge.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return self._post(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}/activate",
|
|
body=maybe_transform(body, certificate_activate_params.CertificateActivateParams),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateActivateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateActivateResponse]], ResultWrapper[CertificateActivateResponse]),
|
|
)
|
|
|
|
def deactivate(
|
|
self,
|
|
certificate_id: str,
|
|
*,
|
|
account_id: str,
|
|
body: object,
|
|
# 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[CertificateDeactivateResponse]:
|
|
"""
|
|
Unbind a single Zero Trust certificate from the edge.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return self._post(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}/deactivate",
|
|
body=maybe_transform(body, certificate_deactivate_params.CertificateDeactivateParams),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateDeactivateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateDeactivateResponse]], ResultWrapper[CertificateDeactivateResponse]),
|
|
)
|
|
|
|
def get(
|
|
self,
|
|
certificate_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[CertificateGetResponse]:
|
|
"""
|
|
Get a single Zero Trust certificate.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return self._get(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateGetResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateGetResponse]], ResultWrapper[CertificateGetResponse]),
|
|
)
|
|
|
|
|
|
class AsyncCertificatesResource(AsyncAPIResource):
|
|
@cached_property
|
|
def with_raw_response(self) -> AsyncCertificatesResourceWithRawResponse:
|
|
"""
|
|
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 AsyncCertificatesResourceWithRawResponse(self)
|
|
|
|
@cached_property
|
|
def with_streaming_response(self) -> AsyncCertificatesResourceWithStreamingResponse:
|
|
"""
|
|
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 AsyncCertificatesResourceWithStreamingResponse(self)
|
|
|
|
async def create(
|
|
self,
|
|
*,
|
|
account_id: str,
|
|
validity_period_days: int | 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,
|
|
) -> Optional[CertificateCreateResponse]:
|
|
"""
|
|
Create a new Zero Trust certificate.
|
|
|
|
Args:
|
|
validity_period_days: Sets the certificate validity period in days (range: 1-10,950 days / ~30 years).
|
|
Defaults to 1,825 days (5 years). **Important**: This field is only settable
|
|
during the certificate creation. Certificates becomes immutable after creation -
|
|
use the `/activate` and `/deactivate` endpoints to manage certificate lifecycle.
|
|
|
|
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}")
|
|
return await self._post(
|
|
f"/accounts/{account_id}/gateway/certificates",
|
|
body=await async_maybe_transform(
|
|
{"validity_period_days": validity_period_days}, certificate_create_params.CertificateCreateParams
|
|
),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateCreateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateCreateResponse]], ResultWrapper[CertificateCreateResponse]),
|
|
)
|
|
|
|
def list(
|
|
self,
|
|
*,
|
|
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,
|
|
) -> AsyncPaginator[CertificateListResponse, AsyncSinglePage[CertificateListResponse]]:
|
|
"""
|
|
List all Zero Trust certificates for an account.
|
|
|
|
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}")
|
|
return self._get_api_list(
|
|
f"/accounts/{account_id}/gateway/certificates",
|
|
page=AsyncSinglePage[CertificateListResponse],
|
|
options=make_request_options(
|
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
),
|
|
model=CertificateListResponse,
|
|
)
|
|
|
|
async def delete(
|
|
self,
|
|
certificate_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[CertificateDeleteResponse]:
|
|
"""Delete a gateway-managed Zero Trust certificate.
|
|
|
|
You must deactivate the
|
|
certificate from the edge (inactive) before deleting it.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return await self._delete(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateDeleteResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateDeleteResponse]], ResultWrapper[CertificateDeleteResponse]),
|
|
)
|
|
|
|
async def activate(
|
|
self,
|
|
certificate_id: str,
|
|
*,
|
|
account_id: str,
|
|
body: object,
|
|
# 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[CertificateActivateResponse]:
|
|
"""
|
|
Bind a single Zero Trust certificate to the edge.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return await self._post(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}/activate",
|
|
body=await async_maybe_transform(body, certificate_activate_params.CertificateActivateParams),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateActivateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateActivateResponse]], ResultWrapper[CertificateActivateResponse]),
|
|
)
|
|
|
|
async def deactivate(
|
|
self,
|
|
certificate_id: str,
|
|
*,
|
|
account_id: str,
|
|
body: object,
|
|
# 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[CertificateDeactivateResponse]:
|
|
"""
|
|
Unbind a single Zero Trust certificate from the edge.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return await self._post(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}/deactivate",
|
|
body=await async_maybe_transform(body, certificate_deactivate_params.CertificateDeactivateParams),
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateDeactivateResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateDeactivateResponse]], ResultWrapper[CertificateDeactivateResponse]),
|
|
)
|
|
|
|
async def get(
|
|
self,
|
|
certificate_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[CertificateGetResponse]:
|
|
"""
|
|
Get a single Zero Trust certificate.
|
|
|
|
Args:
|
|
certificate_id: Identify the certificate with a UUID.
|
|
|
|
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 certificate_id:
|
|
raise ValueError(f"Expected a non-empty value for `certificate_id` but received {certificate_id!r}")
|
|
return await self._get(
|
|
f"/accounts/{account_id}/gateway/certificates/{certificate_id}",
|
|
options=make_request_options(
|
|
extra_headers=extra_headers,
|
|
extra_query=extra_query,
|
|
extra_body=extra_body,
|
|
timeout=timeout,
|
|
post_parser=ResultWrapper[Optional[CertificateGetResponse]]._unwrapper,
|
|
),
|
|
cast_to=cast(Type[Optional[CertificateGetResponse]], ResultWrapper[CertificateGetResponse]),
|
|
)
|
|
|
|
|
|
class CertificatesResourceWithRawResponse:
|
|
def __init__(self, certificates: CertificatesResource) -> None:
|
|
self._certificates = certificates
|
|
|
|
self.create = to_raw_response_wrapper(
|
|
certificates.create,
|
|
)
|
|
self.list = to_raw_response_wrapper(
|
|
certificates.list,
|
|
)
|
|
self.delete = to_raw_response_wrapper(
|
|
certificates.delete,
|
|
)
|
|
self.activate = to_raw_response_wrapper(
|
|
certificates.activate,
|
|
)
|
|
self.deactivate = to_raw_response_wrapper(
|
|
certificates.deactivate,
|
|
)
|
|
self.get = to_raw_response_wrapper(
|
|
certificates.get,
|
|
)
|
|
|
|
|
|
class AsyncCertificatesResourceWithRawResponse:
|
|
def __init__(self, certificates: AsyncCertificatesResource) -> None:
|
|
self._certificates = certificates
|
|
|
|
self.create = async_to_raw_response_wrapper(
|
|
certificates.create,
|
|
)
|
|
self.list = async_to_raw_response_wrapper(
|
|
certificates.list,
|
|
)
|
|
self.delete = async_to_raw_response_wrapper(
|
|
certificates.delete,
|
|
)
|
|
self.activate = async_to_raw_response_wrapper(
|
|
certificates.activate,
|
|
)
|
|
self.deactivate = async_to_raw_response_wrapper(
|
|
certificates.deactivate,
|
|
)
|
|
self.get = async_to_raw_response_wrapper(
|
|
certificates.get,
|
|
)
|
|
|
|
|
|
class CertificatesResourceWithStreamingResponse:
|
|
def __init__(self, certificates: CertificatesResource) -> None:
|
|
self._certificates = certificates
|
|
|
|
self.create = to_streamed_response_wrapper(
|
|
certificates.create,
|
|
)
|
|
self.list = to_streamed_response_wrapper(
|
|
certificates.list,
|
|
)
|
|
self.delete = to_streamed_response_wrapper(
|
|
certificates.delete,
|
|
)
|
|
self.activate = to_streamed_response_wrapper(
|
|
certificates.activate,
|
|
)
|
|
self.deactivate = to_streamed_response_wrapper(
|
|
certificates.deactivate,
|
|
)
|
|
self.get = to_streamed_response_wrapper(
|
|
certificates.get,
|
|
)
|
|
|
|
|
|
class AsyncCertificatesResourceWithStreamingResponse:
|
|
def __init__(self, certificates: AsyncCertificatesResource) -> None:
|
|
self._certificates = certificates
|
|
|
|
self.create = async_to_streamed_response_wrapper(
|
|
certificates.create,
|
|
)
|
|
self.list = async_to_streamed_response_wrapper(
|
|
certificates.list,
|
|
)
|
|
self.delete = async_to_streamed_response_wrapper(
|
|
certificates.delete,
|
|
)
|
|
self.activate = async_to_streamed_response_wrapper(
|
|
certificates.activate,
|
|
)
|
|
self.deactivate = async_to_streamed_response_wrapper(
|
|
certificates.deactivate,
|
|
)
|
|
self.get = async_to_streamed_response_wrapper(
|
|
certificates.get,
|
|
)
|