/// <summary>
 /// Asynchronously lists the models within this dataset.
 /// This method just creates a <see cref="DatasetReference"/> and delegates to <see cref="BigQueryClient.ListModelsAsync(DatasetReference, ListModelsOptions)"/>.
 /// </summary>
 /// <para>
 /// No network requests are made until the returned sequence is enumerated.
 /// This means that any exception due to an invalid request will be deferred until that time. Callers should be prepared
 /// for exceptions to be thrown while enumerating the results. In addition to failures due to invalid requests, network
 /// or service failures can cause exceptions even after the first results have been returned.
 /// </para>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>An asynchronous sequence of models within this dataset.</returns>
 public PagedAsyncEnumerable <ListModelsResponse, BigQueryModel> ListModelsAsync(ListModelsOptions options = null) =>
 _client.ListModelsAsync(Reference, options);