certificate_orders_diagnostics
Creates, updates, deletes, gets or lists a certificate_orders_diagnostics resource.
Overview
| Name | certificate_orders_diagnostics |
| Type | Resource |
| Id | azure.certificate_registration.certificate_orders_diagnostics |
Fields
The following fields are returned by SELECT queries:
- get_app_service_certificate_order_detector_response
- list_app_service_certificate_order_detector_response
| 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. |
dataProvidersMetadata | array | Additional configuration for different data providers to be used by the UI. |
dataset | array | Data Set. |
kind | string | Kind of resource. |
metadata | object | metadata for the detector. |
status | object | Indicates status of the most severe insight. |
suggestedUtterances | object | Suggested utterances where the detector can be applicable. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
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. |
dataProvidersMetadata | array | Additional configuration for different data providers to be used by the UI. |
dataset | array | Data Set. |
kind | string | Kind of resource. |
metadata | object | metadata for the detector. |
status | object | Indicates status of the most severe insight. |
suggestedUtterances | object | Suggested utterances where the detector can be applicable. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
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_app_service_certificate_order_detector_response | select | resource_group_name, certificate_order_name, detector_name, subscription_id | startTime, endTime, timeGrain | Microsoft.CertificateRegistration call to get a detector response from App Lens. Description for Microsoft.CertificateRegistration call to get a detector response from App Lens. |
list_app_service_certificate_order_detector_response | select | resource_group_name, certificate_order_name, subscription_id | Microsoft.CertificateRegistration to get the list of detectors for this RP. Description for Microsoft.CertificateRegistration to get the list of detectors for this RP. |
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 |
|---|---|---|
certificate_order_name | string | Name of the certificate order.. Required. |
detector_name | string | The detector name which needs to be run. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
endTime | string (date-time) | The end time for the detector response. Default value is None. |
startTime | string (date-time) | The start time for detector response. Default value is None. |
timeGrain | string | The time grain for the detector response. Default value is None. |
SELECT examples
- get_app_service_certificate_order_detector_response
- list_app_service_certificate_order_detector_response
Microsoft.CertificateRegistration call to get a detector response from App Lens. Description for Microsoft.CertificateRegistration call to get a detector response from App Lens.
SELECT
id,
name,
dataProvidersMetadata,
dataset,
kind,
metadata,
status,
suggestedUtterances,
systemData,
type
FROM azure.certificate_registration.certificate_orders_diagnostics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND certificate_order_name = '{{ certificate_order_name }}' -- required
AND detector_name = '{{ detector_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND startTime = '{{ startTime }}'
AND endTime = '{{ endTime }}'
AND timeGrain = '{{ timeGrain }}'
;
Microsoft.CertificateRegistration to get the list of detectors for this RP. Description for Microsoft.CertificateRegistration to get the list of detectors for this RP.
SELECT
id,
name,
dataProvidersMetadata,
dataset,
kind,
metadata,
status,
suggestedUtterances,
systemData,
type
FROM azure.certificate_registration.certificate_orders_diagnostics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND certificate_order_name = '{{ certificate_order_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;