@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
|
@@ -99,6 +99,10 @@ import {
|
|
|
99
99
|
CreateBlueprintCommandInput,
|
|
100
100
|
CreateBlueprintCommandOutput,
|
|
101
101
|
} from "../commands/CreateBlueprintCommand";
|
|
102
|
+
import {
|
|
103
|
+
CreateCatalogCommandInput,
|
|
104
|
+
CreateCatalogCommandOutput,
|
|
105
|
+
} from "../commands/CreateCatalogCommand";
|
|
102
106
|
import {
|
|
103
107
|
CreateClassifierCommandInput,
|
|
104
108
|
CreateClassifierCommandOutput,
|
|
@@ -131,6 +135,18 @@ import {
|
|
|
131
135
|
CreateDevEndpointCommandInput,
|
|
132
136
|
CreateDevEndpointCommandOutput,
|
|
133
137
|
} from "../commands/CreateDevEndpointCommand";
|
|
138
|
+
import {
|
|
139
|
+
CreateIntegrationCommandInput,
|
|
140
|
+
CreateIntegrationCommandOutput,
|
|
141
|
+
} from "../commands/CreateIntegrationCommand";
|
|
142
|
+
import {
|
|
143
|
+
CreateIntegrationResourcePropertyCommandInput,
|
|
144
|
+
CreateIntegrationResourcePropertyCommandOutput,
|
|
145
|
+
} from "../commands/CreateIntegrationResourcePropertyCommand";
|
|
146
|
+
import {
|
|
147
|
+
CreateIntegrationTablePropertiesCommandInput,
|
|
148
|
+
CreateIntegrationTablePropertiesCommandOutput,
|
|
149
|
+
} from "../commands/CreateIntegrationTablePropertiesCommand";
|
|
134
150
|
import {
|
|
135
151
|
CreateJobCommandInput,
|
|
136
152
|
CreateJobCommandOutput,
|
|
@@ -195,6 +211,10 @@ import {
|
|
|
195
211
|
DeleteBlueprintCommandInput,
|
|
196
212
|
DeleteBlueprintCommandOutput,
|
|
197
213
|
} from "../commands/DeleteBlueprintCommand";
|
|
214
|
+
import {
|
|
215
|
+
DeleteCatalogCommandInput,
|
|
216
|
+
DeleteCatalogCommandOutput,
|
|
217
|
+
} from "../commands/DeleteCatalogCommand";
|
|
198
218
|
import {
|
|
199
219
|
DeleteClassifierCommandInput,
|
|
200
220
|
DeleteClassifierCommandOutput,
|
|
@@ -235,6 +255,14 @@ import {
|
|
|
235
255
|
DeleteDevEndpointCommandInput,
|
|
236
256
|
DeleteDevEndpointCommandOutput,
|
|
237
257
|
} from "../commands/DeleteDevEndpointCommand";
|
|
258
|
+
import {
|
|
259
|
+
DeleteIntegrationCommandInput,
|
|
260
|
+
DeleteIntegrationCommandOutput,
|
|
261
|
+
} from "../commands/DeleteIntegrationCommand";
|
|
262
|
+
import {
|
|
263
|
+
DeleteIntegrationTablePropertiesCommandInput,
|
|
264
|
+
DeleteIntegrationTablePropertiesCommandOutput,
|
|
265
|
+
} from "../commands/DeleteIntegrationTablePropertiesCommand";
|
|
238
266
|
import {
|
|
239
267
|
DeleteJobCommandInput,
|
|
240
268
|
DeleteJobCommandOutput,
|
|
@@ -303,6 +331,22 @@ import {
|
|
|
303
331
|
DeleteWorkflowCommandInput,
|
|
304
332
|
DeleteWorkflowCommandOutput,
|
|
305
333
|
} from "../commands/DeleteWorkflowCommand";
|
|
334
|
+
import {
|
|
335
|
+
DescribeConnectionTypeCommandInput,
|
|
336
|
+
DescribeConnectionTypeCommandOutput,
|
|
337
|
+
} from "../commands/DescribeConnectionTypeCommand";
|
|
338
|
+
import {
|
|
339
|
+
DescribeEntityCommandInput,
|
|
340
|
+
DescribeEntityCommandOutput,
|
|
341
|
+
} from "../commands/DescribeEntityCommand";
|
|
342
|
+
import {
|
|
343
|
+
DescribeInboundIntegrationsCommandInput,
|
|
344
|
+
DescribeInboundIntegrationsCommandOutput,
|
|
345
|
+
} from "../commands/DescribeInboundIntegrationsCommand";
|
|
346
|
+
import {
|
|
347
|
+
DescribeIntegrationsCommandInput,
|
|
348
|
+
DescribeIntegrationsCommandOutput,
|
|
349
|
+
} from "../commands/DescribeIntegrationsCommand";
|
|
306
350
|
import {
|
|
307
351
|
GetBlueprintCommandInput,
|
|
308
352
|
GetBlueprintCommandOutput,
|
|
@@ -315,10 +359,18 @@ import {
|
|
|
315
359
|
GetBlueprintRunsCommandInput,
|
|
316
360
|
GetBlueprintRunsCommandOutput,
|
|
317
361
|
} from "../commands/GetBlueprintRunsCommand";
|
|
362
|
+
import {
|
|
363
|
+
GetCatalogCommandInput,
|
|
364
|
+
GetCatalogCommandOutput,
|
|
365
|
+
} from "../commands/GetCatalogCommand";
|
|
318
366
|
import {
|
|
319
367
|
GetCatalogImportStatusCommandInput,
|
|
320
368
|
GetCatalogImportStatusCommandOutput,
|
|
321
369
|
} from "../commands/GetCatalogImportStatusCommand";
|
|
370
|
+
import {
|
|
371
|
+
GetCatalogsCommandInput,
|
|
372
|
+
GetCatalogsCommandOutput,
|
|
373
|
+
} from "../commands/GetCatalogsCommand";
|
|
322
374
|
import {
|
|
323
375
|
GetClassifierCommandInput,
|
|
324
376
|
GetClassifierCommandOutput,
|
|
@@ -419,6 +471,18 @@ import {
|
|
|
419
471
|
GetDevEndpointsCommandInput,
|
|
420
472
|
GetDevEndpointsCommandOutput,
|
|
421
473
|
} from "../commands/GetDevEndpointsCommand";
|
|
474
|
+
import {
|
|
475
|
+
GetEntityRecordsCommandInput,
|
|
476
|
+
GetEntityRecordsCommandOutput,
|
|
477
|
+
} from "../commands/GetEntityRecordsCommand";
|
|
478
|
+
import {
|
|
479
|
+
GetIntegrationResourcePropertyCommandInput,
|
|
480
|
+
GetIntegrationResourcePropertyCommandOutput,
|
|
481
|
+
} from "../commands/GetIntegrationResourcePropertyCommand";
|
|
482
|
+
import {
|
|
483
|
+
GetIntegrationTablePropertiesCommandInput,
|
|
484
|
+
GetIntegrationTablePropertiesCommandOutput,
|
|
485
|
+
} from "../commands/GetIntegrationTablePropertiesCommand";
|
|
422
486
|
import {
|
|
423
487
|
GetJobBookmarkCommandInput,
|
|
424
488
|
GetJobBookmarkCommandOutput,
|
|
@@ -603,6 +667,10 @@ import {
|
|
|
603
667
|
ListColumnStatisticsTaskRunsCommandInput,
|
|
604
668
|
ListColumnStatisticsTaskRunsCommandOutput,
|
|
605
669
|
} from "../commands/ListColumnStatisticsTaskRunsCommand";
|
|
670
|
+
import {
|
|
671
|
+
ListConnectionTypesCommandInput,
|
|
672
|
+
ListConnectionTypesCommandOutput,
|
|
673
|
+
} from "../commands/ListConnectionTypesCommand";
|
|
606
674
|
import {
|
|
607
675
|
ListCrawlersCommandInput,
|
|
608
676
|
ListCrawlersCommandOutput,
|
|
@@ -643,6 +711,10 @@ import {
|
|
|
643
711
|
ListDevEndpointsCommandInput,
|
|
644
712
|
ListDevEndpointsCommandOutput,
|
|
645
713
|
} from "../commands/ListDevEndpointsCommand";
|
|
714
|
+
import {
|
|
715
|
+
ListEntitiesCommandInput,
|
|
716
|
+
ListEntitiesCommandOutput,
|
|
717
|
+
} from "../commands/ListEntitiesCommand";
|
|
646
718
|
import {
|
|
647
719
|
ListJobsCommandInput,
|
|
648
720
|
ListJobsCommandOutput,
|
|
@@ -687,6 +759,10 @@ import {
|
|
|
687
759
|
ListWorkflowsCommandInput,
|
|
688
760
|
ListWorkflowsCommandOutput,
|
|
689
761
|
} from "../commands/ListWorkflowsCommand";
|
|
762
|
+
import {
|
|
763
|
+
ModifyIntegrationCommandInput,
|
|
764
|
+
ModifyIntegrationCommandOutput,
|
|
765
|
+
} from "../commands/ModifyIntegrationCommand";
|
|
690
766
|
import {
|
|
691
767
|
PutDataCatalogEncryptionSettingsCommandInput,
|
|
692
768
|
PutDataCatalogEncryptionSettingsCommandOutput,
|
|
@@ -835,6 +911,10 @@ import {
|
|
|
835
911
|
UpdateBlueprintCommandInput,
|
|
836
912
|
UpdateBlueprintCommandOutput,
|
|
837
913
|
} from "../commands/UpdateBlueprintCommand";
|
|
914
|
+
import {
|
|
915
|
+
UpdateCatalogCommandInput,
|
|
916
|
+
UpdateCatalogCommandOutput,
|
|
917
|
+
} from "../commands/UpdateCatalogCommand";
|
|
838
918
|
import {
|
|
839
919
|
UpdateClassifierCommandInput,
|
|
840
920
|
UpdateClassifierCommandOutput,
|
|
@@ -875,6 +955,14 @@ import {
|
|
|
875
955
|
UpdateDevEndpointCommandInput,
|
|
876
956
|
UpdateDevEndpointCommandOutput,
|
|
877
957
|
} from "../commands/UpdateDevEndpointCommand";
|
|
958
|
+
import {
|
|
959
|
+
UpdateIntegrationResourcePropertyCommandInput,
|
|
960
|
+
UpdateIntegrationResourcePropertyCommandOutput,
|
|
961
|
+
} from "../commands/UpdateIntegrationResourcePropertyCommand";
|
|
962
|
+
import {
|
|
963
|
+
UpdateIntegrationTablePropertiesCommandInput,
|
|
964
|
+
UpdateIntegrationTablePropertiesCommandOutput,
|
|
965
|
+
} from "../commands/UpdateIntegrationTablePropertiesCommand";
|
|
878
966
|
import {
|
|
879
967
|
UpdateJobCommandInput,
|
|
880
968
|
UpdateJobCommandOutput,
|
|
@@ -1023,6 +1111,10 @@ export declare const se_CreateBlueprintCommand: (
|
|
|
1023
1111
|
input: CreateBlueprintCommandInput,
|
|
1024
1112
|
context: __SerdeContext
|
|
1025
1113
|
) => Promise<__HttpRequest>;
|
|
1114
|
+
export declare const se_CreateCatalogCommand: (
|
|
1115
|
+
input: CreateCatalogCommandInput,
|
|
1116
|
+
context: __SerdeContext
|
|
1117
|
+
) => Promise<__HttpRequest>;
|
|
1026
1118
|
export declare const se_CreateClassifierCommand: (
|
|
1027
1119
|
input: CreateClassifierCommandInput,
|
|
1028
1120
|
context: __SerdeContext
|
|
@@ -1055,6 +1147,18 @@ export declare const se_CreateDevEndpointCommand: (
|
|
|
1055
1147
|
input: CreateDevEndpointCommandInput,
|
|
1056
1148
|
context: __SerdeContext
|
|
1057
1149
|
) => Promise<__HttpRequest>;
|
|
1150
|
+
export declare const se_CreateIntegrationCommand: (
|
|
1151
|
+
input: CreateIntegrationCommandInput,
|
|
1152
|
+
context: __SerdeContext
|
|
1153
|
+
) => Promise<__HttpRequest>;
|
|
1154
|
+
export declare const se_CreateIntegrationResourcePropertyCommand: (
|
|
1155
|
+
input: CreateIntegrationResourcePropertyCommandInput,
|
|
1156
|
+
context: __SerdeContext
|
|
1157
|
+
) => Promise<__HttpRequest>;
|
|
1158
|
+
export declare const se_CreateIntegrationTablePropertiesCommand: (
|
|
1159
|
+
input: CreateIntegrationTablePropertiesCommandInput,
|
|
1160
|
+
context: __SerdeContext
|
|
1161
|
+
) => Promise<__HttpRequest>;
|
|
1058
1162
|
export declare const se_CreateJobCommand: (
|
|
1059
1163
|
input: CreateJobCommandInput,
|
|
1060
1164
|
context: __SerdeContext
|
|
@@ -1119,6 +1223,10 @@ export declare const se_DeleteBlueprintCommand: (
|
|
|
1119
1223
|
input: DeleteBlueprintCommandInput,
|
|
1120
1224
|
context: __SerdeContext
|
|
1121
1225
|
) => Promise<__HttpRequest>;
|
|
1226
|
+
export declare const se_DeleteCatalogCommand: (
|
|
1227
|
+
input: DeleteCatalogCommandInput,
|
|
1228
|
+
context: __SerdeContext
|
|
1229
|
+
) => Promise<__HttpRequest>;
|
|
1122
1230
|
export declare const se_DeleteClassifierCommand: (
|
|
1123
1231
|
input: DeleteClassifierCommandInput,
|
|
1124
1232
|
context: __SerdeContext
|
|
@@ -1159,6 +1267,14 @@ export declare const se_DeleteDevEndpointCommand: (
|
|
|
1159
1267
|
input: DeleteDevEndpointCommandInput,
|
|
1160
1268
|
context: __SerdeContext
|
|
1161
1269
|
) => Promise<__HttpRequest>;
|
|
1270
|
+
export declare const se_DeleteIntegrationCommand: (
|
|
1271
|
+
input: DeleteIntegrationCommandInput,
|
|
1272
|
+
context: __SerdeContext
|
|
1273
|
+
) => Promise<__HttpRequest>;
|
|
1274
|
+
export declare const se_DeleteIntegrationTablePropertiesCommand: (
|
|
1275
|
+
input: DeleteIntegrationTablePropertiesCommandInput,
|
|
1276
|
+
context: __SerdeContext
|
|
1277
|
+
) => Promise<__HttpRequest>;
|
|
1162
1278
|
export declare const se_DeleteJobCommand: (
|
|
1163
1279
|
input: DeleteJobCommandInput,
|
|
1164
1280
|
context: __SerdeContext
|
|
@@ -1227,6 +1343,22 @@ export declare const se_DeleteWorkflowCommand: (
|
|
|
1227
1343
|
input: DeleteWorkflowCommandInput,
|
|
1228
1344
|
context: __SerdeContext
|
|
1229
1345
|
) => Promise<__HttpRequest>;
|
|
1346
|
+
export declare const se_DescribeConnectionTypeCommand: (
|
|
1347
|
+
input: DescribeConnectionTypeCommandInput,
|
|
1348
|
+
context: __SerdeContext
|
|
1349
|
+
) => Promise<__HttpRequest>;
|
|
1350
|
+
export declare const se_DescribeEntityCommand: (
|
|
1351
|
+
input: DescribeEntityCommandInput,
|
|
1352
|
+
context: __SerdeContext
|
|
1353
|
+
) => Promise<__HttpRequest>;
|
|
1354
|
+
export declare const se_DescribeInboundIntegrationsCommand: (
|
|
1355
|
+
input: DescribeInboundIntegrationsCommandInput,
|
|
1356
|
+
context: __SerdeContext
|
|
1357
|
+
) => Promise<__HttpRequest>;
|
|
1358
|
+
export declare const se_DescribeIntegrationsCommand: (
|
|
1359
|
+
input: DescribeIntegrationsCommandInput,
|
|
1360
|
+
context: __SerdeContext
|
|
1361
|
+
) => Promise<__HttpRequest>;
|
|
1230
1362
|
export declare const se_GetBlueprintCommand: (
|
|
1231
1363
|
input: GetBlueprintCommandInput,
|
|
1232
1364
|
context: __SerdeContext
|
|
@@ -1239,10 +1371,18 @@ export declare const se_GetBlueprintRunsCommand: (
|
|
|
1239
1371
|
input: GetBlueprintRunsCommandInput,
|
|
1240
1372
|
context: __SerdeContext
|
|
1241
1373
|
) => Promise<__HttpRequest>;
|
|
1374
|
+
export declare const se_GetCatalogCommand: (
|
|
1375
|
+
input: GetCatalogCommandInput,
|
|
1376
|
+
context: __SerdeContext
|
|
1377
|
+
) => Promise<__HttpRequest>;
|
|
1242
1378
|
export declare const se_GetCatalogImportStatusCommand: (
|
|
1243
1379
|
input: GetCatalogImportStatusCommandInput,
|
|
1244
1380
|
context: __SerdeContext
|
|
1245
1381
|
) => Promise<__HttpRequest>;
|
|
1382
|
+
export declare const se_GetCatalogsCommand: (
|
|
1383
|
+
input: GetCatalogsCommandInput,
|
|
1384
|
+
context: __SerdeContext
|
|
1385
|
+
) => Promise<__HttpRequest>;
|
|
1246
1386
|
export declare const se_GetClassifierCommand: (
|
|
1247
1387
|
input: GetClassifierCommandInput,
|
|
1248
1388
|
context: __SerdeContext
|
|
@@ -1343,6 +1483,18 @@ export declare const se_GetDevEndpointsCommand: (
|
|
|
1343
1483
|
input: GetDevEndpointsCommandInput,
|
|
1344
1484
|
context: __SerdeContext
|
|
1345
1485
|
) => Promise<__HttpRequest>;
|
|
1486
|
+
export declare const se_GetEntityRecordsCommand: (
|
|
1487
|
+
input: GetEntityRecordsCommandInput,
|
|
1488
|
+
context: __SerdeContext
|
|
1489
|
+
) => Promise<__HttpRequest>;
|
|
1490
|
+
export declare const se_GetIntegrationResourcePropertyCommand: (
|
|
1491
|
+
input: GetIntegrationResourcePropertyCommandInput,
|
|
1492
|
+
context: __SerdeContext
|
|
1493
|
+
) => Promise<__HttpRequest>;
|
|
1494
|
+
export declare const se_GetIntegrationTablePropertiesCommand: (
|
|
1495
|
+
input: GetIntegrationTablePropertiesCommandInput,
|
|
1496
|
+
context: __SerdeContext
|
|
1497
|
+
) => Promise<__HttpRequest>;
|
|
1346
1498
|
export declare const se_GetJobCommand: (
|
|
1347
1499
|
input: GetJobCommandInput,
|
|
1348
1500
|
context: __SerdeContext
|
|
@@ -1527,6 +1679,10 @@ export declare const se_ListColumnStatisticsTaskRunsCommand: (
|
|
|
1527
1679
|
input: ListColumnStatisticsTaskRunsCommandInput,
|
|
1528
1680
|
context: __SerdeContext
|
|
1529
1681
|
) => Promise<__HttpRequest>;
|
|
1682
|
+
export declare const se_ListConnectionTypesCommand: (
|
|
1683
|
+
input: ListConnectionTypesCommandInput,
|
|
1684
|
+
context: __SerdeContext
|
|
1685
|
+
) => Promise<__HttpRequest>;
|
|
1530
1686
|
export declare const se_ListCrawlersCommand: (
|
|
1531
1687
|
input: ListCrawlersCommandInput,
|
|
1532
1688
|
context: __SerdeContext
|
|
@@ -1567,6 +1723,10 @@ export declare const se_ListDevEndpointsCommand: (
|
|
|
1567
1723
|
input: ListDevEndpointsCommandInput,
|
|
1568
1724
|
context: __SerdeContext
|
|
1569
1725
|
) => Promise<__HttpRequest>;
|
|
1726
|
+
export declare const se_ListEntitiesCommand: (
|
|
1727
|
+
input: ListEntitiesCommandInput,
|
|
1728
|
+
context: __SerdeContext
|
|
1729
|
+
) => Promise<__HttpRequest>;
|
|
1570
1730
|
export declare const se_ListJobsCommand: (
|
|
1571
1731
|
input: ListJobsCommandInput,
|
|
1572
1732
|
context: __SerdeContext
|
|
@@ -1611,6 +1771,10 @@ export declare const se_ListWorkflowsCommand: (
|
|
|
1611
1771
|
input: ListWorkflowsCommandInput,
|
|
1612
1772
|
context: __SerdeContext
|
|
1613
1773
|
) => Promise<__HttpRequest>;
|
|
1774
|
+
export declare const se_ModifyIntegrationCommand: (
|
|
1775
|
+
input: ModifyIntegrationCommandInput,
|
|
1776
|
+
context: __SerdeContext
|
|
1777
|
+
) => Promise<__HttpRequest>;
|
|
1614
1778
|
export declare const se_PutDataCatalogEncryptionSettingsCommand: (
|
|
1615
1779
|
input: PutDataCatalogEncryptionSettingsCommandInput,
|
|
1616
1780
|
context: __SerdeContext
|
|
@@ -1759,6 +1923,10 @@ export declare const se_UpdateBlueprintCommand: (
|
|
|
1759
1923
|
input: UpdateBlueprintCommandInput,
|
|
1760
1924
|
context: __SerdeContext
|
|
1761
1925
|
) => Promise<__HttpRequest>;
|
|
1926
|
+
export declare const se_UpdateCatalogCommand: (
|
|
1927
|
+
input: UpdateCatalogCommandInput,
|
|
1928
|
+
context: __SerdeContext
|
|
1929
|
+
) => Promise<__HttpRequest>;
|
|
1762
1930
|
export declare const se_UpdateClassifierCommand: (
|
|
1763
1931
|
input: UpdateClassifierCommandInput,
|
|
1764
1932
|
context: __SerdeContext
|
|
@@ -1799,6 +1967,14 @@ export declare const se_UpdateDevEndpointCommand: (
|
|
|
1799
1967
|
input: UpdateDevEndpointCommandInput,
|
|
1800
1968
|
context: __SerdeContext
|
|
1801
1969
|
) => Promise<__HttpRequest>;
|
|
1970
|
+
export declare const se_UpdateIntegrationResourcePropertyCommand: (
|
|
1971
|
+
input: UpdateIntegrationResourcePropertyCommandInput,
|
|
1972
|
+
context: __SerdeContext
|
|
1973
|
+
) => Promise<__HttpRequest>;
|
|
1974
|
+
export declare const se_UpdateIntegrationTablePropertiesCommand: (
|
|
1975
|
+
input: UpdateIntegrationTablePropertiesCommandInput,
|
|
1976
|
+
context: __SerdeContext
|
|
1977
|
+
) => Promise<__HttpRequest>;
|
|
1802
1978
|
export declare const se_UpdateJobCommand: (
|
|
1803
1979
|
input: UpdateJobCommandInput,
|
|
1804
1980
|
context: __SerdeContext
|
|
@@ -1947,6 +2123,10 @@ export declare const de_CreateBlueprintCommand: (
|
|
|
1947
2123
|
output: __HttpResponse,
|
|
1948
2124
|
context: __SerdeContext
|
|
1949
2125
|
) => Promise<CreateBlueprintCommandOutput>;
|
|
2126
|
+
export declare const de_CreateCatalogCommand: (
|
|
2127
|
+
output: __HttpResponse,
|
|
2128
|
+
context: __SerdeContext
|
|
2129
|
+
) => Promise<CreateCatalogCommandOutput>;
|
|
1950
2130
|
export declare const de_CreateClassifierCommand: (
|
|
1951
2131
|
output: __HttpResponse,
|
|
1952
2132
|
context: __SerdeContext
|
|
@@ -1979,6 +2159,18 @@ export declare const de_CreateDevEndpointCommand: (
|
|
|
1979
2159
|
output: __HttpResponse,
|
|
1980
2160
|
context: __SerdeContext
|
|
1981
2161
|
) => Promise<CreateDevEndpointCommandOutput>;
|
|
2162
|
+
export declare const de_CreateIntegrationCommand: (
|
|
2163
|
+
output: __HttpResponse,
|
|
2164
|
+
context: __SerdeContext
|
|
2165
|
+
) => Promise<CreateIntegrationCommandOutput>;
|
|
2166
|
+
export declare const de_CreateIntegrationResourcePropertyCommand: (
|
|
2167
|
+
output: __HttpResponse,
|
|
2168
|
+
context: __SerdeContext
|
|
2169
|
+
) => Promise<CreateIntegrationResourcePropertyCommandOutput>;
|
|
2170
|
+
export declare const de_CreateIntegrationTablePropertiesCommand: (
|
|
2171
|
+
output: __HttpResponse,
|
|
2172
|
+
context: __SerdeContext
|
|
2173
|
+
) => Promise<CreateIntegrationTablePropertiesCommandOutput>;
|
|
1982
2174
|
export declare const de_CreateJobCommand: (
|
|
1983
2175
|
output: __HttpResponse,
|
|
1984
2176
|
context: __SerdeContext
|
|
@@ -2043,6 +2235,10 @@ export declare const de_DeleteBlueprintCommand: (
|
|
|
2043
2235
|
output: __HttpResponse,
|
|
2044
2236
|
context: __SerdeContext
|
|
2045
2237
|
) => Promise<DeleteBlueprintCommandOutput>;
|
|
2238
|
+
export declare const de_DeleteCatalogCommand: (
|
|
2239
|
+
output: __HttpResponse,
|
|
2240
|
+
context: __SerdeContext
|
|
2241
|
+
) => Promise<DeleteCatalogCommandOutput>;
|
|
2046
2242
|
export declare const de_DeleteClassifierCommand: (
|
|
2047
2243
|
output: __HttpResponse,
|
|
2048
2244
|
context: __SerdeContext
|
|
@@ -2083,6 +2279,14 @@ export declare const de_DeleteDevEndpointCommand: (
|
|
|
2083
2279
|
output: __HttpResponse,
|
|
2084
2280
|
context: __SerdeContext
|
|
2085
2281
|
) => Promise<DeleteDevEndpointCommandOutput>;
|
|
2282
|
+
export declare const de_DeleteIntegrationCommand: (
|
|
2283
|
+
output: __HttpResponse,
|
|
2284
|
+
context: __SerdeContext
|
|
2285
|
+
) => Promise<DeleteIntegrationCommandOutput>;
|
|
2286
|
+
export declare const de_DeleteIntegrationTablePropertiesCommand: (
|
|
2287
|
+
output: __HttpResponse,
|
|
2288
|
+
context: __SerdeContext
|
|
2289
|
+
) => Promise<DeleteIntegrationTablePropertiesCommandOutput>;
|
|
2086
2290
|
export declare const de_DeleteJobCommand: (
|
|
2087
2291
|
output: __HttpResponse,
|
|
2088
2292
|
context: __SerdeContext
|
|
@@ -2151,6 +2355,22 @@ export declare const de_DeleteWorkflowCommand: (
|
|
|
2151
2355
|
output: __HttpResponse,
|
|
2152
2356
|
context: __SerdeContext
|
|
2153
2357
|
) => Promise<DeleteWorkflowCommandOutput>;
|
|
2358
|
+
export declare const de_DescribeConnectionTypeCommand: (
|
|
2359
|
+
output: __HttpResponse,
|
|
2360
|
+
context: __SerdeContext
|
|
2361
|
+
) => Promise<DescribeConnectionTypeCommandOutput>;
|
|
2362
|
+
export declare const de_DescribeEntityCommand: (
|
|
2363
|
+
output: __HttpResponse,
|
|
2364
|
+
context: __SerdeContext
|
|
2365
|
+
) => Promise<DescribeEntityCommandOutput>;
|
|
2366
|
+
export declare const de_DescribeInboundIntegrationsCommand: (
|
|
2367
|
+
output: __HttpResponse,
|
|
2368
|
+
context: __SerdeContext
|
|
2369
|
+
) => Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
2370
|
+
export declare const de_DescribeIntegrationsCommand: (
|
|
2371
|
+
output: __HttpResponse,
|
|
2372
|
+
context: __SerdeContext
|
|
2373
|
+
) => Promise<DescribeIntegrationsCommandOutput>;
|
|
2154
2374
|
export declare const de_GetBlueprintCommand: (
|
|
2155
2375
|
output: __HttpResponse,
|
|
2156
2376
|
context: __SerdeContext
|
|
@@ -2163,10 +2383,18 @@ export declare const de_GetBlueprintRunsCommand: (
|
|
|
2163
2383
|
output: __HttpResponse,
|
|
2164
2384
|
context: __SerdeContext
|
|
2165
2385
|
) => Promise<GetBlueprintRunsCommandOutput>;
|
|
2386
|
+
export declare const de_GetCatalogCommand: (
|
|
2387
|
+
output: __HttpResponse,
|
|
2388
|
+
context: __SerdeContext
|
|
2389
|
+
) => Promise<GetCatalogCommandOutput>;
|
|
2166
2390
|
export declare const de_GetCatalogImportStatusCommand: (
|
|
2167
2391
|
output: __HttpResponse,
|
|
2168
2392
|
context: __SerdeContext
|
|
2169
2393
|
) => Promise<GetCatalogImportStatusCommandOutput>;
|
|
2394
|
+
export declare const de_GetCatalogsCommand: (
|
|
2395
|
+
output: __HttpResponse,
|
|
2396
|
+
context: __SerdeContext
|
|
2397
|
+
) => Promise<GetCatalogsCommandOutput>;
|
|
2170
2398
|
export declare const de_GetClassifierCommand: (
|
|
2171
2399
|
output: __HttpResponse,
|
|
2172
2400
|
context: __SerdeContext
|
|
@@ -2267,6 +2495,18 @@ export declare const de_GetDevEndpointsCommand: (
|
|
|
2267
2495
|
output: __HttpResponse,
|
|
2268
2496
|
context: __SerdeContext
|
|
2269
2497
|
) => Promise<GetDevEndpointsCommandOutput>;
|
|
2498
|
+
export declare const de_GetEntityRecordsCommand: (
|
|
2499
|
+
output: __HttpResponse,
|
|
2500
|
+
context: __SerdeContext
|
|
2501
|
+
) => Promise<GetEntityRecordsCommandOutput>;
|
|
2502
|
+
export declare const de_GetIntegrationResourcePropertyCommand: (
|
|
2503
|
+
output: __HttpResponse,
|
|
2504
|
+
context: __SerdeContext
|
|
2505
|
+
) => Promise<GetIntegrationResourcePropertyCommandOutput>;
|
|
2506
|
+
export declare const de_GetIntegrationTablePropertiesCommand: (
|
|
2507
|
+
output: __HttpResponse,
|
|
2508
|
+
context: __SerdeContext
|
|
2509
|
+
) => Promise<GetIntegrationTablePropertiesCommandOutput>;
|
|
2270
2510
|
export declare const de_GetJobCommand: (
|
|
2271
2511
|
output: __HttpResponse,
|
|
2272
2512
|
context: __SerdeContext
|
|
@@ -2451,6 +2691,10 @@ export declare const de_ListColumnStatisticsTaskRunsCommand: (
|
|
|
2451
2691
|
output: __HttpResponse,
|
|
2452
2692
|
context: __SerdeContext
|
|
2453
2693
|
) => Promise<ListColumnStatisticsTaskRunsCommandOutput>;
|
|
2694
|
+
export declare const de_ListConnectionTypesCommand: (
|
|
2695
|
+
output: __HttpResponse,
|
|
2696
|
+
context: __SerdeContext
|
|
2697
|
+
) => Promise<ListConnectionTypesCommandOutput>;
|
|
2454
2698
|
export declare const de_ListCrawlersCommand: (
|
|
2455
2699
|
output: __HttpResponse,
|
|
2456
2700
|
context: __SerdeContext
|
|
@@ -2491,6 +2735,10 @@ export declare const de_ListDevEndpointsCommand: (
|
|
|
2491
2735
|
output: __HttpResponse,
|
|
2492
2736
|
context: __SerdeContext
|
|
2493
2737
|
) => Promise<ListDevEndpointsCommandOutput>;
|
|
2738
|
+
export declare const de_ListEntitiesCommand: (
|
|
2739
|
+
output: __HttpResponse,
|
|
2740
|
+
context: __SerdeContext
|
|
2741
|
+
) => Promise<ListEntitiesCommandOutput>;
|
|
2494
2742
|
export declare const de_ListJobsCommand: (
|
|
2495
2743
|
output: __HttpResponse,
|
|
2496
2744
|
context: __SerdeContext
|
|
@@ -2535,6 +2783,10 @@ export declare const de_ListWorkflowsCommand: (
|
|
|
2535
2783
|
output: __HttpResponse,
|
|
2536
2784
|
context: __SerdeContext
|
|
2537
2785
|
) => Promise<ListWorkflowsCommandOutput>;
|
|
2786
|
+
export declare const de_ModifyIntegrationCommand: (
|
|
2787
|
+
output: __HttpResponse,
|
|
2788
|
+
context: __SerdeContext
|
|
2789
|
+
) => Promise<ModifyIntegrationCommandOutput>;
|
|
2538
2790
|
export declare const de_PutDataCatalogEncryptionSettingsCommand: (
|
|
2539
2791
|
output: __HttpResponse,
|
|
2540
2792
|
context: __SerdeContext
|
|
@@ -2683,6 +2935,10 @@ export declare const de_UpdateBlueprintCommand: (
|
|
|
2683
2935
|
output: __HttpResponse,
|
|
2684
2936
|
context: __SerdeContext
|
|
2685
2937
|
) => Promise<UpdateBlueprintCommandOutput>;
|
|
2938
|
+
export declare const de_UpdateCatalogCommand: (
|
|
2939
|
+
output: __HttpResponse,
|
|
2940
|
+
context: __SerdeContext
|
|
2941
|
+
) => Promise<UpdateCatalogCommandOutput>;
|
|
2686
2942
|
export declare const de_UpdateClassifierCommand: (
|
|
2687
2943
|
output: __HttpResponse,
|
|
2688
2944
|
context: __SerdeContext
|
|
@@ -2723,6 +2979,14 @@ export declare const de_UpdateDevEndpointCommand: (
|
|
|
2723
2979
|
output: __HttpResponse,
|
|
2724
2980
|
context: __SerdeContext
|
|
2725
2981
|
) => Promise<UpdateDevEndpointCommandOutput>;
|
|
2982
|
+
export declare const de_UpdateIntegrationResourcePropertyCommand: (
|
|
2983
|
+
output: __HttpResponse,
|
|
2984
|
+
context: __SerdeContext
|
|
2985
|
+
) => Promise<UpdateIntegrationResourcePropertyCommandOutput>;
|
|
2986
|
+
export declare const de_UpdateIntegrationTablePropertiesCommand: (
|
|
2987
|
+
output: __HttpResponse,
|
|
2988
|
+
context: __SerdeContext
|
|
2989
|
+
) => Promise<UpdateIntegrationTablePropertiesCommandOutput>;
|
|
2726
2990
|
export declare const de_UpdateJobCommand: (
|
|
2727
2991
|
output: __HttpResponse,
|
|
2728
2992
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.705.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|