Class SearchIndexerDataUserAssignedIdentity
Specifies the identity for a datasource to use.
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class SearchIndexerDataUserAssignedIdentity : Azure.Search.Documents.Indexes.Models.SearchIndexerDataIdentity
Constructors
SearchIndexerDataUserAssignedIdentity(String)
Initializes a new instance of SearchIndexerDataUserAssignedIdentity.
Declaration
public SearchIndexerDataUserAssignedIdentity (string userAssignedIdentity);
Parameters
System.String
userAssignedIdentity
The fully qualified Azure resource Id of a user assigned managed identity typically in the form "/subscriptions/12345678-1234-1234-1234-1234567890ab/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId" that should have been assigned to the search service. |
Exceptions
System.ArgumentNullException
|
Properties
UserAssignedIdentity
The fully qualified Azure resource Id of a user assigned managed identity typically in the form "/subscriptions/12345678-1234-1234-1234-1234567890ab/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId" that should have been assigned to the search service.
Declaration
public string UserAssignedIdentity { get; set; }
Property Value
System.String
|