InsightsOperations interface
Interface representing a Insights operations.
Properties
| generate | Generate Insights |
| get | Get a specific insight by Id. |
| list | List all insights in reverse chronological order (newest first). |
Property Details
generate
Generate Insights
generate: (insight: Insight, options?: InsightsGenerateOptionalParams) => Promise<Insight>
Property Value
(insight: Insight, options?: InsightsGenerateOptionalParams) => Promise<Insight>
get
Get a specific insight by Id.
get: (id: string, options?: InsightsGetOptionalParams) => Promise<Insight>
Property Value
(id: string, options?: InsightsGetOptionalParams) => Promise<Insight>
list
List all insights in reverse chronological order (newest first).
list: (options?: InsightsListOptionalParams) => PagedAsyncIterableIterator<Insight, Insight[], PageSettings>
Property Value
(options?: InsightsListOptionalParams) => PagedAsyncIterableIterator<Insight, Insight[], PageSettings>