solution_inference
Creates, updates, deletes, gets or lists a solution_inference resource.
Overview
| Name | solution_inference |
| Type | Resource |
| Id | azure_extras.agrifood_farming.solution_inference |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
create_or_update | insert | solution_id, endpoint | Creates a job trigger for a solution. | |
create_or_update | replace | solution_id, endpoint | Creates a job trigger for a solution. | |
cancel | exec | solution_id, endpoint | Cancels a job for given solution id. | |
fetch | exec | solution_id, endpoint | Fetches details of triggered job for a solution. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
solution_id | string | Id of the solution. Required. |
INSERT examples
- create_or_update
- Manifest
Creates a job trigger for a solution.
INSERT INTO azure_extras.agrifood_farming.solution_inference (
solution_id,
endpoint
)
SELECT
'{{ solution_id }}',
'{{ endpoint }}'
;
# Description fields are for documentation purposes
- name: solution_inference
props:
- name: solution_id
value: "{{ solution_id }}"
description: Required parameter for the solution_inference resource.
- name: endpoint
value: "{{ endpoint }}"
description: Required parameter for the solution_inference resource.
REPLACE examples
- create_or_update
Creates a job trigger for a solution.
REPLACE azure_extras.agrifood_farming.solution_inference
SET
-- No updatable properties
WHERE
solution_id = '{{ solution_id }}' --required
AND endpoint = '{{ endpoint }}' --required;
Lifecycle Methods
- cancel
- fetch
Cancels a job for given solution id.
EXEC azure_extras.agrifood_farming.solution_inference.cancel
@solution_id='{{ solution_id }}' --required,
@endpoint='{{ endpoint }}' --required
;
Fetches details of triggered job for a solution.
EXEC azure_extras.agrifood_farming.solution_inference.fetch
@solution_id='{{ solution_id }}' --required,
@endpoint='{{ endpoint }}' --required
;