Source code for azure.mgmt.automation.models.module_update_parameters_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 msrest.serialization import Model


[docs]class ModuleUpdateParameters(Model): """The parameters supplied to the update module operation. :param content_link: Gets or sets the module content link. :type content_link: ~azure.mgmt.automation.models.ContentLink :param name: Gets or sets name of the resource. :type name: str :param location: Gets or sets the location of the resource. :type location: str :param tags: Gets or sets the tags attached to the resource. :type tags: dict[str, str] """ _attribute_map = { 'content_link': {'key': 'properties.contentLink', 'type': 'ContentLink'}, 'name': {'key': 'name', 'type': 'str'}, 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, } def __init__(self, *, content_link=None, name: str=None, location: str=None, tags=None, **kwargs) -> None: super(ModuleUpdateParameters, self).__init__(**kwargs) self.content_link = content_link self.name = name self.location = location self.tags = tags