getV2LoggingOptions method

Future<GetV2LoggingOptionsResponse> getV2LoggingOptions()

Gets the fine grained logging options.

May throw InternalException. May throw NotConfiguredException. May throw ServiceUnavailableException.

Implementation

Future<GetV2LoggingOptionsResponse> getV2LoggingOptions() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v2LoggingOptions',
    exceptionFnMap: _exceptionFns,
  );
  return GetV2LoggingOptionsResponse.fromJson(response);
}