diff --git a/src/table.ts b/src/table.ts index f1efadc0..f6ac9ac6 100644 --- a/src/table.ts +++ b/src/table.ts @@ -560,9 +560,10 @@ class Table extends common.ServiceObject { * * @param {Table} destination The destination table. * @param {object} [metadata] Metadata to set with the copy operation. The - * metadata object should be in the format of the - * [`configuration.copy`](http://goo.gl/dKWIyS) property of a Jobs - * resource. + * metadata object should be in the format of a + * [`JobConfigurationTableCopy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy) + * object. + * object. * @param {string} [metadata.jobId] Custom id for the underlying job. * @param {string} [metadata.jobPrefix] Prefix to apply to the underlying job * id. @@ -584,9 +585,8 @@ class Table extends common.ServiceObject { * table.copy(yourTable, (err, apiResponse) => {}); * * //- - * // See the `configuration.copy` object - * for - * // all available options. + * // See https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy + * // for all available options. * //- * const metadata = { * createDisposition: 'CREATE_NEVER', @@ -643,9 +643,9 @@ class Table extends common.ServiceObject { * @param {Table|Table[]} sourceTables The * source table(s) to copy data from. * @param {object=} metadata Metadata to set with the copy operation. The - * metadata object should be in the format of the - * [`configuration.copy`](http://goo.gl/dKWIyS) property of a Jobs - * resource. + * metadata object should be in the format of a + * [`JobConfigurationTableCopy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy) + * object. * @param {string} [metadata.jobId] Custom id for the underlying job. * @param {string} [metadata.jobPrefix] Prefix to apply to the underlying job * id. @@ -670,9 +670,8 @@ class Table extends common.ServiceObject { * table.copyFrom(sourceTables, (err, apiResponse) => {}); * * //- - * // See the `configuration.copy` object - * for - * // all available options. + * // See https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy + * // for all available options. * //- * const metadata = { * createDisposition: 'CREATE_NEVER', @@ -725,9 +724,9 @@ class Table extends common.ServiceObject { * * @param {Table} destination The destination table. * @param {object} [metadata] Metadata to set with the copy operation. The - * metadata object should be in the format of the - * [`configuration.copy`](http://goo.gl/dKWIyS) property of a Jobs - * resource. + * metadata object should be in the format of a + * [`JobConfigurationTableCopy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy) + * object. * @param {string} [metadata.jobId] Custom job id. * @param {string} [metadata.jobPrefix] Prefix to apply to the job id. * @param {function} [callback] The callback function. @@ -751,9 +750,8 @@ class Table extends common.ServiceObject { * }); * * //- - * // See the `configuration.copy` object - * for - * // all available options. + * // See https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy + * // for all available options. * //- * const metadata = { * createDisposition: 'CREATE_NEVER', @@ -838,9 +836,9 @@ class Table extends common.ServiceObject { * @param {Table|Table[]} sourceTables The * source table(s) to copy data from. * @param {object} [metadata] Metadata to set with the copy operation. The - * metadata object should be in the format of the - * [`configuration.copy`](http://goo.gl/dKWIyS) property of a Jobs - * resource. + * metadata object should be in the format of a + * [`JobConfigurationTableCopy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy) + * object. * @param {string} [metadata.jobId] Custom job id. * @param {string} [metadata.jobPrefix] Prefix to apply to the job id. * @param {function} [callback] The callback function. @@ -870,9 +868,8 @@ class Table extends common.ServiceObject { * table.createCopyFromJob(sourceTables, callback); * * //- - * // See the `configuration.copy` object - * for - * // all available options. + * // See https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy + * // for all available options. * //- * const metadata = { * createDisposition: 'CREATE_NEVER',