How to use the azure-iot-hub.azure.iot.hub.protocol.iot_hub_gateway_service_ap_is20190701_preview.IotHubGatewayServiceAPIs20190701Preview 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 / digital_twin_service_client.py View on Github external
def __init__(self, connection_string):
        """Initializer for a Digital Twin Service client.

        After a successful creation the class has been authenticated with IoTHub and
        it is ready to call the member APIs to communicate with IoTHub.

        :param: str connection_string: The authentication information
        (IoTHub connection string) to connect to IoTHub.

        :returns: DigitalTwinServiceClient object.
        """
        self.auth = ConnectionStringAuthentication(connection_string)
        self.protocol = protocol_client(self.auth, "https://" + self.auth["HostName"])