@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
|
@@ -9,13 +9,20 @@ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengt
|
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import type { AssociateAssetsCommandInput, AssociateAssetsCommandOutput } from "./commands/AssociateAssetsCommand";
|
|
11
11
|
import type { AssociateTimeSeriesToAssetPropertyCommandInput, AssociateTimeSeriesToAssetPropertyCommandOutput } from "./commands/AssociateTimeSeriesToAssetPropertyCommand";
|
|
12
|
+
import type { BatchAssociateDataSegmentsToDatasetCommandInput, BatchAssociateDataSegmentsToDatasetCommandOutput } from "./commands/BatchAssociateDataSegmentsToDatasetCommand";
|
|
12
13
|
import type { BatchAssociateProjectAssetsCommandInput, BatchAssociateProjectAssetsCommandOutput } from "./commands/BatchAssociateProjectAssetsCommand";
|
|
14
|
+
import type { BatchDeleteDatasetDataSegmentsCommandInput, BatchDeleteDatasetDataSegmentsCommandOutput } from "./commands/BatchDeleteDatasetDataSegmentsCommand";
|
|
15
|
+
import type { BatchDisassociateDataSegmentsFromDatasetCommandInput, BatchDisassociateDataSegmentsFromDatasetCommandOutput } from "./commands/BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
13
16
|
import type { BatchDisassociateProjectAssetsCommandInput, BatchDisassociateProjectAssetsCommandOutput } from "./commands/BatchDisassociateProjectAssetsCommand";
|
|
14
17
|
import type { BatchGetAssetPropertyAggregatesCommandInput, BatchGetAssetPropertyAggregatesCommandOutput } from "./commands/BatchGetAssetPropertyAggregatesCommand";
|
|
15
18
|
import type { BatchGetAssetPropertyValueCommandInput, BatchGetAssetPropertyValueCommandOutput } from "./commands/BatchGetAssetPropertyValueCommand";
|
|
16
19
|
import type { BatchGetAssetPropertyValueHistoryCommandInput, BatchGetAssetPropertyValueHistoryCommandOutput } from "./commands/BatchGetAssetPropertyValueHistoryCommand";
|
|
17
20
|
import type { BatchPutAssetPropertyValueCommandInput, BatchPutAssetPropertyValueCommandOutput } from "./commands/BatchPutAssetPropertyValueCommand";
|
|
21
|
+
import type { CancelEnrichmentJobCommandInput, CancelEnrichmentJobCommandOutput } from "./commands/CancelEnrichmentJobCommand";
|
|
22
|
+
import type { CancelPipelineExecutionCommandInput, CancelPipelineExecutionCommandOutput } from "./commands/CancelPipelineExecutionCommand";
|
|
23
|
+
import type { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
|
|
18
24
|
import type { CreateAccessPolicyCommandInput, CreateAccessPolicyCommandOutput } from "./commands/CreateAccessPolicyCommand";
|
|
25
|
+
import type { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
19
26
|
import type { CreateAssetCommandInput, CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
20
27
|
import type { CreateAssetModelCommandInput, CreateAssetModelCommandOutput } from "./commands/CreateAssetModelCommand";
|
|
21
28
|
import type { CreateAssetModelCompositeModelCommandInput, CreateAssetModelCompositeModelCommandOutput } from "./commands/CreateAssetModelCompositeModelCommand";
|
|
@@ -23,10 +30,16 @@ import type { CreateBulkImportJobCommandInput, CreateBulkImportJobCommandOutput
|
|
|
23
30
|
import type { CreateComputationModelCommandInput, CreateComputationModelCommandOutput } from "./commands/CreateComputationModelCommand";
|
|
24
31
|
import type { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./commands/CreateDashboardCommand";
|
|
25
32
|
import type { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
33
|
+
import type { CreateDatasetExportJobCommandInput, CreateDatasetExportJobCommandOutput } from "./commands/CreateDatasetExportJobCommand";
|
|
34
|
+
import type { CreateEnrichmentJobCommandInput, CreateEnrichmentJobCommandOutput } from "./commands/CreateEnrichmentJobCommand";
|
|
26
35
|
import type { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
36
|
+
import type { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
|
|
27
37
|
import type { CreatePortalCommandInput, CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
28
38
|
import type { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
39
|
+
import type { CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand";
|
|
40
|
+
import type { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
29
41
|
import type { DeleteAccessPolicyCommandInput, DeleteAccessPolicyCommandOutput } from "./commands/DeleteAccessPolicyCommand";
|
|
42
|
+
import type { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
30
43
|
import type { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
31
44
|
import type { DeleteAssetModelCommandInput, DeleteAssetModelCommandOutput } from "./commands/DeleteAssetModelCommand";
|
|
32
45
|
import type { DeleteAssetModelCompositeModelCommandInput, DeleteAssetModelCompositeModelCommandOutput } from "./commands/DeleteAssetModelCompositeModelCommand";
|
|
@@ -35,11 +48,15 @@ import type { DeleteComputationModelCommandInput, DeleteComputationModelCommandO
|
|
|
35
48
|
import type { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
36
49
|
import type { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
37
50
|
import type { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
51
|
+
import type { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
|
|
38
52
|
import type { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
39
53
|
import type { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
54
|
+
import type { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
|
|
40
55
|
import type { DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput } from "./commands/DeleteTimeSeriesCommand";
|
|
56
|
+
import type { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
41
57
|
import type { DescribeAccessPolicyCommandInput, DescribeAccessPolicyCommandOutput } from "./commands/DescribeAccessPolicyCommand";
|
|
42
58
|
import type { DescribeActionCommandInput, DescribeActionCommandOutput } from "./commands/DescribeActionCommand";
|
|
59
|
+
import type { DescribeApplicationCommandInput, DescribeApplicationCommandOutput } from "./commands/DescribeApplicationCommand";
|
|
43
60
|
import type { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "./commands/DescribeAssetCommand";
|
|
44
61
|
import type { DescribeAssetCompositeModelCommandInput, DescribeAssetCompositeModelCommandOutput } from "./commands/DescribeAssetCompositeModelCommand";
|
|
45
62
|
import type { DescribeAssetModelCommandInput, DescribeAssetModelCommandOutput } from "./commands/DescribeAssetModelCommand";
|
|
@@ -51,15 +68,23 @@ import type { DescribeComputationModelCommandInput, DescribeComputationModelComm
|
|
|
51
68
|
import type { DescribeComputationModelExecutionSummaryCommandInput, DescribeComputationModelExecutionSummaryCommandOutput } from "./commands/DescribeComputationModelExecutionSummaryCommand";
|
|
52
69
|
import type { DescribeDashboardCommandInput, DescribeDashboardCommandOutput } from "./commands/DescribeDashboardCommand";
|
|
53
70
|
import type { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
71
|
+
import type { DescribeDatasetExportJobCommandInput, DescribeDatasetExportJobCommandOutput } from "./commands/DescribeDatasetExportJobCommand";
|
|
54
72
|
import type { DescribeDefaultEncryptionConfigurationCommandInput, DescribeDefaultEncryptionConfigurationCommandOutput } from "./commands/DescribeDefaultEncryptionConfigurationCommand";
|
|
73
|
+
import type { DescribeEnrichmentJobCommandInput, DescribeEnrichmentJobCommandOutput } from "./commands/DescribeEnrichmentJobCommand";
|
|
55
74
|
import type { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
56
75
|
import type { DescribeGatewayCapabilityConfigurationCommandInput, DescribeGatewayCapabilityConfigurationCommandOutput } from "./commands/DescribeGatewayCapabilityConfigurationCommand";
|
|
57
76
|
import type { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
58
77
|
import type { DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput } from "./commands/DescribeLoggingOptionsCommand";
|
|
78
|
+
import type { DescribePipelineCommandInput, DescribePipelineCommandOutput } from "./commands/DescribePipelineCommand";
|
|
79
|
+
import type { DescribePipelineExecutionCommandInput, DescribePipelineExecutionCommandOutput } from "./commands/DescribePipelineExecutionCommand";
|
|
59
80
|
import type { DescribePortalCommandInput, DescribePortalCommandOutput } from "./commands/DescribePortalCommand";
|
|
60
81
|
import type { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
82
|
+
import type { DescribeQueryCommandInput, DescribeQueryCommandOutput } from "./commands/DescribeQueryCommand";
|
|
83
|
+
import type { DescribeSearchCommandInput, DescribeSearchCommandOutput } from "./commands/DescribeSearchCommand";
|
|
61
84
|
import type { DescribeStorageConfigurationCommandInput, DescribeStorageConfigurationCommandOutput } from "./commands/DescribeStorageConfigurationCommand";
|
|
85
|
+
import type { DescribeTaskCommandInput, DescribeTaskCommandOutput } from "./commands/DescribeTaskCommand";
|
|
62
86
|
import type { DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput } from "./commands/DescribeTimeSeriesCommand";
|
|
87
|
+
import type { DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput } from "./commands/DescribeWorkspaceCommand";
|
|
63
88
|
import type { DisassociateAssetsCommandInput, DisassociateAssetsCommandOutput } from "./commands/DisassociateAssetsCommand";
|
|
64
89
|
import type { DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
65
90
|
import type { ExecuteActionCommandInput, ExecuteActionCommandOutput } from "./commands/ExecuteActionCommand";
|
|
@@ -67,10 +92,14 @@ import type { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./comm
|
|
|
67
92
|
import type { GetAssetPropertyAggregatesCommandInput, GetAssetPropertyAggregatesCommandOutput } from "./commands/GetAssetPropertyAggregatesCommand";
|
|
68
93
|
import type { GetAssetPropertyValueCommandInput, GetAssetPropertyValueCommandOutput } from "./commands/GetAssetPropertyValueCommand";
|
|
69
94
|
import type { GetAssetPropertyValueHistoryCommandInput, GetAssetPropertyValueHistoryCommandOutput } from "./commands/GetAssetPropertyValueHistoryCommand";
|
|
95
|
+
import type { GetCaptureDataCommandInput, GetCaptureDataCommandOutput } from "./commands/GetCaptureDataCommand";
|
|
70
96
|
import type { GetInterpolatedAssetPropertyValuesCommandInput, GetInterpolatedAssetPropertyValuesCommandOutput } from "./commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
97
|
+
import type { GetQueryResultsCommandInput, GetQueryResultsCommandOutput } from "./commands/GetQueryResultsCommand";
|
|
98
|
+
import type { GetSearchResultsCommandInput, GetSearchResultsCommandOutput } from "./commands/GetSearchResultsCommand";
|
|
71
99
|
import type { InvokeAssistantCommandInput, InvokeAssistantCommandOutput } from "./commands/InvokeAssistantCommand";
|
|
72
100
|
import type { ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput } from "./commands/ListAccessPoliciesCommand";
|
|
73
101
|
import type { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
102
|
+
import type { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
74
103
|
import type { ListAssetModelCompositeModelsCommandInput, ListAssetModelCompositeModelsCommandOutput } from "./commands/ListAssetModelCompositeModelsCommand";
|
|
75
104
|
import type { ListAssetModelPropertiesCommandInput, ListAssetModelPropertiesCommandOutput } from "./commands/ListAssetModelPropertiesCommand";
|
|
76
105
|
import type { ListAssetModelsCommandInput, ListAssetModelsCommandOutput } from "./commands/ListAssetModelsCommand";
|
|
@@ -84,19 +113,32 @@ import type { ListComputationModelDataBindingUsagesCommandInput, ListComputation
|
|
|
84
113
|
import type { ListComputationModelResolveToResourcesCommandInput, ListComputationModelResolveToResourcesCommandOutput } from "./commands/ListComputationModelResolveToResourcesCommand";
|
|
85
114
|
import type { ListComputationModelsCommandInput, ListComputationModelsCommandOutput } from "./commands/ListComputationModelsCommand";
|
|
86
115
|
import type { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "./commands/ListDashboardsCommand";
|
|
116
|
+
import type { ListDatasetDataSegmentRelationshipsCommandInput, ListDatasetDataSegmentRelationshipsCommandOutput } from "./commands/ListDatasetDataSegmentRelationshipsCommand";
|
|
117
|
+
import type { ListDatasetDataSegmentsCommandInput, ListDatasetDataSegmentsCommandOutput } from "./commands/ListDatasetDataSegmentsCommand";
|
|
118
|
+
import type { ListDatasetExportJobsCommandInput, ListDatasetExportJobsCommandOutput } from "./commands/ListDatasetExportJobsCommand";
|
|
87
119
|
import type { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
120
|
+
import type { ListEnrichmentJobsCommandInput, ListEnrichmentJobsCommandOutput } from "./commands/ListEnrichmentJobsCommand";
|
|
88
121
|
import type { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
89
122
|
import type { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
90
123
|
import type { ListInterfaceRelationshipsCommandInput, ListInterfaceRelationshipsCommandOutput } from "./commands/ListInterfaceRelationshipsCommand";
|
|
124
|
+
import type { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
|
|
125
|
+
import type { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
91
126
|
import type { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
92
127
|
import type { ListProjectAssetsCommandInput, ListProjectAssetsCommandOutput } from "./commands/ListProjectAssetsCommand";
|
|
93
128
|
import type { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
129
|
+
import type { ListQueriesCommandInput, ListQueriesCommandOutput } from "./commands/ListQueriesCommand";
|
|
130
|
+
import type { ListSearchesCommandInput, ListSearchesCommandOutput } from "./commands/ListSearchesCommand";
|
|
94
131
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
132
|
+
import type { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
95
133
|
import type { ListTimeSeriesCommandInput, ListTimeSeriesCommandOutput } from "./commands/ListTimeSeriesCommand";
|
|
134
|
+
import type { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
96
135
|
import type { PutAssetModelInterfaceRelationshipCommandInput, PutAssetModelInterfaceRelationshipCommandOutput } from "./commands/PutAssetModelInterfaceRelationshipCommand";
|
|
97
136
|
import type { PutDefaultEncryptionConfigurationCommandInput, PutDefaultEncryptionConfigurationCommandOutput } from "./commands/PutDefaultEncryptionConfigurationCommand";
|
|
98
137
|
import type { PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput } from "./commands/PutLoggingOptionsCommand";
|
|
99
138
|
import type { PutStorageConfigurationCommandInput, PutStorageConfigurationCommandOutput } from "./commands/PutStorageConfigurationCommand";
|
|
139
|
+
import type { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
|
|
140
|
+
import type { StartQueryCommandInput, StartQueryCommandOutput } from "./commands/StartQueryCommand";
|
|
141
|
+
import type { StartSearchCommandInput, StartSearchCommandOutput } from "./commands/StartSearchCommand";
|
|
100
142
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
101
143
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
102
144
|
import type { UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput } from "./commands/UpdateAccessPolicyCommand";
|
|
@@ -109,19 +151,22 @@ import type { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "
|
|
|
109
151
|
import type { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "./commands/UpdateDatasetCommand";
|
|
110
152
|
import type { UpdateGatewayCapabilityConfigurationCommandInput, UpdateGatewayCapabilityConfigurationCommandOutput } from "./commands/UpdateGatewayCapabilityConfigurationCommand";
|
|
111
153
|
import type { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
154
|
+
import type { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
|
|
112
155
|
import type { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
113
156
|
import type { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
157
|
+
import type { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
|
|
158
|
+
import type { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
114
159
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
115
160
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
116
161
|
export { __Client };
|
|
117
162
|
/**
|
|
118
163
|
* @public
|
|
119
164
|
*/
|
|
120
|
-
export type ServiceInputTypes = AssociateAssetsCommandInput | AssociateTimeSeriesToAssetPropertyCommandInput | BatchAssociateProjectAssetsCommandInput | BatchDisassociateProjectAssetsCommandInput | BatchGetAssetPropertyAggregatesCommandInput | BatchGetAssetPropertyValueCommandInput | BatchGetAssetPropertyValueHistoryCommandInput | BatchPutAssetPropertyValueCommandInput | CreateAccessPolicyCommandInput | CreateAssetCommandInput | CreateAssetModelCommandInput | CreateAssetModelCompositeModelCommandInput | CreateBulkImportJobCommandInput | CreateComputationModelCommandInput | CreateDashboardCommandInput | CreateDatasetCommandInput | CreateGatewayCommandInput | CreatePortalCommandInput | CreateProjectCommandInput | DeleteAccessPolicyCommandInput | DeleteAssetCommandInput | DeleteAssetModelCommandInput | DeleteAssetModelCompositeModelCommandInput | DeleteAssetModelInterfaceRelationshipCommandInput | DeleteComputationModelCommandInput | DeleteDashboardCommandInput | DeleteDatasetCommandInput | DeleteGatewayCommandInput | DeletePortalCommandInput | DeleteProjectCommandInput | DeleteTimeSeriesCommandInput | DescribeAccessPolicyCommandInput | DescribeActionCommandInput | DescribeAssetCommandInput | DescribeAssetCompositeModelCommandInput | DescribeAssetModelCommandInput | DescribeAssetModelCompositeModelCommandInput | DescribeAssetModelInterfaceRelationshipCommandInput | DescribeAssetPropertyCommandInput | DescribeBulkImportJobCommandInput | DescribeComputationModelCommandInput | DescribeComputationModelExecutionSummaryCommandInput | DescribeDashboardCommandInput | DescribeDatasetCommandInput | DescribeDefaultEncryptionConfigurationCommandInput | DescribeExecutionCommandInput | DescribeGatewayCapabilityConfigurationCommandInput | DescribeGatewayCommandInput | DescribeLoggingOptionsCommandInput | DescribePortalCommandInput | DescribeProjectCommandInput | DescribeStorageConfigurationCommandInput | DescribeTimeSeriesCommandInput | DisassociateAssetsCommandInput | DisassociateTimeSeriesFromAssetPropertyCommandInput | ExecuteActionCommandInput | ExecuteQueryCommandInput | GetAssetPropertyAggregatesCommandInput | GetAssetPropertyValueCommandInput | GetAssetPropertyValueHistoryCommandInput | GetInterpolatedAssetPropertyValuesCommandInput | InvokeAssistantCommandInput | ListAccessPoliciesCommandInput | ListActionsCommandInput | ListAssetModelCompositeModelsCommandInput | ListAssetModelPropertiesCommandInput | ListAssetModelsCommandInput | ListAssetPropertiesCommandInput | ListAssetRelationshipsCommandInput | ListAssetsCommandInput | ListAssociatedAssetsCommandInput | ListBulkImportJobsCommandInput | ListCompositionRelationshipsCommandInput | ListComputationModelDataBindingUsagesCommandInput | ListComputationModelResolveToResourcesCommandInput | ListComputationModelsCommandInput | ListDashboardsCommandInput | ListDatasetsCommandInput | ListExecutionsCommandInput | ListGatewaysCommandInput | ListInterfaceRelationshipsCommandInput | ListPortalsCommandInput | ListProjectAssetsCommandInput | ListProjectsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesCommandInput | PutAssetModelInterfaceRelationshipCommandInput | PutDefaultEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | PutStorageConfigurationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessPolicyCommandInput | UpdateAssetCommandInput | UpdateAssetModelCommandInput | UpdateAssetModelCompositeModelCommandInput | UpdateAssetPropertyCommandInput | UpdateComputationModelCommandInput | UpdateDashboardCommandInput | UpdateDatasetCommandInput | UpdateGatewayCapabilityConfigurationCommandInput | UpdateGatewayCommandInput | UpdatePortalCommandInput | UpdateProjectCommandInput;
|
|
165
|
+
export type ServiceInputTypes = AssociateAssetsCommandInput | AssociateTimeSeriesToAssetPropertyCommandInput | BatchAssociateDataSegmentsToDatasetCommandInput | BatchAssociateProjectAssetsCommandInput | BatchDeleteDatasetDataSegmentsCommandInput | BatchDisassociateDataSegmentsFromDatasetCommandInput | BatchDisassociateProjectAssetsCommandInput | BatchGetAssetPropertyAggregatesCommandInput | BatchGetAssetPropertyValueCommandInput | BatchGetAssetPropertyValueHistoryCommandInput | BatchPutAssetPropertyValueCommandInput | CancelEnrichmentJobCommandInput | CancelPipelineExecutionCommandInput | CancelQueryCommandInput | CreateAccessPolicyCommandInput | CreateApplicationCommandInput | CreateAssetCommandInput | CreateAssetModelCommandInput | CreateAssetModelCompositeModelCommandInput | CreateBulkImportJobCommandInput | CreateComputationModelCommandInput | CreateDashboardCommandInput | CreateDatasetCommandInput | CreateDatasetExportJobCommandInput | CreateEnrichmentJobCommandInput | CreateGatewayCommandInput | CreatePipelineCommandInput | CreatePortalCommandInput | CreateProjectCommandInput | CreateTaskCommandInput | CreateWorkspaceCommandInput | DeleteAccessPolicyCommandInput | DeleteApplicationCommandInput | DeleteAssetCommandInput | DeleteAssetModelCommandInput | DeleteAssetModelCompositeModelCommandInput | DeleteAssetModelInterfaceRelationshipCommandInput | DeleteComputationModelCommandInput | DeleteDashboardCommandInput | DeleteDatasetCommandInput | DeleteGatewayCommandInput | DeletePipelineCommandInput | DeletePortalCommandInput | DeleteProjectCommandInput | DeleteTaskCommandInput | DeleteTimeSeriesCommandInput | DeleteWorkspaceCommandInput | DescribeAccessPolicyCommandInput | DescribeActionCommandInput | DescribeApplicationCommandInput | DescribeAssetCommandInput | DescribeAssetCompositeModelCommandInput | DescribeAssetModelCommandInput | DescribeAssetModelCompositeModelCommandInput | DescribeAssetModelInterfaceRelationshipCommandInput | DescribeAssetPropertyCommandInput | DescribeBulkImportJobCommandInput | DescribeComputationModelCommandInput | DescribeComputationModelExecutionSummaryCommandInput | DescribeDashboardCommandInput | DescribeDatasetCommandInput | DescribeDatasetExportJobCommandInput | DescribeDefaultEncryptionConfigurationCommandInput | DescribeEnrichmentJobCommandInput | DescribeExecutionCommandInput | DescribeGatewayCapabilityConfigurationCommandInput | DescribeGatewayCommandInput | DescribeLoggingOptionsCommandInput | DescribePipelineCommandInput | DescribePipelineExecutionCommandInput | DescribePortalCommandInput | DescribeProjectCommandInput | DescribeQueryCommandInput | DescribeSearchCommandInput | DescribeStorageConfigurationCommandInput | DescribeTaskCommandInput | DescribeTimeSeriesCommandInput | DescribeWorkspaceCommandInput | DisassociateAssetsCommandInput | DisassociateTimeSeriesFromAssetPropertyCommandInput | ExecuteActionCommandInput | ExecuteQueryCommandInput | GetAssetPropertyAggregatesCommandInput | GetAssetPropertyValueCommandInput | GetAssetPropertyValueHistoryCommandInput | GetCaptureDataCommandInput | GetInterpolatedAssetPropertyValuesCommandInput | GetQueryResultsCommandInput | GetSearchResultsCommandInput | InvokeAssistantCommandInput | ListAccessPoliciesCommandInput | ListActionsCommandInput | ListApplicationsCommandInput | ListAssetModelCompositeModelsCommandInput | ListAssetModelPropertiesCommandInput | ListAssetModelsCommandInput | ListAssetPropertiesCommandInput | ListAssetRelationshipsCommandInput | ListAssetsCommandInput | ListAssociatedAssetsCommandInput | ListBulkImportJobsCommandInput | ListCompositionRelationshipsCommandInput | ListComputationModelDataBindingUsagesCommandInput | ListComputationModelResolveToResourcesCommandInput | ListComputationModelsCommandInput | ListDashboardsCommandInput | ListDatasetDataSegmentRelationshipsCommandInput | ListDatasetDataSegmentsCommandInput | ListDatasetExportJobsCommandInput | ListDatasetsCommandInput | ListEnrichmentJobsCommandInput | ListExecutionsCommandInput | ListGatewaysCommandInput | ListInterfaceRelationshipsCommandInput | ListPipelineExecutionsCommandInput | ListPipelinesCommandInput | ListPortalsCommandInput | ListProjectAssetsCommandInput | ListProjectsCommandInput | ListQueriesCommandInput | ListSearchesCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | ListTimeSeriesCommandInput | ListWorkspacesCommandInput | PutAssetModelInterfaceRelationshipCommandInput | PutDefaultEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | PutStorageConfigurationCommandInput | StartPipelineExecutionCommandInput | StartQueryCommandInput | StartSearchCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessPolicyCommandInput | UpdateAssetCommandInput | UpdateAssetModelCommandInput | UpdateAssetModelCompositeModelCommandInput | UpdateAssetPropertyCommandInput | UpdateComputationModelCommandInput | UpdateDashboardCommandInput | UpdateDatasetCommandInput | UpdateGatewayCapabilityConfigurationCommandInput | UpdateGatewayCommandInput | UpdatePipelineCommandInput | UpdatePortalCommandInput | UpdateProjectCommandInput | UpdateTaskCommandInput | UpdateWorkspaceCommandInput;
|
|
121
166
|
/**
|
|
122
167
|
* @public
|
|
123
168
|
*/
|
|
124
|
-
export type ServiceOutputTypes = AssociateAssetsCommandOutput | AssociateTimeSeriesToAssetPropertyCommandOutput | BatchAssociateProjectAssetsCommandOutput | BatchDisassociateProjectAssetsCommandOutput | BatchGetAssetPropertyAggregatesCommandOutput | BatchGetAssetPropertyValueCommandOutput | BatchGetAssetPropertyValueHistoryCommandOutput | BatchPutAssetPropertyValueCommandOutput | CreateAccessPolicyCommandOutput | CreateAssetCommandOutput | CreateAssetModelCommandOutput | CreateAssetModelCompositeModelCommandOutput | CreateBulkImportJobCommandOutput | CreateComputationModelCommandOutput | CreateDashboardCommandOutput | CreateDatasetCommandOutput | CreateGatewayCommandOutput | CreatePortalCommandOutput | CreateProjectCommandOutput | DeleteAccessPolicyCommandOutput | DeleteAssetCommandOutput | DeleteAssetModelCommandOutput | DeleteAssetModelCompositeModelCommandOutput | DeleteAssetModelInterfaceRelationshipCommandOutput | DeleteComputationModelCommandOutput | DeleteDashboardCommandOutput | DeleteDatasetCommandOutput | DeleteGatewayCommandOutput | DeletePortalCommandOutput | DeleteProjectCommandOutput | DeleteTimeSeriesCommandOutput | DescribeAccessPolicyCommandOutput | DescribeActionCommandOutput | DescribeAssetCommandOutput | DescribeAssetCompositeModelCommandOutput | DescribeAssetModelCommandOutput | DescribeAssetModelCompositeModelCommandOutput | DescribeAssetModelInterfaceRelationshipCommandOutput | DescribeAssetPropertyCommandOutput | DescribeBulkImportJobCommandOutput | DescribeComputationModelCommandOutput | DescribeComputationModelExecutionSummaryCommandOutput | DescribeDashboardCommandOutput | DescribeDatasetCommandOutput | DescribeDefaultEncryptionConfigurationCommandOutput | DescribeExecutionCommandOutput | DescribeGatewayCapabilityConfigurationCommandOutput | DescribeGatewayCommandOutput | DescribeLoggingOptionsCommandOutput | DescribePortalCommandOutput | DescribeProjectCommandOutput | DescribeStorageConfigurationCommandOutput | DescribeTimeSeriesCommandOutput | DisassociateAssetsCommandOutput | DisassociateTimeSeriesFromAssetPropertyCommandOutput | ExecuteActionCommandOutput | ExecuteQueryCommandOutput | GetAssetPropertyAggregatesCommandOutput | GetAssetPropertyValueCommandOutput | GetAssetPropertyValueHistoryCommandOutput | GetInterpolatedAssetPropertyValuesCommandOutput | InvokeAssistantCommandOutput | ListAccessPoliciesCommandOutput | ListActionsCommandOutput | ListAssetModelCompositeModelsCommandOutput | ListAssetModelPropertiesCommandOutput | ListAssetModelsCommandOutput | ListAssetPropertiesCommandOutput | ListAssetRelationshipsCommandOutput | ListAssetsCommandOutput | ListAssociatedAssetsCommandOutput | ListBulkImportJobsCommandOutput | ListCompositionRelationshipsCommandOutput | ListComputationModelDataBindingUsagesCommandOutput | ListComputationModelResolveToResourcesCommandOutput | ListComputationModelsCommandOutput | ListDashboardsCommandOutput | ListDatasetsCommandOutput | ListExecutionsCommandOutput | ListGatewaysCommandOutput | ListInterfaceRelationshipsCommandOutput | ListPortalsCommandOutput | ListProjectAssetsCommandOutput | ListProjectsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesCommandOutput | PutAssetModelInterfaceRelationshipCommandOutput | PutDefaultEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | PutStorageConfigurationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessPolicyCommandOutput | UpdateAssetCommandOutput | UpdateAssetModelCommandOutput | UpdateAssetModelCompositeModelCommandOutput | UpdateAssetPropertyCommandOutput | UpdateComputationModelCommandOutput | UpdateDashboardCommandOutput | UpdateDatasetCommandOutput | UpdateGatewayCapabilityConfigurationCommandOutput | UpdateGatewayCommandOutput | UpdatePortalCommandOutput | UpdateProjectCommandOutput;
|
|
169
|
+
export type ServiceOutputTypes = AssociateAssetsCommandOutput | AssociateTimeSeriesToAssetPropertyCommandOutput | BatchAssociateDataSegmentsToDatasetCommandOutput | BatchAssociateProjectAssetsCommandOutput | BatchDeleteDatasetDataSegmentsCommandOutput | BatchDisassociateDataSegmentsFromDatasetCommandOutput | BatchDisassociateProjectAssetsCommandOutput | BatchGetAssetPropertyAggregatesCommandOutput | BatchGetAssetPropertyValueCommandOutput | BatchGetAssetPropertyValueHistoryCommandOutput | BatchPutAssetPropertyValueCommandOutput | CancelEnrichmentJobCommandOutput | CancelPipelineExecutionCommandOutput | CancelQueryCommandOutput | CreateAccessPolicyCommandOutput | CreateApplicationCommandOutput | CreateAssetCommandOutput | CreateAssetModelCommandOutput | CreateAssetModelCompositeModelCommandOutput | CreateBulkImportJobCommandOutput | CreateComputationModelCommandOutput | CreateDashboardCommandOutput | CreateDatasetCommandOutput | CreateDatasetExportJobCommandOutput | CreateEnrichmentJobCommandOutput | CreateGatewayCommandOutput | CreatePipelineCommandOutput | CreatePortalCommandOutput | CreateProjectCommandOutput | CreateTaskCommandOutput | CreateWorkspaceCommandOutput | DeleteAccessPolicyCommandOutput | DeleteApplicationCommandOutput | DeleteAssetCommandOutput | DeleteAssetModelCommandOutput | DeleteAssetModelCompositeModelCommandOutput | DeleteAssetModelInterfaceRelationshipCommandOutput | DeleteComputationModelCommandOutput | DeleteDashboardCommandOutput | DeleteDatasetCommandOutput | DeleteGatewayCommandOutput | DeletePipelineCommandOutput | DeletePortalCommandOutput | DeleteProjectCommandOutput | DeleteTaskCommandOutput | DeleteTimeSeriesCommandOutput | DeleteWorkspaceCommandOutput | DescribeAccessPolicyCommandOutput | DescribeActionCommandOutput | DescribeApplicationCommandOutput | DescribeAssetCommandOutput | DescribeAssetCompositeModelCommandOutput | DescribeAssetModelCommandOutput | DescribeAssetModelCompositeModelCommandOutput | DescribeAssetModelInterfaceRelationshipCommandOutput | DescribeAssetPropertyCommandOutput | DescribeBulkImportJobCommandOutput | DescribeComputationModelCommandOutput | DescribeComputationModelExecutionSummaryCommandOutput | DescribeDashboardCommandOutput | DescribeDatasetCommandOutput | DescribeDatasetExportJobCommandOutput | DescribeDefaultEncryptionConfigurationCommandOutput | DescribeEnrichmentJobCommandOutput | DescribeExecutionCommandOutput | DescribeGatewayCapabilityConfigurationCommandOutput | DescribeGatewayCommandOutput | DescribeLoggingOptionsCommandOutput | DescribePipelineCommandOutput | DescribePipelineExecutionCommandOutput | DescribePortalCommandOutput | DescribeProjectCommandOutput | DescribeQueryCommandOutput | DescribeSearchCommandOutput | DescribeStorageConfigurationCommandOutput | DescribeTaskCommandOutput | DescribeTimeSeriesCommandOutput | DescribeWorkspaceCommandOutput | DisassociateAssetsCommandOutput | DisassociateTimeSeriesFromAssetPropertyCommandOutput | ExecuteActionCommandOutput | ExecuteQueryCommandOutput | GetAssetPropertyAggregatesCommandOutput | GetAssetPropertyValueCommandOutput | GetAssetPropertyValueHistoryCommandOutput | GetCaptureDataCommandOutput | GetInterpolatedAssetPropertyValuesCommandOutput | GetQueryResultsCommandOutput | GetSearchResultsCommandOutput | InvokeAssistantCommandOutput | ListAccessPoliciesCommandOutput | ListActionsCommandOutput | ListApplicationsCommandOutput | ListAssetModelCompositeModelsCommandOutput | ListAssetModelPropertiesCommandOutput | ListAssetModelsCommandOutput | ListAssetPropertiesCommandOutput | ListAssetRelationshipsCommandOutput | ListAssetsCommandOutput | ListAssociatedAssetsCommandOutput | ListBulkImportJobsCommandOutput | ListCompositionRelationshipsCommandOutput | ListComputationModelDataBindingUsagesCommandOutput | ListComputationModelResolveToResourcesCommandOutput | ListComputationModelsCommandOutput | ListDashboardsCommandOutput | ListDatasetDataSegmentRelationshipsCommandOutput | ListDatasetDataSegmentsCommandOutput | ListDatasetExportJobsCommandOutput | ListDatasetsCommandOutput | ListEnrichmentJobsCommandOutput | ListExecutionsCommandOutput | ListGatewaysCommandOutput | ListInterfaceRelationshipsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelinesCommandOutput | ListPortalsCommandOutput | ListProjectAssetsCommandOutput | ListProjectsCommandOutput | ListQueriesCommandOutput | ListSearchesCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | ListTimeSeriesCommandOutput | ListWorkspacesCommandOutput | PutAssetModelInterfaceRelationshipCommandOutput | PutDefaultEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | PutStorageConfigurationCommandOutput | StartPipelineExecutionCommandOutput | StartQueryCommandOutput | StartSearchCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessPolicyCommandOutput | UpdateAssetCommandOutput | UpdateAssetModelCommandOutput | UpdateAssetModelCompositeModelCommandOutput | UpdateAssetPropertyCommandOutput | UpdateComputationModelCommandOutput | UpdateDashboardCommandOutput | UpdateDatasetCommandOutput | UpdateGatewayCapabilityConfigurationCommandOutput | UpdateGatewayCommandOutput | UpdatePipelineCommandOutput | UpdatePortalCommandOutput | UpdateProjectCommandOutput | UpdateTaskCommandOutput | UpdateWorkspaceCommandOutput;
|
|
125
170
|
/**
|
|
126
171
|
* @public
|
|
127
172
|
*/
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { BatchAssociateDataSegmentsToDatasetRequest, BatchAssociateDataSegmentsToDatasetResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link BatchAssociateDataSegmentsToDatasetCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface BatchAssociateDataSegmentsToDatasetCommandInput extends BatchAssociateDataSegmentsToDatasetRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link BatchAssociateDataSegmentsToDatasetCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface BatchAssociateDataSegmentsToDatasetCommandOutput extends BatchAssociateDataSegmentsToDatasetResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const BatchAssociateDataSegmentsToDatasetCommand_base: {
|
|
22
|
+
new (input: BatchAssociateDataSegmentsToDatasetCommandInput): import("@smithy/core/client").CommandImpl<BatchAssociateDataSegmentsToDatasetCommandInput, BatchAssociateDataSegmentsToDatasetCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: BatchAssociateDataSegmentsToDatasetCommandInput): import("@smithy/core/client").CommandImpl<BatchAssociateDataSegmentsToDatasetCommandInput, BatchAssociateDataSegmentsToDatasetCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Associates a batch of data segments with a curated dataset. Data segments are
|
|
28
|
+
* time-bounded slices of time series data selected from source session datasets. Data segments
|
|
29
|
+
* that belong to the same time series can't overlap in time, regardless of which dataset they
|
|
30
|
+
* belong to.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { IoTSiteWiseClient, BatchAssociateDataSegmentsToDatasetCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
35
|
+
* // const { IoTSiteWiseClient, BatchAssociateDataSegmentsToDatasetCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
36
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
37
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
38
|
+
* const client = new IoTSiteWiseClient(config);
|
|
39
|
+
* const input = { // BatchAssociateDataSegmentsToDatasetRequest
|
|
40
|
+
* datasetId: "STRING_VALUE", // required
|
|
41
|
+
* workspaceName: "STRING_VALUE", // required
|
|
42
|
+
* associateDataSegmentEntries: [ // AssociateDataSegmentEntries // required
|
|
43
|
+
* { // AssociateDataSegmentEntry
|
|
44
|
+
* sourceDatasetId: "STRING_VALUE", // required
|
|
45
|
+
* timeSeriesId: "STRING_VALUE", // required
|
|
46
|
+
* startTimestamp: { // TimeInNanos
|
|
47
|
+
* timeInSeconds: Number("long"), // required
|
|
48
|
+
* offsetInNanos: Number("int"),
|
|
49
|
+
* },
|
|
50
|
+
* endTimestamp: {
|
|
51
|
+
* timeInSeconds: Number("long"), // required
|
|
52
|
+
* offsetInNanos: Number("int"),
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* clientToken: "STRING_VALUE",
|
|
57
|
+
* };
|
|
58
|
+
* const command = new BatchAssociateDataSegmentsToDatasetCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* // { // BatchAssociateDataSegmentsToDatasetResponse
|
|
61
|
+
* // datasetId: "STRING_VALUE", // required
|
|
62
|
+
* // datasetVersion: "STRING_VALUE", // required
|
|
63
|
+
* // failedAssociations: [ // FailedDataSegmentAssociations // required
|
|
64
|
+
* // { // FailedDataSegmentAssociation
|
|
65
|
+
* // sourceDatasetId: "STRING_VALUE", // required
|
|
66
|
+
* // timeSeriesId: "STRING_VALUE", // required
|
|
67
|
+
* // startTimestamp: { // TimeInNanos
|
|
68
|
+
* // timeInSeconds: Number("long"), // required
|
|
69
|
+
* // offsetInNanos: Number("int"),
|
|
70
|
+
* // },
|
|
71
|
+
* // endTimestamp: {
|
|
72
|
+
* // timeInSeconds: Number("long"), // required
|
|
73
|
+
* // offsetInNanos: Number("int"),
|
|
74
|
+
* // },
|
|
75
|
+
* // errorCode: "INTERNAL_FAILURE" || "VALIDATION_ERROR" || "RESOURCE_NOT_FOUND" || "LIMIT_EXCEEDED" || "CONFLICTING_OPERATION", // required
|
|
76
|
+
* // errorMessage: "STRING_VALUE", // required
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* @param BatchAssociateDataSegmentsToDatasetCommandInput - {@link BatchAssociateDataSegmentsToDatasetCommandInput}
|
|
84
|
+
* @returns {@link BatchAssociateDataSegmentsToDatasetCommandOutput}
|
|
85
|
+
* @see {@link BatchAssociateDataSegmentsToDatasetCommandInput} for command's `input` shape.
|
|
86
|
+
* @see {@link BatchAssociateDataSegmentsToDatasetCommandOutput} for command's `response` shape.
|
|
87
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
90
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
91
|
+
* than one operation on the same resource at the same time.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
94
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
97
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
98
|
+
* unsupported characters. Check your request and try again.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
101
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
102
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
103
|
+
* allowed number of properties for an asset model.</p>
|
|
104
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
107
|
+
* <p>The requested resource can't be found.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
110
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
111
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
112
|
+
* on.</p>
|
|
113
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
117
|
+
*
|
|
118
|
+
*
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export declare class BatchAssociateDataSegmentsToDatasetCommand extends BatchAssociateDataSegmentsToDatasetCommand_base {
|
|
122
|
+
/** @internal type navigation helper, not in runtime. */
|
|
123
|
+
protected static __types: {
|
|
124
|
+
api: {
|
|
125
|
+
input: BatchAssociateDataSegmentsToDatasetRequest;
|
|
126
|
+
output: BatchAssociateDataSegmentsToDatasetResponse;
|
|
127
|
+
};
|
|
128
|
+
sdk: {
|
|
129
|
+
input: BatchAssociateDataSegmentsToDatasetCommandInput;
|
|
130
|
+
output: BatchAssociateDataSegmentsToDatasetCommandOutput;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
}
|
|
@@ -24,7 +24,13 @@ declare const BatchAssociateProjectAssetsCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <
|
|
27
|
+
* <important>
|
|
28
|
+
* <p>The IoT SiteWise Monitor feature will no longer be open to new
|
|
29
|
+
* customers starting November 7, 2025. If you would like to use the IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can
|
|
30
|
+
* continue to use the service as normal. For more information, see
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html">IoT SiteWise Monitor availability change</a>.</p>
|
|
32
|
+
* </important>
|
|
33
|
+
* <p>Associates a group (batch) of assets with an IoT SiteWise Monitor project.</p>
|
|
28
34
|
* @example
|
|
29
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
36
|
* ```javascript
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { BatchDeleteDatasetDataSegmentsRequest, BatchDeleteDatasetDataSegmentsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link BatchDeleteDatasetDataSegmentsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface BatchDeleteDatasetDataSegmentsCommandInput extends BatchDeleteDatasetDataSegmentsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link BatchDeleteDatasetDataSegmentsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface BatchDeleteDatasetDataSegmentsCommandOutput extends BatchDeleteDatasetDataSegmentsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const BatchDeleteDatasetDataSegmentsCommand_base: {
|
|
22
|
+
new (input: BatchDeleteDatasetDataSegmentsCommandInput): import("@smithy/core/client").CommandImpl<BatchDeleteDatasetDataSegmentsCommandInput, BatchDeleteDatasetDataSegmentsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: BatchDeleteDatasetDataSegmentsCommandInput): import("@smithy/core/client").CommandImpl<BatchDeleteDatasetDataSegmentsCommandInput, BatchDeleteDatasetDataSegmentsCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Deletes a batch of data segments from a session dataset. Deleting a data segment deletes
|
|
28
|
+
* the underlying time series data for the segment's time range.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { IoTSiteWiseClient, BatchDeleteDatasetDataSegmentsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
33
|
+
* // const { IoTSiteWiseClient, BatchDeleteDatasetDataSegmentsCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
34
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
35
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
36
|
+
* const client = new IoTSiteWiseClient(config);
|
|
37
|
+
* const input = { // BatchDeleteDatasetDataSegmentsRequest
|
|
38
|
+
* datasetId: "STRING_VALUE", // required
|
|
39
|
+
* workspaceName: "STRING_VALUE", // required
|
|
40
|
+
* deleteDataSegmentEntries: [ // DeleteDataSegmentEntries // required
|
|
41
|
+
* { // DeleteDataSegmentEntry
|
|
42
|
+
* timeSeriesId: "STRING_VALUE", // required
|
|
43
|
+
* startTimestamp: { // TimeInNanos
|
|
44
|
+
* timeInSeconds: Number("long"), // required
|
|
45
|
+
* offsetInNanos: Number("int"),
|
|
46
|
+
* },
|
|
47
|
+
* endTimestamp: {
|
|
48
|
+
* timeInSeconds: Number("long"), // required
|
|
49
|
+
* offsetInNanos: Number("int"),
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* clientToken: "STRING_VALUE",
|
|
54
|
+
* };
|
|
55
|
+
* const command = new BatchDeleteDatasetDataSegmentsCommand(input);
|
|
56
|
+
* const response = await client.send(command);
|
|
57
|
+
* // { // BatchDeleteDatasetDataSegmentsResponse
|
|
58
|
+
* // datasetId: "STRING_VALUE", // required
|
|
59
|
+
* // datasetVersion: "STRING_VALUE", // required
|
|
60
|
+
* // errors: [ // FailedDataSegmentDeletions // required
|
|
61
|
+
* // { // FailedDataSegmentDeletion
|
|
62
|
+
* // timeSeriesId: "STRING_VALUE", // required
|
|
63
|
+
* // startTimestamp: { // TimeInNanos
|
|
64
|
+
* // timeInSeconds: Number("long"), // required
|
|
65
|
+
* // offsetInNanos: Number("int"),
|
|
66
|
+
* // },
|
|
67
|
+
* // endTimestamp: {
|
|
68
|
+
* // timeInSeconds: Number("long"), // required
|
|
69
|
+
* // offsetInNanos: Number("int"),
|
|
70
|
+
* // },
|
|
71
|
+
* // errorCode: "INTERNAL_FAILURE" || "VALIDATION_ERROR" || "RESOURCE_NOT_FOUND" || "LIMIT_EXCEEDED" || "CONFLICTING_OPERATION", // required
|
|
72
|
+
* // errorMessage: "STRING_VALUE", // required
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param BatchDeleteDatasetDataSegmentsCommandInput - {@link BatchDeleteDatasetDataSegmentsCommandInput}
|
|
80
|
+
* @returns {@link BatchDeleteDatasetDataSegmentsCommandOutput}
|
|
81
|
+
* @see {@link BatchDeleteDatasetDataSegmentsCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link BatchDeleteDatasetDataSegmentsCommandOutput} for command's `response` shape.
|
|
83
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
86
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
87
|
+
* than one operation on the same resource at the same time.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
90
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
93
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
94
|
+
* unsupported characters. Check your request and try again.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>The requested resource can't be found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
101
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
102
|
+
* on.</p>
|
|
103
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
107
|
+
*
|
|
108
|
+
*
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class BatchDeleteDatasetDataSegmentsCommand extends BatchDeleteDatasetDataSegmentsCommand_base {
|
|
112
|
+
/** @internal type navigation helper, not in runtime. */
|
|
113
|
+
protected static __types: {
|
|
114
|
+
api: {
|
|
115
|
+
input: BatchDeleteDatasetDataSegmentsRequest;
|
|
116
|
+
output: BatchDeleteDatasetDataSegmentsResponse;
|
|
117
|
+
};
|
|
118
|
+
sdk: {
|
|
119
|
+
input: BatchDeleteDatasetDataSegmentsCommandInput;
|
|
120
|
+
output: BatchDeleteDatasetDataSegmentsCommandOutput;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { BatchDisassociateDataSegmentsFromDatasetRequest, BatchDisassociateDataSegmentsFromDatasetResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link BatchDisassociateDataSegmentsFromDatasetCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface BatchDisassociateDataSegmentsFromDatasetCommandInput extends BatchDisassociateDataSegmentsFromDatasetRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link BatchDisassociateDataSegmentsFromDatasetCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface BatchDisassociateDataSegmentsFromDatasetCommandOutput extends BatchDisassociateDataSegmentsFromDatasetResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const BatchDisassociateDataSegmentsFromDatasetCommand_base: {
|
|
22
|
+
new (input: BatchDisassociateDataSegmentsFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<BatchDisassociateDataSegmentsFromDatasetCommandInput, BatchDisassociateDataSegmentsFromDatasetCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: BatchDisassociateDataSegmentsFromDatasetCommandInput): import("@smithy/core/client").CommandImpl<BatchDisassociateDataSegmentsFromDatasetCommandInput, BatchDisassociateDataSegmentsFromDatasetCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Disassociates a batch of data segments from a curated dataset. Disassociating a data
|
|
28
|
+
* segment doesn't delete the underlying data in the source session dataset.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { IoTSiteWiseClient, BatchDisassociateDataSegmentsFromDatasetCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
33
|
+
* // const { IoTSiteWiseClient, BatchDisassociateDataSegmentsFromDatasetCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
34
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
35
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
36
|
+
* const client = new IoTSiteWiseClient(config);
|
|
37
|
+
* const input = { // BatchDisassociateDataSegmentsFromDatasetRequest
|
|
38
|
+
* datasetId: "STRING_VALUE", // required
|
|
39
|
+
* workspaceName: "STRING_VALUE", // required
|
|
40
|
+
* disassociateDataSegmentEntries: [ // DisassociateDataSegmentEntries // required
|
|
41
|
+
* { // DisassociateDataSegmentEntry
|
|
42
|
+
* sourceDatasetId: "STRING_VALUE", // required
|
|
43
|
+
* timeSeriesId: "STRING_VALUE", // required
|
|
44
|
+
* startTimestamp: { // TimeInNanos
|
|
45
|
+
* timeInSeconds: Number("long"), // required
|
|
46
|
+
* offsetInNanos: Number("int"),
|
|
47
|
+
* },
|
|
48
|
+
* endTimestamp: {
|
|
49
|
+
* timeInSeconds: Number("long"), // required
|
|
50
|
+
* offsetInNanos: Number("int"),
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* clientToken: "STRING_VALUE",
|
|
55
|
+
* };
|
|
56
|
+
* const command = new BatchDisassociateDataSegmentsFromDatasetCommand(input);
|
|
57
|
+
* const response = await client.send(command);
|
|
58
|
+
* // { // BatchDisassociateDataSegmentsFromDatasetResponse
|
|
59
|
+
* // datasetId: "STRING_VALUE", // required
|
|
60
|
+
* // datasetVersion: "STRING_VALUE", // required
|
|
61
|
+
* // failedDisassociations: [ // FailedDataSegmentDisassociations // required
|
|
62
|
+
* // { // FailedDataSegmentDisassociation
|
|
63
|
+
* // sourceDatasetId: "STRING_VALUE", // required
|
|
64
|
+
* // timeSeriesId: "STRING_VALUE", // required
|
|
65
|
+
* // startTimestamp: { // TimeInNanos
|
|
66
|
+
* // timeInSeconds: Number("long"), // required
|
|
67
|
+
* // offsetInNanos: Number("int"),
|
|
68
|
+
* // },
|
|
69
|
+
* // endTimestamp: {
|
|
70
|
+
* // timeInSeconds: Number("long"), // required
|
|
71
|
+
* // offsetInNanos: Number("int"),
|
|
72
|
+
* // },
|
|
73
|
+
* // errorCode: "INTERNAL_FAILURE" || "VALIDATION_ERROR" || "RESOURCE_NOT_FOUND" || "LIMIT_EXCEEDED" || "CONFLICTING_OPERATION", // required
|
|
74
|
+
* // errorMessage: "STRING_VALUE", // required
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
81
|
+
* @param BatchDisassociateDataSegmentsFromDatasetCommandInput - {@link BatchDisassociateDataSegmentsFromDatasetCommandInput}
|
|
82
|
+
* @returns {@link BatchDisassociateDataSegmentsFromDatasetCommandOutput}
|
|
83
|
+
* @see {@link BatchDisassociateDataSegmentsFromDatasetCommandInput} for command's `input` shape.
|
|
84
|
+
* @see {@link BatchDisassociateDataSegmentsFromDatasetCommandOutput} for command's `response` shape.
|
|
85
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
88
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
89
|
+
* than one operation on the same resource at the same time.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
92
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
95
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
96
|
+
* unsupported characters. Check your request and try again.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
99
|
+
* <p>The requested resource can't be found.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
102
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
103
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
104
|
+
* on.</p>
|
|
105
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
109
|
+
*
|
|
110
|
+
*
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export declare class BatchDisassociateDataSegmentsFromDatasetCommand extends BatchDisassociateDataSegmentsFromDatasetCommand_base {
|
|
114
|
+
/** @internal type navigation helper, not in runtime. */
|
|
115
|
+
protected static __types: {
|
|
116
|
+
api: {
|
|
117
|
+
input: BatchDisassociateDataSegmentsFromDatasetRequest;
|
|
118
|
+
output: BatchDisassociateDataSegmentsFromDatasetResponse;
|
|
119
|
+
};
|
|
120
|
+
sdk: {
|
|
121
|
+
input: BatchDisassociateDataSegmentsFromDatasetCommandInput;
|
|
122
|
+
output: BatchDisassociateDataSegmentsFromDatasetCommandOutput;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
}
|