160 lines
4.2 KiB
Python
160 lines
4.2 KiB
Python
from __future__ import annotations
|
|
|
|
from .common import ApiErrorEnvelope, ApiErrorItem, Envelope, PaginationEnvelope
|
|
from .project import ProjectCreate, ProjectList, ProjectRead, ProjectUpdate
|
|
from .area import AreaCreate, AreaList, AreaRead, AreaUpdate
|
|
from .analysis import ChangeDetectionRequest, ChangeDetectionSummary
|
|
from .dataset import DatasetCreateResponse, DatasetList
|
|
from .detection import (
|
|
DetectionListResponse,
|
|
DetectionModelCapability,
|
|
DetectionModelsResponse,
|
|
DetectionQaRequest,
|
|
DetectionRead,
|
|
DetectionRunListResponse,
|
|
DetectionRunRead,
|
|
DetectionRunRequest,
|
|
DetectionRunResponse,
|
|
)
|
|
from .segmentation import (
|
|
SegmentationListResponse,
|
|
SegmentationModelCapability,
|
|
SegmentationModelsResponse,
|
|
SegmentationQaRequest,
|
|
SegmentationRead,
|
|
SegmentationRunListResponse,
|
|
SegmentationRunRead,
|
|
SegmentationRunRequest,
|
|
SegmentationRunResponse,
|
|
)
|
|
from .health import HealthResponse, SystemCapabilities
|
|
from .job import JobCreate, JobList, JobRead, JobStatus
|
|
from .external import (
|
|
ExternalFetchRequest,
|
|
ExternalFetchResponse,
|
|
ProviderCapabilitiesResponse,
|
|
ProviderCapabilityResponse,
|
|
ProviderImportRequest,
|
|
ProviderImportResponse,
|
|
ProviderLayersResponse,
|
|
ProviderStatusResponse,
|
|
)
|
|
from .export import (
|
|
ExportContentResponse,
|
|
ExportCreateResponse,
|
|
ExportListResponse,
|
|
ExportRead,
|
|
GeoJsonExportRequest,
|
|
MetadataExportRequest,
|
|
ReportExportRequest,
|
|
)
|
|
from .qa import QaProviderComparisonRequest, QaProviderComparisonResult
|
|
from .operations import (
|
|
RasterClipRequest,
|
|
RasterIndexBaseRequest,
|
|
RasterMetadataResponse,
|
|
RasterNdviRequest,
|
|
RasterNdwiRequest,
|
|
RasterNdbiRequest,
|
|
RasterOperationResult,
|
|
RasterPreviewResponse,
|
|
RasterReprojectRequest,
|
|
RasterReprojectResponse,
|
|
RasterStatsResponse,
|
|
RasterTileManifest,
|
|
RasterTileManifestTile,
|
|
RasterTileRequest,
|
|
RasterTileResponse,
|
|
VectorBBoxResponse,
|
|
VectorBufferRequest,
|
|
VectorClipRequest,
|
|
VectorIntersectRequest,
|
|
VectorOperationRequest,
|
|
VectorOperationResult,
|
|
VectorStatsRequest,
|
|
VectorStatsResponse,
|
|
)
|
|
|
|
__all__ = [
|
|
"Envelope",
|
|
"ApiErrorEnvelope",
|
|
"ApiErrorItem",
|
|
"PaginationEnvelope",
|
|
"ProjectCreate",
|
|
"ProjectRead",
|
|
"ProjectUpdate",
|
|
"ProjectList",
|
|
"AreaCreate",
|
|
"AreaRead",
|
|
"AreaUpdate",
|
|
"AreaList",
|
|
"ChangeDetectionRequest",
|
|
"ChangeDetectionSummary",
|
|
"DatasetCreateResponse",
|
|
"DatasetList",
|
|
"DetectionListResponse",
|
|
"DetectionModelCapability",
|
|
"DetectionModelsResponse",
|
|
"DetectionQaRequest",
|
|
"DetectionRead",
|
|
"DetectionRunListResponse",
|
|
"DetectionRunRead",
|
|
"DetectionRunRequest",
|
|
"DetectionRunResponse",
|
|
"SegmentationListResponse",
|
|
"SegmentationModelCapability",
|
|
"SegmentationModelsResponse",
|
|
"SegmentationQaRequest",
|
|
"SegmentationRead",
|
|
"SegmentationRunListResponse",
|
|
"SegmentationRunRead",
|
|
"SegmentationRunRequest",
|
|
"SegmentationRunResponse",
|
|
"HealthResponse",
|
|
"SystemCapabilities",
|
|
"JobCreate",
|
|
"JobList",
|
|
"JobRead",
|
|
"JobStatus",
|
|
"VectorBBoxResponse",
|
|
"VectorClipRequest",
|
|
"VectorBufferRequest",
|
|
"VectorIntersectRequest",
|
|
"VectorOperationRequest",
|
|
"VectorOperationResult",
|
|
"RasterClipRequest",
|
|
"RasterStatsResponse",
|
|
"RasterReprojectRequest",
|
|
"RasterReprojectResponse",
|
|
"RasterTileRequest",
|
|
"RasterMetadataResponse",
|
|
"RasterOperationResult",
|
|
"RasterPreviewResponse",
|
|
"RasterTileManifestTile",
|
|
"RasterTileManifest",
|
|
"RasterTileResponse",
|
|
"RasterIndexBaseRequest",
|
|
"RasterNdviRequest",
|
|
"RasterNdwiRequest",
|
|
"RasterNdbiRequest",
|
|
"VectorStatsRequest",
|
|
"VectorStatsResponse",
|
|
"ExternalFetchRequest",
|
|
"ExternalFetchResponse",
|
|
"ProviderCapabilitiesResponse",
|
|
"ProviderCapabilityResponse",
|
|
"ProviderImportRequest",
|
|
"ProviderImportResponse",
|
|
"ProviderLayersResponse",
|
|
"ProviderStatusResponse",
|
|
"GeoJsonExportRequest",
|
|
"MetadataExportRequest",
|
|
"ReportExportRequest",
|
|
"ExportRead",
|
|
"ExportCreateResponse",
|
|
"ExportListResponse",
|
|
"ExportContentResponse",
|
|
"QaProviderComparisonRequest",
|
|
"QaProviderComparisonResult",
|
|
]
|