How to use the azure-iot-hub.azure.iot.hub.protocol.version.VERSION function in azure-iot-hub

To help you get started, we’ve selected a few azure-iot-hub examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-iot-sdk-python / azure-iot-hub / azure / iot / hub / protocol / iot_hub_gateway_service_ap_is20190630.py View on Github external
def __init__(self, credentials, base_url=None):

        if credentials is None:
            raise ValueError("Parameter 'credentials' must not be None.")
        if not base_url:
            base_url = "https://fully-qualified-iothubname.azure-devices.net"

        super(IotHubGatewayServiceAPIs20190630Configuration, self).__init__(base_url)

        self.add_user_agent("iothubgatewayserviceapis20190630/{}".format(VERSION))

        self.credentials = credentials