AnalysisConfiguration class models a build definition.

interface AnalysisConfiguration {
    analysisConfigurationDetails?: AnalysisConfigurationDetails;
    analysisConfigurationId?: number;
    analysisConfigurationType?: AnalysisConfigurationType;
    toolName?: string;
    toolVersion?: string;
}

Properties

analysisConfigurationDetails?: AnalysisConfigurationDetails

Details for the configuration. Populated values depend on the type of configuration.

analysisConfigurationId?: number

Identifier for the analysis configuration.

analysisConfigurationType?: AnalysisConfigurationType

Type of the configuration.

toolName?: string

Name of the tool that ran on this configuration.

toolVersion?: string

The latest version of the tool that ran on this configuration.