-
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): update via SDK Studio (#473)
- Loading branch information
1 parent
b8e303b
commit 535bdb6
Showing
18 changed files
with
191 additions
and
167 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
142 changes: 71 additions & 71 deletions
142
src/cloudflare/resources/zero_trust/access/applications/applications.py
Large diffs are not rendered by default.
Oops, something went wrong.
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
4 changes: 2 additions & 2 deletions
4
...pes/zero_trust/access/allowed_headersh.py → ...ypes/zero_trust/access/allowed_headers.py
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,6 +1,6 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
|
||
__all__ = ["AllowedHeadersh"] | ||
__all__ = ["AllowedHeaders"] | ||
|
||
AllowedHeadersh = str | ||
AllowedHeaders = str |
9 changes: 9 additions & 0 deletions
9
src/cloudflare/types/zero_trust/access/allowed_http_methods.py
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,9 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing import List | ||
|
||
from .allowed_methods import AllowedMethods | ||
|
||
__all__ = ["AllowedHTTPMethods"] | ||
|
||
AllowedHTTPMethods = List[AllowedMethods] |
12 changes: 12 additions & 0 deletions
12
src/cloudflare/types/zero_trust/access/allowed_http_methods_param.py
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,12 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing import List | ||
from typing_extensions import Literal | ||
|
||
__all__ = ["AllowedMethods"] | ||
|
||
AllowedMethods = Literal["GET", "POST", "HEAD", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"] | ||
|
||
AllowedHTTPMethodsParam = List[AllowedMethods] |
4 changes: 2 additions & 2 deletions
4
.../types/zero_trust/access/allowed_idpsh.py → ...e/types/zero_trust/access/allowed_idps.py
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,6 +1,6 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
|
||
__all__ = ["AllowedIdpsh"] | ||
__all__ = ["AllowedIdPs"] | ||
|
||
AllowedIdpsh = str | ||
AllowedIdPs = str |
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,7 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing_extensions import Literal | ||
|
||
__all__ = ["AllowedMethods"] | ||
|
||
AllowedMethods = Literal["GET", "POST", "HEAD", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"] |
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...pes/zero_trust/access/allowed_originsh.py → ...ypes/zero_trust/access/allowed_origins.py
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,6 +1,6 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
|
||
__all__ = ["AllowedOriginsh"] | ||
__all__ = ["AllowedOrigins"] | ||
|
||
AllowedOriginsh = str | ||
AllowedOrigins = str |
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
Oops, something went wrong.