Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, connection_string):
"""Initializer for a Registry Manager 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: IoTHubRegistryManager object.
"""
self.auth = ConnectionStringAuthentication(connection_string)
self.protocol = protocol_client(self.auth, "https://" + self.auth["HostName"])
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"])
def __init__(self, connection_string):
"""Initializer for a Registry Manager 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 IoTHub connection string used to authenticate connection
with IoTHub.
:returns: Instance of the IoTHubRegistryManager object.
:rtype: :class:`azure.iot.hub.IoTHubRegistryManager`
"""
self.auth = ConnectionStringAuthentication(connection_string)
self.protocol = protocol_client(self.auth, "https://" + self.auth["HostName"])