# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .model_info_py3 import ModelInfo
[docs]class EntityModelInfo(ModelInfo):
"""An Entity Extractor model info.
All required parameters must be populated in order to send to Azure.
:param id: Required. The ID of the Entity Model.
:type id: str
:param name: Name of the Entity Model.
:type name: str
:param type_id: The type ID of the Entity Model.
:type type_id: int
:param readable_type: Required. Possible values include: 'Entity
Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child Entity
Extractor', 'Composite Entity Extractor', 'Closed List Entity Extractor',
'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any Entity
Extractor', 'Regex Entity Extractor'
:type readable_type: str or
~azure.cognitiveservices.language.luis.authoring.models.enum
:param roles:
:type roles:
list[~azure.cognitiveservices.language.luis.authoring.models.EntityRole]
"""
_validation = {
'id': {'required': True},
'readable_type': {'required': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type_id': {'key': 'typeId', 'type': 'int'},
'readable_type': {'key': 'readableType', 'type': 'str'},
'roles': {'key': 'roles', 'type': '[EntityRole]'},
}
def __init__(self, *, id: str, readable_type, name: str=None, type_id: int=None, roles=None, **kwargs) -> None:
super(EntityModelInfo, self).__init__(id=id, name=name, type_id=type_id, readable_type=readable_type, **kwargs)
self.roles = roles