disableXpnResource method

  1. @override
Future<Operation> disableXpnResource(
  1. DisableXpnResourceProjectRequest request
)
override

Disable a service resource (also known as service project) associated with this host project.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<Operation> disableXpnResource(
  DisableXpnResourceProjectRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_disableXpnResource case final disableXpnResource?) {
    return disableXpnResource(request);
  }
  throw UnsupportedError('disableXpnResource');
}