@aws-sdk/client-iotsitewise 3.1097.0 → 3.1098.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +315 -0
- package/dist-cjs/index.js +2189 -237
- package/dist-es/IoTSiteWise.js +118 -0
- package/dist-es/commands/BatchAssociateDataSegmentsToDatasetCommand.js +4 -0
- package/dist-es/commands/BatchDeleteDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/BatchDisassociateDataSegmentsFromDatasetCommand.js +4 -0
- package/dist-es/commands/CancelEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CancelPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/CancelQueryCommand.js +4 -0
- package/dist-es/commands/CreateApplicationCommand.js +4 -0
- package/dist-es/commands/CreateDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/CreateEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CreatePipelineCommand.js +4 -0
- package/dist-es/commands/CreateTaskCommand.js +4 -0
- package/dist-es/commands/CreateWorkspaceCommand.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +4 -0
- package/dist-es/commands/DeletePipelineCommand.js +4 -0
- package/dist-es/commands/DeleteTaskCommand.js +4 -0
- package/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
- package/dist-es/commands/DescribeApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/DescribeEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/DescribePipelineCommand.js +4 -0
- package/dist-es/commands/DescribePipelineExecutionCommand.js +4 -0
- package/dist-es/commands/DescribeQueryCommand.js +4 -0
- package/dist-es/commands/DescribeSearchCommand.js +4 -0
- package/dist-es/commands/DescribeTaskCommand.js +4 -0
- package/dist-es/commands/DescribeWorkspaceCommand.js +4 -0
- package/dist-es/commands/GetCaptureDataCommand.js +4 -0
- package/dist-es/commands/GetQueryResultsCommand.js +4 -0
- package/dist-es/commands/GetSearchResultsCommand.js +4 -0
- package/dist-es/commands/ListApplicationsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentRelationshipsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/ListDatasetExportJobsCommand.js +4 -0
- package/dist-es/commands/ListEnrichmentJobsCommand.js +4 -0
- package/dist-es/commands/ListPipelineExecutionsCommand.js +4 -0
- package/dist-es/commands/ListPipelinesCommand.js +4 -0
- package/dist-es/commands/ListQueriesCommand.js +4 -0
- package/dist-es/commands/ListSearchesCommand.js +4 -0
- package/dist-es/commands/ListTasksCommand.js +4 -0
- package/dist-es/commands/ListWorkspacesCommand.js +4 -0
- package/dist-es/commands/StartPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/StartQueryCommand.js +4 -0
- package/dist-es/commands/StartSearchCommand.js +4 -0
- package/dist-es/commands/UpdatePipelineCommand.js +4 -0
- package/dist-es/commands/UpdateTaskCommand.js +4 -0
- package/dist-es/commands/UpdateWorkspaceCommand.js +4 -0
- package/dist-es/commands/index.js +45 -0
- package/dist-es/models/enums.js +157 -3
- package/dist-es/pagination/DescribePipelineExecutionPaginator.js +4 -0
- package/dist-es/pagination/GetQueryResultsPaginator.js +4 -0
- package/dist-es/pagination/GetSearchResultsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetExportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListEnrichmentJobsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelinesPaginator.js +4 -0
- package/dist-es/pagination/ListQueriesPaginator.js +4 -0
- package/dist-es/pagination/ListSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListTasksPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +14 -0
- package/dist-es/schemas/schemas_0.js +1544 -233
- package/dist-types/IoTSiteWise.d.ts +415 -0
- package/dist-types/IoTSiteWiseClient.d.ts +47 -2
- package/dist-types/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +133 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +125 -0
- package/dist-types/commands/CancelEnrichmentJobCommand.d.ts +124 -0
- package/dist-types/commands/CancelPipelineExecutionCommand.d.ts +103 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +96 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +111 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +28 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -3
- package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +141 -0
- package/dist-types/commands/CreateEnrichmentJobCommand.d.ts +147 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +136 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +133 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +119 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +93 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +104 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +103 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +103 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +100 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +23 -3
- package/dist-types/commands/DescribeDatasetCommand.d.ts +27 -2
- package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +138 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEnrichmentJobCommand.d.ts +151 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +4 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +120 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +156 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +100 -0
- package/dist-types/commands/DescribeSearchCommand.d.ts +102 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +120 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +4 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCaptureDataCommand.d.ts +116 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +104 -0
- package/dist-types/commands/GetSearchResultsCommand.d.ts +118 -0
- package/dist-types/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +2 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +4 -1
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +107 -0
- package/dist-types/commands/ListDatasetDataSegmentsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -2
- package/dist-types/commands/ListEnrichmentJobsCommand.d.ts +151 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +126 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +109 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +101 -0
- package/dist-types/commands/ListSearchesCommand.d.ts +119 -0
- package/dist-types/commands/ListTasksCommand.d.ts +109 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +103 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +118 -0
- package/dist-types/commands/StartQueryCommand.d.ts +97 -0
- package/dist-types/commands/StartSearchCommand.d.ts +131 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +3 -2
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +21 -2
- package/dist-types/commands/UpdatePipelineCommand.d.ts +127 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +7 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +120 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +45 -0
- package/dist-types/models/enums.d.ts +350 -4
- package/dist-types/models/models_0.d.ts +2607 -2755
- package/dist-types/models/models_1.d.ts +4139 -33
- package/dist-types/pagination/DescribePipelineExecutionPaginator.d.ts +7 -0
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/GetSearchResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetExportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnrichmentJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQueriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +14 -0
- package/dist-types/schemas/schemas_0.d.ts +190 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +841 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +248 -2
- package/dist-types/ts3.4/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelPipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateDatasetExportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeDatasetExportJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCaptureDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSearchResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListBulkImportJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetExportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnrichmentJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSearchesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +45 -0
- package/dist-types/ts3.4/models/enums.d.ts +188 -4
- package/dist-types/ts3.4/models/models_0.d.ts +550 -614
- package/dist-types/ts3.4/models/models_1.d.ts +1048 -4
- package/dist-types/ts3.4/pagination/DescribePipelineExecutionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetSearchResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetExportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnrichmentJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -0
- package/package.json +6 -6
|
@@ -2,13 +2,20 @@ import { type WaiterResult } from "@smithy/core/client";
|
|
|
2
2
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
3
3
|
import { type AssociateAssetsCommandInput, type AssociateAssetsCommandOutput } from "./commands/AssociateAssetsCommand";
|
|
4
4
|
import { type AssociateTimeSeriesToAssetPropertyCommandInput, type AssociateTimeSeriesToAssetPropertyCommandOutput } from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
5
|
+
import { type BatchAssociateDataSegmentsToDatasetCommandInput, type BatchAssociateDataSegmentsToDatasetCommandOutput } from "./commands/BatchAssociateDataSegmentsToDatasetCommand";
|
|
5
6
|
import { type BatchAssociateProjectAssetsCommandInput, type BatchAssociateProjectAssetsCommandOutput } from "./commands/BatchAssociateProjectAssetsCommand";
|
|
7
|
+
import { type BatchDeleteDatasetDataSegmentsCommandInput, type BatchDeleteDatasetDataSegmentsCommandOutput } from "./commands/BatchDeleteDatasetDataSegmentsCommand";
|
|
8
|
+
import { type BatchDisassociateDataSegmentsFromDatasetCommandInput, type BatchDisassociateDataSegmentsFromDatasetCommandOutput } from "./commands/BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
6
9
|
import { type BatchDisassociateProjectAssetsCommandInput, type BatchDisassociateProjectAssetsCommandOutput } from "./commands/BatchDisassociateProjectAssetsCommand";
|
|
7
10
|
import { type BatchGetAssetPropertyAggregatesCommandInput, type BatchGetAssetPropertyAggregatesCommandOutput } from "./commands/BatchGetAssetPropertyAggregatesCommand";
|
|
8
11
|
import { type BatchGetAssetPropertyValueCommandInput, type BatchGetAssetPropertyValueCommandOutput } from "./commands/BatchGetAssetPropertyValueCommand";
|
|
9
12
|
import { type BatchGetAssetPropertyValueHistoryCommandInput, type BatchGetAssetPropertyValueHistoryCommandOutput } from "./commands/BatchGetAssetPropertyValueHistoryCommand";
|
|
10
13
|
import { type BatchPutAssetPropertyValueCommandInput, type BatchPutAssetPropertyValueCommandOutput } from "./commands/BatchPutAssetPropertyValueCommand";
|
|
14
|
+
import { type CancelEnrichmentJobCommandInput, type CancelEnrichmentJobCommandOutput } from "./commands/CancelEnrichmentJobCommand";
|
|
15
|
+
import { type CancelPipelineExecutionCommandInput, type CancelPipelineExecutionCommandOutput } from "./commands/CancelPipelineExecutionCommand";
|
|
16
|
+
import { type CancelQueryCommandInput, type CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
|
|
11
17
|
import { type CreateAccessPolicyCommandInput, type CreateAccessPolicyCommandOutput } from "./commands/CreateAccessPolicyCommand";
|
|
18
|
+
import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
12
19
|
import { type CreateAssetCommandInput, type CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
13
20
|
import { type CreateAssetModelCommandInput, type CreateAssetModelCommandOutput } from "./commands/CreateAssetModelCommand";
|
|
14
21
|
import { type CreateAssetModelCompositeModelCommandInput, type CreateAssetModelCompositeModelCommandOutput } from "./commands/CreateAssetModelCompositeModelCommand";
|
|
@@ -16,10 +23,16 @@ import { type CreateBulkImportJobCommandInput, type CreateBulkImportJobCommandOu
|
|
|
16
23
|
import { type CreateComputationModelCommandInput, type CreateComputationModelCommandOutput } from "./commands/CreateComputationModelCommand";
|
|
17
24
|
import { type CreateDashboardCommandInput, type CreateDashboardCommandOutput } from "./commands/CreateDashboardCommand";
|
|
18
25
|
import { type CreateDatasetCommandInput, type CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
26
|
+
import { type CreateDatasetExportJobCommandInput, type CreateDatasetExportJobCommandOutput } from "./commands/CreateDatasetExportJobCommand";
|
|
27
|
+
import { type CreateEnrichmentJobCommandInput, type CreateEnrichmentJobCommandOutput } from "./commands/CreateEnrichmentJobCommand";
|
|
19
28
|
import { type CreateGatewayCommandInput, type CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
29
|
+
import { type CreatePipelineCommandInput, type CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
|
|
20
30
|
import { type CreatePortalCommandInput, type CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
21
31
|
import { type CreateProjectCommandInput, type CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
32
|
+
import { type CreateTaskCommandInput, type CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
33
|
+
import { type CreateWorkspaceCommandInput, type CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
22
34
|
import { type DeleteAccessPolicyCommandInput, type DeleteAccessPolicyCommandOutput } from "./commands/DeleteAccessPolicyCommand";
|
|
35
|
+
import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
23
36
|
import { type DeleteAssetCommandInput, type DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
24
37
|
import { type DeleteAssetModelCommandInput, type DeleteAssetModelCommandOutput } from "./commands/DeleteAssetModelCommand";
|
|
25
38
|
import { type DeleteAssetModelCompositeModelCommandInput, type DeleteAssetModelCompositeModelCommandOutput } from "./commands/DeleteAssetModelCompositeModelCommand";
|
|
@@ -28,11 +41,15 @@ import { type DeleteComputationModelCommandInput, type DeleteComputationModelCom
|
|
|
28
41
|
import { type DeleteDashboardCommandInput, type DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
29
42
|
import { type DeleteDatasetCommandInput, type DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
30
43
|
import { type DeleteGatewayCommandInput, type DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
44
|
+
import { type DeletePipelineCommandInput, type DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
|
|
31
45
|
import { type DeletePortalCommandInput, type DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
32
46
|
import { type DeleteProjectCommandInput, type DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
47
|
+
import { type DeleteTaskCommandInput, type DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
|
|
33
48
|
import { type DeleteTimeSeriesCommandInput, type DeleteTimeSeriesCommandOutput } from "./commands/DeleteTimeSeriesCommand";
|
|
49
|
+
import { type DeleteWorkspaceCommandInput, type DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
34
50
|
import { type DescribeAccessPolicyCommandInput, type DescribeAccessPolicyCommandOutput } from "./commands/DescribeAccessPolicyCommand";
|
|
35
51
|
import { type DescribeActionCommandInput, type DescribeActionCommandOutput } from "./commands/DescribeActionCommand";
|
|
52
|
+
import { type DescribeApplicationCommandInput, type DescribeApplicationCommandOutput } from "./commands/DescribeApplicationCommand";
|
|
36
53
|
import { type DescribeAssetCommandInput, type DescribeAssetCommandOutput } from "./commands/DescribeAssetCommand";
|
|
37
54
|
import { type DescribeAssetCompositeModelCommandInput, type DescribeAssetCompositeModelCommandOutput } from "./commands/DescribeAssetCompositeModelCommand";
|
|
38
55
|
import { type DescribeAssetModelCommandInput, type DescribeAssetModelCommandOutput } from "./commands/DescribeAssetModelCommand";
|
|
@@ -44,15 +61,23 @@ import { type DescribeComputationModelCommandInput, type DescribeComputationMode
|
|
|
44
61
|
import { type DescribeComputationModelExecutionSummaryCommandInput, type DescribeComputationModelExecutionSummaryCommandOutput } from "./commands/DescribeComputationModelExecutionSummaryCommand";
|
|
45
62
|
import { type DescribeDashboardCommandInput, type DescribeDashboardCommandOutput } from "./commands/DescribeDashboardCommand";
|
|
46
63
|
import { type DescribeDatasetCommandInput, type DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
64
|
+
import { type DescribeDatasetExportJobCommandInput, type DescribeDatasetExportJobCommandOutput } from "./commands/DescribeDatasetExportJobCommand";
|
|
47
65
|
import { type DescribeDefaultEncryptionConfigurationCommandInput, type DescribeDefaultEncryptionConfigurationCommandOutput } from "./commands/DescribeDefaultEncryptionConfigurationCommand";
|
|
66
|
+
import { type DescribeEnrichmentJobCommandInput, type DescribeEnrichmentJobCommandOutput } from "./commands/DescribeEnrichmentJobCommand";
|
|
48
67
|
import { type DescribeExecutionCommandInput, type DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
49
68
|
import { type DescribeGatewayCapabilityConfigurationCommandInput, type DescribeGatewayCapabilityConfigurationCommandOutput } from "./commands/DescribeGatewayCapabilityConfigurationCommand";
|
|
50
69
|
import { type DescribeGatewayCommandInput, type DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
51
70
|
import { type DescribeLoggingOptionsCommandInput, type DescribeLoggingOptionsCommandOutput } from "./commands/DescribeLoggingOptionsCommand";
|
|
71
|
+
import { type DescribePipelineCommandInput, type DescribePipelineCommandOutput } from "./commands/DescribePipelineCommand";
|
|
72
|
+
import { type DescribePipelineExecutionCommandInput, type DescribePipelineExecutionCommandOutput } from "./commands/DescribePipelineExecutionCommand";
|
|
52
73
|
import { type DescribePortalCommandInput, type DescribePortalCommandOutput } from "./commands/DescribePortalCommand";
|
|
53
74
|
import { type DescribeProjectCommandInput, type DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
75
|
+
import { type DescribeQueryCommandInput, type DescribeQueryCommandOutput } from "./commands/DescribeQueryCommand";
|
|
76
|
+
import { type DescribeSearchCommandInput, type DescribeSearchCommandOutput } from "./commands/DescribeSearchCommand";
|
|
54
77
|
import { type DescribeStorageConfigurationCommandInput, type DescribeStorageConfigurationCommandOutput } from "./commands/DescribeStorageConfigurationCommand";
|
|
78
|
+
import { type DescribeTaskCommandInput, type DescribeTaskCommandOutput } from "./commands/DescribeTaskCommand";
|
|
55
79
|
import { type DescribeTimeSeriesCommandInput, type DescribeTimeSeriesCommandOutput } from "./commands/DescribeTimeSeriesCommand";
|
|
80
|
+
import { type DescribeWorkspaceCommandInput, type DescribeWorkspaceCommandOutput } from "./commands/DescribeWorkspaceCommand";
|
|
56
81
|
import { type DisassociateAssetsCommandInput, type DisassociateAssetsCommandOutput } from "./commands/DisassociateAssetsCommand";
|
|
57
82
|
import { type DisassociateTimeSeriesFromAssetPropertyCommandInput, type DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
58
83
|
import { type ExecuteActionCommandInput, type ExecuteActionCommandOutput } from "./commands/ExecuteActionCommand";
|
|
@@ -60,10 +85,14 @@ import { type ExecuteQueryCommandInput, type ExecuteQueryCommandOutput } from ".
|
|
|
60
85
|
import { type GetAssetPropertyAggregatesCommandInput, type GetAssetPropertyAggregatesCommandOutput } from "./commands/GetAssetPropertyAggregatesCommand";
|
|
61
86
|
import { type GetAssetPropertyValueCommandInput, type GetAssetPropertyValueCommandOutput } from "./commands/GetAssetPropertyValueCommand";
|
|
62
87
|
import { type GetAssetPropertyValueHistoryCommandInput, type GetAssetPropertyValueHistoryCommandOutput } from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
88
|
+
import { type GetCaptureDataCommandInput, type GetCaptureDataCommandOutput } from "./commands/GetCaptureDataCommand";
|
|
63
89
|
import { type GetInterpolatedAssetPropertyValuesCommandInput, type GetInterpolatedAssetPropertyValuesCommandOutput } from "./commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
90
|
+
import { type GetQueryResultsCommandInput, type GetQueryResultsCommandOutput } from "./commands/GetQueryResultsCommand";
|
|
91
|
+
import { type GetSearchResultsCommandInput, type GetSearchResultsCommandOutput } from "./commands/GetSearchResultsCommand";
|
|
64
92
|
import { type InvokeAssistantCommandInput, type InvokeAssistantCommandOutput } from "./commands/InvokeAssistantCommand";
|
|
65
93
|
import { type ListAccessPoliciesCommandInput, type ListAccessPoliciesCommandOutput } from "./commands/ListAccessPoliciesCommand";
|
|
66
94
|
import { type ListActionsCommandInput, type ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
95
|
+
import { type ListApplicationsCommandInput, type ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
67
96
|
import { type ListAssetModelCompositeModelsCommandInput, type ListAssetModelCompositeModelsCommandOutput } from "./commands/ListAssetModelCompositeModelsCommand";
|
|
68
97
|
import { type ListAssetModelPropertiesCommandInput, type ListAssetModelPropertiesCommandOutput } from "./commands/ListAssetModelPropertiesCommand";
|
|
69
98
|
import { type ListAssetModelsCommandInput, type ListAssetModelsCommandOutput } from "./commands/ListAssetModelsCommand";
|
|
@@ -77,19 +106,32 @@ import { type ListComputationModelDataBindingUsagesCommandInput, type ListComput
|
|
|
77
106
|
import { type ListComputationModelResolveToResourcesCommandInput, type ListComputationModelResolveToResourcesCommandOutput } from "./commands/ListComputationModelResolveToResourcesCommand";
|
|
78
107
|
import { type ListComputationModelsCommandInput, type ListComputationModelsCommandOutput } from "./commands/ListComputationModelsCommand";
|
|
79
108
|
import { type ListDashboardsCommandInput, type ListDashboardsCommandOutput } from "./commands/ListDashboardsCommand";
|
|
109
|
+
import { type ListDatasetDataSegmentRelationshipsCommandInput, type ListDatasetDataSegmentRelationshipsCommandOutput } from "./commands/ListDatasetDataSegmentRelationshipsCommand";
|
|
110
|
+
import { type ListDatasetDataSegmentsCommandInput, type ListDatasetDataSegmentsCommandOutput } from "./commands/ListDatasetDataSegmentsCommand";
|
|
111
|
+
import { type ListDatasetExportJobsCommandInput, type ListDatasetExportJobsCommandOutput } from "./commands/ListDatasetExportJobsCommand";
|
|
80
112
|
import { type ListDatasetsCommandInput, type ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
113
|
+
import { type ListEnrichmentJobsCommandInput, type ListEnrichmentJobsCommandOutput } from "./commands/ListEnrichmentJobsCommand";
|
|
81
114
|
import { type ListExecutionsCommandInput, type ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
82
115
|
import { type ListGatewaysCommandInput, type ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
83
116
|
import { type ListInterfaceRelationshipsCommandInput, type ListInterfaceRelationshipsCommandOutput } from "./commands/ListInterfaceRelationshipsCommand";
|
|
117
|
+
import { type ListPipelineExecutionsCommandInput, type ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
|
|
118
|
+
import { type ListPipelinesCommandInput, type ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
84
119
|
import { type ListPortalsCommandInput, type ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
85
120
|
import { type ListProjectAssetsCommandInput, type ListProjectAssetsCommandOutput } from "./commands/ListProjectAssetsCommand";
|
|
86
121
|
import { type ListProjectsCommandInput, type ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
122
|
+
import { type ListQueriesCommandInput, type ListQueriesCommandOutput } from "./commands/ListQueriesCommand";
|
|
123
|
+
import { type ListSearchesCommandInput, type ListSearchesCommandOutput } from "./commands/ListSearchesCommand";
|
|
87
124
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
125
|
+
import { type ListTasksCommandInput, type ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
88
126
|
import { type ListTimeSeriesCommandInput, type ListTimeSeriesCommandOutput } from "./commands/ListTimeSeriesCommand";
|
|
127
|
+
import { type ListWorkspacesCommandInput, type ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
89
128
|
import { type PutAssetModelInterfaceRelationshipCommandInput, type PutAssetModelInterfaceRelationshipCommandOutput } from "./commands/PutAssetModelInterfaceRelationshipCommand";
|
|
90
129
|
import { type PutDefaultEncryptionConfigurationCommandInput, type PutDefaultEncryptionConfigurationCommandOutput } from "./commands/PutDefaultEncryptionConfigurationCommand";
|
|
91
130
|
import { type PutLoggingOptionsCommandInput, type PutLoggingOptionsCommandOutput } from "./commands/PutLoggingOptionsCommand";
|
|
92
131
|
import { type PutStorageConfigurationCommandInput, type PutStorageConfigurationCommandOutput } from "./commands/PutStorageConfigurationCommand";
|
|
132
|
+
import { type StartPipelineExecutionCommandInput, type StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
|
|
133
|
+
import { type StartQueryCommandInput, type StartQueryCommandOutput } from "./commands/StartQueryCommand";
|
|
134
|
+
import { type StartSearchCommandInput, type StartSearchCommandOutput } from "./commands/StartSearchCommand";
|
|
93
135
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
136
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
95
137
|
import { type UpdateAccessPolicyCommandInput, type UpdateAccessPolicyCommandOutput } from "./commands/UpdateAccessPolicyCommand";
|
|
@@ -102,8 +144,11 @@ import { type UpdateDashboardCommandInput, type UpdateDashboardCommandOutput } f
|
|
|
102
144
|
import { type UpdateDatasetCommandInput, type UpdateDatasetCommandOutput } from "./commands/UpdateDatasetCommand";
|
|
103
145
|
import { type UpdateGatewayCapabilityConfigurationCommandInput, type UpdateGatewayCapabilityConfigurationCommandOutput } from "./commands/UpdateGatewayCapabilityConfigurationCommand";
|
|
104
146
|
import { type UpdateGatewayCommandInput, type UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
147
|
+
import { type UpdatePipelineCommandInput, type UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
|
|
105
148
|
import { type UpdatePortalCommandInput, type UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
106
149
|
import { type UpdateProjectCommandInput, type UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
150
|
+
import { type UpdateTaskCommandInput, type UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
|
|
151
|
+
import { type UpdateWorkspaceCommandInput, type UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
107
152
|
import { IoTSiteWiseClient } from "./IoTSiteWiseClient";
|
|
108
153
|
import type { ResourceNotFoundException } from "./models/errors";
|
|
109
154
|
export interface IoTSiteWise {
|
|
@@ -119,12 +164,30 @@ export interface IoTSiteWise {
|
|
|
119
164
|
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTimeSeriesToAssetPropertyCommandOutput>;
|
|
120
165
|
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
121
166
|
associateTimeSeriesToAssetProperty(args: AssociateTimeSeriesToAssetPropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void): void;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link BatchAssociateDataSegmentsToDatasetCommand}
|
|
169
|
+
*/
|
|
170
|
+
batchAssociateDataSegmentsToDataset(args: BatchAssociateDataSegmentsToDatasetCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateDataSegmentsToDatasetCommandOutput>;
|
|
171
|
+
batchAssociateDataSegmentsToDataset(args: BatchAssociateDataSegmentsToDatasetCommandInput, cb: (err: any, data?: BatchAssociateDataSegmentsToDatasetCommandOutput) => void): void;
|
|
172
|
+
batchAssociateDataSegmentsToDataset(args: BatchAssociateDataSegmentsToDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateDataSegmentsToDatasetCommandOutput) => void): void;
|
|
122
173
|
/**
|
|
123
174
|
* @see {@link BatchAssociateProjectAssetsCommand}
|
|
124
175
|
*/
|
|
125
176
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateProjectAssetsCommandOutput>;
|
|
126
177
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, cb: (err: any, data?: BatchAssociateProjectAssetsCommandOutput) => void): void;
|
|
127
178
|
batchAssociateProjectAssets(args: BatchAssociateProjectAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateProjectAssetsCommandOutput) => void): void;
|
|
179
|
+
/**
|
|
180
|
+
* @see {@link BatchDeleteDatasetDataSegmentsCommand}
|
|
181
|
+
*/
|
|
182
|
+
batchDeleteDatasetDataSegments(args: BatchDeleteDatasetDataSegmentsCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteDatasetDataSegmentsCommandOutput>;
|
|
183
|
+
batchDeleteDatasetDataSegments(args: BatchDeleteDatasetDataSegmentsCommandInput, cb: (err: any, data?: BatchDeleteDatasetDataSegmentsCommandOutput) => void): void;
|
|
184
|
+
batchDeleteDatasetDataSegments(args: BatchDeleteDatasetDataSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteDatasetDataSegmentsCommandOutput) => void): void;
|
|
185
|
+
/**
|
|
186
|
+
* @see {@link BatchDisassociateDataSegmentsFromDatasetCommand}
|
|
187
|
+
*/
|
|
188
|
+
batchDisassociateDataSegmentsFromDataset(args: BatchDisassociateDataSegmentsFromDatasetCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateDataSegmentsFromDatasetCommandOutput>;
|
|
189
|
+
batchDisassociateDataSegmentsFromDataset(args: BatchDisassociateDataSegmentsFromDatasetCommandInput, cb: (err: any, data?: BatchDisassociateDataSegmentsFromDatasetCommandOutput) => void): void;
|
|
190
|
+
batchDisassociateDataSegmentsFromDataset(args: BatchDisassociateDataSegmentsFromDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateDataSegmentsFromDatasetCommandOutput) => void): void;
|
|
128
191
|
/**
|
|
129
192
|
* @see {@link BatchDisassociateProjectAssetsCommand}
|
|
130
193
|
*/
|
|
@@ -155,12 +218,36 @@ export interface IoTSiteWise {
|
|
|
155
218
|
batchPutAssetPropertyValue(args: BatchPutAssetPropertyValueCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutAssetPropertyValueCommandOutput>;
|
|
156
219
|
batchPutAssetPropertyValue(args: BatchPutAssetPropertyValueCommandInput, cb: (err: any, data?: BatchPutAssetPropertyValueCommandOutput) => void): void;
|
|
157
220
|
batchPutAssetPropertyValue(args: BatchPutAssetPropertyValueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutAssetPropertyValueCommandOutput) => void): void;
|
|
221
|
+
/**
|
|
222
|
+
* @see {@link CancelEnrichmentJobCommand}
|
|
223
|
+
*/
|
|
224
|
+
cancelEnrichmentJob(args: CancelEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelEnrichmentJobCommandOutput>;
|
|
225
|
+
cancelEnrichmentJob(args: CancelEnrichmentJobCommandInput, cb: (err: any, data?: CancelEnrichmentJobCommandOutput) => void): void;
|
|
226
|
+
cancelEnrichmentJob(args: CancelEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelEnrichmentJobCommandOutput) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link CancelPipelineExecutionCommand}
|
|
229
|
+
*/
|
|
230
|
+
cancelPipelineExecution(args: CancelPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<CancelPipelineExecutionCommandOutput>;
|
|
231
|
+
cancelPipelineExecution(args: CancelPipelineExecutionCommandInput, cb: (err: any, data?: CancelPipelineExecutionCommandOutput) => void): void;
|
|
232
|
+
cancelPipelineExecution(args: CancelPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelPipelineExecutionCommandOutput) => void): void;
|
|
233
|
+
/**
|
|
234
|
+
* @see {@link CancelQueryCommand}
|
|
235
|
+
*/
|
|
236
|
+
cancelQuery(args: CancelQueryCommandInput, options?: __HttpHandlerOptions): Promise<CancelQueryCommandOutput>;
|
|
237
|
+
cancelQuery(args: CancelQueryCommandInput, cb: (err: any, data?: CancelQueryCommandOutput) => void): void;
|
|
238
|
+
cancelQuery(args: CancelQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelQueryCommandOutput) => void): void;
|
|
158
239
|
/**
|
|
159
240
|
* @see {@link CreateAccessPolicyCommand}
|
|
160
241
|
*/
|
|
161
242
|
createAccessPolicy(args: CreateAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccessPolicyCommandOutput>;
|
|
162
243
|
createAccessPolicy(args: CreateAccessPolicyCommandInput, cb: (err: any, data?: CreateAccessPolicyCommandOutput) => void): void;
|
|
163
244
|
createAccessPolicy(args: CreateAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccessPolicyCommandOutput) => void): void;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link CreateApplicationCommand}
|
|
247
|
+
*/
|
|
248
|
+
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
249
|
+
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
250
|
+
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
164
251
|
/**
|
|
165
252
|
* @see {@link CreateAssetCommand}
|
|
166
253
|
*/
|
|
@@ -203,12 +290,30 @@ export interface IoTSiteWise {
|
|
|
203
290
|
createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
|
|
204
291
|
createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
205
292
|
createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
293
|
+
/**
|
|
294
|
+
* @see {@link CreateDatasetExportJobCommand}
|
|
295
|
+
*/
|
|
296
|
+
createDatasetExportJob(args: CreateDatasetExportJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetExportJobCommandOutput>;
|
|
297
|
+
createDatasetExportJob(args: CreateDatasetExportJobCommandInput, cb: (err: any, data?: CreateDatasetExportJobCommandOutput) => void): void;
|
|
298
|
+
createDatasetExportJob(args: CreateDatasetExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetExportJobCommandOutput) => void): void;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link CreateEnrichmentJobCommand}
|
|
301
|
+
*/
|
|
302
|
+
createEnrichmentJob(args: CreateEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnrichmentJobCommandOutput>;
|
|
303
|
+
createEnrichmentJob(args: CreateEnrichmentJobCommandInput, cb: (err: any, data?: CreateEnrichmentJobCommandOutput) => void): void;
|
|
304
|
+
createEnrichmentJob(args: CreateEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnrichmentJobCommandOutput) => void): void;
|
|
206
305
|
/**
|
|
207
306
|
* @see {@link CreateGatewayCommand}
|
|
208
307
|
*/
|
|
209
308
|
createGateway(args: CreateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayCommandOutput>;
|
|
210
309
|
createGateway(args: CreateGatewayCommandInput, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
|
|
211
310
|
createGateway(args: CreateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
|
|
311
|
+
/**
|
|
312
|
+
* @see {@link CreatePipelineCommand}
|
|
313
|
+
*/
|
|
314
|
+
createPipeline(args: CreatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<CreatePipelineCommandOutput>;
|
|
315
|
+
createPipeline(args: CreatePipelineCommandInput, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
316
|
+
createPipeline(args: CreatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
212
317
|
/**
|
|
213
318
|
* @see {@link CreatePortalCommand}
|
|
214
319
|
*/
|
|
@@ -221,12 +326,30 @@ export interface IoTSiteWise {
|
|
|
221
326
|
createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
|
|
222
327
|
createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
223
328
|
createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
329
|
+
/**
|
|
330
|
+
* @see {@link CreateTaskCommand}
|
|
331
|
+
*/
|
|
332
|
+
createTask(args: CreateTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateTaskCommandOutput>;
|
|
333
|
+
createTask(args: CreateTaskCommandInput, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
334
|
+
createTask(args: CreateTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTaskCommandOutput) => void): void;
|
|
335
|
+
/**
|
|
336
|
+
* @see {@link CreateWorkspaceCommand}
|
|
337
|
+
*/
|
|
338
|
+
createWorkspace(args: CreateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceCommandOutput>;
|
|
339
|
+
createWorkspace(args: CreateWorkspaceCommandInput, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
340
|
+
createWorkspace(args: CreateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
224
341
|
/**
|
|
225
342
|
* @see {@link DeleteAccessPolicyCommand}
|
|
226
343
|
*/
|
|
227
344
|
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccessPolicyCommandOutput>;
|
|
228
345
|
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, cb: (err: any, data?: DeleteAccessPolicyCommandOutput) => void): void;
|
|
229
346
|
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccessPolicyCommandOutput) => void): void;
|
|
347
|
+
/**
|
|
348
|
+
* @see {@link DeleteApplicationCommand}
|
|
349
|
+
*/
|
|
350
|
+
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
351
|
+
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
352
|
+
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
230
353
|
/**
|
|
231
354
|
* @see {@link DeleteAssetCommand}
|
|
232
355
|
*/
|
|
@@ -275,6 +398,12 @@ export interface IoTSiteWise {
|
|
|
275
398
|
deleteGateway(args: DeleteGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayCommandOutput>;
|
|
276
399
|
deleteGateway(args: DeleteGatewayCommandInput, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
|
|
277
400
|
deleteGateway(args: DeleteGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
|
|
401
|
+
/**
|
|
402
|
+
* @see {@link DeletePipelineCommand}
|
|
403
|
+
*/
|
|
404
|
+
deletePipeline(args: DeletePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePipelineCommandOutput>;
|
|
405
|
+
deletePipeline(args: DeletePipelineCommandInput, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
406
|
+
deletePipeline(args: DeletePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
278
407
|
/**
|
|
279
408
|
* @see {@link DeletePortalCommand}
|
|
280
409
|
*/
|
|
@@ -287,6 +416,12 @@ export interface IoTSiteWise {
|
|
|
287
416
|
deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
|
|
288
417
|
deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
289
418
|
deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
419
|
+
/**
|
|
420
|
+
* @see {@link DeleteTaskCommand}
|
|
421
|
+
*/
|
|
422
|
+
deleteTask(args: DeleteTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTaskCommandOutput>;
|
|
423
|
+
deleteTask(args: DeleteTaskCommandInput, cb: (err: any, data?: DeleteTaskCommandOutput) => void): void;
|
|
424
|
+
deleteTask(args: DeleteTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTaskCommandOutput) => void): void;
|
|
290
425
|
/**
|
|
291
426
|
* @see {@link DeleteTimeSeriesCommand}
|
|
292
427
|
*/
|
|
@@ -294,6 +429,12 @@ export interface IoTSiteWise {
|
|
|
294
429
|
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTimeSeriesCommandOutput>;
|
|
295
430
|
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
296
431
|
deleteTimeSeries(args: DeleteTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void): void;
|
|
432
|
+
/**
|
|
433
|
+
* @see {@link DeleteWorkspaceCommand}
|
|
434
|
+
*/
|
|
435
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceCommandOutput>;
|
|
436
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
437
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
297
438
|
/**
|
|
298
439
|
* @see {@link DescribeAccessPolicyCommand}
|
|
299
440
|
*/
|
|
@@ -306,6 +447,12 @@ export interface IoTSiteWise {
|
|
|
306
447
|
describeAction(args: DescribeActionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeActionCommandOutput>;
|
|
307
448
|
describeAction(args: DescribeActionCommandInput, cb: (err: any, data?: DescribeActionCommandOutput) => void): void;
|
|
308
449
|
describeAction(args: DescribeActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActionCommandOutput) => void): void;
|
|
450
|
+
/**
|
|
451
|
+
* @see {@link DescribeApplicationCommand}
|
|
452
|
+
*/
|
|
453
|
+
describeApplication(args: DescribeApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationCommandOutput>;
|
|
454
|
+
describeApplication(args: DescribeApplicationCommandInput, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
455
|
+
describeApplication(args: DescribeApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
309
456
|
/**
|
|
310
457
|
* @see {@link DescribeAssetCommand}
|
|
311
458
|
*/
|
|
@@ -372,6 +519,12 @@ export interface IoTSiteWise {
|
|
|
372
519
|
describeDataset(args: DescribeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetCommandOutput>;
|
|
373
520
|
describeDataset(args: DescribeDatasetCommandInput, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
374
521
|
describeDataset(args: DescribeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
522
|
+
/**
|
|
523
|
+
* @see {@link DescribeDatasetExportJobCommand}
|
|
524
|
+
*/
|
|
525
|
+
describeDatasetExportJob(args: DescribeDatasetExportJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetExportJobCommandOutput>;
|
|
526
|
+
describeDatasetExportJob(args: DescribeDatasetExportJobCommandInput, cb: (err: any, data?: DescribeDatasetExportJobCommandOutput) => void): void;
|
|
527
|
+
describeDatasetExportJob(args: DescribeDatasetExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetExportJobCommandOutput) => void): void;
|
|
375
528
|
/**
|
|
376
529
|
* @see {@link DescribeDefaultEncryptionConfigurationCommand}
|
|
377
530
|
*/
|
|
@@ -379,6 +532,12 @@ export interface IoTSiteWise {
|
|
|
379
532
|
describeDefaultEncryptionConfiguration(args: DescribeDefaultEncryptionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDefaultEncryptionConfigurationCommandOutput>;
|
|
380
533
|
describeDefaultEncryptionConfiguration(args: DescribeDefaultEncryptionConfigurationCommandInput, cb: (err: any, data?: DescribeDefaultEncryptionConfigurationCommandOutput) => void): void;
|
|
381
534
|
describeDefaultEncryptionConfiguration(args: DescribeDefaultEncryptionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDefaultEncryptionConfigurationCommandOutput) => void): void;
|
|
535
|
+
/**
|
|
536
|
+
* @see {@link DescribeEnrichmentJobCommand}
|
|
537
|
+
*/
|
|
538
|
+
describeEnrichmentJob(args: DescribeEnrichmentJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnrichmentJobCommandOutput>;
|
|
539
|
+
describeEnrichmentJob(args: DescribeEnrichmentJobCommandInput, cb: (err: any, data?: DescribeEnrichmentJobCommandOutput) => void): void;
|
|
540
|
+
describeEnrichmentJob(args: DescribeEnrichmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnrichmentJobCommandOutput) => void): void;
|
|
382
541
|
/**
|
|
383
542
|
* @see {@link DescribeExecutionCommand}
|
|
384
543
|
*/
|
|
@@ -404,6 +563,18 @@ export interface IoTSiteWise {
|
|
|
404
563
|
describeLoggingOptions(args: DescribeLoggingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoggingOptionsCommandOutput>;
|
|
405
564
|
describeLoggingOptions(args: DescribeLoggingOptionsCommandInput, cb: (err: any, data?: DescribeLoggingOptionsCommandOutput) => void): void;
|
|
406
565
|
describeLoggingOptions(args: DescribeLoggingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoggingOptionsCommandOutput) => void): void;
|
|
566
|
+
/**
|
|
567
|
+
* @see {@link DescribePipelineCommand}
|
|
568
|
+
*/
|
|
569
|
+
describePipeline(args: DescribePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelineCommandOutput>;
|
|
570
|
+
describePipeline(args: DescribePipelineCommandInput, cb: (err: any, data?: DescribePipelineCommandOutput) => void): void;
|
|
571
|
+
describePipeline(args: DescribePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelineCommandOutput) => void): void;
|
|
572
|
+
/**
|
|
573
|
+
* @see {@link DescribePipelineExecutionCommand}
|
|
574
|
+
*/
|
|
575
|
+
describePipelineExecution(args: DescribePipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelineExecutionCommandOutput>;
|
|
576
|
+
describePipelineExecution(args: DescribePipelineExecutionCommandInput, cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void): void;
|
|
577
|
+
describePipelineExecution(args: DescribePipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void): void;
|
|
407
578
|
/**
|
|
408
579
|
* @see {@link DescribePortalCommand}
|
|
409
580
|
*/
|
|
@@ -416,6 +587,18 @@ export interface IoTSiteWise {
|
|
|
416
587
|
describeProject(args: DescribeProjectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectCommandOutput>;
|
|
417
588
|
describeProject(args: DescribeProjectCommandInput, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
418
589
|
describeProject(args: DescribeProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
590
|
+
/**
|
|
591
|
+
* @see {@link DescribeQueryCommand}
|
|
592
|
+
*/
|
|
593
|
+
describeQuery(args: DescribeQueryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeQueryCommandOutput>;
|
|
594
|
+
describeQuery(args: DescribeQueryCommandInput, cb: (err: any, data?: DescribeQueryCommandOutput) => void): void;
|
|
595
|
+
describeQuery(args: DescribeQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeQueryCommandOutput) => void): void;
|
|
596
|
+
/**
|
|
597
|
+
* @see {@link DescribeSearchCommand}
|
|
598
|
+
*/
|
|
599
|
+
describeSearch(args: DescribeSearchCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSearchCommandOutput>;
|
|
600
|
+
describeSearch(args: DescribeSearchCommandInput, cb: (err: any, data?: DescribeSearchCommandOutput) => void): void;
|
|
601
|
+
describeSearch(args: DescribeSearchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSearchCommandOutput) => void): void;
|
|
419
602
|
/**
|
|
420
603
|
* @see {@link DescribeStorageConfigurationCommand}
|
|
421
604
|
*/
|
|
@@ -423,6 +606,12 @@ export interface IoTSiteWise {
|
|
|
423
606
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageConfigurationCommandOutput>;
|
|
424
607
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
425
608
|
describeStorageConfiguration(args: DescribeStorageConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void): void;
|
|
609
|
+
/**
|
|
610
|
+
* @see {@link DescribeTaskCommand}
|
|
611
|
+
*/
|
|
612
|
+
describeTask(args: DescribeTaskCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTaskCommandOutput>;
|
|
613
|
+
describeTask(args: DescribeTaskCommandInput, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
614
|
+
describeTask(args: DescribeTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTaskCommandOutput) => void): void;
|
|
426
615
|
/**
|
|
427
616
|
* @see {@link DescribeTimeSeriesCommand}
|
|
428
617
|
*/
|
|
@@ -430,6 +619,12 @@ export interface IoTSiteWise {
|
|
|
430
619
|
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTimeSeriesCommandOutput>;
|
|
431
620
|
describeTimeSeries(args: DescribeTimeSeriesCommandInput, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
432
621
|
describeTimeSeries(args: DescribeTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void): void;
|
|
622
|
+
/**
|
|
623
|
+
* @see {@link DescribeWorkspaceCommand}
|
|
624
|
+
*/
|
|
625
|
+
describeWorkspace(args: DescribeWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkspaceCommandOutput>;
|
|
626
|
+
describeWorkspace(args: DescribeWorkspaceCommandInput, cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void): void;
|
|
627
|
+
describeWorkspace(args: DescribeWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void): void;
|
|
433
628
|
/**
|
|
434
629
|
* @see {@link DisassociateAssetsCommand}
|
|
435
630
|
*/
|
|
@@ -474,12 +669,30 @@ export interface IoTSiteWise {
|
|
|
474
669
|
getAssetPropertyValueHistory(args: GetAssetPropertyValueHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetAssetPropertyValueHistoryCommandOutput>;
|
|
475
670
|
getAssetPropertyValueHistory(args: GetAssetPropertyValueHistoryCommandInput, cb: (err: any, data?: GetAssetPropertyValueHistoryCommandOutput) => void): void;
|
|
476
671
|
getAssetPropertyValueHistory(args: GetAssetPropertyValueHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssetPropertyValueHistoryCommandOutput) => void): void;
|
|
672
|
+
/**
|
|
673
|
+
* @see {@link GetCaptureDataCommand}
|
|
674
|
+
*/
|
|
675
|
+
getCaptureData(args: GetCaptureDataCommandInput, options?: __HttpHandlerOptions): Promise<GetCaptureDataCommandOutput>;
|
|
676
|
+
getCaptureData(args: GetCaptureDataCommandInput, cb: (err: any, data?: GetCaptureDataCommandOutput) => void): void;
|
|
677
|
+
getCaptureData(args: GetCaptureDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCaptureDataCommandOutput) => void): void;
|
|
477
678
|
/**
|
|
478
679
|
* @see {@link GetInterpolatedAssetPropertyValuesCommand}
|
|
479
680
|
*/
|
|
480
681
|
getInterpolatedAssetPropertyValues(args: GetInterpolatedAssetPropertyValuesCommandInput, options?: __HttpHandlerOptions): Promise<GetInterpolatedAssetPropertyValuesCommandOutput>;
|
|
481
682
|
getInterpolatedAssetPropertyValues(args: GetInterpolatedAssetPropertyValuesCommandInput, cb: (err: any, data?: GetInterpolatedAssetPropertyValuesCommandOutput) => void): void;
|
|
482
683
|
getInterpolatedAssetPropertyValues(args: GetInterpolatedAssetPropertyValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInterpolatedAssetPropertyValuesCommandOutput) => void): void;
|
|
684
|
+
/**
|
|
685
|
+
* @see {@link GetQueryResultsCommand}
|
|
686
|
+
*/
|
|
687
|
+
getQueryResults(args: GetQueryResultsCommandInput, options?: __HttpHandlerOptions): Promise<GetQueryResultsCommandOutput>;
|
|
688
|
+
getQueryResults(args: GetQueryResultsCommandInput, cb: (err: any, data?: GetQueryResultsCommandOutput) => void): void;
|
|
689
|
+
getQueryResults(args: GetQueryResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueryResultsCommandOutput) => void): void;
|
|
690
|
+
/**
|
|
691
|
+
* @see {@link GetSearchResultsCommand}
|
|
692
|
+
*/
|
|
693
|
+
getSearchResults(args: GetSearchResultsCommandInput, options?: __HttpHandlerOptions): Promise<GetSearchResultsCommandOutput>;
|
|
694
|
+
getSearchResults(args: GetSearchResultsCommandInput, cb: (err: any, data?: GetSearchResultsCommandOutput) => void): void;
|
|
695
|
+
getSearchResults(args: GetSearchResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSearchResultsCommandOutput) => void): void;
|
|
483
696
|
/**
|
|
484
697
|
* @see {@link InvokeAssistantCommand}
|
|
485
698
|
*/
|
|
@@ -499,6 +712,13 @@ export interface IoTSiteWise {
|
|
|
499
712
|
listActions(args: ListActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListActionsCommandOutput>;
|
|
500
713
|
listActions(args: ListActionsCommandInput, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
|
|
501
714
|
listActions(args: ListActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
|
|
715
|
+
/**
|
|
716
|
+
* @see {@link ListApplicationsCommand}
|
|
717
|
+
*/
|
|
718
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
719
|
+
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
720
|
+
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
721
|
+
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
502
722
|
/**
|
|
503
723
|
* @see {@link ListAssetModelCompositeModelsCommand}
|
|
504
724
|
*/
|
|
@@ -581,12 +801,36 @@ export interface IoTSiteWise {
|
|
|
581
801
|
listDashboards(args: ListDashboardsCommandInput, options?: __HttpHandlerOptions): Promise<ListDashboardsCommandOutput>;
|
|
582
802
|
listDashboards(args: ListDashboardsCommandInput, cb: (err: any, data?: ListDashboardsCommandOutput) => void): void;
|
|
583
803
|
listDashboards(args: ListDashboardsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDashboardsCommandOutput) => void): void;
|
|
804
|
+
/**
|
|
805
|
+
* @see {@link ListDatasetDataSegmentRelationshipsCommand}
|
|
806
|
+
*/
|
|
807
|
+
listDatasetDataSegmentRelationships(args: ListDatasetDataSegmentRelationshipsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetDataSegmentRelationshipsCommandOutput>;
|
|
808
|
+
listDatasetDataSegmentRelationships(args: ListDatasetDataSegmentRelationshipsCommandInput, cb: (err: any, data?: ListDatasetDataSegmentRelationshipsCommandOutput) => void): void;
|
|
809
|
+
listDatasetDataSegmentRelationships(args: ListDatasetDataSegmentRelationshipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetDataSegmentRelationshipsCommandOutput) => void): void;
|
|
810
|
+
/**
|
|
811
|
+
* @see {@link ListDatasetDataSegmentsCommand}
|
|
812
|
+
*/
|
|
813
|
+
listDatasetDataSegments(args: ListDatasetDataSegmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetDataSegmentsCommandOutput>;
|
|
814
|
+
listDatasetDataSegments(args: ListDatasetDataSegmentsCommandInput, cb: (err: any, data?: ListDatasetDataSegmentsCommandOutput) => void): void;
|
|
815
|
+
listDatasetDataSegments(args: ListDatasetDataSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetDataSegmentsCommandOutput) => void): void;
|
|
816
|
+
/**
|
|
817
|
+
* @see {@link ListDatasetExportJobsCommand}
|
|
818
|
+
*/
|
|
819
|
+
listDatasetExportJobs(args: ListDatasetExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetExportJobsCommandOutput>;
|
|
820
|
+
listDatasetExportJobs(args: ListDatasetExportJobsCommandInput, cb: (err: any, data?: ListDatasetExportJobsCommandOutput) => void): void;
|
|
821
|
+
listDatasetExportJobs(args: ListDatasetExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetExportJobsCommandOutput) => void): void;
|
|
584
822
|
/**
|
|
585
823
|
* @see {@link ListDatasetsCommand}
|
|
586
824
|
*/
|
|
587
825
|
listDatasets(args: ListDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetsCommandOutput>;
|
|
588
826
|
listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
589
827
|
listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
828
|
+
/**
|
|
829
|
+
* @see {@link ListEnrichmentJobsCommand}
|
|
830
|
+
*/
|
|
831
|
+
listEnrichmentJobs(args: ListEnrichmentJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnrichmentJobsCommandOutput>;
|
|
832
|
+
listEnrichmentJobs(args: ListEnrichmentJobsCommandInput, cb: (err: any, data?: ListEnrichmentJobsCommandOutput) => void): void;
|
|
833
|
+
listEnrichmentJobs(args: ListEnrichmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnrichmentJobsCommandOutput) => void): void;
|
|
590
834
|
/**
|
|
591
835
|
* @see {@link ListExecutionsCommand}
|
|
592
836
|
*/
|
|
@@ -606,6 +850,18 @@ export interface IoTSiteWise {
|
|
|
606
850
|
listInterfaceRelationships(args: ListInterfaceRelationshipsCommandInput, options?: __HttpHandlerOptions): Promise<ListInterfaceRelationshipsCommandOutput>;
|
|
607
851
|
listInterfaceRelationships(args: ListInterfaceRelationshipsCommandInput, cb: (err: any, data?: ListInterfaceRelationshipsCommandOutput) => void): void;
|
|
608
852
|
listInterfaceRelationships(args: ListInterfaceRelationshipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInterfaceRelationshipsCommandOutput) => void): void;
|
|
853
|
+
/**
|
|
854
|
+
* @see {@link ListPipelineExecutionsCommand}
|
|
855
|
+
*/
|
|
856
|
+
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelineExecutionsCommandOutput>;
|
|
857
|
+
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
|
|
858
|
+
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
|
|
859
|
+
/**
|
|
860
|
+
* @see {@link ListPipelinesCommand}
|
|
861
|
+
*/
|
|
862
|
+
listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
|
|
863
|
+
listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
864
|
+
listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
609
865
|
/**
|
|
610
866
|
* @see {@link ListPortalsCommand}
|
|
611
867
|
*/
|
|
@@ -625,12 +881,30 @@ export interface IoTSiteWise {
|
|
|
625
881
|
listProjects(args: ListProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProjectsCommandOutput>;
|
|
626
882
|
listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
627
883
|
listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
884
|
+
/**
|
|
885
|
+
* @see {@link ListQueriesCommand}
|
|
886
|
+
*/
|
|
887
|
+
listQueries(args: ListQueriesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueriesCommandOutput>;
|
|
888
|
+
listQueries(args: ListQueriesCommandInput, cb: (err: any, data?: ListQueriesCommandOutput) => void): void;
|
|
889
|
+
listQueries(args: ListQueriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueriesCommandOutput) => void): void;
|
|
890
|
+
/**
|
|
891
|
+
* @see {@link ListSearchesCommand}
|
|
892
|
+
*/
|
|
893
|
+
listSearches(args: ListSearchesCommandInput, options?: __HttpHandlerOptions): Promise<ListSearchesCommandOutput>;
|
|
894
|
+
listSearches(args: ListSearchesCommandInput, cb: (err: any, data?: ListSearchesCommandOutput) => void): void;
|
|
895
|
+
listSearches(args: ListSearchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSearchesCommandOutput) => void): void;
|
|
628
896
|
/**
|
|
629
897
|
* @see {@link ListTagsForResourceCommand}
|
|
630
898
|
*/
|
|
631
899
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
632
900
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
633
901
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
902
|
+
/**
|
|
903
|
+
* @see {@link ListTasksCommand}
|
|
904
|
+
*/
|
|
905
|
+
listTasks(args: ListTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListTasksCommandOutput>;
|
|
906
|
+
listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
907
|
+
listTasks(args: ListTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
634
908
|
/**
|
|
635
909
|
* @see {@link ListTimeSeriesCommand}
|
|
636
910
|
*/
|
|
@@ -638,6 +912,13 @@ export interface IoTSiteWise {
|
|
|
638
912
|
listTimeSeries(args: ListTimeSeriesCommandInput, options?: __HttpHandlerOptions): Promise<ListTimeSeriesCommandOutput>;
|
|
639
913
|
listTimeSeries(args: ListTimeSeriesCommandInput, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
640
914
|
listTimeSeries(args: ListTimeSeriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTimeSeriesCommandOutput) => void): void;
|
|
915
|
+
/**
|
|
916
|
+
* @see {@link ListWorkspacesCommand}
|
|
917
|
+
*/
|
|
918
|
+
listWorkspaces(): Promise<ListWorkspacesCommandOutput>;
|
|
919
|
+
listWorkspaces(args: ListWorkspacesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkspacesCommandOutput>;
|
|
920
|
+
listWorkspaces(args: ListWorkspacesCommandInput, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
921
|
+
listWorkspaces(args: ListWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
641
922
|
/**
|
|
642
923
|
* @see {@link PutAssetModelInterfaceRelationshipCommand}
|
|
643
924
|
*/
|
|
@@ -662,6 +943,24 @@ export interface IoTSiteWise {
|
|
|
662
943
|
putStorageConfiguration(args: PutStorageConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutStorageConfigurationCommandOutput>;
|
|
663
944
|
putStorageConfiguration(args: PutStorageConfigurationCommandInput, cb: (err: any, data?: PutStorageConfigurationCommandOutput) => void): void;
|
|
664
945
|
putStorageConfiguration(args: PutStorageConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutStorageConfigurationCommandOutput) => void): void;
|
|
946
|
+
/**
|
|
947
|
+
* @see {@link StartPipelineExecutionCommand}
|
|
948
|
+
*/
|
|
949
|
+
startPipelineExecution(args: StartPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartPipelineExecutionCommandOutput>;
|
|
950
|
+
startPipelineExecution(args: StartPipelineExecutionCommandInput, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
|
|
951
|
+
startPipelineExecution(args: StartPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
|
|
952
|
+
/**
|
|
953
|
+
* @see {@link StartQueryCommand}
|
|
954
|
+
*/
|
|
955
|
+
startQuery(args: StartQueryCommandInput, options?: __HttpHandlerOptions): Promise<StartQueryCommandOutput>;
|
|
956
|
+
startQuery(args: StartQueryCommandInput, cb: (err: any, data?: StartQueryCommandOutput) => void): void;
|
|
957
|
+
startQuery(args: StartQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartQueryCommandOutput) => void): void;
|
|
958
|
+
/**
|
|
959
|
+
* @see {@link StartSearchCommand}
|
|
960
|
+
*/
|
|
961
|
+
startSearch(args: StartSearchCommandInput, options?: __HttpHandlerOptions): Promise<StartSearchCommandOutput>;
|
|
962
|
+
startSearch(args: StartSearchCommandInput, cb: (err: any, data?: StartSearchCommandOutput) => void): void;
|
|
963
|
+
startSearch(args: StartSearchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSearchCommandOutput) => void): void;
|
|
665
964
|
/**
|
|
666
965
|
* @see {@link TagResourceCommand}
|
|
667
966
|
*/
|
|
@@ -734,6 +1033,12 @@ export interface IoTSiteWise {
|
|
|
734
1033
|
updateGatewayCapabilityConfiguration(args: UpdateGatewayCapabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayCapabilityConfigurationCommandOutput>;
|
|
735
1034
|
updateGatewayCapabilityConfiguration(args: UpdateGatewayCapabilityConfigurationCommandInput, cb: (err: any, data?: UpdateGatewayCapabilityConfigurationCommandOutput) => void): void;
|
|
736
1035
|
updateGatewayCapabilityConfiguration(args: UpdateGatewayCapabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayCapabilityConfigurationCommandOutput) => void): void;
|
|
1036
|
+
/**
|
|
1037
|
+
* @see {@link UpdatePipelineCommand}
|
|
1038
|
+
*/
|
|
1039
|
+
updatePipeline(args: UpdatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePipelineCommandOutput>;
|
|
1040
|
+
updatePipeline(args: UpdatePipelineCommandInput, cb: (err: any, data?: UpdatePipelineCommandOutput) => void): void;
|
|
1041
|
+
updatePipeline(args: UpdatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePipelineCommandOutput) => void): void;
|
|
737
1042
|
/**
|
|
738
1043
|
* @see {@link UpdatePortalCommand}
|
|
739
1044
|
*/
|
|
@@ -746,6 +1051,18 @@ export interface IoTSiteWise {
|
|
|
746
1051
|
updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
|
|
747
1052
|
updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
748
1053
|
updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
1054
|
+
/**
|
|
1055
|
+
* @see {@link UpdateTaskCommand}
|
|
1056
|
+
*/
|
|
1057
|
+
updateTask(args: UpdateTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTaskCommandOutput>;
|
|
1058
|
+
updateTask(args: UpdateTaskCommandInput, cb: (err: any, data?: UpdateTaskCommandOutput) => void): void;
|
|
1059
|
+
updateTask(args: UpdateTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTaskCommandOutput) => void): void;
|
|
1060
|
+
/**
|
|
1061
|
+
* @see {@link UpdateWorkspaceCommand}
|
|
1062
|
+
*/
|
|
1063
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkspaceCommandOutput>;
|
|
1064
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
1065
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
749
1066
|
/**
|
|
750
1067
|
* @see {@link BatchGetAssetPropertyAggregatesCommand}
|
|
751
1068
|
* @param args - command input.
|
|
@@ -767,6 +1084,13 @@ export interface IoTSiteWise {
|
|
|
767
1084
|
* @returns AsyncIterable of {@link BatchGetAssetPropertyValueHistoryCommandOutput}.
|
|
768
1085
|
*/
|
|
769
1086
|
paginateBatchGetAssetPropertyValueHistory(args: BatchGetAssetPropertyValueHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<BatchGetAssetPropertyValueHistoryCommandOutput>;
|
|
1087
|
+
/**
|
|
1088
|
+
* @see {@link DescribePipelineExecutionCommand}
|
|
1089
|
+
* @param args - command input.
|
|
1090
|
+
* @param paginationConfig - optional pagination config.
|
|
1091
|
+
* @returns AsyncIterable of {@link DescribePipelineExecutionCommandOutput}.
|
|
1092
|
+
*/
|
|
1093
|
+
paginateDescribePipelineExecution(args: DescribePipelineExecutionCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePipelineExecutionCommandOutput>;
|
|
770
1094
|
/**
|
|
771
1095
|
* @see {@link ExecuteQueryCommand}
|
|
772
1096
|
* @param args - command input.
|
|
@@ -795,6 +1119,20 @@ export interface IoTSiteWise {
|
|
|
795
1119
|
* @returns AsyncIterable of {@link GetInterpolatedAssetPropertyValuesCommandOutput}.
|
|
796
1120
|
*/
|
|
797
1121
|
paginateGetInterpolatedAssetPropertyValues(args: GetInterpolatedAssetPropertyValuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetInterpolatedAssetPropertyValuesCommandOutput>;
|
|
1122
|
+
/**
|
|
1123
|
+
* @see {@link GetQueryResultsCommand}
|
|
1124
|
+
* @param args - command input.
|
|
1125
|
+
* @param paginationConfig - optional pagination config.
|
|
1126
|
+
* @returns AsyncIterable of {@link GetQueryResultsCommandOutput}.
|
|
1127
|
+
*/
|
|
1128
|
+
paginateGetQueryResults(args: GetQueryResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetQueryResultsCommandOutput>;
|
|
1129
|
+
/**
|
|
1130
|
+
* @see {@link GetSearchResultsCommand}
|
|
1131
|
+
* @param args - command input.
|
|
1132
|
+
* @param paginationConfig - optional pagination config.
|
|
1133
|
+
* @returns AsyncIterable of {@link GetSearchResultsCommandOutput}.
|
|
1134
|
+
*/
|
|
1135
|
+
paginateGetSearchResults(args: GetSearchResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSearchResultsCommandOutput>;
|
|
798
1136
|
/**
|
|
799
1137
|
* @see {@link ListAccessPoliciesCommand}
|
|
800
1138
|
* @param args - command input.
|
|
@@ -809,6 +1147,13 @@ export interface IoTSiteWise {
|
|
|
809
1147
|
* @returns AsyncIterable of {@link ListActionsCommandOutput}.
|
|
810
1148
|
*/
|
|
811
1149
|
paginateListActions(args: ListActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListActionsCommandOutput>;
|
|
1150
|
+
/**
|
|
1151
|
+
* @see {@link ListApplicationsCommand}
|
|
1152
|
+
* @param args - command input.
|
|
1153
|
+
* @param paginationConfig - optional pagination config.
|
|
1154
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
1155
|
+
*/
|
|
1156
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
812
1157
|
/**
|
|
813
1158
|
* @see {@link ListAssetModelCompositeModelsCommand}
|
|
814
1159
|
* @param args - command input.
|
|
@@ -900,6 +1245,27 @@ export interface IoTSiteWise {
|
|
|
900
1245
|
* @returns AsyncIterable of {@link ListDashboardsCommandOutput}.
|
|
901
1246
|
*/
|
|
902
1247
|
paginateListDashboards(args: ListDashboardsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDashboardsCommandOutput>;
|
|
1248
|
+
/**
|
|
1249
|
+
* @see {@link ListDatasetDataSegmentRelationshipsCommand}
|
|
1250
|
+
* @param args - command input.
|
|
1251
|
+
* @param paginationConfig - optional pagination config.
|
|
1252
|
+
* @returns AsyncIterable of {@link ListDatasetDataSegmentRelationshipsCommandOutput}.
|
|
1253
|
+
*/
|
|
1254
|
+
paginateListDatasetDataSegmentRelationships(args: ListDatasetDataSegmentRelationshipsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatasetDataSegmentRelationshipsCommandOutput>;
|
|
1255
|
+
/**
|
|
1256
|
+
* @see {@link ListDatasetDataSegmentsCommand}
|
|
1257
|
+
* @param args - command input.
|
|
1258
|
+
* @param paginationConfig - optional pagination config.
|
|
1259
|
+
* @returns AsyncIterable of {@link ListDatasetDataSegmentsCommandOutput}.
|
|
1260
|
+
*/
|
|
1261
|
+
paginateListDatasetDataSegments(args: ListDatasetDataSegmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatasetDataSegmentsCommandOutput>;
|
|
1262
|
+
/**
|
|
1263
|
+
* @see {@link ListDatasetExportJobsCommand}
|
|
1264
|
+
* @param args - command input.
|
|
1265
|
+
* @param paginationConfig - optional pagination config.
|
|
1266
|
+
* @returns AsyncIterable of {@link ListDatasetExportJobsCommandOutput}.
|
|
1267
|
+
*/
|
|
1268
|
+
paginateListDatasetExportJobs(args: ListDatasetExportJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatasetExportJobsCommandOutput>;
|
|
903
1269
|
/**
|
|
904
1270
|
* @see {@link ListDatasetsCommand}
|
|
905
1271
|
* @param args - command input.
|
|
@@ -907,6 +1273,13 @@ export interface IoTSiteWise {
|
|
|
907
1273
|
* @returns AsyncIterable of {@link ListDatasetsCommandOutput}.
|
|
908
1274
|
*/
|
|
909
1275
|
paginateListDatasets(args: ListDatasetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatasetsCommandOutput>;
|
|
1276
|
+
/**
|
|
1277
|
+
* @see {@link ListEnrichmentJobsCommand}
|
|
1278
|
+
* @param args - command input.
|
|
1279
|
+
* @param paginationConfig - optional pagination config.
|
|
1280
|
+
* @returns AsyncIterable of {@link ListEnrichmentJobsCommandOutput}.
|
|
1281
|
+
*/
|
|
1282
|
+
paginateListEnrichmentJobs(args: ListEnrichmentJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEnrichmentJobsCommandOutput>;
|
|
910
1283
|
/**
|
|
911
1284
|
* @see {@link ListExecutionsCommand}
|
|
912
1285
|
* @param args - command input.
|
|
@@ -928,6 +1301,20 @@ export interface IoTSiteWise {
|
|
|
928
1301
|
* @returns AsyncIterable of {@link ListInterfaceRelationshipsCommandOutput}.
|
|
929
1302
|
*/
|
|
930
1303
|
paginateListInterfaceRelationships(args: ListInterfaceRelationshipsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInterfaceRelationshipsCommandOutput>;
|
|
1304
|
+
/**
|
|
1305
|
+
* @see {@link ListPipelineExecutionsCommand}
|
|
1306
|
+
* @param args - command input.
|
|
1307
|
+
* @param paginationConfig - optional pagination config.
|
|
1308
|
+
* @returns AsyncIterable of {@link ListPipelineExecutionsCommandOutput}.
|
|
1309
|
+
*/
|
|
1310
|
+
paginateListPipelineExecutions(args: ListPipelineExecutionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPipelineExecutionsCommandOutput>;
|
|
1311
|
+
/**
|
|
1312
|
+
* @see {@link ListPipelinesCommand}
|
|
1313
|
+
* @param args - command input.
|
|
1314
|
+
* @param paginationConfig - optional pagination config.
|
|
1315
|
+
* @returns AsyncIterable of {@link ListPipelinesCommandOutput}.
|
|
1316
|
+
*/
|
|
1317
|
+
paginateListPipelines(args: ListPipelinesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPipelinesCommandOutput>;
|
|
931
1318
|
/**
|
|
932
1319
|
* @see {@link ListPortalsCommand}
|
|
933
1320
|
* @param args - command input.
|
|
@@ -949,6 +1336,27 @@ export interface IoTSiteWise {
|
|
|
949
1336
|
* @returns AsyncIterable of {@link ListProjectsCommandOutput}.
|
|
950
1337
|
*/
|
|
951
1338
|
paginateListProjects(args: ListProjectsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProjectsCommandOutput>;
|
|
1339
|
+
/**
|
|
1340
|
+
* @see {@link ListQueriesCommand}
|
|
1341
|
+
* @param args - command input.
|
|
1342
|
+
* @param paginationConfig - optional pagination config.
|
|
1343
|
+
* @returns AsyncIterable of {@link ListQueriesCommandOutput}.
|
|
1344
|
+
*/
|
|
1345
|
+
paginateListQueries(args: ListQueriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueriesCommandOutput>;
|
|
1346
|
+
/**
|
|
1347
|
+
* @see {@link ListSearchesCommand}
|
|
1348
|
+
* @param args - command input.
|
|
1349
|
+
* @param paginationConfig - optional pagination config.
|
|
1350
|
+
* @returns AsyncIterable of {@link ListSearchesCommandOutput}.
|
|
1351
|
+
*/
|
|
1352
|
+
paginateListSearches(args: ListSearchesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSearchesCommandOutput>;
|
|
1353
|
+
/**
|
|
1354
|
+
* @see {@link ListTasksCommand}
|
|
1355
|
+
* @param args - command input.
|
|
1356
|
+
* @param paginationConfig - optional pagination config.
|
|
1357
|
+
* @returns AsyncIterable of {@link ListTasksCommandOutput}.
|
|
1358
|
+
*/
|
|
1359
|
+
paginateListTasks(args: ListTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTasksCommandOutput>;
|
|
952
1360
|
/**
|
|
953
1361
|
* @see {@link ListTimeSeriesCommand}
|
|
954
1362
|
* @param args - command input.
|
|
@@ -956,6 +1364,13 @@ export interface IoTSiteWise {
|
|
|
956
1364
|
* @returns AsyncIterable of {@link ListTimeSeriesCommandOutput}.
|
|
957
1365
|
*/
|
|
958
1366
|
paginateListTimeSeries(args?: ListTimeSeriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTimeSeriesCommandOutput>;
|
|
1367
|
+
/**
|
|
1368
|
+
* @see {@link ListWorkspacesCommand}
|
|
1369
|
+
* @param args - command input.
|
|
1370
|
+
* @param paginationConfig - optional pagination config.
|
|
1371
|
+
* @returns AsyncIterable of {@link ListWorkspacesCommandOutput}.
|
|
1372
|
+
*/
|
|
1373
|
+
paginateListWorkspaces(args?: ListWorkspacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkspacesCommandOutput>;
|
|
959
1374
|
/**
|
|
960
1375
|
* @see {@link DescribeAssetCommand}
|
|
961
1376
|
* @param args - command input.
|