Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
Represents the Shared Access Signature (SAS) token entity for a storage container.
Inherits from alertEvidence.
Properties
| Property | Type | Description |
|---|---|---|
| allowedIpAddresses | String | All IP addresses accessible with this SAS. The default value is Allows all IP addresses. |
| allowedResourceTypes | String collection | All resource types accessible with this SAS. |
| allowedServices | String collection | All services accessible with this SAS. |
| createdDateTime | DateTimeOffset | The date and time when the evidence was created and added to the alert. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2024 is 2024-01-01T00:00:00Z. Inherited from alertEvidence. |
| detailedRoles | String collection | Detailed description of the entity role or roles in an alert. Values are free-form. Inherited from alertEvidence. |
| expiryDateTime | DateTimeOffset | The SAS expiration time. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2024 is 2024-01-01T00:00:00Z. |
| permissions | String collection | All permissions granted to this SAS. |
| protocol | String | The protocol that is allowed with this SAS. |
| remediationStatus | microsoft.graph.security.evidenceRemediationStatus | Status of the remediation action taken. The possible values are: none, remediated, prevented, blocked, notFound, unknownFutureValue, active, pendingApproval, declined, unremediated, running, partiallyRemediated. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: active, pendingApproval, declined, unremediated, running, partiallyRemediated. Inherited from alertEvidence. |
| remediationStatusDetails | String | Details about the remediation status. Inherited from alertEvidence. |
| roles | microsoft.graph.security.evidenceRole collection | The role or roles that an evidence entity represents in an alert, for example, an IP address that is associated with an attacker has the evidence role Attacker. Inherited from alertEvidence. |
| signatureHash | String | The SAS signature hash, which is a unique identifier for each SAS. |
| signedWith | String | The storage key that was used to generate the SAS. |
| startDateTime | DateTimeOffset | The SAS activation time. This property can be null. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2024 is 2024-01-01T00:00:00Z. |
| storageResource | microsoft.graph.security.azureResourceEvidence | A link to the storage resource for this SAS. |
| tags | String collection | Array of custom tags associated with an evidence instance, for example, to denote a group of devices and high-value assets. Inherited from alertEvidence. |
| verdict | microsoft.graph.security.evidenceVerdict | The decision reached by automated investigation. The possible values are: unknown, suspicious, malicious, noThreatsFound, unknownFutureValue. Inherited from alertEvidence. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.sasTokenEvidence",
"createdDateTime": "String (timestamp)",
"verdict": "String",
"remediationStatus": "String",
"remediationStatusDetails": "String",
"roles": [
"String"
],
"detailedRoles": [
"String"
],
"tags": [
"String"
],
"signatureHash": "String",
"allowedServices": [
"String"
],
"allowedResourceTypes": [
"String"
],
"permissions": [
"String"
],
"startDateTime": "String (timestamp)",
"expiryDateTime": "String (timestamp)",
"allowedIpAddresses": "String",
"signedWith": "String",
"protocol": "String",
"storageResource": {
"@odata.type": "microsoft.graph.security.azureResourceEvidence"
}
}