@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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AggregateType,
|
|
3
|
+
ApplicationStatus,
|
|
3
4
|
AssetErrorCode,
|
|
4
5
|
AssetModelState,
|
|
5
6
|
AssetModelType,
|
|
@@ -15,54 +16,49 @@ import {
|
|
|
15
16
|
CapabilitySyncStatus,
|
|
16
17
|
ColumnName,
|
|
17
18
|
ComputationModelState,
|
|
18
|
-
ComputationModelType,
|
|
19
19
|
ComputeLocation,
|
|
20
|
+
ComputeNodeErrorCode,
|
|
21
|
+
ComputeNodeExecutionState,
|
|
20
22
|
ConfigurationState,
|
|
21
23
|
CoreDeviceOperatingSystem,
|
|
24
|
+
DataSegmentErrorCode,
|
|
25
|
+
DatasetEnrichmentStatus,
|
|
26
|
+
DatasetExportJobStatus,
|
|
22
27
|
DatasetSourceFormat,
|
|
23
28
|
DatasetSourceType,
|
|
24
29
|
DatasetState,
|
|
30
|
+
DatasetTypeEnum,
|
|
25
31
|
DetailedErrorCode,
|
|
26
|
-
|
|
32
|
+
DetailedPipelineErrorCode,
|
|
27
33
|
EncryptionType,
|
|
34
|
+
EnrichmentJobStatus,
|
|
28
35
|
ErrorCode,
|
|
29
36
|
ExecutionState,
|
|
37
|
+
ExportDataType,
|
|
30
38
|
ForwardingConfigState,
|
|
31
|
-
IdentityType,
|
|
32
39
|
ImageFileType,
|
|
33
40
|
JobStatus,
|
|
34
|
-
|
|
35
|
-
ListAssetPropertiesFilter,
|
|
36
|
-
ListAssetsFilter,
|
|
37
|
-
ListBulkImportJobsFilter,
|
|
41
|
+
JobType,
|
|
38
42
|
LoggingLevel,
|
|
39
43
|
MonitorErrorCode,
|
|
40
44
|
Permission,
|
|
45
|
+
PipelineErrorCode,
|
|
46
|
+
PipelineExecutionState,
|
|
41
47
|
PortalState,
|
|
42
48
|
PortalType,
|
|
49
|
+
ProcessingType,
|
|
50
|
+
ProcessingUnit,
|
|
43
51
|
PropertyDataType,
|
|
44
52
|
PropertyNotificationState,
|
|
45
53
|
Quality,
|
|
54
|
+
QueryStatus,
|
|
46
55
|
RawValueType,
|
|
47
56
|
ResolveToResourceType,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
StorageType,
|
|
51
|
-
TargetResourceType,
|
|
57
|
+
ResourceErrorCode,
|
|
58
|
+
ResourceState,
|
|
52
59
|
TimeOrdering,
|
|
53
|
-
|
|
54
|
-
TraversalType,
|
|
55
|
-
WarmTierState,
|
|
60
|
+
WorkspaceState,
|
|
56
61
|
} from "./enums";
|
|
57
|
-
import {
|
|
58
|
-
AccessDeniedException,
|
|
59
|
-
ConflictingOperationException,
|
|
60
|
-
InternalFailureException,
|
|
61
|
-
InvalidRequestException,
|
|
62
|
-
LimitExceededException,
|
|
63
|
-
ResourceNotFoundException,
|
|
64
|
-
ThrottlingException,
|
|
65
|
-
} from "./errors";
|
|
66
62
|
export interface GroupIdentity {
|
|
67
63
|
id: string | undefined;
|
|
68
64
|
}
|
|
@@ -137,6 +133,15 @@ export interface Alarms {
|
|
|
137
133
|
alarmRoleArn: string | undefined;
|
|
138
134
|
notificationLambdaArn?: string | undefined;
|
|
139
135
|
}
|
|
136
|
+
export interface Annotation {}
|
|
137
|
+
export interface ApplicationSummary {
|
|
138
|
+
arn: string | undefined;
|
|
139
|
+
id: string | undefined;
|
|
140
|
+
name: string | undefined;
|
|
141
|
+
status: ApplicationStatus | undefined;
|
|
142
|
+
createdAt: Date | undefined;
|
|
143
|
+
workspaceName: string | undefined;
|
|
144
|
+
}
|
|
140
145
|
export interface AssetBindingValueFilter {
|
|
141
146
|
assetId: string | undefined;
|
|
142
147
|
}
|
|
@@ -434,12 +439,37 @@ export interface AssociatedAssetsSummary {
|
|
|
434
439
|
hierarchies: AssetHierarchy[] | undefined;
|
|
435
440
|
description?: string | undefined;
|
|
436
441
|
}
|
|
442
|
+
export interface AssociateDataSegmentEntry {
|
|
443
|
+
sourceDatasetId: string | undefined;
|
|
444
|
+
timeSeriesId: string | undefined;
|
|
445
|
+
startTimestamp: TimeInNanos | undefined;
|
|
446
|
+
endTimestamp: TimeInNanos | undefined;
|
|
447
|
+
}
|
|
437
448
|
export interface AssociateTimeSeriesToAssetPropertyRequest {
|
|
438
449
|
alias: string | undefined;
|
|
439
450
|
assetId: string | undefined;
|
|
440
451
|
propertyId: string | undefined;
|
|
441
452
|
clientToken?: string | undefined;
|
|
442
453
|
}
|
|
454
|
+
export interface BatchAssociateDataSegmentsToDatasetRequest {
|
|
455
|
+
datasetId: string | undefined;
|
|
456
|
+
workspaceName: string | undefined;
|
|
457
|
+
associateDataSegmentEntries: AssociateDataSegmentEntry[] | undefined;
|
|
458
|
+
clientToken?: string | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface FailedDataSegmentAssociation {
|
|
461
|
+
sourceDatasetId: string | undefined;
|
|
462
|
+
timeSeriesId: string | undefined;
|
|
463
|
+
startTimestamp: TimeInNanos | undefined;
|
|
464
|
+
endTimestamp: TimeInNanos | undefined;
|
|
465
|
+
errorCode: DataSegmentErrorCode | undefined;
|
|
466
|
+
errorMessage: string | undefined;
|
|
467
|
+
}
|
|
468
|
+
export interface BatchAssociateDataSegmentsToDatasetResponse {
|
|
469
|
+
datasetId: string | undefined;
|
|
470
|
+
datasetVersion: string | undefined;
|
|
471
|
+
failedAssociations: FailedDataSegmentAssociation[] | undefined;
|
|
472
|
+
}
|
|
443
473
|
export interface BatchAssociateProjectAssetsRequest {
|
|
444
474
|
projectId: string | undefined;
|
|
445
475
|
assetIds: string[] | undefined;
|
|
@@ -448,6 +478,54 @@ export interface BatchAssociateProjectAssetsRequest {
|
|
|
448
478
|
export interface BatchAssociateProjectAssetsResponse {
|
|
449
479
|
errors?: AssetErrorDetails[] | undefined;
|
|
450
480
|
}
|
|
481
|
+
export interface DeleteDataSegmentEntry {
|
|
482
|
+
timeSeriesId: string | undefined;
|
|
483
|
+
startTimestamp: TimeInNanos | undefined;
|
|
484
|
+
endTimestamp: TimeInNanos | undefined;
|
|
485
|
+
}
|
|
486
|
+
export interface BatchDeleteDatasetDataSegmentsRequest {
|
|
487
|
+
datasetId: string | undefined;
|
|
488
|
+
workspaceName: string | undefined;
|
|
489
|
+
deleteDataSegmentEntries: DeleteDataSegmentEntry[] | undefined;
|
|
490
|
+
clientToken?: string | undefined;
|
|
491
|
+
}
|
|
492
|
+
export interface FailedDataSegmentDeletion {
|
|
493
|
+
timeSeriesId: string | undefined;
|
|
494
|
+
startTimestamp: TimeInNanos | undefined;
|
|
495
|
+
endTimestamp: TimeInNanos | undefined;
|
|
496
|
+
errorCode: DataSegmentErrorCode | undefined;
|
|
497
|
+
errorMessage: string | undefined;
|
|
498
|
+
}
|
|
499
|
+
export interface BatchDeleteDatasetDataSegmentsResponse {
|
|
500
|
+
datasetId: string | undefined;
|
|
501
|
+
datasetVersion: string | undefined;
|
|
502
|
+
errors: FailedDataSegmentDeletion[] | undefined;
|
|
503
|
+
}
|
|
504
|
+
export interface DisassociateDataSegmentEntry {
|
|
505
|
+
sourceDatasetId: string | undefined;
|
|
506
|
+
timeSeriesId: string | undefined;
|
|
507
|
+
startTimestamp: TimeInNanos | undefined;
|
|
508
|
+
endTimestamp: TimeInNanos | undefined;
|
|
509
|
+
}
|
|
510
|
+
export interface BatchDisassociateDataSegmentsFromDatasetRequest {
|
|
511
|
+
datasetId: string | undefined;
|
|
512
|
+
workspaceName: string | undefined;
|
|
513
|
+
disassociateDataSegmentEntries: DisassociateDataSegmentEntry[] | undefined;
|
|
514
|
+
clientToken?: string | undefined;
|
|
515
|
+
}
|
|
516
|
+
export interface FailedDataSegmentDisassociation {
|
|
517
|
+
sourceDatasetId: string | undefined;
|
|
518
|
+
timeSeriesId: string | undefined;
|
|
519
|
+
startTimestamp: TimeInNanos | undefined;
|
|
520
|
+
endTimestamp: TimeInNanos | undefined;
|
|
521
|
+
errorCode: DataSegmentErrorCode | undefined;
|
|
522
|
+
errorMessage: string | undefined;
|
|
523
|
+
}
|
|
524
|
+
export interface BatchDisassociateDataSegmentsFromDatasetResponse {
|
|
525
|
+
datasetId: string | undefined;
|
|
526
|
+
datasetVersion: string | undefined;
|
|
527
|
+
failedDisassociations: FailedDataSegmentDisassociation[] | undefined;
|
|
528
|
+
}
|
|
451
529
|
export interface BatchDisassociateProjectAssetsRequest {
|
|
452
530
|
projectId: string | undefined;
|
|
453
531
|
assetIds: string[] | undefined;
|
|
@@ -593,6 +671,31 @@ export interface BatchPutAssetPropertyErrorEntry {
|
|
|
593
671
|
export interface BatchPutAssetPropertyValueResponse {
|
|
594
672
|
errorEntries: BatchPutAssetPropertyErrorEntry[] | undefined;
|
|
595
673
|
}
|
|
674
|
+
export interface CancelEnrichmentJobRequest {
|
|
675
|
+
workspaceName: string | undefined;
|
|
676
|
+
jobId: string | undefined;
|
|
677
|
+
}
|
|
678
|
+
export interface CancelEnrichmentJobResponse {
|
|
679
|
+
jobId: string | undefined;
|
|
680
|
+
status: EnrichmentJobStatus | undefined;
|
|
681
|
+
}
|
|
682
|
+
export interface CancelPipelineExecutionRequest {
|
|
683
|
+
workspaceName: string | undefined;
|
|
684
|
+
pipelineName: string | undefined;
|
|
685
|
+
pipelineExecutionId: string | undefined;
|
|
686
|
+
reason?: string | undefined;
|
|
687
|
+
}
|
|
688
|
+
export interface CancelPipelineExecutionResponse {
|
|
689
|
+
state: PipelineExecutionState | undefined;
|
|
690
|
+
}
|
|
691
|
+
export interface CancelQueryRequest {
|
|
692
|
+
workspaceName: string | undefined;
|
|
693
|
+
queryId: string | undefined;
|
|
694
|
+
}
|
|
695
|
+
export interface CancelQueryResponse {
|
|
696
|
+
queryId: string | undefined;
|
|
697
|
+
status: QueryStatus | undefined;
|
|
698
|
+
}
|
|
596
699
|
export interface CreateAccessPolicyRequest {
|
|
597
700
|
accessPolicyIdentity: Identity | undefined;
|
|
598
701
|
accessPolicyResource: Resource | undefined;
|
|
@@ -604,6 +707,21 @@ export interface CreateAccessPolicyResponse {
|
|
|
604
707
|
accessPolicyId: string | undefined;
|
|
605
708
|
accessPolicyArn: string | undefined;
|
|
606
709
|
}
|
|
710
|
+
export interface CreateApplicationRequest {
|
|
711
|
+
clientToken?: string | undefined;
|
|
712
|
+
idcInstanceArn: string | undefined;
|
|
713
|
+
workspaceName: string | undefined;
|
|
714
|
+
name: string | undefined;
|
|
715
|
+
description?: string | undefined;
|
|
716
|
+
tags?: Record<string, string> | undefined;
|
|
717
|
+
}
|
|
718
|
+
export interface CreateApplicationResponse {
|
|
719
|
+
arn: string | undefined;
|
|
720
|
+
id: string | undefined;
|
|
721
|
+
dnsSubdomain: string | undefined;
|
|
722
|
+
name: string | undefined;
|
|
723
|
+
status: ApplicationStatus | undefined;
|
|
724
|
+
}
|
|
607
725
|
export interface CreateAssetRequest {
|
|
608
726
|
assetName: string | undefined;
|
|
609
727
|
assetModelId: string | undefined;
|
|
@@ -654,35 +772,44 @@ export interface CreateAssetModelCompositeModelResponse {
|
|
|
654
772
|
assetModelCompositeModelId: string | undefined;
|
|
655
773
|
assetModelCompositeModelPath: AssetModelCompositeModelPathSegment[] | undefined;
|
|
656
774
|
assetModelStatus: AssetModelStatus | undefined;
|
|
775
|
+
assetModelId?: string | undefined;
|
|
657
776
|
}
|
|
658
777
|
export interface ErrorReportLocation {
|
|
659
778
|
bucket: string | undefined;
|
|
660
779
|
prefix: string | undefined;
|
|
661
780
|
}
|
|
662
|
-
export interface File {
|
|
663
|
-
bucket: string | undefined;
|
|
664
|
-
key: string | undefined;
|
|
665
|
-
versionId?: string | undefined;
|
|
666
|
-
}
|
|
667
781
|
export interface Csv {
|
|
668
782
|
columnNames: ColumnName[] | undefined;
|
|
669
783
|
}
|
|
784
|
+
export interface Mp4 {}
|
|
670
785
|
export interface Parquet {}
|
|
671
786
|
export interface FileFormat {
|
|
672
787
|
csv?: Csv | undefined;
|
|
673
788
|
parquet?: Parquet | undefined;
|
|
789
|
+
mp4?: Mp4 | undefined;
|
|
790
|
+
annotation?: Annotation | undefined;
|
|
791
|
+
}
|
|
792
|
+
export interface File {
|
|
793
|
+
bucket: string | undefined;
|
|
794
|
+
key: string | undefined;
|
|
795
|
+
versionId?: string | undefined;
|
|
796
|
+
alias?: string | undefined;
|
|
797
|
+
startTime?: TimeInNanos | undefined;
|
|
798
|
+
fileFormat?: FileFormat | undefined;
|
|
674
799
|
}
|
|
675
800
|
export interface JobConfiguration {
|
|
676
|
-
fileFormat
|
|
801
|
+
fileFormat?: FileFormat | undefined;
|
|
677
802
|
}
|
|
678
803
|
export interface CreateBulkImportJobRequest {
|
|
679
804
|
jobName: string | undefined;
|
|
680
805
|
jobRoleArn: string | undefined;
|
|
681
806
|
files: File[] | undefined;
|
|
682
807
|
errorReportLocation: ErrorReportLocation | undefined;
|
|
683
|
-
jobConfiguration
|
|
808
|
+
jobConfiguration?: JobConfiguration | undefined;
|
|
684
809
|
adaptiveIngestion?: boolean | undefined;
|
|
685
810
|
deleteFilesAfterImport?: boolean | undefined;
|
|
811
|
+
datasetId?: string | undefined;
|
|
812
|
+
workspaceName?: string | undefined;
|
|
686
813
|
}
|
|
687
814
|
export interface CreateBulkImportJobResponse {
|
|
688
815
|
jobId: string | undefined;
|
|
@@ -717,6 +844,13 @@ export interface CreateDashboardResponse {
|
|
|
717
844
|
dashboardId: string | undefined;
|
|
718
845
|
dashboardArn: string | undefined;
|
|
719
846
|
}
|
|
847
|
+
export interface SessionConfig {
|
|
848
|
+
sessionStartTimestamp: TimeInNanos | undefined;
|
|
849
|
+
sessionEndTimestamp: TimeInNanos | undefined;
|
|
850
|
+
}
|
|
851
|
+
export interface DatasetConfig {
|
|
852
|
+
session?: SessionConfig | undefined;
|
|
853
|
+
}
|
|
720
854
|
export interface KendraSourceDetail {
|
|
721
855
|
knowledgeBaseArn: string | undefined;
|
|
722
856
|
roleArn: string | undefined;
|
|
@@ -733,6 +867,10 @@ export interface CreateDatasetRequest {
|
|
|
733
867
|
datasetId?: string | undefined;
|
|
734
868
|
datasetName: string | undefined;
|
|
735
869
|
datasetDescription?: string | undefined;
|
|
870
|
+
datasetType?: DatasetTypeEnum | undefined;
|
|
871
|
+
datasetConfig?: DatasetConfig | undefined;
|
|
872
|
+
workspaceName?: string | undefined;
|
|
873
|
+
metadata?: Record<string, string> | undefined;
|
|
736
874
|
datasetSource: DatasetSource | undefined;
|
|
737
875
|
clientToken?: string | undefined;
|
|
738
876
|
tags?: Record<string, string> | undefined;
|
|
@@ -746,6 +884,103 @@ export interface CreateDatasetResponse {
|
|
|
746
884
|
datasetArn: string | undefined;
|
|
747
885
|
datasetStatus: DatasetStatus | undefined;
|
|
748
886
|
}
|
|
887
|
+
export interface ExportErrorReportLocation {
|
|
888
|
+
s3Uri: string | undefined;
|
|
889
|
+
}
|
|
890
|
+
export interface TrimSettings {
|
|
891
|
+
startTime: TimeInNanos | undefined;
|
|
892
|
+
endTime: TimeInNanos | undefined;
|
|
893
|
+
}
|
|
894
|
+
export interface DatasetItem {
|
|
895
|
+
datasetId: string | undefined;
|
|
896
|
+
trimSettings?: TrimSettings | undefined;
|
|
897
|
+
exportDataTypes?: ExportDataType[] | undefined;
|
|
898
|
+
}
|
|
899
|
+
export interface FormatSettings {
|
|
900
|
+
framesPerSecond?: number | undefined;
|
|
901
|
+
widthInPixels?: number | undefined;
|
|
902
|
+
heightInPixels?: number | undefined;
|
|
903
|
+
}
|
|
904
|
+
export interface TimeseriesItem {
|
|
905
|
+
timeSeriesId?: string | undefined;
|
|
906
|
+
propertyAlias?: string | undefined;
|
|
907
|
+
trimSettings?: TrimSettings | undefined;
|
|
908
|
+
formatSettings?: FormatSettings | undefined;
|
|
909
|
+
}
|
|
910
|
+
export type ProcessingInput =
|
|
911
|
+
| ProcessingInput.DatasetMember
|
|
912
|
+
| ProcessingInput.TimeseriesMember
|
|
913
|
+
| ProcessingInput.$UnknownMember;
|
|
914
|
+
export declare namespace ProcessingInput {
|
|
915
|
+
interface TimeseriesMember {
|
|
916
|
+
timeseries: TimeseriesItem[];
|
|
917
|
+
dataset?: never;
|
|
918
|
+
$unknown?: never;
|
|
919
|
+
}
|
|
920
|
+
interface DatasetMember {
|
|
921
|
+
timeseries?: never;
|
|
922
|
+
dataset: DatasetItem;
|
|
923
|
+
$unknown?: never;
|
|
924
|
+
}
|
|
925
|
+
interface $UnknownMember {
|
|
926
|
+
timeseries?: never;
|
|
927
|
+
dataset?: never;
|
|
928
|
+
$unknown: [string, any];
|
|
929
|
+
}
|
|
930
|
+
interface Visitor<T> {
|
|
931
|
+
timeseries: (value: TimeseriesItem[]) => T;
|
|
932
|
+
dataset: (value: DatasetItem) => T;
|
|
933
|
+
_: (name: string, value: any) => T;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
export interface CreateDatasetExportJobRequest {
|
|
937
|
+
workspaceName: string | undefined;
|
|
938
|
+
clientToken?: string | undefined;
|
|
939
|
+
destinationS3Uri: string | undefined;
|
|
940
|
+
input: ProcessingInput | undefined;
|
|
941
|
+
errorReportLocation: ExportErrorReportLocation | undefined;
|
|
942
|
+
}
|
|
943
|
+
export interface CreateDatasetExportJobResponse {
|
|
944
|
+
jobId: string | undefined;
|
|
945
|
+
workspaceName: string | undefined;
|
|
946
|
+
}
|
|
947
|
+
export interface EnrichmentTrimSettings {
|
|
948
|
+
startTime: TimeInNanos | undefined;
|
|
949
|
+
endTime: TimeInNanos | undefined;
|
|
950
|
+
}
|
|
951
|
+
export interface EventDetection {
|
|
952
|
+
datasetId: string | undefined;
|
|
953
|
+
timeSeriesId?: string | undefined;
|
|
954
|
+
propertyAlias?: string | undefined;
|
|
955
|
+
trimSettings: EnrichmentTrimSettings | undefined;
|
|
956
|
+
}
|
|
957
|
+
export type EnrichmentJobConfiguration =
|
|
958
|
+
| EnrichmentJobConfiguration.EventDetectionMember
|
|
959
|
+
| EnrichmentJobConfiguration.$UnknownMember;
|
|
960
|
+
export declare namespace EnrichmentJobConfiguration {
|
|
961
|
+
interface EventDetectionMember {
|
|
962
|
+
eventDetection: EventDetection;
|
|
963
|
+
$unknown?: never;
|
|
964
|
+
}
|
|
965
|
+
interface $UnknownMember {
|
|
966
|
+
eventDetection?: never;
|
|
967
|
+
$unknown: [string, any];
|
|
968
|
+
}
|
|
969
|
+
interface Visitor<T> {
|
|
970
|
+
eventDetection: (value: EventDetection) => T;
|
|
971
|
+
_: (name: string, value: any) => T;
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
export interface CreateEnrichmentJobRequest {
|
|
975
|
+
workspaceName: string | undefined;
|
|
976
|
+
jobConfiguration: EnrichmentJobConfiguration | undefined;
|
|
977
|
+
clientToken?: string | undefined;
|
|
978
|
+
}
|
|
979
|
+
export interface CreateEnrichmentJobResponse {
|
|
980
|
+
jobId: string | undefined;
|
|
981
|
+
status: EnrichmentJobStatus | undefined;
|
|
982
|
+
createdAt: Date | undefined;
|
|
983
|
+
}
|
|
749
984
|
export interface Greengrass {
|
|
750
985
|
groupArn: string | undefined;
|
|
751
986
|
}
|
|
@@ -771,6 +1006,35 @@ export interface CreateGatewayResponse {
|
|
|
771
1006
|
gatewayId: string | undefined;
|
|
772
1007
|
gatewayArn: string | undefined;
|
|
773
1008
|
}
|
|
1009
|
+
export interface ComputeNode {
|
|
1010
|
+
computeNodeName: string | undefined;
|
|
1011
|
+
taskName: string | undefined;
|
|
1012
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1013
|
+
dependsOn?: string[] | undefined;
|
|
1014
|
+
}
|
|
1015
|
+
export interface CreatePipelineRequest {
|
|
1016
|
+
workspaceName: string | undefined;
|
|
1017
|
+
pipelineName: string | undefined;
|
|
1018
|
+
description?: string | undefined;
|
|
1019
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1020
|
+
computations: ComputeNode[] | undefined;
|
|
1021
|
+
tags?: Record<string, string> | undefined;
|
|
1022
|
+
clientToken?: string | undefined;
|
|
1023
|
+
}
|
|
1024
|
+
export interface ResourceError {
|
|
1025
|
+
code?: ResourceErrorCode | undefined;
|
|
1026
|
+
message?: string | undefined;
|
|
1027
|
+
}
|
|
1028
|
+
export interface ResourceStatus {
|
|
1029
|
+
error?: ResourceError | undefined;
|
|
1030
|
+
state?: ResourceState | undefined;
|
|
1031
|
+
}
|
|
1032
|
+
export interface CreatePipelineResponse {
|
|
1033
|
+
pipelineName: string | undefined;
|
|
1034
|
+
pipelineArn: string | undefined;
|
|
1035
|
+
version: string | undefined;
|
|
1036
|
+
status: ResourceStatus | undefined;
|
|
1037
|
+
}
|
|
774
1038
|
export interface ImageFile {
|
|
775
1039
|
data: Uint8Array | undefined;
|
|
776
1040
|
type: ImageFileType | undefined;
|
|
@@ -818,16 +1082,86 @@ export interface CreateProjectResponse {
|
|
|
818
1082
|
projectId: string | undefined;
|
|
819
1083
|
projectArn: string | undefined;
|
|
820
1084
|
}
|
|
1085
|
+
export interface ContainerTaskConfiguration {
|
|
1086
|
+
ecrUri: string | undefined;
|
|
1087
|
+
taskExecutionRole: string | undefined;
|
|
1088
|
+
processingType: ProcessingType | undefined;
|
|
1089
|
+
processingUnit: ProcessingUnit | undefined;
|
|
1090
|
+
command?: string[] | undefined;
|
|
1091
|
+
timeoutSeconds?: number | undefined;
|
|
1092
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1093
|
+
}
|
|
1094
|
+
export type TaskConfiguration =
|
|
1095
|
+
| TaskConfiguration.ContainerTaskConfigurationMember
|
|
1096
|
+
| TaskConfiguration.$UnknownMember;
|
|
1097
|
+
export declare namespace TaskConfiguration {
|
|
1098
|
+
interface ContainerTaskConfigurationMember {
|
|
1099
|
+
containerTaskConfiguration: ContainerTaskConfiguration;
|
|
1100
|
+
$unknown?: never;
|
|
1101
|
+
}
|
|
1102
|
+
interface $UnknownMember {
|
|
1103
|
+
containerTaskConfiguration?: never;
|
|
1104
|
+
$unknown: [string, any];
|
|
1105
|
+
}
|
|
1106
|
+
interface Visitor<T> {
|
|
1107
|
+
containerTaskConfiguration: (value: ContainerTaskConfiguration) => T;
|
|
1108
|
+
_: (name: string, value: any) => T;
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
export interface CreateTaskRequest {
|
|
1112
|
+
workspaceName: string | undefined;
|
|
1113
|
+
taskName: string | undefined;
|
|
1114
|
+
description?: string | undefined;
|
|
1115
|
+
taskConfiguration: TaskConfiguration | undefined;
|
|
1116
|
+
tags?: Record<string, string> | undefined;
|
|
1117
|
+
clientToken?: string | undefined;
|
|
1118
|
+
}
|
|
1119
|
+
export interface CreateTaskResponse {
|
|
1120
|
+
taskName: string | undefined;
|
|
1121
|
+
taskArn: string | undefined;
|
|
1122
|
+
version: string | undefined;
|
|
1123
|
+
status: ResourceStatus | undefined;
|
|
1124
|
+
}
|
|
1125
|
+
export interface WorkspaceEncryptionConfiguration {
|
|
1126
|
+
encryptionType: EncryptionType | undefined;
|
|
1127
|
+
kmsKeyId?: string | undefined;
|
|
1128
|
+
}
|
|
1129
|
+
export interface CreateWorkspaceRequest {
|
|
1130
|
+
workspaceName: string | undefined;
|
|
1131
|
+
workspaceDescription?: string | undefined;
|
|
1132
|
+
encryptionConfiguration: WorkspaceEncryptionConfiguration | undefined;
|
|
1133
|
+
tags?: Record<string, string> | undefined;
|
|
1134
|
+
clientToken?: string | undefined;
|
|
1135
|
+
}
|
|
1136
|
+
export interface WorkspaceErrorDetails {
|
|
1137
|
+
code: ErrorCode | undefined;
|
|
1138
|
+
message: string | undefined;
|
|
1139
|
+
}
|
|
1140
|
+
export interface WorkspaceStatus {
|
|
1141
|
+
state: WorkspaceState | undefined;
|
|
1142
|
+
error?: WorkspaceErrorDetails | undefined;
|
|
1143
|
+
}
|
|
1144
|
+
export interface CreateWorkspaceResponse {
|
|
1145
|
+
workspaceName: string | undefined;
|
|
1146
|
+
workspaceArn: string | undefined;
|
|
1147
|
+
workspaceStatus: WorkspaceStatus | undefined;
|
|
1148
|
+
}
|
|
821
1149
|
export interface DeleteAccessPolicyRequest {
|
|
822
1150
|
accessPolicyId: string | undefined;
|
|
823
1151
|
clientToken?: string | undefined;
|
|
824
1152
|
}
|
|
825
1153
|
export interface DeleteAccessPolicyResponse {}
|
|
1154
|
+
export interface DeleteApplicationRequest {
|
|
1155
|
+
workspaceName: string | undefined;
|
|
1156
|
+
id: string | undefined;
|
|
1157
|
+
}
|
|
1158
|
+
export interface DeleteApplicationResponse {}
|
|
826
1159
|
export interface DeleteAssetRequest {
|
|
827
1160
|
assetId: string | undefined;
|
|
828
1161
|
clientToken?: string | undefined;
|
|
829
1162
|
}
|
|
830
1163
|
export interface DeleteAssetResponse {
|
|
1164
|
+
assetId?: string | undefined;
|
|
831
1165
|
assetStatus: AssetStatus | undefined;
|
|
832
1166
|
}
|
|
833
1167
|
export interface DeleteAssetModelRequest {
|
|
@@ -838,6 +1172,7 @@ export interface DeleteAssetModelRequest {
|
|
|
838
1172
|
matchForVersionType?: AssetModelVersionType | undefined;
|
|
839
1173
|
}
|
|
840
1174
|
export interface DeleteAssetModelResponse {
|
|
1175
|
+
assetModelId?: string | undefined;
|
|
841
1176
|
assetModelStatus: AssetModelStatus | undefined;
|
|
842
1177
|
}
|
|
843
1178
|
export interface DeleteAssetModelCompositeModelRequest {
|
|
@@ -850,6 +1185,7 @@ export interface DeleteAssetModelCompositeModelRequest {
|
|
|
850
1185
|
}
|
|
851
1186
|
export interface DeleteAssetModelCompositeModelResponse {
|
|
852
1187
|
assetModelStatus: AssetModelStatus | undefined;
|
|
1188
|
+
assetModelId?: string | undefined;
|
|
853
1189
|
}
|
|
854
1190
|
export interface DeleteAssetModelInterfaceRelationshipRequest {
|
|
855
1191
|
assetModelId: string | undefined;
|
|
@@ -876,6 +1212,7 @@ export interface DeleteDashboardRequest {
|
|
|
876
1212
|
export interface DeleteDashboardResponse {}
|
|
877
1213
|
export interface DeleteDatasetRequest {
|
|
878
1214
|
datasetId: string | undefined;
|
|
1215
|
+
workspaceName?: string | undefined;
|
|
879
1216
|
clientToken?: string | undefined;
|
|
880
1217
|
}
|
|
881
1218
|
export interface DeleteDatasetResponse {
|
|
@@ -884,6 +1221,13 @@ export interface DeleteDatasetResponse {
|
|
|
884
1221
|
export interface DeleteGatewayRequest {
|
|
885
1222
|
gatewayId: string | undefined;
|
|
886
1223
|
}
|
|
1224
|
+
export interface DeletePipelineRequest {
|
|
1225
|
+
workspaceName: string | undefined;
|
|
1226
|
+
pipelineName: string | undefined;
|
|
1227
|
+
}
|
|
1228
|
+
export interface DeletePipelineResponse {
|
|
1229
|
+
status: ResourceStatus | undefined;
|
|
1230
|
+
}
|
|
887
1231
|
export interface DeletePortalRequest {
|
|
888
1232
|
portalId: string | undefined;
|
|
889
1233
|
clientToken?: string | undefined;
|
|
@@ -896,11 +1240,26 @@ export interface DeleteProjectRequest {
|
|
|
896
1240
|
clientToken?: string | undefined;
|
|
897
1241
|
}
|
|
898
1242
|
export interface DeleteProjectResponse {}
|
|
1243
|
+
export interface DeleteTaskRequest {
|
|
1244
|
+
workspaceName: string | undefined;
|
|
1245
|
+
taskName: string | undefined;
|
|
1246
|
+
}
|
|
1247
|
+
export interface DeleteTaskResponse {
|
|
1248
|
+
status: ResourceStatus | undefined;
|
|
1249
|
+
}
|
|
899
1250
|
export interface DeleteTimeSeriesRequest {
|
|
900
1251
|
alias?: string | undefined;
|
|
901
1252
|
assetId?: string | undefined;
|
|
902
1253
|
propertyId?: string | undefined;
|
|
903
1254
|
clientToken?: string | undefined;
|
|
1255
|
+
workspaceName?: string | undefined;
|
|
1256
|
+
}
|
|
1257
|
+
export interface DeleteWorkspaceRequest {
|
|
1258
|
+
workspaceName: string | undefined;
|
|
1259
|
+
clientToken?: string | undefined;
|
|
1260
|
+
}
|
|
1261
|
+
export interface DeleteWorkspaceResponse {
|
|
1262
|
+
workspaceStatus: WorkspaceStatus | undefined;
|
|
904
1263
|
}
|
|
905
1264
|
export interface DescribeAccessPolicyRequest {
|
|
906
1265
|
accessPolicyId: string | undefined;
|
|
@@ -925,6 +1284,22 @@ export interface DescribeActionResponse {
|
|
|
925
1284
|
executionTime: Date | undefined;
|
|
926
1285
|
resolveTo?: ResolveTo | undefined;
|
|
927
1286
|
}
|
|
1287
|
+
export interface DescribeApplicationRequest {
|
|
1288
|
+
workspaceName: string | undefined;
|
|
1289
|
+
id: string | undefined;
|
|
1290
|
+
}
|
|
1291
|
+
export interface DescribeApplicationResponse {
|
|
1292
|
+
arn: string | undefined;
|
|
1293
|
+
createdAt: Date | undefined;
|
|
1294
|
+
dnsSubdomain: string | undefined;
|
|
1295
|
+
description?: string | undefined;
|
|
1296
|
+
id: string | undefined;
|
|
1297
|
+
idcApplicationArn: string | undefined;
|
|
1298
|
+
name: string | undefined;
|
|
1299
|
+
status: ApplicationStatus | undefined;
|
|
1300
|
+
updatedAt: Date | undefined;
|
|
1301
|
+
workspaceName: string | undefined;
|
|
1302
|
+
}
|
|
928
1303
|
export interface DescribeAssetRequest {
|
|
929
1304
|
assetId: string | undefined;
|
|
930
1305
|
excludeProperties?: boolean | undefined;
|
|
@@ -1060,6 +1435,7 @@ export interface DescribeAssetPropertyResponse {
|
|
|
1060
1435
|
}
|
|
1061
1436
|
export interface DescribeBulkImportJobRequest {
|
|
1062
1437
|
jobId: string | undefined;
|
|
1438
|
+
workspaceName?: string | undefined;
|
|
1063
1439
|
}
|
|
1064
1440
|
export interface DescribeBulkImportJobResponse {
|
|
1065
1441
|
jobId: string | undefined;
|
|
@@ -1068,11 +1444,13 @@ export interface DescribeBulkImportJobResponse {
|
|
|
1068
1444
|
jobRoleArn: string | undefined;
|
|
1069
1445
|
files: File[] | undefined;
|
|
1070
1446
|
errorReportLocation: ErrorReportLocation | undefined;
|
|
1071
|
-
jobConfiguration
|
|
1447
|
+
jobConfiguration?: JobConfiguration | undefined;
|
|
1072
1448
|
jobCreationDate: Date | undefined;
|
|
1073
1449
|
jobLastUpdateDate: Date | undefined;
|
|
1074
1450
|
adaptiveIngestion?: boolean | undefined;
|
|
1075
1451
|
deleteFilesAfterImport?: boolean | undefined;
|
|
1452
|
+
datasetId?: string | undefined;
|
|
1453
|
+
workspaceName?: string | undefined;
|
|
1076
1454
|
}
|
|
1077
1455
|
export interface DescribeComputationModelRequest {
|
|
1078
1456
|
computationModelId: string | undefined;
|
|
@@ -1103,17 +1481,45 @@ export interface DescribeDashboardResponse {
|
|
|
1103
1481
|
}
|
|
1104
1482
|
export interface DescribeDatasetRequest {
|
|
1105
1483
|
datasetId: string | undefined;
|
|
1484
|
+
workspaceName?: string | undefined;
|
|
1485
|
+
datasetVersion?: string | undefined;
|
|
1486
|
+
}
|
|
1487
|
+
export interface DatasetEnrichmentEntry {
|
|
1488
|
+
status: DatasetEnrichmentStatus | undefined;
|
|
1489
|
+
lastEnrichedAt?: Date | undefined;
|
|
1490
|
+
}
|
|
1491
|
+
export interface DatasetEnrichment {
|
|
1492
|
+
video?: DatasetEnrichmentEntry | undefined;
|
|
1106
1493
|
}
|
|
1107
1494
|
export interface DescribeDatasetResponse {
|
|
1108
1495
|
datasetId: string | undefined;
|
|
1109
1496
|
datasetArn: string | undefined;
|
|
1110
1497
|
datasetName: string | undefined;
|
|
1111
1498
|
datasetDescription: string | undefined;
|
|
1499
|
+
datasetType?: DatasetTypeEnum | undefined;
|
|
1500
|
+
datasetConfig?: DatasetConfig | undefined;
|
|
1501
|
+
workspaceName?: string | undefined;
|
|
1502
|
+
metadata?: Record<string, string> | undefined;
|
|
1112
1503
|
datasetSource: DatasetSource | undefined;
|
|
1113
1504
|
datasetStatus: DatasetStatus | undefined;
|
|
1114
1505
|
datasetCreationDate: Date | undefined;
|
|
1115
1506
|
datasetLastUpdateDate: Date | undefined;
|
|
1116
1507
|
datasetVersion?: string | undefined;
|
|
1508
|
+
enrichmentStatus?: DatasetEnrichment | undefined;
|
|
1509
|
+
}
|
|
1510
|
+
export interface DescribeDatasetExportJobRequest {
|
|
1511
|
+
workspaceName: string | undefined;
|
|
1512
|
+
jobId: string | undefined;
|
|
1513
|
+
}
|
|
1514
|
+
export interface DescribeDatasetExportJobResponse {
|
|
1515
|
+
jobId: string | undefined;
|
|
1516
|
+
workspaceName: string | undefined;
|
|
1517
|
+
status: DatasetExportJobStatus | undefined;
|
|
1518
|
+
startedAt: Date | undefined;
|
|
1519
|
+
completedAt?: Date | undefined;
|
|
1520
|
+
destinationS3Uri: string | undefined;
|
|
1521
|
+
errorReportLocation: ExportErrorReportLocation | undefined;
|
|
1522
|
+
input: ProcessingInput | undefined;
|
|
1117
1523
|
}
|
|
1118
1524
|
export interface DescribeDefaultEncryptionConfigurationRequest {}
|
|
1119
1525
|
export interface ConfigurationErrorDetails {
|
|
@@ -1129,6 +1535,22 @@ export interface DescribeDefaultEncryptionConfigurationResponse {
|
|
|
1129
1535
|
kmsKeyArn?: string | undefined;
|
|
1130
1536
|
configurationStatus: ConfigurationStatus | undefined;
|
|
1131
1537
|
}
|
|
1538
|
+
export interface DescribeEnrichmentJobRequest {
|
|
1539
|
+
workspaceName: string | undefined;
|
|
1540
|
+
jobId: string | undefined;
|
|
1541
|
+
}
|
|
1542
|
+
export interface DescribeEnrichmentJobResponse {
|
|
1543
|
+
jobId: string | undefined;
|
|
1544
|
+
status: EnrichmentJobStatus | undefined;
|
|
1545
|
+
workspaceName: string | undefined;
|
|
1546
|
+
jobType: JobType | undefined;
|
|
1547
|
+
jobConfiguration: EnrichmentJobConfiguration | undefined;
|
|
1548
|
+
createdAt: Date | undefined;
|
|
1549
|
+
updatedAt?: Date | undefined;
|
|
1550
|
+
completedAt?: Date | undefined;
|
|
1551
|
+
cancelledAt?: Date | undefined;
|
|
1552
|
+
failureMessage?: string | undefined;
|
|
1553
|
+
}
|
|
1132
1554
|
export interface DescribeExecutionRequest {
|
|
1133
1555
|
executionId: string | undefined;
|
|
1134
1556
|
}
|
|
@@ -1175,13 +1597,89 @@ export interface DescribeGatewayCapabilityConfigurationResponse {
|
|
|
1175
1597
|
capabilityConfiguration: string | undefined;
|
|
1176
1598
|
capabilitySyncStatus: CapabilitySyncStatus | undefined;
|
|
1177
1599
|
}
|
|
1178
|
-
export interface DescribeLoggingOptionsRequest {
|
|
1600
|
+
export interface DescribeLoggingOptionsRequest {
|
|
1601
|
+
workspaceName?: string | undefined;
|
|
1602
|
+
}
|
|
1179
1603
|
export interface LoggingOptions {
|
|
1180
1604
|
level: LoggingLevel | undefined;
|
|
1181
1605
|
}
|
|
1182
1606
|
export interface DescribeLoggingOptionsResponse {
|
|
1183
1607
|
loggingOptions: LoggingOptions | undefined;
|
|
1184
1608
|
}
|
|
1609
|
+
export interface DescribePipelineRequest {
|
|
1610
|
+
workspaceName: string | undefined;
|
|
1611
|
+
pipelineName: string | undefined;
|
|
1612
|
+
pipelineVersion?: string | undefined;
|
|
1613
|
+
}
|
|
1614
|
+
export interface DescribePipelineResponse {
|
|
1615
|
+
pipelineName: string | undefined;
|
|
1616
|
+
workspaceName: string | undefined;
|
|
1617
|
+
description?: string | undefined;
|
|
1618
|
+
pipelineArn: string | undefined;
|
|
1619
|
+
version: string | undefined;
|
|
1620
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1621
|
+
computations: ComputeNode[] | undefined;
|
|
1622
|
+
status: ResourceStatus | undefined;
|
|
1623
|
+
createdAt: Date | undefined;
|
|
1624
|
+
updatedAt: Date | undefined;
|
|
1625
|
+
}
|
|
1626
|
+
export interface DescribePipelineExecutionRequest {
|
|
1627
|
+
workspaceName: string | undefined;
|
|
1628
|
+
pipelineName: string | undefined;
|
|
1629
|
+
pipelineExecutionId: string | undefined;
|
|
1630
|
+
nextToken?: string | undefined;
|
|
1631
|
+
maxResults?: number | undefined;
|
|
1632
|
+
}
|
|
1633
|
+
export interface DetailedPipelineError {
|
|
1634
|
+
code: DetailedPipelineErrorCode | undefined;
|
|
1635
|
+
message: string | undefined;
|
|
1636
|
+
}
|
|
1637
|
+
export interface ComputeNodeExecutionStateDetails {
|
|
1638
|
+
code: ComputeNodeErrorCode | undefined;
|
|
1639
|
+
message: string | undefined;
|
|
1640
|
+
details?: DetailedPipelineError[] | undefined;
|
|
1641
|
+
}
|
|
1642
|
+
export interface ComputeNodeExecutionStatus {
|
|
1643
|
+
state: ComputeNodeExecutionState | undefined;
|
|
1644
|
+
stateDetails?: ComputeNodeExecutionStateDetails | undefined;
|
|
1645
|
+
}
|
|
1646
|
+
export interface ComputeNodeExecutionDetails {
|
|
1647
|
+
computeNodeName: string | undefined;
|
|
1648
|
+
taskName: string | undefined;
|
|
1649
|
+
taskArn: string | undefined;
|
|
1650
|
+
taskVersion: string | undefined;
|
|
1651
|
+
dependsOn: string[] | undefined;
|
|
1652
|
+
status: ComputeNodeExecutionStatus | undefined;
|
|
1653
|
+
startTime?: Date | undefined;
|
|
1654
|
+
endTime?: Date | undefined;
|
|
1655
|
+
executionEnvironmentVariables?: Record<string, string> | undefined;
|
|
1656
|
+
}
|
|
1657
|
+
export interface ExecutionEnvironmentVariables {
|
|
1658
|
+
global?: Record<string, string> | undefined;
|
|
1659
|
+
computeNodes?: Record<string, Record<string, string>> | undefined;
|
|
1660
|
+
}
|
|
1661
|
+
export interface PipelineExecutionStateDetails {
|
|
1662
|
+
code?: PipelineErrorCode | undefined;
|
|
1663
|
+
message: string | undefined;
|
|
1664
|
+
details?: DetailedPipelineError[] | undefined;
|
|
1665
|
+
}
|
|
1666
|
+
export interface PipelineExecutionStatus {
|
|
1667
|
+
state: PipelineExecutionState | undefined;
|
|
1668
|
+
stateDetails?: PipelineExecutionStateDetails | undefined;
|
|
1669
|
+
}
|
|
1670
|
+
export interface DescribePipelineExecutionResponse {
|
|
1671
|
+
pipelineExecutionId: string | undefined;
|
|
1672
|
+
pipelineName: string | undefined;
|
|
1673
|
+
workspaceName: string | undefined;
|
|
1674
|
+
pipelineVersion: string | undefined;
|
|
1675
|
+
status: PipelineExecutionStatus | undefined;
|
|
1676
|
+
startTime?: Date | undefined;
|
|
1677
|
+
endTime?: Date | undefined;
|
|
1678
|
+
requestEnvironmentVariables: ExecutionEnvironmentVariables | undefined;
|
|
1679
|
+
executionPriority?: number | undefined;
|
|
1680
|
+
computeNodeExecutionDetails: ComputeNodeExecutionDetails[] | undefined;
|
|
1681
|
+
nextToken?: string | undefined;
|
|
1682
|
+
}
|
|
1185
1683
|
export interface DescribePortalRequest {
|
|
1186
1684
|
portalId: string | undefined;
|
|
1187
1685
|
}
|
|
@@ -1220,586 +1718,24 @@ export interface DescribeProjectResponse {
|
|
|
1220
1718
|
projectCreationDate: Date | undefined;
|
|
1221
1719
|
projectLastUpdateDate: Date | undefined;
|
|
1222
1720
|
}
|
|
1223
|
-
export interface
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
retentionPeriod?: RetentionPeriod | undefined;
|
|
1244
|
-
configurationStatus: ConfigurationStatus | undefined;
|
|
1245
|
-
lastUpdateDate?: Date | undefined;
|
|
1246
|
-
warmTier?: WarmTierState | undefined;
|
|
1247
|
-
warmTierRetentionPeriod?: WarmTierRetentionPeriod | undefined;
|
|
1248
|
-
disallowIngestNullNaN?: boolean | undefined;
|
|
1249
|
-
}
|
|
1250
|
-
export interface DescribeTimeSeriesRequest {
|
|
1251
|
-
alias?: string | undefined;
|
|
1252
|
-
assetId?: string | undefined;
|
|
1253
|
-
propertyId?: string | undefined;
|
|
1254
|
-
}
|
|
1255
|
-
export interface DescribeTimeSeriesResponse {
|
|
1256
|
-
assetId?: string | undefined;
|
|
1257
|
-
propertyId?: string | undefined;
|
|
1258
|
-
alias?: string | undefined;
|
|
1259
|
-
timeSeriesId: string | undefined;
|
|
1260
|
-
dataType: PropertyDataType | undefined;
|
|
1261
|
-
dataTypeSpec?: string | undefined;
|
|
1262
|
-
timeSeriesCreationDate: Date | undefined;
|
|
1263
|
-
timeSeriesLastUpdateDate: Date | undefined;
|
|
1264
|
-
timeSeriesArn: string | undefined;
|
|
1265
|
-
}
|
|
1266
|
-
export interface DisassociateAssetsRequest {
|
|
1267
|
-
assetId: string | undefined;
|
|
1268
|
-
hierarchyId: string | undefined;
|
|
1269
|
-
childAssetId: string | undefined;
|
|
1270
|
-
clientToken?: string | undefined;
|
|
1271
|
-
}
|
|
1272
|
-
export interface DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
1273
|
-
alias: string | undefined;
|
|
1274
|
-
assetId: string | undefined;
|
|
1275
|
-
propertyId: string | undefined;
|
|
1276
|
-
clientToken?: string | undefined;
|
|
1277
|
-
}
|
|
1278
|
-
export interface ExecuteActionRequest {
|
|
1279
|
-
targetResource: TargetResource | undefined;
|
|
1280
|
-
actionDefinitionId: string | undefined;
|
|
1281
|
-
actionPayload: ActionPayload | undefined;
|
|
1282
|
-
clientToken?: string | undefined;
|
|
1283
|
-
resolveTo?: ResolveTo | undefined;
|
|
1284
|
-
}
|
|
1285
|
-
export interface ExecuteActionResponse {
|
|
1286
|
-
actionId: string | undefined;
|
|
1287
|
-
}
|
|
1288
|
-
export interface ExecuteQueryRequest {
|
|
1289
|
-
queryStatement: string | undefined;
|
|
1290
|
-
nextToken?: string | undefined;
|
|
1291
|
-
maxResults?: number | undefined;
|
|
1292
|
-
clientToken?: string | undefined;
|
|
1293
|
-
}
|
|
1294
|
-
export interface ColumnType {
|
|
1295
|
-
scalarType?: ScalarType | undefined;
|
|
1296
|
-
}
|
|
1297
|
-
export interface ColumnInfo {
|
|
1298
|
-
name?: string | undefined;
|
|
1299
|
-
type?: ColumnType | undefined;
|
|
1300
|
-
}
|
|
1301
|
-
export interface GetAssetPropertyAggregatesRequest {
|
|
1302
|
-
assetId?: string | undefined;
|
|
1303
|
-
propertyId?: string | undefined;
|
|
1304
|
-
propertyAlias?: string | undefined;
|
|
1305
|
-
aggregateTypes: AggregateType[] | undefined;
|
|
1306
|
-
resolution: string | undefined;
|
|
1307
|
-
qualities?: Quality[] | undefined;
|
|
1308
|
-
startDate: Date | undefined;
|
|
1309
|
-
endDate: Date | undefined;
|
|
1310
|
-
timeOrdering?: TimeOrdering | undefined;
|
|
1311
|
-
nextToken?: string | undefined;
|
|
1312
|
-
maxResults?: number | undefined;
|
|
1313
|
-
}
|
|
1314
|
-
export interface GetAssetPropertyAggregatesResponse {
|
|
1315
|
-
aggregatedValues: AggregatedValue[] | undefined;
|
|
1316
|
-
nextToken?: string | undefined;
|
|
1317
|
-
}
|
|
1318
|
-
export interface GetAssetPropertyValueRequest {
|
|
1319
|
-
assetId?: string | undefined;
|
|
1320
|
-
propertyId?: string | undefined;
|
|
1321
|
-
propertyAlias?: string | undefined;
|
|
1322
|
-
}
|
|
1323
|
-
export interface GetAssetPropertyValueResponse {
|
|
1324
|
-
propertyValue?: AssetPropertyValue | undefined;
|
|
1325
|
-
}
|
|
1326
|
-
export interface GetAssetPropertyValueHistoryRequest {
|
|
1327
|
-
assetId?: string | undefined;
|
|
1328
|
-
propertyId?: string | undefined;
|
|
1329
|
-
propertyAlias?: string | undefined;
|
|
1330
|
-
startDate?: Date | undefined;
|
|
1331
|
-
endDate?: Date | undefined;
|
|
1332
|
-
qualities?: Quality[] | undefined;
|
|
1333
|
-
timeOrdering?: TimeOrdering | undefined;
|
|
1334
|
-
nextToken?: string | undefined;
|
|
1335
|
-
maxResults?: number | undefined;
|
|
1336
|
-
}
|
|
1337
|
-
export interface GetAssetPropertyValueHistoryResponse {
|
|
1338
|
-
assetPropertyValueHistory: AssetPropertyValue[] | undefined;
|
|
1339
|
-
nextToken?: string | undefined;
|
|
1340
|
-
}
|
|
1341
|
-
export interface GetInterpolatedAssetPropertyValuesRequest {
|
|
1342
|
-
assetId?: string | undefined;
|
|
1343
|
-
propertyId?: string | undefined;
|
|
1344
|
-
propertyAlias?: string | undefined;
|
|
1345
|
-
startTimeInSeconds: number | undefined;
|
|
1346
|
-
startTimeOffsetInNanos?: number | undefined;
|
|
1347
|
-
endTimeInSeconds: number | undefined;
|
|
1348
|
-
endTimeOffsetInNanos?: number | undefined;
|
|
1349
|
-
quality: Quality | undefined;
|
|
1350
|
-
intervalInSeconds: number | undefined;
|
|
1351
|
-
nextToken?: string | undefined;
|
|
1352
|
-
maxResults?: number | undefined;
|
|
1353
|
-
type: string | undefined;
|
|
1354
|
-
intervalWindowInSeconds?: number | undefined;
|
|
1355
|
-
}
|
|
1356
|
-
export interface InterpolatedAssetPropertyValue {
|
|
1357
|
-
timestamp: TimeInNanos | undefined;
|
|
1358
|
-
value: Variant | undefined;
|
|
1359
|
-
}
|
|
1360
|
-
export interface GetInterpolatedAssetPropertyValuesResponse {
|
|
1361
|
-
interpolatedAssetPropertyValues: InterpolatedAssetPropertyValue[] | undefined;
|
|
1362
|
-
nextToken?: string | undefined;
|
|
1363
|
-
}
|
|
1364
|
-
export interface InvokeAssistantRequest {
|
|
1365
|
-
conversationId?: string | undefined;
|
|
1366
|
-
message: string | undefined;
|
|
1367
|
-
enableTrace?: boolean | undefined;
|
|
1368
|
-
}
|
|
1369
|
-
export interface Content {
|
|
1370
|
-
text?: string | undefined;
|
|
1371
|
-
}
|
|
1372
|
-
export interface Location {
|
|
1373
|
-
uri?: string | undefined;
|
|
1374
|
-
}
|
|
1375
|
-
export interface Source {
|
|
1376
|
-
arn?: string | undefined;
|
|
1377
|
-
location?: Location | undefined;
|
|
1378
|
-
}
|
|
1379
|
-
export interface DataSetReference {
|
|
1380
|
-
datasetArn?: string | undefined;
|
|
1381
|
-
source?: Source | undefined;
|
|
1382
|
-
}
|
|
1383
|
-
export interface Reference {
|
|
1384
|
-
dataset?: DataSetReference | undefined;
|
|
1385
|
-
}
|
|
1386
|
-
export interface Citation {
|
|
1387
|
-
reference?: Reference | undefined;
|
|
1388
|
-
content?: Content | undefined;
|
|
1389
|
-
}
|
|
1390
|
-
export interface InvocationOutput {
|
|
1391
|
-
message?: string | undefined;
|
|
1392
|
-
citations?: Citation[] | undefined;
|
|
1393
|
-
}
|
|
1394
|
-
export interface Trace {
|
|
1395
|
-
text?: string | undefined;
|
|
1396
|
-
}
|
|
1397
|
-
export type ResponseStream =
|
|
1398
|
-
| ResponseStream.AccessDeniedExceptionMember
|
|
1399
|
-
| ResponseStream.ConflictingOperationExceptionMember
|
|
1400
|
-
| ResponseStream.InternalFailureExceptionMember
|
|
1401
|
-
| ResponseStream.InvalidRequestExceptionMember
|
|
1402
|
-
| ResponseStream.LimitExceededExceptionMember
|
|
1403
|
-
| ResponseStream.OutputMember
|
|
1404
|
-
| ResponseStream.ResourceNotFoundExceptionMember
|
|
1405
|
-
| ResponseStream.ThrottlingExceptionMember
|
|
1406
|
-
| ResponseStream.TraceMember
|
|
1407
|
-
| ResponseStream.$UnknownMember;
|
|
1408
|
-
export declare namespace ResponseStream {
|
|
1409
|
-
interface TraceMember {
|
|
1410
|
-
trace: Trace;
|
|
1411
|
-
output?: never;
|
|
1412
|
-
accessDeniedException?: never;
|
|
1413
|
-
conflictingOperationException?: never;
|
|
1414
|
-
internalFailureException?: never;
|
|
1415
|
-
invalidRequestException?: never;
|
|
1416
|
-
limitExceededException?: never;
|
|
1417
|
-
resourceNotFoundException?: never;
|
|
1418
|
-
throttlingException?: never;
|
|
1419
|
-
$unknown?: never;
|
|
1420
|
-
}
|
|
1421
|
-
interface OutputMember {
|
|
1422
|
-
trace?: never;
|
|
1423
|
-
output: InvocationOutput;
|
|
1424
|
-
accessDeniedException?: never;
|
|
1425
|
-
conflictingOperationException?: never;
|
|
1426
|
-
internalFailureException?: never;
|
|
1427
|
-
invalidRequestException?: never;
|
|
1428
|
-
limitExceededException?: never;
|
|
1429
|
-
resourceNotFoundException?: never;
|
|
1430
|
-
throttlingException?: never;
|
|
1431
|
-
$unknown?: never;
|
|
1432
|
-
}
|
|
1433
|
-
interface AccessDeniedExceptionMember {
|
|
1434
|
-
trace?: never;
|
|
1435
|
-
output?: never;
|
|
1436
|
-
accessDeniedException: AccessDeniedException;
|
|
1437
|
-
conflictingOperationException?: never;
|
|
1438
|
-
internalFailureException?: never;
|
|
1439
|
-
invalidRequestException?: never;
|
|
1440
|
-
limitExceededException?: never;
|
|
1441
|
-
resourceNotFoundException?: never;
|
|
1442
|
-
throttlingException?: never;
|
|
1443
|
-
$unknown?: never;
|
|
1444
|
-
}
|
|
1445
|
-
interface ConflictingOperationExceptionMember {
|
|
1446
|
-
trace?: never;
|
|
1447
|
-
output?: never;
|
|
1448
|
-
accessDeniedException?: never;
|
|
1449
|
-
conflictingOperationException: ConflictingOperationException;
|
|
1450
|
-
internalFailureException?: never;
|
|
1451
|
-
invalidRequestException?: never;
|
|
1452
|
-
limitExceededException?: never;
|
|
1453
|
-
resourceNotFoundException?: never;
|
|
1454
|
-
throttlingException?: never;
|
|
1455
|
-
$unknown?: never;
|
|
1456
|
-
}
|
|
1457
|
-
interface InternalFailureExceptionMember {
|
|
1458
|
-
trace?: never;
|
|
1459
|
-
output?: never;
|
|
1460
|
-
accessDeniedException?: never;
|
|
1461
|
-
conflictingOperationException?: never;
|
|
1462
|
-
internalFailureException: InternalFailureException;
|
|
1463
|
-
invalidRequestException?: never;
|
|
1464
|
-
limitExceededException?: never;
|
|
1465
|
-
resourceNotFoundException?: never;
|
|
1466
|
-
throttlingException?: never;
|
|
1467
|
-
$unknown?: never;
|
|
1468
|
-
}
|
|
1469
|
-
interface InvalidRequestExceptionMember {
|
|
1470
|
-
trace?: never;
|
|
1471
|
-
output?: never;
|
|
1472
|
-
accessDeniedException?: never;
|
|
1473
|
-
conflictingOperationException?: never;
|
|
1474
|
-
internalFailureException?: never;
|
|
1475
|
-
invalidRequestException: InvalidRequestException;
|
|
1476
|
-
limitExceededException?: never;
|
|
1477
|
-
resourceNotFoundException?: never;
|
|
1478
|
-
throttlingException?: never;
|
|
1479
|
-
$unknown?: never;
|
|
1480
|
-
}
|
|
1481
|
-
interface LimitExceededExceptionMember {
|
|
1482
|
-
trace?: never;
|
|
1483
|
-
output?: never;
|
|
1484
|
-
accessDeniedException?: never;
|
|
1485
|
-
conflictingOperationException?: never;
|
|
1486
|
-
internalFailureException?: never;
|
|
1487
|
-
invalidRequestException?: never;
|
|
1488
|
-
limitExceededException: LimitExceededException;
|
|
1489
|
-
resourceNotFoundException?: never;
|
|
1490
|
-
throttlingException?: never;
|
|
1491
|
-
$unknown?: never;
|
|
1492
|
-
}
|
|
1493
|
-
interface ResourceNotFoundExceptionMember {
|
|
1494
|
-
trace?: never;
|
|
1495
|
-
output?: never;
|
|
1496
|
-
accessDeniedException?: never;
|
|
1497
|
-
conflictingOperationException?: never;
|
|
1498
|
-
internalFailureException?: never;
|
|
1499
|
-
invalidRequestException?: never;
|
|
1500
|
-
limitExceededException?: never;
|
|
1501
|
-
resourceNotFoundException: ResourceNotFoundException;
|
|
1502
|
-
throttlingException?: never;
|
|
1503
|
-
$unknown?: never;
|
|
1504
|
-
}
|
|
1505
|
-
interface ThrottlingExceptionMember {
|
|
1506
|
-
trace?: never;
|
|
1507
|
-
output?: never;
|
|
1508
|
-
accessDeniedException?: never;
|
|
1509
|
-
conflictingOperationException?: never;
|
|
1510
|
-
internalFailureException?: never;
|
|
1511
|
-
invalidRequestException?: never;
|
|
1512
|
-
limitExceededException?: never;
|
|
1513
|
-
resourceNotFoundException?: never;
|
|
1514
|
-
throttlingException: ThrottlingException;
|
|
1515
|
-
$unknown?: never;
|
|
1516
|
-
}
|
|
1517
|
-
interface $UnknownMember {
|
|
1518
|
-
trace?: never;
|
|
1519
|
-
output?: never;
|
|
1520
|
-
accessDeniedException?: never;
|
|
1521
|
-
conflictingOperationException?: never;
|
|
1522
|
-
internalFailureException?: never;
|
|
1523
|
-
invalidRequestException?: never;
|
|
1524
|
-
limitExceededException?: never;
|
|
1525
|
-
resourceNotFoundException?: never;
|
|
1526
|
-
throttlingException?: never;
|
|
1527
|
-
$unknown: [string, any];
|
|
1528
|
-
}
|
|
1529
|
-
interface Visitor<T> {
|
|
1530
|
-
trace: (value: Trace) => T;
|
|
1531
|
-
output: (value: InvocationOutput) => T;
|
|
1532
|
-
accessDeniedException: (value: AccessDeniedException) => T;
|
|
1533
|
-
conflictingOperationException: (value: ConflictingOperationException) => T;
|
|
1534
|
-
internalFailureException: (value: InternalFailureException) => T;
|
|
1535
|
-
invalidRequestException: (value: InvalidRequestException) => T;
|
|
1536
|
-
limitExceededException: (value: LimitExceededException) => T;
|
|
1537
|
-
resourceNotFoundException: (value: ResourceNotFoundException) => T;
|
|
1538
|
-
throttlingException: (value: ThrottlingException) => T;
|
|
1539
|
-
_: (name: string, value: any) => T;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
export interface InvokeAssistantResponse {
|
|
1543
|
-
body: AsyncIterable<ResponseStream> | undefined;
|
|
1544
|
-
conversationId: string | undefined;
|
|
1545
|
-
}
|
|
1546
|
-
export interface ListAccessPoliciesRequest {
|
|
1547
|
-
identityType?: IdentityType | undefined;
|
|
1548
|
-
identityId?: string | undefined;
|
|
1549
|
-
resourceType?: ResourceType | undefined;
|
|
1550
|
-
resourceId?: string | undefined;
|
|
1551
|
-
iamArn?: string | undefined;
|
|
1552
|
-
nextToken?: string | undefined;
|
|
1553
|
-
maxResults?: number | undefined;
|
|
1554
|
-
}
|
|
1555
|
-
export interface ListAccessPoliciesResponse {
|
|
1556
|
-
accessPolicySummaries: AccessPolicySummary[] | undefined;
|
|
1557
|
-
nextToken?: string | undefined;
|
|
1558
|
-
}
|
|
1559
|
-
export interface ListActionsRequest {
|
|
1560
|
-
targetResourceType: TargetResourceType | undefined;
|
|
1561
|
-
targetResourceId: string | undefined;
|
|
1562
|
-
nextToken?: string | undefined;
|
|
1563
|
-
maxResults?: number | undefined;
|
|
1564
|
-
resolveToResourceType?: ResolveToResourceType | undefined;
|
|
1565
|
-
resolveToResourceId?: string | undefined;
|
|
1566
|
-
}
|
|
1567
|
-
export interface ListActionsResponse {
|
|
1568
|
-
actionSummaries: ActionSummary[] | undefined;
|
|
1569
|
-
nextToken: string | undefined;
|
|
1570
|
-
}
|
|
1571
|
-
export interface ListAssetModelCompositeModelsRequest {
|
|
1572
|
-
assetModelId: string | undefined;
|
|
1573
|
-
nextToken?: string | undefined;
|
|
1574
|
-
maxResults?: number | undefined;
|
|
1575
|
-
assetModelVersion?: string | undefined;
|
|
1576
|
-
}
|
|
1577
|
-
export interface ListAssetModelCompositeModelsResponse {
|
|
1578
|
-
assetModelCompositeModelSummaries: AssetModelCompositeModelSummary[] | undefined;
|
|
1579
|
-
nextToken?: string | undefined;
|
|
1580
|
-
}
|
|
1581
|
-
export interface ListAssetModelPropertiesRequest {
|
|
1582
|
-
assetModelId: string | undefined;
|
|
1583
|
-
nextToken?: string | undefined;
|
|
1584
|
-
maxResults?: number | undefined;
|
|
1585
|
-
filter?: ListAssetModelPropertiesFilter | undefined;
|
|
1586
|
-
assetModelVersion?: string | undefined;
|
|
1587
|
-
}
|
|
1588
|
-
export interface ListAssetModelPropertiesResponse {
|
|
1589
|
-
assetModelPropertySummaries: AssetModelPropertySummary[] | undefined;
|
|
1590
|
-
nextToken?: string | undefined;
|
|
1591
|
-
}
|
|
1592
|
-
export interface ListAssetModelsRequest {
|
|
1593
|
-
assetModelTypes?: AssetModelType[] | undefined;
|
|
1594
|
-
nextToken?: string | undefined;
|
|
1595
|
-
maxResults?: number | undefined;
|
|
1596
|
-
assetModelVersion?: string | undefined;
|
|
1597
|
-
}
|
|
1598
|
-
export interface ListAssetModelsResponse {
|
|
1599
|
-
assetModelSummaries: AssetModelSummary[] | undefined;
|
|
1600
|
-
nextToken?: string | undefined;
|
|
1601
|
-
}
|
|
1602
|
-
export interface ListAssetPropertiesRequest {
|
|
1603
|
-
assetId: string | undefined;
|
|
1604
|
-
nextToken?: string | undefined;
|
|
1605
|
-
maxResults?: number | undefined;
|
|
1606
|
-
filter?: ListAssetPropertiesFilter | undefined;
|
|
1607
|
-
}
|
|
1608
|
-
export interface ListAssetPropertiesResponse {
|
|
1609
|
-
assetPropertySummaries: AssetPropertySummary[] | undefined;
|
|
1610
|
-
nextToken?: string | undefined;
|
|
1611
|
-
}
|
|
1612
|
-
export interface ListAssetRelationshipsRequest {
|
|
1613
|
-
assetId: string | undefined;
|
|
1614
|
-
traversalType: TraversalType | undefined;
|
|
1615
|
-
nextToken?: string | undefined;
|
|
1616
|
-
maxResults?: number | undefined;
|
|
1617
|
-
}
|
|
1618
|
-
export interface ListAssetRelationshipsResponse {
|
|
1619
|
-
assetRelationshipSummaries: AssetRelationshipSummary[] | undefined;
|
|
1620
|
-
nextToken?: string | undefined;
|
|
1621
|
-
}
|
|
1622
|
-
export interface ListAssetsRequest {
|
|
1623
|
-
nextToken?: string | undefined;
|
|
1624
|
-
maxResults?: number | undefined;
|
|
1625
|
-
assetModelId?: string | undefined;
|
|
1626
|
-
filter?: ListAssetsFilter | undefined;
|
|
1627
|
-
}
|
|
1628
|
-
export interface ListAssetsResponse {
|
|
1629
|
-
assetSummaries: AssetSummary[] | undefined;
|
|
1630
|
-
nextToken?: string | undefined;
|
|
1631
|
-
}
|
|
1632
|
-
export interface ListAssociatedAssetsRequest {
|
|
1633
|
-
assetId: string | undefined;
|
|
1634
|
-
hierarchyId?: string | undefined;
|
|
1635
|
-
traversalDirection?: TraversalDirection | undefined;
|
|
1636
|
-
nextToken?: string | undefined;
|
|
1637
|
-
maxResults?: number | undefined;
|
|
1638
|
-
}
|
|
1639
|
-
export interface ListAssociatedAssetsResponse {
|
|
1640
|
-
assetSummaries: AssociatedAssetsSummary[] | undefined;
|
|
1641
|
-
nextToken?: string | undefined;
|
|
1642
|
-
}
|
|
1643
|
-
export interface ListBulkImportJobsRequest {
|
|
1644
|
-
nextToken?: string | undefined;
|
|
1645
|
-
maxResults?: number | undefined;
|
|
1646
|
-
filter?: ListBulkImportJobsFilter | undefined;
|
|
1647
|
-
}
|
|
1648
|
-
export interface JobSummary {
|
|
1649
|
-
id: string | undefined;
|
|
1650
|
-
name: string | undefined;
|
|
1651
|
-
status: JobStatus | undefined;
|
|
1652
|
-
}
|
|
1653
|
-
export interface ListBulkImportJobsResponse {
|
|
1654
|
-
jobSummaries: JobSummary[] | undefined;
|
|
1655
|
-
nextToken?: string | undefined;
|
|
1656
|
-
}
|
|
1657
|
-
export interface ListCompositionRelationshipsRequest {
|
|
1658
|
-
assetModelId: string | undefined;
|
|
1659
|
-
nextToken?: string | undefined;
|
|
1660
|
-
maxResults?: number | undefined;
|
|
1661
|
-
}
|
|
1662
|
-
export interface CompositionRelationshipSummary {
|
|
1663
|
-
assetModelId: string | undefined;
|
|
1664
|
-
assetModelCompositeModelId: string | undefined;
|
|
1665
|
-
assetModelCompositeModelType: string | undefined;
|
|
1666
|
-
}
|
|
1667
|
-
export interface ListCompositionRelationshipsResponse {
|
|
1668
|
-
compositionRelationshipSummaries: CompositionRelationshipSummary[] | undefined;
|
|
1669
|
-
nextToken?: string | undefined;
|
|
1670
|
-
}
|
|
1671
|
-
export interface DataBindingValueFilter {
|
|
1672
|
-
asset?: AssetBindingValueFilter | undefined;
|
|
1673
|
-
assetModel?: AssetModelBindingValueFilter | undefined;
|
|
1674
|
-
assetProperty?: AssetPropertyBindingValueFilter | undefined;
|
|
1675
|
-
assetModelProperty?: AssetModelPropertyBindingValueFilter | undefined;
|
|
1676
|
-
}
|
|
1677
|
-
export interface ListComputationModelDataBindingUsagesRequest {
|
|
1678
|
-
dataBindingValueFilter: DataBindingValueFilter | undefined;
|
|
1679
|
-
nextToken?: string | undefined;
|
|
1680
|
-
maxResults?: number | undefined;
|
|
1681
|
-
}
|
|
1682
|
-
export interface DataBindingValue {
|
|
1683
|
-
assetModelProperty?: AssetModelPropertyBindingValue | undefined;
|
|
1684
|
-
assetProperty?: AssetPropertyBindingValue | undefined;
|
|
1685
|
-
}
|
|
1686
|
-
export interface MatchedDataBinding {
|
|
1687
|
-
value: DataBindingValue | undefined;
|
|
1688
|
-
}
|
|
1689
|
-
export interface ComputationModelDataBindingUsageSummary {
|
|
1690
|
-
computationModelIds: string[] | undefined;
|
|
1691
|
-
matchedDataBinding: MatchedDataBinding | undefined;
|
|
1692
|
-
}
|
|
1693
|
-
export interface ListComputationModelDataBindingUsagesResponse {
|
|
1694
|
-
dataBindingUsageSummaries: ComputationModelDataBindingUsageSummary[] | undefined;
|
|
1695
|
-
nextToken?: string | undefined;
|
|
1696
|
-
}
|
|
1697
|
-
export interface ListComputationModelResolveToResourcesRequest {
|
|
1698
|
-
computationModelId: string | undefined;
|
|
1699
|
-
nextToken?: string | undefined;
|
|
1700
|
-
maxResults?: number | undefined;
|
|
1701
|
-
}
|
|
1702
|
-
export interface ComputationModelResolveToResourceSummary {
|
|
1703
|
-
resolveTo?: ResolveTo | undefined;
|
|
1704
|
-
}
|
|
1705
|
-
export interface ListComputationModelResolveToResourcesResponse {
|
|
1706
|
-
computationModelResolveToResourceSummaries:
|
|
1707
|
-
| ComputationModelResolveToResourceSummary[]
|
|
1708
|
-
| undefined;
|
|
1709
|
-
nextToken?: string | undefined;
|
|
1710
|
-
}
|
|
1711
|
-
export interface ListComputationModelsRequest {
|
|
1712
|
-
computationModelType?: ComputationModelType | undefined;
|
|
1713
|
-
nextToken?: string | undefined;
|
|
1714
|
-
maxResults?: number | undefined;
|
|
1715
|
-
}
|
|
1716
|
-
export interface ComputationModelSummary {
|
|
1717
|
-
id: string | undefined;
|
|
1718
|
-
arn: string | undefined;
|
|
1719
|
-
name: string | undefined;
|
|
1720
|
-
description?: string | undefined;
|
|
1721
|
-
type: ComputationModelType | undefined;
|
|
1722
|
-
creationDate: Date | undefined;
|
|
1723
|
-
lastUpdateDate: Date | undefined;
|
|
1724
|
-
status: ComputationModelStatus | undefined;
|
|
1725
|
-
version: string | undefined;
|
|
1726
|
-
}
|
|
1727
|
-
export interface ListComputationModelsResponse {
|
|
1728
|
-
computationModelSummaries: ComputationModelSummary[] | undefined;
|
|
1729
|
-
nextToken?: string | undefined;
|
|
1730
|
-
}
|
|
1731
|
-
export interface ListDashboardsRequest {
|
|
1732
|
-
projectId: string | undefined;
|
|
1733
|
-
nextToken?: string | undefined;
|
|
1734
|
-
maxResults?: number | undefined;
|
|
1735
|
-
}
|
|
1736
|
-
export interface DashboardSummary {
|
|
1737
|
-
id: string | undefined;
|
|
1738
|
-
name: string | undefined;
|
|
1739
|
-
description?: string | undefined;
|
|
1740
|
-
creationDate?: Date | undefined;
|
|
1741
|
-
lastUpdateDate?: Date | undefined;
|
|
1742
|
-
}
|
|
1743
|
-
export interface ListDashboardsResponse {
|
|
1744
|
-
dashboardSummaries: DashboardSummary[] | undefined;
|
|
1745
|
-
nextToken?: string | undefined;
|
|
1746
|
-
}
|
|
1747
|
-
export interface ListDatasetsRequest {
|
|
1748
|
-
sourceType: DatasetSourceType | undefined;
|
|
1749
|
-
nextToken?: string | undefined;
|
|
1750
|
-
maxResults?: number | undefined;
|
|
1751
|
-
}
|
|
1752
|
-
export interface DatasetSummary {
|
|
1753
|
-
id: string | undefined;
|
|
1754
|
-
arn: string | undefined;
|
|
1755
|
-
name: string | undefined;
|
|
1756
|
-
description: string | undefined;
|
|
1757
|
-
creationDate: Date | undefined;
|
|
1758
|
-
lastUpdateDate: Date | undefined;
|
|
1759
|
-
status: DatasetStatus | undefined;
|
|
1760
|
-
}
|
|
1761
|
-
export interface ListDatasetsResponse {
|
|
1762
|
-
datasetSummaries: DatasetSummary[] | undefined;
|
|
1763
|
-
nextToken?: string | undefined;
|
|
1764
|
-
}
|
|
1765
|
-
export interface ListExecutionsRequest {
|
|
1766
|
-
targetResourceType: TargetResourceType | undefined;
|
|
1767
|
-
targetResourceId: string | undefined;
|
|
1768
|
-
resolveToResourceType?: ResolveToResourceType | undefined;
|
|
1769
|
-
resolveToResourceId?: string | undefined;
|
|
1770
|
-
nextToken?: string | undefined;
|
|
1771
|
-
maxResults?: number | undefined;
|
|
1772
|
-
actionType?: string | undefined;
|
|
1773
|
-
}
|
|
1774
|
-
export interface ExecutionSummary {
|
|
1775
|
-
executionId: string | undefined;
|
|
1776
|
-
actionType?: string | undefined;
|
|
1777
|
-
targetResource: TargetResource | undefined;
|
|
1778
|
-
targetResourceVersion: string | undefined;
|
|
1779
|
-
resolveTo?: ResolveTo | undefined;
|
|
1780
|
-
executionStartTime: Date | undefined;
|
|
1781
|
-
executionEndTime?: Date | undefined;
|
|
1782
|
-
executionStatus: ExecutionStatus | undefined;
|
|
1783
|
-
executionEntityVersion?: string | undefined;
|
|
1784
|
-
}
|
|
1785
|
-
export interface ListExecutionsResponse {
|
|
1786
|
-
executionSummaries: ExecutionSummary[] | undefined;
|
|
1787
|
-
nextToken?: string | undefined;
|
|
1788
|
-
}
|
|
1789
|
-
export interface ListGatewaysRequest {
|
|
1790
|
-
nextToken?: string | undefined;
|
|
1791
|
-
maxResults?: number | undefined;
|
|
1792
|
-
}
|
|
1793
|
-
export interface GatewaySummary {
|
|
1794
|
-
gatewayId: string | undefined;
|
|
1795
|
-
gatewayName: string | undefined;
|
|
1796
|
-
gatewayPlatform?: GatewayPlatform | undefined;
|
|
1797
|
-
gatewayVersion?: string | undefined;
|
|
1798
|
-
gatewayCapabilitySummaries?: GatewayCapabilitySummary[] | undefined;
|
|
1799
|
-
creationDate: Date | undefined;
|
|
1800
|
-
lastUpdateDate: Date | undefined;
|
|
1801
|
-
}
|
|
1802
|
-
export interface ListGatewaysResponse {
|
|
1803
|
-
gatewaySummaries: GatewaySummary[] | undefined;
|
|
1804
|
-
nextToken?: string | undefined;
|
|
1721
|
+
export interface DescribeQueryRequest {
|
|
1722
|
+
workspaceName: string | undefined;
|
|
1723
|
+
queryId: string | undefined;
|
|
1724
|
+
}
|
|
1725
|
+
export interface QueryStatistics {
|
|
1726
|
+
rowCount: number | undefined;
|
|
1727
|
+
bytesScanned: number | undefined;
|
|
1728
|
+
executionTimeInMillis: number | undefined;
|
|
1729
|
+
}
|
|
1730
|
+
export interface DescribeQueryResponse {
|
|
1731
|
+
queryId: string | undefined;
|
|
1732
|
+
status: QueryStatus | undefined;
|
|
1733
|
+
submittedAt: Date | undefined;
|
|
1734
|
+
completedAt?: Date | undefined;
|
|
1735
|
+
statistics?: QueryStatistics | undefined;
|
|
1736
|
+
errorMessage?: string | undefined;
|
|
1737
|
+
}
|
|
1738
|
+
export interface DescribeSearchRequest {
|
|
1739
|
+
workspaceName: string | undefined;
|
|
1740
|
+
searchId: string | undefined;
|
|
1805
1741
|
}
|