resolveProjectDeletionGuard method

Future<StatusResponse> resolveProjectDeletionGuard(
  1. String projectId,
  2. String guardId
)
inherited

Implementation

Future<StatusResponse> resolveProjectDeletionGuard(
  String projectId,
  String guardId,
) {
  return stub.resolveProjectDeletionGuard(
    ResolveProjectDeletionGuardRequest()
      ..projectId = projectId
      ..guardId = guardId,
    options: callOptions,
  );
}