@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,141 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateDatasetExportJobRequest, CreateDatasetExportJobResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateDatasetExportJobCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateDatasetExportJobCommandInput extends CreateDatasetExportJobRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateDatasetExportJobCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateDatasetExportJobCommandOutput extends CreateDatasetExportJobResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateDatasetExportJobCommand_base: {
|
|
22
|
+
new (input: CreateDatasetExportJobCommandInput): import("@smithy/core/client").CommandImpl<CreateDatasetExportJobCommandInput, CreateDatasetExportJobCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateDatasetExportJobCommandInput): import("@smithy/core/client").CommandImpl<CreateDatasetExportJobCommandInput, CreateDatasetExportJobCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Starts an asynchronous job that exports dataset and time-series data from a workspace to Amazon
|
|
28
|
+
* S3. The operation returns a jobId immediately; poll DescribeDatasetExportJob to track progress and
|
|
29
|
+
* ListDatasetExportJobs to enumerate a workspace's jobs.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { IoTSiteWiseClient, CreateDatasetExportJobCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
34
|
+
* // const { IoTSiteWiseClient, CreateDatasetExportJobCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
35
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
36
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
37
|
+
* const client = new IoTSiteWiseClient(config);
|
|
38
|
+
* const input = { // CreateDatasetExportJobRequest
|
|
39
|
+
* workspaceName: "STRING_VALUE", // required
|
|
40
|
+
* clientToken: "STRING_VALUE",
|
|
41
|
+
* destinationS3Uri: "STRING_VALUE", // required
|
|
42
|
+
* input: { // ProcessingInput Union: only one key present
|
|
43
|
+
* timeseries: [ // TimeseriesList
|
|
44
|
+
* { // TimeseriesItem
|
|
45
|
+
* timeSeriesId: "STRING_VALUE",
|
|
46
|
+
* propertyAlias: "STRING_VALUE",
|
|
47
|
+
* trimSettings: { // TrimSettings
|
|
48
|
+
* startTime: { // TimeInNanos
|
|
49
|
+
* timeInSeconds: Number("long"), // required
|
|
50
|
+
* offsetInNanos: Number("int"),
|
|
51
|
+
* },
|
|
52
|
+
* endTime: {
|
|
53
|
+
* timeInSeconds: Number("long"), // required
|
|
54
|
+
* offsetInNanos: Number("int"),
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* formatSettings: { // FormatSettings
|
|
58
|
+
* framesPerSecond: Number("int"),
|
|
59
|
+
* widthInPixels: Number("int"),
|
|
60
|
+
* heightInPixels: Number("int"),
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* dataset: { // DatasetItem
|
|
65
|
+
* datasetId: "STRING_VALUE", // required
|
|
66
|
+
* trimSettings: {
|
|
67
|
+
* startTime: {
|
|
68
|
+
* timeInSeconds: Number("long"), // required
|
|
69
|
+
* offsetInNanos: Number("int"),
|
|
70
|
+
* },
|
|
71
|
+
* endTime: {
|
|
72
|
+
* timeInSeconds: Number("long"), // required
|
|
73
|
+
* offsetInNanos: Number("int"),
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* exportDataTypes: [ // ExportDataTypeList
|
|
77
|
+
* "VIDEO" || "TELEMETRY" || "ANNOTATION",
|
|
78
|
+
* ],
|
|
79
|
+
* },
|
|
80
|
+
* },
|
|
81
|
+
* errorReportLocation: { // ExportErrorReportLocation
|
|
82
|
+
* s3Uri: "STRING_VALUE", // required
|
|
83
|
+
* },
|
|
84
|
+
* };
|
|
85
|
+
* const command = new CreateDatasetExportJobCommand(input);
|
|
86
|
+
* const response = await client.send(command);
|
|
87
|
+
* // { // CreateDatasetExportJobResponse
|
|
88
|
+
* // jobId: "STRING_VALUE", // required
|
|
89
|
+
* // workspaceName: "STRING_VALUE", // required
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param CreateDatasetExportJobCommandInput - {@link CreateDatasetExportJobCommandInput}
|
|
95
|
+
* @returns {@link CreateDatasetExportJobCommandOutput}
|
|
96
|
+
* @see {@link CreateDatasetExportJobCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link CreateDatasetExportJobCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>Access is denied.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
104
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
105
|
+
* than one operation on the same resource at the same time.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
108
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
111
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
112
|
+
* unsupported characters. Check your request and try again.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
115
|
+
* <p>The requested resource can't be found.</p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
118
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
119
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
120
|
+
* on.</p>
|
|
121
|
+
* <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>
|
|
122
|
+
*
|
|
123
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
125
|
+
*
|
|
126
|
+
*
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export declare class CreateDatasetExportJobCommand extends CreateDatasetExportJobCommand_base {
|
|
130
|
+
/** @internal type navigation helper, not in runtime. */
|
|
131
|
+
protected static __types: {
|
|
132
|
+
api: {
|
|
133
|
+
input: CreateDatasetExportJobRequest;
|
|
134
|
+
output: CreateDatasetExportJobResponse;
|
|
135
|
+
};
|
|
136
|
+
sdk: {
|
|
137
|
+
input: CreateDatasetExportJobCommandInput;
|
|
138
|
+
output: CreateDatasetExportJobCommandOutput;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateEnrichmentJobRequest, CreateEnrichmentJobResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateEnrichmentJobCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateEnrichmentJobCommandInput extends CreateEnrichmentJobRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateEnrichmentJobCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateEnrichmentJobCommandOutput extends CreateEnrichmentJobResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateEnrichmentJobCommand_base: {
|
|
22
|
+
new (input: CreateEnrichmentJobCommandInput): import("@smithy/core/client").CommandImpl<CreateEnrichmentJobCommandInput, CreateEnrichmentJobCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateEnrichmentJobCommandInput): import("@smithy/core/client").CommandImpl<CreateEnrichmentJobCommandInput, CreateEnrichmentJobCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates an asynchronous enrichment job to analyze time-series sensor data. The operation returns
|
|
28
|
+
* immediately with job details while processing continues in the background.</p>
|
|
29
|
+
* <h2>Idempotency</h2>
|
|
30
|
+
* <p>Include a clientToken to make the operation idempotent. If you submit the same request with the same
|
|
31
|
+
* token within the idempotency window, you receive the original job details without creating a duplicate.</p>
|
|
32
|
+
* <h2>Prerequisites</h2>
|
|
33
|
+
* <p>Before creating a job, ensure:</p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>The workspace is in ACTIVE state (not being deleted)</li>
|
|
36
|
+
* <li>You have IAM permissions for the workspace, dataset, and time-series resources</li>
|
|
37
|
+
* <li>You have KMS Decrypt permission on the workspace's customer-managed encryption key</li>
|
|
38
|
+
* <li>No duplicate job (same workspace, dataset, property, and job type) is currently running</li>
|
|
39
|
+
* </ul>
|
|
40
|
+
* <h2>Workflow</h2>
|
|
41
|
+
* <ol>
|
|
42
|
+
* <li>Submit the job with configuration specifying which video data to analyze and the time range</li>
|
|
43
|
+
* <li>Capture the jobId from the response</li>
|
|
44
|
+
* <li>Use DescribeEnrichmentJob to monitor progress and check job status</li>
|
|
45
|
+
* <li>When status reaches a terminal state (COMPLETED, FAILED, TIMED_OUT, CANCELLED), check results</li>
|
|
46
|
+
* <li>For COMPLETED jobs, query IoT SiteWise for semantic search on video events</li>
|
|
47
|
+
* </ol>
|
|
48
|
+
* <h2>Error Handling</h2>
|
|
49
|
+
* <ul>
|
|
50
|
+
* <li>ConflictingOperationException: A duplicate job is already running for the same configuration</li>
|
|
51
|
+
* <li>InvalidRequestException: Invalid parameters (e.g., both timeSeriesId and propertyAlias specified)</li>
|
|
52
|
+
* <li>AccessDeniedException: Insufficient IAM or KMS permissions</li>
|
|
53
|
+
* <li>LimitExceededException: Too many concurrent jobs or requests</li>
|
|
54
|
+
* </ul>
|
|
55
|
+
* @example
|
|
56
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
57
|
+
* ```javascript
|
|
58
|
+
* import { IoTSiteWiseClient, CreateEnrichmentJobCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
59
|
+
* // const { IoTSiteWiseClient, CreateEnrichmentJobCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
60
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
61
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
62
|
+
* const client = new IoTSiteWiseClient(config);
|
|
63
|
+
* const input = { // CreateEnrichmentJobRequest
|
|
64
|
+
* workspaceName: "STRING_VALUE", // required
|
|
65
|
+
* jobConfiguration: { // EnrichmentJobConfiguration Union: only one key present
|
|
66
|
+
* eventDetection: { // EventDetection
|
|
67
|
+
* datasetId: "STRING_VALUE", // required
|
|
68
|
+
* timeSeriesId: "STRING_VALUE",
|
|
69
|
+
* propertyAlias: "STRING_VALUE",
|
|
70
|
+
* trimSettings: { // EnrichmentTrimSettings
|
|
71
|
+
* startTime: { // TimeInNanos
|
|
72
|
+
* timeInSeconds: Number("long"), // required
|
|
73
|
+
* offsetInNanos: Number("int"),
|
|
74
|
+
* },
|
|
75
|
+
* endTime: {
|
|
76
|
+
* timeInSeconds: Number("long"), // required
|
|
77
|
+
* offsetInNanos: Number("int"),
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* },
|
|
81
|
+
* },
|
|
82
|
+
* clientToken: "STRING_VALUE",
|
|
83
|
+
* };
|
|
84
|
+
* const command = new CreateEnrichmentJobCommand(input);
|
|
85
|
+
* const response = await client.send(command);
|
|
86
|
+
* // { // CreateEnrichmentJobResponse
|
|
87
|
+
* // jobId: "STRING_VALUE", // required
|
|
88
|
+
* // status: "PENDING" || "RUNNING" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELLED", // required
|
|
89
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param CreateEnrichmentJobCommandInput - {@link CreateEnrichmentJobCommandInput}
|
|
95
|
+
* @returns {@link CreateEnrichmentJobCommandOutput}
|
|
96
|
+
* @see {@link CreateEnrichmentJobCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link CreateEnrichmentJobCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>Access is denied.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
104
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
105
|
+
* than one operation on the same resource at the same time.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
108
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
111
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
112
|
+
* unsupported characters. Check your request and try again.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
115
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
116
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
117
|
+
* allowed number of properties for an asset model.</p>
|
|
118
|
+
* <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>
|
|
119
|
+
*
|
|
120
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
121
|
+
* <p>The requested resource can't be found.</p>
|
|
122
|
+
*
|
|
123
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
124
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
125
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
126
|
+
* on.</p>
|
|
127
|
+
* <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>
|
|
128
|
+
*
|
|
129
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
131
|
+
*
|
|
132
|
+
*
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
export declare class CreateEnrichmentJobCommand extends CreateEnrichmentJobCommand_base {
|
|
136
|
+
/** @internal type navigation helper, not in runtime. */
|
|
137
|
+
protected static __types: {
|
|
138
|
+
api: {
|
|
139
|
+
input: CreateEnrichmentJobRequest;
|
|
140
|
+
output: CreateEnrichmentJobResponse;
|
|
141
|
+
};
|
|
142
|
+
sdk: {
|
|
143
|
+
input: CreateEnrichmentJobCommandInput;
|
|
144
|
+
output: CreateEnrichmentJobCommandOutput;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreatePipelineCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreatePipelineCommandInput extends CreatePipelineRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreatePipelineCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreatePipelineCommand_base: {
|
|
22
|
+
new (input: CreatePipelineCommandInput): import("@smithy/core/client").CommandImpl<CreatePipelineCommandInput, CreatePipelineCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreatePipelineCommandInput): import("@smithy/core/client").CommandImpl<CreatePipelineCommandInput, CreatePipelineCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates a new pipeline in the specified workspace. A pipeline defines a
|
|
28
|
+
* directed acyclic graph (DAG) of compute nodes, where each node references a task
|
|
29
|
+
* and can declare dependencies on other nodes. Cyclic dependencies are not
|
|
30
|
+
* allowed. Nodes without dependencies run in parallel, while nodes with dependencies
|
|
31
|
+
* wait for all upstream nodes to complete successfully before starting.</p>
|
|
32
|
+
* <p>You can set environment variables at the pipeline level that are shared across all
|
|
33
|
+
* compute nodes, and override them at the individual compute node level.</p>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { IoTSiteWiseClient, CreatePipelineCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
38
|
+
* // const { IoTSiteWiseClient, CreatePipelineCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
39
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
40
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
41
|
+
* const client = new IoTSiteWiseClient(config);
|
|
42
|
+
* const input = { // CreatePipelineRequest
|
|
43
|
+
* workspaceName: "STRING_VALUE", // required
|
|
44
|
+
* pipelineName: "STRING_VALUE", // required
|
|
45
|
+
* description: "STRING_VALUE",
|
|
46
|
+
* environmentVariables: { // EnvironmentVariablesMap
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* computations: [ // ComputeNodeList // required
|
|
50
|
+
* { // ComputeNode
|
|
51
|
+
* computeNodeName: "STRING_VALUE", // required
|
|
52
|
+
* taskName: "STRING_VALUE", // required
|
|
53
|
+
* environmentVariables: {
|
|
54
|
+
* "<keys>": "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* dependsOn: [ // ComputeNodeNameList
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* tags: { // TagMap
|
|
62
|
+
* "<keys>": "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* clientToken: "STRING_VALUE",
|
|
65
|
+
* };
|
|
66
|
+
* const command = new CreatePipelineCommand(input);
|
|
67
|
+
* const response = await client.send(command);
|
|
68
|
+
* // { // CreatePipelineResponse
|
|
69
|
+
* // pipelineName: "STRING_VALUE", // required
|
|
70
|
+
* // pipelineArn: "STRING_VALUE", // required
|
|
71
|
+
* // version: "STRING_VALUE", // required
|
|
72
|
+
* // status: { // ResourceStatus
|
|
73
|
+
* // error: { // ResourceError
|
|
74
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE",
|
|
75
|
+
* // message: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED",
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* @param CreatePipelineCommandInput - {@link CreatePipelineCommandInput}
|
|
84
|
+
* @returns {@link CreatePipelineCommandOutput}
|
|
85
|
+
* @see {@link CreatePipelineCommandInput} for command's `input` shape.
|
|
86
|
+
* @see {@link CreatePipelineCommandOutput} for command's `response` shape.
|
|
87
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
90
|
+
* <p>Access is denied.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
93
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
94
|
+
* than one operation on the same resource at the same time.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
97
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
100
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
101
|
+
* unsupported characters. Check your request and try again.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
104
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
105
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
106
|
+
* allowed number of properties for an asset model.</p>
|
|
107
|
+
* <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>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
110
|
+
* <p>The requested resource can't be found.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
113
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
114
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
115
|
+
* on.</p>
|
|
116
|
+
* <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>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
120
|
+
*
|
|
121
|
+
*
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export declare class CreatePipelineCommand extends CreatePipelineCommand_base {
|
|
125
|
+
/** @internal type navigation helper, not in runtime. */
|
|
126
|
+
protected static __types: {
|
|
127
|
+
api: {
|
|
128
|
+
input: CreatePipelineRequest;
|
|
129
|
+
output: CreatePipelineResponse;
|
|
130
|
+
};
|
|
131
|
+
sdk: {
|
|
132
|
+
input: CreatePipelineCommandInput;
|
|
133
|
+
output: CreatePipelineCommandOutput;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
}
|
|
@@ -24,7 +24,13 @@ declare const CreatePortalCommand_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>Creates a portal, which can contain projects and dashboards. IoT SiteWise Monitor uses IAM Identity Center or IAM
|
|
28
34
|
* to authenticate portal users and manage user permissions.</p>
|
|
29
35
|
* <note>
|
|
30
36
|
* <p>Before you can sign in to a new portal, you must add at least one identity to that
|
|
@@ -24,7 +24,13 @@ declare const CreateProjectCommand_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>Creates a project in the specified portal.</p>
|
|
28
34
|
* <note>
|
|
29
35
|
* <p>Make sure that the project name and description don't contain confidential
|
|
30
36
|
* information.</p>
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateTaskRequest, CreateTaskResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateTaskCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateTaskCommandInput extends CreateTaskRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateTaskCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateTaskCommandOutput extends CreateTaskResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateTaskCommand_base: {
|
|
22
|
+
new (input: CreateTaskCommandInput): import("@smithy/core/client").CommandImpl<CreateTaskCommandInput, CreateTaskCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateTaskCommandInput): import("@smithy/core/client").CommandImpl<CreateTaskCommandInput, CreateTaskCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates a new task in the specified workspace. A task defines a reusable
|
|
28
|
+
* containerized compute workload that can be referenced by one or more pipeline compute nodes.</p>
|
|
29
|
+
* <p>Specify a <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_ContainerTaskConfiguration.html"><code>containerTaskConfiguration</code></a> for custom container workloads with
|
|
30
|
+
* configurable ECR image, processing type, processing unit, and environment variables.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { IoTSiteWiseClient, CreateTaskCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
35
|
+
* // const { IoTSiteWiseClient, CreateTaskCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
36
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
37
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
38
|
+
* const client = new IoTSiteWiseClient(config);
|
|
39
|
+
* const input = { // CreateTaskRequest
|
|
40
|
+
* workspaceName: "STRING_VALUE", // required
|
|
41
|
+
* taskName: "STRING_VALUE", // required
|
|
42
|
+
* description: "STRING_VALUE",
|
|
43
|
+
* taskConfiguration: { // TaskConfiguration Union: only one key present
|
|
44
|
+
* containerTaskConfiguration: { // ContainerTaskConfiguration
|
|
45
|
+
* ecrUri: "STRING_VALUE", // required
|
|
46
|
+
* taskExecutionRole: "STRING_VALUE", // required
|
|
47
|
+
* processingType: "GENERIC_COMPUTE_PROCESSING" || "HARDWARE_ACCELERATED_PROCESSING", // required
|
|
48
|
+
* processingUnit: "UNITS_2" || "UNITS_4" || "UNITS_8" || "UNITS_12" || "UNITS_16" || "UNITS_24" || "UNITS_32" || "UNITS_36" || "UNITS_48" || "UNITS_60" || "UNITS_64" || "UNITS_72" || "UNITS_84" || "UNITS_96", // required
|
|
49
|
+
* command: [ // CommandList
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* timeoutSeconds: Number("long"),
|
|
53
|
+
* environmentVariables: { // EnvironmentVariablesMap
|
|
54
|
+
* "<keys>": "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* tags: { // TagMap
|
|
59
|
+
* "<keys>": "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* clientToken: "STRING_VALUE",
|
|
62
|
+
* };
|
|
63
|
+
* const command = new CreateTaskCommand(input);
|
|
64
|
+
* const response = await client.send(command);
|
|
65
|
+
* // { // CreateTaskResponse
|
|
66
|
+
* // taskName: "STRING_VALUE", // required
|
|
67
|
+
* // taskArn: "STRING_VALUE", // required
|
|
68
|
+
* // version: "STRING_VALUE", // required
|
|
69
|
+
* // status: { // ResourceStatus
|
|
70
|
+
* // error: { // ResourceError
|
|
71
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE",
|
|
72
|
+
* // message: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED",
|
|
75
|
+
* // },
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
78
|
+
* ```
|
|
79
|
+
*
|
|
80
|
+
* @param CreateTaskCommandInput - {@link CreateTaskCommandInput}
|
|
81
|
+
* @returns {@link CreateTaskCommandOutput}
|
|
82
|
+
* @see {@link CreateTaskCommandInput} for command's `input` shape.
|
|
83
|
+
* @see {@link CreateTaskCommandOutput} for command's `response` shape.
|
|
84
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
87
|
+
* <p>Access is denied.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
90
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
91
|
+
* than one operation on the same resource at the same time.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
94
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
97
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
98
|
+
* unsupported characters. Check your request and try again.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
101
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
102
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
103
|
+
* allowed number of properties for an asset model.</p>
|
|
104
|
+
* <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>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
107
|
+
* <p>The requested resource can't be found.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
110
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
111
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
112
|
+
* on.</p>
|
|
113
|
+
* <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>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
117
|
+
*
|
|
118
|
+
*
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export declare class CreateTaskCommand extends CreateTaskCommand_base {
|
|
122
|
+
/** @internal type navigation helper, not in runtime. */
|
|
123
|
+
protected static __types: {
|
|
124
|
+
api: {
|
|
125
|
+
input: CreateTaskRequest;
|
|
126
|
+
output: CreateTaskResponse;
|
|
127
|
+
};
|
|
128
|
+
sdk: {
|
|
129
|
+
input: CreateTaskCommandInput;
|
|
130
|
+
output: CreateTaskCommandOutput;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
}
|