mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-17 07:10:37 +00:00
feat(api): OpenAPI spec update via Stainless API (#1016)
This commit is contained in:
parent
f9b879a727
commit
b762e85608
117 changed files with 197 additions and 173 deletions
|
|
@ -1,2 +1,2 @@
|
|||
configured_endpoints: 1348
|
||||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-9d1a5f2de8e753867ab88ca1b88d1d1cdc944a7834fb81506a7ace10ed151624.yml
|
||||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-dfb8d2c58c029167d6eb04131ff40df5631570c1bc49279bc148b2331fa68dee.yml
|
||||
|
|
|
|||
2
api.md
2
api.md
|
|
@ -6561,7 +6561,7 @@ Methods:
|
|||
|
||||
- <code title="get /radar/datasets">client.radar.datasets.<a href="./src/cloudflare/resources/radar/datasets.py">list</a>(\*\*<a href="src/cloudflare/types/radar/dataset_list_params.py">params</a>) -> <a href="./src/cloudflare/types/radar/dataset_list_response.py">DatasetListResponse</a></code>
|
||||
- <code title="post /radar/datasets/download">client.radar.datasets.<a href="./src/cloudflare/resources/radar/datasets.py">download</a>(\*\*<a href="src/cloudflare/types/radar/dataset_download_params.py">params</a>) -> <a href="./src/cloudflare/types/radar/dataset_download_response.py">DatasetDownloadResponse</a></code>
|
||||
- <code title="get /radar/datasets/{alias}">client.radar.datasets.<a href="./src/cloudflare/resources/radar/datasets.py">get</a>(alias, \*\*<a href="src/cloudflare/types/radar/dataset_get_params.py">params</a>) -> str</code>
|
||||
- <code title="get /radar/datasets/{alias}">client.radar.datasets.<a href="./src/cloudflare/resources/radar/datasets.py">get</a>(alias) -> str</code>
|
||||
|
||||
## DNS
|
||||
|
||||
|
|
|
|||
|
|
@ -87,6 +87,7 @@ class TopResource(SyncAPIResource):
|
|||
limit_per_location: int | NotGiven = NOT_GIVEN,
|
||||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"] | NotGiven = NOT_GIVEN,
|
||||
protocol: List[Literal["UDP", "TCP", "ICMP", "GRE"]] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
|
|
@ -134,6 +135,9 @@ class TopResource(SyncAPIResource):
|
|||
|
||||
name: Array of names that will be used to name the series in responses.
|
||||
|
||||
normalization: Normalization method applied. Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
|
||||
protocol: Array of L3/4 attack types.
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
|
@ -164,6 +168,7 @@ class TopResource(SyncAPIResource):
|
|||
"limit_per_location": limit_per_location,
|
||||
"location": location,
|
||||
"name": name,
|
||||
"normalization": normalization,
|
||||
"protocol": protocol,
|
||||
},
|
||||
top_attacks_params.TopAttacksParams,
|
||||
|
|
@ -428,6 +433,7 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
limit_per_location: int | NotGiven = NOT_GIVEN,
|
||||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"] | NotGiven = NOT_GIVEN,
|
||||
protocol: List[Literal["UDP", "TCP", "ICMP", "GRE"]] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
|
|
@ -475,6 +481,9 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
|
||||
name: Array of names that will be used to name the series in responses.
|
||||
|
||||
normalization: Normalization method applied. Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
|
||||
protocol: Array of L3/4 attack types.
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
|
@ -505,6 +514,7 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
"limit_per_location": limit_per_location,
|
||||
"location": location,
|
||||
"name": name,
|
||||
"normalization": normalization,
|
||||
"protocol": protocol,
|
||||
},
|
||||
top_attacks_params.TopAttacksParams,
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ class TopResource(SyncAPIResource):
|
|||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
magnitude: Literal["AFFECTED_ZONES", "MITIGATED_REQUESTS"] | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
extra_headers: Headers | None = None,
|
||||
|
|
@ -152,6 +153,9 @@ class TopResource(SyncAPIResource):
|
|||
|
||||
name: Array of names that will be used to name the series in responses.
|
||||
|
||||
normalization: Normalization method applied. Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
||||
extra_query: Add additional query parameters to the request
|
||||
|
|
@ -181,6 +185,7 @@ class TopResource(SyncAPIResource):
|
|||
"location": location,
|
||||
"magnitude": magnitude,
|
||||
"name": name,
|
||||
"normalization": normalization,
|
||||
},
|
||||
top_attacks_params.TopAttacksParams,
|
||||
),
|
||||
|
|
@ -445,6 +450,7 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
magnitude: Literal["AFFECTED_ZONES", "MITIGATED_REQUESTS"] | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
extra_headers: Headers | None = None,
|
||||
|
|
@ -497,6 +503,9 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
|
||||
name: Array of names that will be used to name the series in responses.
|
||||
|
||||
normalization: Normalization method applied. Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
||||
extra_query: Add additional query parameters to the request
|
||||
|
|
@ -526,6 +535,7 @@ class AsyncTopResource(AsyncAPIResource):
|
|||
"location": location,
|
||||
"magnitude": magnitude,
|
||||
"name": name,
|
||||
"normalization": normalization,
|
||||
},
|
||||
top_attacks_params.TopAttacksParams,
|
||||
),
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Type, Optional, cast
|
||||
from typing import Type, cast
|
||||
from typing_extensions import Literal
|
||||
|
||||
import httpx
|
||||
|
|
@ -21,7 +21,7 @@ from ..._response import (
|
|||
async_to_streamed_response_wrapper,
|
||||
)
|
||||
from ..._wrappers import ResultWrapper
|
||||
from ...types.radar import dataset_get_params, dataset_list_params, dataset_download_params
|
||||
from ...types.radar import dataset_list_params, dataset_download_params
|
||||
from ..._base_client import (
|
||||
make_request_options,
|
||||
)
|
||||
|
|
@ -139,7 +139,6 @@ class DatasetsResource(SyncAPIResource):
|
|||
self,
|
||||
alias: str,
|
||||
*,
|
||||
date: Optional[str] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
extra_headers: Headers | None = None,
|
||||
|
|
@ -156,8 +155,6 @@ class DatasetsResource(SyncAPIResource):
|
|||
Args:
|
||||
alias: Dataset alias or id
|
||||
|
||||
date: Filter dataset alias by date
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
||||
extra_query: Add additional query parameters to the request
|
||||
|
|
@ -172,11 +169,7 @@ class DatasetsResource(SyncAPIResource):
|
|||
return self._get(
|
||||
f"/radar/datasets/{alias}",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers,
|
||||
extra_query=extra_query,
|
||||
extra_body=extra_body,
|
||||
timeout=timeout,
|
||||
query=maybe_transform({"date": date}, dataset_get_params.DatasetGetParams),
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
cast_to=str,
|
||||
)
|
||||
|
|
@ -290,7 +283,6 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|||
self,
|
||||
alias: str,
|
||||
*,
|
||||
date: Optional[str] | NotGiven = NOT_GIVEN,
|
||||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
||||
# The extra values given here take precedence over values defined on the client or passed to this method.
|
||||
extra_headers: Headers | None = None,
|
||||
|
|
@ -307,8 +299,6 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|||
Args:
|
||||
alias: Dataset alias or id
|
||||
|
||||
date: Filter dataset alias by date
|
||||
|
||||
extra_headers: Send extra headers
|
||||
|
||||
extra_query: Add additional query parameters to the request
|
||||
|
|
@ -323,11 +313,7 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|||
return await self._get(
|
||||
f"/radar/datasets/{alias}",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers,
|
||||
extra_query=extra_query,
|
||||
extra_body=extra_body,
|
||||
timeout=timeout,
|
||||
query=await async_maybe_transform({"date": date}, dataset_get_params.DatasetGetParams),
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
cast_to=str,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import List, Type, Optional, cast
|
||||
from typing import List, Type, cast
|
||||
from typing_extensions import Literal
|
||||
|
||||
import httpx
|
||||
|
|
@ -43,7 +43,7 @@ class DomainResource(SyncAPIResource):
|
|||
self,
|
||||
domain: str,
|
||||
*,
|
||||
date: List[Optional[str]] | NotGiven = NOT_GIVEN,
|
||||
date: List[str] | NotGiven = NOT_GIVEN,
|
||||
format: Literal["JSON", "CSV"] | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
|
|
@ -119,7 +119,7 @@ class AsyncDomainResource(AsyncAPIResource):
|
|||
self,
|
||||
domain: str,
|
||||
*,
|
||||
date: List[Optional[str]] | NotGiven = NOT_GIVEN,
|
||||
date: List[str] | NotGiven = NOT_GIVEN,
|
||||
format: Literal["JSON", "CSV"] | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
name: List[str] | NotGiven = NOT_GIVEN,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import List, Type, Union, Optional, cast
|
||||
from typing import List, Type, Union, cast
|
||||
from datetime import datetime
|
||||
from typing_extensions import Literal
|
||||
|
||||
|
|
@ -153,7 +153,7 @@ class RankingResource(SyncAPIResource):
|
|||
def top(
|
||||
self,
|
||||
*,
|
||||
date: List[Optional[str]] | NotGiven = NOT_GIVEN,
|
||||
date: List[str] | NotGiven = NOT_GIVEN,
|
||||
format: Literal["JSON", "CSV"] | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
|
|
@ -331,7 +331,7 @@ class AsyncRankingResource(AsyncAPIResource):
|
|||
async def top(
|
||||
self,
|
||||
*,
|
||||
date: List[Optional[str]] | NotGiven = NOT_GIVEN,
|
||||
date: List[str] | NotGiven = NOT_GIVEN,
|
||||
format: Literal["JSON", "CSV"] | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
location: List[str] | NotGiven = NOT_GIVEN,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from .entity_get_params import EntityGetParams as EntityGetParams
|
||||
from .dataset_get_params import DatasetGetParams as DatasetGetParams
|
||||
from .radar_email_series import RadarEmailSeries as RadarEmailSeries
|
||||
from .ranking_top_params import RankingTopParams as RankingTopParams
|
||||
from .dataset_list_params import DatasetListParams as DatasetListParams
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -85,5 +85,12 @@ class TopAttacksParams(TypedDict, total=False):
|
|||
name: List[str]
|
||||
"""Array of names that will be used to name the series in responses."""
|
||||
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"]
|
||||
"""Normalization method applied.
|
||||
|
||||
Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
"""
|
||||
|
||||
protocol: List[Literal["UDP", "TCP", "ICMP", "GRE"]]
|
||||
"""Array of L3/4 attack types."""
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -94,3 +94,10 @@ class TopAttacksParams(TypedDict, total=False):
|
|||
|
||||
name: List[str]
|
||||
"""Array of names that will be used to name the series in responses."""
|
||||
|
||||
normalization: Literal["PERCENTAGE", "MIN_MAX"]
|
||||
"""Normalization method applied.
|
||||
|
||||
Refer to
|
||||
[Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -69,10 +69,19 @@ class AseGetParams(TypedDict, total=False):
|
|||
"""Array of BGP update types."""
|
||||
|
||||
|
||||
class Prefix(TypedDict, total=False):
|
||||
location: Required[str]
|
||||
_PrefixReservedKeywords = TypedDict(
|
||||
"_PrefixReservedKeywords",
|
||||
{
|
||||
"in": str,
|
||||
},
|
||||
total=False,
|
||||
)
|
||||
|
||||
|
||||
class Prefix(_PrefixReservedKeywords, total=False):
|
||||
name: Required[str]
|
||||
|
||||
test: Required[float]
|
||||
|
||||
type: str
|
||||
"""Network prefix, IPv4 or IPv6."""
|
||||
|
|
|
|||
|
|
@ -73,10 +73,19 @@ class BGPTimeseriesParams(TypedDict, total=False):
|
|||
"""Array of BGP update types."""
|
||||
|
||||
|
||||
class Prefix(TypedDict, total=False):
|
||||
location: Required[str]
|
||||
_PrefixReservedKeywords = TypedDict(
|
||||
"_PrefixReservedKeywords",
|
||||
{
|
||||
"in": str,
|
||||
},
|
||||
total=False,
|
||||
)
|
||||
|
||||
|
||||
class Prefix(_PrefixReservedKeywords, total=False):
|
||||
name: Required[str]
|
||||
|
||||
test: Required[float]
|
||||
|
||||
type: str
|
||||
"""Network prefix, IPv4 or IPv6."""
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Optional
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
__all__ = ["DatasetGetParams"]
|
||||
|
||||
|
||||
class DatasetGetParams(TypedDict, total=False):
|
||||
date: Optional[str]
|
||||
"""Filter dataset alias by date"""
|
||||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class MetaConfidenceInfoAnnotation(BaseModel):
|
|||
|
||||
event_type: str = FieldInfo(alias="eventType")
|
||||
|
||||
is_instantaneous: object = FieldInfo(alias="isInstantaneous")
|
||||
is_instantaneous: bool = FieldInfo(alias="isInstantaneous")
|
||||
|
||||
end_time: Optional[datetime] = FieldInfo(alias="endTime", default=None)
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue