@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
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_1";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {}
|
|
5
|
+
export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, __MetadataBearer {}
|
|
6
|
+
declare const UpdateWorkspaceCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: UpdateWorkspaceCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
UpdateWorkspaceCommandInput,
|
|
11
|
+
UpdateWorkspaceCommandOutput,
|
|
12
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateWorkspaceCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
UpdateWorkspaceCommandInput,
|
|
20
|
+
UpdateWorkspaceCommandOutput,
|
|
21
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class UpdateWorkspaceCommand extends UpdateWorkspaceCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: UpdateWorkspaceRequest;
|
|
31
|
+
output: UpdateWorkspaceResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: UpdateWorkspaceCommandInput;
|
|
35
|
+
output: UpdateWorkspaceCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
export * from "./AssociateAssetsCommand";
|
|
2
2
|
export * from "./AssociateTimeSeriesToAssetPropertyCommand";
|
|
3
|
+
export * from "./BatchAssociateDataSegmentsToDatasetCommand";
|
|
3
4
|
export * from "./BatchAssociateProjectAssetsCommand";
|
|
5
|
+
export * from "./BatchDeleteDatasetDataSegmentsCommand";
|
|
6
|
+
export * from "./BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
4
7
|
export * from "./BatchDisassociateProjectAssetsCommand";
|
|
5
8
|
export * from "./BatchGetAssetPropertyAggregatesCommand";
|
|
6
9
|
export * from "./BatchGetAssetPropertyValueCommand";
|
|
7
10
|
export * from "./BatchGetAssetPropertyValueHistoryCommand";
|
|
8
11
|
export * from "./BatchPutAssetPropertyValueCommand";
|
|
12
|
+
export * from "./CancelEnrichmentJobCommand";
|
|
13
|
+
export * from "./CancelPipelineExecutionCommand";
|
|
14
|
+
export * from "./CancelQueryCommand";
|
|
9
15
|
export * from "./CreateAccessPolicyCommand";
|
|
16
|
+
export * from "./CreateApplicationCommand";
|
|
10
17
|
export * from "./CreateAssetCommand";
|
|
11
18
|
export * from "./CreateAssetModelCommand";
|
|
12
19
|
export * from "./CreateAssetModelCompositeModelCommand";
|
|
@@ -14,10 +21,16 @@ export * from "./CreateBulkImportJobCommand";
|
|
|
14
21
|
export * from "./CreateComputationModelCommand";
|
|
15
22
|
export * from "./CreateDashboardCommand";
|
|
16
23
|
export * from "./CreateDatasetCommand";
|
|
24
|
+
export * from "./CreateDatasetExportJobCommand";
|
|
25
|
+
export * from "./CreateEnrichmentJobCommand";
|
|
17
26
|
export * from "./CreateGatewayCommand";
|
|
27
|
+
export * from "./CreatePipelineCommand";
|
|
18
28
|
export * from "./CreatePortalCommand";
|
|
19
29
|
export * from "./CreateProjectCommand";
|
|
30
|
+
export * from "./CreateTaskCommand";
|
|
31
|
+
export * from "./CreateWorkspaceCommand";
|
|
20
32
|
export * from "./DeleteAccessPolicyCommand";
|
|
33
|
+
export * from "./DeleteApplicationCommand";
|
|
21
34
|
export * from "./DeleteAssetCommand";
|
|
22
35
|
export * from "./DeleteAssetModelCommand";
|
|
23
36
|
export * from "./DeleteAssetModelCompositeModelCommand";
|
|
@@ -26,11 +39,15 @@ export * from "./DeleteComputationModelCommand";
|
|
|
26
39
|
export * from "./DeleteDashboardCommand";
|
|
27
40
|
export * from "./DeleteDatasetCommand";
|
|
28
41
|
export * from "./DeleteGatewayCommand";
|
|
42
|
+
export * from "./DeletePipelineCommand";
|
|
29
43
|
export * from "./DeletePortalCommand";
|
|
30
44
|
export * from "./DeleteProjectCommand";
|
|
45
|
+
export * from "./DeleteTaskCommand";
|
|
31
46
|
export * from "./DeleteTimeSeriesCommand";
|
|
47
|
+
export * from "./DeleteWorkspaceCommand";
|
|
32
48
|
export * from "./DescribeAccessPolicyCommand";
|
|
33
49
|
export * from "./DescribeActionCommand";
|
|
50
|
+
export * from "./DescribeApplicationCommand";
|
|
34
51
|
export * from "./DescribeAssetCommand";
|
|
35
52
|
export * from "./DescribeAssetCompositeModelCommand";
|
|
36
53
|
export * from "./DescribeAssetModelCommand";
|
|
@@ -42,15 +59,23 @@ export * from "./DescribeComputationModelCommand";
|
|
|
42
59
|
export * from "./DescribeComputationModelExecutionSummaryCommand";
|
|
43
60
|
export * from "./DescribeDashboardCommand";
|
|
44
61
|
export * from "./DescribeDatasetCommand";
|
|
62
|
+
export * from "./DescribeDatasetExportJobCommand";
|
|
45
63
|
export * from "./DescribeDefaultEncryptionConfigurationCommand";
|
|
64
|
+
export * from "./DescribeEnrichmentJobCommand";
|
|
46
65
|
export * from "./DescribeExecutionCommand";
|
|
47
66
|
export * from "./DescribeGatewayCapabilityConfigurationCommand";
|
|
48
67
|
export * from "./DescribeGatewayCommand";
|
|
49
68
|
export * from "./DescribeLoggingOptionsCommand";
|
|
69
|
+
export * from "./DescribePipelineCommand";
|
|
70
|
+
export * from "./DescribePipelineExecutionCommand";
|
|
50
71
|
export * from "./DescribePortalCommand";
|
|
51
72
|
export * from "./DescribeProjectCommand";
|
|
73
|
+
export * from "./DescribeQueryCommand";
|
|
74
|
+
export * from "./DescribeSearchCommand";
|
|
52
75
|
export * from "./DescribeStorageConfigurationCommand";
|
|
76
|
+
export * from "./DescribeTaskCommand";
|
|
53
77
|
export * from "./DescribeTimeSeriesCommand";
|
|
78
|
+
export * from "./DescribeWorkspaceCommand";
|
|
54
79
|
export * from "./DisassociateAssetsCommand";
|
|
55
80
|
export * from "./DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
56
81
|
export * from "./ExecuteActionCommand";
|
|
@@ -58,10 +83,14 @@ export * from "./ExecuteQueryCommand";
|
|
|
58
83
|
export * from "./GetAssetPropertyAggregatesCommand";
|
|
59
84
|
export * from "./GetAssetPropertyValueCommand";
|
|
60
85
|
export * from "./GetAssetPropertyValueHistoryCommand";
|
|
86
|
+
export * from "./GetCaptureDataCommand";
|
|
61
87
|
export * from "./GetInterpolatedAssetPropertyValuesCommand";
|
|
88
|
+
export * from "./GetQueryResultsCommand";
|
|
89
|
+
export * from "./GetSearchResultsCommand";
|
|
62
90
|
export * from "./InvokeAssistantCommand";
|
|
63
91
|
export * from "./ListAccessPoliciesCommand";
|
|
64
92
|
export * from "./ListActionsCommand";
|
|
93
|
+
export * from "./ListApplicationsCommand";
|
|
65
94
|
export * from "./ListAssetModelCompositeModelsCommand";
|
|
66
95
|
export * from "./ListAssetModelPropertiesCommand";
|
|
67
96
|
export * from "./ListAssetModelsCommand";
|
|
@@ -75,19 +104,32 @@ export * from "./ListComputationModelDataBindingUsagesCommand";
|
|
|
75
104
|
export * from "./ListComputationModelResolveToResourcesCommand";
|
|
76
105
|
export * from "./ListComputationModelsCommand";
|
|
77
106
|
export * from "./ListDashboardsCommand";
|
|
107
|
+
export * from "./ListDatasetDataSegmentRelationshipsCommand";
|
|
108
|
+
export * from "./ListDatasetDataSegmentsCommand";
|
|
109
|
+
export * from "./ListDatasetExportJobsCommand";
|
|
78
110
|
export * from "./ListDatasetsCommand";
|
|
111
|
+
export * from "./ListEnrichmentJobsCommand";
|
|
79
112
|
export * from "./ListExecutionsCommand";
|
|
80
113
|
export * from "./ListGatewaysCommand";
|
|
81
114
|
export * from "./ListInterfaceRelationshipsCommand";
|
|
115
|
+
export * from "./ListPipelineExecutionsCommand";
|
|
116
|
+
export * from "./ListPipelinesCommand";
|
|
82
117
|
export * from "./ListPortalsCommand";
|
|
83
118
|
export * from "./ListProjectAssetsCommand";
|
|
84
119
|
export * from "./ListProjectsCommand";
|
|
120
|
+
export * from "./ListQueriesCommand";
|
|
121
|
+
export * from "./ListSearchesCommand";
|
|
85
122
|
export * from "./ListTagsForResourceCommand";
|
|
123
|
+
export * from "./ListTasksCommand";
|
|
86
124
|
export * from "./ListTimeSeriesCommand";
|
|
125
|
+
export * from "./ListWorkspacesCommand";
|
|
87
126
|
export * from "./PutAssetModelInterfaceRelationshipCommand";
|
|
88
127
|
export * from "./PutDefaultEncryptionConfigurationCommand";
|
|
89
128
|
export * from "./PutLoggingOptionsCommand";
|
|
90
129
|
export * from "./PutStorageConfigurationCommand";
|
|
130
|
+
export * from "./StartPipelineExecutionCommand";
|
|
131
|
+
export * from "./StartQueryCommand";
|
|
132
|
+
export * from "./StartSearchCommand";
|
|
91
133
|
export * from "./TagResourceCommand";
|
|
92
134
|
export * from "./UntagResourceCommand";
|
|
93
135
|
export * from "./UpdateAccessPolicyCommand";
|
|
@@ -100,5 +142,8 @@ export * from "./UpdateDashboardCommand";
|
|
|
100
142
|
export * from "./UpdateDatasetCommand";
|
|
101
143
|
export * from "./UpdateGatewayCapabilityConfigurationCommand";
|
|
102
144
|
export * from "./UpdateGatewayCommand";
|
|
145
|
+
export * from "./UpdatePipelineCommand";
|
|
103
146
|
export * from "./UpdatePortalCommand";
|
|
104
147
|
export * from "./UpdateProjectCommand";
|
|
148
|
+
export * from "./UpdateTaskCommand";
|
|
149
|
+
export * from "./UpdateWorkspaceCommand";
|
|
@@ -18,12 +18,21 @@ export declare const AggregateType: {
|
|
|
18
18
|
readonly SUM: "SUM";
|
|
19
19
|
};
|
|
20
20
|
export type AggregateType = (typeof AggregateType)[keyof typeof AggregateType];
|
|
21
|
+
export declare const ApplicationStatus: {
|
|
22
|
+
readonly ACTIVE: "ACTIVE";
|
|
23
|
+
readonly CREATING: "CREATING";
|
|
24
|
+
readonly DELETING: "DELETING";
|
|
25
|
+
};
|
|
26
|
+
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
21
27
|
export declare const PropertyDataType: {
|
|
28
|
+
readonly ANNOTATION: "ANNOTATION";
|
|
22
29
|
readonly BOOLEAN: "BOOLEAN";
|
|
23
30
|
readonly DOUBLE: "DOUBLE";
|
|
24
31
|
readonly INTEGER: "INTEGER";
|
|
32
|
+
readonly JSON: "JSON";
|
|
25
33
|
readonly STRING: "STRING";
|
|
26
34
|
readonly STRUCT: "STRUCT";
|
|
35
|
+
readonly VIDEO: "VIDEO";
|
|
27
36
|
};
|
|
28
37
|
export type PropertyDataType = (typeof PropertyDataType)[keyof typeof PropertyDataType];
|
|
29
38
|
export declare const PropertyNotificationState: {
|
|
@@ -104,6 +113,14 @@ export declare const AuthMode: {
|
|
|
104
113
|
readonly SSO: "SSO";
|
|
105
114
|
};
|
|
106
115
|
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
116
|
+
export declare const DataSegmentErrorCode: {
|
|
117
|
+
readonly CONFLICTING_OPERATION: "CONFLICTING_OPERATION";
|
|
118
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
119
|
+
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
120
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
121
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
122
|
+
};
|
|
123
|
+
export type DataSegmentErrorCode = (typeof DataSegmentErrorCode)[keyof typeof DataSegmentErrorCode];
|
|
107
124
|
export declare const TimeOrdering: {
|
|
108
125
|
readonly ASCENDING: "ASCENDING";
|
|
109
126
|
readonly DESCENDING: "DESCENDING";
|
|
@@ -149,6 +166,34 @@ export declare const BatchPutAssetPropertyValueErrorCode: {
|
|
|
149
166
|
};
|
|
150
167
|
export type BatchPutAssetPropertyValueErrorCode =
|
|
151
168
|
(typeof BatchPutAssetPropertyValueErrorCode)[keyof typeof BatchPutAssetPropertyValueErrorCode];
|
|
169
|
+
export declare const EnrichmentJobStatus: {
|
|
170
|
+
readonly CANCELLED: "CANCELLED";
|
|
171
|
+
readonly COMPLETED: "COMPLETED";
|
|
172
|
+
readonly FAILED: "FAILED";
|
|
173
|
+
readonly PENDING: "PENDING";
|
|
174
|
+
readonly RUNNING: "RUNNING";
|
|
175
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
176
|
+
};
|
|
177
|
+
export type EnrichmentJobStatus = (typeof EnrichmentJobStatus)[keyof typeof EnrichmentJobStatus];
|
|
178
|
+
export declare const PipelineExecutionState: {
|
|
179
|
+
readonly CANCELLED: "CANCELLED";
|
|
180
|
+
readonly CANCELLING: "CANCELLING";
|
|
181
|
+
readonly FAILED: "FAILED";
|
|
182
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
183
|
+
readonly RUNNING: "RUNNING";
|
|
184
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
185
|
+
};
|
|
186
|
+
export type PipelineExecutionState =
|
|
187
|
+
(typeof PipelineExecutionState)[keyof typeof PipelineExecutionState];
|
|
188
|
+
export declare const QueryStatus: {
|
|
189
|
+
readonly CANCELED: "CANCELED";
|
|
190
|
+
readonly CANCELING: "CANCELING";
|
|
191
|
+
readonly COMPLETED: "COMPLETED";
|
|
192
|
+
readonly FAILED: "FAILED";
|
|
193
|
+
readonly RUNNING: "RUNNING";
|
|
194
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
195
|
+
};
|
|
196
|
+
export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
|
|
152
197
|
export declare const ColumnName: {
|
|
153
198
|
readonly ALIAS: "ALIAS";
|
|
154
199
|
readonly ASSET_ID: "ASSET_ID";
|
|
@@ -180,12 +225,20 @@ export type ComputationModelState =
|
|
|
180
225
|
(typeof ComputationModelState)[keyof typeof ComputationModelState];
|
|
181
226
|
export declare const DatasetSourceFormat: {
|
|
182
227
|
readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
|
|
228
|
+
readonly TIMESERIES: "TIMESERIES";
|
|
183
229
|
};
|
|
184
230
|
export type DatasetSourceFormat = (typeof DatasetSourceFormat)[keyof typeof DatasetSourceFormat];
|
|
185
231
|
export declare const DatasetSourceType: {
|
|
186
232
|
readonly KENDRA: "KENDRA";
|
|
233
|
+
readonly SITEWISE: "SITEWISE";
|
|
187
234
|
};
|
|
188
235
|
export type DatasetSourceType = (typeof DatasetSourceType)[keyof typeof DatasetSourceType];
|
|
236
|
+
export declare const DatasetTypeEnum: {
|
|
237
|
+
readonly CURATED: "CURATED";
|
|
238
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
239
|
+
readonly SESSION: "SESSION";
|
|
240
|
+
};
|
|
241
|
+
export type DatasetTypeEnum = (typeof DatasetTypeEnum)[keyof typeof DatasetTypeEnum];
|
|
189
242
|
export declare const DatasetState: {
|
|
190
243
|
readonly ACTIVE: "ACTIVE";
|
|
191
244
|
readonly CREATING: "CREATING";
|
|
@@ -194,6 +247,12 @@ export declare const DatasetState: {
|
|
|
194
247
|
readonly UPDATING: "UPDATING";
|
|
195
248
|
};
|
|
196
249
|
export type DatasetState = (typeof DatasetState)[keyof typeof DatasetState];
|
|
250
|
+
export declare const ExportDataType: {
|
|
251
|
+
readonly ANNOTATION: "ANNOTATION";
|
|
252
|
+
readonly TELEMETRY: "TELEMETRY";
|
|
253
|
+
readonly VIDEO: "VIDEO";
|
|
254
|
+
};
|
|
255
|
+
export type ExportDataType = (typeof ExportDataType)[keyof typeof ExportDataType];
|
|
197
256
|
export declare const CoreDeviceOperatingSystem: {
|
|
198
257
|
readonly LINUX_AARCH64: "LINUX_AARCH64";
|
|
199
258
|
readonly LINUX_AMD64: "LINUX_AMD64";
|
|
@@ -201,6 +260,19 @@ export declare const CoreDeviceOperatingSystem: {
|
|
|
201
260
|
};
|
|
202
261
|
export type CoreDeviceOperatingSystem =
|
|
203
262
|
(typeof CoreDeviceOperatingSystem)[keyof typeof CoreDeviceOperatingSystem];
|
|
263
|
+
export declare const ResourceErrorCode: {
|
|
264
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
265
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
266
|
+
};
|
|
267
|
+
export type ResourceErrorCode = (typeof ResourceErrorCode)[keyof typeof ResourceErrorCode];
|
|
268
|
+
export declare const ResourceState: {
|
|
269
|
+
readonly ACTIVE: "ACTIVE";
|
|
270
|
+
readonly CREATING: "CREATING";
|
|
271
|
+
readonly DELETING: "DELETING";
|
|
272
|
+
readonly FAILED: "FAILED";
|
|
273
|
+
readonly UPDATING: "UPDATING";
|
|
274
|
+
};
|
|
275
|
+
export type ResourceState = (typeof ResourceState)[keyof typeof ResourceState];
|
|
204
276
|
export declare const ImageFileType: {
|
|
205
277
|
readonly PNG: "PNG";
|
|
206
278
|
};
|
|
@@ -225,22 +297,72 @@ export declare const PortalState: {
|
|
|
225
297
|
readonly UPDATING: "UPDATING";
|
|
226
298
|
};
|
|
227
299
|
export type PortalState = (typeof PortalState)[keyof typeof PortalState];
|
|
300
|
+
export declare const ProcessingType: {
|
|
301
|
+
readonly GENERIC_COMPUTE_PROCESSING: "GENERIC_COMPUTE_PROCESSING";
|
|
302
|
+
readonly HARDWARE_ACCELERATED_PROCESSING: "HARDWARE_ACCELERATED_PROCESSING";
|
|
303
|
+
};
|
|
304
|
+
export type ProcessingType = (typeof ProcessingType)[keyof typeof ProcessingType];
|
|
305
|
+
export declare const ProcessingUnit: {
|
|
306
|
+
readonly UNITS_12: "UNITS_12";
|
|
307
|
+
readonly UNITS_16: "UNITS_16";
|
|
308
|
+
readonly UNITS_2: "UNITS_2";
|
|
309
|
+
readonly UNITS_24: "UNITS_24";
|
|
310
|
+
readonly UNITS_32: "UNITS_32";
|
|
311
|
+
readonly UNITS_36: "UNITS_36";
|
|
312
|
+
readonly UNITS_4: "UNITS_4";
|
|
313
|
+
readonly UNITS_48: "UNITS_48";
|
|
314
|
+
readonly UNITS_60: "UNITS_60";
|
|
315
|
+
readonly UNITS_64: "UNITS_64";
|
|
316
|
+
readonly UNITS_72: "UNITS_72";
|
|
317
|
+
readonly UNITS_8: "UNITS_8";
|
|
318
|
+
readonly UNITS_84: "UNITS_84";
|
|
319
|
+
readonly UNITS_96: "UNITS_96";
|
|
320
|
+
};
|
|
321
|
+
export type ProcessingUnit = (typeof ProcessingUnit)[keyof typeof ProcessingUnit];
|
|
322
|
+
export declare const EncryptionType: {
|
|
323
|
+
readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
|
|
324
|
+
readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
|
|
325
|
+
};
|
|
326
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
327
|
+
export declare const WorkspaceState: {
|
|
328
|
+
readonly ACTIVE: "ACTIVE";
|
|
329
|
+
readonly CREATING: "CREATING";
|
|
330
|
+
readonly DELETING: "DELETING";
|
|
331
|
+
readonly FAILED: "FAILED";
|
|
332
|
+
readonly UPDATING: "UPDATING";
|
|
333
|
+
};
|
|
334
|
+
export type WorkspaceState = (typeof WorkspaceState)[keyof typeof WorkspaceState];
|
|
228
335
|
export declare const ResolveToResourceType: {
|
|
229
336
|
readonly ASSET: "ASSET";
|
|
230
337
|
};
|
|
231
338
|
export type ResolveToResourceType =
|
|
232
339
|
(typeof ResolveToResourceType)[keyof typeof ResolveToResourceType];
|
|
340
|
+
export declare const DatasetEnrichmentStatus: {
|
|
341
|
+
readonly FULLY_ENRICHED: "FULLY_ENRICHED";
|
|
342
|
+
readonly NOT_ENRICHED: "NOT_ENRICHED";
|
|
343
|
+
readonly PARTIALLY_ENRICHED: "PARTIALLY_ENRICHED";
|
|
344
|
+
};
|
|
345
|
+
export type DatasetEnrichmentStatus =
|
|
346
|
+
(typeof DatasetEnrichmentStatus)[keyof typeof DatasetEnrichmentStatus];
|
|
347
|
+
export declare const DatasetExportJobStatus: {
|
|
348
|
+
readonly COMPLETED: "COMPLETED";
|
|
349
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
350
|
+
readonly FAILED: "FAILED";
|
|
351
|
+
readonly RUNNING: "RUNNING";
|
|
352
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
353
|
+
};
|
|
354
|
+
export type DatasetExportJobStatus =
|
|
355
|
+
(typeof DatasetExportJobStatus)[keyof typeof DatasetExportJobStatus];
|
|
233
356
|
export declare const ConfigurationState: {
|
|
234
357
|
readonly ACTIVE: "ACTIVE";
|
|
235
358
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
236
359
|
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
237
360
|
};
|
|
238
361
|
export type ConfigurationState = (typeof ConfigurationState)[keyof typeof ConfigurationState];
|
|
239
|
-
export declare const
|
|
240
|
-
readonly
|
|
241
|
-
readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
|
|
362
|
+
export declare const JobType: {
|
|
363
|
+
readonly EVENT_DETECTION: "EVENT_DETECTION";
|
|
242
364
|
};
|
|
243
|
-
export type
|
|
365
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
244
366
|
export declare const ExecutionState: {
|
|
245
367
|
readonly COMPLETED: "COMPLETED";
|
|
246
368
|
readonly FAILED: "FAILED";
|
|
@@ -261,6 +383,49 @@ export declare const LoggingLevel: {
|
|
|
261
383
|
readonly OFF: "OFF";
|
|
262
384
|
};
|
|
263
385
|
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
386
|
+
export declare const ComputeNodeExecutionState: {
|
|
387
|
+
readonly FAILED: "FAILED";
|
|
388
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
389
|
+
readonly QUEUED: "QUEUED";
|
|
390
|
+
readonly RUNNING: "RUNNING";
|
|
391
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
392
|
+
};
|
|
393
|
+
export type ComputeNodeExecutionState =
|
|
394
|
+
(typeof ComputeNodeExecutionState)[keyof typeof ComputeNodeExecutionState];
|
|
395
|
+
export declare const ComputeNodeErrorCode: {
|
|
396
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
397
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
398
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
399
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
400
|
+
};
|
|
401
|
+
export type ComputeNodeErrorCode = (typeof ComputeNodeErrorCode)[keyof typeof ComputeNodeErrorCode];
|
|
402
|
+
export declare const DetailedPipelineErrorCode: {
|
|
403
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
404
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
405
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
406
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
407
|
+
};
|
|
408
|
+
export type DetailedPipelineErrorCode =
|
|
409
|
+
(typeof DetailedPipelineErrorCode)[keyof typeof DetailedPipelineErrorCode];
|
|
410
|
+
export declare const PipelineErrorCode: {
|
|
411
|
+
readonly EXECUTION_ERROR: "EXECUTION_ERROR";
|
|
412
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
413
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
414
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
415
|
+
};
|
|
416
|
+
export type PipelineErrorCode = (typeof PipelineErrorCode)[keyof typeof PipelineErrorCode];
|
|
417
|
+
export declare const SearchType: {
|
|
418
|
+
readonly DEEP: "DEEP";
|
|
419
|
+
readonly QUICK: "QUICK";
|
|
420
|
+
};
|
|
421
|
+
export type SearchType = (typeof SearchType)[keyof typeof SearchType];
|
|
422
|
+
export declare const SearchStatus: {
|
|
423
|
+
readonly FAILED: "FAILED";
|
|
424
|
+
readonly QUEUED: "QUEUED";
|
|
425
|
+
readonly RUNNING: "RUNNING";
|
|
426
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
427
|
+
};
|
|
428
|
+
export type SearchStatus = (typeof SearchStatus)[keyof typeof SearchStatus];
|
|
264
429
|
export declare const DisassociatedDataStorageState: {
|
|
265
430
|
readonly DISABLED: "DISABLED";
|
|
266
431
|
readonly ENABLED: "ENABLED";
|
|
@@ -285,6 +450,10 @@ export declare const ScalarType: {
|
|
|
285
450
|
readonly TIMESTAMP: "TIMESTAMP";
|
|
286
451
|
};
|
|
287
452
|
export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
|
|
453
|
+
export declare const VideoDataType: {
|
|
454
|
+
readonly MP4: "VIDEO-MP4";
|
|
455
|
+
};
|
|
456
|
+
export type VideoDataType = (typeof VideoDataType)[keyof typeof VideoDataType];
|
|
288
457
|
export declare const IdentityType: {
|
|
289
458
|
readonly GROUP: "GROUP";
|
|
290
459
|
readonly IAM: "IAM";
|
|
@@ -342,6 +511,21 @@ export declare const ComputationModelType: {
|
|
|
342
511
|
readonly ANOMALY_DETECTION: "ANOMALY_DETECTION";
|
|
343
512
|
};
|
|
344
513
|
export type ComputationModelType = (typeof ComputationModelType)[keyof typeof ComputationModelType];
|
|
514
|
+
export declare const EnrichmentStatus: {
|
|
515
|
+
readonly ENRICHED: "ENRICHED";
|
|
516
|
+
readonly NOT_ENRICHED: "NOT_ENRICHED";
|
|
517
|
+
};
|
|
518
|
+
export type EnrichmentStatus = (typeof EnrichmentStatus)[keyof typeof EnrichmentStatus];
|
|
519
|
+
export declare const DatasetExportJobFilter: {
|
|
520
|
+
readonly ALL: "ALL";
|
|
521
|
+
readonly COMPLETED: "COMPLETED";
|
|
522
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
523
|
+
readonly FAILED: "FAILED";
|
|
524
|
+
readonly RUNNING: "RUNNING";
|
|
525
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
526
|
+
};
|
|
527
|
+
export type DatasetExportJobFilter =
|
|
528
|
+
(typeof DatasetExportJobFilter)[keyof typeof DatasetExportJobFilter];
|
|
345
529
|
export declare const ListTimeSeriesType: {
|
|
346
530
|
readonly ASSOCIATED: "ASSOCIATED";
|
|
347
531
|
readonly DISASSOCIATED: "DISASSOCIATED";
|