Interface IApplianceRfProfiles
- Namespace
- Meraki.Api.Interfaces.Products.Appliance
- Assembly
- Meraki.Api.dll
public interface IApplianceRfProfiles
Methods
CreateNetworkApplianceRfProfile(string, NetworkApplianceRfProfileCreateUpdate, CancellationToken)
Creates new RF profile for this network
[Post("/networks/{networkId}/appliance/rfProfiles")]
Task<NetworkApplianceRfProfile> CreateNetworkApplianceRfProfile(string networkId, NetworkApplianceRfProfileCreateUpdate networkApplianceRfProfileCreateUpdate, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
networkApplianceRfProfileCreateUpdate
NetworkApplianceRfProfileCreateUpdateThe RF Propfile update request
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkApplianceRfProfile(string, string, CancellationToken)
Delete a RF Profile
[Delete("/networks/{networkId}/appliance/rfProfiles/{rfProfileId}")]
Task DeleteNetworkApplianceRfProfile(string networkId, string rfProfileId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
rfProfileId
stringThe rf Profile id
cancellationToken
CancellationToken
Returns
GetNetworkApplianceRfProfile(string, string, CancellationToken)
Return a RF profile
[Get("/networks/{networkId}/appliance/rfProfiles/{rfProfileId}")]
Task<NetworkApplianceRfProfile> GetNetworkApplianceRfProfile(string networkId, string rfProfileId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
rfProfileId
stringRf profile ID
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkApplianceRfProfiles(string, CancellationToken)
List the RF profiles for this network
[Get("/networks/{networkId}/appliance/rfProfiles")]
Task<NetworkApplianceRfProfiles> GetNetworkApplianceRfProfiles(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkApplianceRfProfile(string, string, NetworkApplianceRfProfileCreateUpdate, CancellationToken)
Updates specified RF profile for this network
[Put("/networks/{networkId}/appliance/rfProfiles/{rfProfileId}")]
Task<NetworkApplianceRfProfile> UpdateNetworkApplianceRfProfile(string networkId, string rfProfileId, NetworkApplianceRfProfileCreateUpdate networkApplianceRfProfileCreateUpdate, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
rfProfileId
stringRf Profile ID
networkApplianceRfProfileCreateUpdate
NetworkApplianceRfProfileCreateUpdateThe RF Propfile update request
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call