Exemplo n.º 1
0
 /// <summary>
 /// Lists the models within this dataset.
 /// This method just creates a <see cref="DatasetReference"/> and delegates to <see cref="BigQueryClient.ListModels(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>A sequence of models within this dataset.</returns>
 public PagedEnumerable <ListModelsResponse, BigQueryModel> ListModels(ListModelsOptions options = null) =>
 _client.ListModels(Reference, options);