Skip to content

Commit aa9c00d

Browse files
author
David Cavazos
committed
Merge branch 'main' of github.com:GoogleCloudPlatform/nodejs-docs-samples into test-isolation-configs
2 parents eb579fa + abdb358 commit aa9c00d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

datacatalog/cloud-client/createEntryGroup.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const main = async (
2626
entryGroupId
2727
) => {
2828
// [START data_catalog_create_entry_group]
29-
// [START datacatalog_create_entry_group_tag]
3029
// -------------------------------
3130
// Import required modules.
3231
// -------------------------------
@@ -59,7 +58,6 @@ const main = async (
5958
const [response] = await datacatalog.createEntryGroup(entryGroupRequest);
6059

6160
console.log(response);
62-
// [END datacatalog_create_entry_group_tag]
6361
// [END data_catalog_create_entry_group]
6462
};
6563

datacatalog/cloud-client/createFilesetEntry.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const main = async (
2626
entryGroupId,
2727
entryId
2828
) => {
29+
// [START data_catalog_create_fileset]
2930
// [START datacatalog_create_fileset_tag]
3031
// -------------------------------
3132
// Import required modules.
@@ -101,6 +102,7 @@ const main = async (
101102

102103
console.log(response);
103104
// [END datacatalog_create_fileset_tag]
105+
// [END data_catalog_create_fileset]
104106
};
105107

106108
// node createFilesetEntry.js <projectId> <entryGroupId> <entryId>

datacatalog/quickstart/createFilesetEntry.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const main = async (
2626
entryGroupId,
2727
entryId
2828
) => {
29+
// [START data_catalog_create_fileset_quickstart]
2930
// [START datacatalog_create_fileset_quickstart_tag]
3031
// -------------------------------
3132
// Import required modules.
@@ -125,6 +126,7 @@ const main = async (
125126
console.log(response);
126127
};
127128
// [END datacatalog_create_fileset_quickstart_tag]
129+
// [END data_catalog_create_fileset_quickstart]
128130

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

datacatalog/quickstart/deleteFilesetEntry.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const main = async (
2727
entryId
2828
) => {
2929
// [START data_catalog_delete_fileset_quickstart]
30-
// [START datacatalog_delete_fileset_quickstart_tag]
3130
// -------------------------------
3231
// Import required modules.
3332
// -------------------------------
@@ -72,7 +71,6 @@ const main = async (
7271
console.log('Entry Group does not exist or is not empty.');
7372
}
7473
};
75-
// [END datacatalog_delete_fileset_quickstart_tag]
7674
// [END data_catalog_delete_fileset_quickstart]
7775

7876
// node deleteFilesetEntry.js <projectId> <entryGroupId> <entryId>

0 commit comments

Comments
 (0)