Index
armis_sdk.entities.data_export.data_export.DataExport
Bases: BaseModel
The DataExport entity represents the data export of an entity.
Attributes:
| Name | Type | Description |
|---|---|---|
enabled |
bool
|
Whether the entity is enabled or not for data export. |
file_format |
Literal['parquet']
|
The file format of the URLs. |
urls |
list[str]
|
URLs to the files that contain the exported data. |
urls_creation_time |
datetime | None
|
The creation time of the URLs. |
enabled
instance-attribute
Whether the entity is enabled or not for data export.
file_format = 'parquet'
class-attribute
instance-attribute
The file format of the URLs.
Currently the only supported format is parquet.
urls
instance-attribute
URLs to the files that contain the exported data.
urls_creation_time = Field(strict=False)
class-attribute
instance-attribute
The creation time of the URLs.