azext_edge/edge/providers/edge_api/__init__.py (34 lines of code) (raw):

# coding=utf-8 # ---------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License file in the project root for license information. # ---------------------------------------------------------------------------------------------- from .base import EdgeResourceApi, EdgeApiManager from .certmanager import CERTMANAGER_API_V1, TRUSTMANAGER_API_V1 from .clusterconfig import CLUSTER_CONFIG_API_V1 from .mq import MQ_ACTIVE_API, MQTT_BROKER_API_V1, MqResourceKinds from .keyvault import KEYVAULT_API_V1, KeyVaultResourceKinds from .deviceregistry import DEVICEREGISTRY_API_V1, DeviceRegistryResourceKinds from .dataflow import DATAFLOW_API_V1, DataflowResourceKinds from .meta import META_API_V1, MetaResourceKinds from .arccontainerstorage import ARCCONTAINERSTORAGE_API_V1, CONTAINERSTORAGE_API_V1 from .secretstore import SECRETSYNC_API_V1, SECRETSTORE_API_V1 from .azuremonitor import AZUREMONITOR_API_V1 __all__ = [ "ARCCONTAINERSTORAGE_API_V1", "AZUREMONITOR_API_V1", "CERTMANAGER_API_V1", "CLUSTER_CONFIG_API_V1", "CONTAINERSTORAGE_API_V1", "EdgeResourceApi", "EdgeApiManager", "MqResourceKinds", "MQ_ACTIVE_API", "MQTT_BROKER_API_V1", "KeyVaultResourceKinds", "KEYVAULT_API_V1", "DeviceRegistryResourceKinds", "DEVICEREGISTRY_API_V1", "DATAFLOW_API_V1", "DataflowResourceKinds", "META_API_V1", "MetaResourceKinds", "SECRETSYNC_API_V1", "SECRETSTORE_API_V1", "TRUSTMANAGER_API_V1", ]