summaries
Creates, updates, deletes, gets or lists a summaries resource.
Overview
| Name | summaries |
| Type | Resource |
| Id | azure_extras.spring_app_discovery.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. |
discoveredApps | integer | The of number discovered spring boot apps. |
discoveredServers | integer | The of number discovered spring boot servers. |
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. |
discoveredApps | integer | The of number discovered spring boot apps. |
discoveredServers | integer | The of number discovered spring boot servers. |
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, summary_name, subscription_id | Implements Summaries GET method. Gets the Summaries resource. | |
list_by_site | select | resource_group_name, site_name, subscription_id | Implements Summaries GET method. Lists the Summaries 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 |
|---|---|---|
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 | |
summary_name | string | The name of summary. Required. |
SELECT examples
- get
- list_by_site
Implements Summaries GET method. Gets the Summaries resource.
SELECT
id,
name,
discoveredApps,
discoveredServers,
errors,
provisioningState,
systemData,
tags,
type
FROM azure_extras.spring_app_discovery.summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND site_name = '{{ site_name }}' -- required
AND summary_name = '{{ summary_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Implements Summaries GET method. Lists the Summaries resource in springbootsites.
SELECT
id,
name,
discoveredApps,
discoveredServers,
errors,
provisioningState,
systemData,
tags,
type
FROM azure_extras.spring_app_discovery.summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND site_name = '{{ site_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;