@aws-sdk/client-glue 3.699.0 → 3.709.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 +35 -35
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ModifyIntegrationCommand, se_ModifyIntegrationCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ModifyIntegrationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSGlue", "ModifyIntegration", {})
|
|
17
|
+
.n("GlueClient", "ModifyIntegrationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ModifyIntegrationCommand)
|
|
20
|
+
.de(de_ModifyIntegrationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { TestConnectionRequestFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { TestConnectionRequestFilterSensitiveLog, } from "../models/models_3";
|
|
6
6
|
import { de_TestConnectionCommand, se_TestConnectionCommand } from "../protocols/Aws_json1_1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class TestConnectionCommand extends $Command
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateCatalogCommand, se_UpdateCatalogCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateCatalogCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSGlue", "UpdateCatalog", {})
|
|
17
|
+
.n("GlueClient", "UpdateCatalogCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateCatalogCommand)
|
|
20
|
+
.de(de_UpdateCatalogCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { UpdateConnectionRequestFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { UpdateConnectionRequestFilterSensitiveLog, } from "../models/models_3";
|
|
6
6
|
import { de_UpdateConnectionCommand, se_UpdateConnectionCommand } from "../protocols/Aws_json1_1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateConnectionCommand extends $Command
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateIntegrationResourcePropertyCommand, se_UpdateIntegrationResourcePropertyCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateIntegrationResourcePropertyCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSGlue", "UpdateIntegrationResourceProperty", {})
|
|
17
|
+
.n("GlueClient", "UpdateIntegrationResourcePropertyCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateIntegrationResourcePropertyCommand)
|
|
20
|
+
.de(de_UpdateIntegrationResourcePropertyCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateIntegrationTablePropertiesCommand, se_UpdateIntegrationTablePropertiesCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateIntegrationTablePropertiesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSGlue", "UpdateIntegrationTableProperties", {})
|
|
17
|
+
.n("GlueClient", "UpdateIntegrationTablePropertiesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateIntegrationTablePropertiesCommand)
|
|
20
|
+
.de(de_UpdateIntegrationTablePropertiesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -22,6 +22,7 @@ export * from "./CancelMLTaskRunCommand";
|
|
|
22
22
|
export * from "./CancelStatementCommand";
|
|
23
23
|
export * from "./CheckSchemaVersionValidityCommand";
|
|
24
24
|
export * from "./CreateBlueprintCommand";
|
|
25
|
+
export * from "./CreateCatalogCommand";
|
|
25
26
|
export * from "./CreateClassifierCommand";
|
|
26
27
|
export * from "./CreateColumnStatisticsTaskSettingsCommand";
|
|
27
28
|
export * from "./CreateConnectionCommand";
|
|
@@ -30,6 +31,9 @@ export * from "./CreateCustomEntityTypeCommand";
|
|
|
30
31
|
export * from "./CreateDataQualityRulesetCommand";
|
|
31
32
|
export * from "./CreateDatabaseCommand";
|
|
32
33
|
export * from "./CreateDevEndpointCommand";
|
|
34
|
+
export * from "./CreateIntegrationCommand";
|
|
35
|
+
export * from "./CreateIntegrationResourcePropertyCommand";
|
|
36
|
+
export * from "./CreateIntegrationTablePropertiesCommand";
|
|
33
37
|
export * from "./CreateJobCommand";
|
|
34
38
|
export * from "./CreateMLTransformCommand";
|
|
35
39
|
export * from "./CreatePartitionCommand";
|
|
@@ -46,6 +50,7 @@ export * from "./CreateUsageProfileCommand";
|
|
|
46
50
|
export * from "./CreateUserDefinedFunctionCommand";
|
|
47
51
|
export * from "./CreateWorkflowCommand";
|
|
48
52
|
export * from "./DeleteBlueprintCommand";
|
|
53
|
+
export * from "./DeleteCatalogCommand";
|
|
49
54
|
export * from "./DeleteClassifierCommand";
|
|
50
55
|
export * from "./DeleteColumnStatisticsForPartitionCommand";
|
|
51
56
|
export * from "./DeleteColumnStatisticsForTableCommand";
|
|
@@ -56,6 +61,8 @@ export * from "./DeleteCustomEntityTypeCommand";
|
|
|
56
61
|
export * from "./DeleteDataQualityRulesetCommand";
|
|
57
62
|
export * from "./DeleteDatabaseCommand";
|
|
58
63
|
export * from "./DeleteDevEndpointCommand";
|
|
64
|
+
export * from "./DeleteIntegrationCommand";
|
|
65
|
+
export * from "./DeleteIntegrationTablePropertiesCommand";
|
|
59
66
|
export * from "./DeleteJobCommand";
|
|
60
67
|
export * from "./DeleteMLTransformCommand";
|
|
61
68
|
export * from "./DeletePartitionCommand";
|
|
@@ -73,10 +80,16 @@ export * from "./DeleteTriggerCommand";
|
|
|
73
80
|
export * from "./DeleteUsageProfileCommand";
|
|
74
81
|
export * from "./DeleteUserDefinedFunctionCommand";
|
|
75
82
|
export * from "./DeleteWorkflowCommand";
|
|
83
|
+
export * from "./DescribeConnectionTypeCommand";
|
|
84
|
+
export * from "./DescribeEntityCommand";
|
|
85
|
+
export * from "./DescribeInboundIntegrationsCommand";
|
|
86
|
+
export * from "./DescribeIntegrationsCommand";
|
|
76
87
|
export * from "./GetBlueprintCommand";
|
|
77
88
|
export * from "./GetBlueprintRunCommand";
|
|
78
89
|
export * from "./GetBlueprintRunsCommand";
|
|
90
|
+
export * from "./GetCatalogCommand";
|
|
79
91
|
export * from "./GetCatalogImportStatusCommand";
|
|
92
|
+
export * from "./GetCatalogsCommand";
|
|
80
93
|
export * from "./GetClassifierCommand";
|
|
81
94
|
export * from "./GetClassifiersCommand";
|
|
82
95
|
export * from "./GetColumnStatisticsForPartitionCommand";
|
|
@@ -102,6 +115,9 @@ export * from "./GetDatabasesCommand";
|
|
|
102
115
|
export * from "./GetDataflowGraphCommand";
|
|
103
116
|
export * from "./GetDevEndpointCommand";
|
|
104
117
|
export * from "./GetDevEndpointsCommand";
|
|
118
|
+
export * from "./GetEntityRecordsCommand";
|
|
119
|
+
export * from "./GetIntegrationResourcePropertyCommand";
|
|
120
|
+
export * from "./GetIntegrationTablePropertiesCommand";
|
|
105
121
|
export * from "./GetJobBookmarkCommand";
|
|
106
122
|
export * from "./GetJobCommand";
|
|
107
123
|
export * from "./GetJobRunCommand";
|
|
@@ -148,6 +164,7 @@ export * from "./GetWorkflowRunsCommand";
|
|
|
148
164
|
export * from "./ImportCatalogToGlueCommand";
|
|
149
165
|
export * from "./ListBlueprintsCommand";
|
|
150
166
|
export * from "./ListColumnStatisticsTaskRunsCommand";
|
|
167
|
+
export * from "./ListConnectionTypesCommand";
|
|
151
168
|
export * from "./ListCrawlersCommand";
|
|
152
169
|
export * from "./ListCrawlsCommand";
|
|
153
170
|
export * from "./ListCustomEntityTypesCommand";
|
|
@@ -158,6 +175,7 @@ export * from "./ListDataQualityRulesetsCommand";
|
|
|
158
175
|
export * from "./ListDataQualityStatisticAnnotationsCommand";
|
|
159
176
|
export * from "./ListDataQualityStatisticsCommand";
|
|
160
177
|
export * from "./ListDevEndpointsCommand";
|
|
178
|
+
export * from "./ListEntitiesCommand";
|
|
161
179
|
export * from "./ListJobsCommand";
|
|
162
180
|
export * from "./ListMLTransformsCommand";
|
|
163
181
|
export * from "./ListRegistriesCommand";
|
|
@@ -169,6 +187,7 @@ export * from "./ListTableOptimizerRunsCommand";
|
|
|
169
187
|
export * from "./ListTriggersCommand";
|
|
170
188
|
export * from "./ListUsageProfilesCommand";
|
|
171
189
|
export * from "./ListWorkflowsCommand";
|
|
190
|
+
export * from "./ModifyIntegrationCommand";
|
|
172
191
|
export * from "./PutDataCatalogEncryptionSettingsCommand";
|
|
173
192
|
export * from "./PutDataQualityProfileAnnotationCommand";
|
|
174
193
|
export * from "./PutResourcePolicyCommand";
|
|
@@ -206,6 +225,7 @@ export * from "./TagResourceCommand";
|
|
|
206
225
|
export * from "./TestConnectionCommand";
|
|
207
226
|
export * from "./UntagResourceCommand";
|
|
208
227
|
export * from "./UpdateBlueprintCommand";
|
|
228
|
+
export * from "./UpdateCatalogCommand";
|
|
209
229
|
export * from "./UpdateClassifierCommand";
|
|
210
230
|
export * from "./UpdateColumnStatisticsForPartitionCommand";
|
|
211
231
|
export * from "./UpdateColumnStatisticsForTableCommand";
|
|
@@ -216,6 +236,8 @@ export * from "./UpdateCrawlerScheduleCommand";
|
|
|
216
236
|
export * from "./UpdateDataQualityRulesetCommand";
|
|
217
237
|
export * from "./UpdateDatabaseCommand";
|
|
218
238
|
export * from "./UpdateDevEndpointCommand";
|
|
239
|
+
export * from "./UpdateIntegrationResourcePropertyCommand";
|
|
240
|
+
export * from "./UpdateIntegrationTablePropertiesCommand";
|
|
219
241
|
export * from "./UpdateJobCommand";
|
|
220
242
|
export * from "./UpdateJobFromSourceControlCommand";
|
|
221
243
|
export * from "./UpdateMLTransformCommand";
|
|
@@ -51,9 +51,21 @@ export const InclusionAnnotationValue = {
|
|
|
51
51
|
EXCLUDE: "EXCLUDE",
|
|
52
52
|
INCLUDE: "INCLUDE",
|
|
53
53
|
};
|
|
54
|
+
export const DataOperation = {
|
|
55
|
+
READ: "READ",
|
|
56
|
+
WRITE: "WRITE",
|
|
57
|
+
};
|
|
58
|
+
export const PropertyType = {
|
|
59
|
+
READ_ONLY: "READ_ONLY",
|
|
60
|
+
SECRET: "SECRET",
|
|
61
|
+
SECRET_OR_USER_INPUT: "SECRET_OR_USER_INPUT",
|
|
62
|
+
UNUSED: "UNUSED",
|
|
63
|
+
USER_INPUT: "USER_INPUT",
|
|
64
|
+
};
|
|
54
65
|
export const AuthenticationType = {
|
|
55
66
|
BASIC: "BASIC",
|
|
56
67
|
CUSTOM: "CUSTOM",
|
|
68
|
+
IAM: "IAM",
|
|
57
69
|
OAUTH2: "OAUTH2",
|
|
58
70
|
};
|
|
59
71
|
export const OAuth2GrantType = {
|
|
@@ -534,19 +546,35 @@ export const WorkflowRunStatus = {
|
|
|
534
546
|
STOPPED: "STOPPED",
|
|
535
547
|
STOPPING: "STOPPING",
|
|
536
548
|
};
|
|
549
|
+
export const BasicAuthenticationCredentialsFilterSensitiveLog = (obj) => ({
|
|
550
|
+
...obj,
|
|
551
|
+
...(obj.Password && { Password: SENSITIVE_STRING }),
|
|
552
|
+
});
|
|
537
553
|
export const AuthorizationCodePropertiesFilterSensitiveLog = (obj) => ({
|
|
538
554
|
...obj,
|
|
539
555
|
...(obj.AuthorizationCode && { AuthorizationCode: SENSITIVE_STRING }),
|
|
540
556
|
});
|
|
557
|
+
export const OAuth2CredentialsFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
...(obj.UserManagedClientApplicationClientSecret && { UserManagedClientApplicationClientSecret: SENSITIVE_STRING }),
|
|
560
|
+
...(obj.AccessToken && { AccessToken: SENSITIVE_STRING }),
|
|
561
|
+
...(obj.RefreshToken && { RefreshToken: SENSITIVE_STRING }),
|
|
562
|
+
...(obj.JwtToken && { JwtToken: SENSITIVE_STRING }),
|
|
563
|
+
});
|
|
541
564
|
export const OAuth2PropertiesInputFilterSensitiveLog = (obj) => ({
|
|
542
565
|
...obj,
|
|
543
566
|
...(obj.AuthorizationCodeProperties && {
|
|
544
567
|
AuthorizationCodeProperties: AuthorizationCodePropertiesFilterSensitiveLog(obj.AuthorizationCodeProperties),
|
|
545
568
|
}),
|
|
569
|
+
...(obj.OAuth2Credentials && { OAuth2Credentials: OAuth2CredentialsFilterSensitiveLog(obj.OAuth2Credentials) }),
|
|
546
570
|
});
|
|
547
571
|
export const AuthenticationConfigurationInputFilterSensitiveLog = (obj) => ({
|
|
548
572
|
...obj,
|
|
549
573
|
...(obj.OAuth2Properties && { OAuth2Properties: OAuth2PropertiesInputFilterSensitiveLog(obj.OAuth2Properties) }),
|
|
574
|
+
...(obj.BasicAuthenticationCredentials && {
|
|
575
|
+
BasicAuthenticationCredentials: BasicAuthenticationCredentialsFilterSensitiveLog(obj.BasicAuthenticationCredentials),
|
|
576
|
+
}),
|
|
577
|
+
...(obj.CustomAuthenticationCredentials && { CustomAuthenticationCredentials: SENSITIVE_STRING }),
|
|
550
578
|
});
|
|
551
579
|
export const DataQualityAnalyzerResultFilterSensitiveLog = (obj) => ({
|
|
552
580
|
...obj,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
2
|
-
import { AuthenticationConfigurationInputFilterSensitiveLog,
|
|
2
|
+
import { AuthenticationConfigurationInputFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
export const TaskStatusType = {
|
|
4
4
|
FAILED: "FAILED",
|
|
5
5
|
RUNNING: "RUNNING",
|
|
@@ -27,6 +27,44 @@ export const DataFormat = {
|
|
|
27
27
|
JSON: "JSON",
|
|
28
28
|
PROTOBUF: "PROTOBUF",
|
|
29
29
|
};
|
|
30
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
31
|
+
constructor(opts) {
|
|
32
|
+
super({
|
|
33
|
+
name: "ConcurrentModificationException",
|
|
34
|
+
$fault: "client",
|
|
35
|
+
...opts,
|
|
36
|
+
});
|
|
37
|
+
this.name = "ConcurrentModificationException";
|
|
38
|
+
this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
40
|
+
this.Message = opts.Message;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
export const Permission = {
|
|
44
|
+
ALL: "ALL",
|
|
45
|
+
ALTER: "ALTER",
|
|
46
|
+
CREATE_DATABASE: "CREATE_DATABASE",
|
|
47
|
+
CREATE_TABLE: "CREATE_TABLE",
|
|
48
|
+
DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS",
|
|
49
|
+
DELETE: "DELETE",
|
|
50
|
+
DROP: "DROP",
|
|
51
|
+
INSERT: "INSERT",
|
|
52
|
+
SELECT: "SELECT",
|
|
53
|
+
};
|
|
54
|
+
export class FederatedResourceAlreadyExistsException extends __BaseException {
|
|
55
|
+
constructor(opts) {
|
|
56
|
+
super({
|
|
57
|
+
name: "FederatedResourceAlreadyExistsException",
|
|
58
|
+
$fault: "client",
|
|
59
|
+
...opts,
|
|
60
|
+
});
|
|
61
|
+
this.name = "FederatedResourceAlreadyExistsException";
|
|
62
|
+
this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(this, FederatedResourceAlreadyExistsException.prototype);
|
|
64
|
+
this.Message = opts.Message;
|
|
65
|
+
this.AssociatedGlueResource = opts.AssociatedGlueResource;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
30
68
|
export const CsvHeaderOption = {
|
|
31
69
|
ABSENT: "ABSENT",
|
|
32
70
|
PRESENT: "PRESENT",
|
|
@@ -65,6 +103,8 @@ export const ConnectionPropertyKey = {
|
|
|
65
103
|
ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD: "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD",
|
|
66
104
|
ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD: "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD",
|
|
67
105
|
ENCRYPTED_PASSWORD: "ENCRYPTED_PASSWORD",
|
|
106
|
+
ENDPOINT: "ENDPOINT",
|
|
107
|
+
ENDPOINT_TYPE: "ENDPOINT_TYPE",
|
|
68
108
|
HOST: "HOST",
|
|
69
109
|
INSTANCE_ID: "INSTANCE_ID",
|
|
70
110
|
JDBC_CONNECTION_URL: "JDBC_CONNECTION_URL",
|
|
@@ -101,15 +141,39 @@ export const ConnectionPropertyKey = {
|
|
|
101
141
|
};
|
|
102
142
|
export const ConnectionType = {
|
|
103
143
|
CUSTOM: "CUSTOM",
|
|
144
|
+
FACEBOOKADS: "FACEBOOKADS",
|
|
145
|
+
GOOGLEADS: "GOOGLEADS",
|
|
146
|
+
GOOGLEANALYTICS4: "GOOGLEANALYTICS4",
|
|
147
|
+
GOOGLESHEETS: "GOOGLESHEETS",
|
|
148
|
+
HUBSPOT: "HUBSPOT",
|
|
149
|
+
INSTAGRAMADS: "INSTAGRAMADS",
|
|
150
|
+
INTERCOM: "INTERCOM",
|
|
104
151
|
JDBC: "JDBC",
|
|
152
|
+
JIRACLOUD: "JIRACLOUD",
|
|
105
153
|
KAFKA: "KAFKA",
|
|
154
|
+
MARKETO: "MARKETO",
|
|
106
155
|
MARKETPLACE: "MARKETPLACE",
|
|
107
156
|
MONGODB: "MONGODB",
|
|
157
|
+
NETSUITEERP: "NETSUITEERP",
|
|
108
158
|
NETWORK: "NETWORK",
|
|
109
159
|
SALESFORCE: "SALESFORCE",
|
|
160
|
+
SALESFORCEMARKETINGCLOUD: "SALESFORCEMARKETINGCLOUD",
|
|
161
|
+
SALESFORCEPARDOT: "SALESFORCEPARDOT",
|
|
162
|
+
SAPODATA: "SAPODATA",
|
|
163
|
+
SERVICENOW: "SERVICENOW",
|
|
110
164
|
SFTP: "SFTP",
|
|
165
|
+
SLACK: "SLACK",
|
|
166
|
+
SNAPCHATADS: "SNAPCHATADS",
|
|
167
|
+
STRIPE: "STRIPE",
|
|
111
168
|
VIEW_VALIDATION_ATHENA: "VIEW_VALIDATION_ATHENA",
|
|
112
169
|
VIEW_VALIDATION_REDSHIFT: "VIEW_VALIDATION_REDSHIFT",
|
|
170
|
+
ZENDESK: "ZENDESK",
|
|
171
|
+
ZOHOCRM: "ZOHOCRM",
|
|
172
|
+
};
|
|
173
|
+
export const ComputeEnvironment = {
|
|
174
|
+
ATHENA: "ATHENA",
|
|
175
|
+
PYTHON: "PYTHON",
|
|
176
|
+
SPARK: "SPARK",
|
|
113
177
|
};
|
|
114
178
|
export const ConnectionStatus = {
|
|
115
179
|
FAILED: "FAILED",
|
|
@@ -129,57 +193,111 @@ export class IdempotentParameterMismatchException extends __BaseException {
|
|
|
129
193
|
this.Message = opts.Message;
|
|
130
194
|
}
|
|
131
195
|
}
|
|
132
|
-
export class
|
|
196
|
+
export class ValidationException extends __BaseException {
|
|
133
197
|
constructor(opts) {
|
|
134
198
|
super({
|
|
135
|
-
name: "
|
|
199
|
+
name: "ValidationException",
|
|
136
200
|
$fault: "client",
|
|
137
201
|
...opts,
|
|
138
202
|
});
|
|
139
|
-
this.name = "
|
|
203
|
+
this.name = "ValidationException";
|
|
140
204
|
this.$fault = "client";
|
|
141
|
-
Object.setPrototypeOf(this,
|
|
205
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
142
206
|
this.Message = opts.Message;
|
|
143
207
|
}
|
|
144
208
|
}
|
|
145
|
-
export
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
209
|
+
export class ConflictException extends __BaseException {
|
|
210
|
+
constructor(opts) {
|
|
211
|
+
super({
|
|
212
|
+
name: "ConflictException",
|
|
213
|
+
$fault: "client",
|
|
214
|
+
...opts,
|
|
215
|
+
});
|
|
216
|
+
this.name = "ConflictException";
|
|
217
|
+
this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
219
|
+
this.Message = opts.Message;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
export const IntegrationStatus = {
|
|
223
|
+
ACTIVE: "ACTIVE",
|
|
224
|
+
CREATING: "CREATING",
|
|
225
|
+
DELETING: "DELETING",
|
|
226
|
+
FAILED: "FAILED",
|
|
227
|
+
MODIFYING: "MODIFYING",
|
|
228
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION",
|
|
229
|
+
SYNCING: "SYNCING",
|
|
155
230
|
};
|
|
156
|
-
export class
|
|
231
|
+
export class IntegrationConflictOperationFault extends __BaseException {
|
|
157
232
|
constructor(opts) {
|
|
158
233
|
super({
|
|
159
|
-
name: "
|
|
234
|
+
name: "IntegrationConflictOperationFault",
|
|
160
235
|
$fault: "client",
|
|
161
236
|
...opts,
|
|
162
237
|
});
|
|
163
|
-
this.name = "
|
|
238
|
+
this.name = "IntegrationConflictOperationFault";
|
|
164
239
|
this.$fault = "client";
|
|
165
|
-
Object.setPrototypeOf(this,
|
|
240
|
+
Object.setPrototypeOf(this, IntegrationConflictOperationFault.prototype);
|
|
166
241
|
this.Message = opts.Message;
|
|
167
|
-
this.AssociatedGlueResource = opts.AssociatedGlueResource;
|
|
168
242
|
}
|
|
169
243
|
}
|
|
170
|
-
export class
|
|
244
|
+
export class IntegrationQuotaExceededFault extends __BaseException {
|
|
171
245
|
constructor(opts) {
|
|
172
246
|
super({
|
|
173
|
-
name: "
|
|
247
|
+
name: "IntegrationQuotaExceededFault",
|
|
174
248
|
$fault: "client",
|
|
175
249
|
...opts,
|
|
176
250
|
});
|
|
177
|
-
this.name = "
|
|
251
|
+
this.name = "IntegrationQuotaExceededFault";
|
|
178
252
|
this.$fault = "client";
|
|
179
|
-
Object.setPrototypeOf(this,
|
|
253
|
+
Object.setPrototypeOf(this, IntegrationQuotaExceededFault.prototype);
|
|
254
|
+
this.Message = opts.Message;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
export class InternalServerException extends __BaseException {
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "InternalServerException",
|
|
261
|
+
$fault: "server",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
this.name = "InternalServerException";
|
|
265
|
+
this.$fault = "server";
|
|
266
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
267
|
+
this.Message = opts.Message;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
export class KMSKeyNotAccessibleFault extends __BaseException {
|
|
271
|
+
constructor(opts) {
|
|
272
|
+
super({
|
|
273
|
+
name: "KMSKeyNotAccessibleFault",
|
|
274
|
+
$fault: "client",
|
|
275
|
+
...opts,
|
|
276
|
+
});
|
|
277
|
+
this.name = "KMSKeyNotAccessibleFault";
|
|
278
|
+
this.$fault = "client";
|
|
279
|
+
Object.setPrototypeOf(this, KMSKeyNotAccessibleFault.prototype);
|
|
180
280
|
this.Message = opts.Message;
|
|
181
281
|
}
|
|
182
282
|
}
|
|
283
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
284
|
+
constructor(opts) {
|
|
285
|
+
super({
|
|
286
|
+
name: "ResourceNotFoundException",
|
|
287
|
+
$fault: "client",
|
|
288
|
+
...opts,
|
|
289
|
+
});
|
|
290
|
+
this.name = "ResourceNotFoundException";
|
|
291
|
+
this.$fault = "client";
|
|
292
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
293
|
+
this.Message = opts.Message;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
export const UnnestSpec = {
|
|
297
|
+
FULL: "FULL",
|
|
298
|
+
NOUNNEST: "NOUNNEST",
|
|
299
|
+
TOPLEVEL: "TOPLEVEL",
|
|
300
|
+
};
|
|
183
301
|
export const TransformType = {
|
|
184
302
|
FIND_MATCHES: "FIND_MATCHES",
|
|
185
303
|
};
|
|
@@ -290,16 +408,29 @@ export class SchedulerTransitioningException extends __BaseException {
|
|
|
290
408
|
this.Message = opts.Message;
|
|
291
409
|
}
|
|
292
410
|
}
|
|
293
|
-
export class
|
|
411
|
+
export class IntegrationNotFoundFault extends __BaseException {
|
|
294
412
|
constructor(opts) {
|
|
295
413
|
super({
|
|
296
|
-
name: "
|
|
414
|
+
name: "IntegrationNotFoundFault",
|
|
297
415
|
$fault: "client",
|
|
298
416
|
...opts,
|
|
299
417
|
});
|
|
300
|
-
this.name = "
|
|
418
|
+
this.name = "IntegrationNotFoundFault";
|
|
301
419
|
this.$fault = "client";
|
|
302
|
-
Object.setPrototypeOf(this,
|
|
420
|
+
Object.setPrototypeOf(this, IntegrationNotFoundFault.prototype);
|
|
421
|
+
this.Message = opts.Message;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
export class InvalidIntegrationStateFault extends __BaseException {
|
|
425
|
+
constructor(opts) {
|
|
426
|
+
super({
|
|
427
|
+
name: "InvalidIntegrationStateFault",
|
|
428
|
+
$fault: "client",
|
|
429
|
+
...opts,
|
|
430
|
+
});
|
|
431
|
+
this.name = "InvalidIntegrationStateFault";
|
|
432
|
+
this.$fault = "client";
|
|
433
|
+
Object.setPrototypeOf(this, InvalidIntegrationStateFault.prototype);
|
|
303
434
|
this.Message = opts.Message;
|
|
304
435
|
}
|
|
305
436
|
}
|
|
@@ -320,6 +451,48 @@ export class ConditionCheckFailureException extends __BaseException {
|
|
|
320
451
|
this.Message = opts.Message;
|
|
321
452
|
}
|
|
322
453
|
}
|
|
454
|
+
export const FieldDataType = {
|
|
455
|
+
ARRAY: "ARRAY",
|
|
456
|
+
BIGINT: "BIGINT",
|
|
457
|
+
BOOLEAN: "BOOLEAN",
|
|
458
|
+
BYTE: "BYTE",
|
|
459
|
+
DATE: "DATE",
|
|
460
|
+
DECIMAL: "DECIMAL",
|
|
461
|
+
DOUBLE: "DOUBLE",
|
|
462
|
+
FLOAT: "FLOAT",
|
|
463
|
+
INT: "INT",
|
|
464
|
+
LONG: "LONG",
|
|
465
|
+
MAP: "MAP",
|
|
466
|
+
SHORT: "SHORT",
|
|
467
|
+
SMALLINT: "SMALLINT",
|
|
468
|
+
STRING: "STRING",
|
|
469
|
+
STRUCT: "STRUCT",
|
|
470
|
+
TIMESTAMP: "TIMESTAMP",
|
|
471
|
+
};
|
|
472
|
+
export const FieldFilterOperator = {
|
|
473
|
+
BETWEEN: "BETWEEN",
|
|
474
|
+
CONTAINS: "CONTAINS",
|
|
475
|
+
EQUAL_TO: "EQUAL_TO",
|
|
476
|
+
GREATER_THAN: "GREATER_THAN",
|
|
477
|
+
GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",
|
|
478
|
+
LESS_THAN: "LESS_THAN",
|
|
479
|
+
LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",
|
|
480
|
+
NOT_EQUAL_TO: "NOT_EQUAL_TO",
|
|
481
|
+
ORDER_BY: "ORDER_BY",
|
|
482
|
+
};
|
|
483
|
+
export class TargetResourceNotFound extends __BaseException {
|
|
484
|
+
constructor(opts) {
|
|
485
|
+
super({
|
|
486
|
+
name: "TargetResourceNotFound",
|
|
487
|
+
$fault: "client",
|
|
488
|
+
...opts,
|
|
489
|
+
});
|
|
490
|
+
this.name = "TargetResourceNotFound";
|
|
491
|
+
this.$fault = "client";
|
|
492
|
+
Object.setPrototypeOf(this, TargetResourceNotFound.prototype);
|
|
493
|
+
this.Message = opts.Message;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
323
496
|
export const BlueprintRunState = {
|
|
324
497
|
FAILED: "FAILED",
|
|
325
498
|
ROLLING_BACK: "ROLLING_BACK",
|
|
@@ -346,27 +519,17 @@ export const ColumnStatisticsState = {
|
|
|
346
519
|
STOPPED: "STOPPED",
|
|
347
520
|
SUCCEEDED: "SUCCEEDED",
|
|
348
521
|
};
|
|
349
|
-
export const
|
|
350
|
-
NAME: "NAME",
|
|
351
|
-
};
|
|
352
|
-
export const ResourceShareType = {
|
|
353
|
-
ALL: "ALL",
|
|
354
|
-
FEDERATED: "FEDERATED",
|
|
355
|
-
FOREIGN: "FOREIGN",
|
|
356
|
-
};
|
|
357
|
-
export const CatalogEncryptionMode = {
|
|
358
|
-
DISABLED: "DISABLED",
|
|
359
|
-
SSEKMS: "SSE-KMS",
|
|
360
|
-
SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE",
|
|
361
|
-
};
|
|
362
|
-
export const DataQualityModelStatus = {
|
|
522
|
+
export const ExecutionStatus = {
|
|
363
523
|
FAILED: "FAILED",
|
|
364
|
-
|
|
365
|
-
|
|
524
|
+
STARTED: "STARTED",
|
|
525
|
+
};
|
|
526
|
+
export const ScheduleType = {
|
|
527
|
+
AUTO: "AUTO",
|
|
528
|
+
CRON: "CRON",
|
|
366
529
|
};
|
|
367
|
-
export const
|
|
368
|
-
|
|
369
|
-
|
|
530
|
+
export const SettingSource = {
|
|
531
|
+
CATALOG: "CATALOG",
|
|
532
|
+
TABLE: "TABLE",
|
|
370
533
|
};
|
|
371
534
|
export const ConnectionInputFilterSensitiveLog = (obj) => ({
|
|
372
535
|
...obj,
|
|
@@ -378,13 +541,3 @@ export const CreateConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
|
378
541
|
...obj,
|
|
379
542
|
...(obj.ConnectionInput && { ConnectionInput: ConnectionInputFilterSensitiveLog(obj.ConnectionInput) }),
|
|
380
543
|
});
|
|
381
|
-
export const GetDataQualityResultResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.RuleResults && { RuleResults: obj.RuleResults.map((item) => DataQualityRuleResultFilterSensitiveLog(item)) }),
|
|
384
|
-
...(obj.AnalyzerResults && {
|
|
385
|
-
AnalyzerResults: obj.AnalyzerResults.map((item) => DataQualityAnalyzerResultFilterSensitiveLog(item)),
|
|
386
|
-
}),
|
|
387
|
-
...(obj.Observations && {
|
|
388
|
-
Observations: obj.Observations.map((item) => DataQualityObservationFilterSensitiveLog(item)),
|
|
389
|
-
}),
|
|
390
|
-
});
|