@aws-sdk/client-iotsitewise 3.1096.0 → 3.1098.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +315 -0
- package/dist-cjs/index.js +2189 -237
- package/dist-es/IoTSiteWise.js +118 -0
- package/dist-es/commands/BatchAssociateDataSegmentsToDatasetCommand.js +4 -0
- package/dist-es/commands/BatchDeleteDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/BatchDisassociateDataSegmentsFromDatasetCommand.js +4 -0
- package/dist-es/commands/CancelEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CancelPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/CancelQueryCommand.js +4 -0
- package/dist-es/commands/CreateApplicationCommand.js +4 -0
- package/dist-es/commands/CreateDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/CreateEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CreatePipelineCommand.js +4 -0
- package/dist-es/commands/CreateTaskCommand.js +4 -0
- package/dist-es/commands/CreateWorkspaceCommand.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +4 -0
- package/dist-es/commands/DeletePipelineCommand.js +4 -0
- package/dist-es/commands/DeleteTaskCommand.js +4 -0
- package/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
- package/dist-es/commands/DescribeApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/DescribeEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/DescribePipelineCommand.js +4 -0
- package/dist-es/commands/DescribePipelineExecutionCommand.js +4 -0
- package/dist-es/commands/DescribeQueryCommand.js +4 -0
- package/dist-es/commands/DescribeSearchCommand.js +4 -0
- package/dist-es/commands/DescribeTaskCommand.js +4 -0
- package/dist-es/commands/DescribeWorkspaceCommand.js +4 -0
- package/dist-es/commands/GetCaptureDataCommand.js +4 -0
- package/dist-es/commands/GetQueryResultsCommand.js +4 -0
- package/dist-es/commands/GetSearchResultsCommand.js +4 -0
- package/dist-es/commands/ListApplicationsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentRelationshipsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/ListDatasetExportJobsCommand.js +4 -0
- package/dist-es/commands/ListEnrichmentJobsCommand.js +4 -0
- package/dist-es/commands/ListPipelineExecutionsCommand.js +4 -0
- package/dist-es/commands/ListPipelinesCommand.js +4 -0
- package/dist-es/commands/ListQueriesCommand.js +4 -0
- package/dist-es/commands/ListSearchesCommand.js +4 -0
- package/dist-es/commands/ListTasksCommand.js +4 -0
- package/dist-es/commands/ListWorkspacesCommand.js +4 -0
- package/dist-es/commands/StartPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/StartQueryCommand.js +4 -0
- package/dist-es/commands/StartSearchCommand.js +4 -0
- package/dist-es/commands/UpdatePipelineCommand.js +4 -0
- package/dist-es/commands/UpdateTaskCommand.js +4 -0
- package/dist-es/commands/UpdateWorkspaceCommand.js +4 -0
- package/dist-es/commands/index.js +45 -0
- package/dist-es/models/enums.js +157 -3
- package/dist-es/pagination/DescribePipelineExecutionPaginator.js +4 -0
- package/dist-es/pagination/GetQueryResultsPaginator.js +4 -0
- package/dist-es/pagination/GetSearchResultsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetExportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListEnrichmentJobsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelinesPaginator.js +4 -0
- package/dist-es/pagination/ListQueriesPaginator.js +4 -0
- package/dist-es/pagination/ListSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListTasksPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +14 -0
- package/dist-es/schemas/schemas_0.js +1544 -233
- package/dist-types/IoTSiteWise.d.ts +415 -0
- package/dist-types/IoTSiteWiseClient.d.ts +47 -2
- package/dist-types/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +133 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +125 -0
- package/dist-types/commands/CancelEnrichmentJobCommand.d.ts +124 -0
- package/dist-types/commands/CancelPipelineExecutionCommand.d.ts +103 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +96 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +111 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +28 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -3
- package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +141 -0
- package/dist-types/commands/CreateEnrichmentJobCommand.d.ts +147 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +136 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +133 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +119 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +93 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +104 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +103 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +103 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +100 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +23 -3
- package/dist-types/commands/DescribeDatasetCommand.d.ts +27 -2
- package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +138 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEnrichmentJobCommand.d.ts +151 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +4 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +120 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +156 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +100 -0
- package/dist-types/commands/DescribeSearchCommand.d.ts +102 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +120 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +4 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCaptureDataCommand.d.ts +116 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +104 -0
- package/dist-types/commands/GetSearchResultsCommand.d.ts +118 -0
- package/dist-types/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +2 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +4 -1
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +107 -0
- package/dist-types/commands/ListDatasetDataSegmentsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -2
- package/dist-types/commands/ListEnrichmentJobsCommand.d.ts +151 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +126 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +109 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +101 -0
- package/dist-types/commands/ListSearchesCommand.d.ts +119 -0
- package/dist-types/commands/ListTasksCommand.d.ts +109 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +103 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +118 -0
- package/dist-types/commands/StartQueryCommand.d.ts +97 -0
- package/dist-types/commands/StartSearchCommand.d.ts +131 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +3 -2
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +21 -2
- package/dist-types/commands/UpdatePipelineCommand.d.ts +127 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +7 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +120 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +45 -0
- package/dist-types/models/enums.d.ts +350 -4
- package/dist-types/models/models_0.d.ts +2607 -2755
- package/dist-types/models/models_1.d.ts +4139 -33
- package/dist-types/pagination/DescribePipelineExecutionPaginator.d.ts +7 -0
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/GetSearchResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetExportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnrichmentJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQueriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +14 -0
- package/dist-types/schemas/schemas_0.d.ts +190 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +841 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +248 -2
- package/dist-types/ts3.4/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelPipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateDatasetExportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeDatasetExportJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCaptureDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSearchResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListBulkImportJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetExportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnrichmentJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSearchesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +45 -0
- package/dist-types/ts3.4/models/enums.d.ts +188 -4
- package/dist-types/ts3.4/models/models_0.d.ts +550 -614
- package/dist-types/ts3.4/models/models_1.d.ts +1048 -4
- package/dist-types/ts3.4/pagination/DescribePipelineExecutionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetSearchResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetExportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnrichmentJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -0
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListAssetModelPropertiesRequest, ListAssetModelPropertiesResponse } from "../models/
|
|
2
|
+
import type { ListAssetModelPropertiesRequest, ListAssetModelPropertiesResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -50,7 +50,7 @@ declare const ListAssetModelPropertiesCommand_base: {
|
|
|
50
50
|
* // id: "STRING_VALUE",
|
|
51
51
|
* // externalId: "STRING_VALUE",
|
|
52
52
|
* // name: "STRING_VALUE", // required
|
|
53
|
-
* // dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT", // required
|
|
53
|
+
* // dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT" || "VIDEO" || "ANNOTATION" || "JSON", // required
|
|
54
54
|
* // dataTypeSpec: "STRING_VALUE",
|
|
55
55
|
* // unit: "STRING_VALUE",
|
|
56
56
|
* // type: { // PropertyType
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListAssetModelsRequest, ListAssetModelsResponse } from "../models/
|
|
2
|
+
import type { ListAssetModelsRequest, ListAssetModelsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -88,6 +88,9 @@ declare const ListAssetModelsCommand_base: {
|
|
|
88
88
|
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
89
89
|
* unsupported characters. Check your request and try again.</p>
|
|
90
90
|
*
|
|
91
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
92
|
+
* <p>The requested resource can't be found.</p>
|
|
93
|
+
*
|
|
91
94
|
* @throws {@link ThrottlingException} (client fault)
|
|
92
95
|
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
93
96
|
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListAssetPropertiesRequest, ListAssetPropertiesResponse } from "../models/
|
|
2
|
+
import type { ListAssetPropertiesRequest, ListAssetPropertiesResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListAssetRelationshipsRequest, ListAssetRelationshipsResponse } from "../models/
|
|
2
|
+
import type { ListAssetRelationshipsRequest, ListAssetRelationshipsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListAssociatedAssetsRequest, ListAssociatedAssetsResponse } from "../models/
|
|
2
|
+
import type { ListAssociatedAssetsRequest, ListAssociatedAssetsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListBulkImportJobsRequest, ListBulkImportJobsResponse } from "../models/
|
|
2
|
+
import type { ListBulkImportJobsRequest, ListBulkImportJobsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -38,6 +38,7 @@ declare const ListBulkImportJobsCommand_base: {
|
|
|
38
38
|
* nextToken: "STRING_VALUE",
|
|
39
39
|
* maxResults: Number("int"),
|
|
40
40
|
* filter: "ALL" || "PENDING" || "RUNNING" || "CANCELLED" || "FAILED" || "COMPLETED_WITH_FAILURES" || "COMPLETED",
|
|
41
|
+
* workspaceName: "STRING_VALUE",
|
|
41
42
|
* };
|
|
42
43
|
* const command = new ListBulkImportJobsCommand(input);
|
|
43
44
|
* const response = await client.send(command);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListCompositionRelationshipsRequest, ListCompositionRelationshipsResponse } from "../models/
|
|
2
|
+
import type { ListCompositionRelationshipsRequest, ListCompositionRelationshipsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListComputationModelDataBindingUsagesRequest, ListComputationModelDataBindingUsagesResponse } from "../models/
|
|
2
|
+
import type { ListComputationModelDataBindingUsagesRequest, ListComputationModelDataBindingUsagesResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListComputationModelResolveToResourcesRequest, ListComputationModelResolveToResourcesResponse } from "../models/
|
|
2
|
+
import type { ListComputationModelResolveToResourcesRequest, ListComputationModelResolveToResourcesResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListComputationModelsRequest, ListComputationModelsResponse } from "../models/
|
|
2
|
+
import type { ListComputationModelsRequest, ListComputationModelsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/
|
|
2
|
+
import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListDatasetDataSegmentRelationshipsRequest, ListDatasetDataSegmentRelationshipsResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListDatasetDataSegmentRelationshipsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListDatasetDataSegmentRelationshipsCommandInput extends ListDatasetDataSegmentRelationshipsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListDatasetDataSegmentRelationshipsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListDatasetDataSegmentRelationshipsCommandOutput extends ListDatasetDataSegmentRelationshipsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListDatasetDataSegmentRelationshipsCommand_base: {
|
|
22
|
+
new (input: ListDatasetDataSegmentRelationshipsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetDataSegmentRelationshipsCommandInput, ListDatasetDataSegmentRelationshipsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListDatasetDataSegmentRelationshipsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetDataSegmentRelationshipsCommandInput, ListDatasetDataSegmentRelationshipsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a paginated list of data segment relationships for a session dataset. Use this
|
|
28
|
+
* operation to find the curated datasets that reference data segments of the specified session
|
|
29
|
+
* dataset. Use the <code>nextToken</code> parameter to retrieve additional results.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { IoTSiteWiseClient, ListDatasetDataSegmentRelationshipsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
34
|
+
* // const { IoTSiteWiseClient, ListDatasetDataSegmentRelationshipsCommand } = 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 = { // ListDatasetDataSegmentRelationshipsRequest
|
|
39
|
+
* datasetId: "STRING_VALUE", // required
|
|
40
|
+
* workspaceName: "STRING_VALUE", // required
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* nextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListDatasetDataSegmentRelationshipsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListDatasetDataSegmentRelationshipsResponse
|
|
47
|
+
* // dataSegmentRelationshipSummaries: [ // DataSegmentRelationshipSummaries // required
|
|
48
|
+
* // { // DataSegmentRelationshipSummary
|
|
49
|
+
* // targetDatasetId: "STRING_VALUE", // required
|
|
50
|
+
* // sourceDatasetId: "STRING_VALUE", // required
|
|
51
|
+
* // timeSeriesId: "STRING_VALUE", // required
|
|
52
|
+
* // startTimestamp: { // TimeInNanos
|
|
53
|
+
* // timeInSeconds: Number("long"), // required
|
|
54
|
+
* // offsetInNanos: Number("int"),
|
|
55
|
+
* // },
|
|
56
|
+
* // endTimestamp: {
|
|
57
|
+
* // timeInSeconds: Number("long"), // required
|
|
58
|
+
* // offsetInNanos: Number("int"),
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param ListDatasetDataSegmentRelationshipsCommandInput - {@link ListDatasetDataSegmentRelationshipsCommandInput}
|
|
68
|
+
* @returns {@link ListDatasetDataSegmentRelationshipsCommandOutput}
|
|
69
|
+
* @see {@link ListDatasetDataSegmentRelationshipsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link ListDatasetDataSegmentRelationshipsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
74
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
77
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
78
|
+
* unsupported characters. Check your request and try again.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>The requested resource can't be found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
85
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
86
|
+
* on.</p>
|
|
87
|
+
* <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>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class ListDatasetDataSegmentRelationshipsCommand extends ListDatasetDataSegmentRelationshipsCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: ListDatasetDataSegmentRelationshipsRequest;
|
|
100
|
+
output: ListDatasetDataSegmentRelationshipsResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: ListDatasetDataSegmentRelationshipsCommandInput;
|
|
104
|
+
output: ListDatasetDataSegmentRelationshipsCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListDatasetDataSegmentsRequest, ListDatasetDataSegmentsResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListDatasetDataSegmentsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListDatasetDataSegmentsCommandInput extends ListDatasetDataSegmentsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListDatasetDataSegmentsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListDatasetDataSegmentsCommandOutput extends ListDatasetDataSegmentsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListDatasetDataSegmentsCommand_base: {
|
|
22
|
+
new (input: ListDatasetDataSegmentsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetDataSegmentsCommandInput, ListDatasetDataSegmentsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListDatasetDataSegmentsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetDataSegmentsCommandInput, ListDatasetDataSegmentsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a paginated list of data segments associated with a dataset. 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, ListDatasetDataSegmentsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
32
|
+
* // const { IoTSiteWiseClient, ListDatasetDataSegmentsCommand } = 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 = { // ListDatasetDataSegmentsRequest
|
|
37
|
+
* datasetId: "STRING_VALUE", // required
|
|
38
|
+
* workspaceName: "STRING_VALUE", // required
|
|
39
|
+
* datasetVersion: "STRING_VALUE",
|
|
40
|
+
* maxResults: Number("int"),
|
|
41
|
+
* nextToken: "STRING_VALUE",
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListDatasetDataSegmentsCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListDatasetDataSegmentsResponse
|
|
46
|
+
* // dataSegments: [ // DataSegmentSummaries // required
|
|
47
|
+
* // { // DataSegmentSummary
|
|
48
|
+
* // sourceDatasetId: "STRING_VALUE", // required
|
|
49
|
+
* // timeSeriesId: "STRING_VALUE", // required
|
|
50
|
+
* // startTimestamp: { // TimeInNanos
|
|
51
|
+
* // timeInSeconds: Number("long"), // required
|
|
52
|
+
* // offsetInNanos: Number("int"),
|
|
53
|
+
* // },
|
|
54
|
+
* // endTimestamp: {
|
|
55
|
+
* // timeInSeconds: Number("long"), // required
|
|
56
|
+
* // offsetInNanos: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // alias: "STRING_VALUE", // required
|
|
59
|
+
* // dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT" || "VIDEO" || "ANNOTATION" || "JSON", // required
|
|
60
|
+
* // enrichment: { // DataSegmentEnrichment
|
|
61
|
+
* // status: "ENRICHED" || "NOT_ENRICHED", // required
|
|
62
|
+
* // lastEnrichedAt: new Date("TIMESTAMP"),
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // nextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @param ListDatasetDataSegmentsCommandInput - {@link ListDatasetDataSegmentsCommandInput}
|
|
72
|
+
* @returns {@link ListDatasetDataSegmentsCommandOutput}
|
|
73
|
+
* @see {@link ListDatasetDataSegmentsCommandInput} for command's `input` shape.
|
|
74
|
+
* @see {@link ListDatasetDataSegmentsCommandOutput} for command's `response` shape.
|
|
75
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
78
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
81
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
82
|
+
* unsupported characters. Check your request and try again.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
|
+
* <p>The requested resource can't be found.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
88
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
89
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
90
|
+
* on.</p>
|
|
91
|
+
* <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>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
95
|
+
*
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class ListDatasetDataSegmentsCommand extends ListDatasetDataSegmentsCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: ListDatasetDataSegmentsRequest;
|
|
104
|
+
output: ListDatasetDataSegmentsResponse;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: ListDatasetDataSegmentsCommandInput;
|
|
108
|
+
output: ListDatasetDataSegmentsCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListDatasetExportJobsRequest, ListDatasetExportJobsResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListDatasetExportJobsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListDatasetExportJobsCommandInput extends ListDatasetExportJobsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListDatasetExportJobsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListDatasetExportJobsCommandOutput extends ListDatasetExportJobsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListDatasetExportJobsCommand_base: {
|
|
22
|
+
new (input: ListDatasetExportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetExportJobsCommandInput, ListDatasetExportJobsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListDatasetExportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDatasetExportJobsCommandInput, ListDatasetExportJobsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a paginated list of dataset export jobs for a workspace.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { IoTSiteWiseClient, ListDatasetExportJobsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
32
|
+
* // const { IoTSiteWiseClient, ListDatasetExportJobsCommand } = 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 = { // ListDatasetExportJobsRequest
|
|
37
|
+
* workspaceName: "STRING_VALUE", // required
|
|
38
|
+
* filter: "ALL" || "SUBMITTED" || "RUNNING" || "COMPLETED" || "COMPLETED_WITH_ERRORS" || "FAILED",
|
|
39
|
+
* maxResults: Number("int"),
|
|
40
|
+
* nextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListDatasetExportJobsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListDatasetExportJobsResponse
|
|
45
|
+
* // jobs: [ // ExportJobSummaryList // required
|
|
46
|
+
* // { // ExportJobSummary
|
|
47
|
+
* // jobId: "STRING_VALUE", // required
|
|
48
|
+
* // status: "SUBMITTED" || "RUNNING" || "COMPLETED" || "COMPLETED_WITH_ERRORS" || "FAILED", // required
|
|
49
|
+
* // startedAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // completedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // destinationS3Uri: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListDatasetExportJobsCommandInput - {@link ListDatasetExportJobsCommandInput}
|
|
60
|
+
* @returns {@link ListDatasetExportJobsCommandOutput}
|
|
61
|
+
* @see {@link ListDatasetExportJobsCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListDatasetExportJobsCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>Access is denied.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
69
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
72
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
73
|
+
* unsupported characters. Check your request and try again.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
76
|
+
* <p>The requested resource can't be found.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
79
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
80
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
81
|
+
* on.</p>
|
|
82
|
+
* <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>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
86
|
+
*
|
|
87
|
+
*
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export declare class ListDatasetExportJobsCommand extends ListDatasetExportJobsCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: ListDatasetExportJobsRequest;
|
|
95
|
+
output: ListDatasetExportJobsResponse;
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: ListDatasetExportJobsCommandInput;
|
|
99
|
+
output: ListDatasetExportJobsCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/
|
|
2
|
+
import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -34,7 +34,9 @@ declare const ListDatasetsCommand_base: {
|
|
|
34
34
|
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
35
35
|
* const client = new IoTSiteWiseClient(config);
|
|
36
36
|
* const input = { // ListDatasetsRequest
|
|
37
|
-
* sourceType: "KENDRA", // required
|
|
37
|
+
* sourceType: "KENDRA" || "SITEWISE", // required
|
|
38
|
+
* workspaceName: "STRING_VALUE",
|
|
39
|
+
* datasetType: "SESSION" || "CURATED" || "EXTERNAL",
|
|
38
40
|
* nextToken: "STRING_VALUE",
|
|
39
41
|
* maxResults: Number("int"),
|
|
40
42
|
* };
|
|
@@ -47,6 +49,8 @@ declare const ListDatasetsCommand_base: {
|
|
|
47
49
|
* // arn: "STRING_VALUE", // required
|
|
48
50
|
* // name: "STRING_VALUE", // required
|
|
49
51
|
* // description: "STRING_VALUE", // required
|
|
52
|
+
* // sourceType: "KENDRA" || "SITEWISE",
|
|
53
|
+
* // datasetType: "SESSION" || "CURATED" || "EXTERNAL",
|
|
50
54
|
* // creationDate: new Date("TIMESTAMP"), // required
|
|
51
55
|
* // lastUpdateDate: new Date("TIMESTAMP"), // required
|
|
52
56
|
* // status: { // DatasetStatus
|
|
@@ -62,9 +66,16 @@ declare const ListDatasetsCommand_base: {
|
|
|
62
66
|
* // ],
|
|
63
67
|
* // },
|
|
64
68
|
* // },
|
|
69
|
+
* // enrichmentStatus: { // DatasetEnrichment
|
|
70
|
+
* // video: { // DatasetEnrichmentEntry
|
|
71
|
+
* // status: "FULLY_ENRICHED" || "PARTIALLY_ENRICHED" || "NOT_ENRICHED", // required
|
|
72
|
+
* // lastEnrichedAt: new Date("TIMESTAMP"),
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
65
75
|
* // },
|
|
66
76
|
* // ],
|
|
67
77
|
* // nextToken: "STRING_VALUE",
|
|
78
|
+
* // workspaceName: "STRING_VALUE",
|
|
68
79
|
* // };
|
|
69
80
|
*
|
|
70
81
|
* ```
|
|
@@ -82,6 +93,9 @@ declare const ListDatasetsCommand_base: {
|
|
|
82
93
|
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
83
94
|
* unsupported characters. Check your request and try again.</p>
|
|
84
95
|
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>The requested resource can't be found.</p>
|
|
98
|
+
*
|
|
85
99
|
* @throws {@link ThrottlingException} (client fault)
|
|
86
100
|
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
87
101
|
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListEnrichmentJobsRequest, ListEnrichmentJobsResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListEnrichmentJobsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListEnrichmentJobsCommandInput extends ListEnrichmentJobsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListEnrichmentJobsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListEnrichmentJobsCommandOutput extends ListEnrichmentJobsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListEnrichmentJobsCommand_base: {
|
|
22
|
+
new (input: ListEnrichmentJobsCommandInput): import("@smithy/core/client").CommandImpl<ListEnrichmentJobsCommandInput, ListEnrichmentJobsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListEnrichmentJobsCommandInput): import("@smithy/core/client").CommandImpl<ListEnrichmentJobsCommandInput, ListEnrichmentJobsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Lists enrichment jobs within a workspace with optional filtering and pagination. Results are ordered
|
|
28
|
+
* by createdAt timestamp descending (newest first).</p>
|
|
29
|
+
* <h2>Filtering</h2>
|
|
30
|
+
* <p>Combine filters to narrow results:</p>
|
|
31
|
+
* <ul>
|
|
32
|
+
* <li><strong>datasetId</strong>: Filter by dataset</li>
|
|
33
|
+
* <li><strong>propertyAlias</strong> OR <strong>timeSeriesId</strong>: Filter by time series (specify one, not both)</li>
|
|
34
|
+
* <li><strong>status</strong>: Filter by job status (e.g., RUNNING to find active jobs)</li>
|
|
35
|
+
* <li><strong>jobType</strong>: Filter by enrichment type (currently only EVENT_DETECTION)</li>
|
|
36
|
+
* <li><strong>startDate</strong> and <strong>endDate</strong>: Filter by job creation time range</li>
|
|
37
|
+
* </ul>
|
|
38
|
+
* <h2>Important Constraints</h2>
|
|
39
|
+
* <ul>
|
|
40
|
+
* <li>You must specify either propertyAlias OR timeSeriesId, but not both</li>
|
|
41
|
+
* <li>Attempting to specify both results in an InvalidRequestException</li>
|
|
42
|
+
* <li>Date filters use ISO 8601 format</li>
|
|
43
|
+
* <li>startDate is exclusive, endDate is inclusive</li>
|
|
44
|
+
* </ul>
|
|
45
|
+
* <h2>Pagination</h2>
|
|
46
|
+
* <p>The operation returns up to maxResults jobs per page (default 50). If more results exist, the
|
|
47
|
+
* response includes a nextToken. Submit this token in a subsequent request to retrieve the next page.</p>
|
|
48
|
+
* <h2>Common Use Cases</h2>
|
|
49
|
+
* <ul>
|
|
50
|
+
* <li>Find all running jobs: Filter by status=RUNNING</li>
|
|
51
|
+
* <li>List recent jobs for a dataset: Filter by datasetId with optional date range</li>
|
|
52
|
+
* <li>Monitor jobs for a specific sensor: Filter by propertyAlias or timeSeriesId</li>
|
|
53
|
+
* <li>Track all event detection jobs: Filter by jobType=EVENT_DETECTION</li>
|
|
54
|
+
* </ul>
|
|
55
|
+
* <h2>Performance</h2>
|
|
56
|
+
* <p>Performance is optimal when filtering by supported fields (datasetId, propertyAlias, timeSeriesId, status, jobType).</p>
|
|
57
|
+
* @example
|
|
58
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
59
|
+
* ```javascript
|
|
60
|
+
* import { IoTSiteWiseClient, ListEnrichmentJobsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
61
|
+
* // const { IoTSiteWiseClient, ListEnrichmentJobsCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
62
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
63
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
64
|
+
* const client = new IoTSiteWiseClient(config);
|
|
65
|
+
* const input = { // ListEnrichmentJobsRequest
|
|
66
|
+
* workspaceName: "STRING_VALUE", // required
|
|
67
|
+
* datasetId: "STRING_VALUE",
|
|
68
|
+
* propertyAlias: "STRING_VALUE",
|
|
69
|
+
* timeSeriesId: "STRING_VALUE",
|
|
70
|
+
* status: "PENDING" || "RUNNING" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELLED",
|
|
71
|
+
* jobType: "EVENT_DETECTION",
|
|
72
|
+
* startDate: new Date("TIMESTAMP"),
|
|
73
|
+
* endDate: new Date("TIMESTAMP"),
|
|
74
|
+
* maxResults: Number("int"),
|
|
75
|
+
* nextToken: "STRING_VALUE",
|
|
76
|
+
* };
|
|
77
|
+
* const command = new ListEnrichmentJobsCommand(input);
|
|
78
|
+
* const response = await client.send(command);
|
|
79
|
+
* // { // ListEnrichmentJobsResponse
|
|
80
|
+
* // jobs: [ // EnrichmentJobSummaries // required
|
|
81
|
+
* // { // EnrichmentJobSummary
|
|
82
|
+
* // jobId: "STRING_VALUE", // required
|
|
83
|
+
* // status: "PENDING" || "RUNNING" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELLED", // required
|
|
84
|
+
* // workspaceName: "STRING_VALUE", // required
|
|
85
|
+
* // jobType: "EVENT_DETECTION", // required
|
|
86
|
+
* // datasetId: "STRING_VALUE", // required
|
|
87
|
+
* // propertyAlias: "STRING_VALUE",
|
|
88
|
+
* // timeSeriesId: "STRING_VALUE",
|
|
89
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
90
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // nextToken: "STRING_VALUE",
|
|
94
|
+
* // };
|
|
95
|
+
*
|
|
96
|
+
* ```
|
|
97
|
+
*
|
|
98
|
+
* @param ListEnrichmentJobsCommandInput - {@link ListEnrichmentJobsCommandInput}
|
|
99
|
+
* @returns {@link ListEnrichmentJobsCommandOutput}
|
|
100
|
+
* @see {@link ListEnrichmentJobsCommandInput} for command's `input` shape.
|
|
101
|
+
* @see {@link ListEnrichmentJobsCommandOutput} for command's `response` shape.
|
|
102
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
105
|
+
* <p>Access is denied.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
108
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
109
|
+
* than one operation on the same resource at the same time.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
112
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
115
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
116
|
+
* unsupported characters. Check your request and try again.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
119
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
120
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
121
|
+
* allowed number of properties for an asset model.</p>
|
|
122
|
+
* <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>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
125
|
+
* <p>The requested resource can't be found.</p>
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
128
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
129
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
130
|
+
* on.</p>
|
|
131
|
+
* <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>
|
|
132
|
+
*
|
|
133
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
135
|
+
*
|
|
136
|
+
*
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export declare class ListEnrichmentJobsCommand extends ListEnrichmentJobsCommand_base {
|
|
140
|
+
/** @internal type navigation helper, not in runtime. */
|
|
141
|
+
protected static __types: {
|
|
142
|
+
api: {
|
|
143
|
+
input: ListEnrichmentJobsRequest;
|
|
144
|
+
output: ListEnrichmentJobsResponse;
|
|
145
|
+
};
|
|
146
|
+
sdk: {
|
|
147
|
+
input: ListEnrichmentJobsCommandInput;
|
|
148
|
+
output: ListEnrichmentJobsCommandOutput;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
}
|