| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8fdc5dd commit fc596ad
58 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,6 +23,7 @@ | |||
| 23 | 23 | from ......types.zero_trust.access.ai_controls.mcp import server_list_params, server_create_params, server_update_params | |
| 24 | 24 | from ......types.zero_trust.access.ai_controls.mcp.server_list_response import ServerListResponse | |
| 25 | 25 | from ......types.zero_trust.access.ai_controls.mcp.server_read_response import ServerReadResponse | |
| 26 | + from ......types.zero_trust.access.ai_controls.mcp.server_sync_response import ServerSyncResponse | ||
| 26 | 27 | from ......types.zero_trust.access.ai_controls.mcp.server_create_response import ServerCreateResponse | |
| 27 | 28 | from ......types.zero_trust.access.ai_controls.mcp.server_delete_response import ServerDeleteResponse | |
| 28 | 29 | from ......types.zero_trust.access.ai_controls.mcp.server_update_response import ServerUpdateResponse | |
@@ -312,9 +313,10 @@ def sync( | |||
| 312 | 313 | extra_query: Query | None = None, | |
| 313 | 314 | extra_body: Body | None = None, | |
| 314 | 315 | timeout: float | httpx.Timeout | None | NotGiven = not_given, | |
| 315 | - ) -> object: | ||
| 316 | + ) -> ServerSyncResponse: | ||
| 316 | 317 | """ | |
| 317 | - Syncs an MCP server's tool catalog with the portal. | ||
| 318 | + Syncs an MCP server's capabilities and returns the updated server state, | ||
| 319 | + including any connection errors. | ||
| 318 | 320 | ||
| 319 | 321 | Args: | |
| 320 | 322 | id: portal id | |
@@ -340,9 +342,9 @@ def sync( | |||
| 340 | 342 | extra_query=extra_query, | |
| 341 | 343 | extra_body=extra_body, | |
| 342 | 344 | timeout=timeout, | |
| 343 | - post_parser=ResultWrapper[object]._unwrapper, | ||
| 345 | + post_parser=ResultWrapper[ServerSyncResponse]._unwrapper, | ||
| 344 | 346 | ), | |
| 345 | - cast_to=cast(Type[object], ResultWrapper[object]), | ||
| 347 | + cast_to=cast(Type[ServerSyncResponse], ResultWrapper[ServerSyncResponse]), | ||
| 346 | 348 | ) | |
| 347 | 349 | ||
| 348 | 350 | ||
@@ -628,9 +630,10 @@ async def sync( | |||
| 628 | 630 | extra_query: Query | None = None, | |
| 629 | 631 | extra_body: Body | None = None, | |
| 630 | 632 | timeout: float | httpx.Timeout | None | NotGiven = not_given, | |
| 631 | - ) -> object: | ||
| 633 | + ) -> ServerSyncResponse: | ||
| 632 | 634 | """ | |
| 633 | - Syncs an MCP server's tool catalog with the portal. | ||
| 635 | + Syncs an MCP server's capabilities and returns the updated server state, | ||
| 636 | + including any connection errors. | ||
| 634 | 637 | ||
| 635 | 638 | Args: | |
| 636 | 639 | id: portal id | |
@@ -656,9 +659,9 @@ async def sync( | |||
| 656 | 659 | extra_query=extra_query, | |
| 657 | 660 | extra_body=extra_body, | |
| 658 | 661 | timeout=timeout, | |
| 659 | - post_parser=ResultWrapper[object]._unwrapper, | ||
| 662 | + post_parser=ResultWrapper[ServerSyncResponse]._unwrapper, | ||
| 660 | 663 | ), | |
| 661 | - cast_to=cast(Type[object], ResultWrapper[object]), | ||
| 664 | + cast_to=cast(Type[ServerSyncResponse], ResultWrapper[ServerSyncResponse]), | ||
| 662 | 665 | ) | |
| 663 | 666 | ||
| 664 | 667 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -467,6 +467,7 @@ from cloudflare.types.zero_trust.access.ai_controls.mcp import ( | |||
| 467 | 467 | ServerListResponse, | |
| 468 | 468 | ServerDeleteResponse, | |
| 469 | 469 | ServerReadResponse, | |
| 470 | + ServerSyncResponse, | ||
| 470 | 471 | ) | |
| 471 | 472 | ``` | |
| 472 | 473 | ||
@@ -477,7 +478,7 @@ Methods: | |||
| 477 | 478 | - <code title="get /accounts/{account_id}/access/ai-controls/mcp/servers">client.zero_trust.access.ai_controls.mcp.servers.<a href="./src/cloudflare/resources/zero_trust/access/ai_controls/mcp/servers.py">list</a>(\*, account_id, \*\*<a href="src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_list_params.py">params</a>) -> <a href="./src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_list_response.py">SyncV4PagePaginationArray[ServerListResponse]</a></code> | |
| 478 | 479 | - <code title="delete /accounts/{account_id}/access/ai-controls/mcp/servers/{id}">client.zero_trust.access.ai_controls.mcp.servers.<a href="./src/cloudflare/resources/zero_trust/access/ai_controls/mcp/servers.py">delete</a>(id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_delete_response.py">ServerDeleteResponse</a></code> | |
| 479 | 480 | - <code title="get /accounts/{account_id}/access/ai-controls/mcp/servers/{id}">client.zero_trust.access.ai_controls.mcp.servers.<a href="./src/cloudflare/resources/zero_trust/access/ai_controls/mcp/servers.py">read</a>(id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_read_response.py">ServerReadResponse</a></code> | |
| 480 | - - <code title="post /accounts/{account_id}/access/ai-controls/mcp/servers/{id}/sync">client.zero_trust.access.ai_controls.mcp.servers.<a href="./src/cloudflare/resources/zero_trust/access/ai_controls/mcp/servers.py">sync</a>(id, \*, account_id) -> object</code> | ||
| 481 | + - <code title="post /accounts/{account_id}/access/ai-controls/mcp/servers/{id}/sync">client.zero_trust.access.ai_controls.mcp.servers.<a href="./src/cloudflare/resources/zero_trust/access/ai_controls/mcp/servers.py">sync</a>(id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_sync_response.py">ServerSyncResponse</a></code> | ||
| 481 | 482 | ||
| 482 | 483 | ### GatewayCA | |
| 483 | 484 | ||
@@ -1335,6 +1336,22 @@ Methods: | |||
| 1335 | 1336 | ||
| 1336 | 1337 | ## DLP | |
| 1337 | 1338 | ||
| 1339 | + ### CustomPromptTopics | ||
| 1340 | + | ||
| 1341 | + Types: | ||
| 1342 | + | ||
| 1343 | + ```python | ||
| 1344 | + from cloudflare.types.zero_trust.dlp import CustomPromptTopic | ||
| 1345 | + ``` | ||
| 1346 | + | ||
| 1347 | + Methods: | ||
| 1348 | + | ||
| 1349 | + - <code title="post /accounts/{account_id}/dlp/custom_prompt_topics">client.zero_trust.dlp.custom_prompt_topics.<a href="./src/cloudflare/resources/zero_trust/dlp/custom_prompt_topics.py">create</a>(\*, account_id, \*\*<a href="src/cloudflare/types/zero_trust/dlp/custom_prompt_topic_create_params.py">params</a>) -> <a href="./src/cloudflare/types/zero_trust/dlp/custom_prompt_topic.py">Optional[CustomPromptTopic]</a></code> | ||
| 1350 | + - <code title="put /accounts/{account_id}/dlp/custom_prompt_topics/{entry_id}">client.zero_trust.dlp.custom_prompt_topics.<a href="./src/cloudflare/resources/zero_trust/dlp/custom_prompt_topics.py">update</a>(entry_id, \*, account_id, \*\*<a href="src/cloudflare/types/zero_trust/dlp/custom_prompt_topic_update_params.py">params</a>) -> <a href="./src/cloudflare/types/zero_trust/dlp/custom_prompt_topic.py">Optional[CustomPromptTopic]</a></code> | ||
| 1351 | + - <code title="get /accounts/{account_id}/dlp/custom_prompt_topics">client.zero_trust.dlp.custom_prompt_topics.<a href="./src/cloudflare/resources/zero_trust/dlp/custom_prompt_topics.py">list</a>(\*, account_id) -> <a href="./src/cloudflare/types/zero_trust/dlp/custom_prompt_topic.py">SyncSinglePage[CustomPromptTopic]</a></code> | ||
| 1352 | + - <code title="delete /accounts/{account_id}/dlp/custom_prompt_topics/{entry_id}">client.zero_trust.dlp.custom_prompt_topics.<a href="./src/cloudflare/resources/zero_trust/dlp/custom_prompt_topics.py">delete</a>(entry_id, \*, account_id) -> object</code> | ||
| 1353 | + - <code title="get /accounts/{account_id}/dlp/custom_prompt_topics/{entry_id}">client.zero_trust.dlp.custom_prompt_topics.<a href="./src/cloudflare/resources/zero_trust/dlp/custom_prompt_topics.py">get</a>(entry_id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/dlp/custom_prompt_topic.py">Optional[CustomPromptTopic]</a></code> | ||
| 1354 | + | ||
| 1338 | 1355 | ### Datasets | |
| 1339 | 1356 | ||
| 1340 | 1357 | Types: | |
@@ -1714,15 +1731,9 @@ Methods: | |||
| 1714 | 1731 | ||
| 1715 | 1732 | #### Items | |
| 1716 | 1733 | ||
| 1717 | - Types: | ||
| 1718 | - | ||
| 1719 | - ```python | ||
| 1720 | - from cloudflare.types.zero_trust.gateway.lists import ItemListResponse | ||
| 1721 | - ``` | ||
| 1722 | - | ||
| 1723 | 1734 | Methods: | |
| 1724 | 1735 | ||
| 1725 | - - <code title="get /accounts/{account_id}/gateway/lists/{list_id}/items">client.zero_trust.gateway.lists.items.<a href="./src/cloudflare/resources/zero_trust/gateway/lists/items.py">list</a>(list_id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/gateway/lists/item_list_response.py">SyncSinglePage[ItemListResponse]</a></code> | ||
| 1736 | + - <code title="get /accounts/{account_id}/gateway/lists/{list_id}/items">client.zero_trust.gateway.lists.items.<a href="./src/cloudflare/resources/zero_trust/gateway/lists/items.py">list</a>(list_id, \*, account_id) -> <a href="./src/cloudflare/types/zero_trust/gateway/gateway_item.py">SyncSinglePage[GatewayItem]</a></code> | ||
| 1726 | 1737 | ||
| 1727 | 1738 | ### Locations | |
| 1728 | 1739 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -97,6 +97,7 @@ def create( | |||
| 97 | 97 | captive_portal: float | Omit = omit, | |
| 98 | 98 | description: str | Omit = omit, | |
| 99 | 99 | disable_auto_fallback: bool | Omit = omit, | |
| 100 | + dns_search_suffixes: Iterable[custom_create_params.DNSSearchSuffix] | Omit = omit, | ||
| 100 | 101 | enabled: bool | Omit = omit, | |
| 101 | 102 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 102 | 103 | exclude_office_ips: bool | Omit = omit, | |
@@ -149,6 +150,9 @@ def create( | |||
| 149 | 150 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 150 | 151 | option is set to `true`. | |
| 151 | 152 | ||
| 153 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 154 | + order. Use an empty array to clear. | ||
| 155 | + | ||
| 152 | 156 | enabled: Whether the policy will be applied to matching devices. | |
| 153 | 157 | ||
| 154 | 158 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
@@ -205,6 +209,7 @@ def create( | |||
| 205 | 209 | "captive_portal": captive_portal, | |
| 206 | 210 | "description": description, | |
| 207 | 211 | "disable_auto_fallback": disable_auto_fallback, | |
| 212 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 208 | 213 | "enabled": enabled, | |
| 209 | 214 | "exclude": exclude, | |
| 210 | 215 | "exclude_office_ips": exclude_office_ips, | |
@@ -318,6 +323,7 @@ def edit( | |||
| 318 | 323 | captive_portal: float | Omit = omit, | |
| 319 | 324 | description: str | Omit = omit, | |
| 320 | 325 | disable_auto_fallback: bool | Omit = omit, | |
| 326 | + dns_search_suffixes: Iterable[custom_edit_params.DNSSearchSuffix] | Omit = omit, | ||
| 321 | 327 | enabled: bool | Omit = omit, | |
| 322 | 328 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 323 | 329 | exclude_office_ips: bool | Omit = omit, | |
@@ -362,6 +368,9 @@ def edit( | |||
| 362 | 368 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 363 | 369 | option is set to `true`. | |
| 364 | 370 | ||
| 371 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 372 | + order. Use an empty array to clear. | ||
| 373 | + | ||
| 365 | 374 | enabled: Whether the policy will be applied to matching devices. | |
| 366 | 375 | ||
| 367 | 376 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
@@ -429,6 +438,7 @@ def edit( | |||
| 429 | 438 | "captive_portal": captive_portal, | |
| 430 | 439 | "description": description, | |
| 431 | 440 | "disable_auto_fallback": disable_auto_fallback, | |
| 441 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 432 | 442 | "enabled": enabled, | |
| 433 | 443 | "exclude": exclude, | |
| 434 | 444 | "exclude_office_ips": exclude_office_ips, | |
@@ -547,6 +557,7 @@ async def create( | |||
| 547 | 557 | captive_portal: float | Omit = omit, | |
| 548 | 558 | description: str | Omit = omit, | |
| 549 | 559 | disable_auto_fallback: bool | Omit = omit, | |
| 560 | + dns_search_suffixes: Iterable[custom_create_params.DNSSearchSuffix] | Omit = omit, | ||
| 550 | 561 | enabled: bool | Omit = omit, | |
| 551 | 562 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 552 | 563 | exclude_office_ips: bool | Omit = omit, | |
@@ -599,6 +610,9 @@ async def create( | |||
| 599 | 610 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 600 | 611 | option is set to `true`. | |
| 601 | 612 | ||
| 613 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 614 | + order. Use an empty array to clear. | ||
| 615 | + | ||
| 602 | 616 | enabled: Whether the policy will be applied to matching devices. | |
| 603 | 617 | ||
| 604 | 618 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
@@ -655,6 +669,7 @@ async def create( | |||
| 655 | 669 | "captive_portal": captive_portal, | |
| 656 | 670 | "description": description, | |
| 657 | 671 | "disable_auto_fallback": disable_auto_fallback, | |
| 672 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 658 | 673 | "enabled": enabled, | |
| 659 | 674 | "exclude": exclude, | |
| 660 | 675 | "exclude_office_ips": exclude_office_ips, | |
@@ -768,6 +783,7 @@ async def edit( | |||
| 768 | 783 | captive_portal: float | Omit = omit, | |
| 769 | 784 | description: str | Omit = omit, | |
| 770 | 785 | disable_auto_fallback: bool | Omit = omit, | |
| 786 | + dns_search_suffixes: Iterable[custom_edit_params.DNSSearchSuffix] | Omit = omit, | ||
| 771 | 787 | enabled: bool | Omit = omit, | |
| 772 | 788 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 773 | 789 | exclude_office_ips: bool | Omit = omit, | |
@@ -812,6 +828,9 @@ async def edit( | |||
| 812 | 828 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 813 | 829 | option is set to `true`. | |
| 814 | 830 | ||
| 831 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 832 | + order. Use an empty array to clear. | ||
| 833 | + | ||
| 815 | 834 | enabled: Whether the policy will be applied to matching devices. | |
| 816 | 835 | ||
| 817 | 836 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
@@ -879,6 +898,7 @@ async def edit( | |||
| 879 | 898 | "captive_portal": captive_portal, | |
| 880 | 899 | "description": description, | |
| 881 | 900 | "disable_auto_fallback": disable_auto_fallback, | |
| 901 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 882 | 902 | "enabled": enabled, | |
| 883 | 903 | "exclude": exclude, | |
| 884 | 904 | "exclude_office_ips": exclude_office_ips, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -105,6 +105,7 @@ def edit( | |||
| 105 | 105 | auto_connect: float | Omit = omit, | |
| 106 | 106 | captive_portal: float | Omit = omit, | |
| 107 | 107 | disable_auto_fallback: bool | Omit = omit, | |
| 108 | + dns_search_suffixes: Iterable[default_edit_params.DNSSearchSuffix] | Omit = omit, | ||
| 108 | 109 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 109 | 110 | exclude_office_ips: bool | Omit = omit, | |
| 110 | 111 | include: Iterable[SplitTunnelIncludeParam] | Omit = omit, | |
@@ -143,6 +144,9 @@ def edit( | |||
| 143 | 144 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 144 | 145 | option is set to `true`. | |
| 145 | 146 | ||
| 147 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 148 | + order. Use an empty array to clear. | ||
| 149 | + | ||
| 146 | 150 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
| 147 | 151 | 'include' cannot be set in the same request. | |
| 148 | 152 | ||
@@ -193,6 +197,7 @@ def edit( | |||
| 193 | 197 | "auto_connect": auto_connect, | |
| 194 | 198 | "captive_portal": captive_portal, | |
| 195 | 199 | "disable_auto_fallback": disable_auto_fallback, | |
| 200 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 196 | 201 | "exclude": exclude, | |
| 197 | 202 | "exclude_office_ips": exclude_office_ips, | |
| 198 | 203 | "include": include, | |
@@ -302,6 +307,7 @@ async def edit( | |||
| 302 | 307 | auto_connect: float | Omit = omit, | |
| 303 | 308 | captive_portal: float | Omit = omit, | |
| 304 | 309 | disable_auto_fallback: bool | Omit = omit, | |
| 310 | + dns_search_suffixes: Iterable[default_edit_params.DNSSearchSuffix] | Omit = omit, | ||
| 305 | 311 | exclude: Iterable[SplitTunnelExcludeParam] | Omit = omit, | |
| 306 | 312 | exclude_office_ips: bool | Omit = omit, | |
| 307 | 313 | include: Iterable[SplitTunnelIncludeParam] | Omit = omit, | |
@@ -340,6 +346,9 @@ async def edit( | |||
| 340 | 346 | fall back to a best guess of the default/system DNS resolvers unless this policy | |
| 341 | 347 | option is set to `true`. | |
| 342 | 348 | ||
| 349 | + dns_search_suffixes: List of DNS search suffixes to apply to clients. Suffixes are evaluated in | ||
| 350 | + order. Use an empty array to clear. | ||
| 351 | + | ||
| 343 | 352 | exclude: List of routes excluded in the WARP client's tunnel. Both 'exclude' and | |
| 344 | 353 | 'include' cannot be set in the same request. | |
| 345 | 354 | ||
@@ -390,6 +399,7 @@ async def edit( | |||
| 390 | 399 | "auto_connect": auto_connect, | |
| 391 | 400 | "captive_portal": captive_portal, | |
| 392 | 401 | "disable_auto_fallback": disable_auto_fallback, | |
| 402 | + "dns_search_suffixes": dns_search_suffixes, | ||
| 393 | 403 | "exclude": exclude, | |
| 394 | 404 | "exclude_office_ips": exclude_office_ips, | |
| 395 | 405 | "include": include, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -131,7 +131,7 @@ def list( | |||
| 131 | 131 | account_id: str, | |
| 132 | 132 | page: float, | |
| 133 | 133 | per_page: float, | |
| 134 | - command_type: str | Omit = omit, | ||
| 134 | + command_type: Literal["pcap", "speed-test", "warp-diag"] | Omit = omit, | ||
| 135 | 135 | device_id: str | Omit = omit, | |
| 136 | 136 | from_: Union[str, datetime] | Omit = omit, | |
| 137 | 137 | status: Literal["PENDING_EXEC", "PENDING_UPLOAD", "SUCCESS", "FAILED"] | Omit = omit, | |
@@ -280,7 +280,7 @@ def list( | |||
| 280 | 280 | account_id: str, | |
| 281 | 281 | page: float, | |
| 282 | 282 | per_page: float, | |
| 283 | - command_type: str | Omit = omit, | ||
| 283 | + command_type: Literal["pcap", "speed-test", "warp-diag"] | Omit = omit, | ||
| 284 | 284 | device_id: str | Omit = omit, | |
| 285 | 285 | from_: Union[str, datetime] | Omit = omit, | |
| 286 | 286 | status: Literal["PENDING_EXEC", "PENDING_UPLOAD", "SUCCESS", "FAILED"] | Omit = omit, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -72,8 +72,22 @@ | |||
| 72 | 72 | PayloadLogsResourceWithStreamingResponse, | |
| 73 | 73 | AsyncPayloadLogsResourceWithStreamingResponse, | |
| 74 | 74 | ) | |
| 75 | + from .custom_prompt_topics import ( | ||
| 76 | + CustomPromptTopicsResource, | ||
| 77 | + AsyncCustomPromptTopicsResource, | ||
| 78 | + CustomPromptTopicsResourceWithRawResponse, | ||
| 79 | + AsyncCustomPromptTopicsResourceWithRawResponse, | ||
| 80 | + CustomPromptTopicsResourceWithStreamingResponse, | ||
| 81 | + AsyncCustomPromptTopicsResourceWithStreamingResponse, | ||
| 82 | + ) | ||
| 75 | 83 | ||
| 76 | 84 | __all__ = [ | |
| 85 | + "CustomPromptTopicsResource", | ||
| 86 | + "AsyncCustomPromptTopicsResource", | ||
| 87 | + "CustomPromptTopicsResourceWithRawResponse", | ||
| 88 | + "AsyncCustomPromptTopicsResourceWithRawResponse", | ||
| 89 | + "CustomPromptTopicsResourceWithStreamingResponse", | ||
| 90 | + "AsyncCustomPromptTopicsResourceWithStreamingResponse", | ||
| 77 | 91 | "DatasetsResource", | |
| 78 | 92 | "AsyncDatasetsResource", | |
| 79 | 93 | "DatasetsResourceWithRawResponse", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments