@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
package/README.md
CHANGED
|
@@ -396,6 +396,14 @@ CreateBlueprint
|
|
|
396
396
|
|
|
397
397
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateBlueprintCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateBlueprintCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateBlueprintCommandOutput/)
|
|
398
398
|
|
|
399
|
+
</details>
|
|
400
|
+
<details>
|
|
401
|
+
<summary>
|
|
402
|
+
CreateCatalog
|
|
403
|
+
</summary>
|
|
404
|
+
|
|
405
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateCatalogCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateCatalogCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateCatalogCommandOutput/)
|
|
406
|
+
|
|
399
407
|
</details>
|
|
400
408
|
<details>
|
|
401
409
|
<summary>
|
|
@@ -460,6 +468,30 @@ CreateDevEndpoint
|
|
|
460
468
|
|
|
461
469
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateDevEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateDevEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateDevEndpointCommandOutput/)
|
|
462
470
|
|
|
471
|
+
</details>
|
|
472
|
+
<details>
|
|
473
|
+
<summary>
|
|
474
|
+
CreateIntegration
|
|
475
|
+
</summary>
|
|
476
|
+
|
|
477
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationCommandOutput/)
|
|
478
|
+
|
|
479
|
+
</details>
|
|
480
|
+
<details>
|
|
481
|
+
<summary>
|
|
482
|
+
CreateIntegrationResourceProperty
|
|
483
|
+
</summary>
|
|
484
|
+
|
|
485
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateIntegrationResourcePropertyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationResourcePropertyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationResourcePropertyCommandOutput/)
|
|
486
|
+
|
|
487
|
+
</details>
|
|
488
|
+
<details>
|
|
489
|
+
<summary>
|
|
490
|
+
CreateIntegrationTableProperties
|
|
491
|
+
</summary>
|
|
492
|
+
|
|
493
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/CreateIntegrationTablePropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationTablePropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/CreateIntegrationTablePropertiesCommandOutput/)
|
|
494
|
+
|
|
463
495
|
</details>
|
|
464
496
|
<details>
|
|
465
497
|
<summary>
|
|
@@ -588,6 +620,14 @@ DeleteBlueprint
|
|
|
588
620
|
|
|
589
621
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteBlueprintCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteBlueprintCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteBlueprintCommandOutput/)
|
|
590
622
|
|
|
623
|
+
</details>
|
|
624
|
+
<details>
|
|
625
|
+
<summary>
|
|
626
|
+
DeleteCatalog
|
|
627
|
+
</summary>
|
|
628
|
+
|
|
629
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteCatalogCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteCatalogCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteCatalogCommandOutput/)
|
|
630
|
+
|
|
591
631
|
</details>
|
|
592
632
|
<details>
|
|
593
633
|
<summary>
|
|
@@ -668,6 +708,22 @@ DeleteDevEndpoint
|
|
|
668
708
|
|
|
669
709
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteDevEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteDevEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteDevEndpointCommandOutput/)
|
|
670
710
|
|
|
711
|
+
</details>
|
|
712
|
+
<details>
|
|
713
|
+
<summary>
|
|
714
|
+
DeleteIntegration
|
|
715
|
+
</summary>
|
|
716
|
+
|
|
717
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationCommandOutput/)
|
|
718
|
+
|
|
719
|
+
</details>
|
|
720
|
+
<details>
|
|
721
|
+
<summary>
|
|
722
|
+
DeleteIntegrationTableProperties
|
|
723
|
+
</summary>
|
|
724
|
+
|
|
725
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteIntegrationTablePropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationTablePropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationTablePropertiesCommandOutput/)
|
|
726
|
+
|
|
671
727
|
</details>
|
|
672
728
|
<details>
|
|
673
729
|
<summary>
|
|
@@ -804,6 +860,38 @@ DeleteWorkflow
|
|
|
804
860
|
|
|
805
861
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteWorkflowCommandOutput/)
|
|
806
862
|
|
|
863
|
+
</details>
|
|
864
|
+
<details>
|
|
865
|
+
<summary>
|
|
866
|
+
DescribeConnectionType
|
|
867
|
+
</summary>
|
|
868
|
+
|
|
869
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DescribeConnectionTypeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeConnectionTypeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeConnectionTypeCommandOutput/)
|
|
870
|
+
|
|
871
|
+
</details>
|
|
872
|
+
<details>
|
|
873
|
+
<summary>
|
|
874
|
+
DescribeEntity
|
|
875
|
+
</summary>
|
|
876
|
+
|
|
877
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DescribeEntityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeEntityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeEntityCommandOutput/)
|
|
878
|
+
|
|
879
|
+
</details>
|
|
880
|
+
<details>
|
|
881
|
+
<summary>
|
|
882
|
+
DescribeInboundIntegrations
|
|
883
|
+
</summary>
|
|
884
|
+
|
|
885
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DescribeInboundIntegrationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeInboundIntegrationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeInboundIntegrationsCommandOutput/)
|
|
886
|
+
|
|
887
|
+
</details>
|
|
888
|
+
<details>
|
|
889
|
+
<summary>
|
|
890
|
+
DescribeIntegrations
|
|
891
|
+
</summary>
|
|
892
|
+
|
|
893
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DescribeIntegrationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeIntegrationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DescribeIntegrationsCommandOutput/)
|
|
894
|
+
|
|
807
895
|
</details>
|
|
808
896
|
<details>
|
|
809
897
|
<summary>
|
|
@@ -828,6 +916,14 @@ GetBlueprintRuns
|
|
|
828
916
|
|
|
829
917
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetBlueprintRunsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetBlueprintRunsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetBlueprintRunsCommandOutput/)
|
|
830
918
|
|
|
919
|
+
</details>
|
|
920
|
+
<details>
|
|
921
|
+
<summary>
|
|
922
|
+
GetCatalog
|
|
923
|
+
</summary>
|
|
924
|
+
|
|
925
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetCatalogCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogCommandOutput/)
|
|
926
|
+
|
|
831
927
|
</details>
|
|
832
928
|
<details>
|
|
833
929
|
<summary>
|
|
@@ -836,6 +932,14 @@ GetCatalogImportStatus
|
|
|
836
932
|
|
|
837
933
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetCatalogImportStatusCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogImportStatusCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogImportStatusCommandOutput/)
|
|
838
934
|
|
|
935
|
+
</details>
|
|
936
|
+
<details>
|
|
937
|
+
<summary>
|
|
938
|
+
GetCatalogs
|
|
939
|
+
</summary>
|
|
940
|
+
|
|
941
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetCatalogsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetCatalogsCommandOutput/)
|
|
942
|
+
|
|
839
943
|
</details>
|
|
840
944
|
<details>
|
|
841
945
|
<summary>
|
|
@@ -1036,6 +1140,30 @@ GetDevEndpoints
|
|
|
1036
1140
|
|
|
1037
1141
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetDevEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetDevEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetDevEndpointsCommandOutput/)
|
|
1038
1142
|
|
|
1143
|
+
</details>
|
|
1144
|
+
<details>
|
|
1145
|
+
<summary>
|
|
1146
|
+
GetEntityRecords
|
|
1147
|
+
</summary>
|
|
1148
|
+
|
|
1149
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetEntityRecordsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetEntityRecordsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetEntityRecordsCommandOutput/)
|
|
1150
|
+
|
|
1151
|
+
</details>
|
|
1152
|
+
<details>
|
|
1153
|
+
<summary>
|
|
1154
|
+
GetIntegrationResourceProperty
|
|
1155
|
+
</summary>
|
|
1156
|
+
|
|
1157
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetIntegrationResourcePropertyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetIntegrationResourcePropertyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetIntegrationResourcePropertyCommandOutput/)
|
|
1158
|
+
|
|
1159
|
+
</details>
|
|
1160
|
+
<details>
|
|
1161
|
+
<summary>
|
|
1162
|
+
GetIntegrationTableProperties
|
|
1163
|
+
</summary>
|
|
1164
|
+
|
|
1165
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetIntegrationTablePropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetIntegrationTablePropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetIntegrationTablePropertiesCommandOutput/)
|
|
1166
|
+
|
|
1039
1167
|
</details>
|
|
1040
1168
|
<details>
|
|
1041
1169
|
<summary>
|
|
@@ -1404,6 +1532,14 @@ ListColumnStatisticsTaskRuns
|
|
|
1404
1532
|
|
|
1405
1533
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListColumnStatisticsTaskRunsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListColumnStatisticsTaskRunsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListColumnStatisticsTaskRunsCommandOutput/)
|
|
1406
1534
|
|
|
1535
|
+
</details>
|
|
1536
|
+
<details>
|
|
1537
|
+
<summary>
|
|
1538
|
+
ListConnectionTypes
|
|
1539
|
+
</summary>
|
|
1540
|
+
|
|
1541
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListConnectionTypesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListConnectionTypesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListConnectionTypesCommandOutput/)
|
|
1542
|
+
|
|
1407
1543
|
</details>
|
|
1408
1544
|
<details>
|
|
1409
1545
|
<summary>
|
|
@@ -1484,6 +1620,14 @@ ListDevEndpoints
|
|
|
1484
1620
|
|
|
1485
1621
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListDevEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListDevEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListDevEndpointsCommandOutput/)
|
|
1486
1622
|
|
|
1623
|
+
</details>
|
|
1624
|
+
<details>
|
|
1625
|
+
<summary>
|
|
1626
|
+
ListEntities
|
|
1627
|
+
</summary>
|
|
1628
|
+
|
|
1629
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListEntitiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListEntitiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListEntitiesCommandOutput/)
|
|
1630
|
+
|
|
1487
1631
|
</details>
|
|
1488
1632
|
<details>
|
|
1489
1633
|
<summary>
|
|
@@ -1572,6 +1716,14 @@ ListWorkflows
|
|
|
1572
1716
|
|
|
1573
1717
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListWorkflowsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListWorkflowsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListWorkflowsCommandOutput/)
|
|
1574
1718
|
|
|
1719
|
+
</details>
|
|
1720
|
+
<details>
|
|
1721
|
+
<summary>
|
|
1722
|
+
ModifyIntegration
|
|
1723
|
+
</summary>
|
|
1724
|
+
|
|
1725
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ModifyIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ModifyIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ModifyIntegrationCommandOutput/)
|
|
1726
|
+
|
|
1575
1727
|
</details>
|
|
1576
1728
|
<details>
|
|
1577
1729
|
<summary>
|
|
@@ -1868,6 +2020,14 @@ UpdateBlueprint
|
|
|
1868
2020
|
|
|
1869
2021
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/UpdateBlueprintCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateBlueprintCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateBlueprintCommandOutput/)
|
|
1870
2022
|
|
|
2023
|
+
</details>
|
|
2024
|
+
<details>
|
|
2025
|
+
<summary>
|
|
2026
|
+
UpdateCatalog
|
|
2027
|
+
</summary>
|
|
2028
|
+
|
|
2029
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/UpdateCatalogCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateCatalogCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateCatalogCommandOutput/)
|
|
2030
|
+
|
|
1871
2031
|
</details>
|
|
1872
2032
|
<details>
|
|
1873
2033
|
<summary>
|
|
@@ -1948,6 +2108,22 @@ UpdateDevEndpoint
|
|
|
1948
2108
|
|
|
1949
2109
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/UpdateDevEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateDevEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateDevEndpointCommandOutput/)
|
|
1950
2110
|
|
|
2111
|
+
</details>
|
|
2112
|
+
<details>
|
|
2113
|
+
<summary>
|
|
2114
|
+
UpdateIntegrationResourceProperty
|
|
2115
|
+
</summary>
|
|
2116
|
+
|
|
2117
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/UpdateIntegrationResourcePropertyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateIntegrationResourcePropertyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateIntegrationResourcePropertyCommandOutput/)
|
|
2118
|
+
|
|
2119
|
+
</details>
|
|
2120
|
+
<details>
|
|
2121
|
+
<summary>
|
|
2122
|
+
UpdateIntegrationTableProperties
|
|
2123
|
+
</summary>
|
|
2124
|
+
|
|
2125
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/UpdateIntegrationTablePropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateIntegrationTablePropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/UpdateIntegrationTablePropertiesCommandOutput/)
|
|
2126
|
+
|
|
1951
2127
|
</details>
|
|
1952
2128
|
<details>
|
|
1953
2129
|
<summary>
|