@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
|
@@ -13,10 +13,22 @@ import {
|
|
|
13
13
|
AssociateTimeSeriesToAssetPropertyCommandInput,
|
|
14
14
|
AssociateTimeSeriesToAssetPropertyCommandOutput,
|
|
15
15
|
} from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
16
|
+
import {
|
|
17
|
+
BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
18
|
+
BatchAssociateDataSegmentsToDatasetCommandOutput,
|
|
19
|
+
} from "./commands/BatchAssociateDataSegmentsToDatasetCommand";
|
|
16
20
|
import {
|
|
17
21
|
BatchAssociateProjectAssetsCommandInput,
|
|
18
22
|
BatchAssociateProjectAssetsCommandOutput,
|
|
19
23
|
} from "./commands/BatchAssociateProjectAssetsCommand";
|
|
24
|
+
import {
|
|
25
|
+
BatchDeleteDatasetDataSegmentsCommandInput,
|
|
26
|
+
BatchDeleteDatasetDataSegmentsCommandOutput,
|
|
27
|
+
} from "./commands/BatchDeleteDatasetDataSegmentsCommand";
|
|
28
|
+
import {
|
|
29
|
+
BatchDisassociateDataSegmentsFromDatasetCommandInput,
|
|
30
|
+
BatchDisassociateDataSegmentsFromDatasetCommandOutput,
|
|
31
|
+
} from "./commands/BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
20
32
|
import {
|
|
21
33
|
BatchDisassociateProjectAssetsCommandInput,
|
|
22
34
|
BatchDisassociateProjectAssetsCommandOutput,
|
|
@@ -37,10 +49,23 @@ import {
|
|
|
37
49
|
BatchPutAssetPropertyValueCommandInput,
|
|
38
50
|
BatchPutAssetPropertyValueCommandOutput,
|
|
39
51
|
} from "./commands/BatchPutAssetPropertyValueCommand";
|
|
52
|
+
import {
|
|
53
|
+
CancelEnrichmentJobCommandInput,
|
|
54
|
+
CancelEnrichmentJobCommandOutput,
|
|
55
|
+
} from "./commands/CancelEnrichmentJobCommand";
|
|
56
|
+
import {
|
|
57
|
+
CancelPipelineExecutionCommandInput,
|
|
58
|
+
CancelPipelineExecutionCommandOutput,
|
|
59
|
+
} from "./commands/CancelPipelineExecutionCommand";
|
|
60
|
+
import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
|
|
40
61
|
import {
|
|
41
62
|
CreateAccessPolicyCommandInput,
|
|
42
63
|
CreateAccessPolicyCommandOutput,
|
|
43
64
|
} from "./commands/CreateAccessPolicyCommand";
|
|
65
|
+
import {
|
|
66
|
+
CreateApplicationCommandInput,
|
|
67
|
+
CreateApplicationCommandOutput,
|
|
68
|
+
} from "./commands/CreateApplicationCommand";
|
|
44
69
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
45
70
|
import {
|
|
46
71
|
CreateAssetModelCommandInput,
|
|
@@ -66,10 +91,22 @@ import {
|
|
|
66
91
|
CreateDatasetCommandInput,
|
|
67
92
|
CreateDatasetCommandOutput,
|
|
68
93
|
} from "./commands/CreateDatasetCommand";
|
|
94
|
+
import {
|
|
95
|
+
CreateDatasetExportJobCommandInput,
|
|
96
|
+
CreateDatasetExportJobCommandOutput,
|
|
97
|
+
} from "./commands/CreateDatasetExportJobCommand";
|
|
98
|
+
import {
|
|
99
|
+
CreateEnrichmentJobCommandInput,
|
|
100
|
+
CreateEnrichmentJobCommandOutput,
|
|
101
|
+
} from "./commands/CreateEnrichmentJobCommand";
|
|
69
102
|
import {
|
|
70
103
|
CreateGatewayCommandInput,
|
|
71
104
|
CreateGatewayCommandOutput,
|
|
72
105
|
} from "./commands/CreateGatewayCommand";
|
|
106
|
+
import {
|
|
107
|
+
CreatePipelineCommandInput,
|
|
108
|
+
CreatePipelineCommandOutput,
|
|
109
|
+
} from "./commands/CreatePipelineCommand";
|
|
73
110
|
import {
|
|
74
111
|
CreatePortalCommandInput,
|
|
75
112
|
CreatePortalCommandOutput,
|
|
@@ -78,10 +115,19 @@ import {
|
|
|
78
115
|
CreateProjectCommandInput,
|
|
79
116
|
CreateProjectCommandOutput,
|
|
80
117
|
} from "./commands/CreateProjectCommand";
|
|
118
|
+
import { CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
119
|
+
import {
|
|
120
|
+
CreateWorkspaceCommandInput,
|
|
121
|
+
CreateWorkspaceCommandOutput,
|
|
122
|
+
} from "./commands/CreateWorkspaceCommand";
|
|
81
123
|
import {
|
|
82
124
|
DeleteAccessPolicyCommandInput,
|
|
83
125
|
DeleteAccessPolicyCommandOutput,
|
|
84
126
|
} from "./commands/DeleteAccessPolicyCommand";
|
|
127
|
+
import {
|
|
128
|
+
DeleteApplicationCommandInput,
|
|
129
|
+
DeleteApplicationCommandOutput,
|
|
130
|
+
} from "./commands/DeleteApplicationCommand";
|
|
85
131
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
86
132
|
import {
|
|
87
133
|
DeleteAssetModelCommandInput,
|
|
@@ -111,6 +157,10 @@ import {
|
|
|
111
157
|
DeleteGatewayCommandInput,
|
|
112
158
|
DeleteGatewayCommandOutput,
|
|
113
159
|
} from "./commands/DeleteGatewayCommand";
|
|
160
|
+
import {
|
|
161
|
+
DeletePipelineCommandInput,
|
|
162
|
+
DeletePipelineCommandOutput,
|
|
163
|
+
} from "./commands/DeletePipelineCommand";
|
|
114
164
|
import {
|
|
115
165
|
DeletePortalCommandInput,
|
|
116
166
|
DeletePortalCommandOutput,
|
|
@@ -119,10 +169,15 @@ import {
|
|
|
119
169
|
DeleteProjectCommandInput,
|
|
120
170
|
DeleteProjectCommandOutput,
|
|
121
171
|
} from "./commands/DeleteProjectCommand";
|
|
172
|
+
import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
|
|
122
173
|
import {
|
|
123
174
|
DeleteTimeSeriesCommandInput,
|
|
124
175
|
DeleteTimeSeriesCommandOutput,
|
|
125
176
|
} from "./commands/DeleteTimeSeriesCommand";
|
|
177
|
+
import {
|
|
178
|
+
DeleteWorkspaceCommandInput,
|
|
179
|
+
DeleteWorkspaceCommandOutput,
|
|
180
|
+
} from "./commands/DeleteWorkspaceCommand";
|
|
126
181
|
import {
|
|
127
182
|
DescribeAccessPolicyCommandInput,
|
|
128
183
|
DescribeAccessPolicyCommandOutput,
|
|
@@ -131,6 +186,10 @@ import {
|
|
|
131
186
|
DescribeActionCommandInput,
|
|
132
187
|
DescribeActionCommandOutput,
|
|
133
188
|
} from "./commands/DescribeActionCommand";
|
|
189
|
+
import {
|
|
190
|
+
DescribeApplicationCommandInput,
|
|
191
|
+
DescribeApplicationCommandOutput,
|
|
192
|
+
} from "./commands/DescribeApplicationCommand";
|
|
134
193
|
import {
|
|
135
194
|
DescribeAssetCommandInput,
|
|
136
195
|
DescribeAssetCommandOutput,
|
|
@@ -175,10 +234,18 @@ import {
|
|
|
175
234
|
DescribeDatasetCommandInput,
|
|
176
235
|
DescribeDatasetCommandOutput,
|
|
177
236
|
} from "./commands/DescribeDatasetCommand";
|
|
237
|
+
import {
|
|
238
|
+
DescribeDatasetExportJobCommandInput,
|
|
239
|
+
DescribeDatasetExportJobCommandOutput,
|
|
240
|
+
} from "./commands/DescribeDatasetExportJobCommand";
|
|
178
241
|
import {
|
|
179
242
|
DescribeDefaultEncryptionConfigurationCommandInput,
|
|
180
243
|
DescribeDefaultEncryptionConfigurationCommandOutput,
|
|
181
244
|
} from "./commands/DescribeDefaultEncryptionConfigurationCommand";
|
|
245
|
+
import {
|
|
246
|
+
DescribeEnrichmentJobCommandInput,
|
|
247
|
+
DescribeEnrichmentJobCommandOutput,
|
|
248
|
+
} from "./commands/DescribeEnrichmentJobCommand";
|
|
182
249
|
import {
|
|
183
250
|
DescribeExecutionCommandInput,
|
|
184
251
|
DescribeExecutionCommandOutput,
|
|
@@ -195,6 +262,14 @@ import {
|
|
|
195
262
|
DescribeLoggingOptionsCommandInput,
|
|
196
263
|
DescribeLoggingOptionsCommandOutput,
|
|
197
264
|
} from "./commands/DescribeLoggingOptionsCommand";
|
|
265
|
+
import {
|
|
266
|
+
DescribePipelineCommandInput,
|
|
267
|
+
DescribePipelineCommandOutput,
|
|
268
|
+
} from "./commands/DescribePipelineCommand";
|
|
269
|
+
import {
|
|
270
|
+
DescribePipelineExecutionCommandInput,
|
|
271
|
+
DescribePipelineExecutionCommandOutput,
|
|
272
|
+
} from "./commands/DescribePipelineExecutionCommand";
|
|
198
273
|
import {
|
|
199
274
|
DescribePortalCommandInput,
|
|
200
275
|
DescribePortalCommandOutput,
|
|
@@ -203,14 +278,30 @@ import {
|
|
|
203
278
|
DescribeProjectCommandInput,
|
|
204
279
|
DescribeProjectCommandOutput,
|
|
205
280
|
} from "./commands/DescribeProjectCommand";
|
|
281
|
+
import {
|
|
282
|
+
DescribeQueryCommandInput,
|
|
283
|
+
DescribeQueryCommandOutput,
|
|
284
|
+
} from "./commands/DescribeQueryCommand";
|
|
285
|
+
import {
|
|
286
|
+
DescribeSearchCommandInput,
|
|
287
|
+
DescribeSearchCommandOutput,
|
|
288
|
+
} from "./commands/DescribeSearchCommand";
|
|
206
289
|
import {
|
|
207
290
|
DescribeStorageConfigurationCommandInput,
|
|
208
291
|
DescribeStorageConfigurationCommandOutput,
|
|
209
292
|
} from "./commands/DescribeStorageConfigurationCommand";
|
|
293
|
+
import {
|
|
294
|
+
DescribeTaskCommandInput,
|
|
295
|
+
DescribeTaskCommandOutput,
|
|
296
|
+
} from "./commands/DescribeTaskCommand";
|
|
210
297
|
import {
|
|
211
298
|
DescribeTimeSeriesCommandInput,
|
|
212
299
|
DescribeTimeSeriesCommandOutput,
|
|
213
300
|
} from "./commands/DescribeTimeSeriesCommand";
|
|
301
|
+
import {
|
|
302
|
+
DescribeWorkspaceCommandInput,
|
|
303
|
+
DescribeWorkspaceCommandOutput,
|
|
304
|
+
} from "./commands/DescribeWorkspaceCommand";
|
|
214
305
|
import {
|
|
215
306
|
DisassociateAssetsCommandInput,
|
|
216
307
|
DisassociateAssetsCommandOutput,
|
|
@@ -239,10 +330,22 @@ import {
|
|
|
239
330
|
GetAssetPropertyValueHistoryCommandInput,
|
|
240
331
|
GetAssetPropertyValueHistoryCommandOutput,
|
|
241
332
|
} from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
333
|
+
import {
|
|
334
|
+
GetCaptureDataCommandInput,
|
|
335
|
+
GetCaptureDataCommandOutput,
|
|
336
|
+
} from "./commands/GetCaptureDataCommand";
|
|
242
337
|
import {
|
|
243
338
|
GetInterpolatedAssetPropertyValuesCommandInput,
|
|
244
339
|
GetInterpolatedAssetPropertyValuesCommandOutput,
|
|
245
340
|
} from "./commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
341
|
+
import {
|
|
342
|
+
GetQueryResultsCommandInput,
|
|
343
|
+
GetQueryResultsCommandOutput,
|
|
344
|
+
} from "./commands/GetQueryResultsCommand";
|
|
345
|
+
import {
|
|
346
|
+
GetSearchResultsCommandInput,
|
|
347
|
+
GetSearchResultsCommandOutput,
|
|
348
|
+
} from "./commands/GetSearchResultsCommand";
|
|
246
349
|
import {
|
|
247
350
|
InvokeAssistantCommandInput,
|
|
248
351
|
InvokeAssistantCommandOutput,
|
|
@@ -252,6 +355,10 @@ import {
|
|
|
252
355
|
ListAccessPoliciesCommandOutput,
|
|
253
356
|
} from "./commands/ListAccessPoliciesCommand";
|
|
254
357
|
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
358
|
+
import {
|
|
359
|
+
ListApplicationsCommandInput,
|
|
360
|
+
ListApplicationsCommandOutput,
|
|
361
|
+
} from "./commands/ListApplicationsCommand";
|
|
255
362
|
import {
|
|
256
363
|
ListAssetModelCompositeModelsCommandInput,
|
|
257
364
|
ListAssetModelCompositeModelsCommandOutput,
|
|
@@ -301,10 +408,26 @@ import {
|
|
|
301
408
|
ListDashboardsCommandInput,
|
|
302
409
|
ListDashboardsCommandOutput,
|
|
303
410
|
} from "./commands/ListDashboardsCommand";
|
|
411
|
+
import {
|
|
412
|
+
ListDatasetDataSegmentRelationshipsCommandInput,
|
|
413
|
+
ListDatasetDataSegmentRelationshipsCommandOutput,
|
|
414
|
+
} from "./commands/ListDatasetDataSegmentRelationshipsCommand";
|
|
415
|
+
import {
|
|
416
|
+
ListDatasetDataSegmentsCommandInput,
|
|
417
|
+
ListDatasetDataSegmentsCommandOutput,
|
|
418
|
+
} from "./commands/ListDatasetDataSegmentsCommand";
|
|
419
|
+
import {
|
|
420
|
+
ListDatasetExportJobsCommandInput,
|
|
421
|
+
ListDatasetExportJobsCommandOutput,
|
|
422
|
+
} from "./commands/ListDatasetExportJobsCommand";
|
|
304
423
|
import {
|
|
305
424
|
ListDatasetsCommandInput,
|
|
306
425
|
ListDatasetsCommandOutput,
|
|
307
426
|
} from "./commands/ListDatasetsCommand";
|
|
427
|
+
import {
|
|
428
|
+
ListEnrichmentJobsCommandInput,
|
|
429
|
+
ListEnrichmentJobsCommandOutput,
|
|
430
|
+
} from "./commands/ListEnrichmentJobsCommand";
|
|
308
431
|
import {
|
|
309
432
|
ListExecutionsCommandInput,
|
|
310
433
|
ListExecutionsCommandOutput,
|
|
@@ -317,6 +440,14 @@ import {
|
|
|
317
440
|
ListInterfaceRelationshipsCommandInput,
|
|
318
441
|
ListInterfaceRelationshipsCommandOutput,
|
|
319
442
|
} from "./commands/ListInterfaceRelationshipsCommand";
|
|
443
|
+
import {
|
|
444
|
+
ListPipelineExecutionsCommandInput,
|
|
445
|
+
ListPipelineExecutionsCommandOutput,
|
|
446
|
+
} from "./commands/ListPipelineExecutionsCommand";
|
|
447
|
+
import {
|
|
448
|
+
ListPipelinesCommandInput,
|
|
449
|
+
ListPipelinesCommandOutput,
|
|
450
|
+
} from "./commands/ListPipelinesCommand";
|
|
320
451
|
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
321
452
|
import {
|
|
322
453
|
ListProjectAssetsCommandInput,
|
|
@@ -326,14 +457,24 @@ import {
|
|
|
326
457
|
ListProjectsCommandInput,
|
|
327
458
|
ListProjectsCommandOutput,
|
|
328
459
|
} from "./commands/ListProjectsCommand";
|
|
460
|
+
import { ListQueriesCommandInput, ListQueriesCommandOutput } from "./commands/ListQueriesCommand";
|
|
461
|
+
import {
|
|
462
|
+
ListSearchesCommandInput,
|
|
463
|
+
ListSearchesCommandOutput,
|
|
464
|
+
} from "./commands/ListSearchesCommand";
|
|
329
465
|
import {
|
|
330
466
|
ListTagsForResourceCommandInput,
|
|
331
467
|
ListTagsForResourceCommandOutput,
|
|
332
468
|
} from "./commands/ListTagsForResourceCommand";
|
|
469
|
+
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
333
470
|
import {
|
|
334
471
|
ListTimeSeriesCommandInput,
|
|
335
472
|
ListTimeSeriesCommandOutput,
|
|
336
473
|
} from "./commands/ListTimeSeriesCommand";
|
|
474
|
+
import {
|
|
475
|
+
ListWorkspacesCommandInput,
|
|
476
|
+
ListWorkspacesCommandOutput,
|
|
477
|
+
} from "./commands/ListWorkspacesCommand";
|
|
337
478
|
import {
|
|
338
479
|
PutAssetModelInterfaceRelationshipCommandInput,
|
|
339
480
|
PutAssetModelInterfaceRelationshipCommandOutput,
|
|
@@ -350,6 +491,12 @@ import {
|
|
|
350
491
|
PutStorageConfigurationCommandInput,
|
|
351
492
|
PutStorageConfigurationCommandOutput,
|
|
352
493
|
} from "./commands/PutStorageConfigurationCommand";
|
|
494
|
+
import {
|
|
495
|
+
StartPipelineExecutionCommandInput,
|
|
496
|
+
StartPipelineExecutionCommandOutput,
|
|
497
|
+
} from "./commands/StartPipelineExecutionCommand";
|
|
498
|
+
import { StartQueryCommandInput, StartQueryCommandOutput } from "./commands/StartQueryCommand";
|
|
499
|
+
import { StartSearchCommandInput, StartSearchCommandOutput } from "./commands/StartSearchCommand";
|
|
353
500
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
354
501
|
import {
|
|
355
502
|
UntagResourceCommandInput,
|
|
@@ -392,6 +539,10 @@ import {
|
|
|
392
539
|
UpdateGatewayCommandInput,
|
|
393
540
|
UpdateGatewayCommandOutput,
|
|
394
541
|
} from "./commands/UpdateGatewayCommand";
|
|
542
|
+
import {
|
|
543
|
+
UpdatePipelineCommandInput,
|
|
544
|
+
UpdatePipelineCommandOutput,
|
|
545
|
+
} from "./commands/UpdatePipelineCommand";
|
|
395
546
|
import {
|
|
396
547
|
UpdatePortalCommandInput,
|
|
397
548
|
UpdatePortalCommandOutput,
|
|
@@ -400,6 +551,11 @@ import {
|
|
|
400
551
|
UpdateProjectCommandInput,
|
|
401
552
|
UpdateProjectCommandOutput,
|
|
402
553
|
} from "./commands/UpdateProjectCommand";
|
|
554
|
+
import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
|
|
555
|
+
import {
|
|
556
|
+
UpdateWorkspaceCommandInput,
|
|
557
|
+
UpdateWorkspaceCommandOutput,
|
|
558
|
+
} from "./commands/UpdateWorkspaceCommand";
|
|
403
559
|
import { IoTSiteWiseClient } from "./IoTSiteWiseClient";
|
|
404
560
|
import { ResourceNotFoundException } from "./models/errors";
|
|
405
561
|
export interface IoTSiteWise {
|
|
@@ -429,6 +585,19 @@ export interface IoTSiteWise {
|
|
|
429
585
|
options: __HttpHandlerOptions,
|
|
430
586
|
cb: (err: any, data?: AssociateTimeSeriesToAssetPropertyCommandOutput) => void,
|
|
431
587
|
): void;
|
|
588
|
+
batchAssociateDataSegmentsToDataset(
|
|
589
|
+
args: BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
590
|
+
options?: __HttpHandlerOptions,
|
|
591
|
+
): Promise<BatchAssociateDataSegmentsToDatasetCommandOutput>;
|
|
592
|
+
batchAssociateDataSegmentsToDataset(
|
|
593
|
+
args: BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
594
|
+
cb: (err: any, data?: BatchAssociateDataSegmentsToDatasetCommandOutput) => void,
|
|
595
|
+
): void;
|
|
596
|
+
batchAssociateDataSegmentsToDataset(
|
|
597
|
+
args: BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
598
|
+
options: __HttpHandlerOptions,
|
|
599
|
+
cb: (err: any, data?: BatchAssociateDataSegmentsToDatasetCommandOutput) => void,
|
|
600
|
+
): void;
|
|
432
601
|
batchAssociateProjectAssets(
|
|
433
602
|
args: BatchAssociateProjectAssetsCommandInput,
|
|
434
603
|
options?: __HttpHandlerOptions,
|
|
@@ -442,6 +611,32 @@ export interface IoTSiteWise {
|
|
|
442
611
|
options: __HttpHandlerOptions,
|
|
443
612
|
cb: (err: any, data?: BatchAssociateProjectAssetsCommandOutput) => void,
|
|
444
613
|
): void;
|
|
614
|
+
batchDeleteDatasetDataSegments(
|
|
615
|
+
args: BatchDeleteDatasetDataSegmentsCommandInput,
|
|
616
|
+
options?: __HttpHandlerOptions,
|
|
617
|
+
): Promise<BatchDeleteDatasetDataSegmentsCommandOutput>;
|
|
618
|
+
batchDeleteDatasetDataSegments(
|
|
619
|
+
args: BatchDeleteDatasetDataSegmentsCommandInput,
|
|
620
|
+
cb: (err: any, data?: BatchDeleteDatasetDataSegmentsCommandOutput) => void,
|
|
621
|
+
): void;
|
|
622
|
+
batchDeleteDatasetDataSegments(
|
|
623
|
+
args: BatchDeleteDatasetDataSegmentsCommandInput,
|
|
624
|
+
options: __HttpHandlerOptions,
|
|
625
|
+
cb: (err: any, data?: BatchDeleteDatasetDataSegmentsCommandOutput) => void,
|
|
626
|
+
): void;
|
|
627
|
+
batchDisassociateDataSegmentsFromDataset(
|
|
628
|
+
args: BatchDisassociateDataSegmentsFromDatasetCommandInput,
|
|
629
|
+
options?: __HttpHandlerOptions,
|
|
630
|
+
): Promise<BatchDisassociateDataSegmentsFromDatasetCommandOutput>;
|
|
631
|
+
batchDisassociateDataSegmentsFromDataset(
|
|
632
|
+
args: BatchDisassociateDataSegmentsFromDatasetCommandInput,
|
|
633
|
+
cb: (err: any, data?: BatchDisassociateDataSegmentsFromDatasetCommandOutput) => void,
|
|
634
|
+
): void;
|
|
635
|
+
batchDisassociateDataSegmentsFromDataset(
|
|
636
|
+
args: BatchDisassociateDataSegmentsFromDatasetCommandInput,
|
|
637
|
+
options: __HttpHandlerOptions,
|
|
638
|
+
cb: (err: any, data?: BatchDisassociateDataSegmentsFromDatasetCommandOutput) => void,
|
|
639
|
+
): void;
|
|
445
640
|
batchDisassociateProjectAssets(
|
|
446
641
|
args: BatchDisassociateProjectAssetsCommandInput,
|
|
447
642
|
options?: __HttpHandlerOptions,
|
|
@@ -507,6 +702,45 @@ export interface IoTSiteWise {
|
|
|
507
702
|
options: __HttpHandlerOptions,
|
|
508
703
|
cb: (err: any, data?: BatchPutAssetPropertyValueCommandOutput) => void,
|
|
509
704
|
): void;
|
|
705
|
+
cancelEnrichmentJob(
|
|
706
|
+
args: CancelEnrichmentJobCommandInput,
|
|
707
|
+
options?: __HttpHandlerOptions,
|
|
708
|
+
): Promise<CancelEnrichmentJobCommandOutput>;
|
|
709
|
+
cancelEnrichmentJob(
|
|
710
|
+
args: CancelEnrichmentJobCommandInput,
|
|
711
|
+
cb: (err: any, data?: CancelEnrichmentJobCommandOutput) => void,
|
|
712
|
+
): void;
|
|
713
|
+
cancelEnrichmentJob(
|
|
714
|
+
args: CancelEnrichmentJobCommandInput,
|
|
715
|
+
options: __HttpHandlerOptions,
|
|
716
|
+
cb: (err: any, data?: CancelEnrichmentJobCommandOutput) => void,
|
|
717
|
+
): void;
|
|
718
|
+
cancelPipelineExecution(
|
|
719
|
+
args: CancelPipelineExecutionCommandInput,
|
|
720
|
+
options?: __HttpHandlerOptions,
|
|
721
|
+
): Promise<CancelPipelineExecutionCommandOutput>;
|
|
722
|
+
cancelPipelineExecution(
|
|
723
|
+
args: CancelPipelineExecutionCommandInput,
|
|
724
|
+
cb: (err: any, data?: CancelPipelineExecutionCommandOutput) => void,
|
|
725
|
+
): void;
|
|
726
|
+
cancelPipelineExecution(
|
|
727
|
+
args: CancelPipelineExecutionCommandInput,
|
|
728
|
+
options: __HttpHandlerOptions,
|
|
729
|
+
cb: (err: any, data?: CancelPipelineExecutionCommandOutput) => void,
|
|
730
|
+
): void;
|
|
731
|
+
cancelQuery(
|
|
732
|
+
args: CancelQueryCommandInput,
|
|
733
|
+
options?: __HttpHandlerOptions,
|
|
734
|
+
): Promise<CancelQueryCommandOutput>;
|
|
735
|
+
cancelQuery(
|
|
736
|
+
args: CancelQueryCommandInput,
|
|
737
|
+
cb: (err: any, data?: CancelQueryCommandOutput) => void,
|
|
738
|
+
): void;
|
|
739
|
+
cancelQuery(
|
|
740
|
+
args: CancelQueryCommandInput,
|
|
741
|
+
options: __HttpHandlerOptions,
|
|
742
|
+
cb: (err: any, data?: CancelQueryCommandOutput) => void,
|
|
743
|
+
): void;
|
|
510
744
|
createAccessPolicy(
|
|
511
745
|
args: CreateAccessPolicyCommandInput,
|
|
512
746
|
options?: __HttpHandlerOptions,
|
|
@@ -520,6 +754,19 @@ export interface IoTSiteWise {
|
|
|
520
754
|
options: __HttpHandlerOptions,
|
|
521
755
|
cb: (err: any, data?: CreateAccessPolicyCommandOutput) => void,
|
|
522
756
|
): void;
|
|
757
|
+
createApplication(
|
|
758
|
+
args: CreateApplicationCommandInput,
|
|
759
|
+
options?: __HttpHandlerOptions,
|
|
760
|
+
): Promise<CreateApplicationCommandOutput>;
|
|
761
|
+
createApplication(
|
|
762
|
+
args: CreateApplicationCommandInput,
|
|
763
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
764
|
+
): void;
|
|
765
|
+
createApplication(
|
|
766
|
+
args: CreateApplicationCommandInput,
|
|
767
|
+
options: __HttpHandlerOptions,
|
|
768
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
769
|
+
): void;
|
|
523
770
|
createAsset(
|
|
524
771
|
args: CreateAssetCommandInput,
|
|
525
772
|
options?: __HttpHandlerOptions,
|
|
@@ -611,6 +858,32 @@ export interface IoTSiteWise {
|
|
|
611
858
|
options: __HttpHandlerOptions,
|
|
612
859
|
cb: (err: any, data?: CreateDatasetCommandOutput) => void,
|
|
613
860
|
): void;
|
|
861
|
+
createDatasetExportJob(
|
|
862
|
+
args: CreateDatasetExportJobCommandInput,
|
|
863
|
+
options?: __HttpHandlerOptions,
|
|
864
|
+
): Promise<CreateDatasetExportJobCommandOutput>;
|
|
865
|
+
createDatasetExportJob(
|
|
866
|
+
args: CreateDatasetExportJobCommandInput,
|
|
867
|
+
cb: (err: any, data?: CreateDatasetExportJobCommandOutput) => void,
|
|
868
|
+
): void;
|
|
869
|
+
createDatasetExportJob(
|
|
870
|
+
args: CreateDatasetExportJobCommandInput,
|
|
871
|
+
options: __HttpHandlerOptions,
|
|
872
|
+
cb: (err: any, data?: CreateDatasetExportJobCommandOutput) => void,
|
|
873
|
+
): void;
|
|
874
|
+
createEnrichmentJob(
|
|
875
|
+
args: CreateEnrichmentJobCommandInput,
|
|
876
|
+
options?: __HttpHandlerOptions,
|
|
877
|
+
): Promise<CreateEnrichmentJobCommandOutput>;
|
|
878
|
+
createEnrichmentJob(
|
|
879
|
+
args: CreateEnrichmentJobCommandInput,
|
|
880
|
+
cb: (err: any, data?: CreateEnrichmentJobCommandOutput) => void,
|
|
881
|
+
): void;
|
|
882
|
+
createEnrichmentJob(
|
|
883
|
+
args: CreateEnrichmentJobCommandInput,
|
|
884
|
+
options: __HttpHandlerOptions,
|
|
885
|
+
cb: (err: any, data?: CreateEnrichmentJobCommandOutput) => void,
|
|
886
|
+
): void;
|
|
614
887
|
createGateway(
|
|
615
888
|
args: CreateGatewayCommandInput,
|
|
616
889
|
options?: __HttpHandlerOptions,
|
|
@@ -624,6 +897,19 @@ export interface IoTSiteWise {
|
|
|
624
897
|
options: __HttpHandlerOptions,
|
|
625
898
|
cb: (err: any, data?: CreateGatewayCommandOutput) => void,
|
|
626
899
|
): void;
|
|
900
|
+
createPipeline(
|
|
901
|
+
args: CreatePipelineCommandInput,
|
|
902
|
+
options?: __HttpHandlerOptions,
|
|
903
|
+
): Promise<CreatePipelineCommandOutput>;
|
|
904
|
+
createPipeline(
|
|
905
|
+
args: CreatePipelineCommandInput,
|
|
906
|
+
cb: (err: any, data?: CreatePipelineCommandOutput) => void,
|
|
907
|
+
): void;
|
|
908
|
+
createPipeline(
|
|
909
|
+
args: CreatePipelineCommandInput,
|
|
910
|
+
options: __HttpHandlerOptions,
|
|
911
|
+
cb: (err: any, data?: CreatePipelineCommandOutput) => void,
|
|
912
|
+
): void;
|
|
627
913
|
createPortal(
|
|
628
914
|
args: CreatePortalCommandInput,
|
|
629
915
|
options?: __HttpHandlerOptions,
|
|
@@ -650,6 +936,32 @@ export interface IoTSiteWise {
|
|
|
650
936
|
options: __HttpHandlerOptions,
|
|
651
937
|
cb: (err: any, data?: CreateProjectCommandOutput) => void,
|
|
652
938
|
): void;
|
|
939
|
+
createTask(
|
|
940
|
+
args: CreateTaskCommandInput,
|
|
941
|
+
options?: __HttpHandlerOptions,
|
|
942
|
+
): Promise<CreateTaskCommandOutput>;
|
|
943
|
+
createTask(
|
|
944
|
+
args: CreateTaskCommandInput,
|
|
945
|
+
cb: (err: any, data?: CreateTaskCommandOutput) => void,
|
|
946
|
+
): void;
|
|
947
|
+
createTask(
|
|
948
|
+
args: CreateTaskCommandInput,
|
|
949
|
+
options: __HttpHandlerOptions,
|
|
950
|
+
cb: (err: any, data?: CreateTaskCommandOutput) => void,
|
|
951
|
+
): void;
|
|
952
|
+
createWorkspace(
|
|
953
|
+
args: CreateWorkspaceCommandInput,
|
|
954
|
+
options?: __HttpHandlerOptions,
|
|
955
|
+
): Promise<CreateWorkspaceCommandOutput>;
|
|
956
|
+
createWorkspace(
|
|
957
|
+
args: CreateWorkspaceCommandInput,
|
|
958
|
+
cb: (err: any, data?: CreateWorkspaceCommandOutput) => void,
|
|
959
|
+
): void;
|
|
960
|
+
createWorkspace(
|
|
961
|
+
args: CreateWorkspaceCommandInput,
|
|
962
|
+
options: __HttpHandlerOptions,
|
|
963
|
+
cb: (err: any, data?: CreateWorkspaceCommandOutput) => void,
|
|
964
|
+
): void;
|
|
653
965
|
deleteAccessPolicy(
|
|
654
966
|
args: DeleteAccessPolicyCommandInput,
|
|
655
967
|
options?: __HttpHandlerOptions,
|
|
@@ -663,6 +975,19 @@ export interface IoTSiteWise {
|
|
|
663
975
|
options: __HttpHandlerOptions,
|
|
664
976
|
cb: (err: any, data?: DeleteAccessPolicyCommandOutput) => void,
|
|
665
977
|
): void;
|
|
978
|
+
deleteApplication(
|
|
979
|
+
args: DeleteApplicationCommandInput,
|
|
980
|
+
options?: __HttpHandlerOptions,
|
|
981
|
+
): Promise<DeleteApplicationCommandOutput>;
|
|
982
|
+
deleteApplication(
|
|
983
|
+
args: DeleteApplicationCommandInput,
|
|
984
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
985
|
+
): void;
|
|
986
|
+
deleteApplication(
|
|
987
|
+
args: DeleteApplicationCommandInput,
|
|
988
|
+
options: __HttpHandlerOptions,
|
|
989
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
990
|
+
): void;
|
|
666
991
|
deleteAsset(
|
|
667
992
|
args: DeleteAssetCommandInput,
|
|
668
993
|
options?: __HttpHandlerOptions,
|
|
@@ -767,6 +1092,19 @@ export interface IoTSiteWise {
|
|
|
767
1092
|
options: __HttpHandlerOptions,
|
|
768
1093
|
cb: (err: any, data?: DeleteGatewayCommandOutput) => void,
|
|
769
1094
|
): void;
|
|
1095
|
+
deletePipeline(
|
|
1096
|
+
args: DeletePipelineCommandInput,
|
|
1097
|
+
options?: __HttpHandlerOptions,
|
|
1098
|
+
): Promise<DeletePipelineCommandOutput>;
|
|
1099
|
+
deletePipeline(
|
|
1100
|
+
args: DeletePipelineCommandInput,
|
|
1101
|
+
cb: (err: any, data?: DeletePipelineCommandOutput) => void,
|
|
1102
|
+
): void;
|
|
1103
|
+
deletePipeline(
|
|
1104
|
+
args: DeletePipelineCommandInput,
|
|
1105
|
+
options: __HttpHandlerOptions,
|
|
1106
|
+
cb: (err: any, data?: DeletePipelineCommandOutput) => void,
|
|
1107
|
+
): void;
|
|
770
1108
|
deletePortal(
|
|
771
1109
|
args: DeletePortalCommandInput,
|
|
772
1110
|
options?: __HttpHandlerOptions,
|
|
@@ -793,6 +1131,19 @@ export interface IoTSiteWise {
|
|
|
793
1131
|
options: __HttpHandlerOptions,
|
|
794
1132
|
cb: (err: any, data?: DeleteProjectCommandOutput) => void,
|
|
795
1133
|
): void;
|
|
1134
|
+
deleteTask(
|
|
1135
|
+
args: DeleteTaskCommandInput,
|
|
1136
|
+
options?: __HttpHandlerOptions,
|
|
1137
|
+
): Promise<DeleteTaskCommandOutput>;
|
|
1138
|
+
deleteTask(
|
|
1139
|
+
args: DeleteTaskCommandInput,
|
|
1140
|
+
cb: (err: any, data?: DeleteTaskCommandOutput) => void,
|
|
1141
|
+
): void;
|
|
1142
|
+
deleteTask(
|
|
1143
|
+
args: DeleteTaskCommandInput,
|
|
1144
|
+
options: __HttpHandlerOptions,
|
|
1145
|
+
cb: (err: any, data?: DeleteTaskCommandOutput) => void,
|
|
1146
|
+
): void;
|
|
796
1147
|
deleteTimeSeries(): Promise<DeleteTimeSeriesCommandOutput>;
|
|
797
1148
|
deleteTimeSeries(
|
|
798
1149
|
args: DeleteTimeSeriesCommandInput,
|
|
@@ -807,6 +1158,19 @@ export interface IoTSiteWise {
|
|
|
807
1158
|
options: __HttpHandlerOptions,
|
|
808
1159
|
cb: (err: any, data?: DeleteTimeSeriesCommandOutput) => void,
|
|
809
1160
|
): void;
|
|
1161
|
+
deleteWorkspace(
|
|
1162
|
+
args: DeleteWorkspaceCommandInput,
|
|
1163
|
+
options?: __HttpHandlerOptions,
|
|
1164
|
+
): Promise<DeleteWorkspaceCommandOutput>;
|
|
1165
|
+
deleteWorkspace(
|
|
1166
|
+
args: DeleteWorkspaceCommandInput,
|
|
1167
|
+
cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void,
|
|
1168
|
+
): void;
|
|
1169
|
+
deleteWorkspace(
|
|
1170
|
+
args: DeleteWorkspaceCommandInput,
|
|
1171
|
+
options: __HttpHandlerOptions,
|
|
1172
|
+
cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void,
|
|
1173
|
+
): void;
|
|
810
1174
|
describeAccessPolicy(
|
|
811
1175
|
args: DescribeAccessPolicyCommandInput,
|
|
812
1176
|
options?: __HttpHandlerOptions,
|
|
@@ -833,6 +1197,19 @@ export interface IoTSiteWise {
|
|
|
833
1197
|
options: __HttpHandlerOptions,
|
|
834
1198
|
cb: (err: any, data?: DescribeActionCommandOutput) => void,
|
|
835
1199
|
): void;
|
|
1200
|
+
describeApplication(
|
|
1201
|
+
args: DescribeApplicationCommandInput,
|
|
1202
|
+
options?: __HttpHandlerOptions,
|
|
1203
|
+
): Promise<DescribeApplicationCommandOutput>;
|
|
1204
|
+
describeApplication(
|
|
1205
|
+
args: DescribeApplicationCommandInput,
|
|
1206
|
+
cb: (err: any, data?: DescribeApplicationCommandOutput) => void,
|
|
1207
|
+
): void;
|
|
1208
|
+
describeApplication(
|
|
1209
|
+
args: DescribeApplicationCommandInput,
|
|
1210
|
+
options: __HttpHandlerOptions,
|
|
1211
|
+
cb: (err: any, data?: DescribeApplicationCommandOutput) => void,
|
|
1212
|
+
): void;
|
|
836
1213
|
describeAsset(
|
|
837
1214
|
args: DescribeAssetCommandInput,
|
|
838
1215
|
options?: __HttpHandlerOptions,
|
|
@@ -976,6 +1353,19 @@ export interface IoTSiteWise {
|
|
|
976
1353
|
options: __HttpHandlerOptions,
|
|
977
1354
|
cb: (err: any, data?: DescribeDatasetCommandOutput) => void,
|
|
978
1355
|
): void;
|
|
1356
|
+
describeDatasetExportJob(
|
|
1357
|
+
args: DescribeDatasetExportJobCommandInput,
|
|
1358
|
+
options?: __HttpHandlerOptions,
|
|
1359
|
+
): Promise<DescribeDatasetExportJobCommandOutput>;
|
|
1360
|
+
describeDatasetExportJob(
|
|
1361
|
+
args: DescribeDatasetExportJobCommandInput,
|
|
1362
|
+
cb: (err: any, data?: DescribeDatasetExportJobCommandOutput) => void,
|
|
1363
|
+
): void;
|
|
1364
|
+
describeDatasetExportJob(
|
|
1365
|
+
args: DescribeDatasetExportJobCommandInput,
|
|
1366
|
+
options: __HttpHandlerOptions,
|
|
1367
|
+
cb: (err: any, data?: DescribeDatasetExportJobCommandOutput) => void,
|
|
1368
|
+
): void;
|
|
979
1369
|
describeDefaultEncryptionConfiguration(): Promise<DescribeDefaultEncryptionConfigurationCommandOutput>;
|
|
980
1370
|
describeDefaultEncryptionConfiguration(
|
|
981
1371
|
args: DescribeDefaultEncryptionConfigurationCommandInput,
|
|
@@ -990,6 +1380,19 @@ export interface IoTSiteWise {
|
|
|
990
1380
|
options: __HttpHandlerOptions,
|
|
991
1381
|
cb: (err: any, data?: DescribeDefaultEncryptionConfigurationCommandOutput) => void,
|
|
992
1382
|
): void;
|
|
1383
|
+
describeEnrichmentJob(
|
|
1384
|
+
args: DescribeEnrichmentJobCommandInput,
|
|
1385
|
+
options?: __HttpHandlerOptions,
|
|
1386
|
+
): Promise<DescribeEnrichmentJobCommandOutput>;
|
|
1387
|
+
describeEnrichmentJob(
|
|
1388
|
+
args: DescribeEnrichmentJobCommandInput,
|
|
1389
|
+
cb: (err: any, data?: DescribeEnrichmentJobCommandOutput) => void,
|
|
1390
|
+
): void;
|
|
1391
|
+
describeEnrichmentJob(
|
|
1392
|
+
args: DescribeEnrichmentJobCommandInput,
|
|
1393
|
+
options: __HttpHandlerOptions,
|
|
1394
|
+
cb: (err: any, data?: DescribeEnrichmentJobCommandOutput) => void,
|
|
1395
|
+
): void;
|
|
993
1396
|
describeExecution(
|
|
994
1397
|
args: DescribeExecutionCommandInput,
|
|
995
1398
|
options?: __HttpHandlerOptions,
|
|
@@ -1043,6 +1446,32 @@ export interface IoTSiteWise {
|
|
|
1043
1446
|
options: __HttpHandlerOptions,
|
|
1044
1447
|
cb: (err: any, data?: DescribeLoggingOptionsCommandOutput) => void,
|
|
1045
1448
|
): void;
|
|
1449
|
+
describePipeline(
|
|
1450
|
+
args: DescribePipelineCommandInput,
|
|
1451
|
+
options?: __HttpHandlerOptions,
|
|
1452
|
+
): Promise<DescribePipelineCommandOutput>;
|
|
1453
|
+
describePipeline(
|
|
1454
|
+
args: DescribePipelineCommandInput,
|
|
1455
|
+
cb: (err: any, data?: DescribePipelineCommandOutput) => void,
|
|
1456
|
+
): void;
|
|
1457
|
+
describePipeline(
|
|
1458
|
+
args: DescribePipelineCommandInput,
|
|
1459
|
+
options: __HttpHandlerOptions,
|
|
1460
|
+
cb: (err: any, data?: DescribePipelineCommandOutput) => void,
|
|
1461
|
+
): void;
|
|
1462
|
+
describePipelineExecution(
|
|
1463
|
+
args: DescribePipelineExecutionCommandInput,
|
|
1464
|
+
options?: __HttpHandlerOptions,
|
|
1465
|
+
): Promise<DescribePipelineExecutionCommandOutput>;
|
|
1466
|
+
describePipelineExecution(
|
|
1467
|
+
args: DescribePipelineExecutionCommandInput,
|
|
1468
|
+
cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void,
|
|
1469
|
+
): void;
|
|
1470
|
+
describePipelineExecution(
|
|
1471
|
+
args: DescribePipelineExecutionCommandInput,
|
|
1472
|
+
options: __HttpHandlerOptions,
|
|
1473
|
+
cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void,
|
|
1474
|
+
): void;
|
|
1046
1475
|
describePortal(
|
|
1047
1476
|
args: DescribePortalCommandInput,
|
|
1048
1477
|
options?: __HttpHandlerOptions,
|
|
@@ -1069,6 +1498,32 @@ export interface IoTSiteWise {
|
|
|
1069
1498
|
options: __HttpHandlerOptions,
|
|
1070
1499
|
cb: (err: any, data?: DescribeProjectCommandOutput) => void,
|
|
1071
1500
|
): void;
|
|
1501
|
+
describeQuery(
|
|
1502
|
+
args: DescribeQueryCommandInput,
|
|
1503
|
+
options?: __HttpHandlerOptions,
|
|
1504
|
+
): Promise<DescribeQueryCommandOutput>;
|
|
1505
|
+
describeQuery(
|
|
1506
|
+
args: DescribeQueryCommandInput,
|
|
1507
|
+
cb: (err: any, data?: DescribeQueryCommandOutput) => void,
|
|
1508
|
+
): void;
|
|
1509
|
+
describeQuery(
|
|
1510
|
+
args: DescribeQueryCommandInput,
|
|
1511
|
+
options: __HttpHandlerOptions,
|
|
1512
|
+
cb: (err: any, data?: DescribeQueryCommandOutput) => void,
|
|
1513
|
+
): void;
|
|
1514
|
+
describeSearch(
|
|
1515
|
+
args: DescribeSearchCommandInput,
|
|
1516
|
+
options?: __HttpHandlerOptions,
|
|
1517
|
+
): Promise<DescribeSearchCommandOutput>;
|
|
1518
|
+
describeSearch(
|
|
1519
|
+
args: DescribeSearchCommandInput,
|
|
1520
|
+
cb: (err: any, data?: DescribeSearchCommandOutput) => void,
|
|
1521
|
+
): void;
|
|
1522
|
+
describeSearch(
|
|
1523
|
+
args: DescribeSearchCommandInput,
|
|
1524
|
+
options: __HttpHandlerOptions,
|
|
1525
|
+
cb: (err: any, data?: DescribeSearchCommandOutput) => void,
|
|
1526
|
+
): void;
|
|
1072
1527
|
describeStorageConfiguration(): Promise<DescribeStorageConfigurationCommandOutput>;
|
|
1073
1528
|
describeStorageConfiguration(
|
|
1074
1529
|
args: DescribeStorageConfigurationCommandInput,
|
|
@@ -1083,6 +1538,19 @@ export interface IoTSiteWise {
|
|
|
1083
1538
|
options: __HttpHandlerOptions,
|
|
1084
1539
|
cb: (err: any, data?: DescribeStorageConfigurationCommandOutput) => void,
|
|
1085
1540
|
): void;
|
|
1541
|
+
describeTask(
|
|
1542
|
+
args: DescribeTaskCommandInput,
|
|
1543
|
+
options?: __HttpHandlerOptions,
|
|
1544
|
+
): Promise<DescribeTaskCommandOutput>;
|
|
1545
|
+
describeTask(
|
|
1546
|
+
args: DescribeTaskCommandInput,
|
|
1547
|
+
cb: (err: any, data?: DescribeTaskCommandOutput) => void,
|
|
1548
|
+
): void;
|
|
1549
|
+
describeTask(
|
|
1550
|
+
args: DescribeTaskCommandInput,
|
|
1551
|
+
options: __HttpHandlerOptions,
|
|
1552
|
+
cb: (err: any, data?: DescribeTaskCommandOutput) => void,
|
|
1553
|
+
): void;
|
|
1086
1554
|
describeTimeSeries(): Promise<DescribeTimeSeriesCommandOutput>;
|
|
1087
1555
|
describeTimeSeries(
|
|
1088
1556
|
args: DescribeTimeSeriesCommandInput,
|
|
@@ -1097,6 +1565,19 @@ export interface IoTSiteWise {
|
|
|
1097
1565
|
options: __HttpHandlerOptions,
|
|
1098
1566
|
cb: (err: any, data?: DescribeTimeSeriesCommandOutput) => void,
|
|
1099
1567
|
): void;
|
|
1568
|
+
describeWorkspace(
|
|
1569
|
+
args: DescribeWorkspaceCommandInput,
|
|
1570
|
+
options?: __HttpHandlerOptions,
|
|
1571
|
+
): Promise<DescribeWorkspaceCommandOutput>;
|
|
1572
|
+
describeWorkspace(
|
|
1573
|
+
args: DescribeWorkspaceCommandInput,
|
|
1574
|
+
cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void,
|
|
1575
|
+
): void;
|
|
1576
|
+
describeWorkspace(
|
|
1577
|
+
args: DescribeWorkspaceCommandInput,
|
|
1578
|
+
options: __HttpHandlerOptions,
|
|
1579
|
+
cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void,
|
|
1580
|
+
): void;
|
|
1100
1581
|
disassociateAssets(
|
|
1101
1582
|
args: DisassociateAssetsCommandInput,
|
|
1102
1583
|
options?: __HttpHandlerOptions,
|
|
@@ -1190,6 +1671,19 @@ export interface IoTSiteWise {
|
|
|
1190
1671
|
options: __HttpHandlerOptions,
|
|
1191
1672
|
cb: (err: any, data?: GetAssetPropertyValueHistoryCommandOutput) => void,
|
|
1192
1673
|
): void;
|
|
1674
|
+
getCaptureData(
|
|
1675
|
+
args: GetCaptureDataCommandInput,
|
|
1676
|
+
options?: __HttpHandlerOptions,
|
|
1677
|
+
): Promise<GetCaptureDataCommandOutput>;
|
|
1678
|
+
getCaptureData(
|
|
1679
|
+
args: GetCaptureDataCommandInput,
|
|
1680
|
+
cb: (err: any, data?: GetCaptureDataCommandOutput) => void,
|
|
1681
|
+
): void;
|
|
1682
|
+
getCaptureData(
|
|
1683
|
+
args: GetCaptureDataCommandInput,
|
|
1684
|
+
options: __HttpHandlerOptions,
|
|
1685
|
+
cb: (err: any, data?: GetCaptureDataCommandOutput) => void,
|
|
1686
|
+
): void;
|
|
1193
1687
|
getInterpolatedAssetPropertyValues(
|
|
1194
1688
|
args: GetInterpolatedAssetPropertyValuesCommandInput,
|
|
1195
1689
|
options?: __HttpHandlerOptions,
|
|
@@ -1203,6 +1697,32 @@ export interface IoTSiteWise {
|
|
|
1203
1697
|
options: __HttpHandlerOptions,
|
|
1204
1698
|
cb: (err: any, data?: GetInterpolatedAssetPropertyValuesCommandOutput) => void,
|
|
1205
1699
|
): void;
|
|
1700
|
+
getQueryResults(
|
|
1701
|
+
args: GetQueryResultsCommandInput,
|
|
1702
|
+
options?: __HttpHandlerOptions,
|
|
1703
|
+
): Promise<GetQueryResultsCommandOutput>;
|
|
1704
|
+
getQueryResults(
|
|
1705
|
+
args: GetQueryResultsCommandInput,
|
|
1706
|
+
cb: (err: any, data?: GetQueryResultsCommandOutput) => void,
|
|
1707
|
+
): void;
|
|
1708
|
+
getQueryResults(
|
|
1709
|
+
args: GetQueryResultsCommandInput,
|
|
1710
|
+
options: __HttpHandlerOptions,
|
|
1711
|
+
cb: (err: any, data?: GetQueryResultsCommandOutput) => void,
|
|
1712
|
+
): void;
|
|
1713
|
+
getSearchResults(
|
|
1714
|
+
args: GetSearchResultsCommandInput,
|
|
1715
|
+
options?: __HttpHandlerOptions,
|
|
1716
|
+
): Promise<GetSearchResultsCommandOutput>;
|
|
1717
|
+
getSearchResults(
|
|
1718
|
+
args: GetSearchResultsCommandInput,
|
|
1719
|
+
cb: (err: any, data?: GetSearchResultsCommandOutput) => void,
|
|
1720
|
+
): void;
|
|
1721
|
+
getSearchResults(
|
|
1722
|
+
args: GetSearchResultsCommandInput,
|
|
1723
|
+
options: __HttpHandlerOptions,
|
|
1724
|
+
cb: (err: any, data?: GetSearchResultsCommandOutput) => void,
|
|
1725
|
+
): void;
|
|
1206
1726
|
invokeAssistant(
|
|
1207
1727
|
args: InvokeAssistantCommandInput,
|
|
1208
1728
|
options?: __HttpHandlerOptions,
|
|
@@ -1243,6 +1763,20 @@ export interface IoTSiteWise {
|
|
|
1243
1763
|
options: __HttpHandlerOptions,
|
|
1244
1764
|
cb: (err: any, data?: ListActionsCommandOutput) => void,
|
|
1245
1765
|
): void;
|
|
1766
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
1767
|
+
listApplications(
|
|
1768
|
+
args: ListApplicationsCommandInput,
|
|
1769
|
+
options?: __HttpHandlerOptions,
|
|
1770
|
+
): Promise<ListApplicationsCommandOutput>;
|
|
1771
|
+
listApplications(
|
|
1772
|
+
args: ListApplicationsCommandInput,
|
|
1773
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
1774
|
+
): void;
|
|
1775
|
+
listApplications(
|
|
1776
|
+
args: ListApplicationsCommandInput,
|
|
1777
|
+
options: __HttpHandlerOptions,
|
|
1778
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
1779
|
+
): void;
|
|
1246
1780
|
listAssetModelCompositeModels(
|
|
1247
1781
|
args: ListAssetModelCompositeModelsCommandInput,
|
|
1248
1782
|
options?: __HttpHandlerOptions,
|
|
@@ -1416,6 +1950,45 @@ export interface IoTSiteWise {
|
|
|
1416
1950
|
options: __HttpHandlerOptions,
|
|
1417
1951
|
cb: (err: any, data?: ListDashboardsCommandOutput) => void,
|
|
1418
1952
|
): void;
|
|
1953
|
+
listDatasetDataSegmentRelationships(
|
|
1954
|
+
args: ListDatasetDataSegmentRelationshipsCommandInput,
|
|
1955
|
+
options?: __HttpHandlerOptions,
|
|
1956
|
+
): Promise<ListDatasetDataSegmentRelationshipsCommandOutput>;
|
|
1957
|
+
listDatasetDataSegmentRelationships(
|
|
1958
|
+
args: ListDatasetDataSegmentRelationshipsCommandInput,
|
|
1959
|
+
cb: (err: any, data?: ListDatasetDataSegmentRelationshipsCommandOutput) => void,
|
|
1960
|
+
): void;
|
|
1961
|
+
listDatasetDataSegmentRelationships(
|
|
1962
|
+
args: ListDatasetDataSegmentRelationshipsCommandInput,
|
|
1963
|
+
options: __HttpHandlerOptions,
|
|
1964
|
+
cb: (err: any, data?: ListDatasetDataSegmentRelationshipsCommandOutput) => void,
|
|
1965
|
+
): void;
|
|
1966
|
+
listDatasetDataSegments(
|
|
1967
|
+
args: ListDatasetDataSegmentsCommandInput,
|
|
1968
|
+
options?: __HttpHandlerOptions,
|
|
1969
|
+
): Promise<ListDatasetDataSegmentsCommandOutput>;
|
|
1970
|
+
listDatasetDataSegments(
|
|
1971
|
+
args: ListDatasetDataSegmentsCommandInput,
|
|
1972
|
+
cb: (err: any, data?: ListDatasetDataSegmentsCommandOutput) => void,
|
|
1973
|
+
): void;
|
|
1974
|
+
listDatasetDataSegments(
|
|
1975
|
+
args: ListDatasetDataSegmentsCommandInput,
|
|
1976
|
+
options: __HttpHandlerOptions,
|
|
1977
|
+
cb: (err: any, data?: ListDatasetDataSegmentsCommandOutput) => void,
|
|
1978
|
+
): void;
|
|
1979
|
+
listDatasetExportJobs(
|
|
1980
|
+
args: ListDatasetExportJobsCommandInput,
|
|
1981
|
+
options?: __HttpHandlerOptions,
|
|
1982
|
+
): Promise<ListDatasetExportJobsCommandOutput>;
|
|
1983
|
+
listDatasetExportJobs(
|
|
1984
|
+
args: ListDatasetExportJobsCommandInput,
|
|
1985
|
+
cb: (err: any, data?: ListDatasetExportJobsCommandOutput) => void,
|
|
1986
|
+
): void;
|
|
1987
|
+
listDatasetExportJobs(
|
|
1988
|
+
args: ListDatasetExportJobsCommandInput,
|
|
1989
|
+
options: __HttpHandlerOptions,
|
|
1990
|
+
cb: (err: any, data?: ListDatasetExportJobsCommandOutput) => void,
|
|
1991
|
+
): void;
|
|
1419
1992
|
listDatasets(
|
|
1420
1993
|
args: ListDatasetsCommandInput,
|
|
1421
1994
|
options?: __HttpHandlerOptions,
|
|
@@ -1429,6 +2002,19 @@ export interface IoTSiteWise {
|
|
|
1429
2002
|
options: __HttpHandlerOptions,
|
|
1430
2003
|
cb: (err: any, data?: ListDatasetsCommandOutput) => void,
|
|
1431
2004
|
): void;
|
|
2005
|
+
listEnrichmentJobs(
|
|
2006
|
+
args: ListEnrichmentJobsCommandInput,
|
|
2007
|
+
options?: __HttpHandlerOptions,
|
|
2008
|
+
): Promise<ListEnrichmentJobsCommandOutput>;
|
|
2009
|
+
listEnrichmentJobs(
|
|
2010
|
+
args: ListEnrichmentJobsCommandInput,
|
|
2011
|
+
cb: (err: any, data?: ListEnrichmentJobsCommandOutput) => void,
|
|
2012
|
+
): void;
|
|
2013
|
+
listEnrichmentJobs(
|
|
2014
|
+
args: ListEnrichmentJobsCommandInput,
|
|
2015
|
+
options: __HttpHandlerOptions,
|
|
2016
|
+
cb: (err: any, data?: ListEnrichmentJobsCommandOutput) => void,
|
|
2017
|
+
): void;
|
|
1432
2018
|
listExecutions(
|
|
1433
2019
|
args: ListExecutionsCommandInput,
|
|
1434
2020
|
options?: __HttpHandlerOptions,
|
|
@@ -1469,6 +2055,32 @@ export interface IoTSiteWise {
|
|
|
1469
2055
|
options: __HttpHandlerOptions,
|
|
1470
2056
|
cb: (err: any, data?: ListInterfaceRelationshipsCommandOutput) => void,
|
|
1471
2057
|
): void;
|
|
2058
|
+
listPipelineExecutions(
|
|
2059
|
+
args: ListPipelineExecutionsCommandInput,
|
|
2060
|
+
options?: __HttpHandlerOptions,
|
|
2061
|
+
): Promise<ListPipelineExecutionsCommandOutput>;
|
|
2062
|
+
listPipelineExecutions(
|
|
2063
|
+
args: ListPipelineExecutionsCommandInput,
|
|
2064
|
+
cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void,
|
|
2065
|
+
): void;
|
|
2066
|
+
listPipelineExecutions(
|
|
2067
|
+
args: ListPipelineExecutionsCommandInput,
|
|
2068
|
+
options: __HttpHandlerOptions,
|
|
2069
|
+
cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void,
|
|
2070
|
+
): void;
|
|
2071
|
+
listPipelines(
|
|
2072
|
+
args: ListPipelinesCommandInput,
|
|
2073
|
+
options?: __HttpHandlerOptions,
|
|
2074
|
+
): Promise<ListPipelinesCommandOutput>;
|
|
2075
|
+
listPipelines(
|
|
2076
|
+
args: ListPipelinesCommandInput,
|
|
2077
|
+
cb: (err: any, data?: ListPipelinesCommandOutput) => void,
|
|
2078
|
+
): void;
|
|
2079
|
+
listPipelines(
|
|
2080
|
+
args: ListPipelinesCommandInput,
|
|
2081
|
+
options: __HttpHandlerOptions,
|
|
2082
|
+
cb: (err: any, data?: ListPipelinesCommandOutput) => void,
|
|
2083
|
+
): void;
|
|
1472
2084
|
listPortals(): Promise<ListPortalsCommandOutput>;
|
|
1473
2085
|
listPortals(
|
|
1474
2086
|
args: ListPortalsCommandInput,
|
|
@@ -1509,6 +2121,32 @@ export interface IoTSiteWise {
|
|
|
1509
2121
|
options: __HttpHandlerOptions,
|
|
1510
2122
|
cb: (err: any, data?: ListProjectsCommandOutput) => void,
|
|
1511
2123
|
): void;
|
|
2124
|
+
listQueries(
|
|
2125
|
+
args: ListQueriesCommandInput,
|
|
2126
|
+
options?: __HttpHandlerOptions,
|
|
2127
|
+
): Promise<ListQueriesCommandOutput>;
|
|
2128
|
+
listQueries(
|
|
2129
|
+
args: ListQueriesCommandInput,
|
|
2130
|
+
cb: (err: any, data?: ListQueriesCommandOutput) => void,
|
|
2131
|
+
): void;
|
|
2132
|
+
listQueries(
|
|
2133
|
+
args: ListQueriesCommandInput,
|
|
2134
|
+
options: __HttpHandlerOptions,
|
|
2135
|
+
cb: (err: any, data?: ListQueriesCommandOutput) => void,
|
|
2136
|
+
): void;
|
|
2137
|
+
listSearches(
|
|
2138
|
+
args: ListSearchesCommandInput,
|
|
2139
|
+
options?: __HttpHandlerOptions,
|
|
2140
|
+
): Promise<ListSearchesCommandOutput>;
|
|
2141
|
+
listSearches(
|
|
2142
|
+
args: ListSearchesCommandInput,
|
|
2143
|
+
cb: (err: any, data?: ListSearchesCommandOutput) => void,
|
|
2144
|
+
): void;
|
|
2145
|
+
listSearches(
|
|
2146
|
+
args: ListSearchesCommandInput,
|
|
2147
|
+
options: __HttpHandlerOptions,
|
|
2148
|
+
cb: (err: any, data?: ListSearchesCommandOutput) => void,
|
|
2149
|
+
): void;
|
|
1512
2150
|
listTagsForResource(
|
|
1513
2151
|
args: ListTagsForResourceCommandInput,
|
|
1514
2152
|
options?: __HttpHandlerOptions,
|
|
@@ -1522,6 +2160,19 @@ export interface IoTSiteWise {
|
|
|
1522
2160
|
options: __HttpHandlerOptions,
|
|
1523
2161
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
1524
2162
|
): void;
|
|
2163
|
+
listTasks(
|
|
2164
|
+
args: ListTasksCommandInput,
|
|
2165
|
+
options?: __HttpHandlerOptions,
|
|
2166
|
+
): Promise<ListTasksCommandOutput>;
|
|
2167
|
+
listTasks(
|
|
2168
|
+
args: ListTasksCommandInput,
|
|
2169
|
+
cb: (err: any, data?: ListTasksCommandOutput) => void,
|
|
2170
|
+
): void;
|
|
2171
|
+
listTasks(
|
|
2172
|
+
args: ListTasksCommandInput,
|
|
2173
|
+
options: __HttpHandlerOptions,
|
|
2174
|
+
cb: (err: any, data?: ListTasksCommandOutput) => void,
|
|
2175
|
+
): void;
|
|
1525
2176
|
listTimeSeries(): Promise<ListTimeSeriesCommandOutput>;
|
|
1526
2177
|
listTimeSeries(
|
|
1527
2178
|
args: ListTimeSeriesCommandInput,
|
|
@@ -1536,6 +2187,20 @@ export interface IoTSiteWise {
|
|
|
1536
2187
|
options: __HttpHandlerOptions,
|
|
1537
2188
|
cb: (err: any, data?: ListTimeSeriesCommandOutput) => void,
|
|
1538
2189
|
): void;
|
|
2190
|
+
listWorkspaces(): Promise<ListWorkspacesCommandOutput>;
|
|
2191
|
+
listWorkspaces(
|
|
2192
|
+
args: ListWorkspacesCommandInput,
|
|
2193
|
+
options?: __HttpHandlerOptions,
|
|
2194
|
+
): Promise<ListWorkspacesCommandOutput>;
|
|
2195
|
+
listWorkspaces(
|
|
2196
|
+
args: ListWorkspacesCommandInput,
|
|
2197
|
+
cb: (err: any, data?: ListWorkspacesCommandOutput) => void,
|
|
2198
|
+
): void;
|
|
2199
|
+
listWorkspaces(
|
|
2200
|
+
args: ListWorkspacesCommandInput,
|
|
2201
|
+
options: __HttpHandlerOptions,
|
|
2202
|
+
cb: (err: any, data?: ListWorkspacesCommandOutput) => void,
|
|
2203
|
+
): void;
|
|
1539
2204
|
putAssetModelInterfaceRelationship(
|
|
1540
2205
|
args: PutAssetModelInterfaceRelationshipCommandInput,
|
|
1541
2206
|
options?: __HttpHandlerOptions,
|
|
@@ -1588,6 +2253,45 @@ export interface IoTSiteWise {
|
|
|
1588
2253
|
options: __HttpHandlerOptions,
|
|
1589
2254
|
cb: (err: any, data?: PutStorageConfigurationCommandOutput) => void,
|
|
1590
2255
|
): void;
|
|
2256
|
+
startPipelineExecution(
|
|
2257
|
+
args: StartPipelineExecutionCommandInput,
|
|
2258
|
+
options?: __HttpHandlerOptions,
|
|
2259
|
+
): Promise<StartPipelineExecutionCommandOutput>;
|
|
2260
|
+
startPipelineExecution(
|
|
2261
|
+
args: StartPipelineExecutionCommandInput,
|
|
2262
|
+
cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void,
|
|
2263
|
+
): void;
|
|
2264
|
+
startPipelineExecution(
|
|
2265
|
+
args: StartPipelineExecutionCommandInput,
|
|
2266
|
+
options: __HttpHandlerOptions,
|
|
2267
|
+
cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void,
|
|
2268
|
+
): void;
|
|
2269
|
+
startQuery(
|
|
2270
|
+
args: StartQueryCommandInput,
|
|
2271
|
+
options?: __HttpHandlerOptions,
|
|
2272
|
+
): Promise<StartQueryCommandOutput>;
|
|
2273
|
+
startQuery(
|
|
2274
|
+
args: StartQueryCommandInput,
|
|
2275
|
+
cb: (err: any, data?: StartQueryCommandOutput) => void,
|
|
2276
|
+
): void;
|
|
2277
|
+
startQuery(
|
|
2278
|
+
args: StartQueryCommandInput,
|
|
2279
|
+
options: __HttpHandlerOptions,
|
|
2280
|
+
cb: (err: any, data?: StartQueryCommandOutput) => void,
|
|
2281
|
+
): void;
|
|
2282
|
+
startSearch(
|
|
2283
|
+
args: StartSearchCommandInput,
|
|
2284
|
+
options?: __HttpHandlerOptions,
|
|
2285
|
+
): Promise<StartSearchCommandOutput>;
|
|
2286
|
+
startSearch(
|
|
2287
|
+
args: StartSearchCommandInput,
|
|
2288
|
+
cb: (err: any, data?: StartSearchCommandOutput) => void,
|
|
2289
|
+
): void;
|
|
2290
|
+
startSearch(
|
|
2291
|
+
args: StartSearchCommandInput,
|
|
2292
|
+
options: __HttpHandlerOptions,
|
|
2293
|
+
cb: (err: any, data?: StartSearchCommandOutput) => void,
|
|
2294
|
+
): void;
|
|
1591
2295
|
tagResource(
|
|
1592
2296
|
args: TagResourceCommandInput,
|
|
1593
2297
|
options?: __HttpHandlerOptions,
|
|
@@ -1744,6 +2448,19 @@ export interface IoTSiteWise {
|
|
|
1744
2448
|
options: __HttpHandlerOptions,
|
|
1745
2449
|
cb: (err: any, data?: UpdateGatewayCapabilityConfigurationCommandOutput) => void,
|
|
1746
2450
|
): void;
|
|
2451
|
+
updatePipeline(
|
|
2452
|
+
args: UpdatePipelineCommandInput,
|
|
2453
|
+
options?: __HttpHandlerOptions,
|
|
2454
|
+
): Promise<UpdatePipelineCommandOutput>;
|
|
2455
|
+
updatePipeline(
|
|
2456
|
+
args: UpdatePipelineCommandInput,
|
|
2457
|
+
cb: (err: any, data?: UpdatePipelineCommandOutput) => void,
|
|
2458
|
+
): void;
|
|
2459
|
+
updatePipeline(
|
|
2460
|
+
args: UpdatePipelineCommandInput,
|
|
2461
|
+
options: __HttpHandlerOptions,
|
|
2462
|
+
cb: (err: any, data?: UpdatePipelineCommandOutput) => void,
|
|
2463
|
+
): void;
|
|
1747
2464
|
updatePortal(
|
|
1748
2465
|
args: UpdatePortalCommandInput,
|
|
1749
2466
|
options?: __HttpHandlerOptions,
|
|
@@ -1770,6 +2487,32 @@ export interface IoTSiteWise {
|
|
|
1770
2487
|
options: __HttpHandlerOptions,
|
|
1771
2488
|
cb: (err: any, data?: UpdateProjectCommandOutput) => void,
|
|
1772
2489
|
): void;
|
|
2490
|
+
updateTask(
|
|
2491
|
+
args: UpdateTaskCommandInput,
|
|
2492
|
+
options?: __HttpHandlerOptions,
|
|
2493
|
+
): Promise<UpdateTaskCommandOutput>;
|
|
2494
|
+
updateTask(
|
|
2495
|
+
args: UpdateTaskCommandInput,
|
|
2496
|
+
cb: (err: any, data?: UpdateTaskCommandOutput) => void,
|
|
2497
|
+
): void;
|
|
2498
|
+
updateTask(
|
|
2499
|
+
args: UpdateTaskCommandInput,
|
|
2500
|
+
options: __HttpHandlerOptions,
|
|
2501
|
+
cb: (err: any, data?: UpdateTaskCommandOutput) => void,
|
|
2502
|
+
): void;
|
|
2503
|
+
updateWorkspace(
|
|
2504
|
+
args: UpdateWorkspaceCommandInput,
|
|
2505
|
+
options?: __HttpHandlerOptions,
|
|
2506
|
+
): Promise<UpdateWorkspaceCommandOutput>;
|
|
2507
|
+
updateWorkspace(
|
|
2508
|
+
args: UpdateWorkspaceCommandInput,
|
|
2509
|
+
cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void,
|
|
2510
|
+
): void;
|
|
2511
|
+
updateWorkspace(
|
|
2512
|
+
args: UpdateWorkspaceCommandInput,
|
|
2513
|
+
options: __HttpHandlerOptions,
|
|
2514
|
+
cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void,
|
|
2515
|
+
): void;
|
|
1773
2516
|
paginateBatchGetAssetPropertyAggregates(
|
|
1774
2517
|
args: BatchGetAssetPropertyAggregatesCommandInput,
|
|
1775
2518
|
paginationConfig?: Pick<
|
|
@@ -1791,6 +2534,13 @@ export interface IoTSiteWise {
|
|
|
1791
2534
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1792
2535
|
>,
|
|
1793
2536
|
): Paginator<BatchGetAssetPropertyValueHistoryCommandOutput>;
|
|
2537
|
+
paginateDescribePipelineExecution(
|
|
2538
|
+
args: DescribePipelineExecutionCommandInput,
|
|
2539
|
+
paginationConfig?: Pick<
|
|
2540
|
+
PaginationConfiguration,
|
|
2541
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2542
|
+
>,
|
|
2543
|
+
): Paginator<DescribePipelineExecutionCommandOutput>;
|
|
1794
2544
|
paginateExecuteQuery(
|
|
1795
2545
|
args: ExecuteQueryCommandInput,
|
|
1796
2546
|
paginationConfig?: Pick<
|
|
@@ -1819,6 +2569,20 @@ export interface IoTSiteWise {
|
|
|
1819
2569
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1820
2570
|
>,
|
|
1821
2571
|
): Paginator<GetInterpolatedAssetPropertyValuesCommandOutput>;
|
|
2572
|
+
paginateGetQueryResults(
|
|
2573
|
+
args: GetQueryResultsCommandInput,
|
|
2574
|
+
paginationConfig?: Pick<
|
|
2575
|
+
PaginationConfiguration,
|
|
2576
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2577
|
+
>,
|
|
2578
|
+
): Paginator<GetQueryResultsCommandOutput>;
|
|
2579
|
+
paginateGetSearchResults(
|
|
2580
|
+
args: GetSearchResultsCommandInput,
|
|
2581
|
+
paginationConfig?: Pick<
|
|
2582
|
+
PaginationConfiguration,
|
|
2583
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2584
|
+
>,
|
|
2585
|
+
): Paginator<GetSearchResultsCommandOutput>;
|
|
1822
2586
|
paginateListAccessPolicies(
|
|
1823
2587
|
args?: ListAccessPoliciesCommandInput,
|
|
1824
2588
|
paginationConfig?: Pick<
|
|
@@ -1833,6 +2597,13 @@ export interface IoTSiteWise {
|
|
|
1833
2597
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1834
2598
|
>,
|
|
1835
2599
|
): Paginator<ListActionsCommandOutput>;
|
|
2600
|
+
paginateListApplications(
|
|
2601
|
+
args?: ListApplicationsCommandInput,
|
|
2602
|
+
paginationConfig?: Pick<
|
|
2603
|
+
PaginationConfiguration,
|
|
2604
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2605
|
+
>,
|
|
2606
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
1836
2607
|
paginateListAssetModelCompositeModels(
|
|
1837
2608
|
args: ListAssetModelCompositeModelsCommandInput,
|
|
1838
2609
|
paginationConfig?: Pick<
|
|
@@ -1924,6 +2695,27 @@ export interface IoTSiteWise {
|
|
|
1924
2695
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1925
2696
|
>,
|
|
1926
2697
|
): Paginator<ListDashboardsCommandOutput>;
|
|
2698
|
+
paginateListDatasetDataSegmentRelationships(
|
|
2699
|
+
args: ListDatasetDataSegmentRelationshipsCommandInput,
|
|
2700
|
+
paginationConfig?: Pick<
|
|
2701
|
+
PaginationConfiguration,
|
|
2702
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2703
|
+
>,
|
|
2704
|
+
): Paginator<ListDatasetDataSegmentRelationshipsCommandOutput>;
|
|
2705
|
+
paginateListDatasetDataSegments(
|
|
2706
|
+
args: ListDatasetDataSegmentsCommandInput,
|
|
2707
|
+
paginationConfig?: Pick<
|
|
2708
|
+
PaginationConfiguration,
|
|
2709
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2710
|
+
>,
|
|
2711
|
+
): Paginator<ListDatasetDataSegmentsCommandOutput>;
|
|
2712
|
+
paginateListDatasetExportJobs(
|
|
2713
|
+
args: ListDatasetExportJobsCommandInput,
|
|
2714
|
+
paginationConfig?: Pick<
|
|
2715
|
+
PaginationConfiguration,
|
|
2716
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2717
|
+
>,
|
|
2718
|
+
): Paginator<ListDatasetExportJobsCommandOutput>;
|
|
1927
2719
|
paginateListDatasets(
|
|
1928
2720
|
args: ListDatasetsCommandInput,
|
|
1929
2721
|
paginationConfig?: Pick<
|
|
@@ -1931,6 +2723,13 @@ export interface IoTSiteWise {
|
|
|
1931
2723
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1932
2724
|
>,
|
|
1933
2725
|
): Paginator<ListDatasetsCommandOutput>;
|
|
2726
|
+
paginateListEnrichmentJobs(
|
|
2727
|
+
args: ListEnrichmentJobsCommandInput,
|
|
2728
|
+
paginationConfig?: Pick<
|
|
2729
|
+
PaginationConfiguration,
|
|
2730
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2731
|
+
>,
|
|
2732
|
+
): Paginator<ListEnrichmentJobsCommandOutput>;
|
|
1934
2733
|
paginateListExecutions(
|
|
1935
2734
|
args: ListExecutionsCommandInput,
|
|
1936
2735
|
paginationConfig?: Pick<
|
|
@@ -1952,6 +2751,20 @@ export interface IoTSiteWise {
|
|
|
1952
2751
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1953
2752
|
>,
|
|
1954
2753
|
): Paginator<ListInterfaceRelationshipsCommandOutput>;
|
|
2754
|
+
paginateListPipelineExecutions(
|
|
2755
|
+
args: ListPipelineExecutionsCommandInput,
|
|
2756
|
+
paginationConfig?: Pick<
|
|
2757
|
+
PaginationConfiguration,
|
|
2758
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2759
|
+
>,
|
|
2760
|
+
): Paginator<ListPipelineExecutionsCommandOutput>;
|
|
2761
|
+
paginateListPipelines(
|
|
2762
|
+
args: ListPipelinesCommandInput,
|
|
2763
|
+
paginationConfig?: Pick<
|
|
2764
|
+
PaginationConfiguration,
|
|
2765
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2766
|
+
>,
|
|
2767
|
+
): Paginator<ListPipelinesCommandOutput>;
|
|
1955
2768
|
paginateListPortals(
|
|
1956
2769
|
args?: ListPortalsCommandInput,
|
|
1957
2770
|
paginationConfig?: Pick<
|
|
@@ -1973,6 +2786,27 @@ export interface IoTSiteWise {
|
|
|
1973
2786
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1974
2787
|
>,
|
|
1975
2788
|
): Paginator<ListProjectsCommandOutput>;
|
|
2789
|
+
paginateListQueries(
|
|
2790
|
+
args: ListQueriesCommandInput,
|
|
2791
|
+
paginationConfig?: Pick<
|
|
2792
|
+
PaginationConfiguration,
|
|
2793
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2794
|
+
>,
|
|
2795
|
+
): Paginator<ListQueriesCommandOutput>;
|
|
2796
|
+
paginateListSearches(
|
|
2797
|
+
args: ListSearchesCommandInput,
|
|
2798
|
+
paginationConfig?: Pick<
|
|
2799
|
+
PaginationConfiguration,
|
|
2800
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2801
|
+
>,
|
|
2802
|
+
): Paginator<ListSearchesCommandOutput>;
|
|
2803
|
+
paginateListTasks(
|
|
2804
|
+
args: ListTasksCommandInput,
|
|
2805
|
+
paginationConfig?: Pick<
|
|
2806
|
+
PaginationConfiguration,
|
|
2807
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2808
|
+
>,
|
|
2809
|
+
): Paginator<ListTasksCommandOutput>;
|
|
1976
2810
|
paginateListTimeSeries(
|
|
1977
2811
|
args?: ListTimeSeriesCommandInput,
|
|
1978
2812
|
paginationConfig?: Pick<
|
|
@@ -1980,6 +2814,13 @@ export interface IoTSiteWise {
|
|
|
1980
2814
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1981
2815
|
>,
|
|
1982
2816
|
): Paginator<ListTimeSeriesCommandOutput>;
|
|
2817
|
+
paginateListWorkspaces(
|
|
2818
|
+
args?: ListWorkspacesCommandInput,
|
|
2819
|
+
paginationConfig?: Pick<
|
|
2820
|
+
PaginationConfiguration,
|
|
2821
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2822
|
+
>,
|
|
2823
|
+
): Paginator<ListWorkspacesCommandOutput>;
|
|
1983
2824
|
waitUntilAssetActive(
|
|
1984
2825
|
args: DescribeAssetCommandInput,
|
|
1985
2826
|
waiterConfig:
|