The following API modules calls are available for the MQTT Distributor Module and can be executed within any of the available Ignition Designer Script Console scopes.
...
system.cirruslink.distributor.createConfig(type, props) → void
ParametersString typeMap propsDictionary of properties making up the configuration with the following keys and datatypes:UsersId (long)Username (str)Password (str)ACLs (str)
Return ValueNoneA map representing the newly created configuration after it has been written to the database. (added 4.0.16)
system.cirruslink.distributor.readConfig(type) → List
ParametersReturn ValueA List of Dictionaries of properties making up the configurations with the following keys and datatypes:
General
Id (long)Enabled (bool)EnableTCP (bool)Port (int)EnableWebsocket (bool)WebsocketPort (int)EnableTLS (bool)SecurePort (int)EnableSecureWebsocket (bool)SecureWebsocketPort (int)AllowAnonymousConnections (bool)
Users
Id (long)Username (str)Password (str)ACLs (str)
system.cirruslink.distributor.updateConfig(type, id, collisionPolicy, props) → voidParametersString typeLong idThe ID of the record to update
String collisionPolicyEither "MergeOverwrite" or "Overwrite""MergeOverwrite" will replace the existing properties in the record ID with only those included in the call"Overwrite" will replace all properties in the record ID with those in the call
Map propsDictionary of properties making up the configuration with the following keys and datatypes:General
Id (long)Enabled (bool)EnableTCP (bool)Port (int)EnableWebsocket (bool)WebsocketPort (int)EnableTLS (bool)SecurePort (int)EnableSecureWebsocket (bool)SecureWebsocketPort (int)AllowAnonymousConnections (bool)
Users
Id (long)Username (str)Password (str)ACLs (str)
Return ValueNoneA map representing the updated configuration after it has been written to the database. (added 4.0.16)
system.cirruslink.distributor.deleteConfig(type, id) → void
ParametersString typeLong idThe ID of the record to delete
Return ValueNoneTrue if the record was successfully deleted otherwise False is returned (added 4.0.16)