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 21, 2025
2 parents eb579fa + abdb358 commit aa9c00d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions datacatalog/cloud-client/createEntryGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const main = async (
entryGroupId
) => {
// [START data_catalog_create_entry_group]
// [START datacatalog_create_entry_group_tag]
// -------------------------------
// Import required modules.
// -------------------------------
Expand Down Expand Up @@ -59,7 +58,6 @@ const main = async (
const [response] = await datacatalog.createEntryGroup(entryGroupRequest);

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

Expand Down
2 changes: 2 additions & 0 deletions datacatalog/cloud-client/createFilesetEntry.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_create_fileset]
// [START datacatalog_create_fileset_tag]
// -------------------------------
// Import required modules.
Expand Down Expand Up @@ -101,6 +102,7 @@ const main = async (

console.log(response);
// [END datacatalog_create_fileset_tag]
// [END data_catalog_create_fileset]
};

// node createFilesetEntry.js <projectId> <entryGroupId> <entryId>
Expand Down
2 changes: 2 additions & 0 deletions datacatalog/quickstart/createFilesetEntry.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_create_fileset_quickstart]
// [START datacatalog_create_fileset_quickstart_tag]
// -------------------------------
// Import required modules.
Expand Down Expand Up @@ -125,6 +126,7 @@ const main = async (
console.log(response);
};
// [END datacatalog_create_fileset_quickstart_tag]
// [END data_catalog_create_fileset_quickstart]

// node createFilesetEntry.js <projectId> <entryGroupId> <entryId>
main(...process.argv.slice(2));
2 changes: 0 additions & 2 deletions datacatalog/quickstart/deleteFilesetEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const main = async (
entryId
) => {
// [START data_catalog_delete_fileset_quickstart]
// [START datacatalog_delete_fileset_quickstart_tag]
// -------------------------------
// Import required modules.
// -------------------------------
Expand Down Expand Up @@ -72,7 +71,6 @@ const main = async (
console.log('Entry Group does not exist or is not empty.');
}
};
// [END datacatalog_delete_fileset_quickstart_tag]
// [END data_catalog_delete_fileset_quickstart]

// node deleteFilesetEntry.js <projectId> <entryGroupId> <entryId>
Expand Down

0 comments on commit aa9c00d

Please sign in to comment.