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
- vw_simplified_solutions
- simplified_solutions
Name | Datatype | Description |
---|---|---|
appendix | text | field from the properties object |
content | text | field from the properties object |
parameters | text | field from the properties object |
provisioning_state | text | field from the properties object |
scope | text | field from the properties object |
simplifiedSolutionsResourceName | text | field from the properties object |
solution_id | text | field from the properties object |
title | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Simplified Solutions result |
Methods
Name | Accessible by | Required 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. |
SELECT
examples
Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.
- vw_simplified_solutions
- simplified_solutions
SELECT
appendix,
content,
parameters,
provisioning_state,
scope,
simplifiedSolutionsResourceName,
solution_id,
title
FROM azure_extras.help.vw_simplified_solutions
WHERE scope = '{{ scope }}'
AND simplifiedSolutionsResourceName = '{{ simplifiedSolutionsResourceName }}';
SELECT
properties
FROM azure_extras.help.simplified_solutions
WHERE scope = '{{ scope }}'
AND simplifiedSolutionsResourceName = '{{ simplifiedSolutionsResourceName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new simplified_solutions
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.help.simplified_solutions (
scope,
simplifiedSolutionsResourceName,
properties
)
SELECT
'{{ scope }}',
'{{ simplifiedSolutionsResourceName }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: solutionId
value: string
- name: parameters
value: object
- name: title
value: string
- name: appendix
value: object
- name: content
value: string
- name: provisioningState
value: string