Microsoft Graph · Schema
updateAllowedCombinationsResult
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| additionalInformation | string | Information about why the updateAllowedCombinations action was successful or failed. |
| conditionalAccessReferences | array | References to existing Conditional Access policies that use this authentication strength. |
| currentCombinations | array | The list of current authentication method combinations allowed by the authentication strength. |
| previousCombinations | array | The list of former authentication method combinations allowed by the authentication strength before they were updated through the updateAllowedCombinations action. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.updateAllowedCombinationsResult",
"title": "updateAllowedCombinationsResult",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"additionalInformation": {
"type": "string",
"description": "Information about why the updateAllowedCombinations action was successful or failed.",
"nullable": true
},
"conditionalAccessReferences": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "References to existing Conditional Access policies that use this authentication strength."
},
"currentCombinations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.authenticationMethodModes"
},
"description": "The list of current authentication method combinations allowed by the authentication strength."
},
"previousCombinations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.authenticationMethodModes"
},
"description": "The list of former authentication method combinations allowed by the authentication strength before they were updated through the updateAllowedCombinations action."
},
"@odata.type": {
"type": "string"
}
}
}