filter[groups]=app,host. (optional)
* @return EstimateMetricsOutputSeriesOptionalParameters
*/
public EstimateMetricsOutputSeriesOptionalParameters filterGroups(String filterGroups) {
@@ -1670,10 +1671,12 @@ public ListTagConfigurationsOptionalParameters filterQueried(Boolean filterQueri
/**
* Set filterQueriedWindowSeconds.
*
- * @param filterQueriedWindowSeconds Only return metrics that have been queried or not queried
- * in the specified window. Dependent on being sent with filter[queried]. The
- * default value is 2,592,000 seconds (30 days), the maximum value is 15,552,000 seconds
- * (180 days), and the minimum value is 1 second. (optional, default to 2592000)
+ * @param filterQueriedWindowSeconds This parameter has no effect unless filter[queried]
+ * is also set. Only return metrics that have been queried or not queried in the
+ * specified window. The default value is 2,592,000 seconds (30 days), the maximum value is
+ * 15,552,000 seconds (180 days), and the minimum value is 1 second. For example:
+ * filter[queried]=true&filter[queried][window][seconds]=604800. (optional,
+ * default to 2592000)
* @return ListTagConfigurationsOptionalParameters
*/
public ListTagConfigurationsOptionalParameters filterQueriedWindowSeconds(
@@ -1686,7 +1689,8 @@ public ListTagConfigurationsOptionalParameters filterQueriedWindowSeconds(
* Set filterTags.
*
* @param filterTags Only return metrics that were submitted with tags matching this expression.
- * You can use AND, OR, IN, and wildcards (for example, service:web*). (optional)
+ * You can use AND, OR, IN, and wildcards. For example:
+ * filter[tags]=env IN (staging,test) AND service:web*. (optional)
* @return ListTagConfigurationsOptionalParameters
*/
public ListTagConfigurationsOptionalParameters filterTags(String filterTags) {
@@ -1723,8 +1727,10 @@ public ListTagConfigurationsOptionalParameters windowSeconds(Long windowSeconds)
/**
* Set pageSize.
*
- * @param pageSize Maximum number of results per page. Use with page[cursor] for
- * pagination. The default value is 10000, the maximum value is 10000, and the minimum value
+ * @param pageSize Maximum number of results per page. Send page[size] on the first
+ * request to opt in to pagination. On each subsequent request, send page[cursor]
+ * set to the value of meta.pagination.next_cursor from the previous
+ * response. The default value is 10000, the maximum value is 10000, and the minimum value
* is 1. (optional, default to 10000)
* @return ListTagConfigurationsOptionalParameters
*/
@@ -1867,6 +1873,11 @@ public PaginationIterablepage[cursor] and page[size] query parameters.
*
+ * Query parameters use bracket notation (for example, filter[tags],
+ * filter[queried][window][seconds]). Pass them as standard URL query strings, URL-encoding
+ * the brackets if your client does not handle them. For example:
+ * GET /api/v2/metrics?filter[tags]=env:prod&window[seconds]=86400&page[size]=500.
+ *
* @param parameters Optional parameters for the request.
* @return ApiResponse<MetricsAndMetricTagConfigurationsResponse>
* @throws ApiException if fails to make API call