Constructor
new DataCatalogClient(optionsopt, gaxInstanceopt)
Construct an instance of DataCatalogClient.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
<optional> |
The configuration object. The options accepted by the constructor are described in detail in this document. The common options are: Properties
|
||||||||||||||||||||||||||||||||||||||||||||||||
gaxInstance |
gax |
<optional> |
loaded instance of |
Members
apiEndpoint
The DNS address for this API service.
apiEndpoint
The DNS address for this API service - same as servicePath.
port
The port for this API service.
scopes
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
The DNS address for this API service.
Methods
close() → {Promise}
Terminate the gRPC channel and close the client.
The client will no longer be usable and all future behavior is undefined.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves when the client is closed. |
entryGroupPath(project, location, entry_group) → {string}
Return a fully-qualified entryGroup resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
entry_group |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
entryPath(project, location, entry_group, entry) → {string}
Return a fully-qualified entry resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
entry_group |
string | |
entry |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
getProjectId() → {Promise}
Return the project ID used by this class.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to string containing the project ID. |
initialize() → {Promise}
Initialize the client. Performs asynchronous operations (such as authentication) and prepares the client. This function will be called automatically when any class method is called for the first time, but if you need to initialize it before calling an actual method, feel free to call initialize() directly.
You can await on this method if you want to make sure the client is initialized.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to an authenticated service stub. |
listEntriesAsync(request, optionsopt) → {Object}
Equivalent to listEntries
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing Entry. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The name of the entry group that contains the entries, which can
* be provided in URL format. Example:
* * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
*/
// const parent = 'abc123'
/**
* The maximum number of items to return. Default is 10. Max limit is 1000.
* Throws an invalid argument for `page_size > 1000`.
*/
// const pageSize = 1234
/**
* Token that specifies which page is requested. If empty, the first page is
* returned.
*/
// const pageToken = 'abc123'
/**
* The fields to return for each Entry. If not set or empty, all
* fields are returned.
* For example, setting read_mask to contain only one path "name" will cause
* ListEntries to return a list of Entries with only "name" field.
*/
// const readMask = {}
// Imports the Datacatalog library
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1beta1;
// Instantiates a client
const datacatalogClient = new DataCatalogClient();
async function callListEntries() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = datacatalogClient.listEntriesAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListEntries();
listEntriesStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing Entry on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
listEntryGroupsAsync(request, optionsopt) → {Object}
Equivalent to listEntryGroups
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing EntryGroup. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The name of the location that contains the entry groups, which
* can be provided in URL format. Example:
* * projects/{project_id}/locations/{location}
*/
// const parent = 'abc123'
/**
* Optional. The maximum number of items to return. Default is 10. Max limit
* is 1000. Throws an invalid argument for `page_size > 1000`.
*/
// const pageSize = 1234
/**
* Optional. Token that specifies which page is requested. If empty, the first
* page is returned.
*/
// const pageToken = 'abc123'
// Imports the Datacatalog library
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1beta1;
// Instantiates a client
const datacatalogClient = new DataCatalogClient();
async function callListEntryGroups() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = datacatalogClient.listEntryGroupsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListEntryGroups();
listEntryGroupsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing EntryGroup on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
listTagsAsync(request, optionsopt) → {Object}
Equivalent to listTags
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing Tag. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The name of the Data Catalog resource to list the tags of. The
* resource could be an Entry google.cloud.datacatalog.v1beta1.Entry or an
* EntryGroup google.cloud.datacatalog.v1beta1.EntryGroup.
* Examples:
* * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
* * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
*/
// const parent = 'abc123'
/**
* The maximum number of tags to return. Default is 10. Max limit is 1000.
*/
// const pageSize = 1234
/**
* Token that specifies which page is requested. If empty, the first page is
* returned.
*/
// const pageToken = 'abc123'
// Imports the Datacatalog library
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1beta1;
// Instantiates a client
const datacatalogClient = new DataCatalogClient();
async function callListTags() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = datacatalogClient.listTagsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListTags();
listTagsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing Tag on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
locationPath(project, location) → {string}
Return a fully-qualified location resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
matchEntryFromEntryName(entryName) → {string}
Parse the entry from Entry resource.
Parameters:
Name | Type | Description |
---|---|---|
entryName |
string |
A fully-qualified path representing Entry resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the entry. |
matchEntryFromTagName(tagName) → {string}
Parse the entry from Tag resource.
Parameters:
Name | Type | Description |
---|---|---|
tagName |
string |
A fully-qualified path representing Tag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the entry. |
matchEntryGroupFromEntryGroupName(entryGroupName) → {string}
Parse the entry_group from EntryGroup resource.
Parameters:
Name | Type | Description |
---|---|---|
entryGroupName |
string |
A fully-qualified path representing EntryGroup resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the entry_group. |
matchEntryGroupFromEntryName(entryName) → {string}
Parse the entry_group from Entry resource.
Parameters:
Name | Type | Description |
---|---|---|
entryName |
string |
A fully-qualified path representing Entry resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the entry_group. |
matchEntryGroupFromTagName(tagName) → {string}
Parse the entry_group from Tag resource.
Parameters:
Name | Type | Description |
---|---|---|
tagName |
string |
A fully-qualified path representing Tag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the entry_group. |
matchEnumValueDisplayNameFromTagTemplateFieldEnumValueName(tagTemplateFieldEnumValueName) → {string}
Parse the enum_value_display_name from TagTemplateFieldEnumValue resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldEnumValueName |
string |
A fully-qualified path representing TagTemplateFieldEnumValue resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the enum_value_display_name. |
matchFieldFromTagTemplateFieldName(tagTemplateFieldName) → {string}
Parse the field from TagTemplateField resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldName |
string |
A fully-qualified path representing TagTemplateField resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the field. |
matchLocationFromEntryGroupName(entryGroupName) → {string}
Parse the location from EntryGroup resource.
Parameters:
Name | Type | Description |
---|---|---|
entryGroupName |
string |
A fully-qualified path representing EntryGroup resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromEntryName(entryName) → {string}
Parse the location from Entry resource.
Parameters:
Name | Type | Description |
---|---|---|
entryName |
string |
A fully-qualified path representing Entry resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromLocationName(locationName) → {string}
Parse the location from Location resource.
Parameters:
Name | Type | Description |
---|---|---|
locationName |
string |
A fully-qualified path representing Location resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromPolicyTagName(policyTagName) → {string}
Parse the location from PolicyTag resource.
Parameters:
Name | Type | Description |
---|---|---|
policyTagName |
string |
A fully-qualified path representing PolicyTag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromTagName(tagName) → {string}
Parse the location from Tag resource.
Parameters:
Name | Type | Description |
---|---|---|
tagName |
string |
A fully-qualified path representing Tag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromTagTemplateFieldEnumValueName(tagTemplateFieldEnumValueName) → {string}
Parse the location from TagTemplateFieldEnumValue resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldEnumValueName |
string |
A fully-qualified path representing TagTemplateFieldEnumValue resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromTagTemplateFieldName(tagTemplateFieldName) → {string}
Parse the location from TagTemplateField resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldName |
string |
A fully-qualified path representing TagTemplateField resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromTagTemplateName(tagTemplateName) → {string}
Parse the location from TagTemplate resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateName |
string |
A fully-qualified path representing TagTemplate resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromTaxonomyName(taxonomyName) → {string}
Parse the location from Taxonomy resource.
Parameters:
Name | Type | Description |
---|---|---|
taxonomyName |
string |
A fully-qualified path representing Taxonomy resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchPolicyTagFromPolicyTagName(policyTagName) → {string}
Parse the policy_tag from PolicyTag resource.
Parameters:
Name | Type | Description |
---|---|---|
policyTagName |
string |
A fully-qualified path representing PolicyTag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the policy_tag. |
matchProjectFromEntryGroupName(entryGroupName) → {string}
Parse the project from EntryGroup resource.
Parameters:
Name | Type | Description |
---|---|---|
entryGroupName |
string |
A fully-qualified path representing EntryGroup resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromEntryName(entryName) → {string}
Parse the project from Entry resource.
Parameters:
Name | Type | Description |
---|---|---|
entryName |
string |
A fully-qualified path representing Entry resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromLocationName(locationName) → {string}
Parse the project from Location resource.
Parameters:
Name | Type | Description |
---|---|---|
locationName |
string |
A fully-qualified path representing Location resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromPolicyTagName(policyTagName) → {string}
Parse the project from PolicyTag resource.
Parameters:
Name | Type | Description |
---|---|---|
policyTagName |
string |
A fully-qualified path representing PolicyTag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectName(projectName) → {string}
Parse the project from Project resource.
Parameters:
Name | Type | Description |
---|---|---|
projectName |
string |
A fully-qualified path representing Project resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTagName(tagName) → {string}
Parse the project from Tag resource.
Parameters:
Name | Type | Description |
---|---|---|
tagName |
string |
A fully-qualified path representing Tag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTagTemplateFieldEnumValueName(tagTemplateFieldEnumValueName) → {string}
Parse the project from TagTemplateFieldEnumValue resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldEnumValueName |
string |
A fully-qualified path representing TagTemplateFieldEnumValue resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTagTemplateFieldName(tagTemplateFieldName) → {string}
Parse the project from TagTemplateField resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldName |
string |
A fully-qualified path representing TagTemplateField resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTagTemplateName(tagTemplateName) → {string}
Parse the project from TagTemplate resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateName |
string |
A fully-qualified path representing TagTemplate resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTaxonomyName(taxonomyName) → {string}
Parse the project from Taxonomy resource.
Parameters:
Name | Type | Description |
---|---|---|
taxonomyName |
string |
A fully-qualified path representing Taxonomy resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchTagFromTagName(tagName) → {string}
Parse the tag from Tag resource.
Parameters:
Name | Type | Description |
---|---|---|
tagName |
string |
A fully-qualified path representing Tag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the tag. |
matchTagTemplateFieldIdFromTagTemplateFieldEnumValueName(tagTemplateFieldEnumValueName) → {string}
Parse the tag_template_field_id from TagTemplateFieldEnumValue resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldEnumValueName |
string |
A fully-qualified path representing TagTemplateFieldEnumValue resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the tag_template_field_id. |
matchTagTemplateFromTagTemplateFieldEnumValueName(tagTemplateFieldEnumValueName) → {string}
Parse the tag_template from TagTemplateFieldEnumValue resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldEnumValueName |
string |
A fully-qualified path representing TagTemplateFieldEnumValue resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the tag_template. |
matchTagTemplateFromTagTemplateFieldName(tagTemplateFieldName) → {string}
Parse the tag_template from TagTemplateField resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateFieldName |
string |
A fully-qualified path representing TagTemplateField resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the tag_template. |
matchTagTemplateFromTagTemplateName(tagTemplateName) → {string}
Parse the tag_template from TagTemplate resource.
Parameters:
Name | Type | Description |
---|---|---|
tagTemplateName |
string |
A fully-qualified path representing TagTemplate resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the tag_template. |
matchTaxonomyFromPolicyTagName(policyTagName) → {string}
Parse the taxonomy from PolicyTag resource.
Parameters:
Name | Type | Description |
---|---|---|
policyTagName |
string |
A fully-qualified path representing PolicyTag resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the taxonomy. |
matchTaxonomyFromTaxonomyName(taxonomyName) → {string}
Parse the taxonomy from Taxonomy resource.
Parameters:
Name | Type | Description |
---|---|---|
taxonomyName |
string |
A fully-qualified path representing Taxonomy resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the taxonomy. |
policyTagPath(project, location, taxonomy, policy_tag) → {string}
Return a fully-qualified policyTag resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
taxonomy |
string | |
policy_tag |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectPath(project) → {string}
Return a fully-qualified project resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
searchCatalogAsync(request, optionsopt) → {Object}
Equivalent to searchCatalog
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing SearchCatalogResult. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The scope of this search request. A `scope` that has empty
* `include_org_ids`, `include_project_ids` AND false
* `include_gcp_public_datasets` is considered invalid. Data Catalog will
* return an error in such a case.
*/
// const scope = {}
/**
* Optional. The query string in search query syntax. An empty query string
* will result in all data assets (in the specified scope) that the user has
* access to. Query strings can be simple as "x" or more qualified as:
* * name:x
* * column:x
* * description:y
* Note: Query tokens need to have a minimum of 3 characters for substring
* matching to work correctly. See Data Catalog Search
* Syntax (https://cloud.google.com/data-catalog/docs/how-to/search-reference)
* for more information.
*/
// const query = 'abc123'
/**
* Number of results in the search page. If <=0 then defaults to 10. Max limit
* for page_size is 1000. Throws an invalid argument for page_size > 1000.
*/
// const pageSize = 1234
/**
* Optional. Pagination token returned in an earlier
* SearchCatalogResponse.next_page_token google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token,
* which indicates that this is a continuation of a prior
* SearchCatalogRequest google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog
* call, and that the system should return the next page of data. If empty,
* the first page is returned.
*/
// const pageToken = 'abc123'
/**
* Specifies the ordering of results, currently supported case-sensitive
* choices are:
* * `relevance`, only supports descending
* * `last_modified_timestamp asc|desc`, defaults to descending if not
* specified
* * `default` that can only be descending
* If not specified, defaults to `relevance` descending.
*/
// const orderBy = 'abc123'
// Imports the Datacatalog library
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1beta1;
// Instantiates a client
const datacatalogClient = new DataCatalogClient();
async function callSearchCatalog() {
// Construct request
const request = {
scope,
};
// Run request
const iterable = datacatalogClient.searchCatalogAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callSearchCatalog();
searchCatalogStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing SearchCatalogResult on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
tagPath(project, location, entry_group, entry, tag) → {string}
Return a fully-qualified tag resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
entry_group |
string | |
entry |
string | |
tag |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
tagTemplateFieldEnumValuePath(project, location, tag_template, tag_template_field_id, enum_value_display_name) → {string}
Return a fully-qualified tagTemplateFieldEnumValue resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
tag_template |
string | |
tag_template_field_id |
string | |
enum_value_display_name |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
tagTemplateFieldPath(project, location, tag_template, field) → {string}
Return a fully-qualified tagTemplateField resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
tag_template |
string | |
field |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
tagTemplatePath(project, location, tag_template) → {string}
Return a fully-qualified tagTemplate resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
tag_template |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
taxonomyPath(project, location, taxonomy) → {string}
Return a fully-qualified taxonomy resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
taxonomy |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |