Skip to content

Commit

Permalink
fix(docs): configuration.copy link (#709)
Browse files Browse the repository at this point in the history
fix(docs): configuration.copy link
  • Loading branch information
laljikanjareeya committed Jun 2, 2020
1 parent 88f40a9 commit 4a81b1e
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions src/table.ts
Expand Up @@ -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.
Expand All @@ -584,9 +585,8 @@ class Table extends common.ServiceObject {
* table.copy(yourTable, (err, apiResponse) => {});
*
* //-
* // See the <a href="http://goo.gl/dKWIyS">`configuration.copy`</a> 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',
Expand Down Expand Up @@ -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.
Expand All @@ -670,9 +670,8 @@ class Table extends common.ServiceObject {
* table.copyFrom(sourceTables, (err, apiResponse) => {});
*
* //-
* // See the <a href="http://goo.gl/dKWIyS">`configuration.copy`</a> 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',
Expand Down Expand Up @@ -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.
Expand All @@ -751,9 +750,8 @@ class Table extends common.ServiceObject {
* });
*
* //-
* // See the <a href="http://goo.gl/dKWIyS">`configuration.copy`</a> 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',
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -870,9 +868,8 @@ class Table extends common.ServiceObject {
* table.createCopyFromJob(sourceTables, callback);
*
* //-
* // See the <a href="http://goo.gl/dKWIyS">`configuration.copy`</a> 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',
Expand Down

0 comments on commit 4a81b1e

Please sign in to comment.