internal static LastPatchInstallationSummary DeserializeLastPatchInstallationSummary(JsonElement element) { Optional <PatchOperationStatus> status = default; Optional <string> installationActivityId = default; Optional <bool> maintenanceWindowExceeded = default; Optional <int> notSelectedPatchCount = default; Optional <int> excludedPatchCount = default; Optional <int> pendingPatchCount = default; Optional <int> installedPatchCount = default; Optional <int> failedPatchCount = default; Optional <DateTimeOffset> startTime = default; Optional <DateTimeOffset> lastModifiedTime = default; Optional <ApiError> error = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("status")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } status = new PatchOperationStatus(property.Value.GetString()); continue; } if (property.NameEquals("installationActivityId")) { installationActivityId = property.Value.GetString(); continue; } if (property.NameEquals("maintenanceWindowExceeded")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } maintenanceWindowExceeded = property.Value.GetBoolean(); continue; } if (property.NameEquals("notSelectedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } notSelectedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("excludedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } excludedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("pendingPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } pendingPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("installedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } installedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("failedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } failedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("startTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } startTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("lastModifiedTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } lastModifiedTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("error")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } error = ApiError.DeserializeApiError(property.Value); continue; } } return(new LastPatchInstallationSummary(Optional.ToNullable(status), installationActivityId.Value, Optional.ToNullable(maintenanceWindowExceeded), Optional.ToNullable(notSelectedPatchCount), Optional.ToNullable(excludedPatchCount), Optional.ToNullable(pendingPatchCount), Optional.ToNullable(installedPatchCount), Optional.ToNullable(failedPatchCount), Optional.ToNullable(startTime), Optional.ToNullable(lastModifiedTime), error.Value)); }
internal static VirtualMachineInstallPatchesResult DeserializeVirtualMachineInstallPatchesResult(JsonElement element) { Optional <PatchOperationStatus> status = default; Optional <string> installationActivityId = default; Optional <VMGuestPatchRebootStatus> rebootStatus = default; Optional <bool> maintenanceWindowExceeded = default; Optional <int> excludedPatchCount = default; Optional <int> notSelectedPatchCount = default; Optional <int> pendingPatchCount = default; Optional <int> installedPatchCount = default; Optional <int> failedPatchCount = default; Optional <IReadOnlyList <PatchInstallationDetail> > patches = default; Optional <DateTimeOffset> startDateTime = default; Optional <ApiError> error = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("status")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } status = new PatchOperationStatus(property.Value.GetString()); continue; } if (property.NameEquals("installationActivityId")) { installationActivityId = property.Value.GetString(); continue; } if (property.NameEquals("rebootStatus")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } rebootStatus = new VMGuestPatchRebootStatus(property.Value.GetString()); continue; } if (property.NameEquals("maintenanceWindowExceeded")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } maintenanceWindowExceeded = property.Value.GetBoolean(); continue; } if (property.NameEquals("excludedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } excludedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("notSelectedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } notSelectedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("pendingPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } pendingPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("installedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } installedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("failedPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } failedPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("patches")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } List <PatchInstallationDetail> array = new List <PatchInstallationDetail>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(PatchInstallationDetail.DeserializePatchInstallationDetail(item)); } patches = array; continue; } if (property.NameEquals("startDateTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } startDateTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("error")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } error = ApiError.DeserializeApiError(property.Value); continue; } } return(new VirtualMachineInstallPatchesResult(Optional.ToNullable(status), installationActivityId.Value, Optional.ToNullable(rebootStatus), Optional.ToNullable(maintenanceWindowExceeded), Optional.ToNullable(excludedPatchCount), Optional.ToNullable(notSelectedPatchCount), Optional.ToNullable(pendingPatchCount), Optional.ToNullable(installedPatchCount), Optional.ToNullable(failedPatchCount), Optional.ToList(patches), Optional.ToNullable(startDateTime), error.Value)); }
internal static AvailablePatchSummary DeserializeAvailablePatchSummary(JsonElement element) { Optional <PatchOperationStatus> status = default; Optional <string> assessmentActivityId = default; Optional <bool> rebootPending = default; Optional <int> criticalAndSecurityPatchCount = default; Optional <int> otherPatchCount = default; Optional <DateTimeOffset> startTime = default; Optional <DateTimeOffset> lastModifiedTime = default; Optional <ApiError> error = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("status")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } status = new PatchOperationStatus(property.Value.GetString()); continue; } if (property.NameEquals("assessmentActivityId")) { assessmentActivityId = property.Value.GetString(); continue; } if (property.NameEquals("rebootPending")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } rebootPending = property.Value.GetBoolean(); continue; } if (property.NameEquals("criticalAndSecurityPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } criticalAndSecurityPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("otherPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } otherPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("startTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } startTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("lastModifiedTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } lastModifiedTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("error")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } error = ApiError.DeserializeApiError(property.Value); continue; } } return(new AvailablePatchSummary(Optional.ToNullable(status), assessmentActivityId.Value, Optional.ToNullable(rebootPending), Optional.ToNullable(criticalAndSecurityPatchCount), Optional.ToNullable(otherPatchCount), Optional.ToNullable(startTime), Optional.ToNullable(lastModifiedTime), error.Value)); }
internal static VirtualMachineAssessPatchesResult DeserializeVirtualMachineAssessPatchesResult(JsonElement element) { Optional <PatchOperationStatus> status = default; Optional <string> assessmentActivityId = default; Optional <bool> rebootPending = default; Optional <int> criticalAndSecurityPatchCount = default; Optional <int> otherPatchCount = default; Optional <DateTimeOffset> startDateTime = default; Optional <IReadOnlyList <VirtualMachineSoftwarePatchProperties> > availablePatches = default; Optional <ApiError> error = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("status")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } status = new PatchOperationStatus(property.Value.GetString()); continue; } if (property.NameEquals("assessmentActivityId")) { assessmentActivityId = property.Value.GetString(); continue; } if (property.NameEquals("rebootPending")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } rebootPending = property.Value.GetBoolean(); continue; } if (property.NameEquals("criticalAndSecurityPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } criticalAndSecurityPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("otherPatchCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } otherPatchCount = property.Value.GetInt32(); continue; } if (property.NameEquals("startDateTime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } startDateTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("availablePatches")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } List <VirtualMachineSoftwarePatchProperties> array = new List <VirtualMachineSoftwarePatchProperties>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(VirtualMachineSoftwarePatchProperties.DeserializeVirtualMachineSoftwarePatchProperties(item)); } availablePatches = array; continue; } if (property.NameEquals("error")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } error = ApiError.DeserializeApiError(property.Value); continue; } } return(new VirtualMachineAssessPatchesResult(Optional.ToNullable(status), assessmentActivityId.Value, Optional.ToNullable(rebootPending), Optional.ToNullable(criticalAndSecurityPatchCount), Optional.ToNullable(otherPatchCount), Optional.ToNullable(startDateTime), Optional.ToList(availablePatches), error.Value)); }