Example #1
0
 /// <summary>
 /// Initializes a new instance of the SiteLogsConfig class.
 /// </summary>
 public SiteLogsConfig(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ApplicationLogsConfig applicationLogs = default(ApplicationLogsConfig), HttpLogsConfig httpLogs = default(HttpLogsConfig), EnabledConfig failedRequestsTracing = default(EnabledConfig), EnabledConfig detailedErrorMessages = default(EnabledConfig))
     : base(location, id, name, type, tags)
 {
     ApplicationLogs       = applicationLogs;
     HttpLogs              = httpLogs;
     FailedRequestsTracing = failedRequestsTracing;
     DetailedErrorMessages = detailedErrorMessages;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the SiteLogsConfig class.
 /// </summary>
 /// <param name="id">Resource Id.</param>
 /// <param name="name">Resource Name.</param>
 /// <param name="kind">Kind of resource.</param>
 /// <param name="type">Resource type.</param>
 /// <param name="applicationLogs">Application logs
 /// configuration.</param>
 /// <param name="httpLogs">HTTP logs configuration.</param>
 /// <param name="failedRequestsTracing">Failed requests tracing
 /// configuration.</param>
 /// <param name="detailedErrorMessages">Detailed error messages
 /// configuration.</param>
 public SiteLogsConfig(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), ApplicationLogsConfig applicationLogs = default(ApplicationLogsConfig), HttpLogsConfig httpLogs = default(HttpLogsConfig), EnabledConfig failedRequestsTracing = default(EnabledConfig), EnabledConfig detailedErrorMessages = default(EnabledConfig))
     : base(id, name, kind, type)
 {
     ApplicationLogs       = applicationLogs;
     HttpLogs              = httpLogs;
     FailedRequestsTracing = failedRequestsTracing;
     DetailedErrorMessages = detailedErrorMessages;
     CustomInit();
 }