QueryCompilationResult Interface

public interface QueryCompilationResult

An immutable client-side representation of QueryCompilationResult.

Method Summary

Modifier and Type Method and Description
abstract List<QueryCompilationError> errors()

Gets the errors property: Error messages produced by the compiler.

abstract List<String> functions()

Gets the functions property: All function names used by the query.

abstract QueryCompilationResultInner innerModel()

Gets the inner com.azure.resourcemanager.streamanalytics.fluent.models.QueryCompilationResultInner object.

abstract List<String> inputs()

Gets the inputs property: All input names used by the query.

abstract List<String> outputs()

Gets the outputs property: All output names used by the query.

abstract List<String> warnings()

Gets the warnings property: Warning messages produced by the compiler.

Method Details

errors

public abstract List<QueryCompilationError> errors()

Gets the errors property: Error messages produced by the compiler.

Returns:

the errors value.

functions

public abstract List<String> functions()

Gets the functions property: All function names used by the query.

Returns:

the functions value.

innerModel

public abstract QueryCompilationResultInner innerModel()

Gets the inner com.azure.resourcemanager.streamanalytics.fluent.models.QueryCompilationResultInner object.

Returns:

the inner object.

inputs

public abstract List<String> inputs()

Gets the inputs property: All input names used by the query.

Returns:

the inputs value.

outputs

public abstract List<String> outputs()

Gets the outputs property: All output names used by the query.

Returns:

the outputs value.

warnings

public abstract List<String> warnings()

Gets the warnings property: Warning messages produced by the compiler.

Returns:

the warnings value.

Applies to