Remove wrong deprecation mark of project_* properties
The project_name property and the project_id property are not meant to be deprecated because these replaces the old tenant_* properties. This change removes the (DEPRECATED) marks erroneously added. Change-Id: I67fc4d9bd3172ac35bae16c75ee8757d114a6d41
This commit is contained in:
@@ -33,11 +33,11 @@ Puppet::Type.newtype(:neutron_network) do
|
||||
end
|
||||
|
||||
newparam(:project_name) do
|
||||
desc 'The name of the project which will own the network.(DEPRECATED)'
|
||||
desc 'The name of the project which will own the network.'
|
||||
end
|
||||
|
||||
newproperty(:project_id) do
|
||||
desc 'A uuid identifying the project which will own the network.(DEPRECATED)'
|
||||
desc 'A uuid identifying the project which will own the network.'
|
||||
end
|
||||
|
||||
newparam(:tenant_name) do
|
||||
|
@@ -81,11 +81,11 @@ Puppet::Type.newtype(:neutron_subnet) do
|
||||
end
|
||||
|
||||
newparam(:project_name) do
|
||||
desc 'The name of the project which will own the subnet.(DEPRECATED)'
|
||||
desc 'The name of the project which will own the subnet.'
|
||||
end
|
||||
|
||||
newproperty(:project_id) do
|
||||
desc 'A uuid identifying the project which will own the subnet.(DEPRECATED)'
|
||||
desc 'A uuid identifying the project which will own the subnet.'
|
||||
end
|
||||
|
||||
newparam(:tenant_name) do
|
||||
|
Reference in New Issue
Block a user