Table of Contents

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.


See dbo.syscollector_collector_types.

[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

object

CollectionPackageName

The name of the collection package. Is not nullable.

[Column("collection_package_name")]
[NotNull]
public string CollectionPackageName { get; set; }

Property Value

string

CollectionPackagePath

Provides the path to the collection package. Is nullable.

[Column("collection_package_path")]
[NotNull]
public string CollectionPackagePath { get; set; }

Property Value

string

CollectorTypeUID

The GUID for a collection type. Is not nullable.

[Column("collector_type_uid")]
[NotNull]
public object CollectorTypeUID { get; set; }

Property Value

object

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

bool

Name

The name of the collection type. Is not nullable.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

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

object

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

object

UploadPackageID

The GUID for the upload package. Is not nullable.

[Column("upload_package_id")]
[NotNull]
public object UploadPackageID { get; set; }

Property Value

object

UploadPackageName

The name of the upload package. Is not nullable.

[Column("upload_package_name")]
[NotNull]
public string UploadPackageName { get; set; }

Property Value

string

UploadPackagePath

Provides the path to the upload package. Is nullable.

[Column("upload_package_path")]
[NotNull]
public string UploadPackagePath { get; set; }

Property Value

string