PurviewGlossaries.DeleteTermAssignmentFromEntities Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delete the term assignment for the given list of related objects.
public virtual Azure.Response DeleteTermAssignmentFromEntities (string termGuid, Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member DeleteTermAssignmentFromEntities : string * Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
override this.DeleteTermAssignmentFromEntities : string * Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteTermAssignmentFromEntities (termGuid As String, content As RequestContent, Optional context As RequestContext = Nothing) As Response
Parameters
- termGuid
- String
The globally unique identifier for glossary term.
- content
- RequestContent
The content to send as the body of the request.
- context
- RequestContext
The request context, which can override default behaviors on the request on a per-call basis.
Returns
Exceptions
termGuid
or content
is null.
termGuid
is an empty string, and was expected to be non-empty.
Remarks
Schema for Request Body
:
{
guid: string,
typeName: string,
uniqueAttributes: Dictionary<string, AnyObject>,
displayText: string,
entityStatus: "ACTIVE" | "DELETED",
relationshipType: string,
relationshipAttributes: {
attributes: Dictionary<string, AnyObject>,
typeName: string,
lastModifiedTS: string
},
relationshipGuid: string,
relationshipStatus: "ACTIVE" | "DELETED"
}
Schema for Response Error
:
{
requestId: string,
errorCode: string,
errorMessage: string
}