命名空间:microsoft.graph
重要
Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
表示创建用于在租户上运行的模拟自动化。
继承自 entity。
Methods
| 方法 | 返回类型 | 说明 |
|---|---|---|
| 列出 simulationAutomations | simulationAutomation 集合 | 获取租户的攻击模拟自动化列表。 |
| 获取 simulationAutomation | simulationAutomation | 获取租户的攻击模拟自动化。 |
| 列出运行 | simulationAutomationRun 集合 | 获取租户的攻击模拟自动化运行列表。 |
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| createdBy | emailIdentity | 创建攻击模拟自动化的用户的标识。 |
| createdDateTime | DateTimeOffset | 创建攻击模拟自动化的日期和时间。 |
| 说明 | String | 攻击模拟自动化的说明。 |
| displayName | String | 攻击模拟自动化的显示名称。 支持 $filter 和 $orderby。 |
| id | String | 攻击模拟自动化的唯一标识符。 继承自 entity。 |
| lastModifiedBy | emailIdentity | 最近修改了攻击模拟自动化的用户的标识。 |
| lastModifiedDateTime | DateTimeOffset | 最近修改攻击模拟自动化的日期和时间。 |
| lastRunDateTime | DateTimeOffset | 最新运行攻击模拟自动化的日期和时间。 |
| nextRunDateTime | DateTimeOffset | 攻击模拟自动化即将运行的日期和时间。 |
| status | simulationAutomationStatus | 攻击模拟自动化的状态。 支持 $filter 和 $orderby。 可能的值包括 unknown、draft、notRunning、running、completed、unknownFutureValue。 |
simulationAutomationStatus 值
| 成员 | 说明 |
|---|---|
| unknown | 未定义模拟自动化的状态。 |
| 草案 | 模拟自动化处于草稿模式。 |
| notRunning | 模拟自动化未运行。 |
| 运行 | 模拟自动化正在运行。 |
| 完成 | 模拟自动化已完成。 |
| unknownFutureValue | 可演变枚举 sentinel 值。 请勿使用。 |
关系
| 关系 | 类型 | 说明 |
|---|---|---|
| 运行 | 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"
}