Skip to content

Commit

Permalink
Merge branch 'main' of github.com:GoogleCloudPlatform/nodejs-docs-sam…
Browse files Browse the repository at this point in the history
…ples into test-isolation-configs
  • Loading branch information
davidcavazos committed Jan 16, 2025
2 parents fe2d6f5 + fb12269 commit 8da73fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datacatalog/cloud-client/createEntryGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const main = async (
projectId = process.env.GOOGLE_CLOUD_PROJECT,
entryGroupId
) => {
// [START data_catalog_create_entry_group]
// [START datacatalog_create_entry_group_tag]
// -------------------------------
// Import required modules.
Expand Down Expand Up @@ -59,6 +60,7 @@ const main = async (

console.log(response);
// [END datacatalog_create_entry_group_tag]
// [END data_catalog_create_entry_group]
};

// node createEntryGroup.js <projectId> <entryGroupId>
Expand Down
2 changes: 2 additions & 0 deletions datacatalog/cloud-client/lookupEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* documentation at https://cloud.google.com/data-catalog/docs.
*/
const main = async (projectId, datasetId) => {
// [START data_catalog_lookup_dataset]
// [START datacatalog_lookup_dataset]
// -------------------------------
// Import required modules.
Expand All @@ -42,6 +43,7 @@ const main = async (projectId, datasetId) => {
const response = await lookup();
console.log(response);
// [END datacatalog_lookup_dataset]
// [END data_catalog_lookup_dataset]
};

// node lookupEntry.js <projectId> <datasetID>
Expand Down
2 changes: 2 additions & 0 deletions datacatalog/quickstart/deleteFilesetEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const main = async (
entryGroupId,
entryId
) => {
// [START data_catalog_delete_fileset_quickstart]
// [START datacatalog_delete_fileset_quickstart_tag]
// -------------------------------
// Import required modules.
Expand Down Expand Up @@ -72,6 +73,7 @@ const main = async (
}
};
// [END datacatalog_delete_fileset_quickstart_tag]
// [END data_catalog_delete_fileset_quickstart]

// node deleteFilesetEntry.js <projectId> <entryGroupId> <entryId>
main(...process.argv.slice(2));

0 comments on commit 8da73fe

Please sign in to comment.