@aws-sdk/client-iotsitewise 3.1096.0 → 3.1098.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +315 -0
- package/dist-cjs/index.js +2189 -237
- package/dist-es/IoTSiteWise.js +118 -0
- package/dist-es/commands/BatchAssociateDataSegmentsToDatasetCommand.js +4 -0
- package/dist-es/commands/BatchDeleteDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/BatchDisassociateDataSegmentsFromDatasetCommand.js +4 -0
- package/dist-es/commands/CancelEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CancelPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/CancelQueryCommand.js +4 -0
- package/dist-es/commands/CreateApplicationCommand.js +4 -0
- package/dist-es/commands/CreateDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/CreateEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CreatePipelineCommand.js +4 -0
- package/dist-es/commands/CreateTaskCommand.js +4 -0
- package/dist-es/commands/CreateWorkspaceCommand.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +4 -0
- package/dist-es/commands/DeletePipelineCommand.js +4 -0
- package/dist-es/commands/DeleteTaskCommand.js +4 -0
- package/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
- package/dist-es/commands/DescribeApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/DescribeEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/DescribePipelineCommand.js +4 -0
- package/dist-es/commands/DescribePipelineExecutionCommand.js +4 -0
- package/dist-es/commands/DescribeQueryCommand.js +4 -0
- package/dist-es/commands/DescribeSearchCommand.js +4 -0
- package/dist-es/commands/DescribeTaskCommand.js +4 -0
- package/dist-es/commands/DescribeWorkspaceCommand.js +4 -0
- package/dist-es/commands/GetCaptureDataCommand.js +4 -0
- package/dist-es/commands/GetQueryResultsCommand.js +4 -0
- package/dist-es/commands/GetSearchResultsCommand.js +4 -0
- package/dist-es/commands/ListApplicationsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentRelationshipsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/ListDatasetExportJobsCommand.js +4 -0
- package/dist-es/commands/ListEnrichmentJobsCommand.js +4 -0
- package/dist-es/commands/ListPipelineExecutionsCommand.js +4 -0
- package/dist-es/commands/ListPipelinesCommand.js +4 -0
- package/dist-es/commands/ListQueriesCommand.js +4 -0
- package/dist-es/commands/ListSearchesCommand.js +4 -0
- package/dist-es/commands/ListTasksCommand.js +4 -0
- package/dist-es/commands/ListWorkspacesCommand.js +4 -0
- package/dist-es/commands/StartPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/StartQueryCommand.js +4 -0
- package/dist-es/commands/StartSearchCommand.js +4 -0
- package/dist-es/commands/UpdatePipelineCommand.js +4 -0
- package/dist-es/commands/UpdateTaskCommand.js +4 -0
- package/dist-es/commands/UpdateWorkspaceCommand.js +4 -0
- package/dist-es/commands/index.js +45 -0
- package/dist-es/models/enums.js +157 -3
- package/dist-es/pagination/DescribePipelineExecutionPaginator.js +4 -0
- package/dist-es/pagination/GetQueryResultsPaginator.js +4 -0
- package/dist-es/pagination/GetSearchResultsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetExportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListEnrichmentJobsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelinesPaginator.js +4 -0
- package/dist-es/pagination/ListQueriesPaginator.js +4 -0
- package/dist-es/pagination/ListSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListTasksPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +14 -0
- package/dist-es/schemas/schemas_0.js +1544 -233
- package/dist-types/IoTSiteWise.d.ts +415 -0
- package/dist-types/IoTSiteWiseClient.d.ts +47 -2
- package/dist-types/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +133 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +125 -0
- package/dist-types/commands/CancelEnrichmentJobCommand.d.ts +124 -0
- package/dist-types/commands/CancelPipelineExecutionCommand.d.ts +103 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +96 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +111 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +28 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -3
- package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +141 -0
- package/dist-types/commands/CreateEnrichmentJobCommand.d.ts +147 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +136 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +133 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +119 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +93 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +104 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +103 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +103 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +100 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +23 -3
- package/dist-types/commands/DescribeDatasetCommand.d.ts +27 -2
- package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +138 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEnrichmentJobCommand.d.ts +151 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +4 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +120 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +156 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +100 -0
- package/dist-types/commands/DescribeSearchCommand.d.ts +102 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +120 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +4 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCaptureDataCommand.d.ts +116 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +104 -0
- package/dist-types/commands/GetSearchResultsCommand.d.ts +118 -0
- package/dist-types/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +2 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +4 -1
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +107 -0
- package/dist-types/commands/ListDatasetDataSegmentsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -2
- package/dist-types/commands/ListEnrichmentJobsCommand.d.ts +151 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +126 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +109 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +101 -0
- package/dist-types/commands/ListSearchesCommand.d.ts +119 -0
- package/dist-types/commands/ListTasksCommand.d.ts +109 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +103 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +118 -0
- package/dist-types/commands/StartQueryCommand.d.ts +97 -0
- package/dist-types/commands/StartSearchCommand.d.ts +131 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +3 -2
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +21 -2
- package/dist-types/commands/UpdatePipelineCommand.d.ts +127 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +7 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +120 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +45 -0
- package/dist-types/models/enums.d.ts +350 -4
- package/dist-types/models/models_0.d.ts +2607 -2755
- package/dist-types/models/models_1.d.ts +4139 -33
- package/dist-types/pagination/DescribePipelineExecutionPaginator.d.ts +7 -0
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/GetSearchResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetExportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnrichmentJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQueriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +14 -0
- package/dist-types/schemas/schemas_0.d.ts +190 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +841 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +248 -2
- package/dist-types/ts3.4/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelPipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateDatasetExportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeDatasetExportJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCaptureDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSearchResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListBulkImportJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetExportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnrichmentJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSearchesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +45 -0
- package/dist-types/ts3.4/models/enums.d.ts +188 -4
- package/dist-types/ts3.4/models/models_0.d.ts +550 -614
- package/dist-types/ts3.4/models/models_1.d.ts +1048 -4
- package/dist-types/ts3.4/pagination/DescribePipelineExecutionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetSearchResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetExportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnrichmentJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -0
- package/package.json +6 -6
|
@@ -39,16 +39,32 @@ export declare const AggregateType: {
|
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
41
|
export type AggregateType = (typeof AggregateType)[keyof typeof AggregateType];
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* @enum
|
|
45
|
+
*/
|
|
46
|
+
export declare const ApplicationStatus: {
|
|
47
|
+
readonly ACTIVE: "ACTIVE";
|
|
48
|
+
readonly CREATING: "CREATING";
|
|
49
|
+
readonly DELETING: "DELETING";
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
42
55
|
/**
|
|
43
56
|
* @public
|
|
44
57
|
* @enum
|
|
45
58
|
*/
|
|
46
59
|
export declare const PropertyDataType: {
|
|
60
|
+
readonly ANNOTATION: "ANNOTATION";
|
|
47
61
|
readonly BOOLEAN: "BOOLEAN";
|
|
48
62
|
readonly DOUBLE: "DOUBLE";
|
|
49
63
|
readonly INTEGER: "INTEGER";
|
|
64
|
+
readonly JSON: "JSON";
|
|
50
65
|
readonly STRING: "STRING";
|
|
51
66
|
readonly STRUCT: "STRUCT";
|
|
67
|
+
readonly VIDEO: "VIDEO";
|
|
52
68
|
};
|
|
53
69
|
/**
|
|
54
70
|
* @public
|
|
@@ -219,6 +235,21 @@ export declare const AuthMode: {
|
|
|
219
235
|
* @public
|
|
220
236
|
*/
|
|
221
237
|
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const DataSegmentErrorCode: {
|
|
243
|
+
readonly CONFLICTING_OPERATION: "CONFLICTING_OPERATION";
|
|
244
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
245
|
+
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
246
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
247
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type DataSegmentErrorCode = (typeof DataSegmentErrorCode)[keyof typeof DataSegmentErrorCode];
|
|
222
253
|
/**
|
|
223
254
|
* @public
|
|
224
255
|
* @enum
|
|
@@ -301,6 +332,54 @@ export declare const BatchPutAssetPropertyValueErrorCode: {
|
|
|
301
332
|
* @public
|
|
302
333
|
*/
|
|
303
334
|
export type BatchPutAssetPropertyValueErrorCode = (typeof BatchPutAssetPropertyValueErrorCode)[keyof typeof BatchPutAssetPropertyValueErrorCode];
|
|
335
|
+
/**
|
|
336
|
+
* @public
|
|
337
|
+
* @enum
|
|
338
|
+
*/
|
|
339
|
+
export declare const EnrichmentJobStatus: {
|
|
340
|
+
readonly CANCELLED: "CANCELLED";
|
|
341
|
+
readonly COMPLETED: "COMPLETED";
|
|
342
|
+
readonly FAILED: "FAILED";
|
|
343
|
+
readonly PENDING: "PENDING";
|
|
344
|
+
readonly RUNNING: "RUNNING";
|
|
345
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
346
|
+
};
|
|
347
|
+
/**
|
|
348
|
+
* @public
|
|
349
|
+
*/
|
|
350
|
+
export type EnrichmentJobStatus = (typeof EnrichmentJobStatus)[keyof typeof EnrichmentJobStatus];
|
|
351
|
+
/**
|
|
352
|
+
* @public
|
|
353
|
+
* @enum
|
|
354
|
+
*/
|
|
355
|
+
export declare const PipelineExecutionState: {
|
|
356
|
+
readonly CANCELLED: "CANCELLED";
|
|
357
|
+
readonly CANCELLING: "CANCELLING";
|
|
358
|
+
readonly FAILED: "FAILED";
|
|
359
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
360
|
+
readonly RUNNING: "RUNNING";
|
|
361
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
362
|
+
};
|
|
363
|
+
/**
|
|
364
|
+
* @public
|
|
365
|
+
*/
|
|
366
|
+
export type PipelineExecutionState = (typeof PipelineExecutionState)[keyof typeof PipelineExecutionState];
|
|
367
|
+
/**
|
|
368
|
+
* @public
|
|
369
|
+
* @enum
|
|
370
|
+
*/
|
|
371
|
+
export declare const QueryStatus: {
|
|
372
|
+
readonly CANCELED: "CANCELED";
|
|
373
|
+
readonly CANCELING: "CANCELING";
|
|
374
|
+
readonly COMPLETED: "COMPLETED";
|
|
375
|
+
readonly FAILED: "FAILED";
|
|
376
|
+
readonly RUNNING: "RUNNING";
|
|
377
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
378
|
+
};
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
|
|
304
383
|
/**
|
|
305
384
|
* @public
|
|
306
385
|
* @enum
|
|
@@ -356,6 +435,7 @@ export type ComputationModelState = (typeof ComputationModelState)[keyof typeof
|
|
|
356
435
|
*/
|
|
357
436
|
export declare const DatasetSourceFormat: {
|
|
358
437
|
readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
|
|
438
|
+
readonly TIMESERIES: "TIMESERIES";
|
|
359
439
|
};
|
|
360
440
|
/**
|
|
361
441
|
* @public
|
|
@@ -367,11 +447,25 @@ export type DatasetSourceFormat = (typeof DatasetSourceFormat)[keyof typeof Data
|
|
|
367
447
|
*/
|
|
368
448
|
export declare const DatasetSourceType: {
|
|
369
449
|
readonly KENDRA: "KENDRA";
|
|
450
|
+
readonly SITEWISE: "SITEWISE";
|
|
370
451
|
};
|
|
371
452
|
/**
|
|
372
453
|
* @public
|
|
373
454
|
*/
|
|
374
455
|
export type DatasetSourceType = (typeof DatasetSourceType)[keyof typeof DatasetSourceType];
|
|
456
|
+
/**
|
|
457
|
+
* @public
|
|
458
|
+
* @enum
|
|
459
|
+
*/
|
|
460
|
+
export declare const DatasetTypeEnum: {
|
|
461
|
+
readonly CURATED: "CURATED";
|
|
462
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
463
|
+
readonly SESSION: "SESSION";
|
|
464
|
+
};
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
export type DatasetTypeEnum = (typeof DatasetTypeEnum)[keyof typeof DatasetTypeEnum];
|
|
375
469
|
/**
|
|
376
470
|
* @public
|
|
377
471
|
* @enum
|
|
@@ -387,6 +481,19 @@ export declare const DatasetState: {
|
|
|
387
481
|
* @public
|
|
388
482
|
*/
|
|
389
483
|
export type DatasetState = (typeof DatasetState)[keyof typeof DatasetState];
|
|
484
|
+
/**
|
|
485
|
+
* @public
|
|
486
|
+
* @enum
|
|
487
|
+
*/
|
|
488
|
+
export declare const ExportDataType: {
|
|
489
|
+
readonly ANNOTATION: "ANNOTATION";
|
|
490
|
+
readonly TELEMETRY: "TELEMETRY";
|
|
491
|
+
readonly VIDEO: "VIDEO";
|
|
492
|
+
};
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
*/
|
|
496
|
+
export type ExportDataType = (typeof ExportDataType)[keyof typeof ExportDataType];
|
|
390
497
|
/**
|
|
391
498
|
* @public
|
|
392
499
|
* @enum
|
|
@@ -400,6 +507,33 @@ export declare const CoreDeviceOperatingSystem: {
|
|
|
400
507
|
* @public
|
|
401
508
|
*/
|
|
402
509
|
export type CoreDeviceOperatingSystem = (typeof CoreDeviceOperatingSystem)[keyof typeof CoreDeviceOperatingSystem];
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
* @enum
|
|
513
|
+
*/
|
|
514
|
+
export declare const ResourceErrorCode: {
|
|
515
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
516
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
517
|
+
};
|
|
518
|
+
/**
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
export type ResourceErrorCode = (typeof ResourceErrorCode)[keyof typeof ResourceErrorCode];
|
|
522
|
+
/**
|
|
523
|
+
* @public
|
|
524
|
+
* @enum
|
|
525
|
+
*/
|
|
526
|
+
export declare const ResourceState: {
|
|
527
|
+
readonly ACTIVE: "ACTIVE";
|
|
528
|
+
readonly CREATING: "CREATING";
|
|
529
|
+
readonly DELETING: "DELETING";
|
|
530
|
+
readonly FAILED: "FAILED";
|
|
531
|
+
readonly UPDATING: "UPDATING";
|
|
532
|
+
};
|
|
533
|
+
/**
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
export type ResourceState = (typeof ResourceState)[keyof typeof ResourceState];
|
|
403
537
|
/**
|
|
404
538
|
* @public
|
|
405
539
|
* @enum
|
|
@@ -452,6 +586,69 @@ export declare const PortalState: {
|
|
|
452
586
|
* @public
|
|
453
587
|
*/
|
|
454
588
|
export type PortalState = (typeof PortalState)[keyof typeof PortalState];
|
|
589
|
+
/**
|
|
590
|
+
* @public
|
|
591
|
+
* @enum
|
|
592
|
+
*/
|
|
593
|
+
export declare const ProcessingType: {
|
|
594
|
+
readonly GENERIC_COMPUTE_PROCESSING: "GENERIC_COMPUTE_PROCESSING";
|
|
595
|
+
readonly HARDWARE_ACCELERATED_PROCESSING: "HARDWARE_ACCELERATED_PROCESSING";
|
|
596
|
+
};
|
|
597
|
+
/**
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
export type ProcessingType = (typeof ProcessingType)[keyof typeof ProcessingType];
|
|
601
|
+
/**
|
|
602
|
+
* @public
|
|
603
|
+
* @enum
|
|
604
|
+
*/
|
|
605
|
+
export declare const ProcessingUnit: {
|
|
606
|
+
readonly UNITS_12: "UNITS_12";
|
|
607
|
+
readonly UNITS_16: "UNITS_16";
|
|
608
|
+
readonly UNITS_2: "UNITS_2";
|
|
609
|
+
readonly UNITS_24: "UNITS_24";
|
|
610
|
+
readonly UNITS_32: "UNITS_32";
|
|
611
|
+
readonly UNITS_36: "UNITS_36";
|
|
612
|
+
readonly UNITS_4: "UNITS_4";
|
|
613
|
+
readonly UNITS_48: "UNITS_48";
|
|
614
|
+
readonly UNITS_60: "UNITS_60";
|
|
615
|
+
readonly UNITS_64: "UNITS_64";
|
|
616
|
+
readonly UNITS_72: "UNITS_72";
|
|
617
|
+
readonly UNITS_8: "UNITS_8";
|
|
618
|
+
readonly UNITS_84: "UNITS_84";
|
|
619
|
+
readonly UNITS_96: "UNITS_96";
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
export type ProcessingUnit = (typeof ProcessingUnit)[keyof typeof ProcessingUnit];
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
* @enum
|
|
628
|
+
*/
|
|
629
|
+
export declare const EncryptionType: {
|
|
630
|
+
readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
|
|
631
|
+
readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
* @enum
|
|
640
|
+
*/
|
|
641
|
+
export declare const WorkspaceState: {
|
|
642
|
+
readonly ACTIVE: "ACTIVE";
|
|
643
|
+
readonly CREATING: "CREATING";
|
|
644
|
+
readonly DELETING: "DELETING";
|
|
645
|
+
readonly FAILED: "FAILED";
|
|
646
|
+
readonly UPDATING: "UPDATING";
|
|
647
|
+
};
|
|
648
|
+
/**
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
export type WorkspaceState = (typeof WorkspaceState)[keyof typeof WorkspaceState];
|
|
455
652
|
/**
|
|
456
653
|
* @public
|
|
457
654
|
* @enum
|
|
@@ -463,6 +660,34 @@ export declare const ResolveToResourceType: {
|
|
|
463
660
|
* @public
|
|
464
661
|
*/
|
|
465
662
|
export type ResolveToResourceType = (typeof ResolveToResourceType)[keyof typeof ResolveToResourceType];
|
|
663
|
+
/**
|
|
664
|
+
* @public
|
|
665
|
+
* @enum
|
|
666
|
+
*/
|
|
667
|
+
export declare const DatasetEnrichmentStatus: {
|
|
668
|
+
readonly FULLY_ENRICHED: "FULLY_ENRICHED";
|
|
669
|
+
readonly NOT_ENRICHED: "NOT_ENRICHED";
|
|
670
|
+
readonly PARTIALLY_ENRICHED: "PARTIALLY_ENRICHED";
|
|
671
|
+
};
|
|
672
|
+
/**
|
|
673
|
+
* @public
|
|
674
|
+
*/
|
|
675
|
+
export type DatasetEnrichmentStatus = (typeof DatasetEnrichmentStatus)[keyof typeof DatasetEnrichmentStatus];
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
* @enum
|
|
679
|
+
*/
|
|
680
|
+
export declare const DatasetExportJobStatus: {
|
|
681
|
+
readonly COMPLETED: "COMPLETED";
|
|
682
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
683
|
+
readonly FAILED: "FAILED";
|
|
684
|
+
readonly RUNNING: "RUNNING";
|
|
685
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
686
|
+
};
|
|
687
|
+
/**
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
690
|
+
export type DatasetExportJobStatus = (typeof DatasetExportJobStatus)[keyof typeof DatasetExportJobStatus];
|
|
466
691
|
/**
|
|
467
692
|
* @public
|
|
468
693
|
* @enum
|
|
@@ -480,14 +705,13 @@ export type ConfigurationState = (typeof ConfigurationState)[keyof typeof Config
|
|
|
480
705
|
* @public
|
|
481
706
|
* @enum
|
|
482
707
|
*/
|
|
483
|
-
export declare const
|
|
484
|
-
readonly
|
|
485
|
-
readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
|
|
708
|
+
export declare const JobType: {
|
|
709
|
+
readonly EVENT_DETECTION: "EVENT_DETECTION";
|
|
486
710
|
};
|
|
487
711
|
/**
|
|
488
712
|
* @public
|
|
489
713
|
*/
|
|
490
|
-
export type
|
|
714
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
491
715
|
/**
|
|
492
716
|
* @public
|
|
493
717
|
* @enum
|
|
@@ -529,6 +753,89 @@ export declare const LoggingLevel: {
|
|
|
529
753
|
* @public
|
|
530
754
|
*/
|
|
531
755
|
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
756
|
+
/**
|
|
757
|
+
* @public
|
|
758
|
+
* @enum
|
|
759
|
+
*/
|
|
760
|
+
export declare const ComputeNodeExecutionState: {
|
|
761
|
+
readonly FAILED: "FAILED";
|
|
762
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
763
|
+
readonly QUEUED: "QUEUED";
|
|
764
|
+
readonly RUNNING: "RUNNING";
|
|
765
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
766
|
+
};
|
|
767
|
+
/**
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
770
|
+
export type ComputeNodeExecutionState = (typeof ComputeNodeExecutionState)[keyof typeof ComputeNodeExecutionState];
|
|
771
|
+
/**
|
|
772
|
+
* @public
|
|
773
|
+
* @enum
|
|
774
|
+
*/
|
|
775
|
+
export declare const ComputeNodeErrorCode: {
|
|
776
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
777
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
778
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
779
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
780
|
+
};
|
|
781
|
+
/**
|
|
782
|
+
* @public
|
|
783
|
+
*/
|
|
784
|
+
export type ComputeNodeErrorCode = (typeof ComputeNodeErrorCode)[keyof typeof ComputeNodeErrorCode];
|
|
785
|
+
/**
|
|
786
|
+
* @public
|
|
787
|
+
* @enum
|
|
788
|
+
*/
|
|
789
|
+
export declare const DetailedPipelineErrorCode: {
|
|
790
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
791
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
792
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
793
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
794
|
+
};
|
|
795
|
+
/**
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
798
|
+
export type DetailedPipelineErrorCode = (typeof DetailedPipelineErrorCode)[keyof typeof DetailedPipelineErrorCode];
|
|
799
|
+
/**
|
|
800
|
+
* @public
|
|
801
|
+
* @enum
|
|
802
|
+
*/
|
|
803
|
+
export declare const PipelineErrorCode: {
|
|
804
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
805
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
806
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
807
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
808
|
+
};
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
812
|
+
export type PipelineErrorCode = (typeof PipelineErrorCode)[keyof typeof PipelineErrorCode];
|
|
813
|
+
/**
|
|
814
|
+
* @public
|
|
815
|
+
* @enum
|
|
816
|
+
*/
|
|
817
|
+
export declare const SearchType: {
|
|
818
|
+
readonly DEEP: "DEEP";
|
|
819
|
+
readonly QUICK: "QUICK";
|
|
820
|
+
};
|
|
821
|
+
/**
|
|
822
|
+
* @public
|
|
823
|
+
*/
|
|
824
|
+
export type SearchType = (typeof SearchType)[keyof typeof SearchType];
|
|
825
|
+
/**
|
|
826
|
+
* @public
|
|
827
|
+
* @enum
|
|
828
|
+
*/
|
|
829
|
+
export declare const SearchStatus: {
|
|
830
|
+
readonly FAILED: "FAILED";
|
|
831
|
+
readonly QUEUED: "QUEUED";
|
|
832
|
+
readonly RUNNING: "RUNNING";
|
|
833
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
export type SearchStatus = (typeof SearchStatus)[keyof typeof SearchStatus];
|
|
532
839
|
/**
|
|
533
840
|
* @public
|
|
534
841
|
* @enum
|
|
@@ -580,6 +887,17 @@ export declare const ScalarType: {
|
|
|
580
887
|
* @public
|
|
581
888
|
*/
|
|
582
889
|
export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
|
|
890
|
+
/**
|
|
891
|
+
* @public
|
|
892
|
+
* @enum
|
|
893
|
+
*/
|
|
894
|
+
export declare const VideoDataType: {
|
|
895
|
+
readonly MP4: "VIDEO-MP4";
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* @public
|
|
899
|
+
*/
|
|
900
|
+
export type VideoDataType = (typeof VideoDataType)[keyof typeof VideoDataType];
|
|
583
901
|
/**
|
|
584
902
|
* @public
|
|
585
903
|
* @enum
|
|
@@ -704,6 +1022,34 @@ export declare const ComputationModelType: {
|
|
|
704
1022
|
* @public
|
|
705
1023
|
*/
|
|
706
1024
|
export type ComputationModelType = (typeof ComputationModelType)[keyof typeof ComputationModelType];
|
|
1025
|
+
/**
|
|
1026
|
+
* @public
|
|
1027
|
+
* @enum
|
|
1028
|
+
*/
|
|
1029
|
+
export declare const EnrichmentStatus: {
|
|
1030
|
+
readonly ENRICHED: "ENRICHED";
|
|
1031
|
+
readonly NOT_ENRICHED: "NOT_ENRICHED";
|
|
1032
|
+
};
|
|
1033
|
+
/**
|
|
1034
|
+
* @public
|
|
1035
|
+
*/
|
|
1036
|
+
export type EnrichmentStatus = (typeof EnrichmentStatus)[keyof typeof EnrichmentStatus];
|
|
1037
|
+
/**
|
|
1038
|
+
* @public
|
|
1039
|
+
* @enum
|
|
1040
|
+
*/
|
|
1041
|
+
export declare const DatasetExportJobFilter: {
|
|
1042
|
+
readonly ALL: "ALL";
|
|
1043
|
+
readonly COMPLETED: "COMPLETED";
|
|
1044
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
1045
|
+
readonly FAILED: "FAILED";
|
|
1046
|
+
readonly RUNNING: "RUNNING";
|
|
1047
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1048
|
+
};
|
|
1049
|
+
/**
|
|
1050
|
+
* @public
|
|
1051
|
+
*/
|
|
1052
|
+
export type DatasetExportJobFilter = (typeof DatasetExportJobFilter)[keyof typeof DatasetExportJobFilter];
|
|
707
1053
|
/**
|
|
708
1054
|
* @public
|
|
709
1055
|
* @enum
|