-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathMSFT_SqlRS.schema.mof
12 lines (12 loc) · 1.11 KB
/
MSFT_SqlRS.schema.mof
1
2
3
4
5
6
7
8
9
10
11
12
[ClassVersion("1.0.0.0"), FriendlyName("SqlRS")]
class MSFT_SqlRS : OMI_BaseResource
{
[Key, Description("Name of the SQL Server Reporting Services instance to be configured.")] String InstanceName;
[Required, Description("Name of the SQL Server to host the Reporting Service database.")] String RSSQLServer;
[Required, Description("Name of the SQL Server instance to host the Reporting Service database.")] String RSSQLInstanceName;
[Write, Description("Report Server Web Service virtual directory. Optional.")] String ReportServerVirtualDirectory;
[Write, Description("Report Manager/Report Web App virtual directory name. Optional.")] String ReportsVirtualDirectory;
[Write, Description("Report Server URL reservations. Optional. If not specified, 'http://+:80' URL reservation will be used.")] String ReportServerReservedUrl[];
[Write, Description("Report Manager/Report Web App URL reservations. Optional. If not specified, 'http://+:80' URL reservation will be used.")] String ReportsReservedUrl[];
[Read, Description("Is the Reporting Services instance initialized.")] Boolean IsInitialized;
};