Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): configuration.copy link #709

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 16 additions & 20 deletions src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,8 @@ 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.
* [`configuration.copy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy)
* property of a Jobs resource.
* @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 +584,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 the https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy
* // for all available options.
* //-
* const metadata = {
* createDisposition: 'CREATE_NEVER',
Expand Down Expand Up @@ -644,8 +643,8 @@ class Table extends common.ServiceObject {
* 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.
* [`configuration.copy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy)
* property of a Jobs resource.
* @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 +669,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 the https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy
* // for all available options.
* //-
* const metadata = {
* createDisposition: 'CREATE_NEVER',
Expand Down Expand Up @@ -726,8 +724,8 @@ 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.
* [`configuration.copy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy)
* property of a Jobs resource.
* @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 +749,8 @@ class Table extends common.ServiceObject {
* });
*
* //-
* // See the <a href="http://goo.gl/dKWIyS">`configuration.copy`</a> object
* for
* // all available options.
* // See the https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy
* // for all available options.
* //-
* const metadata = {
* createDisposition: 'CREATE_NEVER',
Expand Down Expand Up @@ -839,8 +836,8 @@ class Table extends common.ServiceObject {
* 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.
* [`configuration.copy`](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy)
* property of a Jobs resource.
* @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 +867,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 the https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy
* // for all available options.
* //-
* const metadata = {
* createDisposition: 'CREATE_NEVER',
Expand Down