simulationAutomation 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph版本下的 /beta API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

表示为在租户上运行而创建的模拟自动化。

Methods

方法 返回类型 Description
列出 simulationAutomations simulationAutomation 集合 获取 simulationAutomation 对象 及其属性的列表。
列出运行 simulationAutomationRun 集合 获取租户的攻击模拟自动化运行列表。

属性

属性 类型 说明
createdBy emailIdentity 创建攻击模拟自动化的用户的标识。
createdDateTime DateTimeOffset 创建攻击模拟自动化的日期和时间。
description String 攻击模拟自动化的说明。
displayName String 攻击模拟自动化的显示名称。 支持 $filter$orderby
id String 攻击模拟自动化的唯一标识符。
lastModifiedBy emailIdentity 最近修改攻击模拟自动化的用户的标识。
lastModifiedDateTime DateTimeOffset 最近修改攻击模拟自动化的日期和时间。
lastRunDateTime DateTimeOffset 最近运行攻击模拟自动化的日期和时间。
nextRunDateTime DateTimeOffset 即将运行的攻击模拟自动化的日期和时间。
状态 simulationAutomationStatus 攻击模拟自动化的状态。 支持 $filter$orderby。 可能的值包括 unknowndraftnotRunningrunningcompletedunknownFutureValue

simulationAutomationStatus 值

成员 说明
unknown 未定义模拟自动化的状态。
draft 模拟自动化在草稿模式下。
notRunning 模拟自动化未运行。
running 模拟自动化正在运行。
已完成 模拟自动化已完成。
unknownFutureValue 可发展枚举 sentinel 值。 请勿使用。

关系

关系 类型 Description
runs simulationAutomationRun 集合 模拟自动化运行的集合。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.simulationAutomation",
  "createdBy": {
    "@odata.type": "microsoft.graph.emailIdentity"
  },
  "createdDateTime": "String (timestamp)",
  "description": "String",
  "displayName": "String",
  "id": "String (identifier)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.emailIdentity"
  },
  "lastModifiedDateTime": "String (timestamp)",
  "lastRunDateTime": "String (timestamp)",
  "nextRunDateTime": "String (timestamp)",
  "status": "String"
}