@aws-sdk/client-glue 3.696.0 → 3.705.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 +176 -0
- package/dist-cjs/index.js +1529 -163
- package/dist-es/Glue.js +44 -0
- package/dist-es/commands/CreateCatalogCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/DeleteCatalogCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/DescribeConnectionTypeCommand.js +22 -0
- package/dist-es/commands/DescribeEntityCommand.js +22 -0
- package/dist-es/commands/DescribeInboundIntegrationsCommand.js +22 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +22 -0
- package/dist-es/commands/GetCatalogCommand.js +22 -0
- package/dist-es/commands/GetCatalogsCommand.js +22 -0
- package/dist-es/commands/GetDataQualityResultCommand.js +1 -1
- package/dist-es/commands/GetEntityRecordsCommand.js +23 -0
- package/dist-es/commands/GetIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/GetIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/ListConnectionTypesCommand.js +22 -0
- package/dist-es/commands/ListEntitiesCommand.js +22 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +22 -0
- package/dist-es/commands/TestConnectionCommand.js +1 -1
- package/dist-es/commands/UpdateCatalogCommand.js +22 -0
- package/dist-es/commands/UpdateConnectionCommand.js +1 -1
- package/dist-es/commands/UpdateIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/UpdateIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/models/models_1.js +210 -57
- package/dist-es/models/models_2.js +37 -148
- package/dist-es/models/models_3.js +149 -0
- package/dist-es/pagination/DescribeEntityPaginator.js +4 -0
- package/dist-es/pagination/ListConnectionTypesPaginator.js +4 -0
- package/dist-es/pagination/ListEntitiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -1
- package/dist-es/protocols/Aws_json1_1.js +704 -20
- package/dist-types/Glue.d.ts +159 -0
- package/dist-types/GlueClient.d.ts +24 -2
- package/dist-types/commands/BatchStopJobRunCommand.d.ts +2 -1
- package/dist-types/commands/BatchUpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/CancelDataQualityRuleRecommendationRunCommand.d.ts +1 -2
- package/dist-types/commands/CreateCatalogCommand.d.ts +149 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +26 -3
- package/dist-types/commands/CreateDatabaseCommand.d.ts +6 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +144 -0
- package/dist-types/commands/CreateIntegrationResourcePropertyCommand.d.ts +113 -0
- package/dist-types/commands/CreateIntegrationTablePropertiesCommand.d.ts +111 -0
- package/dist-types/commands/CreateTableCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCatalogCommand.d.ts +95 -0
- package/dist-types/commands/DeleteDatabaseCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +127 -0
- package/dist-types/commands/DeleteIntegrationTablePropertiesCommand.d.ts +91 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +6 -0
- package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +222 -0
- package/dist-types/commands/DescribeEntityCommand.d.ts +125 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +116 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +130 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +147 -0
- package/dist-types/commands/GetCatalogsCommand.d.ts +153 -0
- package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +10 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +15 -4
- package/dist-types/commands/GetConnectionsCommand.d.ts +16 -5
- package/dist-types/commands/GetCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +1 -1
- package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/commands/GetCustomEntityTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/GetDatabaseCommand.d.ts +4 -1
- package/dist-types/commands/GetDatabasesCommand.d.ts +10 -1
- package/dist-types/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/commands/GetDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetDevEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/GetEntityRecordsCommand.d.ts +110 -0
- package/dist-types/commands/GetIntegrationResourcePropertyCommand.d.ts +101 -0
- package/dist-types/commands/GetIntegrationTablePropertiesCommand.d.ts +114 -0
- package/dist-types/commands/GetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobRunCommand.d.ts +1 -1
- package/dist-types/commands/GetJobRunsCommand.d.ts +1 -1
- package/dist-types/commands/GetJobsCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/commands/GetMappingCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionTypesCommand.d.ts +95 -0
- package/dist-types/commands/ListEntitiesCommand.d.ts +108 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +130 -0
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/StartExportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartImportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/commands/StartMLEvaluationTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartTriggerCommand.d.ts +1 -1
- package/dist-types/commands/StartWorkflowRunCommand.d.ts +1 -1
- package/dist-types/commands/StopColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StopCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StopCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StopSessionCommand.d.ts +1 -1
- package/dist-types/commands/StopTriggerCommand.d.ts +1 -1
- package/dist-types/commands/StopWorkflowRunCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestConnectionCommand.d.ts +18 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBlueprintCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCatalogCommand.d.ts +137 -0
- package/dist-types/commands/UpdateClassifierCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +27 -4
- package/dist-types/commands/UpdateCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +10 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +110 -0
- package/dist-types/commands/UpdateIntegrationTablePropertiesCommand.d.ts +112 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +183 -109
- package/dist-types/models/models_1.d.ts +3220 -3137
- package/dist-types/models/models_2.d.ts +4416 -3761
- package/dist-types/models/models_3.d.ts +1630 -3
- package/dist-types/pagination/DescribeEntityPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConnectionTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEntitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +198 -0
- package/dist-types/ts3.4/Glue.d.ts +391 -0
- package/dist-types/ts3.4/GlueClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/BatchStopJobRunCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/BatchUpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelDataQualityRuleRecommendationRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeEntityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeInboundIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetCatalogsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConnectionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCustomEntityTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDatabasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDevEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEntityRecordsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetMappingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConnectionTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartExportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartImportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMLEvaluationTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TestConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateClassifierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/models_0.d.ts +54 -28
- package/dist-types/ts3.4/models/models_1.d.ts +532 -441
- package/dist-types/ts3.4/models/models_2.d.ts +514 -425
- package/dist-types/ts3.4/models/models_3.d.ts +449 -0
- package/dist-types/ts3.4/pagination/DescribeEntityPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConnectionTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +264 -0
- package/package.json +4 -4
|
@@ -3,8 +3,9 @@ import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { GlueServiceException as __BaseException } from "../models/GlueServiceException";
|
|
5
5
|
import { AccessDeniedException, AlreadyExistsException, EntityNotFoundException, FederationSourceException, FederationSourceRetryableException, GlueEncryptionException, InternalServiceException, InvalidInputException, InvalidStateException, OperationTimeoutException, ResourceNotReadyException, ResourceNumberLimitExceededException, ThrottlingException, } from "../models/models_0";
|
|
6
|
-
import { ColumnStatisticsTaskRunningException, ConcurrentModificationException, ConditionCheckFailureException, ConflictException, CrawlerRunningException, FederatedResourceAlreadyExistsException, IdempotentParameterMismatchException, IllegalSessionStateException, OperationNotSupportedException, SchedulerTransitioningException, ValidationException, } from "../models/models_1";
|
|
7
|
-
import {
|
|
6
|
+
import { ColumnStatisticsTaskRunningException, ConcurrentModificationException, ConditionCheckFailureException, ConflictException, CrawlerRunningException, FederatedResourceAlreadyExistsException, IdempotentParameterMismatchException, IllegalSessionStateException, IntegrationConflictOperationFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, InternalServerException, InvalidIntegrationStateFault, KMSKeyNotAccessibleFault, OperationNotSupportedException, ResourceNotFoundException, SchedulerTransitioningException, TargetResourceNotFound, ValidationException, } from "../models/models_1";
|
|
7
|
+
import { ConcurrentRunsExceededException, IllegalWorkflowStateException, PermissionTypeMismatchException, } from "../models/models_2";
|
|
8
|
+
import { ColumnStatisticsTaskNotRunningException, ColumnStatisticsTaskStoppingException, CrawlerNotRunningException, CrawlerStoppingException, IllegalBlueprintStateException, MLTransformNotReadyException, NoScheduleException, SchedulerNotRunningException, SchedulerRunningException, VersionMismatchException, } from "../models/models_3";
|
|
8
9
|
export const se_BatchCreatePartitionCommand = async (input, context) => {
|
|
9
10
|
const headers = sharedHeaders("BatchCreatePartition");
|
|
10
11
|
let body;
|
|
@@ -149,6 +150,12 @@ export const se_CreateBlueprintCommand = async (input, context) => {
|
|
|
149
150
|
body = JSON.stringify(_json(input));
|
|
150
151
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
151
152
|
};
|
|
153
|
+
export const se_CreateCatalogCommand = async (input, context) => {
|
|
154
|
+
const headers = sharedHeaders("CreateCatalog");
|
|
155
|
+
let body;
|
|
156
|
+
body = JSON.stringify(_json(input));
|
|
157
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
158
|
+
};
|
|
152
159
|
export const se_CreateClassifierCommand = async (input, context) => {
|
|
153
160
|
const headers = sharedHeaders("CreateClassifier");
|
|
154
161
|
let body;
|
|
@@ -197,6 +204,24 @@ export const se_CreateDevEndpointCommand = async (input, context) => {
|
|
|
197
204
|
body = JSON.stringify(_json(input));
|
|
198
205
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
199
206
|
};
|
|
207
|
+
export const se_CreateIntegrationCommand = async (input, context) => {
|
|
208
|
+
const headers = sharedHeaders("CreateIntegration");
|
|
209
|
+
let body;
|
|
210
|
+
body = JSON.stringify(_json(input));
|
|
211
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
212
|
+
};
|
|
213
|
+
export const se_CreateIntegrationResourcePropertyCommand = async (input, context) => {
|
|
214
|
+
const headers = sharedHeaders("CreateIntegrationResourceProperty");
|
|
215
|
+
let body;
|
|
216
|
+
body = JSON.stringify(_json(input));
|
|
217
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
218
|
+
};
|
|
219
|
+
export const se_CreateIntegrationTablePropertiesCommand = async (input, context) => {
|
|
220
|
+
const headers = sharedHeaders("CreateIntegrationTableProperties");
|
|
221
|
+
let body;
|
|
222
|
+
body = JSON.stringify(_json(input));
|
|
223
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
224
|
+
};
|
|
200
225
|
export const se_CreateJobCommand = async (input, context) => {
|
|
201
226
|
const headers = sharedHeaders("CreateJob");
|
|
202
227
|
let body;
|
|
@@ -293,6 +318,12 @@ export const se_DeleteBlueprintCommand = async (input, context) => {
|
|
|
293
318
|
body = JSON.stringify(_json(input));
|
|
294
319
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
295
320
|
};
|
|
321
|
+
export const se_DeleteCatalogCommand = async (input, context) => {
|
|
322
|
+
const headers = sharedHeaders("DeleteCatalog");
|
|
323
|
+
let body;
|
|
324
|
+
body = JSON.stringify(_json(input));
|
|
325
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
326
|
+
};
|
|
296
327
|
export const se_DeleteClassifierCommand = async (input, context) => {
|
|
297
328
|
const headers = sharedHeaders("DeleteClassifier");
|
|
298
329
|
let body;
|
|
@@ -353,6 +384,18 @@ export const se_DeleteDevEndpointCommand = async (input, context) => {
|
|
|
353
384
|
body = JSON.stringify(_json(input));
|
|
354
385
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
355
386
|
};
|
|
387
|
+
export const se_DeleteIntegrationCommand = async (input, context) => {
|
|
388
|
+
const headers = sharedHeaders("DeleteIntegration");
|
|
389
|
+
let body;
|
|
390
|
+
body = JSON.stringify(_json(input));
|
|
391
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
392
|
+
};
|
|
393
|
+
export const se_DeleteIntegrationTablePropertiesCommand = async (input, context) => {
|
|
394
|
+
const headers = sharedHeaders("DeleteIntegrationTableProperties");
|
|
395
|
+
let body;
|
|
396
|
+
body = JSON.stringify(_json(input));
|
|
397
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
398
|
+
};
|
|
356
399
|
export const se_DeleteJobCommand = async (input, context) => {
|
|
357
400
|
const headers = sharedHeaders("DeleteJob");
|
|
358
401
|
let body;
|
|
@@ -455,6 +498,30 @@ export const se_DeleteWorkflowCommand = async (input, context) => {
|
|
|
455
498
|
body = JSON.stringify(_json(input));
|
|
456
499
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
457
500
|
};
|
|
501
|
+
export const se_DescribeConnectionTypeCommand = async (input, context) => {
|
|
502
|
+
const headers = sharedHeaders("DescribeConnectionType");
|
|
503
|
+
let body;
|
|
504
|
+
body = JSON.stringify(_json(input));
|
|
505
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
506
|
+
};
|
|
507
|
+
export const se_DescribeEntityCommand = async (input, context) => {
|
|
508
|
+
const headers = sharedHeaders("DescribeEntity");
|
|
509
|
+
let body;
|
|
510
|
+
body = JSON.stringify(_json(input));
|
|
511
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
512
|
+
};
|
|
513
|
+
export const se_DescribeInboundIntegrationsCommand = async (input, context) => {
|
|
514
|
+
const headers = sharedHeaders("DescribeInboundIntegrations");
|
|
515
|
+
let body;
|
|
516
|
+
body = JSON.stringify(_json(input));
|
|
517
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
518
|
+
};
|
|
519
|
+
export const se_DescribeIntegrationsCommand = async (input, context) => {
|
|
520
|
+
const headers = sharedHeaders("DescribeIntegrations");
|
|
521
|
+
let body;
|
|
522
|
+
body = JSON.stringify(_json(input));
|
|
523
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
524
|
+
};
|
|
458
525
|
export const se_GetBlueprintCommand = async (input, context) => {
|
|
459
526
|
const headers = sharedHeaders("GetBlueprint");
|
|
460
527
|
let body;
|
|
@@ -473,12 +540,24 @@ export const se_GetBlueprintRunsCommand = async (input, context) => {
|
|
|
473
540
|
body = JSON.stringify(_json(input));
|
|
474
541
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
475
542
|
};
|
|
543
|
+
export const se_GetCatalogCommand = async (input, context) => {
|
|
544
|
+
const headers = sharedHeaders("GetCatalog");
|
|
545
|
+
let body;
|
|
546
|
+
body = JSON.stringify(_json(input));
|
|
547
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
548
|
+
};
|
|
476
549
|
export const se_GetCatalogImportStatusCommand = async (input, context) => {
|
|
477
550
|
const headers = sharedHeaders("GetCatalogImportStatus");
|
|
478
551
|
let body;
|
|
479
552
|
body = JSON.stringify(_json(input));
|
|
480
553
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
481
554
|
};
|
|
555
|
+
export const se_GetCatalogsCommand = async (input, context) => {
|
|
556
|
+
const headers = sharedHeaders("GetCatalogs");
|
|
557
|
+
let body;
|
|
558
|
+
body = JSON.stringify(_json(input));
|
|
559
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
560
|
+
};
|
|
482
561
|
export const se_GetClassifierCommand = async (input, context) => {
|
|
483
562
|
const headers = sharedHeaders("GetClassifier");
|
|
484
563
|
let body;
|
|
@@ -629,6 +708,24 @@ export const se_GetDevEndpointsCommand = async (input, context) => {
|
|
|
629
708
|
body = JSON.stringify(_json(input));
|
|
630
709
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
631
710
|
};
|
|
711
|
+
export const se_GetEntityRecordsCommand = async (input, context) => {
|
|
712
|
+
const headers = sharedHeaders("GetEntityRecords");
|
|
713
|
+
let body;
|
|
714
|
+
body = JSON.stringify(_json(input));
|
|
715
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
716
|
+
};
|
|
717
|
+
export const se_GetIntegrationResourcePropertyCommand = async (input, context) => {
|
|
718
|
+
const headers = sharedHeaders("GetIntegrationResourceProperty");
|
|
719
|
+
let body;
|
|
720
|
+
body = JSON.stringify(_json(input));
|
|
721
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
722
|
+
};
|
|
723
|
+
export const se_GetIntegrationTablePropertiesCommand = async (input, context) => {
|
|
724
|
+
const headers = sharedHeaders("GetIntegrationTableProperties");
|
|
725
|
+
let body;
|
|
726
|
+
body = JSON.stringify(_json(input));
|
|
727
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
728
|
+
};
|
|
632
729
|
export const se_GetJobCommand = async (input, context) => {
|
|
633
730
|
const headers = sharedHeaders("GetJob");
|
|
634
731
|
let body;
|
|
@@ -905,6 +1002,12 @@ export const se_ListColumnStatisticsTaskRunsCommand = async (input, context) =>
|
|
|
905
1002
|
body = JSON.stringify(_json(input));
|
|
906
1003
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
907
1004
|
};
|
|
1005
|
+
export const se_ListConnectionTypesCommand = async (input, context) => {
|
|
1006
|
+
const headers = sharedHeaders("ListConnectionTypes");
|
|
1007
|
+
let body;
|
|
1008
|
+
body = JSON.stringify(_json(input));
|
|
1009
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1010
|
+
};
|
|
908
1011
|
export const se_ListCrawlersCommand = async (input, context) => {
|
|
909
1012
|
const headers = sharedHeaders("ListCrawlers");
|
|
910
1013
|
let body;
|
|
@@ -965,6 +1068,12 @@ export const se_ListDevEndpointsCommand = async (input, context) => {
|
|
|
965
1068
|
body = JSON.stringify(_json(input));
|
|
966
1069
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
967
1070
|
};
|
|
1071
|
+
export const se_ListEntitiesCommand = async (input, context) => {
|
|
1072
|
+
const headers = sharedHeaders("ListEntities");
|
|
1073
|
+
let body;
|
|
1074
|
+
body = JSON.stringify(_json(input));
|
|
1075
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1076
|
+
};
|
|
968
1077
|
export const se_ListJobsCommand = async (input, context) => {
|
|
969
1078
|
const headers = sharedHeaders("ListJobs");
|
|
970
1079
|
let body;
|
|
@@ -1031,6 +1140,12 @@ export const se_ListWorkflowsCommand = async (input, context) => {
|
|
|
1031
1140
|
body = JSON.stringify(_json(input));
|
|
1032
1141
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1033
1142
|
};
|
|
1143
|
+
export const se_ModifyIntegrationCommand = async (input, context) => {
|
|
1144
|
+
const headers = sharedHeaders("ModifyIntegration");
|
|
1145
|
+
let body;
|
|
1146
|
+
body = JSON.stringify(_json(input));
|
|
1147
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1148
|
+
};
|
|
1034
1149
|
export const se_PutDataCatalogEncryptionSettingsCommand = async (input, context) => {
|
|
1035
1150
|
const headers = sharedHeaders("PutDataCatalogEncryptionSettings");
|
|
1036
1151
|
let body;
|
|
@@ -1253,6 +1368,12 @@ export const se_UpdateBlueprintCommand = async (input, context) => {
|
|
|
1253
1368
|
body = JSON.stringify(_json(input));
|
|
1254
1369
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1255
1370
|
};
|
|
1371
|
+
export const se_UpdateCatalogCommand = async (input, context) => {
|
|
1372
|
+
const headers = sharedHeaders("UpdateCatalog");
|
|
1373
|
+
let body;
|
|
1374
|
+
body = JSON.stringify(_json(input));
|
|
1375
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1376
|
+
};
|
|
1256
1377
|
export const se_UpdateClassifierCommand = async (input, context) => {
|
|
1257
1378
|
const headers = sharedHeaders("UpdateClassifier");
|
|
1258
1379
|
let body;
|
|
@@ -1313,6 +1434,18 @@ export const se_UpdateDevEndpointCommand = async (input, context) => {
|
|
|
1313
1434
|
body = JSON.stringify(_json(input));
|
|
1314
1435
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1315
1436
|
};
|
|
1437
|
+
export const se_UpdateIntegrationResourcePropertyCommand = async (input, context) => {
|
|
1438
|
+
const headers = sharedHeaders("UpdateIntegrationResourceProperty");
|
|
1439
|
+
let body;
|
|
1440
|
+
body = JSON.stringify(_json(input));
|
|
1441
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1442
|
+
};
|
|
1443
|
+
export const se_UpdateIntegrationTablePropertiesCommand = async (input, context) => {
|
|
1444
|
+
const headers = sharedHeaders("UpdateIntegrationTableProperties");
|
|
1445
|
+
let body;
|
|
1446
|
+
body = JSON.stringify(_json(input));
|
|
1447
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1448
|
+
};
|
|
1316
1449
|
export const se_UpdateJobCommand = async (input, context) => {
|
|
1317
1450
|
const headers = sharedHeaders("UpdateJob");
|
|
1318
1451
|
let body;
|
|
@@ -1703,6 +1836,19 @@ export const de_CreateBlueprintCommand = async (output, context) => {
|
|
|
1703
1836
|
};
|
|
1704
1837
|
return response;
|
|
1705
1838
|
};
|
|
1839
|
+
export const de_CreateCatalogCommand = async (output, context) => {
|
|
1840
|
+
if (output.statusCode >= 300) {
|
|
1841
|
+
return de_CommandError(output, context);
|
|
1842
|
+
}
|
|
1843
|
+
const data = await parseBody(output.body, context);
|
|
1844
|
+
let contents = {};
|
|
1845
|
+
contents = _json(data);
|
|
1846
|
+
const response = {
|
|
1847
|
+
$metadata: deserializeMetadata(output),
|
|
1848
|
+
...contents,
|
|
1849
|
+
};
|
|
1850
|
+
return response;
|
|
1851
|
+
};
|
|
1706
1852
|
export const de_CreateClassifierCommand = async (output, context) => {
|
|
1707
1853
|
if (output.statusCode >= 300) {
|
|
1708
1854
|
return de_CommandError(output, context);
|
|
@@ -1807,6 +1953,45 @@ export const de_CreateDevEndpointCommand = async (output, context) => {
|
|
|
1807
1953
|
};
|
|
1808
1954
|
return response;
|
|
1809
1955
|
};
|
|
1956
|
+
export const de_CreateIntegrationCommand = async (output, context) => {
|
|
1957
|
+
if (output.statusCode >= 300) {
|
|
1958
|
+
return de_CommandError(output, context);
|
|
1959
|
+
}
|
|
1960
|
+
const data = await parseBody(output.body, context);
|
|
1961
|
+
let contents = {};
|
|
1962
|
+
contents = de_CreateIntegrationResponse(data, context);
|
|
1963
|
+
const response = {
|
|
1964
|
+
$metadata: deserializeMetadata(output),
|
|
1965
|
+
...contents,
|
|
1966
|
+
};
|
|
1967
|
+
return response;
|
|
1968
|
+
};
|
|
1969
|
+
export const de_CreateIntegrationResourcePropertyCommand = async (output, context) => {
|
|
1970
|
+
if (output.statusCode >= 300) {
|
|
1971
|
+
return de_CommandError(output, context);
|
|
1972
|
+
}
|
|
1973
|
+
const data = await parseBody(output.body, context);
|
|
1974
|
+
let contents = {};
|
|
1975
|
+
contents = _json(data);
|
|
1976
|
+
const response = {
|
|
1977
|
+
$metadata: deserializeMetadata(output),
|
|
1978
|
+
...contents,
|
|
1979
|
+
};
|
|
1980
|
+
return response;
|
|
1981
|
+
};
|
|
1982
|
+
export const de_CreateIntegrationTablePropertiesCommand = async (output, context) => {
|
|
1983
|
+
if (output.statusCode >= 300) {
|
|
1984
|
+
return de_CommandError(output, context);
|
|
1985
|
+
}
|
|
1986
|
+
const data = await parseBody(output.body, context);
|
|
1987
|
+
let contents = {};
|
|
1988
|
+
contents = _json(data);
|
|
1989
|
+
const response = {
|
|
1990
|
+
$metadata: deserializeMetadata(output),
|
|
1991
|
+
...contents,
|
|
1992
|
+
};
|
|
1993
|
+
return response;
|
|
1994
|
+
};
|
|
1810
1995
|
export const de_CreateJobCommand = async (output, context) => {
|
|
1811
1996
|
if (output.statusCode >= 300) {
|
|
1812
1997
|
return de_CommandError(output, context);
|
|
@@ -2015,6 +2200,19 @@ export const de_DeleteBlueprintCommand = async (output, context) => {
|
|
|
2015
2200
|
};
|
|
2016
2201
|
return response;
|
|
2017
2202
|
};
|
|
2203
|
+
export const de_DeleteCatalogCommand = async (output, context) => {
|
|
2204
|
+
if (output.statusCode >= 300) {
|
|
2205
|
+
return de_CommandError(output, context);
|
|
2206
|
+
}
|
|
2207
|
+
const data = await parseBody(output.body, context);
|
|
2208
|
+
let contents = {};
|
|
2209
|
+
contents = _json(data);
|
|
2210
|
+
const response = {
|
|
2211
|
+
$metadata: deserializeMetadata(output),
|
|
2212
|
+
...contents,
|
|
2213
|
+
};
|
|
2214
|
+
return response;
|
|
2215
|
+
};
|
|
2018
2216
|
export const de_DeleteClassifierCommand = async (output, context) => {
|
|
2019
2217
|
if (output.statusCode >= 300) {
|
|
2020
2218
|
return de_CommandError(output, context);
|
|
@@ -2145,6 +2343,32 @@ export const de_DeleteDevEndpointCommand = async (output, context) => {
|
|
|
2145
2343
|
};
|
|
2146
2344
|
return response;
|
|
2147
2345
|
};
|
|
2346
|
+
export const de_DeleteIntegrationCommand = async (output, context) => {
|
|
2347
|
+
if (output.statusCode >= 300) {
|
|
2348
|
+
return de_CommandError(output, context);
|
|
2349
|
+
}
|
|
2350
|
+
const data = await parseBody(output.body, context);
|
|
2351
|
+
let contents = {};
|
|
2352
|
+
contents = de_DeleteIntegrationResponse(data, context);
|
|
2353
|
+
const response = {
|
|
2354
|
+
$metadata: deserializeMetadata(output),
|
|
2355
|
+
...contents,
|
|
2356
|
+
};
|
|
2357
|
+
return response;
|
|
2358
|
+
};
|
|
2359
|
+
export const de_DeleteIntegrationTablePropertiesCommand = async (output, context) => {
|
|
2360
|
+
if (output.statusCode >= 300) {
|
|
2361
|
+
return de_CommandError(output, context);
|
|
2362
|
+
}
|
|
2363
|
+
const data = await parseBody(output.body, context);
|
|
2364
|
+
let contents = {};
|
|
2365
|
+
contents = _json(data);
|
|
2366
|
+
const response = {
|
|
2367
|
+
$metadata: deserializeMetadata(output),
|
|
2368
|
+
...contents,
|
|
2369
|
+
};
|
|
2370
|
+
return response;
|
|
2371
|
+
};
|
|
2148
2372
|
export const de_DeleteJobCommand = async (output, context) => {
|
|
2149
2373
|
if (output.statusCode >= 300) {
|
|
2150
2374
|
return de_CommandError(output, context);
|
|
@@ -2366,6 +2590,58 @@ export const de_DeleteWorkflowCommand = async (output, context) => {
|
|
|
2366
2590
|
};
|
|
2367
2591
|
return response;
|
|
2368
2592
|
};
|
|
2593
|
+
export const de_DescribeConnectionTypeCommand = async (output, context) => {
|
|
2594
|
+
if (output.statusCode >= 300) {
|
|
2595
|
+
return de_CommandError(output, context);
|
|
2596
|
+
}
|
|
2597
|
+
const data = await parseBody(output.body, context);
|
|
2598
|
+
let contents = {};
|
|
2599
|
+
contents = _json(data);
|
|
2600
|
+
const response = {
|
|
2601
|
+
$metadata: deserializeMetadata(output),
|
|
2602
|
+
...contents,
|
|
2603
|
+
};
|
|
2604
|
+
return response;
|
|
2605
|
+
};
|
|
2606
|
+
export const de_DescribeEntityCommand = async (output, context) => {
|
|
2607
|
+
if (output.statusCode >= 300) {
|
|
2608
|
+
return de_CommandError(output, context);
|
|
2609
|
+
}
|
|
2610
|
+
const data = await parseBody(output.body, context);
|
|
2611
|
+
let contents = {};
|
|
2612
|
+
contents = _json(data);
|
|
2613
|
+
const response = {
|
|
2614
|
+
$metadata: deserializeMetadata(output),
|
|
2615
|
+
...contents,
|
|
2616
|
+
};
|
|
2617
|
+
return response;
|
|
2618
|
+
};
|
|
2619
|
+
export const de_DescribeInboundIntegrationsCommand = async (output, context) => {
|
|
2620
|
+
if (output.statusCode >= 300) {
|
|
2621
|
+
return de_CommandError(output, context);
|
|
2622
|
+
}
|
|
2623
|
+
const data = await parseBody(output.body, context);
|
|
2624
|
+
let contents = {};
|
|
2625
|
+
contents = de_DescribeInboundIntegrationsResponse(data, context);
|
|
2626
|
+
const response = {
|
|
2627
|
+
$metadata: deserializeMetadata(output),
|
|
2628
|
+
...contents,
|
|
2629
|
+
};
|
|
2630
|
+
return response;
|
|
2631
|
+
};
|
|
2632
|
+
export const de_DescribeIntegrationsCommand = async (output, context) => {
|
|
2633
|
+
if (output.statusCode >= 300) {
|
|
2634
|
+
return de_CommandError(output, context);
|
|
2635
|
+
}
|
|
2636
|
+
const data = await parseBody(output.body, context);
|
|
2637
|
+
let contents = {};
|
|
2638
|
+
contents = de_DescribeIntegrationsResponse(data, context);
|
|
2639
|
+
const response = {
|
|
2640
|
+
$metadata: deserializeMetadata(output),
|
|
2641
|
+
...contents,
|
|
2642
|
+
};
|
|
2643
|
+
return response;
|
|
2644
|
+
};
|
|
2369
2645
|
export const de_GetBlueprintCommand = async (output, context) => {
|
|
2370
2646
|
if (output.statusCode >= 300) {
|
|
2371
2647
|
return de_CommandError(output, context);
|
|
@@ -2405,6 +2681,19 @@ export const de_GetBlueprintRunsCommand = async (output, context) => {
|
|
|
2405
2681
|
};
|
|
2406
2682
|
return response;
|
|
2407
2683
|
};
|
|
2684
|
+
export const de_GetCatalogCommand = async (output, context) => {
|
|
2685
|
+
if (output.statusCode >= 300) {
|
|
2686
|
+
return de_CommandError(output, context);
|
|
2687
|
+
}
|
|
2688
|
+
const data = await parseBody(output.body, context);
|
|
2689
|
+
let contents = {};
|
|
2690
|
+
contents = de_GetCatalogResponse(data, context);
|
|
2691
|
+
const response = {
|
|
2692
|
+
$metadata: deserializeMetadata(output),
|
|
2693
|
+
...contents,
|
|
2694
|
+
};
|
|
2695
|
+
return response;
|
|
2696
|
+
};
|
|
2408
2697
|
export const de_GetCatalogImportStatusCommand = async (output, context) => {
|
|
2409
2698
|
if (output.statusCode >= 300) {
|
|
2410
2699
|
return de_CommandError(output, context);
|
|
@@ -2418,6 +2707,19 @@ export const de_GetCatalogImportStatusCommand = async (output, context) => {
|
|
|
2418
2707
|
};
|
|
2419
2708
|
return response;
|
|
2420
2709
|
};
|
|
2710
|
+
export const de_GetCatalogsCommand = async (output, context) => {
|
|
2711
|
+
if (output.statusCode >= 300) {
|
|
2712
|
+
return de_CommandError(output, context);
|
|
2713
|
+
}
|
|
2714
|
+
const data = await parseBody(output.body, context);
|
|
2715
|
+
let contents = {};
|
|
2716
|
+
contents = de_GetCatalogsResponse(data, context);
|
|
2717
|
+
const response = {
|
|
2718
|
+
$metadata: deserializeMetadata(output),
|
|
2719
|
+
...contents,
|
|
2720
|
+
};
|
|
2721
|
+
return response;
|
|
2722
|
+
};
|
|
2421
2723
|
export const de_GetClassifierCommand = async (output, context) => {
|
|
2422
2724
|
if (output.statusCode >= 300) {
|
|
2423
2725
|
return de_CommandError(output, context);
|
|
@@ -2684,59 +2986,98 @@ export const de_GetDataQualityRuleRecommendationRunCommand = async (output, cont
|
|
|
2684
2986
|
}
|
|
2685
2987
|
const data = await parseBody(output.body, context);
|
|
2686
2988
|
let contents = {};
|
|
2687
|
-
contents = de_GetDataQualityRuleRecommendationRunResponse(data, context);
|
|
2989
|
+
contents = de_GetDataQualityRuleRecommendationRunResponse(data, context);
|
|
2990
|
+
const response = {
|
|
2991
|
+
$metadata: deserializeMetadata(output),
|
|
2992
|
+
...contents,
|
|
2993
|
+
};
|
|
2994
|
+
return response;
|
|
2995
|
+
};
|
|
2996
|
+
export const de_GetDataQualityRulesetCommand = async (output, context) => {
|
|
2997
|
+
if (output.statusCode >= 300) {
|
|
2998
|
+
return de_CommandError(output, context);
|
|
2999
|
+
}
|
|
3000
|
+
const data = await parseBody(output.body, context);
|
|
3001
|
+
let contents = {};
|
|
3002
|
+
contents = de_GetDataQualityRulesetResponse(data, context);
|
|
3003
|
+
const response = {
|
|
3004
|
+
$metadata: deserializeMetadata(output),
|
|
3005
|
+
...contents,
|
|
3006
|
+
};
|
|
3007
|
+
return response;
|
|
3008
|
+
};
|
|
3009
|
+
export const de_GetDataQualityRulesetEvaluationRunCommand = async (output, context) => {
|
|
3010
|
+
if (output.statusCode >= 300) {
|
|
3011
|
+
return de_CommandError(output, context);
|
|
3012
|
+
}
|
|
3013
|
+
const data = await parseBody(output.body, context);
|
|
3014
|
+
let contents = {};
|
|
3015
|
+
contents = de_GetDataQualityRulesetEvaluationRunResponse(data, context);
|
|
3016
|
+
const response = {
|
|
3017
|
+
$metadata: deserializeMetadata(output),
|
|
3018
|
+
...contents,
|
|
3019
|
+
};
|
|
3020
|
+
return response;
|
|
3021
|
+
};
|
|
3022
|
+
export const de_GetDevEndpointCommand = async (output, context) => {
|
|
3023
|
+
if (output.statusCode >= 300) {
|
|
3024
|
+
return de_CommandError(output, context);
|
|
3025
|
+
}
|
|
3026
|
+
const data = await parseBody(output.body, context);
|
|
3027
|
+
let contents = {};
|
|
3028
|
+
contents = de_GetDevEndpointResponse(data, context);
|
|
2688
3029
|
const response = {
|
|
2689
3030
|
$metadata: deserializeMetadata(output),
|
|
2690
3031
|
...contents,
|
|
2691
3032
|
};
|
|
2692
3033
|
return response;
|
|
2693
3034
|
};
|
|
2694
|
-
export const
|
|
3035
|
+
export const de_GetDevEndpointsCommand = async (output, context) => {
|
|
2695
3036
|
if (output.statusCode >= 300) {
|
|
2696
3037
|
return de_CommandError(output, context);
|
|
2697
3038
|
}
|
|
2698
3039
|
const data = await parseBody(output.body, context);
|
|
2699
3040
|
let contents = {};
|
|
2700
|
-
contents =
|
|
3041
|
+
contents = de_GetDevEndpointsResponse(data, context);
|
|
2701
3042
|
const response = {
|
|
2702
3043
|
$metadata: deserializeMetadata(output),
|
|
2703
3044
|
...contents,
|
|
2704
3045
|
};
|
|
2705
3046
|
return response;
|
|
2706
3047
|
};
|
|
2707
|
-
export const
|
|
3048
|
+
export const de_GetEntityRecordsCommand = async (output, context) => {
|
|
2708
3049
|
if (output.statusCode >= 300) {
|
|
2709
3050
|
return de_CommandError(output, context);
|
|
2710
3051
|
}
|
|
2711
3052
|
const data = await parseBody(output.body, context);
|
|
2712
3053
|
let contents = {};
|
|
2713
|
-
contents =
|
|
3054
|
+
contents = de_GetEntityRecordsResponse(data, context);
|
|
2714
3055
|
const response = {
|
|
2715
3056
|
$metadata: deserializeMetadata(output),
|
|
2716
3057
|
...contents,
|
|
2717
3058
|
};
|
|
2718
3059
|
return response;
|
|
2719
3060
|
};
|
|
2720
|
-
export const
|
|
3061
|
+
export const de_GetIntegrationResourcePropertyCommand = async (output, context) => {
|
|
2721
3062
|
if (output.statusCode >= 300) {
|
|
2722
3063
|
return de_CommandError(output, context);
|
|
2723
3064
|
}
|
|
2724
3065
|
const data = await parseBody(output.body, context);
|
|
2725
3066
|
let contents = {};
|
|
2726
|
-
contents =
|
|
3067
|
+
contents = _json(data);
|
|
2727
3068
|
const response = {
|
|
2728
3069
|
$metadata: deserializeMetadata(output),
|
|
2729
3070
|
...contents,
|
|
2730
3071
|
};
|
|
2731
3072
|
return response;
|
|
2732
3073
|
};
|
|
2733
|
-
export const
|
|
3074
|
+
export const de_GetIntegrationTablePropertiesCommand = async (output, context) => {
|
|
2734
3075
|
if (output.statusCode >= 300) {
|
|
2735
3076
|
return de_CommandError(output, context);
|
|
2736
3077
|
}
|
|
2737
3078
|
const data = await parseBody(output.body, context);
|
|
2738
3079
|
let contents = {};
|
|
2739
|
-
contents =
|
|
3080
|
+
contents = _json(data);
|
|
2740
3081
|
const response = {
|
|
2741
3082
|
$metadata: deserializeMetadata(output),
|
|
2742
3083
|
...contents,
|
|
@@ -3341,6 +3682,19 @@ export const de_ListColumnStatisticsTaskRunsCommand = async (output, context) =>
|
|
|
3341
3682
|
};
|
|
3342
3683
|
return response;
|
|
3343
3684
|
};
|
|
3685
|
+
export const de_ListConnectionTypesCommand = async (output, context) => {
|
|
3686
|
+
if (output.statusCode >= 300) {
|
|
3687
|
+
return de_CommandError(output, context);
|
|
3688
|
+
}
|
|
3689
|
+
const data = await parseBody(output.body, context);
|
|
3690
|
+
let contents = {};
|
|
3691
|
+
contents = _json(data);
|
|
3692
|
+
const response = {
|
|
3693
|
+
$metadata: deserializeMetadata(output),
|
|
3694
|
+
...contents,
|
|
3695
|
+
};
|
|
3696
|
+
return response;
|
|
3697
|
+
};
|
|
3344
3698
|
export const de_ListCrawlersCommand = async (output, context) => {
|
|
3345
3699
|
if (output.statusCode >= 300) {
|
|
3346
3700
|
return de_CommandError(output, context);
|
|
@@ -3471,6 +3825,19 @@ export const de_ListDevEndpointsCommand = async (output, context) => {
|
|
|
3471
3825
|
};
|
|
3472
3826
|
return response;
|
|
3473
3827
|
};
|
|
3828
|
+
export const de_ListEntitiesCommand = async (output, context) => {
|
|
3829
|
+
if (output.statusCode >= 300) {
|
|
3830
|
+
return de_CommandError(output, context);
|
|
3831
|
+
}
|
|
3832
|
+
const data = await parseBody(output.body, context);
|
|
3833
|
+
let contents = {};
|
|
3834
|
+
contents = _json(data);
|
|
3835
|
+
const response = {
|
|
3836
|
+
$metadata: deserializeMetadata(output),
|
|
3837
|
+
...contents,
|
|
3838
|
+
};
|
|
3839
|
+
return response;
|
|
3840
|
+
};
|
|
3474
3841
|
export const de_ListJobsCommand = async (output, context) => {
|
|
3475
3842
|
if (output.statusCode >= 300) {
|
|
3476
3843
|
return de_CommandError(output, context);
|
|
@@ -3614,6 +3981,19 @@ export const de_ListWorkflowsCommand = async (output, context) => {
|
|
|
3614
3981
|
};
|
|
3615
3982
|
return response;
|
|
3616
3983
|
};
|
|
3984
|
+
export const de_ModifyIntegrationCommand = async (output, context) => {
|
|
3985
|
+
if (output.statusCode >= 300) {
|
|
3986
|
+
return de_CommandError(output, context);
|
|
3987
|
+
}
|
|
3988
|
+
const data = await parseBody(output.body, context);
|
|
3989
|
+
let contents = {};
|
|
3990
|
+
contents = de_ModifyIntegrationResponse(data, context);
|
|
3991
|
+
const response = {
|
|
3992
|
+
$metadata: deserializeMetadata(output),
|
|
3993
|
+
...contents,
|
|
3994
|
+
};
|
|
3995
|
+
return response;
|
|
3996
|
+
};
|
|
3617
3997
|
export const de_PutDataCatalogEncryptionSettingsCommand = async (output, context) => {
|
|
3618
3998
|
if (output.statusCode >= 300) {
|
|
3619
3999
|
return de_CommandError(output, context);
|
|
@@ -4095,6 +4475,19 @@ export const de_UpdateBlueprintCommand = async (output, context) => {
|
|
|
4095
4475
|
};
|
|
4096
4476
|
return response;
|
|
4097
4477
|
};
|
|
4478
|
+
export const de_UpdateCatalogCommand = async (output, context) => {
|
|
4479
|
+
if (output.statusCode >= 300) {
|
|
4480
|
+
return de_CommandError(output, context);
|
|
4481
|
+
}
|
|
4482
|
+
const data = await parseBody(output.body, context);
|
|
4483
|
+
let contents = {};
|
|
4484
|
+
contents = _json(data);
|
|
4485
|
+
const response = {
|
|
4486
|
+
$metadata: deserializeMetadata(output),
|
|
4487
|
+
...contents,
|
|
4488
|
+
};
|
|
4489
|
+
return response;
|
|
4490
|
+
};
|
|
4098
4491
|
export const de_UpdateClassifierCommand = async (output, context) => {
|
|
4099
4492
|
if (output.statusCode >= 300) {
|
|
4100
4493
|
return de_CommandError(output, context);
|
|
@@ -4225,6 +4618,32 @@ export const de_UpdateDevEndpointCommand = async (output, context) => {
|
|
|
4225
4618
|
};
|
|
4226
4619
|
return response;
|
|
4227
4620
|
};
|
|
4621
|
+
export const de_UpdateIntegrationResourcePropertyCommand = async (output, context) => {
|
|
4622
|
+
if (output.statusCode >= 300) {
|
|
4623
|
+
return de_CommandError(output, context);
|
|
4624
|
+
}
|
|
4625
|
+
const data = await parseBody(output.body, context);
|
|
4626
|
+
let contents = {};
|
|
4627
|
+
contents = _json(data);
|
|
4628
|
+
const response = {
|
|
4629
|
+
$metadata: deserializeMetadata(output),
|
|
4630
|
+
...contents,
|
|
4631
|
+
};
|
|
4632
|
+
return response;
|
|
4633
|
+
};
|
|
4634
|
+
export const de_UpdateIntegrationTablePropertiesCommand = async (output, context) => {
|
|
4635
|
+
if (output.statusCode >= 300) {
|
|
4636
|
+
return de_CommandError(output, context);
|
|
4637
|
+
}
|
|
4638
|
+
const data = await parseBody(output.body, context);
|
|
4639
|
+
let contents = {};
|
|
4640
|
+
contents = _json(data);
|
|
4641
|
+
const response = {
|
|
4642
|
+
$metadata: deserializeMetadata(output),
|
|
4643
|
+
...contents,
|
|
4644
|
+
};
|
|
4645
|
+
return response;
|
|
4646
|
+
};
|
|
4228
4647
|
export const de_UpdateJobCommand = async (output, context) => {
|
|
4229
4648
|
if (output.statusCode >= 300) {
|
|
4230
4649
|
return de_CommandError(output, context);
|
|
@@ -4443,21 +4862,39 @@ const de_CommandError = async (output, context) => {
|
|
|
4443
4862
|
case "IllegalSessionStateException":
|
|
4444
4863
|
case "com.amazonaws.glue#IllegalSessionStateException":
|
|
4445
4864
|
throw await de_IllegalSessionStateExceptionRes(parsedOutput, context);
|
|
4446
|
-
case "ColumnStatisticsTaskRunningException":
|
|
4447
|
-
case "com.amazonaws.glue#ColumnStatisticsTaskRunningException":
|
|
4448
|
-
throw await de_ColumnStatisticsTaskRunningExceptionRes(parsedOutput, context);
|
|
4449
|
-
case "IdempotentParameterMismatchException":
|
|
4450
|
-
case "com.amazonaws.glue#IdempotentParameterMismatchException":
|
|
4451
|
-
throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
|
|
4452
4865
|
case "ConcurrentModificationException":
|
|
4453
4866
|
case "com.amazonaws.glue#ConcurrentModificationException":
|
|
4454
4867
|
throw await de_ConcurrentModificationExceptionRes(parsedOutput, context);
|
|
4455
4868
|
case "FederatedResourceAlreadyExistsException":
|
|
4456
4869
|
case "com.amazonaws.glue#FederatedResourceAlreadyExistsException":
|
|
4457
4870
|
throw await de_FederatedResourceAlreadyExistsExceptionRes(parsedOutput, context);
|
|
4871
|
+
case "ColumnStatisticsTaskRunningException":
|
|
4872
|
+
case "com.amazonaws.glue#ColumnStatisticsTaskRunningException":
|
|
4873
|
+
throw await de_ColumnStatisticsTaskRunningExceptionRes(parsedOutput, context);
|
|
4874
|
+
case "IdempotentParameterMismatchException":
|
|
4875
|
+
case "com.amazonaws.glue#IdempotentParameterMismatchException":
|
|
4876
|
+
throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
|
|
4458
4877
|
case "ValidationException":
|
|
4459
4878
|
case "com.amazonaws.glue#ValidationException":
|
|
4460
4879
|
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
4880
|
+
case "ConflictException":
|
|
4881
|
+
case "com.amazonaws.glue#ConflictException":
|
|
4882
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
4883
|
+
case "IntegrationConflictOperationFault":
|
|
4884
|
+
case "com.amazonaws.glue#IntegrationConflictOperationFault":
|
|
4885
|
+
throw await de_IntegrationConflictOperationFaultRes(parsedOutput, context);
|
|
4886
|
+
case "IntegrationQuotaExceededFault":
|
|
4887
|
+
case "com.amazonaws.glue#IntegrationQuotaExceededFault":
|
|
4888
|
+
throw await de_IntegrationQuotaExceededFaultRes(parsedOutput, context);
|
|
4889
|
+
case "InternalServerException":
|
|
4890
|
+
case "com.amazonaws.glue#InternalServerException":
|
|
4891
|
+
throw await de_InternalServerExceptionRes(parsedOutput, context);
|
|
4892
|
+
case "KMSKeyNotAccessibleFault":
|
|
4893
|
+
case "com.amazonaws.glue#KMSKeyNotAccessibleFault":
|
|
4894
|
+
throw await de_KMSKeyNotAccessibleFaultRes(parsedOutput, context);
|
|
4895
|
+
case "ResourceNotFoundException":
|
|
4896
|
+
case "com.amazonaws.glue#ResourceNotFoundException":
|
|
4897
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
4461
4898
|
case "OperationNotSupportedException":
|
|
4462
4899
|
case "com.amazonaws.glue#OperationNotSupportedException":
|
|
4463
4900
|
throw await de_OperationNotSupportedExceptionRes(parsedOutput, context);
|
|
@@ -4467,12 +4904,18 @@ const de_CommandError = async (output, context) => {
|
|
|
4467
4904
|
case "SchedulerTransitioningException":
|
|
4468
4905
|
case "com.amazonaws.glue#SchedulerTransitioningException":
|
|
4469
4906
|
throw await de_SchedulerTransitioningExceptionRes(parsedOutput, context);
|
|
4470
|
-
case "
|
|
4471
|
-
case "com.amazonaws.glue#
|
|
4472
|
-
throw await
|
|
4907
|
+
case "IntegrationNotFoundFault":
|
|
4908
|
+
case "com.amazonaws.glue#IntegrationNotFoundFault":
|
|
4909
|
+
throw await de_IntegrationNotFoundFaultRes(parsedOutput, context);
|
|
4910
|
+
case "InvalidIntegrationStateFault":
|
|
4911
|
+
case "com.amazonaws.glue#InvalidIntegrationStateFault":
|
|
4912
|
+
throw await de_InvalidIntegrationStateFaultRes(parsedOutput, context);
|
|
4473
4913
|
case "ConditionCheckFailureException":
|
|
4474
4914
|
case "com.amazonaws.glue#ConditionCheckFailureException":
|
|
4475
4915
|
throw await de_ConditionCheckFailureExceptionRes(parsedOutput, context);
|
|
4916
|
+
case "TargetResourceNotFound":
|
|
4917
|
+
case "com.amazonaws.glue#TargetResourceNotFound":
|
|
4918
|
+
throw await de_TargetResourceNotFoundRes(parsedOutput, context);
|
|
4476
4919
|
case "PermissionTypeMismatchException":
|
|
4477
4920
|
case "com.amazonaws.glue#PermissionTypeMismatchException":
|
|
4478
4921
|
throw await de_PermissionTypeMismatchExceptionRes(parsedOutput, context);
|
|
@@ -4710,6 +5153,42 @@ const de_IllegalWorkflowStateExceptionRes = async (parsedOutput, context) => {
|
|
|
4710
5153
|
});
|
|
4711
5154
|
return __decorateServiceException(exception, body);
|
|
4712
5155
|
};
|
|
5156
|
+
const de_IntegrationConflictOperationFaultRes = async (parsedOutput, context) => {
|
|
5157
|
+
const body = parsedOutput.body;
|
|
5158
|
+
const deserialized = _json(body);
|
|
5159
|
+
const exception = new IntegrationConflictOperationFault({
|
|
5160
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5161
|
+
...deserialized,
|
|
5162
|
+
});
|
|
5163
|
+
return __decorateServiceException(exception, body);
|
|
5164
|
+
};
|
|
5165
|
+
const de_IntegrationNotFoundFaultRes = async (parsedOutput, context) => {
|
|
5166
|
+
const body = parsedOutput.body;
|
|
5167
|
+
const deserialized = _json(body);
|
|
5168
|
+
const exception = new IntegrationNotFoundFault({
|
|
5169
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5170
|
+
...deserialized,
|
|
5171
|
+
});
|
|
5172
|
+
return __decorateServiceException(exception, body);
|
|
5173
|
+
};
|
|
5174
|
+
const de_IntegrationQuotaExceededFaultRes = async (parsedOutput, context) => {
|
|
5175
|
+
const body = parsedOutput.body;
|
|
5176
|
+
const deserialized = _json(body);
|
|
5177
|
+
const exception = new IntegrationQuotaExceededFault({
|
|
5178
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5179
|
+
...deserialized,
|
|
5180
|
+
});
|
|
5181
|
+
return __decorateServiceException(exception, body);
|
|
5182
|
+
};
|
|
5183
|
+
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
5184
|
+
const body = parsedOutput.body;
|
|
5185
|
+
const deserialized = _json(body);
|
|
5186
|
+
const exception = new InternalServerException({
|
|
5187
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5188
|
+
...deserialized,
|
|
5189
|
+
});
|
|
5190
|
+
return __decorateServiceException(exception, body);
|
|
5191
|
+
};
|
|
4713
5192
|
const de_InternalServiceExceptionRes = async (parsedOutput, context) => {
|
|
4714
5193
|
const body = parsedOutput.body;
|
|
4715
5194
|
const deserialized = _json(body);
|
|
@@ -4728,6 +5207,15 @@ const de_InvalidInputExceptionRes = async (parsedOutput, context) => {
|
|
|
4728
5207
|
});
|
|
4729
5208
|
return __decorateServiceException(exception, body);
|
|
4730
5209
|
};
|
|
5210
|
+
const de_InvalidIntegrationStateFaultRes = async (parsedOutput, context) => {
|
|
5211
|
+
const body = parsedOutput.body;
|
|
5212
|
+
const deserialized = _json(body);
|
|
5213
|
+
const exception = new InvalidIntegrationStateFault({
|
|
5214
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5215
|
+
...deserialized,
|
|
5216
|
+
});
|
|
5217
|
+
return __decorateServiceException(exception, body);
|
|
5218
|
+
};
|
|
4731
5219
|
const de_InvalidStateExceptionRes = async (parsedOutput, context) => {
|
|
4732
5220
|
const body = parsedOutput.body;
|
|
4733
5221
|
const deserialized = _json(body);
|
|
@@ -4737,6 +5225,15 @@ const de_InvalidStateExceptionRes = async (parsedOutput, context) => {
|
|
|
4737
5225
|
});
|
|
4738
5226
|
return __decorateServiceException(exception, body);
|
|
4739
5227
|
};
|
|
5228
|
+
const de_KMSKeyNotAccessibleFaultRes = async (parsedOutput, context) => {
|
|
5229
|
+
const body = parsedOutput.body;
|
|
5230
|
+
const deserialized = _json(body);
|
|
5231
|
+
const exception = new KMSKeyNotAccessibleFault({
|
|
5232
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5233
|
+
...deserialized,
|
|
5234
|
+
});
|
|
5235
|
+
return __decorateServiceException(exception, body);
|
|
5236
|
+
};
|
|
4740
5237
|
const de_MLTransformNotReadyExceptionRes = async (parsedOutput, context) => {
|
|
4741
5238
|
const body = parsedOutput.body;
|
|
4742
5239
|
const deserialized = _json(body);
|
|
@@ -4782,6 +5279,15 @@ const de_PermissionTypeMismatchExceptionRes = async (parsedOutput, context) => {
|
|
|
4782
5279
|
});
|
|
4783
5280
|
return __decorateServiceException(exception, body);
|
|
4784
5281
|
};
|
|
5282
|
+
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
5283
|
+
const body = parsedOutput.body;
|
|
5284
|
+
const deserialized = _json(body);
|
|
5285
|
+
const exception = new ResourceNotFoundException({
|
|
5286
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5287
|
+
...deserialized,
|
|
5288
|
+
});
|
|
5289
|
+
return __decorateServiceException(exception, body);
|
|
5290
|
+
};
|
|
4785
5291
|
const de_ResourceNotReadyExceptionRes = async (parsedOutput, context) => {
|
|
4786
5292
|
const body = parsedOutput.body;
|
|
4787
5293
|
const deserialized = _json(body);
|
|
@@ -4827,6 +5333,15 @@ const de_SchedulerTransitioningExceptionRes = async (parsedOutput, context) => {
|
|
|
4827
5333
|
});
|
|
4828
5334
|
return __decorateServiceException(exception, body);
|
|
4829
5335
|
};
|
|
5336
|
+
const de_TargetResourceNotFoundRes = async (parsedOutput, context) => {
|
|
5337
|
+
const body = parsedOutput.body;
|
|
5338
|
+
const deserialized = _json(body);
|
|
5339
|
+
const exception = new TargetResourceNotFound({
|
|
5340
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
5341
|
+
...deserialized,
|
|
5342
|
+
});
|
|
5343
|
+
return __decorateServiceException(exception, body);
|
|
5344
|
+
};
|
|
4830
5345
|
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
4831
5346
|
const body = parsedOutput.body;
|
|
4832
5347
|
const deserialized = _json(body);
|
|
@@ -5856,6 +6371,22 @@ const de_Blueprints = (output, context) => {
|
|
|
5856
6371
|
});
|
|
5857
6372
|
return retVal;
|
|
5858
6373
|
};
|
|
6374
|
+
const de_Catalog = (output, context) => {
|
|
6375
|
+
return take(output, {
|
|
6376
|
+
CatalogId: __expectString,
|
|
6377
|
+
CatalogProperties: _json,
|
|
6378
|
+
CreateDatabaseDefaultPermissions: _json,
|
|
6379
|
+
CreateTableDefaultPermissions: _json,
|
|
6380
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6381
|
+
Description: __expectString,
|
|
6382
|
+
FederatedCatalog: _json,
|
|
6383
|
+
Name: __expectString,
|
|
6384
|
+
Parameters: _json,
|
|
6385
|
+
ResourceArn: __expectString,
|
|
6386
|
+
TargetRedshiftCatalog: _json,
|
|
6387
|
+
UpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6388
|
+
});
|
|
6389
|
+
};
|
|
5859
6390
|
const de_CatalogImportStatus = (output, context) => {
|
|
5860
6391
|
return take(output, {
|
|
5861
6392
|
ImportCompleted: __expectBoolean,
|
|
@@ -5885,6 +6416,14 @@ const de_CatalogKinesisSource = (output, context) => {
|
|
|
5885
6416
|
WindowSize: __expectInt32,
|
|
5886
6417
|
});
|
|
5887
6418
|
};
|
|
6419
|
+
const de_CatalogList = (output, context) => {
|
|
6420
|
+
const retVal = (output || [])
|
|
6421
|
+
.filter((e) => e != null)
|
|
6422
|
+
.map((entry) => {
|
|
6423
|
+
return de_Catalog(entry, context);
|
|
6424
|
+
});
|
|
6425
|
+
return retVal;
|
|
6426
|
+
};
|
|
5888
6427
|
const de_Classifier = (output, context) => {
|
|
5889
6428
|
return take(output, {
|
|
5890
6429
|
CsvClassifier: (_) => de_CsvClassifier(_, context),
|
|
@@ -6077,10 +6616,13 @@ const de_ColumnStatisticsTaskSettings = (output, context) => {
|
|
|
6077
6616
|
CatalogID: __expectString,
|
|
6078
6617
|
ColumnNameList: _json,
|
|
6079
6618
|
DatabaseName: __expectString,
|
|
6619
|
+
LastExecutionAttempt: (_) => de_ExecutionAttempt(_, context),
|
|
6080
6620
|
Role: __expectString,
|
|
6081
6621
|
SampleSize: __limitedParseDouble,
|
|
6082
6622
|
Schedule: _json,
|
|
6623
|
+
ScheduleType: __expectString,
|
|
6083
6624
|
SecurityConfiguration: __expectString,
|
|
6625
|
+
SettingSource: __expectString,
|
|
6084
6626
|
TableName: __expectString,
|
|
6085
6627
|
});
|
|
6086
6628
|
};
|
|
@@ -6093,7 +6635,9 @@ const de_Connection = (output, context) => {
|
|
|
6093
6635
|
return take(output, {
|
|
6094
6636
|
AthenaProperties: _json,
|
|
6095
6637
|
AuthenticationConfiguration: _json,
|
|
6638
|
+
CompatibleComputeEnvironments: _json,
|
|
6096
6639
|
ConnectionProperties: _json,
|
|
6640
|
+
ConnectionSchemaVersion: __expectInt32,
|
|
6097
6641
|
ConnectionType: __expectString,
|
|
6098
6642
|
CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6099
6643
|
Description: __expectString,
|
|
@@ -6103,6 +6647,8 @@ const de_Connection = (output, context) => {
|
|
|
6103
6647
|
MatchCriteria: _json,
|
|
6104
6648
|
Name: __expectString,
|
|
6105
6649
|
PhysicalConnectionRequirements: _json,
|
|
6650
|
+
PythonProperties: _json,
|
|
6651
|
+
SparkProperties: _json,
|
|
6106
6652
|
Status: __expectString,
|
|
6107
6653
|
StatusReason: __expectString,
|
|
6108
6654
|
});
|
|
@@ -6247,6 +6793,22 @@ const de_CreateDevEndpointResponse = (output, context) => {
|
|
|
6247
6793
|
ZeppelinRemoteSparkInterpreterPort: __expectInt32,
|
|
6248
6794
|
});
|
|
6249
6795
|
};
|
|
6796
|
+
const de_CreateIntegrationResponse = (output, context) => {
|
|
6797
|
+
return take(output, {
|
|
6798
|
+
AdditionalEncryptionContext: _json,
|
|
6799
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6800
|
+
DataFilter: __expectString,
|
|
6801
|
+
Description: __expectString,
|
|
6802
|
+
Errors: _json,
|
|
6803
|
+
IntegrationArn: __expectString,
|
|
6804
|
+
IntegrationName: __expectString,
|
|
6805
|
+
KmsKeyId: __expectString,
|
|
6806
|
+
SourceArn: __expectString,
|
|
6807
|
+
Status: __expectString,
|
|
6808
|
+
Tags: _json,
|
|
6809
|
+
TargetArn: __expectString,
|
|
6810
|
+
});
|
|
6811
|
+
};
|
|
6250
6812
|
const de_CreateSecurityConfigurationResponse = (output, context) => {
|
|
6251
6813
|
return take(output, {
|
|
6252
6814
|
CreatedTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -6468,6 +7030,34 @@ const de_DecimalNumber = (output, context) => {
|
|
|
6468
7030
|
UnscaledValue: context.base64Decoder,
|
|
6469
7031
|
});
|
|
6470
7032
|
};
|
|
7033
|
+
const de_DeleteIntegrationResponse = (output, context) => {
|
|
7034
|
+
return take(output, {
|
|
7035
|
+
AdditionalEncryptionContext: _json,
|
|
7036
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7037
|
+
DataFilter: __expectString,
|
|
7038
|
+
Description: __expectString,
|
|
7039
|
+
Errors: _json,
|
|
7040
|
+
IntegrationArn: __expectString,
|
|
7041
|
+
IntegrationName: __expectString,
|
|
7042
|
+
KmsKeyId: __expectString,
|
|
7043
|
+
SourceArn: __expectString,
|
|
7044
|
+
Status: __expectString,
|
|
7045
|
+
Tags: _json,
|
|
7046
|
+
TargetArn: __expectString,
|
|
7047
|
+
});
|
|
7048
|
+
};
|
|
7049
|
+
const de_DescribeInboundIntegrationsResponse = (output, context) => {
|
|
7050
|
+
return take(output, {
|
|
7051
|
+
InboundIntegrations: (_) => de_InboundIntegrationsList(_, context),
|
|
7052
|
+
Marker: __expectString,
|
|
7053
|
+
});
|
|
7054
|
+
};
|
|
7055
|
+
const de_DescribeIntegrationsResponse = (output, context) => {
|
|
7056
|
+
return take(output, {
|
|
7057
|
+
Integrations: (_) => de_IntegrationsList(_, context),
|
|
7058
|
+
Marker: __expectString,
|
|
7059
|
+
});
|
|
7060
|
+
};
|
|
6471
7061
|
const de_DevEndpoint = (output, context) => {
|
|
6472
7062
|
return take(output, {
|
|
6473
7063
|
Arguments: _json,
|
|
@@ -6561,6 +7151,14 @@ const de_EvaluationMetrics = (output, context) => {
|
|
|
6561
7151
|
TransformType: __expectString,
|
|
6562
7152
|
});
|
|
6563
7153
|
};
|
|
7154
|
+
const de_ExecutionAttempt = (output, context) => {
|
|
7155
|
+
return take(output, {
|
|
7156
|
+
ColumnStatisticsTaskRunId: __expectString,
|
|
7157
|
+
ErrorMessage: __expectString,
|
|
7158
|
+
ExecutionTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7159
|
+
Status: __expectString,
|
|
7160
|
+
});
|
|
7161
|
+
};
|
|
6564
7162
|
const de_FindMatchesMetrics = (output, context) => {
|
|
6565
7163
|
return take(output, {
|
|
6566
7164
|
AreaUnderPRCurve: __limitedParseDouble,
|
|
@@ -6600,6 +7198,17 @@ const de_GetCatalogImportStatusResponse = (output, context) => {
|
|
|
6600
7198
|
ImportStatus: (_) => de_CatalogImportStatus(_, context),
|
|
6601
7199
|
});
|
|
6602
7200
|
};
|
|
7201
|
+
const de_GetCatalogResponse = (output, context) => {
|
|
7202
|
+
return take(output, {
|
|
7203
|
+
Catalog: (_) => de_Catalog(_, context),
|
|
7204
|
+
});
|
|
7205
|
+
};
|
|
7206
|
+
const de_GetCatalogsResponse = (output, context) => {
|
|
7207
|
+
return take(output, {
|
|
7208
|
+
CatalogList: (_) => de_CatalogList(_, context),
|
|
7209
|
+
NextToken: __expectString,
|
|
7210
|
+
});
|
|
7211
|
+
};
|
|
6603
7212
|
const de_GetClassifierResponse = (output, context) => {
|
|
6604
7213
|
return take(output, {
|
|
6605
7214
|
Classifier: (_) => de_Classifier(_, context),
|
|
@@ -6770,6 +7379,12 @@ const de_GetDevEndpointsResponse = (output, context) => {
|
|
|
6770
7379
|
NextToken: __expectString,
|
|
6771
7380
|
});
|
|
6772
7381
|
};
|
|
7382
|
+
const de_GetEntityRecordsResponse = (output, context) => {
|
|
7383
|
+
return take(output, {
|
|
7384
|
+
NextToken: __expectString,
|
|
7385
|
+
Records: (_) => de_Records(_, context),
|
|
7386
|
+
});
|
|
7387
|
+
};
|
|
6773
7388
|
const de_GetJobResponse = (output, context) => {
|
|
6774
7389
|
return take(output, {
|
|
6775
7390
|
Job: (_) => de_Job(_, context),
|
|
@@ -7039,6 +7654,48 @@ const de_IcebergRetentionMetrics = (output, context) => {
|
|
|
7039
7654
|
NumberOfManifestListsDeleted: __expectLong,
|
|
7040
7655
|
});
|
|
7041
7656
|
};
|
|
7657
|
+
const de_InboundIntegration = (output, context) => {
|
|
7658
|
+
return take(output, {
|
|
7659
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7660
|
+
Errors: _json,
|
|
7661
|
+
IntegrationArn: __expectString,
|
|
7662
|
+
SourceArn: __expectString,
|
|
7663
|
+
Status: __expectString,
|
|
7664
|
+
TargetArn: __expectString,
|
|
7665
|
+
});
|
|
7666
|
+
};
|
|
7667
|
+
const de_InboundIntegrationsList = (output, context) => {
|
|
7668
|
+
const retVal = (output || [])
|
|
7669
|
+
.filter((e) => e != null)
|
|
7670
|
+
.map((entry) => {
|
|
7671
|
+
return de_InboundIntegration(entry, context);
|
|
7672
|
+
});
|
|
7673
|
+
return retVal;
|
|
7674
|
+
};
|
|
7675
|
+
const de_Integration = (output, context) => {
|
|
7676
|
+
return take(output, {
|
|
7677
|
+
AdditionalEncryptionContext: _json,
|
|
7678
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7679
|
+
DataFilter: __expectString,
|
|
7680
|
+
Description: __expectString,
|
|
7681
|
+
Errors: _json,
|
|
7682
|
+
IntegrationArn: __expectString,
|
|
7683
|
+
IntegrationName: __expectString,
|
|
7684
|
+
KmsKeyId: __expectString,
|
|
7685
|
+
SourceArn: __expectString,
|
|
7686
|
+
Status: __expectString,
|
|
7687
|
+
Tags: _json,
|
|
7688
|
+
TargetArn: __expectString,
|
|
7689
|
+
});
|
|
7690
|
+
};
|
|
7691
|
+
const de_IntegrationsList = (output, context) => {
|
|
7692
|
+
const retVal = (output || [])
|
|
7693
|
+
.filter((e) => e != null)
|
|
7694
|
+
.map((entry) => {
|
|
7695
|
+
return de_Integration(entry, context);
|
|
7696
|
+
});
|
|
7697
|
+
return retVal;
|
|
7698
|
+
};
|
|
7042
7699
|
const de_Job = (output, context) => {
|
|
7043
7700
|
return take(output, {
|
|
7044
7701
|
AllocatedCapacity: __expectInt32,
|
|
@@ -7319,6 +7976,22 @@ const de_MLTransform = (output, context) => {
|
|
|
7319
7976
|
WorkerType: __expectString,
|
|
7320
7977
|
});
|
|
7321
7978
|
};
|
|
7979
|
+
const de_ModifyIntegrationResponse = (output, context) => {
|
|
7980
|
+
return take(output, {
|
|
7981
|
+
AdditionalEncryptionContext: _json,
|
|
7982
|
+
CreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7983
|
+
DataFilter: __expectString,
|
|
7984
|
+
Description: __expectString,
|
|
7985
|
+
Errors: _json,
|
|
7986
|
+
IntegrationArn: __expectString,
|
|
7987
|
+
IntegrationName: __expectString,
|
|
7988
|
+
KmsKeyId: __expectString,
|
|
7989
|
+
SourceArn: __expectString,
|
|
7990
|
+
Status: __expectString,
|
|
7991
|
+
Tags: _json,
|
|
7992
|
+
TargetArn: __expectString,
|
|
7993
|
+
});
|
|
7994
|
+
};
|
|
7322
7995
|
const de_Node = (output, context) => {
|
|
7323
7996
|
return take(output, {
|
|
7324
7997
|
CrawlerDetails: (_) => de_CrawlerNodeDetails(_, context),
|
|
@@ -7375,6 +8048,17 @@ const de_PIIDetection = (output, context) => {
|
|
|
7375
8048
|
ThresholdFraction: __limitedParseDouble,
|
|
7376
8049
|
});
|
|
7377
8050
|
};
|
|
8051
|
+
const de_Record = (output, context) => {
|
|
8052
|
+
return output;
|
|
8053
|
+
};
|
|
8054
|
+
const de_Records = (output, context) => {
|
|
8055
|
+
const retVal = (output || [])
|
|
8056
|
+
.filter((e) => e != null)
|
|
8057
|
+
.map((entry) => {
|
|
8058
|
+
return de_Record(entry, context);
|
|
8059
|
+
});
|
|
8060
|
+
return retVal;
|
|
8061
|
+
};
|
|
7378
8062
|
const de_RetentionMetrics = (output, context) => {
|
|
7379
8063
|
return take(output, {
|
|
7380
8064
|
IcebergMetrics: (_) => de_IcebergRetentionMetrics(_, context),
|