Source code for azure.mgmt.automation.models.azure_query_properties_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 AzureQueryProperties(Model): """Azure query for the update configuration. :param scope: List of Subscription or Resource Group ARM Ids. :type scope: list[str] :param locations: List of locations to scope the query to. :type locations: list[str] :param tag_settings: Tag settings for the VM. :type tag_settings: ~azure.mgmt.automation.models.TagSettingsProperties """ _attribute_map = { 'scope': {'key': 'scope', 'type': '[str]'}, 'locations': {'key': 'locations', 'type': '[str]'}, 'tag_settings': {'key': 'tagSettings', 'type': 'TagSettingsProperties'}, } def __init__(self, *, scope=None, locations=None, tag_settings=None, **kwargs) -> None: super(AzureQueryProperties, self).__init__(**kwargs) self.scope = scope self.locations = locations self.tag_settings = tag_settings