fileHash resource type
Namespace: microsoft.graph.security
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a file hash value that is reported as part of a security detection alert, usually in relation to a file entity instance.
Properties
Property | Type | Description |
---|---|---|
algorithm | microsoft.graph.security.fileHashAlgorithm | The hash algorithm type. Possible values are: unknown , md5 , sha1 , sha256 , sha256ac , unknownFutureValue . |
value | String | The hash value. |
fileHashAlgorithm values
Member | Description |
---|---|
unknown | Unknown hash algorithm that is used mostly for forward compatibility. |
md5 | MD5 hash type. |
sha1 | SHA1 hash type. |
sha256 | SHA256 hash type. |
sha256ac | SHA256 authenticode hash type. |
unknownFutureValue | Evolvable enumeration sentinel value. Don't use. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.fileHash",
"algorithm": "String",
"value": "String"
}