solution_self_help
Creates, updates, deletes, gets or lists a solution_self_help resource.
Overview
| Name | solution_self_help |
| Type | Resource |
| Id | azure_extras.self_help.solution_self_help |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
content | string | The HTML content that needs to be rendered and shown to customer. |
replacementMaps | object | Solution replacement maps. |
sections | array | List of section object. |
solutionId | string | SolutionId 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 |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
title | string | The title. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | solution_id | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
solution_id | string | SolutionId 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
- get
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
;