Source code for azure.mgmt.resource.resources.v2016_09_01.models.resource_group_filter_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 ResourceGroupFilter(Model): """Resource group filter. :param tag_name: The tag name. :type tag_name: str :param tag_value: The tag value. :type tag_value: str """ _attribute_map = { 'tag_name': {'key': 'tagName', 'type': 'str'}, 'tag_value': {'key': 'tagValue', 'type': 'str'}, } def __init__(self, *, tag_name: str=None, tag_value: str=None, **kwargs) -> None: super(ResourceGroupFilter, self).__init__(**kwargs) self.tag_name = tag_name self.tag_value = tag_value