create([ 'tenant_id' => 'tenant-a', 'external_id' => 'tenant-a', ]); /** @var BulkSelectionIdentity $selection */ $selection = app(BulkSelectionIdentity::class); $selectionIdentity = $selection->fromIds([1, 2, 3]); /** @var OperationRunService $runs */ $runs = app(OperationRunService::class); $runs->enqueueBulkOperation( tenant: $tenant, type: 'policy.bulk_delete', targetScope: ['entra_tenant_id' => 'tenant-b'], selectionIdentity: $selectionIdentity, dispatcher: fn (): null => null, initiator: null, extraContext: [], emitQueuedNotification: false, ); })->throws(InvalidArgumentException::class);