1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# 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 msrest.serialization import Model
class EventRequestMessage(Model):
"""The event request message sent to the service URI.
:param content: The content of the event request message.
:type content:
~azure.mgmt.containerregistry.v2018_09_01.models.EventContent
:param headers: The headers of the event request message.
:type headers: dict[str, str]
:param method: The HTTP method used to send the event request message.
:type method: str
:param request_uri: The URI used to send the event request message.
:type request_uri: str
:param version: The HTTP message version.
:type version: str
"""
_attribute_map = {
'content': {'key': 'content', 'type': 'EventContent'},
'headers': {'key': 'headers', 'type': '{str}'},
'method': {'key': 'method', 'type': 'str'},
'request_uri': {'key': 'requestUri', 'type': 'str'},
'version': {'key': 'version', 'type': 'str'},
}
def __init__(self, **kwargs):
super(EventRequestMessage, self).__init__(**kwargs)
self.content = kwargs.get('content', None)
self.headers = kwargs.get('headers', None)
self.method = kwargs.get('method', None)
self.request_uri = kwargs.get('request_uri', None)
self.version = kwargs.get('version', None)
|