Source code for azure.mgmt.eventgrid.models.event_type_py3

# 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 .resource_py3 import Resource


[docs]class EventType(Resource): """Event Type for a subject under a topic. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified identifier of the resource. :vartype id: str :ivar name: Name of the resource. :vartype name: str :ivar type: Type of the resource. :vartype type: str :param display_name: Display name of the event type. :type display_name: str :param description: Description of the event type. :type description: str :param schema_url: Url of the schema for this event type. :type schema_url: str :param is_in_default_set: IsInDefaultSet flag of the event type. :type is_in_default_set: bool """ _validation = { 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'display_name': {'key': 'properties.displayName', 'type': 'str'}, 'description': {'key': 'properties.description', 'type': 'str'}, 'schema_url': {'key': 'properties.schemaUrl', 'type': 'str'}, 'is_in_default_set': {'key': 'properties.isInDefaultSet', 'type': 'bool'}, } def __init__(self, *, display_name: str=None, description: str=None, schema_url: str=None, is_in_default_set: bool=None, **kwargs) -> None: super(EventType, self).__init__(**kwargs) self.display_name = display_name self.description = description self.schema_url = schema_url self.is_in_default_set = is_in_default_set