@aws-sdk/client-iotsitewise 3.1096.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
|
@@ -1,44 +1,890 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AggregateType,
|
|
3
|
+
AssetModelType,
|
|
2
4
|
AssetModelVersionType,
|
|
3
5
|
CapabilitySyncStatus,
|
|
6
|
+
ComputationModelType,
|
|
7
|
+
DatasetExportJobFilter,
|
|
8
|
+
DatasetExportJobStatus,
|
|
9
|
+
DatasetSourceType,
|
|
10
|
+
DatasetTypeEnum,
|
|
4
11
|
DisassociatedDataStorageState,
|
|
5
12
|
EncryptionType,
|
|
13
|
+
EnrichmentJobStatus,
|
|
14
|
+
EnrichmentStatus,
|
|
15
|
+
IdentityType,
|
|
16
|
+
JobStatus,
|
|
17
|
+
JobType,
|
|
18
|
+
ListAssetModelPropertiesFilter,
|
|
19
|
+
ListAssetPropertiesFilter,
|
|
20
|
+
ListAssetsFilter,
|
|
21
|
+
ListBulkImportJobsFilter,
|
|
6
22
|
ListTimeSeriesType,
|
|
7
23
|
Permission,
|
|
24
|
+
PipelineExecutionState,
|
|
8
25
|
PortalType,
|
|
9
26
|
PropertyDataType,
|
|
10
27
|
PropertyNotificationState,
|
|
28
|
+
Quality,
|
|
29
|
+
QueryStatus,
|
|
30
|
+
ResolveToResourceType,
|
|
31
|
+
ResourceType,
|
|
32
|
+
ScalarType,
|
|
33
|
+
SearchStatus,
|
|
34
|
+
SearchType,
|
|
11
35
|
StorageType,
|
|
36
|
+
TargetResourceType,
|
|
37
|
+
TimeOrdering,
|
|
38
|
+
TraversalDirection,
|
|
39
|
+
TraversalType,
|
|
40
|
+
VideoDataType,
|
|
12
41
|
WarmTierState,
|
|
13
42
|
} from "./enums";
|
|
14
43
|
import {
|
|
44
|
+
AccessDeniedException,
|
|
45
|
+
ConflictingOperationException,
|
|
46
|
+
InternalFailureException,
|
|
47
|
+
InvalidRequestException,
|
|
48
|
+
LimitExceededException,
|
|
49
|
+
ResourceNotFoundException,
|
|
50
|
+
ThrottlingException,
|
|
51
|
+
} from "./errors";
|
|
52
|
+
import {
|
|
53
|
+
AccessPolicySummary,
|
|
15
54
|
ActionDefinition,
|
|
55
|
+
ActionPayload,
|
|
56
|
+
ActionSummary,
|
|
57
|
+
AggregatedValue,
|
|
16
58
|
Alarms,
|
|
59
|
+
ApplicationSummary,
|
|
60
|
+
AssetBindingValueFilter,
|
|
61
|
+
AssetModelBindingValueFilter,
|
|
17
62
|
AssetModelCompositeModel,
|
|
18
63
|
AssetModelCompositeModelPathSegment,
|
|
64
|
+
AssetModelCompositeModelSummary,
|
|
19
65
|
AssetModelHierarchy,
|
|
20
66
|
AssetModelProperty,
|
|
21
67
|
AssetModelPropertyBindingValue,
|
|
68
|
+
AssetModelPropertyBindingValueFilter,
|
|
69
|
+
AssetModelPropertySummary,
|
|
22
70
|
AssetModelStatus,
|
|
71
|
+
AssetModelSummary,
|
|
23
72
|
AssetPropertyBindingValue,
|
|
73
|
+
AssetPropertyBindingValueFilter,
|
|
74
|
+
AssetPropertySummary,
|
|
75
|
+
AssetPropertyValue,
|
|
76
|
+
AssetRelationshipSummary,
|
|
24
77
|
AssetStatus,
|
|
25
|
-
|
|
78
|
+
AssetSummary,
|
|
79
|
+
AssociatedAssetsSummary,
|
|
26
80
|
ComputationModelConfiguration,
|
|
27
81
|
ComputationModelStatus,
|
|
82
|
+
ComputeNode,
|
|
28
83
|
ConfigurationStatus,
|
|
84
|
+
DatasetConfig,
|
|
85
|
+
DatasetEnrichment,
|
|
29
86
|
DatasetSource,
|
|
30
87
|
DatasetStatus,
|
|
88
|
+
ExecutionEnvironmentVariables,
|
|
89
|
+
ExecutionStatus,
|
|
90
|
+
FormatSettings,
|
|
91
|
+
GatewayCapabilitySummary,
|
|
92
|
+
GatewayPlatform,
|
|
31
93
|
Identity,
|
|
32
94
|
ImageFile,
|
|
33
95
|
LoggingOptions,
|
|
34
|
-
|
|
96
|
+
PipelineExecutionStatus,
|
|
35
97
|
PortalStatus,
|
|
36
98
|
PortalTypeEntry,
|
|
37
99
|
PropertyMapping,
|
|
100
|
+
ResolveTo,
|
|
38
101
|
Resource,
|
|
39
|
-
|
|
40
|
-
|
|
102
|
+
ResourceStatus,
|
|
103
|
+
TargetResource,
|
|
104
|
+
TaskConfiguration,
|
|
105
|
+
TimeInNanos,
|
|
106
|
+
Variant,
|
|
107
|
+
WorkspaceEncryptionConfiguration,
|
|
108
|
+
WorkspaceStatus,
|
|
41
109
|
} from "./models_0";
|
|
110
|
+
export interface DescribeSearchResponse {
|
|
111
|
+
searchId: string | undefined;
|
|
112
|
+
workspaceName: string | undefined;
|
|
113
|
+
status: SearchStatus | undefined;
|
|
114
|
+
queryStatement: string | undefined;
|
|
115
|
+
searchType: SearchType | undefined;
|
|
116
|
+
statusReason?: string | undefined;
|
|
117
|
+
startedAt?: Date | undefined;
|
|
118
|
+
groupId?: string | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface DescribeStorageConfigurationRequest {}
|
|
121
|
+
export interface CustomerManagedS3Storage {
|
|
122
|
+
s3ResourceArn: string | undefined;
|
|
123
|
+
roleArn: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface MultiLayerStorage {
|
|
126
|
+
customerManagedS3Storage: CustomerManagedS3Storage | undefined;
|
|
127
|
+
}
|
|
128
|
+
export interface RetentionPeriod {
|
|
129
|
+
numberOfDays?: number | undefined;
|
|
130
|
+
unlimited?: boolean | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface WarmTierRetentionPeriod {
|
|
133
|
+
numberOfDays?: number | undefined;
|
|
134
|
+
unlimited?: boolean | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface DescribeStorageConfigurationResponse {
|
|
137
|
+
storageType: StorageType | undefined;
|
|
138
|
+
multiLayerStorage?: MultiLayerStorage | undefined;
|
|
139
|
+
disassociatedDataStorage?: DisassociatedDataStorageState | undefined;
|
|
140
|
+
retentionPeriod?: RetentionPeriod | undefined;
|
|
141
|
+
configurationStatus: ConfigurationStatus | undefined;
|
|
142
|
+
lastUpdateDate?: Date | undefined;
|
|
143
|
+
warmTier?: WarmTierState | undefined;
|
|
144
|
+
warmTierRetentionPeriod?: WarmTierRetentionPeriod | undefined;
|
|
145
|
+
disallowIngestNullNaN?: boolean | undefined;
|
|
146
|
+
}
|
|
147
|
+
export interface DescribeTaskRequest {
|
|
148
|
+
workspaceName: string | undefined;
|
|
149
|
+
taskName: string | undefined;
|
|
150
|
+
taskVersion?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface DescribeTaskResponse {
|
|
153
|
+
workspaceName: string | undefined;
|
|
154
|
+
taskName: string | undefined;
|
|
155
|
+
description?: string | undefined;
|
|
156
|
+
taskArn: string | undefined;
|
|
157
|
+
version: string | undefined;
|
|
158
|
+
taskConfiguration: TaskConfiguration | undefined;
|
|
159
|
+
status: ResourceStatus | undefined;
|
|
160
|
+
createdAt: Date | undefined;
|
|
161
|
+
updatedAt: Date | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface DescribeTimeSeriesRequest {
|
|
164
|
+
alias?: string | undefined;
|
|
165
|
+
assetId?: string | undefined;
|
|
166
|
+
propertyId?: string | undefined;
|
|
167
|
+
workspaceName?: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface DescribeTimeSeriesResponse {
|
|
170
|
+
assetId?: string | undefined;
|
|
171
|
+
propertyId?: string | undefined;
|
|
172
|
+
alias?: string | undefined;
|
|
173
|
+
timeSeriesId: string | undefined;
|
|
174
|
+
dataType: PropertyDataType | undefined;
|
|
175
|
+
dataTypeSpec?: string | undefined;
|
|
176
|
+
timeSeriesCreationDate: Date | undefined;
|
|
177
|
+
timeSeriesLastUpdateDate: Date | undefined;
|
|
178
|
+
timeSeriesArn: string | undefined;
|
|
179
|
+
workspaceName?: string | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface DescribeWorkspaceRequest {
|
|
182
|
+
workspaceName: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface WorkspaceEncryptionConfigurationInfo {
|
|
185
|
+
encryptionType: EncryptionType | undefined;
|
|
186
|
+
kmsKeyArn?: string | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface DescribeWorkspaceResponse {
|
|
189
|
+
workspaceArn: string | undefined;
|
|
190
|
+
workspaceName: string | undefined;
|
|
191
|
+
workspaceDescription?: string | undefined;
|
|
192
|
+
workspaceStatus: WorkspaceStatus | undefined;
|
|
193
|
+
encryptionConfiguration?: WorkspaceEncryptionConfigurationInfo | undefined;
|
|
194
|
+
createdAt: Date | undefined;
|
|
195
|
+
updatedAt: Date | undefined;
|
|
196
|
+
}
|
|
197
|
+
export interface DisassociateAssetsRequest {
|
|
198
|
+
assetId: string | undefined;
|
|
199
|
+
hierarchyId: string | undefined;
|
|
200
|
+
childAssetId: string | undefined;
|
|
201
|
+
clientToken?: string | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
204
|
+
alias: string | undefined;
|
|
205
|
+
assetId: string | undefined;
|
|
206
|
+
propertyId: string | undefined;
|
|
207
|
+
clientToken?: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
export interface ExecuteActionRequest {
|
|
210
|
+
targetResource: TargetResource | undefined;
|
|
211
|
+
actionDefinitionId: string | undefined;
|
|
212
|
+
actionPayload: ActionPayload | undefined;
|
|
213
|
+
clientToken?: string | undefined;
|
|
214
|
+
resolveTo?: ResolveTo | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface ExecuteActionResponse {
|
|
217
|
+
actionId: string | undefined;
|
|
218
|
+
}
|
|
219
|
+
export interface ExecuteQueryRequest {
|
|
220
|
+
queryStatement: string | undefined;
|
|
221
|
+
nextToken?: string | undefined;
|
|
222
|
+
maxResults?: number | undefined;
|
|
223
|
+
clientToken?: string | undefined;
|
|
224
|
+
}
|
|
225
|
+
export interface ColumnType {
|
|
226
|
+
scalarType?: ScalarType | undefined;
|
|
227
|
+
}
|
|
228
|
+
export interface ColumnInfo {
|
|
229
|
+
name?: string | undefined;
|
|
230
|
+
type?: ColumnType | undefined;
|
|
231
|
+
}
|
|
232
|
+
export interface GetAssetPropertyAggregatesRequest {
|
|
233
|
+
assetId?: string | undefined;
|
|
234
|
+
propertyId?: string | undefined;
|
|
235
|
+
propertyAlias?: string | undefined;
|
|
236
|
+
aggregateTypes: AggregateType[] | undefined;
|
|
237
|
+
resolution: string | undefined;
|
|
238
|
+
qualities?: Quality[] | undefined;
|
|
239
|
+
startDate: Date | undefined;
|
|
240
|
+
endDate: Date | undefined;
|
|
241
|
+
timeOrdering?: TimeOrdering | undefined;
|
|
242
|
+
nextToken?: string | undefined;
|
|
243
|
+
maxResults?: number | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface GetAssetPropertyAggregatesResponse {
|
|
246
|
+
aggregatedValues: AggregatedValue[] | undefined;
|
|
247
|
+
nextToken?: string | undefined;
|
|
248
|
+
}
|
|
249
|
+
export interface GetAssetPropertyValueRequest {
|
|
250
|
+
assetId?: string | undefined;
|
|
251
|
+
propertyId?: string | undefined;
|
|
252
|
+
propertyAlias?: string | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface GetAssetPropertyValueResponse {
|
|
255
|
+
propertyValue?: AssetPropertyValue | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface GetAssetPropertyValueHistoryRequest {
|
|
258
|
+
assetId?: string | undefined;
|
|
259
|
+
propertyId?: string | undefined;
|
|
260
|
+
propertyAlias?: string | undefined;
|
|
261
|
+
startDate?: Date | undefined;
|
|
262
|
+
endDate?: Date | undefined;
|
|
263
|
+
qualities?: Quality[] | undefined;
|
|
264
|
+
timeOrdering?: TimeOrdering | undefined;
|
|
265
|
+
nextToken?: string | undefined;
|
|
266
|
+
maxResults?: number | undefined;
|
|
267
|
+
}
|
|
268
|
+
export interface GetAssetPropertyValueHistoryResponse {
|
|
269
|
+
assetPropertyValueHistory: AssetPropertyValue[] | undefined;
|
|
270
|
+
nextToken?: string | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface GetCaptureDataRequest {
|
|
273
|
+
workspaceName: string | undefined;
|
|
274
|
+
startTime: TimeInNanos | undefined;
|
|
275
|
+
endTime: TimeInNanos | undefined;
|
|
276
|
+
timeSeriesId?: string | undefined;
|
|
277
|
+
propertyAlias?: string | undefined;
|
|
278
|
+
formatSettings?: FormatSettings | undefined;
|
|
279
|
+
nextToken?: string | undefined;
|
|
280
|
+
}
|
|
281
|
+
export interface GetCaptureDataResponse {
|
|
282
|
+
data: Uint8Array | undefined;
|
|
283
|
+
startTime: TimeInNanos | undefined;
|
|
284
|
+
endTime: TimeInNanos | undefined;
|
|
285
|
+
dataType: VideoDataType | undefined;
|
|
286
|
+
nextToken?: string | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface GetInterpolatedAssetPropertyValuesRequest {
|
|
289
|
+
assetId?: string | undefined;
|
|
290
|
+
propertyId?: string | undefined;
|
|
291
|
+
propertyAlias?: string | undefined;
|
|
292
|
+
startTimeInSeconds: number | undefined;
|
|
293
|
+
startTimeOffsetInNanos?: number | undefined;
|
|
294
|
+
endTimeInSeconds: number | undefined;
|
|
295
|
+
endTimeOffsetInNanos?: number | undefined;
|
|
296
|
+
quality: Quality | undefined;
|
|
297
|
+
intervalInSeconds: number | undefined;
|
|
298
|
+
nextToken?: string | undefined;
|
|
299
|
+
maxResults?: number | undefined;
|
|
300
|
+
type: string | undefined;
|
|
301
|
+
intervalWindowInSeconds?: number | undefined;
|
|
302
|
+
}
|
|
303
|
+
export interface InterpolatedAssetPropertyValue {
|
|
304
|
+
timestamp: TimeInNanos | undefined;
|
|
305
|
+
value: Variant | undefined;
|
|
306
|
+
}
|
|
307
|
+
export interface GetInterpolatedAssetPropertyValuesResponse {
|
|
308
|
+
interpolatedAssetPropertyValues: InterpolatedAssetPropertyValue[] | undefined;
|
|
309
|
+
nextToken?: string | undefined;
|
|
310
|
+
}
|
|
311
|
+
export interface GetQueryResultsRequest {
|
|
312
|
+
workspaceName: string | undefined;
|
|
313
|
+
queryId: string | undefined;
|
|
314
|
+
maxResults?: number | undefined;
|
|
315
|
+
nextToken?: string | undefined;
|
|
316
|
+
}
|
|
317
|
+
export interface ColumnInformation {
|
|
318
|
+
name: string | undefined;
|
|
319
|
+
type: string | undefined;
|
|
320
|
+
}
|
|
321
|
+
export interface GetQueryResultsResponse {
|
|
322
|
+
columnInfo?: ColumnInformation[] | undefined;
|
|
323
|
+
rows?: (string | null)[][] | undefined;
|
|
324
|
+
nextToken?: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface GetSearchResultsRequest {
|
|
327
|
+
searchId: string | undefined;
|
|
328
|
+
workspaceName: string | undefined;
|
|
329
|
+
maxResults?: number | undefined;
|
|
330
|
+
nextToken?: string | undefined;
|
|
331
|
+
}
|
|
332
|
+
export interface SearchResult {
|
|
333
|
+
searchId: string | undefined;
|
|
334
|
+
workspaceName: string | undefined;
|
|
335
|
+
datasetId: string | undefined;
|
|
336
|
+
timeSeriesId: string | undefined;
|
|
337
|
+
startTimestamp: TimeInNanos | undefined;
|
|
338
|
+
endTimestamp: TimeInNanos | undefined;
|
|
339
|
+
topTimestamp: TimeInNanos | undefined;
|
|
340
|
+
score: number | undefined;
|
|
341
|
+
}
|
|
342
|
+
export interface GetSearchResultsResponse {
|
|
343
|
+
searchResults: SearchResult[] | undefined;
|
|
344
|
+
nextToken?: string | undefined;
|
|
345
|
+
}
|
|
346
|
+
export interface InvokeAssistantRequest {
|
|
347
|
+
conversationId?: string | undefined;
|
|
348
|
+
message: string | undefined;
|
|
349
|
+
enableTrace?: boolean | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface Content {
|
|
352
|
+
text?: string | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface Location {
|
|
355
|
+
uri?: string | undefined;
|
|
356
|
+
}
|
|
357
|
+
export interface Source {
|
|
358
|
+
arn?: string | undefined;
|
|
359
|
+
location?: Location | undefined;
|
|
360
|
+
}
|
|
361
|
+
export interface DataSetReference {
|
|
362
|
+
datasetArn?: string | undefined;
|
|
363
|
+
source?: Source | undefined;
|
|
364
|
+
}
|
|
365
|
+
export interface Reference {
|
|
366
|
+
dataset?: DataSetReference | undefined;
|
|
367
|
+
}
|
|
368
|
+
export interface Citation {
|
|
369
|
+
reference?: Reference | undefined;
|
|
370
|
+
content?: Content | undefined;
|
|
371
|
+
}
|
|
372
|
+
export interface InvocationOutput {
|
|
373
|
+
message?: string | undefined;
|
|
374
|
+
citations?: Citation[] | undefined;
|
|
375
|
+
}
|
|
376
|
+
export interface Trace {
|
|
377
|
+
text?: string | undefined;
|
|
378
|
+
}
|
|
379
|
+
export type ResponseStream =
|
|
380
|
+
| ResponseStream.AccessDeniedExceptionMember
|
|
381
|
+
| ResponseStream.ConflictingOperationExceptionMember
|
|
382
|
+
| ResponseStream.InternalFailureExceptionMember
|
|
383
|
+
| ResponseStream.InvalidRequestExceptionMember
|
|
384
|
+
| ResponseStream.LimitExceededExceptionMember
|
|
385
|
+
| ResponseStream.OutputMember
|
|
386
|
+
| ResponseStream.ResourceNotFoundExceptionMember
|
|
387
|
+
| ResponseStream.ThrottlingExceptionMember
|
|
388
|
+
| ResponseStream.TraceMember
|
|
389
|
+
| ResponseStream.$UnknownMember;
|
|
390
|
+
export declare namespace ResponseStream {
|
|
391
|
+
interface TraceMember {
|
|
392
|
+
trace: Trace;
|
|
393
|
+
output?: never;
|
|
394
|
+
accessDeniedException?: never;
|
|
395
|
+
conflictingOperationException?: never;
|
|
396
|
+
internalFailureException?: never;
|
|
397
|
+
invalidRequestException?: never;
|
|
398
|
+
limitExceededException?: never;
|
|
399
|
+
resourceNotFoundException?: never;
|
|
400
|
+
throttlingException?: never;
|
|
401
|
+
$unknown?: never;
|
|
402
|
+
}
|
|
403
|
+
interface OutputMember {
|
|
404
|
+
trace?: never;
|
|
405
|
+
output: InvocationOutput;
|
|
406
|
+
accessDeniedException?: never;
|
|
407
|
+
conflictingOperationException?: never;
|
|
408
|
+
internalFailureException?: never;
|
|
409
|
+
invalidRequestException?: never;
|
|
410
|
+
limitExceededException?: never;
|
|
411
|
+
resourceNotFoundException?: never;
|
|
412
|
+
throttlingException?: never;
|
|
413
|
+
$unknown?: never;
|
|
414
|
+
}
|
|
415
|
+
interface AccessDeniedExceptionMember {
|
|
416
|
+
trace?: never;
|
|
417
|
+
output?: never;
|
|
418
|
+
accessDeniedException: AccessDeniedException;
|
|
419
|
+
conflictingOperationException?: never;
|
|
420
|
+
internalFailureException?: never;
|
|
421
|
+
invalidRequestException?: never;
|
|
422
|
+
limitExceededException?: never;
|
|
423
|
+
resourceNotFoundException?: never;
|
|
424
|
+
throttlingException?: never;
|
|
425
|
+
$unknown?: never;
|
|
426
|
+
}
|
|
427
|
+
interface ConflictingOperationExceptionMember {
|
|
428
|
+
trace?: never;
|
|
429
|
+
output?: never;
|
|
430
|
+
accessDeniedException?: never;
|
|
431
|
+
conflictingOperationException: ConflictingOperationException;
|
|
432
|
+
internalFailureException?: never;
|
|
433
|
+
invalidRequestException?: never;
|
|
434
|
+
limitExceededException?: never;
|
|
435
|
+
resourceNotFoundException?: never;
|
|
436
|
+
throttlingException?: never;
|
|
437
|
+
$unknown?: never;
|
|
438
|
+
}
|
|
439
|
+
interface InternalFailureExceptionMember {
|
|
440
|
+
trace?: never;
|
|
441
|
+
output?: never;
|
|
442
|
+
accessDeniedException?: never;
|
|
443
|
+
conflictingOperationException?: never;
|
|
444
|
+
internalFailureException: InternalFailureException;
|
|
445
|
+
invalidRequestException?: never;
|
|
446
|
+
limitExceededException?: never;
|
|
447
|
+
resourceNotFoundException?: never;
|
|
448
|
+
throttlingException?: never;
|
|
449
|
+
$unknown?: never;
|
|
450
|
+
}
|
|
451
|
+
interface InvalidRequestExceptionMember {
|
|
452
|
+
trace?: never;
|
|
453
|
+
output?: never;
|
|
454
|
+
accessDeniedException?: never;
|
|
455
|
+
conflictingOperationException?: never;
|
|
456
|
+
internalFailureException?: never;
|
|
457
|
+
invalidRequestException: InvalidRequestException;
|
|
458
|
+
limitExceededException?: never;
|
|
459
|
+
resourceNotFoundException?: never;
|
|
460
|
+
throttlingException?: never;
|
|
461
|
+
$unknown?: never;
|
|
462
|
+
}
|
|
463
|
+
interface LimitExceededExceptionMember {
|
|
464
|
+
trace?: never;
|
|
465
|
+
output?: never;
|
|
466
|
+
accessDeniedException?: never;
|
|
467
|
+
conflictingOperationException?: never;
|
|
468
|
+
internalFailureException?: never;
|
|
469
|
+
invalidRequestException?: never;
|
|
470
|
+
limitExceededException: LimitExceededException;
|
|
471
|
+
resourceNotFoundException?: never;
|
|
472
|
+
throttlingException?: never;
|
|
473
|
+
$unknown?: never;
|
|
474
|
+
}
|
|
475
|
+
interface ResourceNotFoundExceptionMember {
|
|
476
|
+
trace?: never;
|
|
477
|
+
output?: never;
|
|
478
|
+
accessDeniedException?: never;
|
|
479
|
+
conflictingOperationException?: never;
|
|
480
|
+
internalFailureException?: never;
|
|
481
|
+
invalidRequestException?: never;
|
|
482
|
+
limitExceededException?: never;
|
|
483
|
+
resourceNotFoundException: ResourceNotFoundException;
|
|
484
|
+
throttlingException?: never;
|
|
485
|
+
$unknown?: never;
|
|
486
|
+
}
|
|
487
|
+
interface ThrottlingExceptionMember {
|
|
488
|
+
trace?: never;
|
|
489
|
+
output?: never;
|
|
490
|
+
accessDeniedException?: never;
|
|
491
|
+
conflictingOperationException?: never;
|
|
492
|
+
internalFailureException?: never;
|
|
493
|
+
invalidRequestException?: never;
|
|
494
|
+
limitExceededException?: never;
|
|
495
|
+
resourceNotFoundException?: never;
|
|
496
|
+
throttlingException: ThrottlingException;
|
|
497
|
+
$unknown?: never;
|
|
498
|
+
}
|
|
499
|
+
interface $UnknownMember {
|
|
500
|
+
trace?: never;
|
|
501
|
+
output?: never;
|
|
502
|
+
accessDeniedException?: never;
|
|
503
|
+
conflictingOperationException?: never;
|
|
504
|
+
internalFailureException?: never;
|
|
505
|
+
invalidRequestException?: never;
|
|
506
|
+
limitExceededException?: never;
|
|
507
|
+
resourceNotFoundException?: never;
|
|
508
|
+
throttlingException?: never;
|
|
509
|
+
$unknown: [string, any];
|
|
510
|
+
}
|
|
511
|
+
interface Visitor<T> {
|
|
512
|
+
trace: (value: Trace) => T;
|
|
513
|
+
output: (value: InvocationOutput) => T;
|
|
514
|
+
accessDeniedException: (value: AccessDeniedException) => T;
|
|
515
|
+
conflictingOperationException: (value: ConflictingOperationException) => T;
|
|
516
|
+
internalFailureException: (value: InternalFailureException) => T;
|
|
517
|
+
invalidRequestException: (value: InvalidRequestException) => T;
|
|
518
|
+
limitExceededException: (value: LimitExceededException) => T;
|
|
519
|
+
resourceNotFoundException: (value: ResourceNotFoundException) => T;
|
|
520
|
+
throttlingException: (value: ThrottlingException) => T;
|
|
521
|
+
_: (name: string, value: any) => T;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
export interface InvokeAssistantResponse {
|
|
525
|
+
body: AsyncIterable<ResponseStream> | undefined;
|
|
526
|
+
conversationId: string | undefined;
|
|
527
|
+
}
|
|
528
|
+
export interface ListAccessPoliciesRequest {
|
|
529
|
+
identityType?: IdentityType | undefined;
|
|
530
|
+
identityId?: string | undefined;
|
|
531
|
+
resourceType?: ResourceType | undefined;
|
|
532
|
+
resourceId?: string | undefined;
|
|
533
|
+
iamArn?: string | undefined;
|
|
534
|
+
nextToken?: string | undefined;
|
|
535
|
+
maxResults?: number | undefined;
|
|
536
|
+
}
|
|
537
|
+
export interface ListAccessPoliciesResponse {
|
|
538
|
+
accessPolicySummaries: AccessPolicySummary[] | undefined;
|
|
539
|
+
nextToken?: string | undefined;
|
|
540
|
+
}
|
|
541
|
+
export interface ListActionsRequest {
|
|
542
|
+
targetResourceType: TargetResourceType | undefined;
|
|
543
|
+
targetResourceId: string | undefined;
|
|
544
|
+
nextToken?: string | undefined;
|
|
545
|
+
maxResults?: number | undefined;
|
|
546
|
+
resolveToResourceType?: ResolveToResourceType | undefined;
|
|
547
|
+
resolveToResourceId?: string | undefined;
|
|
548
|
+
}
|
|
549
|
+
export interface ListActionsResponse {
|
|
550
|
+
actionSummaries: ActionSummary[] | undefined;
|
|
551
|
+
nextToken: string | undefined;
|
|
552
|
+
}
|
|
553
|
+
export interface ListApplicationsRequest {
|
|
554
|
+
maxResults?: number | undefined;
|
|
555
|
+
nextToken?: string | undefined;
|
|
556
|
+
}
|
|
557
|
+
export interface ListApplicationsResponse {
|
|
558
|
+
nextToken?: string | undefined;
|
|
559
|
+
applications: ApplicationSummary[] | undefined;
|
|
560
|
+
}
|
|
561
|
+
export interface ListAssetModelCompositeModelsRequest {
|
|
562
|
+
assetModelId: string | undefined;
|
|
563
|
+
nextToken?: string | undefined;
|
|
564
|
+
maxResults?: number | undefined;
|
|
565
|
+
assetModelVersion?: string | undefined;
|
|
566
|
+
}
|
|
567
|
+
export interface ListAssetModelCompositeModelsResponse {
|
|
568
|
+
assetModelCompositeModelSummaries: AssetModelCompositeModelSummary[] | undefined;
|
|
569
|
+
nextToken?: string | undefined;
|
|
570
|
+
}
|
|
571
|
+
export interface ListAssetModelPropertiesRequest {
|
|
572
|
+
assetModelId: string | undefined;
|
|
573
|
+
nextToken?: string | undefined;
|
|
574
|
+
maxResults?: number | undefined;
|
|
575
|
+
filter?: ListAssetModelPropertiesFilter | undefined;
|
|
576
|
+
assetModelVersion?: string | undefined;
|
|
577
|
+
}
|
|
578
|
+
export interface ListAssetModelPropertiesResponse {
|
|
579
|
+
assetModelPropertySummaries: AssetModelPropertySummary[] | undefined;
|
|
580
|
+
nextToken?: string | undefined;
|
|
581
|
+
}
|
|
582
|
+
export interface ListAssetModelsRequest {
|
|
583
|
+
assetModelTypes?: AssetModelType[] | undefined;
|
|
584
|
+
nextToken?: string | undefined;
|
|
585
|
+
maxResults?: number | undefined;
|
|
586
|
+
assetModelVersion?: string | undefined;
|
|
587
|
+
}
|
|
588
|
+
export interface ListAssetModelsResponse {
|
|
589
|
+
assetModelSummaries: AssetModelSummary[] | undefined;
|
|
590
|
+
nextToken?: string | undefined;
|
|
591
|
+
}
|
|
592
|
+
export interface ListAssetPropertiesRequest {
|
|
593
|
+
assetId: string | undefined;
|
|
594
|
+
nextToken?: string | undefined;
|
|
595
|
+
maxResults?: number | undefined;
|
|
596
|
+
filter?: ListAssetPropertiesFilter | undefined;
|
|
597
|
+
}
|
|
598
|
+
export interface ListAssetPropertiesResponse {
|
|
599
|
+
assetPropertySummaries: AssetPropertySummary[] | undefined;
|
|
600
|
+
nextToken?: string | undefined;
|
|
601
|
+
}
|
|
602
|
+
export interface ListAssetRelationshipsRequest {
|
|
603
|
+
assetId: string | undefined;
|
|
604
|
+
traversalType: TraversalType | undefined;
|
|
605
|
+
nextToken?: string | undefined;
|
|
606
|
+
maxResults?: number | undefined;
|
|
607
|
+
}
|
|
608
|
+
export interface ListAssetRelationshipsResponse {
|
|
609
|
+
assetRelationshipSummaries: AssetRelationshipSummary[] | undefined;
|
|
610
|
+
nextToken?: string | undefined;
|
|
611
|
+
}
|
|
612
|
+
export interface ListAssetsRequest {
|
|
613
|
+
nextToken?: string | undefined;
|
|
614
|
+
maxResults?: number | undefined;
|
|
615
|
+
assetModelId?: string | undefined;
|
|
616
|
+
filter?: ListAssetsFilter | undefined;
|
|
617
|
+
}
|
|
618
|
+
export interface ListAssetsResponse {
|
|
619
|
+
assetSummaries: AssetSummary[] | undefined;
|
|
620
|
+
nextToken?: string | undefined;
|
|
621
|
+
}
|
|
622
|
+
export interface ListAssociatedAssetsRequest {
|
|
623
|
+
assetId: string | undefined;
|
|
624
|
+
hierarchyId?: string | undefined;
|
|
625
|
+
traversalDirection?: TraversalDirection | undefined;
|
|
626
|
+
nextToken?: string | undefined;
|
|
627
|
+
maxResults?: number | undefined;
|
|
628
|
+
}
|
|
629
|
+
export interface ListAssociatedAssetsResponse {
|
|
630
|
+
assetSummaries: AssociatedAssetsSummary[] | undefined;
|
|
631
|
+
nextToken?: string | undefined;
|
|
632
|
+
}
|
|
633
|
+
export interface ListBulkImportJobsRequest {
|
|
634
|
+
nextToken?: string | undefined;
|
|
635
|
+
maxResults?: number | undefined;
|
|
636
|
+
filter?: ListBulkImportJobsFilter | undefined;
|
|
637
|
+
workspaceName?: string | undefined;
|
|
638
|
+
}
|
|
639
|
+
export interface JobSummary {
|
|
640
|
+
id: string | undefined;
|
|
641
|
+
name: string | undefined;
|
|
642
|
+
status: JobStatus | undefined;
|
|
643
|
+
}
|
|
644
|
+
export interface ListBulkImportJobsResponse {
|
|
645
|
+
jobSummaries: JobSummary[] | undefined;
|
|
646
|
+
nextToken?: string | undefined;
|
|
647
|
+
}
|
|
648
|
+
export interface ListCompositionRelationshipsRequest {
|
|
649
|
+
assetModelId: string | undefined;
|
|
650
|
+
nextToken?: string | undefined;
|
|
651
|
+
maxResults?: number | undefined;
|
|
652
|
+
}
|
|
653
|
+
export interface CompositionRelationshipSummary {
|
|
654
|
+
assetModelId: string | undefined;
|
|
655
|
+
assetModelCompositeModelId: string | undefined;
|
|
656
|
+
assetModelCompositeModelType: string | undefined;
|
|
657
|
+
}
|
|
658
|
+
export interface ListCompositionRelationshipsResponse {
|
|
659
|
+
compositionRelationshipSummaries: CompositionRelationshipSummary[] | undefined;
|
|
660
|
+
nextToken?: string | undefined;
|
|
661
|
+
}
|
|
662
|
+
export interface DataBindingValueFilter {
|
|
663
|
+
asset?: AssetBindingValueFilter | undefined;
|
|
664
|
+
assetModel?: AssetModelBindingValueFilter | undefined;
|
|
665
|
+
assetProperty?: AssetPropertyBindingValueFilter | undefined;
|
|
666
|
+
assetModelProperty?: AssetModelPropertyBindingValueFilter | undefined;
|
|
667
|
+
}
|
|
668
|
+
export interface ListComputationModelDataBindingUsagesRequest {
|
|
669
|
+
dataBindingValueFilter: DataBindingValueFilter | undefined;
|
|
670
|
+
nextToken?: string | undefined;
|
|
671
|
+
maxResults?: number | undefined;
|
|
672
|
+
}
|
|
673
|
+
export interface DataBindingValue {
|
|
674
|
+
assetModelProperty?: AssetModelPropertyBindingValue | undefined;
|
|
675
|
+
assetProperty?: AssetPropertyBindingValue | undefined;
|
|
676
|
+
}
|
|
677
|
+
export interface MatchedDataBinding {
|
|
678
|
+
value: DataBindingValue | undefined;
|
|
679
|
+
}
|
|
680
|
+
export interface ComputationModelDataBindingUsageSummary {
|
|
681
|
+
computationModelIds: string[] | undefined;
|
|
682
|
+
matchedDataBinding: MatchedDataBinding | undefined;
|
|
683
|
+
}
|
|
684
|
+
export interface ListComputationModelDataBindingUsagesResponse {
|
|
685
|
+
dataBindingUsageSummaries: ComputationModelDataBindingUsageSummary[] | undefined;
|
|
686
|
+
nextToken?: string | undefined;
|
|
687
|
+
}
|
|
688
|
+
export interface ListComputationModelResolveToResourcesRequest {
|
|
689
|
+
computationModelId: string | undefined;
|
|
690
|
+
nextToken?: string | undefined;
|
|
691
|
+
maxResults?: number | undefined;
|
|
692
|
+
}
|
|
693
|
+
export interface ComputationModelResolveToResourceSummary {
|
|
694
|
+
resolveTo?: ResolveTo | undefined;
|
|
695
|
+
}
|
|
696
|
+
export interface ListComputationModelResolveToResourcesResponse {
|
|
697
|
+
computationModelResolveToResourceSummaries:
|
|
698
|
+
| ComputationModelResolveToResourceSummary[]
|
|
699
|
+
| undefined;
|
|
700
|
+
nextToken?: string | undefined;
|
|
701
|
+
}
|
|
702
|
+
export interface ListComputationModelsRequest {
|
|
703
|
+
computationModelType?: ComputationModelType | undefined;
|
|
704
|
+
nextToken?: string | undefined;
|
|
705
|
+
maxResults?: number | undefined;
|
|
706
|
+
}
|
|
707
|
+
export interface ComputationModelSummary {
|
|
708
|
+
id: string | undefined;
|
|
709
|
+
arn: string | undefined;
|
|
710
|
+
name: string | undefined;
|
|
711
|
+
description?: string | undefined;
|
|
712
|
+
type: ComputationModelType | undefined;
|
|
713
|
+
creationDate: Date | undefined;
|
|
714
|
+
lastUpdateDate: Date | undefined;
|
|
715
|
+
status: ComputationModelStatus | undefined;
|
|
716
|
+
version: string | undefined;
|
|
717
|
+
}
|
|
718
|
+
export interface ListComputationModelsResponse {
|
|
719
|
+
computationModelSummaries: ComputationModelSummary[] | undefined;
|
|
720
|
+
nextToken?: string | undefined;
|
|
721
|
+
}
|
|
722
|
+
export interface ListDashboardsRequest {
|
|
723
|
+
projectId: string | undefined;
|
|
724
|
+
nextToken?: string | undefined;
|
|
725
|
+
maxResults?: number | undefined;
|
|
726
|
+
}
|
|
727
|
+
export interface DashboardSummary {
|
|
728
|
+
id: string | undefined;
|
|
729
|
+
name: string | undefined;
|
|
730
|
+
description?: string | undefined;
|
|
731
|
+
creationDate?: Date | undefined;
|
|
732
|
+
lastUpdateDate?: Date | undefined;
|
|
733
|
+
}
|
|
734
|
+
export interface ListDashboardsResponse {
|
|
735
|
+
dashboardSummaries: DashboardSummary[] | undefined;
|
|
736
|
+
nextToken?: string | undefined;
|
|
737
|
+
}
|
|
738
|
+
export interface ListDatasetDataSegmentRelationshipsRequest {
|
|
739
|
+
datasetId: string | undefined;
|
|
740
|
+
workspaceName: string | undefined;
|
|
741
|
+
maxResults?: number | undefined;
|
|
742
|
+
nextToken?: string | undefined;
|
|
743
|
+
}
|
|
744
|
+
export interface DataSegmentRelationshipSummary {
|
|
745
|
+
targetDatasetId: string | undefined;
|
|
746
|
+
sourceDatasetId: string | undefined;
|
|
747
|
+
timeSeriesId: string | undefined;
|
|
748
|
+
startTimestamp: TimeInNanos | undefined;
|
|
749
|
+
endTimestamp: TimeInNanos | undefined;
|
|
750
|
+
}
|
|
751
|
+
export interface ListDatasetDataSegmentRelationshipsResponse {
|
|
752
|
+
dataSegmentRelationshipSummaries: DataSegmentRelationshipSummary[] | undefined;
|
|
753
|
+
nextToken?: string | undefined;
|
|
754
|
+
}
|
|
755
|
+
export interface ListDatasetDataSegmentsRequest {
|
|
756
|
+
datasetId: string | undefined;
|
|
757
|
+
workspaceName: string | undefined;
|
|
758
|
+
datasetVersion?: string | undefined;
|
|
759
|
+
maxResults?: number | undefined;
|
|
760
|
+
nextToken?: string | undefined;
|
|
761
|
+
}
|
|
762
|
+
export interface DataSegmentEnrichment {
|
|
763
|
+
status: EnrichmentStatus | undefined;
|
|
764
|
+
lastEnrichedAt?: Date | undefined;
|
|
765
|
+
}
|
|
766
|
+
export interface DataSegmentSummary {
|
|
767
|
+
sourceDatasetId: string | undefined;
|
|
768
|
+
timeSeriesId: string | undefined;
|
|
769
|
+
startTimestamp: TimeInNanos | undefined;
|
|
770
|
+
endTimestamp: TimeInNanos | undefined;
|
|
771
|
+
alias: string | undefined;
|
|
772
|
+
dataType: PropertyDataType | undefined;
|
|
773
|
+
enrichment?: DataSegmentEnrichment | undefined;
|
|
774
|
+
}
|
|
775
|
+
export interface ListDatasetDataSegmentsResponse {
|
|
776
|
+
dataSegments: DataSegmentSummary[] | undefined;
|
|
777
|
+
nextToken?: string | undefined;
|
|
778
|
+
}
|
|
779
|
+
export interface ListDatasetExportJobsRequest {
|
|
780
|
+
workspaceName: string | undefined;
|
|
781
|
+
filter?: DatasetExportJobFilter | undefined;
|
|
782
|
+
maxResults?: number | undefined;
|
|
783
|
+
nextToken?: string | undefined;
|
|
784
|
+
}
|
|
785
|
+
export interface ExportJobSummary {
|
|
786
|
+
jobId: string | undefined;
|
|
787
|
+
status: DatasetExportJobStatus | undefined;
|
|
788
|
+
startedAt: Date | undefined;
|
|
789
|
+
completedAt?: Date | undefined;
|
|
790
|
+
destinationS3Uri: string | undefined;
|
|
791
|
+
}
|
|
792
|
+
export interface ListDatasetExportJobsResponse {
|
|
793
|
+
jobs: ExportJobSummary[] | undefined;
|
|
794
|
+
nextToken?: string | undefined;
|
|
795
|
+
}
|
|
796
|
+
export interface ListDatasetsRequest {
|
|
797
|
+
sourceType: DatasetSourceType | undefined;
|
|
798
|
+
workspaceName?: string | undefined;
|
|
799
|
+
datasetType?: DatasetTypeEnum | undefined;
|
|
800
|
+
nextToken?: string | undefined;
|
|
801
|
+
maxResults?: number | undefined;
|
|
802
|
+
}
|
|
803
|
+
export interface DatasetSummary {
|
|
804
|
+
id: string | undefined;
|
|
805
|
+
arn: string | undefined;
|
|
806
|
+
name: string | undefined;
|
|
807
|
+
description: string | undefined;
|
|
808
|
+
sourceType?: DatasetSourceType | undefined;
|
|
809
|
+
datasetType?: DatasetTypeEnum | undefined;
|
|
810
|
+
creationDate: Date | undefined;
|
|
811
|
+
lastUpdateDate: Date | undefined;
|
|
812
|
+
status: DatasetStatus | undefined;
|
|
813
|
+
enrichmentStatus?: DatasetEnrichment | undefined;
|
|
814
|
+
}
|
|
815
|
+
export interface ListDatasetsResponse {
|
|
816
|
+
datasetSummaries: DatasetSummary[] | undefined;
|
|
817
|
+
nextToken?: string | undefined;
|
|
818
|
+
workspaceName?: string | undefined;
|
|
819
|
+
}
|
|
820
|
+
export interface ListEnrichmentJobsRequest {
|
|
821
|
+
workspaceName: string | undefined;
|
|
822
|
+
datasetId?: string | undefined;
|
|
823
|
+
propertyAlias?: string | undefined;
|
|
824
|
+
timeSeriesId?: string | undefined;
|
|
825
|
+
status?: EnrichmentJobStatus | undefined;
|
|
826
|
+
jobType?: JobType | undefined;
|
|
827
|
+
startDate?: Date | undefined;
|
|
828
|
+
endDate?: Date | undefined;
|
|
829
|
+
maxResults?: number | undefined;
|
|
830
|
+
nextToken?: string | undefined;
|
|
831
|
+
}
|
|
832
|
+
export interface EnrichmentJobSummary {
|
|
833
|
+
jobId: string | undefined;
|
|
834
|
+
status: EnrichmentJobStatus | undefined;
|
|
835
|
+
workspaceName: string | undefined;
|
|
836
|
+
jobType: JobType | undefined;
|
|
837
|
+
datasetId: string | undefined;
|
|
838
|
+
propertyAlias?: string | undefined;
|
|
839
|
+
timeSeriesId?: string | undefined;
|
|
840
|
+
createdAt: Date | undefined;
|
|
841
|
+
updatedAt?: Date | undefined;
|
|
842
|
+
}
|
|
843
|
+
export interface ListEnrichmentJobsResponse {
|
|
844
|
+
jobs: EnrichmentJobSummary[] | undefined;
|
|
845
|
+
nextToken?: string | undefined;
|
|
846
|
+
}
|
|
847
|
+
export interface ListExecutionsRequest {
|
|
848
|
+
targetResourceType: TargetResourceType | undefined;
|
|
849
|
+
targetResourceId: string | undefined;
|
|
850
|
+
resolveToResourceType?: ResolveToResourceType | undefined;
|
|
851
|
+
resolveToResourceId?: string | undefined;
|
|
852
|
+
nextToken?: string | undefined;
|
|
853
|
+
maxResults?: number | undefined;
|
|
854
|
+
actionType?: string | undefined;
|
|
855
|
+
}
|
|
856
|
+
export interface ExecutionSummary {
|
|
857
|
+
executionId: string | undefined;
|
|
858
|
+
actionType?: string | undefined;
|
|
859
|
+
targetResource: TargetResource | undefined;
|
|
860
|
+
targetResourceVersion: string | undefined;
|
|
861
|
+
resolveTo?: ResolveTo | undefined;
|
|
862
|
+
executionStartTime: Date | undefined;
|
|
863
|
+
executionEndTime?: Date | undefined;
|
|
864
|
+
executionStatus: ExecutionStatus | undefined;
|
|
865
|
+
executionEntityVersion?: string | undefined;
|
|
866
|
+
}
|
|
867
|
+
export interface ListExecutionsResponse {
|
|
868
|
+
executionSummaries: ExecutionSummary[] | undefined;
|
|
869
|
+
nextToken?: string | undefined;
|
|
870
|
+
}
|
|
871
|
+
export interface ListGatewaysRequest {
|
|
872
|
+
nextToken?: string | undefined;
|
|
873
|
+
maxResults?: number | undefined;
|
|
874
|
+
}
|
|
875
|
+
export interface GatewaySummary {
|
|
876
|
+
gatewayId: string | undefined;
|
|
877
|
+
gatewayName: string | undefined;
|
|
878
|
+
gatewayPlatform?: GatewayPlatform | undefined;
|
|
879
|
+
gatewayVersion?: string | undefined;
|
|
880
|
+
gatewayCapabilitySummaries?: GatewayCapabilitySummary[] | undefined;
|
|
881
|
+
creationDate: Date | undefined;
|
|
882
|
+
lastUpdateDate: Date | undefined;
|
|
883
|
+
}
|
|
884
|
+
export interface ListGatewaysResponse {
|
|
885
|
+
gatewaySummaries: GatewaySummary[] | undefined;
|
|
886
|
+
nextToken?: string | undefined;
|
|
887
|
+
}
|
|
42
888
|
export interface ListInterfaceRelationshipsRequest {
|
|
43
889
|
interfaceAssetModelId: string | undefined;
|
|
44
890
|
nextToken?: string | undefined;
|
|
@@ -51,6 +897,47 @@ export interface ListInterfaceRelationshipsResponse {
|
|
|
51
897
|
interfaceRelationshipSummaries: InterfaceRelationshipSummary[] | undefined;
|
|
52
898
|
nextToken?: string | undefined;
|
|
53
899
|
}
|
|
900
|
+
export interface ListPipelineExecutionsRequest {
|
|
901
|
+
workspaceName: string | undefined;
|
|
902
|
+
pipelineName: string | undefined;
|
|
903
|
+
nextToken?: string | undefined;
|
|
904
|
+
maxResults?: number | undefined;
|
|
905
|
+
state?: PipelineExecutionState | undefined;
|
|
906
|
+
startTimeAfter?: Date | undefined;
|
|
907
|
+
startTimeBefore?: Date | undefined;
|
|
908
|
+
endTimeAfter?: Date | undefined;
|
|
909
|
+
endTimeBefore?: Date | undefined;
|
|
910
|
+
}
|
|
911
|
+
export interface PipelineExecutionSummary {
|
|
912
|
+
pipelineExecutionId: string | undefined;
|
|
913
|
+
pipelineVersion: string | undefined;
|
|
914
|
+
status: PipelineExecutionStatus | undefined;
|
|
915
|
+
executionPriority?: number | undefined;
|
|
916
|
+
startTime?: Date | undefined;
|
|
917
|
+
endTime?: Date | undefined;
|
|
918
|
+
}
|
|
919
|
+
export interface ListPipelineExecutionsResponse {
|
|
920
|
+
pipelineExecutionSummaries: PipelineExecutionSummary[] | undefined;
|
|
921
|
+
nextToken?: string | undefined;
|
|
922
|
+
}
|
|
923
|
+
export interface ListPipelinesRequest {
|
|
924
|
+
workspaceName: string | undefined;
|
|
925
|
+
nextToken?: string | undefined;
|
|
926
|
+
maxResults?: number | undefined;
|
|
927
|
+
}
|
|
928
|
+
export interface PipelineSummary {
|
|
929
|
+
pipelineName: string | undefined;
|
|
930
|
+
description?: string | undefined;
|
|
931
|
+
pipelineArn: string | undefined;
|
|
932
|
+
version: string | undefined;
|
|
933
|
+
status: ResourceStatus | undefined;
|
|
934
|
+
createdAt: Date | undefined;
|
|
935
|
+
updatedAt: Date | undefined;
|
|
936
|
+
}
|
|
937
|
+
export interface ListPipelinesResponse {
|
|
938
|
+
pipelineSummaries: PipelineSummary[] | undefined;
|
|
939
|
+
nextToken?: string | undefined;
|
|
940
|
+
}
|
|
54
941
|
export interface ListPortalsRequest {
|
|
55
942
|
nextToken?: string | undefined;
|
|
56
943
|
maxResults?: number | undefined;
|
|
@@ -95,18 +982,80 @@ export interface ListProjectsResponse {
|
|
|
95
982
|
projectSummaries: ProjectSummary[] | undefined;
|
|
96
983
|
nextToken?: string | undefined;
|
|
97
984
|
}
|
|
985
|
+
export interface ListQueriesRequest {
|
|
986
|
+
workspaceName: string | undefined;
|
|
987
|
+
filter?: string | undefined;
|
|
988
|
+
maxResults?: number | undefined;
|
|
989
|
+
nextToken?: string | undefined;
|
|
990
|
+
}
|
|
991
|
+
export interface QuerySummary {
|
|
992
|
+
queryId: string | undefined;
|
|
993
|
+
status: QueryStatus | undefined;
|
|
994
|
+
submittedAt: Date | undefined;
|
|
995
|
+
completedAt?: Date | undefined;
|
|
996
|
+
}
|
|
997
|
+
export interface ListQueriesResponse {
|
|
998
|
+
queries: QuerySummary[] | undefined;
|
|
999
|
+
nextToken?: string | undefined;
|
|
1000
|
+
}
|
|
1001
|
+
export interface ListSearchesFilters {
|
|
1002
|
+
statusFilter?: SearchStatus[] | undefined;
|
|
1003
|
+
startedAfter?: Date | undefined;
|
|
1004
|
+
startedBefore?: Date | undefined;
|
|
1005
|
+
groupIdFilter?: string[] | undefined;
|
|
1006
|
+
searchTypeFilter?: SearchType[] | undefined;
|
|
1007
|
+
}
|
|
1008
|
+
export interface ListSearchesRequest {
|
|
1009
|
+
workspaceName: string | undefined;
|
|
1010
|
+
maxResults?: number | undefined;
|
|
1011
|
+
nextToken?: string | undefined;
|
|
1012
|
+
listSearchesFilters?: ListSearchesFilters | undefined;
|
|
1013
|
+
}
|
|
1014
|
+
export interface SearchSummary {
|
|
1015
|
+
searchId: string | undefined;
|
|
1016
|
+
workspaceName: string | undefined;
|
|
1017
|
+
status: SearchStatus | undefined;
|
|
1018
|
+
queryStatement: string | undefined;
|
|
1019
|
+
searchType: SearchType | undefined;
|
|
1020
|
+
statusReason?: string | undefined;
|
|
1021
|
+
startedAt?: Date | undefined;
|
|
1022
|
+
groupId?: string | undefined;
|
|
1023
|
+
}
|
|
1024
|
+
export interface ListSearchesResponse {
|
|
1025
|
+
searchSummaries: SearchSummary[] | undefined;
|
|
1026
|
+
nextToken?: string | undefined;
|
|
1027
|
+
}
|
|
98
1028
|
export interface ListTagsForResourceRequest {
|
|
99
1029
|
resourceArn: string | undefined;
|
|
100
1030
|
}
|
|
101
1031
|
export interface ListTagsForResourceResponse {
|
|
102
1032
|
tags?: Record<string, string> | undefined;
|
|
103
1033
|
}
|
|
1034
|
+
export interface ListTasksRequest {
|
|
1035
|
+
workspaceName: string | undefined;
|
|
1036
|
+
nextToken?: string | undefined;
|
|
1037
|
+
maxResults?: number | undefined;
|
|
1038
|
+
}
|
|
1039
|
+
export interface TaskSummary {
|
|
1040
|
+
taskName: string | undefined;
|
|
1041
|
+
description?: string | undefined;
|
|
1042
|
+
taskArn: string | undefined;
|
|
1043
|
+
version: string | undefined;
|
|
1044
|
+
status: ResourceStatus | undefined;
|
|
1045
|
+
createdAt: Date | undefined;
|
|
1046
|
+
updatedAt: Date | undefined;
|
|
1047
|
+
}
|
|
1048
|
+
export interface ListTasksResponse {
|
|
1049
|
+
taskSummaries: TaskSummary[] | undefined;
|
|
1050
|
+
nextToken?: string | undefined;
|
|
1051
|
+
}
|
|
104
1052
|
export interface ListTimeSeriesRequest {
|
|
105
1053
|
nextToken?: string | undefined;
|
|
106
1054
|
maxResults?: number | undefined;
|
|
107
1055
|
assetId?: string | undefined;
|
|
108
1056
|
aliasPrefix?: string | undefined;
|
|
109
1057
|
timeSeriesType?: ListTimeSeriesType | undefined;
|
|
1058
|
+
workspaceName?: string | undefined;
|
|
110
1059
|
}
|
|
111
1060
|
export interface TimeSeriesSummary {
|
|
112
1061
|
assetId?: string | undefined;
|
|
@@ -122,6 +1071,22 @@ export interface TimeSeriesSummary {
|
|
|
122
1071
|
export interface ListTimeSeriesResponse {
|
|
123
1072
|
TimeSeriesSummaries: TimeSeriesSummary[] | undefined;
|
|
124
1073
|
nextToken?: string | undefined;
|
|
1074
|
+
workspaceName?: string | undefined;
|
|
1075
|
+
}
|
|
1076
|
+
export interface ListWorkspacesRequest {
|
|
1077
|
+
nextToken?: string | undefined;
|
|
1078
|
+
maxResults?: number | undefined;
|
|
1079
|
+
}
|
|
1080
|
+
export interface WorkspaceSummary {
|
|
1081
|
+
name: string | undefined;
|
|
1082
|
+
arn: string | undefined;
|
|
1083
|
+
status: WorkspaceStatus | undefined;
|
|
1084
|
+
createdAt: Date | undefined;
|
|
1085
|
+
updatedAt: Date | undefined;
|
|
1086
|
+
}
|
|
1087
|
+
export interface ListWorkspacesResponse {
|
|
1088
|
+
workspaceSummaries: WorkspaceSummary[] | undefined;
|
|
1089
|
+
nextToken?: string | undefined;
|
|
125
1090
|
}
|
|
126
1091
|
export interface PropertyMappingConfiguration {
|
|
127
1092
|
matchByPropertyName?: boolean | undefined;
|
|
@@ -151,6 +1116,7 @@ export interface PutDefaultEncryptionConfigurationResponse {
|
|
|
151
1116
|
}
|
|
152
1117
|
export interface PutLoggingOptionsRequest {
|
|
153
1118
|
loggingOptions: LoggingOptions | undefined;
|
|
1119
|
+
workspaceName?: string | undefined;
|
|
154
1120
|
}
|
|
155
1121
|
export interface PutLoggingOptionsResponse {}
|
|
156
1122
|
export interface PutStorageConfigurationRequest {
|
|
@@ -172,6 +1138,48 @@ export interface PutStorageConfigurationResponse {
|
|
|
172
1138
|
warmTierRetentionPeriod?: WarmTierRetentionPeriod | undefined;
|
|
173
1139
|
disallowIngestNullNaN?: boolean | undefined;
|
|
174
1140
|
}
|
|
1141
|
+
export interface StartPipelineExecutionRequest {
|
|
1142
|
+
workspaceName: string | undefined;
|
|
1143
|
+
pipelineName: string | undefined;
|
|
1144
|
+
executionEnvironmentVariableOverrides?: ExecutionEnvironmentVariables | undefined;
|
|
1145
|
+
executionPriority?: number | undefined;
|
|
1146
|
+
clientToken?: string | undefined;
|
|
1147
|
+
}
|
|
1148
|
+
export interface StartPipelineExecutionResponse {
|
|
1149
|
+
pipelineExecutionId: string | undefined;
|
|
1150
|
+
}
|
|
1151
|
+
export interface StartQueryRequest {
|
|
1152
|
+
clientToken?: string | undefined;
|
|
1153
|
+
workspaceName: string | undefined;
|
|
1154
|
+
queryStatement: string | undefined;
|
|
1155
|
+
}
|
|
1156
|
+
export interface StartQueryResponse {
|
|
1157
|
+
queryId: string | undefined;
|
|
1158
|
+
status: QueryStatus | undefined;
|
|
1159
|
+
}
|
|
1160
|
+
export interface TimeInterval {
|
|
1161
|
+
startTime: TimeInNanos | undefined;
|
|
1162
|
+
endTime: TimeInNanos | undefined;
|
|
1163
|
+
}
|
|
1164
|
+
export interface SearchFilters {
|
|
1165
|
+
timeSeriesIds?: string[] | undefined;
|
|
1166
|
+
datasetIds?: string[] | undefined;
|
|
1167
|
+
timeIntervals?: TimeInterval[] | undefined;
|
|
1168
|
+
}
|
|
1169
|
+
export interface StartSearchRequest {
|
|
1170
|
+
workspaceName: string | undefined;
|
|
1171
|
+
queryStatement: string | undefined;
|
|
1172
|
+
clientToken?: string | undefined;
|
|
1173
|
+
searchType?: SearchType | undefined;
|
|
1174
|
+
searchFilters?: SearchFilters | undefined;
|
|
1175
|
+
groupId?: string | undefined;
|
|
1176
|
+
}
|
|
1177
|
+
export interface StartSearchResponse {
|
|
1178
|
+
searchId: string | undefined;
|
|
1179
|
+
workspaceName: string | undefined;
|
|
1180
|
+
status: SearchStatus | undefined;
|
|
1181
|
+
groupId?: string | undefined;
|
|
1182
|
+
}
|
|
175
1183
|
export interface TagResourceRequest {
|
|
176
1184
|
resourceArn: string | undefined;
|
|
177
1185
|
tags: Record<string, string> | undefined;
|
|
@@ -198,6 +1206,7 @@ export interface UpdateAssetRequest {
|
|
|
198
1206
|
assetDescription?: string | undefined;
|
|
199
1207
|
}
|
|
200
1208
|
export interface UpdateAssetResponse {
|
|
1209
|
+
assetId?: string | undefined;
|
|
201
1210
|
assetStatus: AssetStatus | undefined;
|
|
202
1211
|
}
|
|
203
1212
|
export interface UpdateAssetModelRequest {
|
|
@@ -214,6 +1223,7 @@ export interface UpdateAssetModelRequest {
|
|
|
214
1223
|
matchForVersionType?: AssetModelVersionType | undefined;
|
|
215
1224
|
}
|
|
216
1225
|
export interface UpdateAssetModelResponse {
|
|
1226
|
+
assetModelId?: string | undefined;
|
|
217
1227
|
assetModelStatus: AssetModelStatus | undefined;
|
|
218
1228
|
}
|
|
219
1229
|
export interface UpdateAssetModelCompositeModelRequest {
|
|
@@ -231,6 +1241,7 @@ export interface UpdateAssetModelCompositeModelRequest {
|
|
|
231
1241
|
export interface UpdateAssetModelCompositeModelResponse {
|
|
232
1242
|
assetModelCompositeModelPath: AssetModelCompositeModelPathSegment[] | undefined;
|
|
233
1243
|
assetModelStatus: AssetModelStatus | undefined;
|
|
1244
|
+
assetModelId?: string | undefined;
|
|
234
1245
|
}
|
|
235
1246
|
export interface UpdateAssetPropertyRequest {
|
|
236
1247
|
assetId: string | undefined;
|
|
@@ -253,8 +1264,11 @@ export interface UpdateDashboardRequest {
|
|
|
253
1264
|
export interface UpdateDashboardResponse {}
|
|
254
1265
|
export interface UpdateDatasetRequest {
|
|
255
1266
|
datasetId: string | undefined;
|
|
1267
|
+
workspaceName?: string | undefined;
|
|
256
1268
|
datasetName: string | undefined;
|
|
257
1269
|
datasetDescription?: string | undefined;
|
|
1270
|
+
datasetConfig?: DatasetConfig | undefined;
|
|
1271
|
+
metadata?: Record<string, string> | undefined;
|
|
258
1272
|
datasetSource: DatasetSource | undefined;
|
|
259
1273
|
clientToken?: string | undefined;
|
|
260
1274
|
}
|
|
@@ -276,6 +1290,17 @@ export interface UpdateGatewayCapabilityConfigurationResponse {
|
|
|
276
1290
|
capabilityNamespace: string | undefined;
|
|
277
1291
|
capabilitySyncStatus: CapabilitySyncStatus | undefined;
|
|
278
1292
|
}
|
|
1293
|
+
export interface UpdatePipelineRequest {
|
|
1294
|
+
workspaceName: string | undefined;
|
|
1295
|
+
pipelineName: string | undefined;
|
|
1296
|
+
description?: string | undefined;
|
|
1297
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1298
|
+
computations?: ComputeNode[] | undefined;
|
|
1299
|
+
}
|
|
1300
|
+
export interface UpdatePipelineResponse {
|
|
1301
|
+
version: string | undefined;
|
|
1302
|
+
status: ResourceStatus | undefined;
|
|
1303
|
+
}
|
|
279
1304
|
export interface Image {
|
|
280
1305
|
id?: string | undefined;
|
|
281
1306
|
file?: ImageFile | undefined;
|
|
@@ -303,6 +1328,25 @@ export interface UpdateProjectRequest {
|
|
|
303
1328
|
clientToken?: string | undefined;
|
|
304
1329
|
}
|
|
305
1330
|
export interface UpdateProjectResponse {}
|
|
1331
|
+
export interface UpdateTaskRequest {
|
|
1332
|
+
workspaceName: string | undefined;
|
|
1333
|
+
taskName: string | undefined;
|
|
1334
|
+
description?: string | undefined;
|
|
1335
|
+
taskConfiguration?: TaskConfiguration | undefined;
|
|
1336
|
+
}
|
|
1337
|
+
export interface UpdateTaskResponse {
|
|
1338
|
+
version: string | undefined;
|
|
1339
|
+
status: ResourceStatus | undefined;
|
|
1340
|
+
}
|
|
1341
|
+
export interface UpdateWorkspaceRequest {
|
|
1342
|
+
workspaceName: string | undefined;
|
|
1343
|
+
workspaceDescription?: string | undefined;
|
|
1344
|
+
encryptionConfiguration?: WorkspaceEncryptionConfiguration | undefined;
|
|
1345
|
+
clientToken?: string | undefined;
|
|
1346
|
+
}
|
|
1347
|
+
export interface UpdateWorkspaceResponse {
|
|
1348
|
+
workspaceStatus: WorkspaceStatus | undefined;
|
|
1349
|
+
}
|
|
306
1350
|
export interface ComputationModelDataBindingValue {
|
|
307
1351
|
assetModelProperty?: AssetModelPropertyBindingValue | undefined;
|
|
308
1352
|
assetProperty?: AssetPropertyBindingValue | undefined;
|