processors/computeengine.py [398:411]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    snapshot_response = snapshot_request.execute()
                    if 'items' in snapshot_response:
                        for snapshot in snapshot_response['items']:
                            if re.match(snapshot_name, snapshot['name']):
                                matching_snapshots.append(snapshot)
                    if 'nextPageToken' in snapshot_response:
                        page_token = snapshot_response['nextPageToken']
                    else:
                        break
                if len(matching_snapshots) > max_snapshots:
                    matching_snapshots.sort(
                        key=lambda item: item['creationTimestamp'],
                        reverse=True)
                    for snapshot in matching_snapshots[max_snapshots:]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



processors/computeengine.py [496:509]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    snapshot_response = snapshot_request.execute()
                    if 'items' in snapshot_response:
                        for snapshot in snapshot_response['items']:
                            if re.match(snapshot_name, snapshot['name']):
                                matching_snapshots.append(snapshot)
                    if 'nextPageToken' in snapshot_response:
                        page_token = snapshot_response['nextPageToken']
                    else:
                        break
                if len(matching_snapshots) > max_snapshots:
                    matching_snapshots.sort(
                        key=lambda item: item['creationTimestamp'],
                        reverse=True)
                    for snapshot in matching_snapshots[max_snapshots:]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



