diagnosticsGet method

Future<void> diagnosticsGet(
  1. String region, {
  2. String dollarExpand,
  3. String dollarFilter,
  4. String dollarSelect,
  5. String dollarOrderby,
  6. int dollarTop,
  7. int dollarSkip,
  8. bool dollarCount,
})

Returns the EntitySet Diagnostics

Summary:Returns the EntitySet Diagnostics.
Return Type:

Parameters:

  • String region (required): The data center region the data resides in

  • String dollarExpand: Expands related entities inline.

  • String dollarFilter: Filters the results, based on a Boolean condition.

  • String dollarSelect: Selects which properties to include in the response.

  • String dollarOrderby: Sorts the results.

  • int dollarTop: Returns only the first n results.

  • int dollarSkip: Skips the first n results.

  • bool dollarCount: Includes a count of the matching results in the response.

Implementation

Future<void> diagnosticsGet(String region, { String dollarExpand, String dollarFilter, String dollarSelect, String dollarOrderby, int dollarTop, int dollarSkip, bool dollarCount, }) async {
  final response = await diagnosticsGetWithHttpInfo(region,  dollarExpand: dollarExpand, dollarFilter: dollarFilter, dollarSelect: dollarSelect, dollarOrderby: dollarOrderby, dollarTop: dollarTop, dollarSkip: dollarSkip, dollarCount: dollarCount, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}