def dataSetCompletion(self): return Display.to_styled_class(self._dataSetCompletion, **self.options)
def completion_query_resource_consumption(self): return Display.to_styled_class( self._completion_query_resource_consumption, **self.options)
def raw_json(self): return Display.to_styled_class(self._json_response, **self.options)
def completion_query_info(self): return Display.to_styled_class(self._completion_query_info, **self.options)
def __getitem__(self, key): if isinstance(key, slice): s = self.row[key] return KqlRow(s, len(s), **self.kwargs) else: return Display.to_styled_class(self.row[key], **self.kwargs)