@aws-sdk/client-iotsitewise 3.1097.0 → 3.1099.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
package/dist-es/IoTSiteWise.js
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { AssociateAssetsCommand, } from "./commands/AssociateAssetsCommand";
|
|
3
3
|
import { AssociateTimeSeriesToAssetPropertyCommand, } from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
4
|
+
import { BatchAssociateDataSegmentsToDatasetCommand, } from "./commands/BatchAssociateDataSegmentsToDatasetCommand";
|
|
4
5
|
import { BatchAssociateProjectAssetsCommand, } from "./commands/BatchAssociateProjectAssetsCommand";
|
|
6
|
+
import { BatchDeleteDatasetDataSegmentsCommand, } from "./commands/BatchDeleteDatasetDataSegmentsCommand";
|
|
7
|
+
import { BatchDisassociateDataSegmentsFromDatasetCommand, } from "./commands/BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
5
8
|
import { BatchDisassociateProjectAssetsCommand, } from "./commands/BatchDisassociateProjectAssetsCommand";
|
|
6
9
|
import { BatchGetAssetPropertyAggregatesCommand, } from "./commands/BatchGetAssetPropertyAggregatesCommand";
|
|
7
10
|
import { BatchGetAssetPropertyValueCommand, } from "./commands/BatchGetAssetPropertyValueCommand";
|
|
8
11
|
import { BatchGetAssetPropertyValueHistoryCommand, } from "./commands/BatchGetAssetPropertyValueHistoryCommand";
|
|
9
12
|
import { BatchPutAssetPropertyValueCommand, } from "./commands/BatchPutAssetPropertyValueCommand";
|
|
13
|
+
import { CancelEnrichmentJobCommand, } from "./commands/CancelEnrichmentJobCommand";
|
|
14
|
+
import { CancelPipelineExecutionCommand, } from "./commands/CancelPipelineExecutionCommand";
|
|
15
|
+
import { CancelQueryCommand, } from "./commands/CancelQueryCommand";
|
|
10
16
|
import { CreateAccessPolicyCommand, } from "./commands/CreateAccessPolicyCommand";
|
|
17
|
+
import { CreateApplicationCommand, } from "./commands/CreateApplicationCommand";
|
|
11
18
|
import { CreateAssetCommand, } from "./commands/CreateAssetCommand";
|
|
12
19
|
import { CreateAssetModelCommand, } from "./commands/CreateAssetModelCommand";
|
|
13
20
|
import { CreateAssetModelCompositeModelCommand, } from "./commands/CreateAssetModelCompositeModelCommand";
|
|
@@ -15,10 +22,16 @@ import { CreateBulkImportJobCommand, } from "./commands/CreateBulkImportJobComma
|
|
|
15
22
|
import { CreateComputationModelCommand, } from "./commands/CreateComputationModelCommand";
|
|
16
23
|
import { CreateDashboardCommand, } from "./commands/CreateDashboardCommand";
|
|
17
24
|
import { CreateDatasetCommand, } from "./commands/CreateDatasetCommand";
|
|
25
|
+
import { CreateDatasetExportJobCommand, } from "./commands/CreateDatasetExportJobCommand";
|
|
26
|
+
import { CreateEnrichmentJobCommand, } from "./commands/CreateEnrichmentJobCommand";
|
|
18
27
|
import { CreateGatewayCommand, } from "./commands/CreateGatewayCommand";
|
|
28
|
+
import { CreatePipelineCommand, } from "./commands/CreatePipelineCommand";
|
|
19
29
|
import { CreatePortalCommand, } from "./commands/CreatePortalCommand";
|
|
20
30
|
import { CreateProjectCommand, } from "./commands/CreateProjectCommand";
|
|
31
|
+
import { CreateTaskCommand, } from "./commands/CreateTaskCommand";
|
|
32
|
+
import { CreateWorkspaceCommand, } from "./commands/CreateWorkspaceCommand";
|
|
21
33
|
import { DeleteAccessPolicyCommand, } from "./commands/DeleteAccessPolicyCommand";
|
|
34
|
+
import { DeleteApplicationCommand, } from "./commands/DeleteApplicationCommand";
|
|
22
35
|
import { DeleteAssetCommand, } from "./commands/DeleteAssetCommand";
|
|
23
36
|
import { DeleteAssetModelCommand, } from "./commands/DeleteAssetModelCommand";
|
|
24
37
|
import { DeleteAssetModelCompositeModelCommand, } from "./commands/DeleteAssetModelCompositeModelCommand";
|
|
@@ -27,11 +40,15 @@ import { DeleteComputationModelCommand, } from "./commands/DeleteComputationMode
|
|
|
27
40
|
import { DeleteDashboardCommand, } from "./commands/DeleteDashboardCommand";
|
|
28
41
|
import { DeleteDatasetCommand, } from "./commands/DeleteDatasetCommand";
|
|
29
42
|
import { DeleteGatewayCommand, } from "./commands/DeleteGatewayCommand";
|
|
43
|
+
import { DeletePipelineCommand, } from "./commands/DeletePipelineCommand";
|
|
30
44
|
import { DeletePortalCommand, } from "./commands/DeletePortalCommand";
|
|
31
45
|
import { DeleteProjectCommand, } from "./commands/DeleteProjectCommand";
|
|
46
|
+
import { DeleteTaskCommand, } from "./commands/DeleteTaskCommand";
|
|
32
47
|
import { DeleteTimeSeriesCommand, } from "./commands/DeleteTimeSeriesCommand";
|
|
48
|
+
import { DeleteWorkspaceCommand, } from "./commands/DeleteWorkspaceCommand";
|
|
33
49
|
import { DescribeAccessPolicyCommand, } from "./commands/DescribeAccessPolicyCommand";
|
|
34
50
|
import { DescribeActionCommand, } from "./commands/DescribeActionCommand";
|
|
51
|
+
import { DescribeApplicationCommand, } from "./commands/DescribeApplicationCommand";
|
|
35
52
|
import { DescribeAssetCommand, } from "./commands/DescribeAssetCommand";
|
|
36
53
|
import { DescribeAssetCompositeModelCommand, } from "./commands/DescribeAssetCompositeModelCommand";
|
|
37
54
|
import { DescribeAssetModelCommand, } from "./commands/DescribeAssetModelCommand";
|
|
@@ -43,15 +60,23 @@ import { DescribeComputationModelCommand, } from "./commands/DescribeComputation
|
|
|
43
60
|
import { DescribeComputationModelExecutionSummaryCommand, } from "./commands/DescribeComputationModelExecutionSummaryCommand";
|
|
44
61
|
import { DescribeDashboardCommand, } from "./commands/DescribeDashboardCommand";
|
|
45
62
|
import { DescribeDatasetCommand, } from "./commands/DescribeDatasetCommand";
|
|
63
|
+
import { DescribeDatasetExportJobCommand, } from "./commands/DescribeDatasetExportJobCommand";
|
|
46
64
|
import { DescribeDefaultEncryptionConfigurationCommand, } from "./commands/DescribeDefaultEncryptionConfigurationCommand";
|
|
65
|
+
import { DescribeEnrichmentJobCommand, } from "./commands/DescribeEnrichmentJobCommand";
|
|
47
66
|
import { DescribeExecutionCommand, } from "./commands/DescribeExecutionCommand";
|
|
48
67
|
import { DescribeGatewayCapabilityConfigurationCommand, } from "./commands/DescribeGatewayCapabilityConfigurationCommand";
|
|
49
68
|
import { DescribeGatewayCommand, } from "./commands/DescribeGatewayCommand";
|
|
50
69
|
import { DescribeLoggingOptionsCommand, } from "./commands/DescribeLoggingOptionsCommand";
|
|
70
|
+
import { DescribePipelineCommand, } from "./commands/DescribePipelineCommand";
|
|
71
|
+
import { DescribePipelineExecutionCommand, } from "./commands/DescribePipelineExecutionCommand";
|
|
51
72
|
import { DescribePortalCommand, } from "./commands/DescribePortalCommand";
|
|
52
73
|
import { DescribeProjectCommand, } from "./commands/DescribeProjectCommand";
|
|
74
|
+
import { DescribeQueryCommand, } from "./commands/DescribeQueryCommand";
|
|
75
|
+
import { DescribeSearchCommand, } from "./commands/DescribeSearchCommand";
|
|
53
76
|
import { DescribeStorageConfigurationCommand, } from "./commands/DescribeStorageConfigurationCommand";
|
|
77
|
+
import { DescribeTaskCommand, } from "./commands/DescribeTaskCommand";
|
|
54
78
|
import { DescribeTimeSeriesCommand, } from "./commands/DescribeTimeSeriesCommand";
|
|
79
|
+
import { DescribeWorkspaceCommand, } from "./commands/DescribeWorkspaceCommand";
|
|
55
80
|
import { DisassociateAssetsCommand, } from "./commands/DisassociateAssetsCommand";
|
|
56
81
|
import { DisassociateTimeSeriesFromAssetPropertyCommand, } from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
57
82
|
import { ExecuteActionCommand, } from "./commands/ExecuteActionCommand";
|
|
@@ -59,10 +84,14 @@ import { ExecuteQueryCommand, } from "./commands/ExecuteQueryCommand";
|
|
|
59
84
|
import { GetAssetPropertyAggregatesCommand, } from "./commands/GetAssetPropertyAggregatesCommand";
|
|
60
85
|
import { GetAssetPropertyValueCommand, } from "./commands/GetAssetPropertyValueCommand";
|
|
61
86
|
import { GetAssetPropertyValueHistoryCommand, } from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
87
|
+
import { GetCaptureDataCommand, } from "./commands/GetCaptureDataCommand";
|
|
62
88
|
import { GetInterpolatedAssetPropertyValuesCommand, } from "./commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
89
|
+
import { GetQueryResultsCommand, } from "./commands/GetQueryResultsCommand";
|
|
90
|
+
import { GetSearchResultsCommand, } from "./commands/GetSearchResultsCommand";
|
|
63
91
|
import { InvokeAssistantCommand, } from "./commands/InvokeAssistantCommand";
|
|
64
92
|
import { ListAccessPoliciesCommand, } from "./commands/ListAccessPoliciesCommand";
|
|
65
93
|
import { ListActionsCommand, } from "./commands/ListActionsCommand";
|
|
94
|
+
import { ListApplicationsCommand, } from "./commands/ListApplicationsCommand";
|
|
66
95
|
import { ListAssetModelCompositeModelsCommand, } from "./commands/ListAssetModelCompositeModelsCommand";
|
|
67
96
|
import { ListAssetModelPropertiesCommand, } from "./commands/ListAssetModelPropertiesCommand";
|
|
68
97
|
import { ListAssetModelsCommand, } from "./commands/ListAssetModelsCommand";
|
|
@@ -76,19 +105,32 @@ import { ListComputationModelDataBindingUsagesCommand, } from "./commands/ListCo
|
|
|
76
105
|
import { ListComputationModelResolveToResourcesCommand, } from "./commands/ListComputationModelResolveToResourcesCommand";
|
|
77
106
|
import { ListComputationModelsCommand, } from "./commands/ListComputationModelsCommand";
|
|
78
107
|
import { ListDashboardsCommand, } from "./commands/ListDashboardsCommand";
|
|
108
|
+
import { ListDatasetDataSegmentRelationshipsCommand, } from "./commands/ListDatasetDataSegmentRelationshipsCommand";
|
|
109
|
+
import { ListDatasetDataSegmentsCommand, } from "./commands/ListDatasetDataSegmentsCommand";
|
|
110
|
+
import { ListDatasetExportJobsCommand, } from "./commands/ListDatasetExportJobsCommand";
|
|
79
111
|
import { ListDatasetsCommand, } from "./commands/ListDatasetsCommand";
|
|
112
|
+
import { ListEnrichmentJobsCommand, } from "./commands/ListEnrichmentJobsCommand";
|
|
80
113
|
import { ListExecutionsCommand, } from "./commands/ListExecutionsCommand";
|
|
81
114
|
import { ListGatewaysCommand, } from "./commands/ListGatewaysCommand";
|
|
82
115
|
import { ListInterfaceRelationshipsCommand, } from "./commands/ListInterfaceRelationshipsCommand";
|
|
116
|
+
import { ListPipelineExecutionsCommand, } from "./commands/ListPipelineExecutionsCommand";
|
|
117
|
+
import { ListPipelinesCommand, } from "./commands/ListPipelinesCommand";
|
|
83
118
|
import { ListPortalsCommand, } from "./commands/ListPortalsCommand";
|
|
84
119
|
import { ListProjectAssetsCommand, } from "./commands/ListProjectAssetsCommand";
|
|
85
120
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
121
|
+
import { ListQueriesCommand, } from "./commands/ListQueriesCommand";
|
|
122
|
+
import { ListSearchesCommand, } from "./commands/ListSearchesCommand";
|
|
86
123
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
124
|
+
import { ListTasksCommand } from "./commands/ListTasksCommand";
|
|
87
125
|
import { ListTimeSeriesCommand, } from "./commands/ListTimeSeriesCommand";
|
|
126
|
+
import { ListWorkspacesCommand, } from "./commands/ListWorkspacesCommand";
|
|
88
127
|
import { PutAssetModelInterfaceRelationshipCommand, } from "./commands/PutAssetModelInterfaceRelationshipCommand";
|
|
89
128
|
import { PutDefaultEncryptionConfigurationCommand, } from "./commands/PutDefaultEncryptionConfigurationCommand";
|
|
90
129
|
import { PutLoggingOptionsCommand, } from "./commands/PutLoggingOptionsCommand";
|
|
91
130
|
import { PutStorageConfigurationCommand, } from "./commands/PutStorageConfigurationCommand";
|
|
131
|
+
import { StartPipelineExecutionCommand, } from "./commands/StartPipelineExecutionCommand";
|
|
132
|
+
import { StartQueryCommand, } from "./commands/StartQueryCommand";
|
|
133
|
+
import { StartSearchCommand, } from "./commands/StartSearchCommand";
|
|
92
134
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
93
135
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
94
136
|
import { UpdateAccessPolicyCommand, } from "./commands/UpdateAccessPolicyCommand";
|
|
@@ -101,18 +143,25 @@ import { UpdateDashboardCommand, } from "./commands/UpdateDashboardCommand";
|
|
|
101
143
|
import { UpdateDatasetCommand, } from "./commands/UpdateDatasetCommand";
|
|
102
144
|
import { UpdateGatewayCapabilityConfigurationCommand, } from "./commands/UpdateGatewayCapabilityConfigurationCommand";
|
|
103
145
|
import { UpdateGatewayCommand, } from "./commands/UpdateGatewayCommand";
|
|
146
|
+
import { UpdatePipelineCommand, } from "./commands/UpdatePipelineCommand";
|
|
104
147
|
import { UpdatePortalCommand, } from "./commands/UpdatePortalCommand";
|
|
105
148
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
149
|
+
import { UpdateTaskCommand, } from "./commands/UpdateTaskCommand";
|
|
150
|
+
import { UpdateWorkspaceCommand, } from "./commands/UpdateWorkspaceCommand";
|
|
106
151
|
import { IoTSiteWiseClient } from "./IoTSiteWiseClient";
|
|
107
152
|
import { paginateBatchGetAssetPropertyAggregates } from "./pagination/BatchGetAssetPropertyAggregatesPaginator";
|
|
108
153
|
import { paginateBatchGetAssetPropertyValueHistory } from "./pagination/BatchGetAssetPropertyValueHistoryPaginator";
|
|
109
154
|
import { paginateBatchGetAssetPropertyValue } from "./pagination/BatchGetAssetPropertyValuePaginator";
|
|
155
|
+
import { paginateDescribePipelineExecution } from "./pagination/DescribePipelineExecutionPaginator";
|
|
110
156
|
import { paginateExecuteQuery } from "./pagination/ExecuteQueryPaginator";
|
|
111
157
|
import { paginateGetAssetPropertyAggregates } from "./pagination/GetAssetPropertyAggregatesPaginator";
|
|
112
158
|
import { paginateGetAssetPropertyValueHistory } from "./pagination/GetAssetPropertyValueHistoryPaginator";
|
|
113
159
|
import { paginateGetInterpolatedAssetPropertyValues } from "./pagination/GetInterpolatedAssetPropertyValuesPaginator";
|
|
160
|
+
import { paginateGetQueryResults } from "./pagination/GetQueryResultsPaginator";
|
|
161
|
+
import { paginateGetSearchResults } from "./pagination/GetSearchResultsPaginator";
|
|
114
162
|
import { paginateListAccessPolicies } from "./pagination/ListAccessPoliciesPaginator";
|
|
115
163
|
import { paginateListActions } from "./pagination/ListActionsPaginator";
|
|
164
|
+
import { paginateListApplications } from "./pagination/ListApplicationsPaginator";
|
|
116
165
|
import { paginateListAssetModelCompositeModels } from "./pagination/ListAssetModelCompositeModelsPaginator";
|
|
117
166
|
import { paginateListAssetModelProperties } from "./pagination/ListAssetModelPropertiesPaginator";
|
|
118
167
|
import { paginateListAssetModels } from "./pagination/ListAssetModelsPaginator";
|
|
@@ -126,14 +175,24 @@ import { paginateListComputationModelDataBindingUsages, } from "./pagination/Lis
|
|
|
126
175
|
import { paginateListComputationModelResolveToResources, } from "./pagination/ListComputationModelResolveToResourcesPaginator";
|
|
127
176
|
import { paginateListComputationModels } from "./pagination/ListComputationModelsPaginator";
|
|
128
177
|
import { paginateListDashboards } from "./pagination/ListDashboardsPaginator";
|
|
178
|
+
import { paginateListDatasetDataSegmentRelationships } from "./pagination/ListDatasetDataSegmentRelationshipsPaginator";
|
|
179
|
+
import { paginateListDatasetDataSegments } from "./pagination/ListDatasetDataSegmentsPaginator";
|
|
180
|
+
import { paginateListDatasetExportJobs } from "./pagination/ListDatasetExportJobsPaginator";
|
|
129
181
|
import { paginateListDatasets } from "./pagination/ListDatasetsPaginator";
|
|
182
|
+
import { paginateListEnrichmentJobs } from "./pagination/ListEnrichmentJobsPaginator";
|
|
130
183
|
import { paginateListExecutions } from "./pagination/ListExecutionsPaginator";
|
|
131
184
|
import { paginateListGateways } from "./pagination/ListGatewaysPaginator";
|
|
132
185
|
import { paginateListInterfaceRelationships } from "./pagination/ListInterfaceRelationshipsPaginator";
|
|
186
|
+
import { paginateListPipelineExecutions } from "./pagination/ListPipelineExecutionsPaginator";
|
|
187
|
+
import { paginateListPipelines } from "./pagination/ListPipelinesPaginator";
|
|
133
188
|
import { paginateListPortals } from "./pagination/ListPortalsPaginator";
|
|
134
189
|
import { paginateListProjectAssets } from "./pagination/ListProjectAssetsPaginator";
|
|
135
190
|
import { paginateListProjects } from "./pagination/ListProjectsPaginator";
|
|
191
|
+
import { paginateListQueries } from "./pagination/ListQueriesPaginator";
|
|
192
|
+
import { paginateListSearches } from "./pagination/ListSearchesPaginator";
|
|
193
|
+
import { paginateListTasks } from "./pagination/ListTasksPaginator";
|
|
136
194
|
import { paginateListTimeSeries } from "./pagination/ListTimeSeriesPaginator";
|
|
195
|
+
import { paginateListWorkspaces } from "./pagination/ListWorkspacesPaginator";
|
|
137
196
|
import { waitUntilAssetActive } from "./waiters/waitForAssetActive";
|
|
138
197
|
import { waitUntilAssetModelActive } from "./waiters/waitForAssetModelActive";
|
|
139
198
|
import { waitUntilAssetModelNotExists } from "./waiters/waitForAssetModelNotExists";
|
|
@@ -143,13 +202,20 @@ import { waitUntilPortalNotExists } from "./waiters/waitForPortalNotExists";
|
|
|
143
202
|
const commands = {
|
|
144
203
|
AssociateAssetsCommand,
|
|
145
204
|
AssociateTimeSeriesToAssetPropertyCommand,
|
|
205
|
+
BatchAssociateDataSegmentsToDatasetCommand,
|
|
146
206
|
BatchAssociateProjectAssetsCommand,
|
|
207
|
+
BatchDeleteDatasetDataSegmentsCommand,
|
|
208
|
+
BatchDisassociateDataSegmentsFromDatasetCommand,
|
|
147
209
|
BatchDisassociateProjectAssetsCommand,
|
|
148
210
|
BatchGetAssetPropertyAggregatesCommand,
|
|
149
211
|
BatchGetAssetPropertyValueCommand,
|
|
150
212
|
BatchGetAssetPropertyValueHistoryCommand,
|
|
151
213
|
BatchPutAssetPropertyValueCommand,
|
|
214
|
+
CancelEnrichmentJobCommand,
|
|
215
|
+
CancelPipelineExecutionCommand,
|
|
216
|
+
CancelQueryCommand,
|
|
152
217
|
CreateAccessPolicyCommand,
|
|
218
|
+
CreateApplicationCommand,
|
|
153
219
|
CreateAssetCommand,
|
|
154
220
|
CreateAssetModelCommand,
|
|
155
221
|
CreateAssetModelCompositeModelCommand,
|
|
@@ -157,10 +223,16 @@ const commands = {
|
|
|
157
223
|
CreateComputationModelCommand,
|
|
158
224
|
CreateDashboardCommand,
|
|
159
225
|
CreateDatasetCommand,
|
|
226
|
+
CreateDatasetExportJobCommand,
|
|
227
|
+
CreateEnrichmentJobCommand,
|
|
160
228
|
CreateGatewayCommand,
|
|
229
|
+
CreatePipelineCommand,
|
|
161
230
|
CreatePortalCommand,
|
|
162
231
|
CreateProjectCommand,
|
|
232
|
+
CreateTaskCommand,
|
|
233
|
+
CreateWorkspaceCommand,
|
|
163
234
|
DeleteAccessPolicyCommand,
|
|
235
|
+
DeleteApplicationCommand,
|
|
164
236
|
DeleteAssetCommand,
|
|
165
237
|
DeleteAssetModelCommand,
|
|
166
238
|
DeleteAssetModelCompositeModelCommand,
|
|
@@ -169,11 +241,15 @@ const commands = {
|
|
|
169
241
|
DeleteDashboardCommand,
|
|
170
242
|
DeleteDatasetCommand,
|
|
171
243
|
DeleteGatewayCommand,
|
|
244
|
+
DeletePipelineCommand,
|
|
172
245
|
DeletePortalCommand,
|
|
173
246
|
DeleteProjectCommand,
|
|
247
|
+
DeleteTaskCommand,
|
|
174
248
|
DeleteTimeSeriesCommand,
|
|
249
|
+
DeleteWorkspaceCommand,
|
|
175
250
|
DescribeAccessPolicyCommand,
|
|
176
251
|
DescribeActionCommand,
|
|
252
|
+
DescribeApplicationCommand,
|
|
177
253
|
DescribeAssetCommand,
|
|
178
254
|
DescribeAssetCompositeModelCommand,
|
|
179
255
|
DescribeAssetModelCommand,
|
|
@@ -185,15 +261,23 @@ const commands = {
|
|
|
185
261
|
DescribeComputationModelExecutionSummaryCommand,
|
|
186
262
|
DescribeDashboardCommand,
|
|
187
263
|
DescribeDatasetCommand,
|
|
264
|
+
DescribeDatasetExportJobCommand,
|
|
188
265
|
DescribeDefaultEncryptionConfigurationCommand,
|
|
266
|
+
DescribeEnrichmentJobCommand,
|
|
189
267
|
DescribeExecutionCommand,
|
|
190
268
|
DescribeGatewayCommand,
|
|
191
269
|
DescribeGatewayCapabilityConfigurationCommand,
|
|
192
270
|
DescribeLoggingOptionsCommand,
|
|
271
|
+
DescribePipelineCommand,
|
|
272
|
+
DescribePipelineExecutionCommand,
|
|
193
273
|
DescribePortalCommand,
|
|
194
274
|
DescribeProjectCommand,
|
|
275
|
+
DescribeQueryCommand,
|
|
276
|
+
DescribeSearchCommand,
|
|
195
277
|
DescribeStorageConfigurationCommand,
|
|
278
|
+
DescribeTaskCommand,
|
|
196
279
|
DescribeTimeSeriesCommand,
|
|
280
|
+
DescribeWorkspaceCommand,
|
|
197
281
|
DisassociateAssetsCommand,
|
|
198
282
|
DisassociateTimeSeriesFromAssetPropertyCommand,
|
|
199
283
|
ExecuteActionCommand,
|
|
@@ -201,10 +285,14 @@ const commands = {
|
|
|
201
285
|
GetAssetPropertyAggregatesCommand,
|
|
202
286
|
GetAssetPropertyValueCommand,
|
|
203
287
|
GetAssetPropertyValueHistoryCommand,
|
|
288
|
+
GetCaptureDataCommand,
|
|
204
289
|
GetInterpolatedAssetPropertyValuesCommand,
|
|
290
|
+
GetQueryResultsCommand,
|
|
291
|
+
GetSearchResultsCommand,
|
|
205
292
|
InvokeAssistantCommand,
|
|
206
293
|
ListAccessPoliciesCommand,
|
|
207
294
|
ListActionsCommand,
|
|
295
|
+
ListApplicationsCommand,
|
|
208
296
|
ListAssetModelCompositeModelsCommand,
|
|
209
297
|
ListAssetModelPropertiesCommand,
|
|
210
298
|
ListAssetModelsCommand,
|
|
@@ -218,19 +306,32 @@ const commands = {
|
|
|
218
306
|
ListComputationModelResolveToResourcesCommand,
|
|
219
307
|
ListComputationModelsCommand,
|
|
220
308
|
ListDashboardsCommand,
|
|
309
|
+
ListDatasetDataSegmentRelationshipsCommand,
|
|
310
|
+
ListDatasetDataSegmentsCommand,
|
|
311
|
+
ListDatasetExportJobsCommand,
|
|
221
312
|
ListDatasetsCommand,
|
|
313
|
+
ListEnrichmentJobsCommand,
|
|
222
314
|
ListExecutionsCommand,
|
|
223
315
|
ListGatewaysCommand,
|
|
224
316
|
ListInterfaceRelationshipsCommand,
|
|
317
|
+
ListPipelineExecutionsCommand,
|
|
318
|
+
ListPipelinesCommand,
|
|
225
319
|
ListPortalsCommand,
|
|
226
320
|
ListProjectAssetsCommand,
|
|
227
321
|
ListProjectsCommand,
|
|
322
|
+
ListQueriesCommand,
|
|
323
|
+
ListSearchesCommand,
|
|
228
324
|
ListTagsForResourceCommand,
|
|
325
|
+
ListTasksCommand,
|
|
229
326
|
ListTimeSeriesCommand,
|
|
327
|
+
ListWorkspacesCommand,
|
|
230
328
|
PutAssetModelInterfaceRelationshipCommand,
|
|
231
329
|
PutDefaultEncryptionConfigurationCommand,
|
|
232
330
|
PutLoggingOptionsCommand,
|
|
233
331
|
PutStorageConfigurationCommand,
|
|
332
|
+
StartPipelineExecutionCommand,
|
|
333
|
+
StartQueryCommand,
|
|
334
|
+
StartSearchCommand,
|
|
234
335
|
TagResourceCommand,
|
|
235
336
|
UntagResourceCommand,
|
|
236
337
|
UpdateAccessPolicyCommand,
|
|
@@ -243,19 +344,26 @@ const commands = {
|
|
|
243
344
|
UpdateDatasetCommand,
|
|
244
345
|
UpdateGatewayCommand,
|
|
245
346
|
UpdateGatewayCapabilityConfigurationCommand,
|
|
347
|
+
UpdatePipelineCommand,
|
|
246
348
|
UpdatePortalCommand,
|
|
247
349
|
UpdateProjectCommand,
|
|
350
|
+
UpdateTaskCommand,
|
|
351
|
+
UpdateWorkspaceCommand,
|
|
248
352
|
};
|
|
249
353
|
const paginators = {
|
|
250
354
|
paginateBatchGetAssetPropertyAggregates,
|
|
251
355
|
paginateBatchGetAssetPropertyValue,
|
|
252
356
|
paginateBatchGetAssetPropertyValueHistory,
|
|
357
|
+
paginateDescribePipelineExecution,
|
|
253
358
|
paginateExecuteQuery,
|
|
254
359
|
paginateGetAssetPropertyAggregates,
|
|
255
360
|
paginateGetAssetPropertyValueHistory,
|
|
256
361
|
paginateGetInterpolatedAssetPropertyValues,
|
|
362
|
+
paginateGetQueryResults,
|
|
363
|
+
paginateGetSearchResults,
|
|
257
364
|
paginateListAccessPolicies,
|
|
258
365
|
paginateListActions,
|
|
366
|
+
paginateListApplications,
|
|
259
367
|
paginateListAssetModelCompositeModels,
|
|
260
368
|
paginateListAssetModelProperties,
|
|
261
369
|
paginateListAssetModels,
|
|
@@ -269,14 +377,24 @@ const paginators = {
|
|
|
269
377
|
paginateListComputationModelResolveToResources,
|
|
270
378
|
paginateListComputationModels,
|
|
271
379
|
paginateListDashboards,
|
|
380
|
+
paginateListDatasetDataSegmentRelationships,
|
|
381
|
+
paginateListDatasetDataSegments,
|
|
382
|
+
paginateListDatasetExportJobs,
|
|
272
383
|
paginateListDatasets,
|
|
384
|
+
paginateListEnrichmentJobs,
|
|
273
385
|
paginateListExecutions,
|
|
274
386
|
paginateListGateways,
|
|
275
387
|
paginateListInterfaceRelationships,
|
|
388
|
+
paginateListPipelineExecutions,
|
|
389
|
+
paginateListPipelines,
|
|
276
390
|
paginateListPortals,
|
|
277
391
|
paginateListProjectAssets,
|
|
278
392
|
paginateListProjects,
|
|
393
|
+
paginateListQueries,
|
|
394
|
+
paginateListSearches,
|
|
395
|
+
paginateListTasks,
|
|
279
396
|
paginateListTimeSeries,
|
|
397
|
+
paginateListWorkspaces,
|
|
280
398
|
};
|
|
281
399
|
const waiters = {
|
|
282
400
|
waitUntilAssetActive,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { BatchAssociateDataSegmentsToDataset$ } from "../schemas/schemas_0";
|
|
3
|
+
export class BatchAssociateDataSegmentsToDatasetCommand extends command(_ep0, _mw0, "BatchAssociateDataSegmentsToDataset", BatchAssociateDataSegmentsToDataset$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { BatchDeleteDatasetDataSegments$ } from "../schemas/schemas_0";
|
|
3
|
+
export class BatchDeleteDatasetDataSegmentsCommand extends command(_ep0, _mw0, "BatchDeleteDatasetDataSegments", BatchDeleteDatasetDataSegments$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { BatchDisassociateDataSegmentsFromDataset$ } from "../schemas/schemas_0";
|
|
3
|
+
export class BatchDisassociateDataSegmentsFromDatasetCommand extends command(_ep0, _mw0, "BatchDisassociateDataSegmentsFromDataset", BatchDisassociateDataSegmentsFromDataset$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { ListDatasetDataSegmentRelationships$ } from "../schemas/schemas_0";
|
|
3
|
+
export class ListDatasetDataSegmentRelationshipsCommand extends command(_ep0, _mw0, "ListDatasetDataSegmentRelationships", ListDatasetDataSegmentRelationships$) {
|
|
4
|
+
}
|