public interface ViewsService
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<View> |
getDashboardsIDCellsIDView(String dashboardID,
String cellID,
String zapTraceSpan)
Retrieve the view for a cell
|
retrofit2.Call<View> |
patchDashboardsIDCellsIDView(String dashboardID,
String cellID,
View view,
String zapTraceSpan)
Update the view for a cell
|
@GET(value="api/v2/dashboards/{dashboardID}/cells/{cellID}/view")
retrofit2.Call<View> getDashboardsIDCellsIDView(@Path(value="dashboardID")
String dashboardID,
@Path(value="cellID")
String cellID,
@Header(value="Zap-Trace-Span")
String zapTraceSpan)
dashboardID - The dashboard ID. (required)cellID - The cell ID. (required)zapTraceSpan - OpenTracing span context (optional)@Headers(value="Content-Type:application/json")
@PATCH(value="api/v2/dashboards/{dashboardID}/cells/{cellID}/view")
retrofit2.Call<View> patchDashboardsIDCellsIDView(@Path(value="dashboardID")
String dashboardID,
@Path(value="cellID")
String cellID,
@Body
View view,
@Header(value="Zap-Trace-Span")
String zapTraceSpan)
dashboardID - The ID of the dashboard to update. (required)cellID - The ID of the cell to update. (required)view - (required)zapTraceSpan - OpenTracing span context (optional)Copyright © 2018–2023 InfluxData, Inc.. All rights reserved.