Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important: Microsoft supports Intune /beta APIs, but they are subject to more frequent change. Microsoft recommends using version v1.0 when possible. Check an API's availability in version v1.0 using the Version selector.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Represents a Credential-type Single Sign-On extension profile.
Inherits from singleSignOnExtension
Properties
Property | Type | Description |
---|---|---|
extensionIdentifier | String | Gets or sets the bundle ID of the app extension that performs SSO for the specified URLs. |
teamIdentifier | String | Gets or sets the team ID of the app extension that performs SSO for the specified URLs. |
domains | String collection | Gets or sets a list of hosts or domain names for which the app extension performs SSO. |
realm | String | Gets or sets the case-sensitive realm name for this profile. |
configurations | keyTypedValuePair collection | Gets or sets a list of typed key-value pairs used to configure Credential-type profiles. This collection can contain a maximum of 500 elements. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.credentialSingleSignOnExtension",
"extensionIdentifier": "String",
"teamIdentifier": "String",
"domains": [
"String"
],
"realm": "String",
"configurations": [
{
"@odata.type": "microsoft.graph.keyStringValuePair",
"key": "String",
"value": "String"
}
]
}