@aws-sdk/client-iotsitewise 3.1097.0 → 3.1099.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +315 -0
- package/dist-cjs/index.js +2189 -237
- package/dist-es/IoTSiteWise.js +118 -0
- package/dist-es/commands/BatchAssociateDataSegmentsToDatasetCommand.js +4 -0
- package/dist-es/commands/BatchDeleteDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/BatchDisassociateDataSegmentsFromDatasetCommand.js +4 -0
- package/dist-es/commands/CancelEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CancelPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/CancelQueryCommand.js +4 -0
- package/dist-es/commands/CreateApplicationCommand.js +4 -0
- package/dist-es/commands/CreateDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/CreateEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/CreatePipelineCommand.js +4 -0
- package/dist-es/commands/CreateTaskCommand.js +4 -0
- package/dist-es/commands/CreateWorkspaceCommand.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +4 -0
- package/dist-es/commands/DeletePipelineCommand.js +4 -0
- package/dist-es/commands/DeleteTaskCommand.js +4 -0
- package/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
- package/dist-es/commands/DescribeApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeDatasetExportJobCommand.js +4 -0
- package/dist-es/commands/DescribeEnrichmentJobCommand.js +4 -0
- package/dist-es/commands/DescribePipelineCommand.js +4 -0
- package/dist-es/commands/DescribePipelineExecutionCommand.js +4 -0
- package/dist-es/commands/DescribeQueryCommand.js +4 -0
- package/dist-es/commands/DescribeSearchCommand.js +4 -0
- package/dist-es/commands/DescribeTaskCommand.js +4 -0
- package/dist-es/commands/DescribeWorkspaceCommand.js +4 -0
- package/dist-es/commands/GetCaptureDataCommand.js +4 -0
- package/dist-es/commands/GetQueryResultsCommand.js +4 -0
- package/dist-es/commands/GetSearchResultsCommand.js +4 -0
- package/dist-es/commands/ListApplicationsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentRelationshipsCommand.js +4 -0
- package/dist-es/commands/ListDatasetDataSegmentsCommand.js +4 -0
- package/dist-es/commands/ListDatasetExportJobsCommand.js +4 -0
- package/dist-es/commands/ListEnrichmentJobsCommand.js +4 -0
- package/dist-es/commands/ListPipelineExecutionsCommand.js +4 -0
- package/dist-es/commands/ListPipelinesCommand.js +4 -0
- package/dist-es/commands/ListQueriesCommand.js +4 -0
- package/dist-es/commands/ListSearchesCommand.js +4 -0
- package/dist-es/commands/ListTasksCommand.js +4 -0
- package/dist-es/commands/ListWorkspacesCommand.js +4 -0
- package/dist-es/commands/StartPipelineExecutionCommand.js +4 -0
- package/dist-es/commands/StartQueryCommand.js +4 -0
- package/dist-es/commands/StartSearchCommand.js +4 -0
- package/dist-es/commands/UpdatePipelineCommand.js +4 -0
- package/dist-es/commands/UpdateTaskCommand.js +4 -0
- package/dist-es/commands/UpdateWorkspaceCommand.js +4 -0
- package/dist-es/commands/index.js +45 -0
- package/dist-es/models/enums.js +157 -3
- package/dist-es/pagination/DescribePipelineExecutionPaginator.js +4 -0
- package/dist-es/pagination/GetQueryResultsPaginator.js +4 -0
- package/dist-es/pagination/GetSearchResultsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetDataSegmentsPaginator.js +4 -0
- package/dist-es/pagination/ListDatasetExportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListEnrichmentJobsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListPipelinesPaginator.js +4 -0
- package/dist-es/pagination/ListQueriesPaginator.js +4 -0
- package/dist-es/pagination/ListSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListTasksPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +14 -0
- package/dist-es/schemas/schemas_0.js +1544 -233
- package/dist-types/IoTSiteWise.d.ts +415 -0
- package/dist-types/IoTSiteWiseClient.d.ts +47 -2
- package/dist-types/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +133 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +125 -0
- package/dist-types/commands/CancelEnrichmentJobCommand.d.ts +124 -0
- package/dist-types/commands/CancelPipelineExecutionCommand.d.ts +103 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +96 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +111 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +28 -5
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -3
- package/dist-types/commands/CreateDatasetExportJobCommand.d.ts +141 -0
- package/dist-types/commands/CreateEnrichmentJobCommand.d.ts +147 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +136 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +133 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +119 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +93 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +104 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +103 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +103 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +100 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +23 -3
- package/dist-types/commands/DescribeDatasetCommand.d.ts +27 -2
- package/dist-types/commands/DescribeDatasetExportJobCommand.d.ts +138 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEnrichmentJobCommand.d.ts +151 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +4 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +120 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +156 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +100 -0
- package/dist-types/commands/DescribeSearchCommand.d.ts +102 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +120 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +4 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCaptureDataCommand.d.ts +116 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +104 -0
- package/dist-types/commands/GetSearchResultsCommand.d.ts +118 -0
- package/dist-types/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +2 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +4 -1
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +107 -0
- package/dist-types/commands/ListDatasetDataSegmentsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.d.ts +102 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -2
- package/dist-types/commands/ListEnrichmentJobsCommand.d.ts +151 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +126 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +109 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +101 -0
- package/dist-types/commands/ListSearchesCommand.d.ts +119 -0
- package/dist-types/commands/ListTasksCommand.d.ts +109 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +3 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +103 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +118 -0
- package/dist-types/commands/StartQueryCommand.d.ts +97 -0
- package/dist-types/commands/StartSearchCommand.d.ts +131 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +7 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +3 -2
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -1
- package/dist-types/commands/UpdateDatasetCommand.d.ts +21 -2
- package/dist-types/commands/UpdatePipelineCommand.d.ts +127 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +7 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +7 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +120 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +45 -0
- package/dist-types/models/enums.d.ts +350 -4
- package/dist-types/models/models_0.d.ts +2607 -2755
- package/dist-types/models/models_1.d.ts +4139 -33
- package/dist-types/pagination/DescribePipelineExecutionPaginator.d.ts +7 -0
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/GetSearchResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetDataSegmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatasetExportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnrichmentJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQueriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +14 -0
- package/dist-types/schemas/schemas_0.d.ts +190 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +841 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +248 -2
- package/dist-types/ts3.4/commands/BatchAssociateDataSegmentsToDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDisassociateDataSegmentsFromDatasetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelPipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateDatasetExportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeDatasetExportJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEnrichmentJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeTimeSeriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetAssetPropertyAggregatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetPropertyValueHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCaptureDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSearchResultsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssociatedAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListBulkImportJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelDataBindingUsagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelResolveToResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListComputationModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetDataSegmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDatasetExportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnrichmentJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSearchesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +45 -0
- package/dist-types/ts3.4/models/enums.d.ts +188 -4
- package/dist-types/ts3.4/models/models_0.d.ts +550 -614
- package/dist-types/ts3.4/models/models_1.d.ts +1048 -4
- package/dist-types/ts3.4/pagination/DescribePipelineExecutionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetSearchResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetDataSegmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatasetExportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnrichmentJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -0
- package/package.json +6 -6
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UpdatePipelineCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface UpdatePipelineCommandInput extends UpdatePipelineRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link UpdatePipelineCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdatePipelineCommandOutput extends UpdatePipelineResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const UpdatePipelineCommand_base: {
|
|
22
|
+
new (input: UpdatePipelineCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipelineCommandInput, UpdatePipelineCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdatePipelineCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipelineCommandInput, UpdatePipelineCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Updates an existing pipeline in the specified workspace. Only the fields
|
|
28
|
+
* provided in the request are updated; fields not included in the request are preserved
|
|
29
|
+
* unchanged. You can update the pipeline description, environment variables, and the
|
|
30
|
+
* list of compute nodes independently.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { IoTSiteWiseClient, UpdatePipelineCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
35
|
+
* // const { IoTSiteWiseClient, UpdatePipelineCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
36
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
37
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
38
|
+
* const client = new IoTSiteWiseClient(config);
|
|
39
|
+
* const input = { // UpdatePipelineRequest
|
|
40
|
+
* workspaceName: "STRING_VALUE", // required
|
|
41
|
+
* pipelineName: "STRING_VALUE", // required
|
|
42
|
+
* description: "STRING_VALUE",
|
|
43
|
+
* environmentVariables: { // EnvironmentVariablesMap
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* computations: [ // ComputeNodeList
|
|
47
|
+
* { // ComputeNode
|
|
48
|
+
* computeNodeName: "STRING_VALUE", // required
|
|
49
|
+
* taskName: "STRING_VALUE", // required
|
|
50
|
+
* environmentVariables: {
|
|
51
|
+
* "<keys>": "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* dependsOn: [ // ComputeNodeNameList
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* };
|
|
59
|
+
* const command = new UpdatePipelineCommand(input);
|
|
60
|
+
* const response = await client.send(command);
|
|
61
|
+
* // { // UpdatePipelineResponse
|
|
62
|
+
* // version: "STRING_VALUE", // required
|
|
63
|
+
* // status: { // ResourceStatus
|
|
64
|
+
* // error: { // ResourceError
|
|
65
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE",
|
|
66
|
+
* // message: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED",
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param UpdatePipelineCommandInput - {@link UpdatePipelineCommandInput}
|
|
75
|
+
* @returns {@link UpdatePipelineCommandOutput}
|
|
76
|
+
* @see {@link UpdatePipelineCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link UpdatePipelineCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
81
|
+
* <p>Access is denied.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
84
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
85
|
+
* than one operation on the same resource at the same time.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
88
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
91
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
92
|
+
* unsupported characters. Check your request and try again.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
95
|
+
* <p>You've reached the quota for a resource. For example, this can occur if you're trying to
|
|
96
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
97
|
+
* allowed number of properties for an asset model.</p>
|
|
98
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
101
|
+
* <p>The requested resource can't be found.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
104
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
105
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
106
|
+
* on.</p>
|
|
107
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
111
|
+
*
|
|
112
|
+
*
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class UpdatePipelineCommand extends UpdatePipelineCommand_base {
|
|
116
|
+
/** @internal type navigation helper, not in runtime. */
|
|
117
|
+
protected static __types: {
|
|
118
|
+
api: {
|
|
119
|
+
input: UpdatePipelineRequest;
|
|
120
|
+
output: UpdatePipelineResponse;
|
|
121
|
+
};
|
|
122
|
+
sdk: {
|
|
123
|
+
input: UpdatePipelineCommandInput;
|
|
124
|
+
output: UpdatePipelineCommandOutput;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
}
|
|
@@ -24,7 +24,13 @@ declare const UpdatePortalCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <
|
|
27
|
+
* <important>
|
|
28
|
+
* <p>The IoT SiteWise Monitor feature will no longer be open to new
|
|
29
|
+
* customers starting November 7, 2025. If you would like to use the IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can
|
|
30
|
+
* continue to use the service as normal. For more information, see
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html">IoT SiteWise Monitor availability change</a>.</p>
|
|
32
|
+
* </important>
|
|
33
|
+
* <p>Updates an IoT SiteWise Monitor portal.</p>
|
|
28
34
|
* @example
|
|
29
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
36
|
* ```javascript
|
|
@@ -24,7 +24,13 @@ declare const UpdateProjectCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <
|
|
27
|
+
* <important>
|
|
28
|
+
* <p>The IoT SiteWise Monitor feature will no longer be open to new
|
|
29
|
+
* customers starting November 7, 2025. If you would like to use the IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can
|
|
30
|
+
* continue to use the service as normal. For more information, see
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html">IoT SiteWise Monitor availability change</a>.</p>
|
|
32
|
+
* </important>
|
|
33
|
+
* <p>Updates an IoT SiteWise Monitor project.</p>
|
|
28
34
|
* @example
|
|
29
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
36
|
* ```javascript
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UpdateTaskCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface UpdateTaskCommandInput extends UpdateTaskRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link UpdateTaskCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const UpdateTaskCommand_base: {
|
|
22
|
+
new (input: UpdateTaskCommandInput): import("@smithy/core/client").CommandImpl<UpdateTaskCommandInput, UpdateTaskCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateTaskCommandInput): import("@smithy/core/client").CommandImpl<UpdateTaskCommandInput, UpdateTaskCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Updates an existing task in the specified workspace. Only the fields
|
|
28
|
+
* provided in the request are updated; fields not included in the request are preserved
|
|
29
|
+
* unchanged.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { IoTSiteWiseClient, UpdateTaskCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
34
|
+
* // const { IoTSiteWiseClient, UpdateTaskCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
35
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
36
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
37
|
+
* const client = new IoTSiteWiseClient(config);
|
|
38
|
+
* const input = { // UpdateTaskRequest
|
|
39
|
+
* workspaceName: "STRING_VALUE", // required
|
|
40
|
+
* taskName: "STRING_VALUE", // required
|
|
41
|
+
* description: "STRING_VALUE",
|
|
42
|
+
* taskConfiguration: { // TaskConfiguration Union: only one key present
|
|
43
|
+
* containerTaskConfiguration: { // ContainerTaskConfiguration
|
|
44
|
+
* ecrUri: "STRING_VALUE", // required
|
|
45
|
+
* taskExecutionRole: "STRING_VALUE", // required
|
|
46
|
+
* processingType: "GENERIC_COMPUTE_PROCESSING" || "HARDWARE_ACCELERATED_PROCESSING", // required
|
|
47
|
+
* processingUnit: "UNITS_2" || "UNITS_4" || "UNITS_8" || "UNITS_12" || "UNITS_16" || "UNITS_24" || "UNITS_32" || "UNITS_36" || "UNITS_48" || "UNITS_60" || "UNITS_64" || "UNITS_72" || "UNITS_84" || "UNITS_96", // required
|
|
48
|
+
* command: [ // CommandList
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* timeoutSeconds: Number("long"),
|
|
52
|
+
* environmentVariables: { // EnvironmentVariablesMap
|
|
53
|
+
* "<keys>": "STRING_VALUE",
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* };
|
|
58
|
+
* const command = new UpdateTaskCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* // { // UpdateTaskResponse
|
|
61
|
+
* // version: "STRING_VALUE", // required
|
|
62
|
+
* // status: { // ResourceStatus
|
|
63
|
+
* // error: { // ResourceError
|
|
64
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE",
|
|
65
|
+
* // message: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED",
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param UpdateTaskCommandInput - {@link UpdateTaskCommandInput}
|
|
74
|
+
* @returns {@link UpdateTaskCommandOutput}
|
|
75
|
+
* @see {@link UpdateTaskCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link UpdateTaskCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
80
|
+
* <p>Access is denied.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
83
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
84
|
+
* than one operation on the same resource at the same time.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
87
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
90
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
91
|
+
* unsupported characters. Check your request and try again.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
94
|
+
* <p>The requested resource can't be found.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
97
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
98
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
99
|
+
* on.</p>
|
|
100
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
104
|
+
*
|
|
105
|
+
*
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class UpdateTaskCommand extends UpdateTaskCommand_base {
|
|
109
|
+
/** @internal type navigation helper, not in runtime. */
|
|
110
|
+
protected static __types: {
|
|
111
|
+
api: {
|
|
112
|
+
input: UpdateTaskRequest;
|
|
113
|
+
output: UpdateTaskResponse;
|
|
114
|
+
};
|
|
115
|
+
sdk: {
|
|
116
|
+
input: UpdateTaskCommandInput;
|
|
117
|
+
output: UpdateTaskCommandOutput;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UpdateWorkspaceCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link UpdateWorkspaceCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const UpdateWorkspaceCommand_base: {
|
|
22
|
+
new (input: UpdateWorkspaceCommandInput): import("@smithy/core/client").CommandImpl<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateWorkspaceCommandInput): import("@smithy/core/client").CommandImpl<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, import("..").IoTSiteWiseClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Updates a workspace. You can update only workspaces in the <code>ACTIVE</code> or
|
|
28
|
+
* <code>FAILED</code> state. Fields that you omit from the request are left unchanged. To
|
|
29
|
+
* recover a workspace in the <code>FAILED</code> state, call this operation and supply its
|
|
30
|
+
* encryption configuration again.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { IoTSiteWiseClient, UpdateWorkspaceCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
35
|
+
* // const { IoTSiteWiseClient, UpdateWorkspaceCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
36
|
+
* // import type { IoTSiteWiseClientConfig } from "@aws-sdk/client-iotsitewise";
|
|
37
|
+
* const config = {}; // type is IoTSiteWiseClientConfig
|
|
38
|
+
* const client = new IoTSiteWiseClient(config);
|
|
39
|
+
* const input = { // UpdateWorkspaceRequest
|
|
40
|
+
* workspaceName: "STRING_VALUE", // required
|
|
41
|
+
* workspaceDescription: "STRING_VALUE",
|
|
42
|
+
* encryptionConfiguration: { // WorkspaceEncryptionConfiguration
|
|
43
|
+
* encryptionType: "SITEWISE_DEFAULT_ENCRYPTION" || "KMS_BASED_ENCRYPTION", // required
|
|
44
|
+
* kmsKeyId: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* clientToken: "STRING_VALUE",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new UpdateWorkspaceCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // UpdateWorkspaceResponse
|
|
51
|
+
* // workspaceStatus: { // WorkspaceStatus
|
|
52
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "FAILED", // required
|
|
53
|
+
* // error: { // WorkspaceErrorDetails
|
|
54
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE", // required
|
|
55
|
+
* // message: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param UpdateWorkspaceCommandInput - {@link UpdateWorkspaceCommandInput}
|
|
63
|
+
* @returns {@link UpdateWorkspaceCommandOutput}
|
|
64
|
+
* @see {@link UpdateWorkspaceCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link UpdateWorkspaceCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
69
|
+
* <p>Access is denied.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
72
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
73
|
+
* than one operation on the same resource at the same time.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
76
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
79
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
80
|
+
* unsupported characters. Check your request and try again.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
83
|
+
* <p>The requested resource can't be found.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
86
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
87
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
88
|
+
* on.</p>
|
|
89
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class UpdateWorkspaceCommand extends UpdateWorkspaceCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: UpdateWorkspaceRequest;
|
|
102
|
+
output: UpdateWorkspaceResponse;
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: UpdateWorkspaceCommandInput;
|
|
106
|
+
output: UpdateWorkspaceCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
export * from "./AssociateAssetsCommand";
|
|
2
2
|
export * from "./AssociateTimeSeriesToAssetPropertyCommand";
|
|
3
|
+
export * from "./BatchAssociateDataSegmentsToDatasetCommand";
|
|
3
4
|
export * from "./BatchAssociateProjectAssetsCommand";
|
|
5
|
+
export * from "./BatchDeleteDatasetDataSegmentsCommand";
|
|
6
|
+
export * from "./BatchDisassociateDataSegmentsFromDatasetCommand";
|
|
4
7
|
export * from "./BatchDisassociateProjectAssetsCommand";
|
|
5
8
|
export * from "./BatchGetAssetPropertyAggregatesCommand";
|
|
6
9
|
export * from "./BatchGetAssetPropertyValueCommand";
|
|
7
10
|
export * from "./BatchGetAssetPropertyValueHistoryCommand";
|
|
8
11
|
export * from "./BatchPutAssetPropertyValueCommand";
|
|
12
|
+
export * from "./CancelEnrichmentJobCommand";
|
|
13
|
+
export * from "./CancelPipelineExecutionCommand";
|
|
14
|
+
export * from "./CancelQueryCommand";
|
|
9
15
|
export * from "./CreateAccessPolicyCommand";
|
|
16
|
+
export * from "./CreateApplicationCommand";
|
|
10
17
|
export * from "./CreateAssetCommand";
|
|
11
18
|
export * from "./CreateAssetModelCommand";
|
|
12
19
|
export * from "./CreateAssetModelCompositeModelCommand";
|
|
@@ -14,10 +21,16 @@ export * from "./CreateBulkImportJobCommand";
|
|
|
14
21
|
export * from "./CreateComputationModelCommand";
|
|
15
22
|
export * from "./CreateDashboardCommand";
|
|
16
23
|
export * from "./CreateDatasetCommand";
|
|
24
|
+
export * from "./CreateDatasetExportJobCommand";
|
|
25
|
+
export * from "./CreateEnrichmentJobCommand";
|
|
17
26
|
export * from "./CreateGatewayCommand";
|
|
27
|
+
export * from "./CreatePipelineCommand";
|
|
18
28
|
export * from "./CreatePortalCommand";
|
|
19
29
|
export * from "./CreateProjectCommand";
|
|
30
|
+
export * from "./CreateTaskCommand";
|
|
31
|
+
export * from "./CreateWorkspaceCommand";
|
|
20
32
|
export * from "./DeleteAccessPolicyCommand";
|
|
33
|
+
export * from "./DeleteApplicationCommand";
|
|
21
34
|
export * from "./DeleteAssetCommand";
|
|
22
35
|
export * from "./DeleteAssetModelCommand";
|
|
23
36
|
export * from "./DeleteAssetModelCompositeModelCommand";
|
|
@@ -26,11 +39,15 @@ export * from "./DeleteComputationModelCommand";
|
|
|
26
39
|
export * from "./DeleteDashboardCommand";
|
|
27
40
|
export * from "./DeleteDatasetCommand";
|
|
28
41
|
export * from "./DeleteGatewayCommand";
|
|
42
|
+
export * from "./DeletePipelineCommand";
|
|
29
43
|
export * from "./DeletePortalCommand";
|
|
30
44
|
export * from "./DeleteProjectCommand";
|
|
45
|
+
export * from "./DeleteTaskCommand";
|
|
31
46
|
export * from "./DeleteTimeSeriesCommand";
|
|
47
|
+
export * from "./DeleteWorkspaceCommand";
|
|
32
48
|
export * from "./DescribeAccessPolicyCommand";
|
|
33
49
|
export * from "./DescribeActionCommand";
|
|
50
|
+
export * from "./DescribeApplicationCommand";
|
|
34
51
|
export * from "./DescribeAssetCommand";
|
|
35
52
|
export * from "./DescribeAssetCompositeModelCommand";
|
|
36
53
|
export * from "./DescribeAssetModelCommand";
|
|
@@ -42,15 +59,23 @@ export * from "./DescribeComputationModelCommand";
|
|
|
42
59
|
export * from "./DescribeComputationModelExecutionSummaryCommand";
|
|
43
60
|
export * from "./DescribeDashboardCommand";
|
|
44
61
|
export * from "./DescribeDatasetCommand";
|
|
62
|
+
export * from "./DescribeDatasetExportJobCommand";
|
|
45
63
|
export * from "./DescribeDefaultEncryptionConfigurationCommand";
|
|
64
|
+
export * from "./DescribeEnrichmentJobCommand";
|
|
46
65
|
export * from "./DescribeExecutionCommand";
|
|
47
66
|
export * from "./DescribeGatewayCapabilityConfigurationCommand";
|
|
48
67
|
export * from "./DescribeGatewayCommand";
|
|
49
68
|
export * from "./DescribeLoggingOptionsCommand";
|
|
69
|
+
export * from "./DescribePipelineCommand";
|
|
70
|
+
export * from "./DescribePipelineExecutionCommand";
|
|
50
71
|
export * from "./DescribePortalCommand";
|
|
51
72
|
export * from "./DescribeProjectCommand";
|
|
73
|
+
export * from "./DescribeQueryCommand";
|
|
74
|
+
export * from "./DescribeSearchCommand";
|
|
52
75
|
export * from "./DescribeStorageConfigurationCommand";
|
|
76
|
+
export * from "./DescribeTaskCommand";
|
|
53
77
|
export * from "./DescribeTimeSeriesCommand";
|
|
78
|
+
export * from "./DescribeWorkspaceCommand";
|
|
54
79
|
export * from "./DisassociateAssetsCommand";
|
|
55
80
|
export * from "./DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
56
81
|
export * from "./ExecuteActionCommand";
|
|
@@ -58,10 +83,14 @@ export * from "./ExecuteQueryCommand";
|
|
|
58
83
|
export * from "./GetAssetPropertyAggregatesCommand";
|
|
59
84
|
export * from "./GetAssetPropertyValueCommand";
|
|
60
85
|
export * from "./GetAssetPropertyValueHistoryCommand";
|
|
86
|
+
export * from "./GetCaptureDataCommand";
|
|
61
87
|
export * from "./GetInterpolatedAssetPropertyValuesCommand";
|
|
88
|
+
export * from "./GetQueryResultsCommand";
|
|
89
|
+
export * from "./GetSearchResultsCommand";
|
|
62
90
|
export * from "./InvokeAssistantCommand";
|
|
63
91
|
export * from "./ListAccessPoliciesCommand";
|
|
64
92
|
export * from "./ListActionsCommand";
|
|
93
|
+
export * from "./ListApplicationsCommand";
|
|
65
94
|
export * from "./ListAssetModelCompositeModelsCommand";
|
|
66
95
|
export * from "./ListAssetModelPropertiesCommand";
|
|
67
96
|
export * from "./ListAssetModelsCommand";
|
|
@@ -75,19 +104,32 @@ export * from "./ListComputationModelDataBindingUsagesCommand";
|
|
|
75
104
|
export * from "./ListComputationModelResolveToResourcesCommand";
|
|
76
105
|
export * from "./ListComputationModelsCommand";
|
|
77
106
|
export * from "./ListDashboardsCommand";
|
|
107
|
+
export * from "./ListDatasetDataSegmentRelationshipsCommand";
|
|
108
|
+
export * from "./ListDatasetDataSegmentsCommand";
|
|
109
|
+
export * from "./ListDatasetExportJobsCommand";
|
|
78
110
|
export * from "./ListDatasetsCommand";
|
|
111
|
+
export * from "./ListEnrichmentJobsCommand";
|
|
79
112
|
export * from "./ListExecutionsCommand";
|
|
80
113
|
export * from "./ListGatewaysCommand";
|
|
81
114
|
export * from "./ListInterfaceRelationshipsCommand";
|
|
115
|
+
export * from "./ListPipelineExecutionsCommand";
|
|
116
|
+
export * from "./ListPipelinesCommand";
|
|
82
117
|
export * from "./ListPortalsCommand";
|
|
83
118
|
export * from "./ListProjectAssetsCommand";
|
|
84
119
|
export * from "./ListProjectsCommand";
|
|
120
|
+
export * from "./ListQueriesCommand";
|
|
121
|
+
export * from "./ListSearchesCommand";
|
|
85
122
|
export * from "./ListTagsForResourceCommand";
|
|
123
|
+
export * from "./ListTasksCommand";
|
|
86
124
|
export * from "./ListTimeSeriesCommand";
|
|
125
|
+
export * from "./ListWorkspacesCommand";
|
|
87
126
|
export * from "./PutAssetModelInterfaceRelationshipCommand";
|
|
88
127
|
export * from "./PutDefaultEncryptionConfigurationCommand";
|
|
89
128
|
export * from "./PutLoggingOptionsCommand";
|
|
90
129
|
export * from "./PutStorageConfigurationCommand";
|
|
130
|
+
export * from "./StartPipelineExecutionCommand";
|
|
131
|
+
export * from "./StartQueryCommand";
|
|
132
|
+
export * from "./StartSearchCommand";
|
|
91
133
|
export * from "./TagResourceCommand";
|
|
92
134
|
export * from "./UntagResourceCommand";
|
|
93
135
|
export * from "./UpdateAccessPolicyCommand";
|
|
@@ -100,5 +142,8 @@ export * from "./UpdateDashboardCommand";
|
|
|
100
142
|
export * from "./UpdateDatasetCommand";
|
|
101
143
|
export * from "./UpdateGatewayCapabilityConfigurationCommand";
|
|
102
144
|
export * from "./UpdateGatewayCommand";
|
|
145
|
+
export * from "./UpdatePipelineCommand";
|
|
103
146
|
export * from "./UpdatePortalCommand";
|
|
104
147
|
export * from "./UpdateProjectCommand";
|
|
148
|
+
export * from "./UpdateTaskCommand";
|
|
149
|
+
export * from "./UpdateWorkspaceCommand";
|