Solution Class
Class Representing Solution for problems detected.
Constructor
Solution(*, id: float | None = None, display_name: str | None = None, order: float | None = None, description: str | None = None, type: str | _models.SolutionType | None = None, data: List[List[_models.NameValuePair]] | None = None, metadata: List[List[_models.NameValuePair]] | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
id
|
Solution Id. Default value: None
|
display_name
|
Display Name of the solution. Default value: None
|
order
|
Order of the solution. Default value: None
|
description
|
Description of the solution. Default value: None
|
type
|
str or
SolutionType
Type of Solution. Known values are: "QuickSolution", "DeepInvestigation", and "BestPractices". Default value: None
|
data
|
Solution Data. Default value: None
|
metadata
|
Solution Metadata. Default value: None
|
Variables
Name | Description |
---|---|
id
|
Solution Id. |
display_name
|
Display Name of the solution. |
order
|
Order of the solution. |
description
|
Description of the solution. |
type
|
str or
SolutionType
Type of Solution. Known values are: "QuickSolution", "DeepInvestigation", and "BestPractices". |
data
|
Solution Data. |
metadata
|
Solution Metadata. |
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python