Microsoft Graph · Schema
akamaiCustomRuleModel
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The action Akamai applies when the rule matches traffic. Common values include deny, none or alert. |
| name | string | Friendly name for the rule, used in UIs or logs to help administrators identify the rule (for example, 'Block suspicious user agents'). |
| ruleId | string | Unique identifier assigned to the rule by Akamai or the integration. Use this identifier to reference, update, or remove the rule in API requests. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.akamaiCustomRuleModel",
"title": "akamaiCustomRuleModel",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"action": {
"type": "string",
"description": "The action Akamai applies when the rule matches traffic. Common values include deny, none or alert.",
"nullable": true
},
"name": {
"type": "string",
"description": "Friendly name for the rule, used in UIs or logs to help administrators identify the rule (for example, 'Block suspicious user agents').",
"nullable": true
},
"ruleId": {
"type": "string",
"description": "Unique identifier assigned to the rule by Akamai or the integration. Use this identifier to reference, update, or remove the rule in API requests.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}