Пример #1
0
 /// <summary>
 /// Creates a job to extract this model to Google Cloud Storage.
 /// See [the BigQuery documentation](https://cloud.google.com/bigquery-ml/docs/exporting-models) for more information on model extract jobs.
 /// This method just creates a <see cref="ModelReference"/> and delegates to <see cref="BigQueryClient.CreateModelExtractJob(ModelReference, string, CreateModelExtractJobOptions)"/>.
 /// </summary>
 /// <param name="destinationUri">The Google Cloud Storage URI (possibly including a wildcard) to extract the model to. Must not be null.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The job created for the extract operation.</returns>
 public BigQueryJob CreateModelExtractJob(string destinationUri, CreateModelExtractJobOptions options = null) =>
 _client.CreateModelExtractJob(Reference, destinationUri, options);