Edit

verifiableCredentialsAuthenticationMethodConfiguration 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.

Represents a Verifiable Credential authentication methods policy. Authentication methods policies define configuration settings and users or groups who are enabled to use the authentication method.

Inherits from authenticationMethodConfiguration.

Methods

Method Return type Description
List verifiableCredentialsAuthenticationMethodConfiguration collection Get a list of the verifiableCredentialsAuthenticationMethodConfiguration objects and their properties.
Get verifiableCredentialsAuthenticationMethodConfiguration Read the properties and relationships of verifiableCredentialsAuthenticationMethodConfiguration object.
Update verifiableCredentialsAuthenticationMethodConfiguration Update the properties of a verifiableCredentialsAuthenticationMethodConfiguration object.
Delete None Delete a verifiableCredentialsAuthenticationMethodConfiguration object.

Properties

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

Relationships

Relationship Type Description
includeTargets verifiableCredentialAuthenticationMethodTarget 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.verifiableCredentialsAuthenticationMethodConfiguration",
  "id": "String (identifier)",
  "state": "String",
  "excludeTargets": [
    {
      "@odata.type": "microsoft.graph.excludeTarget"
    }
  ]
}