Skip to main content

certificate_orders_diagnostics

Creates, updates, deletes, gets or lists a certificate_orders_diagnostics resource.

Overview

Namecertificate_orders_diagnostics
TypeResource
Idazure.certificate_registration.certificate_orders_diagnostics

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.
dataProvidersMetadataarrayAdditional configuration for different data providers to be used by the UI.
datasetarrayData Set.
kindstringKind of resource.
metadataobjectmetadata for the detector.
statusobjectIndicates status of the most severe insight.
suggestedUtterancesobjectSuggested utterances where the detector can be applicable.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
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
get_app_service_certificate_order_detector_responseselectresource_group_name, certificate_order_name, detector_name, subscription_idstartTime, endTime, timeGrainMicrosoft.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_responseselectresource_group_name, certificate_order_name, subscription_idMicrosoft.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.

NameDatatypeDescription
certificate_order_namestringName of the certificate order.. Required.
detector_namestringThe detector name which needs to be run. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
endTimestring (date-time)The end time for the detector response. Default value is None.
startTimestring (date-time)The start time for detector response. Default value is None.
timeGrainstringThe time grain for the detector response. Default value is None.

SELECT examples

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 }}'
;