File tree Expand file tree Collapse file tree
src/cloudflare/types/zero_trust/gateway Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11configured_endpoints : 1777
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a4f690382f570f545a035c6a1c0e0e77ec55d8070a52f245dc46b069fb3c6009 .yml
3- openapi_spec_hash : 7fb90352e3acc8b7bad0718ec46e6c30
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-d07750284af5d32083cde2ea5f50c31f1d02b2eaf1b549fd5038ebc4e04aac3e .yml
3+ openapi_spec_hash : c0969d735c1e7c616d8bece6c9954bfc
44config_hash : a35e9eb0436652c704bebf7c0a38085b
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3- from typing import Optional
4-
53from ...._models import BaseModel
64from .doh_endpoint import DOHEndpoint
75from .dot_endpoint import DOTEndpoint
1210
1311
1412class Endpoint (BaseModel ):
15- doh : Optional [ DOHEndpoint ] = None
13+ doh : DOHEndpoint
1614
17- dot : Optional [ DOTEndpoint ] = None
15+ dot : DOTEndpoint
1816
19- ipv4 : Optional [ IPV4Endpoint ] = None
17+ ipv4 : IPV4Endpoint
2018
21- ipv6 : Optional [ IPV6Endpoint ] = None
19+ ipv6 : IPV6Endpoint
Original file line number Diff line number Diff line change 22
33from __future__ import annotations
44
5- from typing_extensions import TypedDict
5+ from typing_extensions import Required , TypedDict
66
77from .doh_endpoint_param import DOHEndpointParam
88from .dot_endpoint_param import DOTEndpointParam
1313
1414
1515class EndpointParam (TypedDict , total = False ):
16- doh : DOHEndpointParam
16+ doh : Required [ DOHEndpointParam ]
1717
18- dot : DOTEndpointParam
18+ dot : Required [ DOTEndpointParam ]
1919
20- ipv4 : IPV4EndpointParam
20+ ipv4 : Required [ IPV4EndpointParam ]
2121
22- ipv6 : IPV6EndpointParam
22+ ipv6 : Required [ IPV6EndpointParam ]
You can’t perform that action at this time.
0 commit comments