simplified_solutions
Creates, updates, deletes, gets or lists a simplified_solutions
resource.
Overview
Name | simplified_solutions |
Type | Resource |
Id | azure_extras.help.simplified_solutions |
Fields
The following fields are returned by SELECT
queries:
- get
Successful fetched simplified Solutions result.
Name | Datatype | Description |
---|---|---|
properties | object | Simplified Solutions result |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | scope , simplifiedSolutionsResourceName | Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. | |
create | insert | scope , simplifiedSolutionsResourceName | Creates Simplified Solutions for an Azure subscription using 'solutionId' from Discovery Solutions as the input. Simplified Solutions API makes the consumption of solutions APIs easier while still providing access to the same powerful solutions rendered in Solutions API. With Simplified Solutions, users don't have to worry about stitching together the article using replacement maps and can use the content in the API response to directly render as HTML content. |
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 |
---|---|---|
scope | string | The scope at which the operation is performed. |
simplifiedSolutionsResourceName | string | Simplified Solutions Resource Name. |
SELECT
examples
- get
Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.
SELECT
properties
FROM azure_extras.help.simplified_solutions
WHERE scope = '{{ scope }}' -- required
AND simplifiedSolutionsResourceName = '{{ simplifiedSolutionsResourceName }}' -- required
;
INSERT
examples
- create
- Manifest
Creates Simplified Solutions for an Azure subscription using 'solutionId' from Discovery Solutions as the input.
Simplified Solutions API makes the consumption of solutions APIs easier while still providing access to the same powerful solutions rendered in Solutions API. With Simplified Solutions, users don't have to worry about stitching together the article using replacement maps and can use the content in the API response to directly render as HTML content.
INSERT INTO azure_extras.help.simplified_solutions (
data__properties,
scope,
simplifiedSolutionsResourceName
)
SELECT
'{{ properties }}',
'{{ scope }}',
'{{ simplifiedSolutionsResourceName }}'
RETURNING
properties
;
# Description fields are for documentation purposes
- name: simplified_solutions
props:
- name: scope
value: string
description: Required parameter for the simplified_solutions resource.
- name: simplifiedSolutionsResourceName
value: string
description: Required parameter for the simplified_solutions resource.
- name: properties
value: object
description: |
Simplified Solutions result