@aws-sdk/client-iotsitewise 3.1097.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,103 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListWorkspacesCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListWorkspacesCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListWorkspacesCommand_base: {
|
|
22
|
+
new (input: ListWorkspacesCommandInput): import("@smithy/core/client").CommandImpl<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListWorkspacesCommandInput]): import("@smithy/core/client").CommandImpl<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a paginated list of workspaces. Use the <code>nextToken</code> parameter to retrieve additional results.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { IoTSiteWiseClient, ListWorkspacesCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
32
|
+
* // const { IoTSiteWiseClient, ListWorkspacesCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
33
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
34
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
35
|
+
* const client = new IoTSiteWiseClient(config);
|
|
36
|
+
* const input = { // ListWorkspacesRequest
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListWorkspacesCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListWorkspacesResponse
|
|
43
|
+
* // workspaceSummaries: [ // WorkspaceSummaries // required
|
|
44
|
+
* // { // WorkspaceSummary
|
|
45
|
+
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // arn: "STRING_VALUE", // required
|
|
47
|
+
* // status: { // WorkspaceStatus
|
|
48
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED", // required
|
|
49
|
+
* // error: { // WorkspaceErrorDetails
|
|
50
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE", // required
|
|
51
|
+
* // message: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // nextToken: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* @param ListWorkspacesCommandInput - {@link ListWorkspacesCommandInput}
|
|
64
|
+
* @returns {@link ListWorkspacesCommandOutput}
|
|
65
|
+
* @see {@link ListWorkspacesCommandInput} for command's `input` shape.
|
|
66
|
+
* @see {@link ListWorkspacesCommandOutput} for command's `response` shape.
|
|
67
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
70
|
+
* <p>Access is denied.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
73
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
76
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
77
|
+
* unsupported characters. Check your request and try again.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
80
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
81
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
82
|
+
* on.</p>
|
|
83
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
87
|
+
*
|
|
88
|
+
*
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class ListWorkspacesCommand extends ListWorkspacesCommand_base {
|
|
92
|
+
/** @internal type navigation helper, not in runtime. */
|
|
93
|
+
protected static __types: {
|
|
94
|
+
api: {
|
|
95
|
+
input: ListWorkspacesRequest;
|
|
96
|
+
output: ListWorkspacesResponse;
|
|
97
|
+
};
|
|
98
|
+
sdk: {
|
|
99
|
+
input: ListWorkspacesCommandInput;
|
|
100
|
+
output: ListWorkspacesCommandOutput;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
}
|
|
@@ -78,6 +78,9 @@ declare const PutDefaultEncryptionConfigurationCommand_base: {
|
|
|
78
78
|
* allowed number of properties for an asset model.</p>
|
|
79
79
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
80
80
|
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>The requested resource can't be found.</p>
|
|
83
|
+
*
|
|
81
84
|
* @throws {@link ThrottlingException} (client fault)
|
|
82
85
|
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
83
86
|
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
@@ -37,6 +37,7 @@ declare const PutLoggingOptionsCommand_base: {
|
|
|
37
37
|
* loggingOptions: { // LoggingOptions
|
|
38
38
|
* level: "ERROR" || "INFO" || "OFF", // required
|
|
39
39
|
* },
|
|
40
|
+
* workspaceName: "STRING_VALUE",
|
|
40
41
|
* };
|
|
41
42
|
* const command = new PutLoggingOptionsCommand(input);
|
|
42
43
|
* const response = await client.send(command);
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { StartPipelineExecutionRequest, StartPipelineExecutionResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link StartPipelineExecutionCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface StartPipelineExecutionCommandInput extends StartPipelineExecutionRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link StartPipelineExecutionCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface StartPipelineExecutionCommandOutput extends StartPipelineExecutionResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const StartPipelineExecutionCommand_base: {
|
|
22
|
+
new (input: StartPipelineExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartPipelineExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Starts execution of a pipeline in the specified workspace. Each compute node runs
|
|
28
|
+
* according to the DAG dependency order defined in the pipeline. Nodes without
|
|
29
|
+
* dependencies start immediately, while dependent nodes wait for all upstream nodes
|
|
30
|
+
* to complete successfully.</p>
|
|
31
|
+
* <p>You can provide runtime environment variable overrides that take the highest priority
|
|
32
|
+
* in the environment variable hierarchy, without modifying the pipeline definition.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { IoTSiteWiseClient, StartPipelineExecutionCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
37
|
+
* // const { IoTSiteWiseClient, StartPipelineExecutionCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
38
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
39
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
40
|
+
* const client = new IoTSiteWiseClient(config);
|
|
41
|
+
* const input = { // StartPipelineExecutionRequest
|
|
42
|
+
* workspaceName: "STRING_VALUE", // required
|
|
43
|
+
* pipelineName: "STRING_VALUE", // required
|
|
44
|
+
* executionEnvironmentVariableOverrides: { // ExecutionEnvironmentVariables
|
|
45
|
+
* global: { // EnvironmentVariablesMap
|
|
46
|
+
* "<keys>": "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* computeNodes: { // ComputeNodeEnvironmentVariablesMap
|
|
49
|
+
* "<keys>": {
|
|
50
|
+
* "<keys>": "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* executionPriority: Number("int"),
|
|
55
|
+
* clientToken: "STRING_VALUE",
|
|
56
|
+
* };
|
|
57
|
+
* const command = new StartPipelineExecutionCommand(input);
|
|
58
|
+
* const response = await client.send(command);
|
|
59
|
+
* // { // StartPipelineExecutionResponse
|
|
60
|
+
* // pipelineExecutionId: "STRING_VALUE", // required
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @param StartPipelineExecutionCommandInput - {@link StartPipelineExecutionCommandInput}
|
|
66
|
+
* @returns {@link StartPipelineExecutionCommandOutput}
|
|
67
|
+
* @see {@link StartPipelineExecutionCommandInput} for command's `input` shape.
|
|
68
|
+
* @see {@link StartPipelineExecutionCommandOutput} for command's `response` shape.
|
|
69
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
72
|
+
* <p>Access is denied.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
75
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
76
|
+
* than one operation on the same resource at the same time.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
79
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
82
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
83
|
+
* unsupported characters. Check your request and try again.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
86
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
87
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
88
|
+
* allowed number of properties for an asset model.</p>
|
|
89
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
92
|
+
* <p>The requested resource can't be found.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
95
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
96
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
97
|
+
* on.</p>
|
|
98
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
102
|
+
*
|
|
103
|
+
*
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export declare class StartPipelineExecutionCommand extends StartPipelineExecutionCommand_base {
|
|
107
|
+
/** @internal type navigation helper, not in runtime. */
|
|
108
|
+
protected static __types: {
|
|
109
|
+
api: {
|
|
110
|
+
input: StartPipelineExecutionRequest;
|
|
111
|
+
output: StartPipelineExecutionResponse;
|
|
112
|
+
};
|
|
113
|
+
sdk: {
|
|
114
|
+
input: StartPipelineExecutionCommandInput;
|
|
115
|
+
output: StartPipelineExecutionCommandOutput;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { StartQueryRequest, StartQueryResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link StartQueryCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface StartQueryCommandInput extends StartQueryRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link StartQueryCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface StartQueryCommandOutput extends StartQueryResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const StartQueryCommand_base: {
|
|
22
|
+
new (input: StartQueryCommandInput): import("@smithy/core/client").CommandImpl<StartQueryCommandInput, StartQueryCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartQueryCommandInput): import("@smithy/core/client").CommandImpl<StartQueryCommandInput, StartQueryCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Starts an asynchronous SQL query against workspace telemetry, annotations, data segment, and dataset data.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { IoTSiteWiseClient, StartQueryCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
32
|
+
* // const { IoTSiteWiseClient, StartQueryCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
33
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
34
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
35
|
+
* const client = new IoTSiteWiseClient(config);
|
|
36
|
+
* const input = { // StartQueryRequest
|
|
37
|
+
* clientToken: "STRING_VALUE",
|
|
38
|
+
* workspaceName: "STRING_VALUE", // required
|
|
39
|
+
* queryStatement: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new StartQueryCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // StartQueryResponse
|
|
44
|
+
* // queryId: "STRING_VALUE", // required
|
|
45
|
+
* // status: "SUBMITTED" || "RUNNING" || "COMPLETED" || "FAILED" || "CANCELED" || "CANCELING", // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param StartQueryCommandInput - {@link StartQueryCommandInput}
|
|
51
|
+
* @returns {@link StartQueryCommandOutput}
|
|
52
|
+
* @see {@link StartQueryCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link StartQueryCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>Access is denied.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
60
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
61
|
+
* than one operation on the same resource at the same time.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
64
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
67
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
68
|
+
* unsupported characters. Check your request and try again.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>The requested resource can't be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
75
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
76
|
+
* on.</p>
|
|
77
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
81
|
+
*
|
|
82
|
+
*
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class StartQueryCommand extends StartQueryCommand_base {
|
|
86
|
+
/** @internal type navigation helper, not in runtime. */
|
|
87
|
+
protected static __types: {
|
|
88
|
+
api: {
|
|
89
|
+
input: StartQueryRequest;
|
|
90
|
+
output: StartQueryResponse;
|
|
91
|
+
};
|
|
92
|
+
sdk: {
|
|
93
|
+
input: StartQueryCommandInput;
|
|
94
|
+
output: StartQueryCommandOutput;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { StartSearchRequest, StartSearchResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link StartSearchCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface StartSearchCommandInput extends StartSearchRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link StartSearchCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface StartSearchCommandOutput extends StartSearchResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const StartSearchCommand_base: {
|
|
22
|
+
new (input: StartSearchCommandInput): import("@smithy/core/client").CommandImpl<StartSearchCommandInput, StartSearchCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartSearchCommandInput): import("@smithy/core/client").CommandImpl<StartSearchCommandInput, StartSearchCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Starts an asynchronous search over the data in a workspace. The search runs in the background;
|
|
28
|
+
* the response returns immediately with a <code>searchId</code> and an initial status of <code>QUEUED</code>. Use
|
|
29
|
+
* <code>DescribeSearch</code> to poll for completion and <code>GetSearchResults</code> to retrieve the results once the
|
|
30
|
+
* search reaches <code>SUCCEEDED</code>. The request is idempotent on <code>clientToken</code>: repeating a call with the
|
|
31
|
+
* same token returns the original search instead of starting a new one.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { IoTSiteWiseClient, StartSearchCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
36
|
+
* // const { IoTSiteWiseClient, StartSearchCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
37
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
38
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
39
|
+
* const client = new IoTSiteWiseClient(config);
|
|
40
|
+
* const input = { // StartSearchRequest
|
|
41
|
+
* workspaceName: "STRING_VALUE", // required
|
|
42
|
+
* queryStatement: "STRING_VALUE", // required
|
|
43
|
+
* clientToken: "STRING_VALUE",
|
|
44
|
+
* searchType: "DEEP" || "QUICK",
|
|
45
|
+
* searchFilters: { // SearchFilters
|
|
46
|
+
* timeSeriesIds: [ // TimeSeriesIdList
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
49
|
+
* datasetIds: [ // DataSetIdList
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* timeIntervals: [ // TimeIntervalList
|
|
53
|
+
* { // TimeInterval
|
|
54
|
+
* startTime: { // TimeInNanos
|
|
55
|
+
* timeInSeconds: Number("long"), // required
|
|
56
|
+
* offsetInNanos: Number("int"),
|
|
57
|
+
* },
|
|
58
|
+
* endTime: {
|
|
59
|
+
* timeInSeconds: Number("long"), // required
|
|
60
|
+
* offsetInNanos: Number("int"),
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* },
|
|
65
|
+
* groupId: "STRING_VALUE",
|
|
66
|
+
* };
|
|
67
|
+
* const command = new StartSearchCommand(input);
|
|
68
|
+
* const response = await client.send(command);
|
|
69
|
+
* // { // StartSearchResponse
|
|
70
|
+
* // searchId: "STRING_VALUE", // required
|
|
71
|
+
* // workspaceName: "STRING_VALUE", // required
|
|
72
|
+
* // status: "QUEUED" || "RUNNING" || "SUCCEEDED" || "FAILED", // required
|
|
73
|
+
* // groupId: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @param StartSearchCommandInput - {@link StartSearchCommandInput}
|
|
79
|
+
* @returns {@link StartSearchCommandOutput}
|
|
80
|
+
* @see {@link StartSearchCommandInput} for command's `input` shape.
|
|
81
|
+
* @see {@link StartSearchCommandOutput} for command's `response` shape.
|
|
82
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
85
|
+
* <p>Access is denied.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
88
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
89
|
+
* than one operation on the same resource at the same time.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
92
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
95
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
96
|
+
* unsupported characters. Check your request and try again.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
99
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
100
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
101
|
+
* allowed number of properties for an asset model.</p>
|
|
102
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
105
|
+
* <p>The requested resource can't be found.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
108
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
109
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
110
|
+
* on.</p>
|
|
111
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
115
|
+
*
|
|
116
|
+
*
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export declare class StartSearchCommand extends StartSearchCommand_base {
|
|
120
|
+
/** @internal type navigation helper, not in runtime. */
|
|
121
|
+
protected static __types: {
|
|
122
|
+
api: {
|
|
123
|
+
input: StartSearchRequest;
|
|
124
|
+
output: StartSearchResponse;
|
|
125
|
+
};
|
|
126
|
+
sdk: {
|
|
127
|
+
input: StartSearchCommandInput;
|
|
128
|
+
output: StartSearchCommandOutput;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
}
|
|
@@ -24,7 +24,13 @@ declare const UpdateAccessPolicyCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <
|
|
27
|
+
* <important>
|
|
28
|
+
* <p>The IoT SiteWise Monitor feature will no longer be open to new
|
|
29
|
+
* customers starting November 7, 2025. If you would like to use the IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can
|
|
30
|
+
* continue to use the service as normal. For more information, see
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html">IoT SiteWise Monitor availability change</a>.</p>
|
|
32
|
+
* </important>
|
|
33
|
+
* <p>Updates an existing access policy that specifies an identity's access to an IoT SiteWise Monitor
|
|
28
34
|
* portal or project resource.</p>
|
|
29
35
|
* @example
|
|
30
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -44,6 +44,7 @@ declare const UpdateAssetCommand_base: {
|
|
|
44
44
|
* const command = new UpdateAssetCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
46
|
* // { // UpdateAssetResponse
|
|
47
|
+
* // assetId: "STRING_VALUE",
|
|
47
48
|
* // assetStatus: { // AssetStatus
|
|
48
49
|
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED", // required
|
|
49
50
|
* // error: { // ErrorDetails
|
|
@@ -63,7 +63,7 @@ declare const UpdateAssetModelCommand_base: {
|
|
|
63
63
|
* id: "STRING_VALUE",
|
|
64
64
|
* externalId: "STRING_VALUE",
|
|
65
65
|
* name: "STRING_VALUE", // required
|
|
66
|
-
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT", // required
|
|
66
|
+
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT" || "VIDEO" || "ANNOTATION" || "JSON", // required
|
|
67
67
|
* dataTypeSpec: "STRING_VALUE",
|
|
68
68
|
* unit: "STRING_VALUE",
|
|
69
69
|
* type: { // PropertyType
|
|
@@ -155,7 +155,7 @@ declare const UpdateAssetModelCommand_base: {
|
|
|
155
155
|
* id: "STRING_VALUE",
|
|
156
156
|
* externalId: "STRING_VALUE",
|
|
157
157
|
* name: "STRING_VALUE", // required
|
|
158
|
-
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT", // required
|
|
158
|
+
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT" || "VIDEO" || "ANNOTATION" || "JSON", // required
|
|
159
159
|
* dataTypeSpec: "STRING_VALUE",
|
|
160
160
|
* unit: "STRING_VALUE",
|
|
161
161
|
* type: {
|
|
@@ -226,6 +226,7 @@ declare const UpdateAssetModelCommand_base: {
|
|
|
226
226
|
* const command = new UpdateAssetModelCommand(input);
|
|
227
227
|
* const response = await client.send(command);
|
|
228
228
|
* // { // UpdateAssetModelResponse
|
|
229
|
+
* // assetModelId: "STRING_VALUE",
|
|
229
230
|
* // assetModelStatus: { // AssetModelStatus
|
|
230
231
|
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "PROPAGATING" || "DELETING" || "FAILED", // required
|
|
231
232
|
* // error: { // ErrorDetails
|
|
@@ -65,7 +65,7 @@ declare const UpdateAssetModelCompositeModelCommand_base: {
|
|
|
65
65
|
* id: "STRING_VALUE",
|
|
66
66
|
* externalId: "STRING_VALUE",
|
|
67
67
|
* name: "STRING_VALUE", // required
|
|
68
|
-
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT", // required
|
|
68
|
+
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT" || "VIDEO" || "ANNOTATION" || "JSON", // required
|
|
69
69
|
* dataTypeSpec: "STRING_VALUE",
|
|
70
70
|
* unit: "STRING_VALUE",
|
|
71
71
|
* type: { // PropertyType
|
|
@@ -165,6 +165,7 @@ declare const UpdateAssetModelCompositeModelCommand_base: {
|
|
|
165
165
|
* // ],
|
|
166
166
|
* // },
|
|
167
167
|
* // },
|
|
168
|
+
* // assetModelId: "STRING_VALUE",
|
|
168
169
|
* // };
|
|
169
170
|
*
|
|
170
171
|
* ```
|
|
@@ -24,7 +24,13 @@ declare const UpdateDashboardCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <
|
|
27
|
+
* <important>
|
|
28
|
+
* <p>The IoT SiteWise Monitor feature will no longer be open to new
|
|
29
|
+
* customers starting November 7, 2025. If you would like to use the IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can
|
|
30
|
+
* continue to use the service as normal. For more information, see
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html">IoT SiteWise Monitor availability change</a>.</p>
|
|
32
|
+
* </important>
|
|
33
|
+
* <p>Updates an IoT SiteWise Monitor dashboard.</p>
|
|
28
34
|
* @example
|
|
29
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
36
|
* ```javascript
|
|
@@ -35,11 +35,27 @@ declare const UpdateDatasetCommand_base: {
|
|
|
35
35
|
* const client = new IoTSiteWiseClient(config);
|
|
36
36
|
* const input = { // UpdateDatasetRequest
|
|
37
37
|
* datasetId: "STRING_VALUE", // required
|
|
38
|
+
* workspaceName: "STRING_VALUE",
|
|
38
39
|
* datasetName: "STRING_VALUE", // required
|
|
39
40
|
* datasetDescription: "STRING_VALUE",
|
|
41
|
+
* datasetConfig: { // DatasetConfig
|
|
42
|
+
* session: { // SessionConfig
|
|
43
|
+
* sessionStartTimestamp: { // TimeInNanos
|
|
44
|
+
* timeInSeconds: Number("long"), // required
|
|
45
|
+
* offsetInNanos: Number("int"),
|
|
46
|
+
* },
|
|
47
|
+
* sessionEndTimestamp: {
|
|
48
|
+
* timeInSeconds: Number("long"), // required
|
|
49
|
+
* offsetInNanos: Number("int"),
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* metadata: { // Metadata
|
|
54
|
+
* "<keys>": "STRING_VALUE",
|
|
55
|
+
* },
|
|
40
56
|
* datasetSource: { // DatasetSource
|
|
41
|
-
* sourceType: "KENDRA", // required
|
|
42
|
-
* sourceFormat: "KNOWLEDGE_BASE", // required
|
|
57
|
+
* sourceType: "KENDRA" || "SITEWISE", // required
|
|
58
|
+
* sourceFormat: "KNOWLEDGE_BASE" || "TIMESERIES", // required
|
|
43
59
|
* sourceDetail: { // SourceDetail
|
|
44
60
|
* kendra: { // KendraSourceDetail
|
|
45
61
|
* knowledgeBaseArn: "STRING_VALUE", // required
|
|
@@ -94,6 +110,9 @@ declare const UpdateDatasetCommand_base: {
|
|
|
94
110
|
* allowed number of properties for an asset model.</p>
|
|
95
111
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
96
112
|
*
|
|
113
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
114
|
+
* <p>The resource already exists.</p>
|
|
115
|
+
*
|
|
97
116
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
98
117
|
* <p>The requested resource can't be found.</p>
|
|
99
118
|
*
|