From 9f88f11ccdfe5898495af3d62d43a099eebf79e8 Mon Sep 17 00:00:00 2001 From: rallytime Date: Mon, 17 Aug 2015 11:43:13 -0600 Subject: [PATCH] Add versionadded directives for #26312 --- salt/modules/boto_vpc.py | 2 ++ salt/states/boto_secgroup.py | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/salt/modules/boto_vpc.py b/salt/modules/boto_vpc.py index c97c973189..13fe9c2829 100644 --- a/salt/modules/boto_vpc.py +++ b/salt/modules/boto_vpc.py @@ -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 diff --git a/salt/states/boto_secgroup.py b/salt/states/boto_secgroup.py index e04586c274..4c1ca85afd 100644 --- a/salt/states/boto_secgroup.py +++ b/salt/states/boto_secgroup.py @@ -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': {}}