error_summaries
Creates, updates, deletes, gets or lists an error_summaries resource.
Overview
| Name | error_summaries |
| Type | Resource |
| Id | azure_extras.spring_app_discovery.error_summaries |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_site
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
discoveryScopeErrorSummaries | array | The list of ErrorSummary. |
errors | array | The list of errors. |
provisioningState | string | The resource provisioning state. Known values are: "Unknown", "Succeeded", "Failed", "Canceled", "Accepted", "Provisioning", and "Deleting". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
discoveryScopeErrorSummaries | array | The list of ErrorSummary. |
errors | array | The list of errors. |
provisioningState | string | The resource provisioning state. Known values are: "Unknown", "Succeeded", "Failed", "Canceled", "Accepted", "Provisioning", and "Deleting". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, site_name, error_summary_name, subscription_id | Implements ErrorSummaries GET method. Gets the ErrorSummaries resource. | |
list_by_site | select | resource_group_name, site_name, subscription_id | Implements 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.
| Name | Datatype | Description |
|---|---|---|
error_summary_name | string | The name of error summary. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
site_name | string | The springbootsites name. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_site
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
;
Implements ErrorSummaries GET method. Lists the ErrorSummaries resource in springbootsites.
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 subscription_id = '{{ subscription_id }}' -- required
;