smsAuthenticationMethodConfiguration resource type

Namespace: microsoft.graph

Represents a text message authentication methods policy. Authentication methods policies define configuration settings and users or groups that are enabled to use the authentication method.

Inherits from authenticationMethodConfiguration.

Methods

Method Return type Description
Get smsAuthenticationMethodConfiguration Read the properties and relationships of an smsAuthenticationMethodConfiguration object.
Update None Update the properties of an smsAuthenticationMethodConfiguration object.
Delete None Reverts the smsAuthenticationMethodConfiguration object to its default configuration.

Properties

Property Type Description
excludeTargets excludeTarget collection Groups of users that are excluded from the policy.
id String The authentication method policy identifier.
state authenticationMethodState Possible values are: enabled, disabled.

Relationships

Relationship Type Description
includeTargets smsAuthenticationMethodTarget collection A collection of groups that are enabled to use the authentication method.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.smsAuthenticationMethodConfiguration",
  "id": "String (identifier)",
  "state": "String",
  "excludeTargets": [
    {
      "@odata.type": "microsoft.graph.excludeTarget"
    }
  ]
}