DeviceManagementClient.GetLogCollectionDetailedStatus Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Abrufen der Protokollsammlung mit detaillierten status.
public virtual Azure.Response GetLogCollectionDetailedStatus (string logCollectionId, Azure.RequestContext context = default);
abstract member GetLogCollectionDetailedStatus : string * Azure.RequestContext -> Azure.Response
override this.GetLogCollectionDetailedStatus : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetLogCollectionDetailedStatus (logCollectionId As String, Optional context As RequestContext = Nothing) As Response
Parameter
- logCollectionId
- String
Protokollsammlungsbezeichner.
- context
- RequestContext
Der Anforderungskontext, der das Standardverhalten der Clientpipeline pro Aufruf außer Kraft setzen kann.
Gibt zurück
Die vom Dienst zurückgegebene Antwort. Details zum Antworttextschema finden Sie im Abschnitt Hinweise unten.
Ausnahmen
logCollectionId
ist NULL.
logCollectionId
ist eine leere Zeichenfolge und wurde erwartet, dass sie nicht leer ist.
Der Dienst hat einen nicht erfolgreichen status Code zurückgegeben.
Beispiele
In diesem Beispiel wird gezeigt, wie Sie GetLogCollectionDetailedStatus mit den erforderlichen Parametern aufrufen und das Ergebnis analysieren.
var credential = new DefaultAzureCredential();
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new DeviceManagementClient(endpoint, "<instanceId>", credential);
Response response = client.GetLogCollectionDetailedStatus("<logCollectionId>");
JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.GetProperty("operationId").ToString());
Console.WriteLine(result.GetProperty("createdDateTime").ToString());
Console.WriteLine(result.GetProperty("lastActionDateTime").ToString());
Console.WriteLine(result.GetProperty("status").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("deviceId").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("moduleId").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("status").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("resultCode").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("extendedResultCode").ToString());
Console.WriteLine(result.GetProperty("deviceStatus")[0].GetProperty("logLocation").ToString());
Console.WriteLine(result.GetProperty("description").ToString());
Hinweise
Im Folgenden finden Sie das JSON-Schema für die Antwortnutzlast.
Antworttext:
Schema für LogCollectionOperationDetailedStatus
:
{
operationId: string, # Optional. The device diagnostics operation id.
createdDateTime: string, # Optional. The timestamp when the operation was created.
lastActionDateTime: string, # Optional. A timestamp for when the current state was entered.
status: "NotStarted" | "Running" | "Succeeded" | "Failed", # Optional. Operation status.
deviceStatus: [
{
deviceId: string, # Required. Device id
moduleId: string, # Optional. Module id.
status: "NotStarted" | "Running" | "Succeeded" | "Failed", # Required. Log upload status
resultCode: string, # Optional. Log upload result code
extendedResultCode: string, # Optional. Log upload extended result code
logLocation: string, # Optional. Log upload location
}
], # Optional. Status of the devices in the operation
description: string, # Optional. Device diagnostics operation description.
}
Gilt für:
Azure SDK for .NET