Add versionadded directives for #26312

This commit is contained in:
rallytime 2015-08-17 11:43:13 -06:00
parent a870b79748
commit 9f88f11ccd
2 changed files with 10 additions and 0 deletions

View File

@ -139,6 +139,8 @@ def check_vpc(vpc_id=None, vpc_name=None, region=None, key=None, keyid=None,
both vpc_id and vpc_name are None. Optionally raise a
CommandExecutionError if the VPC does not exist.
.. versionadded:: Boron
CLI Example:
.. code-block:: bash

View File

@ -126,6 +126,8 @@ def present(
vpc_name
The name of the VPC to create the security group in, if any.
.. versionadded:: Boron
rules
A list of ingress rule dicts.
@ -144,6 +146,8 @@ def present(
profile
A dict with region, key and keyid, or a pillar key (string)
that contains a dict with region, key and keyid.
.. versionadded:: Boron
'''
ret = {'name': name, 'result': True, 'comment': '', 'changes': {}}
_ret = _security_group_present(name, description, vpc_id, region, key,
@ -487,6 +491,8 @@ def absent(
vpc_name
The name of the VPC to create the security group in, if any.
.. versionadded:: Boron
region
Region to connect to.
@ -499,6 +505,8 @@ def absent(
profile
A dict with region, key and keyid, or a pillar key (string)
that contains a dict with region, key and keyid.
.. versionadded:: Boron
'''
ret = {'name': name, 'result': None, 'comment': '', 'changes': {}}