1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for license information.
5# Code generated by Microsoft (R) Python Code Generator.
6# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7# --------------------------------------------------------------------------
8# pylint: disable=wrong-import-position
9
10from typing import TYPE_CHECKING
11
12if TYPE_CHECKING:
13 from ._patch import * # pylint: disable=unused-wildcard-import
14
15from ._operations import Operations # type: ignore
16from ._operations import MonitoredSubscriptionsOperations # type: ignore
17from ._operations import TagRulesOperations # type: ignore
18from ._operations import MonitorsOperations # type: ignore
19from ._operations import SingleSignOnOperations # type: ignore
20from ._operations import CreationSupportedOperations # type: ignore
21
22from ._patch import __all__ as _patch_all
23from ._patch import *
24from ._patch import patch_sdk as _patch_sdk
25
26__all__ = [
27 "Operations",
28 "MonitoredSubscriptionsOperations",
29 "TagRulesOperations",
30 "MonitorsOperations",
31 "SingleSignOnOperations",
32 "CreationSupportedOperations",
33]
34__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
35_patch_sdk()