get_dashboards_paginated

Function get_dashboards_paginated 

Source
pub async fn get_dashboards_paginated(
    configuration: &Configuration,
    dashboard_name: Option<&str>,
    account_id: Option<&str>,
    owner: Option<&str>,
    groupname: Option<&str>,
    project_id: Option<i64>,
    order_by: Option<&str>,
    start_at: Option<i64>,
    max_results: Option<i32>,
    expand: Option<&str>,
) -> Result<PageBeanDashboard, Error<GetDashboardsPaginatedError>>
Expand description

Returns a paginated list of dashboards. This operation is similar to Get dashboards except that the results can be refined to include dashboards that have specific attributes. For example, dashboards with a particular name. When multiple attributes are specified only filters matching all attributes are returned. This operation can be accessed anonymously. Permissions required: The following dashboards that match the query parameters are returned: * Dashboards owned by the user. Not returned for anonymous users. * Dashboards shared with a group that the user is a member of. Not returned for anonymous users. * Dashboards shared with a private project that the user can browse. Not returned for anonymous users. * Dashboards shared with a public project. * Dashboards shared with the public.