将Microsoft HPC-Cluster日期设置为ISO格式

时间:2016-11-28 14:21:52

标签: windows rest datetime-format hpc

当我使用

查询作业属性时
https://hpc-cluster/WindowsHPC/cluster_name/Job/573374?Properties=CreateTime

响应使用区域设置日期格式:

<Property><Name>ChangeTime</Name><Value>28.11.2016 08:24:06</Value></Property>    

但过滤作业需要ISO格式2016-11-28T10:06:37Z

https://hpc-cluster/WindowsHPC/cluster_name/Jobs?%24filter=ChangeTimeFrom%20eq%202016-11-28T15%3A06%3A37Z&Render=RestPropRender

如何配置响应以始终使用ISO格式?

1 个答案:

答案 0 :(得分:0)

不幸的是你不能!

因为根据Microsoft documentation relative to job properties,最准确的是ISchedulerJob.CreateTime Property&amp; ISchedulerJob.ChangeTime Property

对于这两个属性:

  

该值以协调世界时为准。

您可以在代码中的某处将UTC时间转换为ISO日期。

您是否在示例中注意到您要求“CreateTime”,但是响应显示,属性“ChangeTime”......