From 7c752068f1d747f1218a54ed3f1b07ebee970d1b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 25 Nov 2022 12:09:59 +0900 Subject: [PATCH] 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 --- lib/puppet/type/neutron_network.rb | 4 ++-- lib/puppet/type/neutron_subnet.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/puppet/type/neutron_network.rb b/lib/puppet/type/neutron_network.rb index 706af6858..ce6277cb2 100644 --- a/lib/puppet/type/neutron_network.rb +++ b/lib/puppet/type/neutron_network.rb @@ -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 diff --git a/lib/puppet/type/neutron_subnet.rb b/lib/puppet/type/neutron_subnet.rb index 69411e3ee..778206151 100644 --- a/lib/puppet/type/neutron_subnet.rb +++ b/lib/puppet/type/neutron_subnet.rb @@ -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