Skip to content

Commit 5355708

Browse files
authored
Merge pull request #412 from puppetlabs/CONT-370_reinstate-lost-docs
(CONT-370) Reinstate lost sqlserver documentation on feature & tool deprecations
2 parents 4291035 + 0c8c3ee commit 5355708

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

lib/puppet/type/sqlserver_features.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@
3535
end
3636

3737
newproperty(:features, array_matching: :all) do
38-
desc 'Specifies features to install, uninstall, or upgrade. The list of top-level features include
39-
BC, Conn, SSMS, ADV_SSMS, SDK, IS and MDS.'
38+
desc "Specifies features to install, uninstall, or upgrade. The list of top-level features include
39+
BC, Conn, SSMS, ADV_SSMS, SDK, IS and MDS.
40+
41+
The 'Tools' feature is deprecated. Instead specify 'BC', 'SSMS', 'ADV_SSMS', 'Conn', and 'SDK' explicitly."
4042
newvalues(:Tools, :BC, :Conn, :SSMS, :ADV_SSMS, :SDK, :IS, :MDS, :BOL, :DREPLAY_CTLR, :DREPLAY_CLT, :DQC)
4143
munge do |value|
4244
if PuppetX::Sqlserver::ServerHelper.is_super_feature(value)

lib/puppet/type/sqlserver_instance.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@
2525
end
2626

2727
newproperty(:features, array_matching: :all) do
28-
desc 'Specifies features to install, uninstall, or upgrade. The list of top-level features include
29-
SQLEngine, Replication, FullText, DQ AS, and RS.'
28+
desc "Specifies features to install, uninstall, or upgrade. The list of top-level features include
29+
SQLEngine, Replication, FullText, DQ AS, and RS.
30+
31+
The 'SQL' feature is deprecated. Instead specify 'DQ', 'FullText', 'Replication', and 'SQLEngine' explicitly."
3032
newvalues(:SQL, :SQLEngine, :Replication, :FullText, :DQ, :AS, :RS, :POLYBASE, :ADVANCEDANALYTICS)
3133
munge do |value|
3234
if PuppetX::Sqlserver::ServerHelper.is_super_feature(value)

0 commit comments

Comments
 (0)