Bump a few deprecations to correct versions (#44534)

This commit is contained in:
Matt Martz 2018-08-22 16:11:41 -05:00 committed by Tim Rupp
parent af786cb9d7
commit 6ac4dae834

View file

@ -1447,7 +1447,7 @@ class ModuleParameters(Parameters):
self._values['__warnings'].append( self._values['__warnings'].append(
dict( dict(
msg="Usage of the 'ALL' value for 'enabled_vlans' parameter is deprecated. Use '*' instead", msg="Usage of the 'ALL' value for 'enabled_vlans' parameter is deprecated. Use '*' instead",
version='2.5' version='2.9'
) )
) )
return result return result
@ -1957,19 +1957,19 @@ class VirtualServerValidator(object):
self.want.update({'type': 'performance-l4'}) self.want.update({'type': 'performance-l4'})
self.module.deprecate( self.module.deprecate(
msg="Specifying 'performance-l4' profiles on a 'standard' type is deprecated and will be removed.", msg="Specifying 'performance-l4' profiles on a 'standard' type is deprecated and will be removed.",
version='2.6' version='2.10'
) )
if self.want.has_fasthttp_profiles: if self.want.has_fasthttp_profiles:
self.want.update({'type': 'performance-http'}) self.want.update({'type': 'performance-http'})
self.module.deprecate( self.module.deprecate(
msg="Specifying 'performance-http' profiles on a 'standard' type is deprecated and will be removed.", msg="Specifying 'performance-http' profiles on a 'standard' type is deprecated and will be removed.",
version='2.6' version='2.10'
) )
if self.want.has_message_routing_profiles: if self.want.has_message_routing_profiles:
self.want.update({'type': 'message-routing'}) self.want.update({'type': 'message-routing'})
self.module.deprecate( self.module.deprecate(
msg="Specifying 'message-routing' profiles on a 'standard' type is deprecated and will be removed.", msg="Specifying 'message-routing' profiles on a 'standard' type is deprecated and will be removed.",
version='2.6' version='2.10'
) )
def _check_source_and_destination_match(self): def _check_source_and_destination_match(self):