Skip to content

Commit

Permalink
Update Endpoints in context-standards-mandatory.md (#620)
Browse files Browse the repository at this point in the history
* Update context-standards-mandatory.md

* Update context-standards-mandatory.md
  • Loading branch information
OrelHaim authored Apr 27, 2021
1 parent a6b9e21 commit df5198e
Showing 1 changed file with 61 additions and 10 deletions.
71 changes: 61 additions & 10 deletions docs/integrations/context-standards-mandatory.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,26 +235,77 @@ The following is the format for an Endpoint.

```python
"Endpoint": {
"Hostname": "STRING, The hostname that is mapped to this endpoint.",
"ID": "STRING, The unique ID within the tool retrieving the endpoint.",
"IPAddress": "STRING, The IP address of the endpoint.",
"Domain": "STRING, The domain of the endpoint.",
"MACAddress": "STRING, The MAC address of the endpoint.",
"Hostname": "STRING, The endpoint's hostname.",
"ID": "STRING, The endpoint's ID.",
"IPAddress": "STRING, The endpoint's IP address.",
"Domain": "STRING, The endpoint's domain.",
"MACAddress": "STRING, The endpoint's MAC address.",
"DHCPServer": "STRING, The DHCP server of the endpoint.",
"OS": "STRING, Endpoint OS.",
"OSVersion": "STRING, OS version.",
"BIOSVersion": "STRING, BIOS version.",
"OS": "STRING, The endpoint's operation system.",
"OSVersion": "STRING, The endpoint's operation system version.",
"BIOSVersion": "STRING, The endpoint's BIOS version.",
"Model": "STRING, The model of the machine or device.",
"Memory": "INT, Memory on this endpoint.",
"Processors": "INT, The number of processors.",
"Processor": "STRING, The model of the processor.",
"IsIsolated": "BOOLEAN, Whether this endpoint isolated or not."
"IsIsolated": "STRING, The endpoint's isolation status.",
"Status": "STRING, The endpoint's status.",
"Vendor": "STRING, The integration name of the endpoint vendor.",

}
```

**In YAML**
```yaml

outputs:
- contextPath: Endpoint.Hostname
description: The endpoint's hostname.
type: String
- contextPath: Endpoint.OS
description: The endpoint's operation system.
type: String
- contextPath: Endpoint.IPAddress
description: The endpoint's IP address.
type: String
- contextPath: Endpoint.ID
description: The endpoint's ID.
type: String
- contextPath: Endpoint.Status
description: The endpoint's status.
type: String
- contextPath: Endpoint.IsIsolated
description: The endpoint's isolation status.
type: String
- contextPath: Endpoint.MACAddress
description: The endpoint's MAC address.
type: String
- contextPath: Endpoint.Vendor
description: The integration name of the endpoint vendor.
type: String
- contextPath: Endpoint.Domain
description: The endpoint's domain.
type: String
- contextPath: Endpoint.DHCPServer
description: The DHCP server of the endpoint.
type: String
- contextPath: Endpoint.OSVersion
description: The endpoint's operation system version.
type: String
- contextPath: Endpoint.BIOSVersion
description: The endpoint's BIOS version.
type: String
- contextPath: Endpoint.Model
description: The model of the machine or device.
type: String
- contextPath: Endpoint.Memory
description: Memory on this endpoint.
type: Int
- contextPath: Endpoint.Processors
description: The number of processors.
type: Int
- contextPath: Endpoint.Processor
description: The model of the processor.
type: String
```
## Email Object
Expand Down

0 comments on commit df5198e

Please sign in to comment.