Interface INetworksMqttBrokers
- Namespace
- Meraki.Api.Interfaces.General.Networks
- Assembly
- Meraki.Api.dll
Admins interface
public interface INetworksMqttBrokers
Methods
CreateNetworkMqttBrokerAsync(string, MqttBrokerCreateUpdateRequest, CancellationToken)
Add an MQTT broker
[Post("/networks/{networkId}/mqttBrokers")]
Task<MqttBroker> CreateNetworkMqttBrokerAsync(string networkId, MqttBrokerCreateUpdateRequest createNetworkMqttBroker, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
createNetworkMqttBroker
MqttBrokerCreateUpdateRequestBody for adding an MQTT broker
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkMqttBrokerAsync(string, string, CancellationToken)
Delete an MQTT broker
[Delete("/networks/{networkId}/mqttBrokers/{mqttBrokerId}")]
Task DeleteNetworkMqttBrokerAsync(string networkId, string mqttBrokerId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
mqttBrokerId
stringThe MQTT broker id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkMqttBrokerAsync(string, string, CancellationToken)
Return an MQTT broker
[Get("/networks/{networkId}/mqttBrokers/{mqttBrokerId}")]
Task<MqttBroker> GetNetworkMqttBrokerAsync(string networkId, string mqttBrokerId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
mqttBrokerId
stringThe MQTT broker id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkMqttBrokersAsync(string, CancellationToken)
List the MQTT brokers for this network
[Get("/networks/{networkId}/mqttBrokers")]
Task<List<MqttBroker>> GetNetworkMqttBrokersAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkMqttBrokerAsync(string, string, MqttBrokerCreateUpdateRequest, CancellationToken)
Update an MQTT broker
[Put("/networks/{networkId}/mqttBrokers/{mqttBrokerId}")]
Task<MqttBroker> UpdateNetworkMqttBrokerAsync(string networkId, string mqttBrokerId, MqttBrokerCreateUpdateRequest updateNetworkMqttBroker, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
mqttBrokerId
stringThe MQTT broker id
updateNetworkMqttBroker
MqttBrokerCreateUpdateRequestBody for updating an MQTT broker
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call