Skip to content

Commit

Permalink
data_pipeline - remove unused version option (ansible-collections#1160)
Browse files Browse the repository at this point in the history
data_pipeline - remove unused version option

SUMMARY
The version option has always been ignored and has now been removed.
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
data_pipeline
ADDITIONAL INFORMATION
See also: ansible/ansible#64368

Reviewed-by: Markus Bergholz <git@osuv.de>
  • Loading branch information
tremble authored May 26, 2022
1 parent 690e250 commit 8015936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1160-data_pipeline-remove-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
removed_features:
- data_pipeline - the ``version`` option has always been ignored and has been removed (https://github.com/ansible-collections/community.aws/pull/1160"
5 changes: 0 additions & 5 deletions plugins/modules/data_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,6 @@
description:
- A dict of key:value pair(s) to add to the pipeline.
type: dict
version:
description:
- The version option has never had any effect and will be removed after 2022-06-01.
type: str
'''

EXAMPLES = r'''
Expand Down Expand Up @@ -600,7 +596,6 @@ def create_pipeline(client, module):
def main():
argument_spec = dict(
name=dict(required=True),
version=dict(removed_at_date='2022-06-01', removed_from_collection='community.aws'),
description=dict(required=False, default=''),
objects=dict(required=False, type='list', default=[], elements='dict'),
parameters=dict(required=False, type='list', default=[], elements='dict'),
Expand Down

0 comments on commit 8015936

Please sign in to comment.