adminUpdateSchema method

Future<void> adminUpdateSchema(
  1. String region
)

Updates the Database schemas to the latest version

Summary:Updates the Database schemas to the latest version.
This can only be used by users in the Flex Superuser role.
Return Type:

Parameters:

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

Implementation

Future<void> adminUpdateSchema(String region,) async {
  final response = await adminUpdateSchemaWithHttpInfo(region,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}