Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

data_pipeline - remove unused version option #1160

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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