Skip to main content

error_summaries

Creates, updates, deletes, gets or lists an error_summaries resource.

Overview

Nameerror_summaries
TypeResource
Idazure_extras.spring_app_discovery.error_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
discoveryScopeErrorSummariesarrayThe list of ErrorSummary.
errorsarrayThe list of errors.
provisioningStatestringThe resource provisioning state. Known values are: "Unknown", "Succeeded", "Failed", "Canceled", "Accepted", "Provisioning", and "Deleting".
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, site_name, error_summary_name, subscription_idImplements ErrorSummaries GET method. Gets the ErrorSummaries resource.
list_by_siteselectresource_group_name, site_name, subscription_idImplements ErrorSummaries GET method. Lists the ErrorSummaries resource in springbootsites.

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.

NameDatatypeDescription
error_summary_namestringThe name of error summary. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
site_namestringThe springbootsites name. Required.
subscription_idstring

SELECT examples

Implements ErrorSummaries GET method. Gets the ErrorSummaries resource.

SELECT
id,
name,
discoveryScopeErrorSummaries,
errors,
provisioningState,
systemData,
tags,
type
FROM azure_extras.spring_app_discovery.error_summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND site_name = '{{ site_name }}' -- required
AND error_summary_name = '{{ error_summary_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;