Skip to main content

solution_self_helps

Creates, updates, deletes, gets or lists a solution_self_helps resource.

Overview

Namesolution_self_helps
TypeResource
Idazure_extras.help.solution_self_helps

Fields

The following fields are returned by SELECT queries:

Successful fetched solution result.

NameDatatypeDescription
propertiesobjectSolution result

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsolutionIdGets Self Help Solutions for a given solutionId. Self Help Solutions consist of rich instructional video tutorials, links and guides to public documentation related to a specific problem that enables users to troubleshoot Azure issues.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
solutionIdstringSolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP

SELECT examples

Gets Self Help Solutions for a given solutionId. Self Help Solutions consist of rich instructional video tutorials, links and guides to public documentation related to a specific problem that enables users to troubleshoot Azure issues.

SELECT
properties
FROM azure_extras.help.solution_self_helps
WHERE solutionId = '{{ solutionId }}' -- required
;