getAccountSettings method

Future<GetAccountSettingsOutput> getAccountSettings()

Retrieves the current status of optional features in Resource Groups.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw MethodNotAllowedException. May throw TooManyRequestsException.

Implementation

Future<GetAccountSettingsOutput> getAccountSettings() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/get-account-settings',
    exceptionFnMap: _exceptionFns,
  );
  return GetAccountSettingsOutput.fromJson(response);
}