Interface IInsightMonitoredMediaServers
- Namespace
- Meraki.Api.Interfaces.Products.Insight
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface IInsightMonitoredMediaServers
Methods
CreateOrganizationInsightMonitoredMediaServerAsync(string, InsightMonitoredMediaServerCreationRequest, CancellationToken)
Add a media server to be monitored for this organization
[Post("/organizations/{organizationId}/insight/monitoredMediaServers")]
Task<InsightMonitoredMediaServer> CreateOrganizationInsightMonitoredMediaServerAsync(string organizationId, InsightMonitoredMediaServerCreationRequest createOrganizationInsightMonitoredMediaServer, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
createOrganizationInsightMonitoredMediaServer
InsightMonitoredMediaServerCreationRequestBody for adding a media server
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteOrganizationInsightMonitoredMediaServerAsync(string, string, CancellationToken)
Delete a monitored media server from this organization
[Delete("/organizations/{organizationId}/insight/monitoredMediaServers/{monitoredMediaServerId}")]
Task DeleteOrganizationInsightMonitoredMediaServerAsync(string organizationId, string monitoredMediaServerId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
monitoredMediaServerId
stringThe monitored media server id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationInsightMonitoredMediaServerAsync(string, string, CancellationToken)
Return a monitored media server for this organization
[Get("/organizations/{organizationId}/insight/monitoredMediaServers/{monitoredMediaServerId}")]
Task<InsightMonitoredMediaServer> GetOrganizationInsightMonitoredMediaServerAsync(string organizationId, string monitoredMediaServerId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
monitoredMediaServerId
stringThe monitored media server id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationInsightMonitoredMediaServersAsync(string, CancellationToken)
List the monitored media servers for this organization
[Get("/organizations/{organizationId}/insight/monitoredMediaServers")]
Task<List<InsightMonitoredMediaServer>> GetOrganizationInsightMonitoredMediaServersAsync(string organizationId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateOrganizationInsightMonitoredMediaServerAsync(string, string, InsightMonitoredMediaServerUpdateRequest, CancellationToken)
Update a monitored media server for this organization
[Put("/organizations/{organizationId}/insight/monitoredMediaServers/{monitoredMediaServerId}")]
Task<InsightMonitoredMediaServer> UpdateOrganizationInsightMonitoredMediaServerAsync(string organizationId, string monitoredMediaServerId, InsightMonitoredMediaServerUpdateRequest updateOrganizationInsightMonitoredMediaServer, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
monitoredMediaServerId
stringThe monitored media server id
updateOrganizationInsightMonitoredMediaServer
InsightMonitoredMediaServerUpdateRequestBody for updating a monitored media server
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call