This question was a mistake, based on a misconception. Feel free to delete it, or leave it here in case someone else makes a similar mistake!
On a database I have set online rebuilding of some indices via a statement such as the following. My understanding is that the online rebuild setting is a permanent setting of an index i.e. it is not a one time operation. This is the misconception, a rebuild, regardless of how it is run, is a one time operation. Scheduling a regular cleaning is an entirely different topic
ALTER INDEX ALL ON REBUILD WITH (ONLINE = ON);
What I would now like to do is list which indexes do and do not currently have this setting - and I am having difficulty working out how.
So far I have looked at
- the properties of an index in SQL Server Management Studio
- the column names in the sys.indexes table