Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/representations.rb
Overview
Result in the response to a search request. Each result captures details of one entry that matches the search.
Instance Attribute Summary collapse
-
#fully_qualified_name ⇒ String
Fully qualified name (FQN) of the resource.
-
#integrated_system ⇒ String
Output only.
-
#linked_resource ⇒ String
The full name of the Google Cloud resource the entry belongs to.
-
#modify_time ⇒ String
The last modification timestamp of the entry in the source system.
-
#relative_resource_name ⇒ String
The relative name of the resource in URL format.
-
#search_result_subtype ⇒ String
Sub-type of the search result.
-
#search_result_type ⇒ String
Type of the search result.
-
#user_specified_system ⇒ String
Custom source system that you can manually integrate Data Catalog with.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SearchCatalogResult
constructor
A new instance of GoogleCloudDatacatalogV1SearchCatalogResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SearchCatalogResult
Returns a new instance of GoogleCloudDatacatalogV1SearchCatalogResult.
1402 1403 1404 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1402 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fully_qualified_name ⇒ String
Fully qualified name (FQN) of the resource. FQNs take two forms: * For non-
regionalized resources: SYSTEM`:`PROJECT`.`
PATH_TO_RESOURCE_SEPARATED_WITH_DOTS * For regionalized resources: SYSTEM`:
`PROJECT`.`LOCATION_ID`.`PATH_TO_RESOURCE_SEPARATED_WITH_DOTS Example for a
DPMS table: dataproc_metastore:PROJECT_ID.LOCATION_ID.INSTANCE_ID.DATABASE_ID.
TABLE_ID
Corresponds to the JSON property fullyQualifiedName
1356 1357 1358 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1356 def fully_qualified_name @fully_qualified_name end |
#integrated_system ⇒ String
Output only. The source system that Data Catalog automatically integrates with,
such as BigQuery, Cloud Pub/Sub, or Dataproc Metastore.
Corresponds to the JSON property integratedSystem
1362 1363 1364 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1362 def integrated_system @integrated_system end |
#linked_resource ⇒ String
The full name of the Google Cloud resource the entry belongs to. For more
information, see Full Resource Name. Example: //bigquery.googleapis.com/projects/PROJECT_ID/
datasets/DATASET_ID/tables/TABLE_ID
Corresponds to the JSON property linkedResource
1370 1371 1372 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1370 def linked_resource @linked_resource end |
#modify_time ⇒ String
The last modification timestamp of the entry in the source system.
Corresponds to the JSON property modifyTime
1375 1376 1377 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1375 def modify_time @modify_time end |
#relative_resource_name ⇒ String
The relative name of the resource in URL format. Examples: * projects/
PROJECT_ID/locations/LOCATION_ID/entryGroups/ENTRY_GROUP_ID/entries/
ENTRY_ID* `projects/`PROJECT_ID`/tagTemplates/`TAG_TEMPLATE_ID
Corresponds to the JSON property relativeResourceName
1382 1383 1384 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1382 def relative_resource_name @relative_resource_name end |
#search_result_subtype ⇒ String
Sub-type of the search result. A dot-delimited full type of the resource. The
same type you specify in the type search predicate. Examples: entry.table,
entry.dataStream, tagTemplate.
Corresponds to the JSON property searchResultSubtype
1389 1390 1391 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1389 def search_result_subtype @search_result_subtype end |
#search_result_type ⇒ String
Type of the search result. You can use this field to determine which get
method to call to fetch the full resource.
Corresponds to the JSON property searchResultType
1395 1396 1397 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1395 def search_result_type @search_result_type end |
#user_specified_system ⇒ String
Custom source system that you can manually integrate Data Catalog with.
Corresponds to the JSON property userSpecifiedSystem
1400 1401 1402 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1400 def user_specified_system @user_specified_system end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1407 def update!(**args) @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name) @integrated_system = args[:integrated_system] if args.key?(:integrated_system) @linked_resource = args[:linked_resource] if args.key?(:linked_resource) @modify_time = args[:modify_time] if args.key?(:modify_time) @relative_resource_name = args[:relative_resource_name] if args.key?(:relative_resource_name) @search_result_subtype = args[:search_result_subtype] if args.key?(:search_result_subtype) @search_result_type = args[:search_result_type] if args.key?(:search_result_type) @user_specified_system = args[:user_specified_system] if args.key?(:user_specified_system) end |