@aws-sdk/client-iotsitewise 3.1097.0 → 3.1099.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +315 -0
- package/dist-cjs/index.js +2189 -237
- package/dist-es/IoTSiteWise.js +118 -0
- package/dist-es/commands/BatchAssociateDataSegmentsToDatasetCommand.js +4 -0
- package/dist-es/commands/BatchDeleteDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/BatchDisassociateDataSegmentsFromDatasetCommand.js +4 -0
- package/dist-es/commands/CancelEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CancelPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/CancelQueryCommand.js +4 -0
- package/dist-es/commands/CreateApplicationCommand.js +4 -0
- package/dist-es/commands/CreateDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/CreateEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CreatePipelineCommand.js +4 -0
- package/dist-es/commands/CreateTaskCommand.js +4 -0
- package/dist-es/commands/CreateWorkspaceCommand.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +4 -0
- package/dist-es/commands/DeletePipelineCommand.js +4 -0
- package/dist-es/commands/DeleteTaskCommand.js +4 -0
- package/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
- package/dist-es/commands/DescribeApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/DescribeEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/DescribePipelineCommand.js +4 -0
- package/dist-es/commands/DescribePipelineExecutionCommand.js +4 -0
- package/dist-es/commands/DescribeQueryCommand.js +4 -0
- package/dist-es/commands/DescribeSearchCommand.js +4 -0
- package/dist-es/commands/DescribeTaskCommand.js +4 -0
- package/dist-es/commands/DescribeWorkspaceCommand.js +4 -0
- package/dist-es/commands/GetCaptureDataCommand.js +4 -0
- package/dist-es/commands/GetQueryResultsCommand.js +4 -0
- package/dist-es/commands/GetSearchResultsCommand.js +4 -0
- package/dist-es/commands/ListApplicationsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentRelationshipsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/ListDatasetExportJobsCommand.js +4 -0
- package/dist-es/commands/ListEnrichmentJobsCommand.js +4 -0
- package/dist-es/commands/ListPipelineExecutionsCommand.js +4 -0
- package/dist-es/commands/ListPipelinesCommand.js +4 -0
- package/dist-es/commands/ListQueriesCommand.js +4 -0
- package/dist-es/commands/ListSearchesCommand.js +4 -0
- package/dist-es/commands/ListTasksCommand.js +4 -0
- package/dist-es/commands/ListWorkspacesCommand.js +4 -0
- package/dist-es/commands/StartPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/StartQueryCommand.js +4 -0
- package/dist-es/commands/StartSearchCommand.js +4 -0
- package/dist-es/commands/UpdatePipelineCommand.js +4 -0
- package/dist-es/commands/UpdateTaskCommand.js +4 -0
- package/dist-es/commands/UpdateWorkspaceCommand.js +4 -0
- package/dist-es/commands/index.js +45 -0
- package/dist-es/models/enums.js +157 -3
- package/dist-es/pagination/DescribePipelineExecutionPaginator.js +4 -0
- package/dist-es/pagination/GetQueryResultsPaginator.js +4 -0
- package/dist-es/pagination/GetSearchResultsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetExportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListEnrichmentJobsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelinesPaginator.js +4 -0
- package/dist-es/pagination/ListQueriesPaginator.js +4 -0
- package/dist-es/pagination/ListSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListTasksPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +14 -0
- package/dist-es/schemas/schemas_0.js +1544 -233
- package/dist-types/IoTSiteWise.d.ts +415 -0
- package/dist-types/IoTSiteWiseClient.d.ts +47 -2
- package/dist-types/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +133 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +125 -0
- package/dist-types/commands/CancelEnrichmentJobCommand.d.ts +124 -0
- package/dist-types/commands/CancelPipelineExecutionCommand.d.ts +103 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +96 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +111 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +28 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -3
- package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +141 -0
- package/dist-types/commands/CreateEnrichmentJobCommand.d.ts +147 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +136 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +133 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +119 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +93 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +104 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +103 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +103 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +100 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +23 -3
- package/dist-types/commands/DescribeDatasetCommand.d.ts +27 -2
- package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +138 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEnrichmentJobCommand.d.ts +151 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +4 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +120 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +156 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +100 -0
- package/dist-types/commands/DescribeSearchCommand.d.ts +102 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +120 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +4 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCaptureDataCommand.d.ts +116 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +104 -0
- package/dist-types/commands/GetSearchResultsCommand.d.ts +118 -0
- package/dist-types/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +2 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +4 -1
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +107 -0
- package/dist-types/commands/ListDatasetDataSegmentsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -2
- package/dist-types/commands/ListEnrichmentJobsCommand.d.ts +151 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +126 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +109 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +101 -0
- package/dist-types/commands/ListSearchesCommand.d.ts +119 -0
- package/dist-types/commands/ListTasksCommand.d.ts +109 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +103 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +118 -0
- package/dist-types/commands/StartQueryCommand.d.ts +97 -0
- package/dist-types/commands/StartSearchCommand.d.ts +131 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +3 -2
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +21 -2
- package/dist-types/commands/UpdatePipelineCommand.d.ts +127 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +7 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +120 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +45 -0
- package/dist-types/models/enums.d.ts +350 -4
- package/dist-types/models/models_0.d.ts +2607 -2755
- package/dist-types/models/models_1.d.ts +4139 -33
- package/dist-types/pagination/DescribePipelineExecutionPaginator.d.ts +7 -0
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/GetSearchResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetExportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnrichmentJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQueriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +14 -0
- package/dist-types/schemas/schemas_0.d.ts +190 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +841 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +248 -2
- package/dist-types/ts3.4/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelPipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateDatasetExportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeDatasetExportJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCaptureDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSearchResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListBulkImportJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetExportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnrichmentJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSearchesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +45 -0
- package/dist-types/ts3.4/models/enums.d.ts +188 -4
- package/dist-types/ts3.4/models/models_0.d.ts +550 -614
- package/dist-types/ts3.4/models/models_1.d.ts +1048 -4
- package/dist-types/ts3.4/pagination/DescribePipelineExecutionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetSearchResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetExportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnrichmentJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -0
- package/package.json +6 -6
|
@@ -46,10 +46,22 @@ import {
|
|
|
46
46
|
AssociateTimeSeriesToAssetPropertyCommandInput,
|
|
47
47
|
AssociateTimeSeriesToAssetPropertyCommandOutput,
|
|
48
48
|
} from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
49
|
+
import {
|
|
50
|
+
BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
51
|
+
BatchAssociateDataSegmentsToDatasetCommandOutput,
|
|
52
|
+
} from "./commands/BatchAssociateDataSegmentsToDatasetCommand";
|
|
49
53
|
import {
|
|
50
54
|
BatchAssociateProjectAssetsCommandInput,
|
|
51
55
|
BatchAssociateProjectAssetsCommandOutput,
|
|
52
56
|
} from "./commands/BatchAssociateProjectAssetsCommand";
|
|
57
|
+
import {
|
|
58
|
+
BatchDeleteDatasetDataSegmentsCommandInput,
|
|
59
|
+
BatchDeleteDatasetDataSegmentsCommandOutput,
|
|
60
|
+
} from "./commands/BatchDeleteDatasetDataSegmentsCommand";
|
|
61
|
+
import {
|
|
62
|
+
BatchDisassociateDataSegmentsFromDatasetCommandInput,
|
|
63
|
+
BatchDisassociateDataSegmentsFromDatasetCommandOutput,
|
|
64
|
+
} from "./commands/BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
53
65
|
import {
|
|
54
66
|
BatchDisassociateProjectAssetsCommandInput,
|
|
55
67
|
BatchDisassociateProjectAssetsCommandOutput,
|
|
@@ -70,10 +82,23 @@ import {
|
|
|
70
82
|
BatchPutAssetPropertyValueCommandInput,
|
|
71
83
|
BatchPutAssetPropertyValueCommandOutput,
|
|
72
84
|
} from "./commands/BatchPutAssetPropertyValueCommand";
|
|
85
|
+
import {
|
|
86
|
+
CancelEnrichmentJobCommandInput,
|
|
87
|
+
CancelEnrichmentJobCommandOutput,
|
|
88
|
+
} from "./commands/CancelEnrichmentJobCommand";
|
|
89
|
+
import {
|
|
90
|
+
CancelPipelineExecutionCommandInput,
|
|
91
|
+
CancelPipelineExecutionCommandOutput,
|
|
92
|
+
} from "./commands/CancelPipelineExecutionCommand";
|
|
93
|
+
import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
|
|
73
94
|
import {
|
|
74
95
|
CreateAccessPolicyCommandInput,
|
|
75
96
|
CreateAccessPolicyCommandOutput,
|
|
76
97
|
} from "./commands/CreateAccessPolicyCommand";
|
|
98
|
+
import {
|
|
99
|
+
CreateApplicationCommandInput,
|
|
100
|
+
CreateApplicationCommandOutput,
|
|
101
|
+
} from "./commands/CreateApplicationCommand";
|
|
77
102
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
78
103
|
import {
|
|
79
104
|
CreateAssetModelCommandInput,
|
|
@@ -99,10 +124,22 @@ import {
|
|
|
99
124
|
CreateDatasetCommandInput,
|
|
100
125
|
CreateDatasetCommandOutput,
|
|
101
126
|
} from "./commands/CreateDatasetCommand";
|
|
127
|
+
import {
|
|
128
|
+
CreateDatasetExportJobCommandInput,
|
|
129
|
+
CreateDatasetExportJobCommandOutput,
|
|
130
|
+
} from "./commands/CreateDatasetExportJobCommand";
|
|
131
|
+
import {
|
|
132
|
+
CreateEnrichmentJobCommandInput,
|
|
133
|
+
CreateEnrichmentJobCommandOutput,
|
|
134
|
+
} from "./commands/CreateEnrichmentJobCommand";
|
|
102
135
|
import {
|
|
103
136
|
CreateGatewayCommandInput,
|
|
104
137
|
CreateGatewayCommandOutput,
|
|
105
138
|
} from "./commands/CreateGatewayCommand";
|
|
139
|
+
import {
|
|
140
|
+
CreatePipelineCommandInput,
|
|
141
|
+
CreatePipelineCommandOutput,
|
|
142
|
+
} from "./commands/CreatePipelineCommand";
|
|
106
143
|
import {
|
|
107
144
|
CreatePortalCommandInput,
|
|
108
145
|
CreatePortalCommandOutput,
|
|
@@ -111,10 +148,19 @@ import {
|
|
|
111
148
|
CreateProjectCommandInput,
|
|
112
149
|
CreateProjectCommandOutput,
|
|
113
150
|
} from "./commands/CreateProjectCommand";
|
|
151
|
+
import { CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
152
|
+
import {
|
|
153
|
+
CreateWorkspaceCommandInput,
|
|
154
|
+
CreateWorkspaceCommandOutput,
|
|
155
|
+
} from "./commands/CreateWorkspaceCommand";
|
|
114
156
|
import {
|
|
115
157
|
DeleteAccessPolicyCommandInput,
|
|
116
158
|
DeleteAccessPolicyCommandOutput,
|
|
117
159
|
} from "./commands/DeleteAccessPolicyCommand";
|
|
160
|
+
import {
|
|
161
|
+
DeleteApplicationCommandInput,
|
|
162
|
+
DeleteApplicationCommandOutput,
|
|
163
|
+
} from "./commands/DeleteApplicationCommand";
|
|
118
164
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
119
165
|
import {
|
|
120
166
|
DeleteAssetModelCommandInput,
|
|
@@ -144,6 +190,10 @@ import {
|
|
|
144
190
|
DeleteGatewayCommandInput,
|
|
145
191
|
DeleteGatewayCommandOutput,
|
|
146
192
|
} from "./commands/DeleteGatewayCommand";
|
|
193
|
+
import {
|
|
194
|
+
DeletePipelineCommandInput,
|
|
195
|
+
DeletePipelineCommandOutput,
|
|
196
|
+
} from "./commands/DeletePipelineCommand";
|
|
147
197
|
import {
|
|
148
198
|
DeletePortalCommandInput,
|
|
149
199
|
DeletePortalCommandOutput,
|
|
@@ -152,10 +202,15 @@ import {
|
|
|
152
202
|
DeleteProjectCommandInput,
|
|
153
203
|
DeleteProjectCommandOutput,
|
|
154
204
|
} from "./commands/DeleteProjectCommand";
|
|
205
|
+
import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
|
|
155
206
|
import {
|
|
156
207
|
DeleteTimeSeriesCommandInput,
|
|
157
208
|
DeleteTimeSeriesCommandOutput,
|
|
158
209
|
} from "./commands/DeleteTimeSeriesCommand";
|
|
210
|
+
import {
|
|
211
|
+
DeleteWorkspaceCommandInput,
|
|
212
|
+
DeleteWorkspaceCommandOutput,
|
|
213
|
+
} from "./commands/DeleteWorkspaceCommand";
|
|
159
214
|
import {
|
|
160
215
|
DescribeAccessPolicyCommandInput,
|
|
161
216
|
DescribeAccessPolicyCommandOutput,
|
|
@@ -164,6 +219,10 @@ import {
|
|
|
164
219
|
DescribeActionCommandInput,
|
|
165
220
|
DescribeActionCommandOutput,
|
|
166
221
|
} from "./commands/DescribeActionCommand";
|
|
222
|
+
import {
|
|
223
|
+
DescribeApplicationCommandInput,
|
|
224
|
+
DescribeApplicationCommandOutput,
|
|
225
|
+
} from "./commands/DescribeApplicationCommand";
|
|
167
226
|
import {
|
|
168
227
|
DescribeAssetCommandInput,
|
|
169
228
|
DescribeAssetCommandOutput,
|
|
@@ -208,10 +267,18 @@ import {
|
|
|
208
267
|
DescribeDatasetCommandInput,
|
|
209
268
|
DescribeDatasetCommandOutput,
|
|
210
269
|
} from "./commands/DescribeDatasetCommand";
|
|
270
|
+
import {
|
|
271
|
+
DescribeDatasetExportJobCommandInput,
|
|
272
|
+
DescribeDatasetExportJobCommandOutput,
|
|
273
|
+
} from "./commands/DescribeDatasetExportJobCommand";
|
|
211
274
|
import {
|
|
212
275
|
DescribeDefaultEncryptionConfigurationCommandInput,
|
|
213
276
|
DescribeDefaultEncryptionConfigurationCommandOutput,
|
|
214
277
|
} from "./commands/DescribeDefaultEncryptionConfigurationCommand";
|
|
278
|
+
import {
|
|
279
|
+
DescribeEnrichmentJobCommandInput,
|
|
280
|
+
DescribeEnrichmentJobCommandOutput,
|
|
281
|
+
} from "./commands/DescribeEnrichmentJobCommand";
|
|
215
282
|
import {
|
|
216
283
|
DescribeExecutionCommandInput,
|
|
217
284
|
DescribeExecutionCommandOutput,
|
|
@@ -228,6 +295,14 @@ import {
|
|
|
228
295
|
DescribeLoggingOptionsCommandInput,
|
|
229
296
|
DescribeLoggingOptionsCommandOutput,
|
|
230
297
|
} from "./commands/DescribeLoggingOptionsCommand";
|
|
298
|
+
import {
|
|
299
|
+
DescribePipelineCommandInput,
|
|
300
|
+
DescribePipelineCommandOutput,
|
|
301
|
+
} from "./commands/DescribePipelineCommand";
|
|
302
|
+
import {
|
|
303
|
+
DescribePipelineExecutionCommandInput,
|
|
304
|
+
DescribePipelineExecutionCommandOutput,
|
|
305
|
+
} from "./commands/DescribePipelineExecutionCommand";
|
|
231
306
|
import {
|
|
232
307
|
DescribePortalCommandInput,
|
|
233
308
|
DescribePortalCommandOutput,
|
|
@@ -236,14 +311,30 @@ import {
|
|
|
236
311
|
DescribeProjectCommandInput,
|
|
237
312
|
DescribeProjectCommandOutput,
|
|
238
313
|
} from "./commands/DescribeProjectCommand";
|
|
314
|
+
import {
|
|
315
|
+
DescribeQueryCommandInput,
|
|
316
|
+
DescribeQueryCommandOutput,
|
|
317
|
+
} from "./commands/DescribeQueryCommand";
|
|
318
|
+
import {
|
|
319
|
+
DescribeSearchCommandInput,
|
|
320
|
+
DescribeSearchCommandOutput,
|
|
321
|
+
} from "./commands/DescribeSearchCommand";
|
|
239
322
|
import {
|
|
240
323
|
DescribeStorageConfigurationCommandInput,
|
|
241
324
|
DescribeStorageConfigurationCommandOutput,
|
|
242
325
|
} from "./commands/DescribeStorageConfigurationCommand";
|
|
326
|
+
import {
|
|
327
|
+
DescribeTaskCommandInput,
|
|
328
|
+
DescribeTaskCommandOutput,
|
|
329
|
+
} from "./commands/DescribeTaskCommand";
|
|
243
330
|
import {
|
|
244
331
|
DescribeTimeSeriesCommandInput,
|
|
245
332
|
DescribeTimeSeriesCommandOutput,
|
|
246
333
|
} from "./commands/DescribeTimeSeriesCommand";
|
|
334
|
+
import {
|
|
335
|
+
DescribeWorkspaceCommandInput,
|
|
336
|
+
DescribeWorkspaceCommandOutput,
|
|
337
|
+
} from "./commands/DescribeWorkspaceCommand";
|
|
247
338
|
import {
|
|
248
339
|
DisassociateAssetsCommandInput,
|
|
249
340
|
DisassociateAssetsCommandOutput,
|
|
@@ -272,10 +363,22 @@ import {
|
|
|
272
363
|
GetAssetPropertyValueHistoryCommandInput,
|
|
273
364
|
GetAssetPropertyValueHistoryCommandOutput,
|
|
274
365
|
} from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
366
|
+
import {
|
|
367
|
+
GetCaptureDataCommandInput,
|
|
368
|
+
GetCaptureDataCommandOutput,
|
|
369
|
+
} from "./commands/GetCaptureDataCommand";
|
|
275
370
|
import {
|
|
276
371
|
GetInterpolatedAssetPropertyValuesCommandInput,
|
|
277
372
|
GetInterpolatedAssetPropertyValuesCommandOutput,
|
|
278
373
|
} from "./commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
374
|
+
import {
|
|
375
|
+
GetQueryResultsCommandInput,
|
|
376
|
+
GetQueryResultsCommandOutput,
|
|
377
|
+
} from "./commands/GetQueryResultsCommand";
|
|
378
|
+
import {
|
|
379
|
+
GetSearchResultsCommandInput,
|
|
380
|
+
GetSearchResultsCommandOutput,
|
|
381
|
+
} from "./commands/GetSearchResultsCommand";
|
|
279
382
|
import {
|
|
280
383
|
InvokeAssistantCommandInput,
|
|
281
384
|
InvokeAssistantCommandOutput,
|
|
@@ -285,6 +388,10 @@ import {
|
|
|
285
388
|
ListAccessPoliciesCommandOutput,
|
|
286
389
|
} from "./commands/ListAccessPoliciesCommand";
|
|
287
390
|
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
391
|
+
import {
|
|
392
|
+
ListApplicationsCommandInput,
|
|
393
|
+
ListApplicationsCommandOutput,
|
|
394
|
+
} from "./commands/ListApplicationsCommand";
|
|
288
395
|
import {
|
|
289
396
|
ListAssetModelCompositeModelsCommandInput,
|
|
290
397
|
ListAssetModelCompositeModelsCommandOutput,
|
|
@@ -334,10 +441,26 @@ import {
|
|
|
334
441
|
ListDashboardsCommandInput,
|
|
335
442
|
ListDashboardsCommandOutput,
|
|
336
443
|
} from "./commands/ListDashboardsCommand";
|
|
444
|
+
import {
|
|
445
|
+
ListDatasetDataSegmentRelationshipsCommandInput,
|
|
446
|
+
ListDatasetDataSegmentRelationshipsCommandOutput,
|
|
447
|
+
} from "./commands/ListDatasetDataSegmentRelationshipsCommand";
|
|
448
|
+
import {
|
|
449
|
+
ListDatasetDataSegmentsCommandInput,
|
|
450
|
+
ListDatasetDataSegmentsCommandOutput,
|
|
451
|
+
} from "./commands/ListDatasetDataSegmentsCommand";
|
|
452
|
+
import {
|
|
453
|
+
ListDatasetExportJobsCommandInput,
|
|
454
|
+
ListDatasetExportJobsCommandOutput,
|
|
455
|
+
} from "./commands/ListDatasetExportJobsCommand";
|
|
337
456
|
import {
|
|
338
457
|
ListDatasetsCommandInput,
|
|
339
458
|
ListDatasetsCommandOutput,
|
|
340
459
|
} from "./commands/ListDatasetsCommand";
|
|
460
|
+
import {
|
|
461
|
+
ListEnrichmentJobsCommandInput,
|
|
462
|
+
ListEnrichmentJobsCommandOutput,
|
|
463
|
+
} from "./commands/ListEnrichmentJobsCommand";
|
|
341
464
|
import {
|
|
342
465
|
ListExecutionsCommandInput,
|
|
343
466
|
ListExecutionsCommandOutput,
|
|
@@ -350,6 +473,14 @@ import {
|
|
|
350
473
|
ListInterfaceRelationshipsCommandInput,
|
|
351
474
|
ListInterfaceRelationshipsCommandOutput,
|
|
352
475
|
} from "./commands/ListInterfaceRelationshipsCommand";
|
|
476
|
+
import {
|
|
477
|
+
ListPipelineExecutionsCommandInput,
|
|
478
|
+
ListPipelineExecutionsCommandOutput,
|
|
479
|
+
} from "./commands/ListPipelineExecutionsCommand";
|
|
480
|
+
import {
|
|
481
|
+
ListPipelinesCommandInput,
|
|
482
|
+
ListPipelinesCommandOutput,
|
|
483
|
+
} from "./commands/ListPipelinesCommand";
|
|
353
484
|
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
354
485
|
import {
|
|
355
486
|
ListProjectAssetsCommandInput,
|
|
@@ -359,14 +490,24 @@ import {
|
|
|
359
490
|
ListProjectsCommandInput,
|
|
360
491
|
ListProjectsCommandOutput,
|
|
361
492
|
} from "./commands/ListProjectsCommand";
|
|
493
|
+
import { ListQueriesCommandInput, ListQueriesCommandOutput } from "./commands/ListQueriesCommand";
|
|
494
|
+
import {
|
|
495
|
+
ListSearchesCommandInput,
|
|
496
|
+
ListSearchesCommandOutput,
|
|
497
|
+
} from "./commands/ListSearchesCommand";
|
|
362
498
|
import {
|
|
363
499
|
ListTagsForResourceCommandInput,
|
|
364
500
|
ListTagsForResourceCommandOutput,
|
|
365
501
|
} from "./commands/ListTagsForResourceCommand";
|
|
502
|
+
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
366
503
|
import {
|
|
367
504
|
ListTimeSeriesCommandInput,
|
|
368
505
|
ListTimeSeriesCommandOutput,
|
|
369
506
|
} from "./commands/ListTimeSeriesCommand";
|
|
507
|
+
import {
|
|
508
|
+
ListWorkspacesCommandInput,
|
|
509
|
+
ListWorkspacesCommandOutput,
|
|
510
|
+
} from "./commands/ListWorkspacesCommand";
|
|
370
511
|
import {
|
|
371
512
|
PutAssetModelInterfaceRelationshipCommandInput,
|
|
372
513
|
PutAssetModelInterfaceRelationshipCommandOutput,
|
|
@@ -383,6 +524,12 @@ import {
|
|
|
383
524
|
PutStorageConfigurationCommandInput,
|
|
384
525
|
PutStorageConfigurationCommandOutput,
|
|
385
526
|
} from "./commands/PutStorageConfigurationCommand";
|
|
527
|
+
import {
|
|
528
|
+
StartPipelineExecutionCommandInput,
|
|
529
|
+
StartPipelineExecutionCommandOutput,
|
|
530
|
+
} from "./commands/StartPipelineExecutionCommand";
|
|
531
|
+
import { StartQueryCommandInput, StartQueryCommandOutput } from "./commands/StartQueryCommand";
|
|
532
|
+
import { StartSearchCommandInput, StartSearchCommandOutput } from "./commands/StartSearchCommand";
|
|
386
533
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
387
534
|
import {
|
|
388
535
|
UntagResourceCommandInput,
|
|
@@ -425,6 +572,10 @@ import {
|
|
|
425
572
|
UpdateGatewayCommandInput,
|
|
426
573
|
UpdateGatewayCommandOutput,
|
|
427
574
|
} from "./commands/UpdateGatewayCommand";
|
|
575
|
+
import {
|
|
576
|
+
UpdatePipelineCommandInput,
|
|
577
|
+
UpdatePipelineCommandOutput,
|
|
578
|
+
} from "./commands/UpdatePipelineCommand";
|
|
428
579
|
import {
|
|
429
580
|
UpdatePortalCommandInput,
|
|
430
581
|
UpdatePortalCommandOutput,
|
|
@@ -433,6 +584,11 @@ import {
|
|
|
433
584
|
UpdateProjectCommandInput,
|
|
434
585
|
UpdateProjectCommandOutput,
|
|
435
586
|
} from "./commands/UpdateProjectCommand";
|
|
587
|
+
import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
|
|
588
|
+
import {
|
|
589
|
+
UpdateWorkspaceCommandInput,
|
|
590
|
+
UpdateWorkspaceCommandOutput,
|
|
591
|
+
} from "./commands/UpdateWorkspaceCommand";
|
|
436
592
|
import {
|
|
437
593
|
ClientInputEndpointParameters,
|
|
438
594
|
ClientResolvedEndpointParameters,
|
|
@@ -443,13 +599,20 @@ export { __Client };
|
|
|
443
599
|
export type ServiceInputTypes =
|
|
444
600
|
| AssociateAssetsCommandInput
|
|
445
601
|
| AssociateTimeSeriesToAssetPropertyCommandInput
|
|
602
|
+
| BatchAssociateDataSegmentsToDatasetCommandInput
|
|
446
603
|
| BatchAssociateProjectAssetsCommandInput
|
|
604
|
+
| BatchDeleteDatasetDataSegmentsCommandInput
|
|
605
|
+
| BatchDisassociateDataSegmentsFromDatasetCommandInput
|
|
447
606
|
| BatchDisassociateProjectAssetsCommandInput
|
|
448
607
|
| BatchGetAssetPropertyAggregatesCommandInput
|
|
449
608
|
| BatchGetAssetPropertyValueCommandInput
|
|
450
609
|
| BatchGetAssetPropertyValueHistoryCommandInput
|
|
451
610
|
| BatchPutAssetPropertyValueCommandInput
|
|
611
|
+
| CancelEnrichmentJobCommandInput
|
|
612
|
+
| CancelPipelineExecutionCommandInput
|
|
613
|
+
| CancelQueryCommandInput
|
|
452
614
|
| CreateAccessPolicyCommandInput
|
|
615
|
+
| CreateApplicationCommandInput
|
|
453
616
|
| CreateAssetCommandInput
|
|
454
617
|
| CreateAssetModelCommandInput
|
|
455
618
|
| CreateAssetModelCompositeModelCommandInput
|
|
@@ -457,10 +620,16 @@ export type ServiceInputTypes =
|
|
|
457
620
|
| CreateComputationModelCommandInput
|
|
458
621
|
| CreateDashboardCommandInput
|
|
459
622
|
| CreateDatasetCommandInput
|
|
623
|
+
| CreateDatasetExportJobCommandInput
|
|
624
|
+
| CreateEnrichmentJobCommandInput
|
|
460
625
|
| CreateGatewayCommandInput
|
|
626
|
+
| CreatePipelineCommandInput
|
|
461
627
|
| CreatePortalCommandInput
|
|
462
628
|
| CreateProjectCommandInput
|
|
629
|
+
| CreateTaskCommandInput
|
|
630
|
+
| CreateWorkspaceCommandInput
|
|
463
631
|
| DeleteAccessPolicyCommandInput
|
|
632
|
+
| DeleteApplicationCommandInput
|
|
464
633
|
| DeleteAssetCommandInput
|
|
465
634
|
| DeleteAssetModelCommandInput
|
|
466
635
|
| DeleteAssetModelCompositeModelCommandInput
|
|
@@ -469,11 +638,15 @@ export type ServiceInputTypes =
|
|
|
469
638
|
| DeleteDashboardCommandInput
|
|
470
639
|
| DeleteDatasetCommandInput
|
|
471
640
|
| DeleteGatewayCommandInput
|
|
641
|
+
| DeletePipelineCommandInput
|
|
472
642
|
| DeletePortalCommandInput
|
|
473
643
|
| DeleteProjectCommandInput
|
|
644
|
+
| DeleteTaskCommandInput
|
|
474
645
|
| DeleteTimeSeriesCommandInput
|
|
646
|
+
| DeleteWorkspaceCommandInput
|
|
475
647
|
| DescribeAccessPolicyCommandInput
|
|
476
648
|
| DescribeActionCommandInput
|
|
649
|
+
| DescribeApplicationCommandInput
|
|
477
650
|
| DescribeAssetCommandInput
|
|
478
651
|
| DescribeAssetCompositeModelCommandInput
|
|
479
652
|
| DescribeAssetModelCommandInput
|
|
@@ -485,15 +658,23 @@ export type ServiceInputTypes =
|
|
|
485
658
|
| DescribeComputationModelExecutionSummaryCommandInput
|
|
486
659
|
| DescribeDashboardCommandInput
|
|
487
660
|
| DescribeDatasetCommandInput
|
|
661
|
+
| DescribeDatasetExportJobCommandInput
|
|
488
662
|
| DescribeDefaultEncryptionConfigurationCommandInput
|
|
663
|
+
| DescribeEnrichmentJobCommandInput
|
|
489
664
|
| DescribeExecutionCommandInput
|
|
490
665
|
| DescribeGatewayCapabilityConfigurationCommandInput
|
|
491
666
|
| DescribeGatewayCommandInput
|
|
492
667
|
| DescribeLoggingOptionsCommandInput
|
|
668
|
+
| DescribePipelineCommandInput
|
|
669
|
+
| DescribePipelineExecutionCommandInput
|
|
493
670
|
| DescribePortalCommandInput
|
|
494
671
|
| DescribeProjectCommandInput
|
|
672
|
+
| DescribeQueryCommandInput
|
|
673
|
+
| DescribeSearchCommandInput
|
|
495
674
|
| DescribeStorageConfigurationCommandInput
|
|
675
|
+
| DescribeTaskCommandInput
|
|
496
676
|
| DescribeTimeSeriesCommandInput
|
|
677
|
+
| DescribeWorkspaceCommandInput
|
|
497
678
|
| DisassociateAssetsCommandInput
|
|
498
679
|
| DisassociateTimeSeriesFromAssetPropertyCommandInput
|
|
499
680
|
| ExecuteActionCommandInput
|
|
@@ -501,10 +682,14 @@ export type ServiceInputTypes =
|
|
|
501
682
|
| GetAssetPropertyAggregatesCommandInput
|
|
502
683
|
| GetAssetPropertyValueCommandInput
|
|
503
684
|
| GetAssetPropertyValueHistoryCommandInput
|
|
685
|
+
| GetCaptureDataCommandInput
|
|
504
686
|
| GetInterpolatedAssetPropertyValuesCommandInput
|
|
687
|
+
| GetQueryResultsCommandInput
|
|
688
|
+
| GetSearchResultsCommandInput
|
|
505
689
|
| InvokeAssistantCommandInput
|
|
506
690
|
| ListAccessPoliciesCommandInput
|
|
507
691
|
| ListActionsCommandInput
|
|
692
|
+
| ListApplicationsCommandInput
|
|
508
693
|
| ListAssetModelCompositeModelsCommandInput
|
|
509
694
|
| ListAssetModelPropertiesCommandInput
|
|
510
695
|
| ListAssetModelsCommandInput
|
|
@@ -518,19 +703,32 @@ export type ServiceInputTypes =
|
|
|
518
703
|
| ListComputationModelResolveToResourcesCommandInput
|
|
519
704
|
| ListComputationModelsCommandInput
|
|
520
705
|
| ListDashboardsCommandInput
|
|
706
|
+
| ListDatasetDataSegmentRelationshipsCommandInput
|
|
707
|
+
| ListDatasetDataSegmentsCommandInput
|
|
708
|
+
| ListDatasetExportJobsCommandInput
|
|
521
709
|
| ListDatasetsCommandInput
|
|
710
|
+
| ListEnrichmentJobsCommandInput
|
|
522
711
|
| ListExecutionsCommandInput
|
|
523
712
|
| ListGatewaysCommandInput
|
|
524
713
|
| ListInterfaceRelationshipsCommandInput
|
|
714
|
+
| ListPipelineExecutionsCommandInput
|
|
715
|
+
| ListPipelinesCommandInput
|
|
525
716
|
| ListPortalsCommandInput
|
|
526
717
|
| ListProjectAssetsCommandInput
|
|
527
718
|
| ListProjectsCommandInput
|
|
719
|
+
| ListQueriesCommandInput
|
|
720
|
+
| ListSearchesCommandInput
|
|
528
721
|
| ListTagsForResourceCommandInput
|
|
722
|
+
| ListTasksCommandInput
|
|
529
723
|
| ListTimeSeriesCommandInput
|
|
724
|
+
| ListWorkspacesCommandInput
|
|
530
725
|
| PutAssetModelInterfaceRelationshipCommandInput
|
|
531
726
|
| PutDefaultEncryptionConfigurationCommandInput
|
|
532
727
|
| PutLoggingOptionsCommandInput
|
|
533
728
|
| PutStorageConfigurationCommandInput
|
|
729
|
+
| StartPipelineExecutionCommandInput
|
|
730
|
+
| StartQueryCommandInput
|
|
731
|
+
| StartSearchCommandInput
|
|
534
732
|
| TagResourceCommandInput
|
|
535
733
|
| UntagResourceCommandInput
|
|
536
734
|
| UpdateAccessPolicyCommandInput
|
|
@@ -543,18 +741,28 @@ export type ServiceInputTypes =
|
|
|
543
741
|
| UpdateDatasetCommandInput
|
|
544
742
|
| UpdateGatewayCapabilityConfigurationCommandInput
|
|
545
743
|
| UpdateGatewayCommandInput
|
|
744
|
+
| UpdatePipelineCommandInput
|
|
546
745
|
| UpdatePortalCommandInput
|
|
547
|
-
| UpdateProjectCommandInput
|
|
746
|
+
| UpdateProjectCommandInput
|
|
747
|
+
| UpdateTaskCommandInput
|
|
748
|
+
| UpdateWorkspaceCommandInput;
|
|
548
749
|
export type ServiceOutputTypes =
|
|
549
750
|
| AssociateAssetsCommandOutput
|
|
550
751
|
| AssociateTimeSeriesToAssetPropertyCommandOutput
|
|
752
|
+
| BatchAssociateDataSegmentsToDatasetCommandOutput
|
|
551
753
|
| BatchAssociateProjectAssetsCommandOutput
|
|
754
|
+
| BatchDeleteDatasetDataSegmentsCommandOutput
|
|
755
|
+
| BatchDisassociateDataSegmentsFromDatasetCommandOutput
|
|
552
756
|
| BatchDisassociateProjectAssetsCommandOutput
|
|
553
757
|
| BatchGetAssetPropertyAggregatesCommandOutput
|
|
554
758
|
| BatchGetAssetPropertyValueCommandOutput
|
|
555
759
|
| BatchGetAssetPropertyValueHistoryCommandOutput
|
|
556
760
|
| BatchPutAssetPropertyValueCommandOutput
|
|
761
|
+
| CancelEnrichmentJobCommandOutput
|
|
762
|
+
| CancelPipelineExecutionCommandOutput
|
|
763
|
+
| CancelQueryCommandOutput
|
|
557
764
|
| CreateAccessPolicyCommandOutput
|
|
765
|
+
| CreateApplicationCommandOutput
|
|
558
766
|
| CreateAssetCommandOutput
|
|
559
767
|
| CreateAssetModelCommandOutput
|
|
560
768
|
| CreateAssetModelCompositeModelCommandOutput
|
|
@@ -562,10 +770,16 @@ export type ServiceOutputTypes =
|
|
|
562
770
|
| CreateComputationModelCommandOutput
|
|
563
771
|
| CreateDashboardCommandOutput
|
|
564
772
|
| CreateDatasetCommandOutput
|
|
773
|
+
| CreateDatasetExportJobCommandOutput
|
|
774
|
+
| CreateEnrichmentJobCommandOutput
|
|
565
775
|
| CreateGatewayCommandOutput
|
|
776
|
+
| CreatePipelineCommandOutput
|
|
566
777
|
| CreatePortalCommandOutput
|
|
567
778
|
| CreateProjectCommandOutput
|
|
779
|
+
| CreateTaskCommandOutput
|
|
780
|
+
| CreateWorkspaceCommandOutput
|
|
568
781
|
| DeleteAccessPolicyCommandOutput
|
|
782
|
+
| DeleteApplicationCommandOutput
|
|
569
783
|
| DeleteAssetCommandOutput
|
|
570
784
|
| DeleteAssetModelCommandOutput
|
|
571
785
|
| DeleteAssetModelCompositeModelCommandOutput
|
|
@@ -574,11 +788,15 @@ export type ServiceOutputTypes =
|
|
|
574
788
|
| DeleteDashboardCommandOutput
|
|
575
789
|
| DeleteDatasetCommandOutput
|
|
576
790
|
| DeleteGatewayCommandOutput
|
|
791
|
+
| DeletePipelineCommandOutput
|
|
577
792
|
| DeletePortalCommandOutput
|
|
578
793
|
| DeleteProjectCommandOutput
|
|
794
|
+
| DeleteTaskCommandOutput
|
|
579
795
|
| DeleteTimeSeriesCommandOutput
|
|
796
|
+
| DeleteWorkspaceCommandOutput
|
|
580
797
|
| DescribeAccessPolicyCommandOutput
|
|
581
798
|
| DescribeActionCommandOutput
|
|
799
|
+
| DescribeApplicationCommandOutput
|
|
582
800
|
| DescribeAssetCommandOutput
|
|
583
801
|
| DescribeAssetCompositeModelCommandOutput
|
|
584
802
|
| DescribeAssetModelCommandOutput
|
|
@@ -590,15 +808,23 @@ export type ServiceOutputTypes =
|
|
|
590
808
|
| DescribeComputationModelExecutionSummaryCommandOutput
|
|
591
809
|
| DescribeDashboardCommandOutput
|
|
592
810
|
| DescribeDatasetCommandOutput
|
|
811
|
+
| DescribeDatasetExportJobCommandOutput
|
|
593
812
|
| DescribeDefaultEncryptionConfigurationCommandOutput
|
|
813
|
+
| DescribeEnrichmentJobCommandOutput
|
|
594
814
|
| DescribeExecutionCommandOutput
|
|
595
815
|
| DescribeGatewayCapabilityConfigurationCommandOutput
|
|
596
816
|
| DescribeGatewayCommandOutput
|
|
597
817
|
| DescribeLoggingOptionsCommandOutput
|
|
818
|
+
| DescribePipelineCommandOutput
|
|
819
|
+
| DescribePipelineExecutionCommandOutput
|
|
598
820
|
| DescribePortalCommandOutput
|
|
599
821
|
| DescribeProjectCommandOutput
|
|
822
|
+
| DescribeQueryCommandOutput
|
|
823
|
+
| DescribeSearchCommandOutput
|
|
600
824
|
| DescribeStorageConfigurationCommandOutput
|
|
825
|
+
| DescribeTaskCommandOutput
|
|
601
826
|
| DescribeTimeSeriesCommandOutput
|
|
827
|
+
| DescribeWorkspaceCommandOutput
|
|
602
828
|
| DisassociateAssetsCommandOutput
|
|
603
829
|
| DisassociateTimeSeriesFromAssetPropertyCommandOutput
|
|
604
830
|
| ExecuteActionCommandOutput
|
|
@@ -606,10 +832,14 @@ export type ServiceOutputTypes =
|
|
|
606
832
|
| GetAssetPropertyAggregatesCommandOutput
|
|
607
833
|
| GetAssetPropertyValueCommandOutput
|
|
608
834
|
| GetAssetPropertyValueHistoryCommandOutput
|
|
835
|
+
| GetCaptureDataCommandOutput
|
|
609
836
|
| GetInterpolatedAssetPropertyValuesCommandOutput
|
|
837
|
+
| GetQueryResultsCommandOutput
|
|
838
|
+
| GetSearchResultsCommandOutput
|
|
610
839
|
| InvokeAssistantCommandOutput
|
|
611
840
|
| ListAccessPoliciesCommandOutput
|
|
612
841
|
| ListActionsCommandOutput
|
|
842
|
+
| ListApplicationsCommandOutput
|
|
613
843
|
| ListAssetModelCompositeModelsCommandOutput
|
|
614
844
|
| ListAssetModelPropertiesCommandOutput
|
|
615
845
|
| ListAssetModelsCommandOutput
|
|
@@ -623,19 +853,32 @@ export type ServiceOutputTypes =
|
|
|
623
853
|
| ListComputationModelResolveToResourcesCommandOutput
|
|
624
854
|
| ListComputationModelsCommandOutput
|
|
625
855
|
| ListDashboardsCommandOutput
|
|
856
|
+
| ListDatasetDataSegmentRelationshipsCommandOutput
|
|
857
|
+
| ListDatasetDataSegmentsCommandOutput
|
|
858
|
+
| ListDatasetExportJobsCommandOutput
|
|
626
859
|
| ListDatasetsCommandOutput
|
|
860
|
+
| ListEnrichmentJobsCommandOutput
|
|
627
861
|
| ListExecutionsCommandOutput
|
|
628
862
|
| ListGatewaysCommandOutput
|
|
629
863
|
| ListInterfaceRelationshipsCommandOutput
|
|
864
|
+
| ListPipelineExecutionsCommandOutput
|
|
865
|
+
| ListPipelinesCommandOutput
|
|
630
866
|
| ListPortalsCommandOutput
|
|
631
867
|
| ListProjectAssetsCommandOutput
|
|
632
868
|
| ListProjectsCommandOutput
|
|
869
|
+
| ListQueriesCommandOutput
|
|
870
|
+
| ListSearchesCommandOutput
|
|
633
871
|
| ListTagsForResourceCommandOutput
|
|
872
|
+
| ListTasksCommandOutput
|
|
634
873
|
| ListTimeSeriesCommandOutput
|
|
874
|
+
| ListWorkspacesCommandOutput
|
|
635
875
|
| PutAssetModelInterfaceRelationshipCommandOutput
|
|
636
876
|
| PutDefaultEncryptionConfigurationCommandOutput
|
|
637
877
|
| PutLoggingOptionsCommandOutput
|
|
638
878
|
| PutStorageConfigurationCommandOutput
|
|
879
|
+
| StartPipelineExecutionCommandOutput
|
|
880
|
+
| StartQueryCommandOutput
|
|
881
|
+
| StartSearchCommandOutput
|
|
639
882
|
| TagResourceCommandOutput
|
|
640
883
|
| UntagResourceCommandOutput
|
|
641
884
|
| UpdateAccessPolicyCommandOutput
|
|
@@ -648,8 +891,11 @@ export type ServiceOutputTypes =
|
|
|
648
891
|
| UpdateDatasetCommandOutput
|
|
649
892
|
| UpdateGatewayCapabilityConfigurationCommandOutput
|
|
650
893
|
| UpdateGatewayCommandOutput
|
|
894
|
+
| UpdatePipelineCommandOutput
|
|
651
895
|
| UpdatePortalCommandOutput
|
|
652
|
-
| UpdateProjectCommandOutput
|
|
896
|
+
| UpdateProjectCommandOutput
|
|
897
|
+
| UpdateTaskCommandOutput
|
|
898
|
+
| UpdateWorkspaceCommandOutput;
|
|
653
899
|
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
654
900
|
requestHandler?: __HttpHandlerUserInput;
|
|
655
901
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchAssociateDataSegmentsToDatasetRequest,
|
|
4
|
+
BatchAssociateDataSegmentsToDatasetResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface BatchAssociateDataSegmentsToDatasetCommandInput extends BatchAssociateDataSegmentsToDatasetRequest {}
|
|
8
|
+
export interface BatchAssociateDataSegmentsToDatasetCommandOutput
|
|
9
|
+
extends BatchAssociateDataSegmentsToDatasetResponse, __MetadataBearer {}
|
|
10
|
+
declare const BatchAssociateDataSegmentsToDatasetCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
15
|
+
BatchAssociateDataSegmentsToDatasetCommandOutput,
|
|
16
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchAssociateDataSegmentsToDatasetCommandInput,
|
|
24
|
+
BatchAssociateDataSegmentsToDatasetCommandOutput,
|
|
25
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class BatchAssociateDataSegmentsToDatasetCommand extends BatchAssociateDataSegmentsToDatasetCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: BatchAssociateDataSegmentsToDatasetRequest;
|
|
35
|
+
output: BatchAssociateDataSegmentsToDatasetResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: BatchAssociateDataSegmentsToDatasetCommandInput;
|
|
39
|
+
output: BatchAssociateDataSegmentsToDatasetCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchDeleteDatasetDataSegmentsRequest,
|
|
4
|
+
BatchDeleteDatasetDataSegmentsResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface BatchDeleteDatasetDataSegmentsCommandInput extends BatchDeleteDatasetDataSegmentsRequest {}
|
|
8
|
+
export interface BatchDeleteDatasetDataSegmentsCommandOutput
|
|
9
|
+
extends BatchDeleteDatasetDataSegmentsResponse, __MetadataBearer {}
|
|
10
|
+
declare const BatchDeleteDatasetDataSegmentsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: BatchDeleteDatasetDataSegmentsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
BatchDeleteDatasetDataSegmentsCommandInput,
|
|
15
|
+
BatchDeleteDatasetDataSegmentsCommandOutput,
|
|
16
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeleteDatasetDataSegmentsCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchDeleteDatasetDataSegmentsCommandInput,
|
|
24
|
+
BatchDeleteDatasetDataSegmentsCommandOutput,
|
|
25
|
+
import("..").IoTSiteWiseClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class BatchDeleteDatasetDataSegmentsCommand extends BatchDeleteDatasetDataSegmentsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: BatchDeleteDatasetDataSegmentsRequest;
|
|
35
|
+
output: BatchDeleteDatasetDataSegmentsResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: BatchDeleteDatasetDataSegmentsCommandInput;
|
|
39
|
+
output: BatchDeleteDatasetDataSegmentsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|