Source code for azure.mgmt.containerregistry.v2018_02_01_preview.models.build_task_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 BuildTaskFilter(Model): """The filter that can be used for listing build tasks. :param alias: The alternative name for build task. :type alias: str """ _attribute_map = { 'alias': {'key': 'alias', 'type': 'str'}, } def __init__(self, *, alias: str=None, **kwargs) -> None: super(BuildTaskFilter, self).__init__(**kwargs) self.alias = alias