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:
Takashi Kajinami
2022-11-25 12:09:59 +09:00
parent 8011bfcab1
commit 7c752068f1
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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