Table of Contents

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 string

The network id

networkApplianceRfProfileCreateUpdate NetworkApplianceRfProfileCreateUpdate

The RF Propfile update request

cancellationToken CancellationToken

Returns

Task<NetworkApplianceRfProfile>

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 string

The network id

rfProfileId string

The rf Profile id

cancellationToken CancellationToken

Returns

Task

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 string

The network id

rfProfileId string

Rf profile ID

cancellationToken CancellationToken

Returns

Task<NetworkApplianceRfProfile>

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 string

The network id

cancellationToken CancellationToken

Returns

Task<NetworkApplianceRfProfiles>

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 string

The network id

rfProfileId string

Rf Profile ID

networkApplianceRfProfileCreateUpdate NetworkApplianceRfProfileCreateUpdate

The RF Propfile update request

cancellationToken CancellationToken

Returns

Task<NetworkApplianceRfProfile>

Exceptions

ApiException

Thrown when fails to make API call