updateAllowedCombinationsResult resource type

Namespace: microsoft.graph

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.

The results of an attempt to update an authentication strength's allowedCombinations property.

Properties

Property Type Description
additionalInformation String Information about why the updateAllowedCombinations action was successful or failed.
conditionalAccessReferences String collection References to existing Conditional Access policies that use this authentication strength.
currentCombinations authenticationMethodModes collection The list of current authentication method combinations allowed by the authentication strength.
previousCombinations authenticationMethodModes collection The list of former authentication method combinations allowed by the authentication strength before they were updated through the updateAllowedCombinations action.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.updateAllowedCombinationsResult",
  "previousCombinations": [
    "String"
  ],
  "currentCombinations": [
    "String"
  ],
  "conditionalAccessReferences": [
    "String"
  ],
  "additionalInformation": "String"
}