@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
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
CreateBlueprintCommandInput,
|
|
96
96
|
CreateBlueprintCommandOutput,
|
|
97
97
|
} from "./commands/CreateBlueprintCommand";
|
|
98
|
+
import {
|
|
99
|
+
CreateCatalogCommandInput,
|
|
100
|
+
CreateCatalogCommandOutput,
|
|
101
|
+
} from "./commands/CreateCatalogCommand";
|
|
98
102
|
import {
|
|
99
103
|
CreateClassifierCommandInput,
|
|
100
104
|
CreateClassifierCommandOutput,
|
|
@@ -127,6 +131,18 @@ import {
|
|
|
127
131
|
CreateDevEndpointCommandInput,
|
|
128
132
|
CreateDevEndpointCommandOutput,
|
|
129
133
|
} from "./commands/CreateDevEndpointCommand";
|
|
134
|
+
import {
|
|
135
|
+
CreateIntegrationCommandInput,
|
|
136
|
+
CreateIntegrationCommandOutput,
|
|
137
|
+
} from "./commands/CreateIntegrationCommand";
|
|
138
|
+
import {
|
|
139
|
+
CreateIntegrationResourcePropertyCommandInput,
|
|
140
|
+
CreateIntegrationResourcePropertyCommandOutput,
|
|
141
|
+
} from "./commands/CreateIntegrationResourcePropertyCommand";
|
|
142
|
+
import {
|
|
143
|
+
CreateIntegrationTablePropertiesCommandInput,
|
|
144
|
+
CreateIntegrationTablePropertiesCommandOutput,
|
|
145
|
+
} from "./commands/CreateIntegrationTablePropertiesCommand";
|
|
130
146
|
import {
|
|
131
147
|
CreateJobCommandInput,
|
|
132
148
|
CreateJobCommandOutput,
|
|
@@ -191,6 +207,10 @@ import {
|
|
|
191
207
|
DeleteBlueprintCommandInput,
|
|
192
208
|
DeleteBlueprintCommandOutput,
|
|
193
209
|
} from "./commands/DeleteBlueprintCommand";
|
|
210
|
+
import {
|
|
211
|
+
DeleteCatalogCommandInput,
|
|
212
|
+
DeleteCatalogCommandOutput,
|
|
213
|
+
} from "./commands/DeleteCatalogCommand";
|
|
194
214
|
import {
|
|
195
215
|
DeleteClassifierCommandInput,
|
|
196
216
|
DeleteClassifierCommandOutput,
|
|
@@ -231,6 +251,14 @@ import {
|
|
|
231
251
|
DeleteDevEndpointCommandInput,
|
|
232
252
|
DeleteDevEndpointCommandOutput,
|
|
233
253
|
} from "./commands/DeleteDevEndpointCommand";
|
|
254
|
+
import {
|
|
255
|
+
DeleteIntegrationCommandInput,
|
|
256
|
+
DeleteIntegrationCommandOutput,
|
|
257
|
+
} from "./commands/DeleteIntegrationCommand";
|
|
258
|
+
import {
|
|
259
|
+
DeleteIntegrationTablePropertiesCommandInput,
|
|
260
|
+
DeleteIntegrationTablePropertiesCommandOutput,
|
|
261
|
+
} from "./commands/DeleteIntegrationTablePropertiesCommand";
|
|
234
262
|
import {
|
|
235
263
|
DeleteJobCommandInput,
|
|
236
264
|
DeleteJobCommandOutput,
|
|
@@ -299,6 +327,22 @@ import {
|
|
|
299
327
|
DeleteWorkflowCommandInput,
|
|
300
328
|
DeleteWorkflowCommandOutput,
|
|
301
329
|
} from "./commands/DeleteWorkflowCommand";
|
|
330
|
+
import {
|
|
331
|
+
DescribeConnectionTypeCommandInput,
|
|
332
|
+
DescribeConnectionTypeCommandOutput,
|
|
333
|
+
} from "./commands/DescribeConnectionTypeCommand";
|
|
334
|
+
import {
|
|
335
|
+
DescribeEntityCommandInput,
|
|
336
|
+
DescribeEntityCommandOutput,
|
|
337
|
+
} from "./commands/DescribeEntityCommand";
|
|
338
|
+
import {
|
|
339
|
+
DescribeInboundIntegrationsCommandInput,
|
|
340
|
+
DescribeInboundIntegrationsCommandOutput,
|
|
341
|
+
} from "./commands/DescribeInboundIntegrationsCommand";
|
|
342
|
+
import {
|
|
343
|
+
DescribeIntegrationsCommandInput,
|
|
344
|
+
DescribeIntegrationsCommandOutput,
|
|
345
|
+
} from "./commands/DescribeIntegrationsCommand";
|
|
302
346
|
import {
|
|
303
347
|
GetBlueprintCommandInput,
|
|
304
348
|
GetBlueprintCommandOutput,
|
|
@@ -311,10 +355,18 @@ import {
|
|
|
311
355
|
GetBlueprintRunsCommandInput,
|
|
312
356
|
GetBlueprintRunsCommandOutput,
|
|
313
357
|
} from "./commands/GetBlueprintRunsCommand";
|
|
358
|
+
import {
|
|
359
|
+
GetCatalogCommandInput,
|
|
360
|
+
GetCatalogCommandOutput,
|
|
361
|
+
} from "./commands/GetCatalogCommand";
|
|
314
362
|
import {
|
|
315
363
|
GetCatalogImportStatusCommandInput,
|
|
316
364
|
GetCatalogImportStatusCommandOutput,
|
|
317
365
|
} from "./commands/GetCatalogImportStatusCommand";
|
|
366
|
+
import {
|
|
367
|
+
GetCatalogsCommandInput,
|
|
368
|
+
GetCatalogsCommandOutput,
|
|
369
|
+
} from "./commands/GetCatalogsCommand";
|
|
318
370
|
import {
|
|
319
371
|
GetClassifierCommandInput,
|
|
320
372
|
GetClassifierCommandOutput,
|
|
@@ -415,6 +467,18 @@ import {
|
|
|
415
467
|
GetDevEndpointsCommandInput,
|
|
416
468
|
GetDevEndpointsCommandOutput,
|
|
417
469
|
} from "./commands/GetDevEndpointsCommand";
|
|
470
|
+
import {
|
|
471
|
+
GetEntityRecordsCommandInput,
|
|
472
|
+
GetEntityRecordsCommandOutput,
|
|
473
|
+
} from "./commands/GetEntityRecordsCommand";
|
|
474
|
+
import {
|
|
475
|
+
GetIntegrationResourcePropertyCommandInput,
|
|
476
|
+
GetIntegrationResourcePropertyCommandOutput,
|
|
477
|
+
} from "./commands/GetIntegrationResourcePropertyCommand";
|
|
478
|
+
import {
|
|
479
|
+
GetIntegrationTablePropertiesCommandInput,
|
|
480
|
+
GetIntegrationTablePropertiesCommandOutput,
|
|
481
|
+
} from "./commands/GetIntegrationTablePropertiesCommand";
|
|
418
482
|
import {
|
|
419
483
|
GetJobBookmarkCommandInput,
|
|
420
484
|
GetJobBookmarkCommandOutput,
|
|
@@ -599,6 +663,10 @@ import {
|
|
|
599
663
|
ListColumnStatisticsTaskRunsCommandInput,
|
|
600
664
|
ListColumnStatisticsTaskRunsCommandOutput,
|
|
601
665
|
} from "./commands/ListColumnStatisticsTaskRunsCommand";
|
|
666
|
+
import {
|
|
667
|
+
ListConnectionTypesCommandInput,
|
|
668
|
+
ListConnectionTypesCommandOutput,
|
|
669
|
+
} from "./commands/ListConnectionTypesCommand";
|
|
602
670
|
import {
|
|
603
671
|
ListCrawlersCommandInput,
|
|
604
672
|
ListCrawlersCommandOutput,
|
|
@@ -639,6 +707,10 @@ import {
|
|
|
639
707
|
ListDevEndpointsCommandInput,
|
|
640
708
|
ListDevEndpointsCommandOutput,
|
|
641
709
|
} from "./commands/ListDevEndpointsCommand";
|
|
710
|
+
import {
|
|
711
|
+
ListEntitiesCommandInput,
|
|
712
|
+
ListEntitiesCommandOutput,
|
|
713
|
+
} from "./commands/ListEntitiesCommand";
|
|
642
714
|
import {
|
|
643
715
|
ListJobsCommandInput,
|
|
644
716
|
ListJobsCommandOutput,
|
|
@@ -683,6 +755,10 @@ import {
|
|
|
683
755
|
ListWorkflowsCommandInput,
|
|
684
756
|
ListWorkflowsCommandOutput,
|
|
685
757
|
} from "./commands/ListWorkflowsCommand";
|
|
758
|
+
import {
|
|
759
|
+
ModifyIntegrationCommandInput,
|
|
760
|
+
ModifyIntegrationCommandOutput,
|
|
761
|
+
} from "./commands/ModifyIntegrationCommand";
|
|
686
762
|
import {
|
|
687
763
|
PutDataCatalogEncryptionSettingsCommandInput,
|
|
688
764
|
PutDataCatalogEncryptionSettingsCommandOutput,
|
|
@@ -831,6 +907,10 @@ import {
|
|
|
831
907
|
UpdateBlueprintCommandInput,
|
|
832
908
|
UpdateBlueprintCommandOutput,
|
|
833
909
|
} from "./commands/UpdateBlueprintCommand";
|
|
910
|
+
import {
|
|
911
|
+
UpdateCatalogCommandInput,
|
|
912
|
+
UpdateCatalogCommandOutput,
|
|
913
|
+
} from "./commands/UpdateCatalogCommand";
|
|
834
914
|
import {
|
|
835
915
|
UpdateClassifierCommandInput,
|
|
836
916
|
UpdateClassifierCommandOutput,
|
|
@@ -871,6 +951,14 @@ import {
|
|
|
871
951
|
UpdateDevEndpointCommandInput,
|
|
872
952
|
UpdateDevEndpointCommandOutput,
|
|
873
953
|
} from "./commands/UpdateDevEndpointCommand";
|
|
954
|
+
import {
|
|
955
|
+
UpdateIntegrationResourcePropertyCommandInput,
|
|
956
|
+
UpdateIntegrationResourcePropertyCommandOutput,
|
|
957
|
+
} from "./commands/UpdateIntegrationResourcePropertyCommand";
|
|
958
|
+
import {
|
|
959
|
+
UpdateIntegrationTablePropertiesCommandInput,
|
|
960
|
+
UpdateIntegrationTablePropertiesCommandOutput,
|
|
961
|
+
} from "./commands/UpdateIntegrationTablePropertiesCommand";
|
|
874
962
|
import {
|
|
875
963
|
UpdateJobCommandInput,
|
|
876
964
|
UpdateJobCommandOutput,
|
|
@@ -1255,6 +1343,19 @@ export interface Glue {
|
|
|
1255
1343
|
options: __HttpHandlerOptions,
|
|
1256
1344
|
cb: (err: any, data?: CreateBlueprintCommandOutput) => void
|
|
1257
1345
|
): void;
|
|
1346
|
+
createCatalog(
|
|
1347
|
+
args: CreateCatalogCommandInput,
|
|
1348
|
+
options?: __HttpHandlerOptions
|
|
1349
|
+
): Promise<CreateCatalogCommandOutput>;
|
|
1350
|
+
createCatalog(
|
|
1351
|
+
args: CreateCatalogCommandInput,
|
|
1352
|
+
cb: (err: any, data?: CreateCatalogCommandOutput) => void
|
|
1353
|
+
): void;
|
|
1354
|
+
createCatalog(
|
|
1355
|
+
args: CreateCatalogCommandInput,
|
|
1356
|
+
options: __HttpHandlerOptions,
|
|
1357
|
+
cb: (err: any, data?: CreateCatalogCommandOutput) => void
|
|
1358
|
+
): void;
|
|
1258
1359
|
createClassifier(): Promise<CreateClassifierCommandOutput>;
|
|
1259
1360
|
createClassifier(
|
|
1260
1361
|
args: CreateClassifierCommandInput,
|
|
@@ -1366,6 +1467,51 @@ export interface Glue {
|
|
|
1366
1467
|
options: __HttpHandlerOptions,
|
|
1367
1468
|
cb: (err: any, data?: CreateDevEndpointCommandOutput) => void
|
|
1368
1469
|
): void;
|
|
1470
|
+
createIntegration(
|
|
1471
|
+
args: CreateIntegrationCommandInput,
|
|
1472
|
+
options?: __HttpHandlerOptions
|
|
1473
|
+
): Promise<CreateIntegrationCommandOutput>;
|
|
1474
|
+
createIntegration(
|
|
1475
|
+
args: CreateIntegrationCommandInput,
|
|
1476
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
1477
|
+
): void;
|
|
1478
|
+
createIntegration(
|
|
1479
|
+
args: CreateIntegrationCommandInput,
|
|
1480
|
+
options: __HttpHandlerOptions,
|
|
1481
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
1482
|
+
): void;
|
|
1483
|
+
createIntegrationResourceProperty(
|
|
1484
|
+
args: CreateIntegrationResourcePropertyCommandInput,
|
|
1485
|
+
options?: __HttpHandlerOptions
|
|
1486
|
+
): Promise<CreateIntegrationResourcePropertyCommandOutput>;
|
|
1487
|
+
createIntegrationResourceProperty(
|
|
1488
|
+
args: CreateIntegrationResourcePropertyCommandInput,
|
|
1489
|
+
cb: (
|
|
1490
|
+
err: any,
|
|
1491
|
+
data?: CreateIntegrationResourcePropertyCommandOutput
|
|
1492
|
+
) => void
|
|
1493
|
+
): void;
|
|
1494
|
+
createIntegrationResourceProperty(
|
|
1495
|
+
args: CreateIntegrationResourcePropertyCommandInput,
|
|
1496
|
+
options: __HttpHandlerOptions,
|
|
1497
|
+
cb: (
|
|
1498
|
+
err: any,
|
|
1499
|
+
data?: CreateIntegrationResourcePropertyCommandOutput
|
|
1500
|
+
) => void
|
|
1501
|
+
): void;
|
|
1502
|
+
createIntegrationTableProperties(
|
|
1503
|
+
args: CreateIntegrationTablePropertiesCommandInput,
|
|
1504
|
+
options?: __HttpHandlerOptions
|
|
1505
|
+
): Promise<CreateIntegrationTablePropertiesCommandOutput>;
|
|
1506
|
+
createIntegrationTableProperties(
|
|
1507
|
+
args: CreateIntegrationTablePropertiesCommandInput,
|
|
1508
|
+
cb: (err: any, data?: CreateIntegrationTablePropertiesCommandOutput) => void
|
|
1509
|
+
): void;
|
|
1510
|
+
createIntegrationTableProperties(
|
|
1511
|
+
args: CreateIntegrationTablePropertiesCommandInput,
|
|
1512
|
+
options: __HttpHandlerOptions,
|
|
1513
|
+
cb: (err: any, data?: CreateIntegrationTablePropertiesCommandOutput) => void
|
|
1514
|
+
): void;
|
|
1369
1515
|
createJob(
|
|
1370
1516
|
args: CreateJobCommandInput,
|
|
1371
1517
|
options?: __HttpHandlerOptions
|
|
@@ -1575,6 +1721,19 @@ export interface Glue {
|
|
|
1575
1721
|
options: __HttpHandlerOptions,
|
|
1576
1722
|
cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
|
|
1577
1723
|
): void;
|
|
1724
|
+
deleteCatalog(
|
|
1725
|
+
args: DeleteCatalogCommandInput,
|
|
1726
|
+
options?: __HttpHandlerOptions
|
|
1727
|
+
): Promise<DeleteCatalogCommandOutput>;
|
|
1728
|
+
deleteCatalog(
|
|
1729
|
+
args: DeleteCatalogCommandInput,
|
|
1730
|
+
cb: (err: any, data?: DeleteCatalogCommandOutput) => void
|
|
1731
|
+
): void;
|
|
1732
|
+
deleteCatalog(
|
|
1733
|
+
args: DeleteCatalogCommandInput,
|
|
1734
|
+
options: __HttpHandlerOptions,
|
|
1735
|
+
cb: (err: any, data?: DeleteCatalogCommandOutput) => void
|
|
1736
|
+
): void;
|
|
1578
1737
|
deleteClassifier(
|
|
1579
1738
|
args: DeleteClassifierCommandInput,
|
|
1580
1739
|
options?: __HttpHandlerOptions
|
|
@@ -1717,6 +1876,32 @@ export interface Glue {
|
|
|
1717
1876
|
options: __HttpHandlerOptions,
|
|
1718
1877
|
cb: (err: any, data?: DeleteDevEndpointCommandOutput) => void
|
|
1719
1878
|
): void;
|
|
1879
|
+
deleteIntegration(
|
|
1880
|
+
args: DeleteIntegrationCommandInput,
|
|
1881
|
+
options?: __HttpHandlerOptions
|
|
1882
|
+
): Promise<DeleteIntegrationCommandOutput>;
|
|
1883
|
+
deleteIntegration(
|
|
1884
|
+
args: DeleteIntegrationCommandInput,
|
|
1885
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
1886
|
+
): void;
|
|
1887
|
+
deleteIntegration(
|
|
1888
|
+
args: DeleteIntegrationCommandInput,
|
|
1889
|
+
options: __HttpHandlerOptions,
|
|
1890
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
1891
|
+
): void;
|
|
1892
|
+
deleteIntegrationTableProperties(
|
|
1893
|
+
args: DeleteIntegrationTablePropertiesCommandInput,
|
|
1894
|
+
options?: __HttpHandlerOptions
|
|
1895
|
+
): Promise<DeleteIntegrationTablePropertiesCommandOutput>;
|
|
1896
|
+
deleteIntegrationTableProperties(
|
|
1897
|
+
args: DeleteIntegrationTablePropertiesCommandInput,
|
|
1898
|
+
cb: (err: any, data?: DeleteIntegrationTablePropertiesCommandOutput) => void
|
|
1899
|
+
): void;
|
|
1900
|
+
deleteIntegrationTableProperties(
|
|
1901
|
+
args: DeleteIntegrationTablePropertiesCommandInput,
|
|
1902
|
+
options: __HttpHandlerOptions,
|
|
1903
|
+
cb: (err: any, data?: DeleteIntegrationTablePropertiesCommandOutput) => void
|
|
1904
|
+
): void;
|
|
1720
1905
|
deleteJob(
|
|
1721
1906
|
args: DeleteJobCommandInput,
|
|
1722
1907
|
options?: __HttpHandlerOptions
|
|
@@ -1939,6 +2124,60 @@ export interface Glue {
|
|
|
1939
2124
|
options: __HttpHandlerOptions,
|
|
1940
2125
|
cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
|
|
1941
2126
|
): void;
|
|
2127
|
+
describeConnectionType(
|
|
2128
|
+
args: DescribeConnectionTypeCommandInput,
|
|
2129
|
+
options?: __HttpHandlerOptions
|
|
2130
|
+
): Promise<DescribeConnectionTypeCommandOutput>;
|
|
2131
|
+
describeConnectionType(
|
|
2132
|
+
args: DescribeConnectionTypeCommandInput,
|
|
2133
|
+
cb: (err: any, data?: DescribeConnectionTypeCommandOutput) => void
|
|
2134
|
+
): void;
|
|
2135
|
+
describeConnectionType(
|
|
2136
|
+
args: DescribeConnectionTypeCommandInput,
|
|
2137
|
+
options: __HttpHandlerOptions,
|
|
2138
|
+
cb: (err: any, data?: DescribeConnectionTypeCommandOutput) => void
|
|
2139
|
+
): void;
|
|
2140
|
+
describeEntity(
|
|
2141
|
+
args: DescribeEntityCommandInput,
|
|
2142
|
+
options?: __HttpHandlerOptions
|
|
2143
|
+
): Promise<DescribeEntityCommandOutput>;
|
|
2144
|
+
describeEntity(
|
|
2145
|
+
args: DescribeEntityCommandInput,
|
|
2146
|
+
cb: (err: any, data?: DescribeEntityCommandOutput) => void
|
|
2147
|
+
): void;
|
|
2148
|
+
describeEntity(
|
|
2149
|
+
args: DescribeEntityCommandInput,
|
|
2150
|
+
options: __HttpHandlerOptions,
|
|
2151
|
+
cb: (err: any, data?: DescribeEntityCommandOutput) => void
|
|
2152
|
+
): void;
|
|
2153
|
+
describeInboundIntegrations(): Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
2154
|
+
describeInboundIntegrations(
|
|
2155
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
2156
|
+
options?: __HttpHandlerOptions
|
|
2157
|
+
): Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
2158
|
+
describeInboundIntegrations(
|
|
2159
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
2160
|
+
cb: (err: any, data?: DescribeInboundIntegrationsCommandOutput) => void
|
|
2161
|
+
): void;
|
|
2162
|
+
describeInboundIntegrations(
|
|
2163
|
+
args: DescribeInboundIntegrationsCommandInput,
|
|
2164
|
+
options: __HttpHandlerOptions,
|
|
2165
|
+
cb: (err: any, data?: DescribeInboundIntegrationsCommandOutput) => void
|
|
2166
|
+
): void;
|
|
2167
|
+
describeIntegrations(): Promise<DescribeIntegrationsCommandOutput>;
|
|
2168
|
+
describeIntegrations(
|
|
2169
|
+
args: DescribeIntegrationsCommandInput,
|
|
2170
|
+
options?: __HttpHandlerOptions
|
|
2171
|
+
): Promise<DescribeIntegrationsCommandOutput>;
|
|
2172
|
+
describeIntegrations(
|
|
2173
|
+
args: DescribeIntegrationsCommandInput,
|
|
2174
|
+
cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
|
|
2175
|
+
): void;
|
|
2176
|
+
describeIntegrations(
|
|
2177
|
+
args: DescribeIntegrationsCommandInput,
|
|
2178
|
+
options: __HttpHandlerOptions,
|
|
2179
|
+
cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
|
|
2180
|
+
): void;
|
|
1942
2181
|
getBlueprint(
|
|
1943
2182
|
args: GetBlueprintCommandInput,
|
|
1944
2183
|
options?: __HttpHandlerOptions
|
|
@@ -1978,6 +2217,19 @@ export interface Glue {
|
|
|
1978
2217
|
options: __HttpHandlerOptions,
|
|
1979
2218
|
cb: (err: any, data?: GetBlueprintRunsCommandOutput) => void
|
|
1980
2219
|
): void;
|
|
2220
|
+
getCatalog(
|
|
2221
|
+
args: GetCatalogCommandInput,
|
|
2222
|
+
options?: __HttpHandlerOptions
|
|
2223
|
+
): Promise<GetCatalogCommandOutput>;
|
|
2224
|
+
getCatalog(
|
|
2225
|
+
args: GetCatalogCommandInput,
|
|
2226
|
+
cb: (err: any, data?: GetCatalogCommandOutput) => void
|
|
2227
|
+
): void;
|
|
2228
|
+
getCatalog(
|
|
2229
|
+
args: GetCatalogCommandInput,
|
|
2230
|
+
options: __HttpHandlerOptions,
|
|
2231
|
+
cb: (err: any, data?: GetCatalogCommandOutput) => void
|
|
2232
|
+
): void;
|
|
1981
2233
|
getCatalogImportStatus(): Promise<GetCatalogImportStatusCommandOutput>;
|
|
1982
2234
|
getCatalogImportStatus(
|
|
1983
2235
|
args: GetCatalogImportStatusCommandInput,
|
|
@@ -1992,6 +2244,20 @@ export interface Glue {
|
|
|
1992
2244
|
options: __HttpHandlerOptions,
|
|
1993
2245
|
cb: (err: any, data?: GetCatalogImportStatusCommandOutput) => void
|
|
1994
2246
|
): void;
|
|
2247
|
+
getCatalogs(): Promise<GetCatalogsCommandOutput>;
|
|
2248
|
+
getCatalogs(
|
|
2249
|
+
args: GetCatalogsCommandInput,
|
|
2250
|
+
options?: __HttpHandlerOptions
|
|
2251
|
+
): Promise<GetCatalogsCommandOutput>;
|
|
2252
|
+
getCatalogs(
|
|
2253
|
+
args: GetCatalogsCommandInput,
|
|
2254
|
+
cb: (err: any, data?: GetCatalogsCommandOutput) => void
|
|
2255
|
+
): void;
|
|
2256
|
+
getCatalogs(
|
|
2257
|
+
args: GetCatalogsCommandInput,
|
|
2258
|
+
options: __HttpHandlerOptions,
|
|
2259
|
+
cb: (err: any, data?: GetCatalogsCommandOutput) => void
|
|
2260
|
+
): void;
|
|
1995
2261
|
getClassifier(
|
|
1996
2262
|
args: GetClassifierCommandInput,
|
|
1997
2263
|
options?: __HttpHandlerOptions
|
|
@@ -2337,6 +2603,45 @@ export interface Glue {
|
|
|
2337
2603
|
options: __HttpHandlerOptions,
|
|
2338
2604
|
cb: (err: any, data?: GetDevEndpointsCommandOutput) => void
|
|
2339
2605
|
): void;
|
|
2606
|
+
getEntityRecords(
|
|
2607
|
+
args: GetEntityRecordsCommandInput,
|
|
2608
|
+
options?: __HttpHandlerOptions
|
|
2609
|
+
): Promise<GetEntityRecordsCommandOutput>;
|
|
2610
|
+
getEntityRecords(
|
|
2611
|
+
args: GetEntityRecordsCommandInput,
|
|
2612
|
+
cb: (err: any, data?: GetEntityRecordsCommandOutput) => void
|
|
2613
|
+
): void;
|
|
2614
|
+
getEntityRecords(
|
|
2615
|
+
args: GetEntityRecordsCommandInput,
|
|
2616
|
+
options: __HttpHandlerOptions,
|
|
2617
|
+
cb: (err: any, data?: GetEntityRecordsCommandOutput) => void
|
|
2618
|
+
): void;
|
|
2619
|
+
getIntegrationResourceProperty(
|
|
2620
|
+
args: GetIntegrationResourcePropertyCommandInput,
|
|
2621
|
+
options?: __HttpHandlerOptions
|
|
2622
|
+
): Promise<GetIntegrationResourcePropertyCommandOutput>;
|
|
2623
|
+
getIntegrationResourceProperty(
|
|
2624
|
+
args: GetIntegrationResourcePropertyCommandInput,
|
|
2625
|
+
cb: (err: any, data?: GetIntegrationResourcePropertyCommandOutput) => void
|
|
2626
|
+
): void;
|
|
2627
|
+
getIntegrationResourceProperty(
|
|
2628
|
+
args: GetIntegrationResourcePropertyCommandInput,
|
|
2629
|
+
options: __HttpHandlerOptions,
|
|
2630
|
+
cb: (err: any, data?: GetIntegrationResourcePropertyCommandOutput) => void
|
|
2631
|
+
): void;
|
|
2632
|
+
getIntegrationTableProperties(
|
|
2633
|
+
args: GetIntegrationTablePropertiesCommandInput,
|
|
2634
|
+
options?: __HttpHandlerOptions
|
|
2635
|
+
): Promise<GetIntegrationTablePropertiesCommandOutput>;
|
|
2636
|
+
getIntegrationTableProperties(
|
|
2637
|
+
args: GetIntegrationTablePropertiesCommandInput,
|
|
2638
|
+
cb: (err: any, data?: GetIntegrationTablePropertiesCommandOutput) => void
|
|
2639
|
+
): void;
|
|
2640
|
+
getIntegrationTableProperties(
|
|
2641
|
+
args: GetIntegrationTablePropertiesCommandInput,
|
|
2642
|
+
options: __HttpHandlerOptions,
|
|
2643
|
+
cb: (err: any, data?: GetIntegrationTablePropertiesCommandOutput) => void
|
|
2644
|
+
): void;
|
|
2340
2645
|
getJob(
|
|
2341
2646
|
args: GetJobCommandInput,
|
|
2342
2647
|
options?: __HttpHandlerOptions
|
|
@@ -2945,6 +3250,20 @@ export interface Glue {
|
|
|
2945
3250
|
options: __HttpHandlerOptions,
|
|
2946
3251
|
cb: (err: any, data?: ListColumnStatisticsTaskRunsCommandOutput) => void
|
|
2947
3252
|
): void;
|
|
3253
|
+
listConnectionTypes(): Promise<ListConnectionTypesCommandOutput>;
|
|
3254
|
+
listConnectionTypes(
|
|
3255
|
+
args: ListConnectionTypesCommandInput,
|
|
3256
|
+
options?: __HttpHandlerOptions
|
|
3257
|
+
): Promise<ListConnectionTypesCommandOutput>;
|
|
3258
|
+
listConnectionTypes(
|
|
3259
|
+
args: ListConnectionTypesCommandInput,
|
|
3260
|
+
cb: (err: any, data?: ListConnectionTypesCommandOutput) => void
|
|
3261
|
+
): void;
|
|
3262
|
+
listConnectionTypes(
|
|
3263
|
+
args: ListConnectionTypesCommandInput,
|
|
3264
|
+
options: __HttpHandlerOptions,
|
|
3265
|
+
cb: (err: any, data?: ListConnectionTypesCommandOutput) => void
|
|
3266
|
+
): void;
|
|
2948
3267
|
listCrawlers(): Promise<ListCrawlersCommandOutput>;
|
|
2949
3268
|
listCrawlers(
|
|
2950
3269
|
args: ListCrawlersCommandInput,
|
|
@@ -3102,6 +3421,20 @@ export interface Glue {
|
|
|
3102
3421
|
options: __HttpHandlerOptions,
|
|
3103
3422
|
cb: (err: any, data?: ListDevEndpointsCommandOutput) => void
|
|
3104
3423
|
): void;
|
|
3424
|
+
listEntities(): Promise<ListEntitiesCommandOutput>;
|
|
3425
|
+
listEntities(
|
|
3426
|
+
args: ListEntitiesCommandInput,
|
|
3427
|
+
options?: __HttpHandlerOptions
|
|
3428
|
+
): Promise<ListEntitiesCommandOutput>;
|
|
3429
|
+
listEntities(
|
|
3430
|
+
args: ListEntitiesCommandInput,
|
|
3431
|
+
cb: (err: any, data?: ListEntitiesCommandOutput) => void
|
|
3432
|
+
): void;
|
|
3433
|
+
listEntities(
|
|
3434
|
+
args: ListEntitiesCommandInput,
|
|
3435
|
+
options: __HttpHandlerOptions,
|
|
3436
|
+
cb: (err: any, data?: ListEntitiesCommandOutput) => void
|
|
3437
|
+
): void;
|
|
3105
3438
|
listJobs(): Promise<ListJobsCommandOutput>;
|
|
3106
3439
|
listJobs(
|
|
3107
3440
|
args: ListJobsCommandInput,
|
|
@@ -3253,6 +3586,19 @@ export interface Glue {
|
|
|
3253
3586
|
options: __HttpHandlerOptions,
|
|
3254
3587
|
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
3255
3588
|
): void;
|
|
3589
|
+
modifyIntegration(
|
|
3590
|
+
args: ModifyIntegrationCommandInput,
|
|
3591
|
+
options?: __HttpHandlerOptions
|
|
3592
|
+
): Promise<ModifyIntegrationCommandOutput>;
|
|
3593
|
+
modifyIntegration(
|
|
3594
|
+
args: ModifyIntegrationCommandInput,
|
|
3595
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
3596
|
+
): void;
|
|
3597
|
+
modifyIntegration(
|
|
3598
|
+
args: ModifyIntegrationCommandInput,
|
|
3599
|
+
options: __HttpHandlerOptions,
|
|
3600
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
3601
|
+
): void;
|
|
3256
3602
|
putDataCatalogEncryptionSettings(
|
|
3257
3603
|
args: PutDataCatalogEncryptionSettingsCommandInput,
|
|
3258
3604
|
options?: __HttpHandlerOptions
|
|
@@ -3767,6 +4113,19 @@ export interface Glue {
|
|
|
3767
4113
|
options: __HttpHandlerOptions,
|
|
3768
4114
|
cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
|
|
3769
4115
|
): void;
|
|
4116
|
+
updateCatalog(
|
|
4117
|
+
args: UpdateCatalogCommandInput,
|
|
4118
|
+
options?: __HttpHandlerOptions
|
|
4119
|
+
): Promise<UpdateCatalogCommandOutput>;
|
|
4120
|
+
updateCatalog(
|
|
4121
|
+
args: UpdateCatalogCommandInput,
|
|
4122
|
+
cb: (err: any, data?: UpdateCatalogCommandOutput) => void
|
|
4123
|
+
): void;
|
|
4124
|
+
updateCatalog(
|
|
4125
|
+
args: UpdateCatalogCommandInput,
|
|
4126
|
+
options: __HttpHandlerOptions,
|
|
4127
|
+
cb: (err: any, data?: UpdateCatalogCommandOutput) => void
|
|
4128
|
+
): void;
|
|
3770
4129
|
updateClassifier(): Promise<UpdateClassifierCommandOutput>;
|
|
3771
4130
|
updateClassifier(
|
|
3772
4131
|
args: UpdateClassifierCommandInput,
|
|
@@ -3910,6 +4269,38 @@ export interface Glue {
|
|
|
3910
4269
|
options: __HttpHandlerOptions,
|
|
3911
4270
|
cb: (err: any, data?: UpdateDevEndpointCommandOutput) => void
|
|
3912
4271
|
): void;
|
|
4272
|
+
updateIntegrationResourceProperty(
|
|
4273
|
+
args: UpdateIntegrationResourcePropertyCommandInput,
|
|
4274
|
+
options?: __HttpHandlerOptions
|
|
4275
|
+
): Promise<UpdateIntegrationResourcePropertyCommandOutput>;
|
|
4276
|
+
updateIntegrationResourceProperty(
|
|
4277
|
+
args: UpdateIntegrationResourcePropertyCommandInput,
|
|
4278
|
+
cb: (
|
|
4279
|
+
err: any,
|
|
4280
|
+
data?: UpdateIntegrationResourcePropertyCommandOutput
|
|
4281
|
+
) => void
|
|
4282
|
+
): void;
|
|
4283
|
+
updateIntegrationResourceProperty(
|
|
4284
|
+
args: UpdateIntegrationResourcePropertyCommandInput,
|
|
4285
|
+
options: __HttpHandlerOptions,
|
|
4286
|
+
cb: (
|
|
4287
|
+
err: any,
|
|
4288
|
+
data?: UpdateIntegrationResourcePropertyCommandOutput
|
|
4289
|
+
) => void
|
|
4290
|
+
): void;
|
|
4291
|
+
updateIntegrationTableProperties(
|
|
4292
|
+
args: UpdateIntegrationTablePropertiesCommandInput,
|
|
4293
|
+
options?: __HttpHandlerOptions
|
|
4294
|
+
): Promise<UpdateIntegrationTablePropertiesCommandOutput>;
|
|
4295
|
+
updateIntegrationTableProperties(
|
|
4296
|
+
args: UpdateIntegrationTablePropertiesCommandInput,
|
|
4297
|
+
cb: (err: any, data?: UpdateIntegrationTablePropertiesCommandOutput) => void
|
|
4298
|
+
): void;
|
|
4299
|
+
updateIntegrationTableProperties(
|
|
4300
|
+
args: UpdateIntegrationTablePropertiesCommandInput,
|
|
4301
|
+
options: __HttpHandlerOptions,
|
|
4302
|
+
cb: (err: any, data?: UpdateIntegrationTablePropertiesCommandOutput) => void
|
|
4303
|
+
): void;
|
|
3913
4304
|
updateJob(
|
|
3914
4305
|
args: UpdateJobCommandInput,
|
|
3915
4306
|
options?: __HttpHandlerOptions
|