Skip to content

Commit 9c95355

Browse files
feat(api): manual updates (#2422)
1 parent ce37e3c commit 9c95355

File tree

5 files changed

+21
-44
lines changed

5 files changed

+21
-44
lines changed

api.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,9 @@ Methods:
6363

6464
## Roles
6565

66-
Types:
67-
68-
```python
69-
from cloudflare.types.accounts import RoleListResponse
70-
```
71-
7266
Methods:
7367

74-
- <code title="get /accounts/{account_id}/roles">client.accounts.roles.<a href="./src/cloudflare/resources/accounts/roles.py">list</a>(\*, account_id) -> <a href="./src/cloudflare/types/accounts/role_list_response.py">Optional[RoleListResponse]</a></code>
68+
- <code title="get /accounts/{account_id}/roles">client.accounts.roles.<a href="./src/cloudflare/resources/accounts/roles.py">list</a>(\*, account_id) -> <a href="./src/cloudflare/types/shared/role.py">SyncSinglePage[Role]</a></code>
7569
- <code title="get /accounts/{account_id}/roles/{role_id}">client.accounts.roles.<a href="./src/cloudflare/resources/accounts/roles.py">get</a>(role_id, \*, account_id) -> <a href="./src/cloudflare/types/shared/role.py">Optional[Role]</a></code>
7670

7771
## Subscriptions

src/cloudflare/resources/accounts/roles.py

+13-19
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
async_to_streamed_response_wrapper,
1717
)
1818
from ..._wrappers import ResultWrapper
19-
from ..._base_client import make_request_options
19+
from ...pagination import SyncSinglePage, AsyncSinglePage
20+
from ..._base_client import AsyncPaginator, make_request_options
2021
from ...types.shared.role import Role
21-
from ...types.accounts.role_list_response import RoleListResponse
2222

2323
__all__ = ["RolesResource", "AsyncRolesResource"]
2424

@@ -53,7 +53,7 @@ def list(
5353
extra_query: Query | None = None,
5454
extra_body: Body | None = None,
5555
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
56-
) -> Optional[RoleListResponse]:
56+
) -> SyncSinglePage[Role]:
5757
"""
5858
Get all available roles for an account.
5959
@@ -70,16 +70,13 @@ def list(
7070
"""
7171
if not account_id:
7272
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
73-
return self._get(
73+
return self._get_api_list(
7474
f"/accounts/{account_id}/roles",
75+
page=SyncSinglePage[Role],
7576
options=make_request_options(
76-
extra_headers=extra_headers,
77-
extra_query=extra_query,
78-
extra_body=extra_body,
79-
timeout=timeout,
80-
post_parser=ResultWrapper[Optional[RoleListResponse]]._unwrapper,
77+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
8178
),
82-
cast_to=cast(Type[Optional[RoleListResponse]], ResultWrapper[RoleListResponse]),
79+
model=Role,
8380
)
8481

8582
def get(
@@ -147,7 +144,7 @@ def with_streaming_response(self) -> AsyncRolesResourceWithStreamingResponse:
147144
"""
148145
return AsyncRolesResourceWithStreamingResponse(self)
149146

150-
async def list(
147+
def list(
151148
self,
152149
*,
153150
account_id: str,
@@ -157,7 +154,7 @@ async def list(
157154
extra_query: Query | None = None,
158155
extra_body: Body | None = None,
159156
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
160-
) -> Optional[RoleListResponse]:
157+
) -> AsyncPaginator[Role, AsyncSinglePage[Role]]:
161158
"""
162159
Get all available roles for an account.
163160
@@ -174,16 +171,13 @@ async def list(
174171
"""
175172
if not account_id:
176173
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
177-
return await self._get(
174+
return self._get_api_list(
178175
f"/accounts/{account_id}/roles",
176+
page=AsyncSinglePage[Role],
179177
options=make_request_options(
180-
extra_headers=extra_headers,
181-
extra_query=extra_query,
182-
extra_body=extra_body,
183-
timeout=timeout,
184-
post_parser=ResultWrapper[Optional[RoleListResponse]]._unwrapper,
178+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
185179
),
186-
cast_to=cast(Type[Optional[RoleListResponse]], ResultWrapper[RoleListResponse]),
180+
model=Role,
187181
)
188182

189183
async def get(

src/cloudflare/types/accounts/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from .account import Account as Account
77
from .token_list_params import TokenListParams as TokenListParams
88
from .member_list_params import MemberListParams as MemberListParams
9-
from .role_list_response import RoleListResponse as RoleListResponse
109
from .account_list_params import AccountListParams as AccountListParams
1110
from .token_create_params import TokenCreateParams as TokenCreateParams
1211
from .token_update_params import TokenUpdateParams as TokenUpdateParams

src/cloudflare/types/accounts/role_list_response.py

-10
This file was deleted.

tests/api_resources/accounts/test_roles.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
from cloudflare import Cloudflare, AsyncCloudflare
1111
from tests.utils import assert_matches_type
12+
from cloudflare.pagination import SyncSinglePage, AsyncSinglePage
1213
from cloudflare.types.shared import Role
13-
from cloudflare.types.accounts import RoleListResponse
1414

1515
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
1616

@@ -23,7 +23,7 @@ def test_method_list(self, client: Cloudflare) -> None:
2323
role = client.accounts.roles.list(
2424
account_id="eb78d65290b24279ba6f44721b3ea3c4",
2525
)
26-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
26+
assert_matches_type(SyncSinglePage[Role], role, path=["response"])
2727

2828
@parametrize
2929
def test_raw_response_list(self, client: Cloudflare) -> None:
@@ -34,7 +34,7 @@ def test_raw_response_list(self, client: Cloudflare) -> None:
3434
assert response.is_closed is True
3535
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
3636
role = response.parse()
37-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
37+
assert_matches_type(SyncSinglePage[Role], role, path=["response"])
3838

3939
@parametrize
4040
def test_streaming_response_list(self, client: Cloudflare) -> None:
@@ -45,7 +45,7 @@ def test_streaming_response_list(self, client: Cloudflare) -> None:
4545
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
4646

4747
role = response.parse()
48-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
48+
assert_matches_type(SyncSinglePage[Role], role, path=["response"])
4949

5050
assert cast(Any, response.is_closed) is True
5151

@@ -113,7 +113,7 @@ async def test_method_list(self, async_client: AsyncCloudflare) -> None:
113113
role = await async_client.accounts.roles.list(
114114
account_id="eb78d65290b24279ba6f44721b3ea3c4",
115115
)
116-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
116+
assert_matches_type(AsyncSinglePage[Role], role, path=["response"])
117117

118118
@parametrize
119119
async def test_raw_response_list(self, async_client: AsyncCloudflare) -> None:
@@ -124,7 +124,7 @@ async def test_raw_response_list(self, async_client: AsyncCloudflare) -> None:
124124
assert response.is_closed is True
125125
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
126126
role = await response.parse()
127-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
127+
assert_matches_type(AsyncSinglePage[Role], role, path=["response"])
128128

129129
@parametrize
130130
async def test_streaming_response_list(self, async_client: AsyncCloudflare) -> None:
@@ -135,7 +135,7 @@ async def test_streaming_response_list(self, async_client: AsyncCloudflare) -> N
135135
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
136136

137137
role = await response.parse()
138-
assert_matches_type(Optional[RoleListResponse], role, path=["response"])
138+
assert_matches_type(AsyncSinglePage[Role], role, path=["response"])
139139

140140
assert cast(Any, response.is_closed) is True
141141

0 commit comments

Comments
 (0)