Skip to content

Commit

Permalink
Rename Glue jobs (#1300)
Browse files Browse the repository at this point in the history
Rename Glue jobs

SUMMARY
In line with out new naming guidelines, rename the glue jobs
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
plugins/modules/aws_glue_connection.py
plugins/modules/aws_glue_crawler.py
plugins/modules/aws_glue_job.py
plugins/modules/glue_connection.py
plugins/modules/glue_crawler.py
plugins/modules/glue_job.py
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis <None>
  • Loading branch information
tremble authored Jul 4, 2022
1 parent 8721cf6 commit 1eb379a
Show file tree
Hide file tree
Showing 22 changed files with 879 additions and 41 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ Name | Description
[community.aws.aws_config_recorder](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_config_recorder_module.rst)|Manage AWS Config Recorders
[community.aws.aws_config_rule](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_config_rule_module.rst)|Manage AWS Config resources
[community.aws.aws_elasticbeanstalk_app](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_elasticbeanstalk_app_module.rst)|Create, update, and delete an elastic beanstalk application
[community.aws.aws_glue_connection](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_glue_connection_module.rst)|Manage an AWS Glue connection
[community.aws.aws_glue_job](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_glue_job_module.rst)|Manage an AWS Glue job
[community.aws.aws_inspector_target](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_inspector_target_module.rst)|Create, Update and Delete Amazon Inspector Assessment Targets
[community.aws.aws_msk_cluster](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_msk_cluster_module.rst)|Manage Amazon MSK clusters
[community.aws.aws_msk_config](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.aws_msk_config_module.rst)|Manage Amazon MSK cluster configurations.
Expand Down Expand Up @@ -143,6 +141,9 @@ Name | Description
[community.aws.elb_target_group](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.elb_target_group_module.rst)|Manage a target group for an Application or Network load balancer
[community.aws.elb_target_group_info](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.elb_target_group_info_module.rst)|Gather information about ELB target groups in AWS
[community.aws.elb_target_info](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.elb_target_info_module.rst)|Gathers which target groups a target is associated with.
[community.aws.glue_connection](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.glue_connection_module.rst)|Manage an AWS Glue connection
[community.aws.glue_crawler](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.glue_crawler_module.rst)|Manage an AWS Glue crawler
[community.aws.glue_job](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.glue_job_module.rst)|Manage an AWS Glue job
[community.aws.iam_access_key](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.iam_access_key_module.rst)|Manage AWS IAM User access keys
[community.aws.iam_access_key_info](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.iam_access_key_info_module.rst)|fetch information about AWS IAM User access keys
[community.aws.iam_group](https://github.com/ansible-collections/community.aws/blob/main/docs/community.aws.iam_group_module.rst)|Manage AWS IAM groups
Expand Down
4 changes: 4 additions & 0 deletions changelogs/fragments/1300-rename-glue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
minor_changes:
- aws_glue_connection - the ``aws_glue_connection`` module has been renamed to ``glue_connection``, ``aws_glue_connection`` remains as an alias (https://github.com/ansible-collections/community.aws/pull/1300).
- aws_glue_crawler - the ``aws_glue_crawler`` module has been renamed to ``glue_crawler``, ``aws_glue_crawler`` remains as an alias (https://github.com/ansible-collections/community.aws/pull/1300).
- aws_glue_job - the ``aws_glue_job`` module has been renamed to ``glue_job``, ``aws_glue_job`` remains as an alias (https://github.com/ansible-collections/community.aws/pull/1300).
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.. _community.aws.aws_glue_connection_module:
.. _community.aws.glue_connection_module:


*********************************
community.aws.aws_glue_connection
*********************************
*****************************
community.aws.glue_connection
*****************************

**Manage an AWS Glue connection**

Expand All @@ -18,6 +18,7 @@ Version added: 1.0.0
Synopsis
--------
- Manage an AWS Glue connection. See https://aws.amazon.com/glue/ for details.
- Prior to release 5.0.0 this module was called ``community.aws.aws_glue_connection``. The usage did not change.



Expand Down Expand Up @@ -404,7 +405,7 @@ Examples
# Note: These examples do not set authentication details, see the AWS Guide for details.
# Create an AWS Glue connection
- community.aws.aws_glue_connection:
- community.aws.glue_connection:
name: my-glue-connection
connection_properties:
JDBC_CONNECTION_URL: jdbc:mysql://mydb:3306/databasename
Expand All @@ -413,7 +414,7 @@ Examples
state: present
# Create an AWS Glue network connection
- community.aws.aws_glue_connection:
- community.aws.glue_connection:
name: my-glue-network-connection
availability_zone: us-east-1a
connection_properties:
Expand All @@ -426,7 +427,7 @@ Examples
state: present
# Delete an AWS Glue connection
- community.aws.aws_glue_connection:
- community.aws.glue_connection:
name: my-glue-connection
state: absent
Expand Down
Loading

0 comments on commit 1eb379a

Please sign in to comment.