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 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 20 additions & 24 deletions src/table.ts
Expand Up @@ -560,9 +560,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.
laljikanjareeya marked this conversation as resolved.
Show resolved Hide resolved
* @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 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 +642,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.
laljikanjareeya marked this conversation as resolved.
Show resolved Hide resolved
* @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 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 +723,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.
laljikanjareeya marked this conversation as resolved.
Show resolved Hide resolved
* @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 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 +835,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.
laljikanjareeya marked this conversation as resolved.
Show resolved Hide resolved
* @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 https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationTableCopy
* // for all available options.
* //-
* const metadata = {
* createDisposition: 'CREATE_NEVER',
Expand Down