Skip to main content

solution_self_help

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

Overview

Namesolution_self_help
TypeResource
Idazure_extras.self_help.solution_self_help

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
namestringThe name of the resource.
contentstringThe HTML content that needs to be rendered and shown to customer.
replacementMapsobjectSolution replacement maps.
sectionsarrayList of section object.
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. # pylint: disable=line-too-long
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
titlestringThe title.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsolution_idGets 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
solution_idstringSolutionId 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. Required.

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
id,
name,
content,
replacementMaps,
sections,
solutionId,
systemData,
title,
type
FROM azure_extras.self_help.solution_self_help
WHERE solution_id = '{{ solution_id }}' -- required
;