-
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 (#164)
- Loading branch information
1 parent
6cd110d
commit 2b4599c
Showing
15 changed files
with
142 additions
and
115 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
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
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
27 changes: 23 additions & 4 deletions
27
src/cloudflare/types/intel/indicator_feed_list_response.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,9 +1,28 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing import List | ||
from typing import List, Optional | ||
from datetime import datetime | ||
|
||
from .intel_indicator_feed_item import IntelIndicatorFeedItem | ||
from ..._models import BaseModel | ||
|
||
__all__ = ["IndicatorFeedListResponse"] | ||
__all__ = ["IndicatorFeedListResponse", "IndicatorFeedListResponseItem"] | ||
|
||
IndicatorFeedListResponse = List[IntelIndicatorFeedItem] | ||
|
||
class IndicatorFeedListResponseItem(BaseModel): | ||
id: Optional[int] = None | ||
"""The unique identifier for the indicator feed""" | ||
|
||
created_on: Optional[datetime] = None | ||
"""The date and time when the data entry was created""" | ||
|
||
description: Optional[str] = None | ||
"""The description of the example test""" | ||
|
||
modified_on: Optional[datetime] = None | ||
"""The date and time when the data entry was last modified""" | ||
|
||
name: Optional[str] = None | ||
"""The name of the indicator feed""" | ||
|
||
|
||
IndicatorFeedListResponse = List[IndicatorFeedListResponseItem] |
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
18 changes: 0 additions & 18 deletions
18
src/cloudflare/types/intel/indicator_feeds/intel_permission_list_item.py
This file was deleted.
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
Oops, something went wrong.