Class DataCollectorSchema.CollectorType
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
syscollector_collector_types (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Provides information about a collector type for a collection item.
[Table(Database = "msdb", Schema = "dbo", Name = "syscollector_collector_types", IsView = true)]
public class DataCollectorSchema.CollectorType
- Inheritance
-
DataCollectorSchema.CollectorType
- Extension Methods
Properties
CollectionPackageID
The GUID for a collection package. Is not nullable.
[Column("collection_package_id")]
[NotNull]
public object CollectionPackageID { get; set; }
Property Value
CollectionPackageName
The name of the collection package. Is not nullable.
[Column("collection_package_name")]
[NotNull]
public string CollectionPackageName { get; set; }
Property Value
CollectionPackagePath
Provides the path to the collection package. Is nullable.
[Column("collection_package_path")]
[NotNull]
public string CollectionPackagePath { get; set; }
Property Value
CollectorTypeUID
The GUID for a collection type. Is not nullable.
[Column("collector_type_uid")]
[NotNull]
public object CollectorTypeUID { get; set; }
Property Value
IsSystem
Turned on (1) or off (0) to indicate if the collector type was shipped with the data collector or if it was added later by the dc_admin. This could be a custom type developed in-house or by a third party. Is not nullable.
[Column("is_system")]
[NotNull]
public bool IsSystem { get; set; }
Property Value
Name
The name of the collection type. Is not nullable.
[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
ParameterFormatter
Determines the template to use to transform the XML for use in the collection set property page. Is nullable.
[Column("parameter_formatter")]
[NotNull]
public object ParameterFormatter { get; set; }
Property Value
ParameterSchema
The XML schema that describes what the configuration for the specified collector type looks like. This XML schema is used to validate the actual XML configuration associated with a particular collection item instance. Is nullable.
[Column("parameter_schema")]
[NotNull]
public object ParameterSchema { get; set; }
Property Value
UploadPackageID
The GUID for the upload package. Is not nullable.
[Column("upload_package_id")]
[NotNull]
public object UploadPackageID { get; set; }
Property Value
UploadPackageName
The name of the upload package. Is not nullable.
[Column("upload_package_name")]
[NotNull]
public string UploadPackageName { get; set; }
Property Value
UploadPackagePath
Provides the path to the upload package. Is nullable.
[Column("upload_package_path")]
[NotNull]
public string UploadPackagePath { get; set; }