-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): OpenAPI spec update via Stainless API (#443)
- Loading branch information
1 parent
d735c0d
commit ac42f4b
Showing
9 changed files
with
536 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 1267 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-6229bf7c4bed6b9026088be8817d3c8111576b2d12ff5220d193f479f230e449.yml | ||
configured_endpoints: 1268 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-7a581c61bc42c6e3e48c58c941255dca8f4b7b2e5aafd402a61c6438c2830071.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing import Type, cast | ||
|
||
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.intel import whois_get_params | ||
from ..._base_client import ( | ||
make_request_options, | ||
) | ||
from ...types.intel.whois_get_response import WhoisGetResponse | ||
|
||
__all__ = ["WhoisResource", "AsyncWhoisResource"] | ||
|
||
|
||
class WhoisResource(SyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> WhoisResourceWithRawResponse: | ||
return WhoisResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> WhoisResourceWithStreamingResponse: | ||
return WhoisResourceWithStreamingResponse(self) | ||
|
||
def get( | ||
self, | ||
*, | ||
account_id: str, | ||
domain: str | NotGiven = NOT_GIVEN, | ||
# 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, | ||
) -> WhoisGetResponse: | ||
""" | ||
Get WHOIS Record | ||
Args: | ||
account_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 account_id: | ||
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}") | ||
return self._get( | ||
f"/accounts/{account_id}/intel/whois", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=maybe_transform({"domain": domain}, whois_get_params.WhoisGetParams), | ||
post_parser=ResultWrapper[WhoisGetResponse]._unwrapper, | ||
), | ||
cast_to=cast(Type[WhoisGetResponse], ResultWrapper[WhoisGetResponse]), | ||
) | ||
|
||
|
||
class AsyncWhoisResource(AsyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> AsyncWhoisResourceWithRawResponse: | ||
return AsyncWhoisResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> AsyncWhoisResourceWithStreamingResponse: | ||
return AsyncWhoisResourceWithStreamingResponse(self) | ||
|
||
async def get( | ||
self, | ||
*, | ||
account_id: str, | ||
domain: str | NotGiven = NOT_GIVEN, | ||
# 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, | ||
) -> WhoisGetResponse: | ||
""" | ||
Get WHOIS Record | ||
Args: | ||
account_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 account_id: | ||
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}") | ||
return await self._get( | ||
f"/accounts/{account_id}/intel/whois", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=await async_maybe_transform({"domain": domain}, whois_get_params.WhoisGetParams), | ||
post_parser=ResultWrapper[WhoisGetResponse]._unwrapper, | ||
), | ||
cast_to=cast(Type[WhoisGetResponse], ResultWrapper[WhoisGetResponse]), | ||
) | ||
|
||
|
||
class WhoisResourceWithRawResponse: | ||
def __init__(self, whois: WhoisResource) -> None: | ||
self._whois = whois | ||
|
||
self.get = to_raw_response_wrapper( | ||
whois.get, | ||
) | ||
|
||
|
||
class AsyncWhoisResourceWithRawResponse: | ||
def __init__(self, whois: AsyncWhoisResource) -> None: | ||
self._whois = whois | ||
|
||
self.get = async_to_raw_response_wrapper( | ||
whois.get, | ||
) | ||
|
||
|
||
class WhoisResourceWithStreamingResponse: | ||
def __init__(self, whois: WhoisResource) -> None: | ||
self._whois = whois | ||
|
||
self.get = to_streamed_response_wrapper( | ||
whois.get, | ||
) | ||
|
||
|
||
class AsyncWhoisResourceWithStreamingResponse: | ||
def __init__(self, whois: AsyncWhoisResource) -> None: | ||
self._whois = whois | ||
|
||
self.get = async_to_streamed_response_wrapper( | ||
whois.get, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing_extensions import Required, TypedDict | ||
|
||
__all__ = ["WhoisGetParams"] | ||
|
||
|
||
class WhoisGetParams(TypedDict, total=False): | ||
account_id: Required[str] | ||
"""Identifier""" | ||
|
||
domain: str |
Oops, something went wrong.