Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datacatalog_v1beta1/classes.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb

Overview

A result that appears in the response of a search request. Each result captures details of one entry that matches the search.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogResult

Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogResult.



1162
1163
1164
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1162

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#linked_resourceString

The full name of the cloud resource the entry belongs to. See: https://cloud.google.com/apis/design/resource_names#full_resource_name. Example:

  • //bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/ tableId Corresponds to the JSON property linkedResource

Returns:

  • (String)


1137
1138
1139
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1137

def linked_resource
  @linked_resource
end

#relative_resource_nameString

The relative resource 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 propertyrelativeResourceName`

Returns:

  • (String)


1146
1147
1148
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1146

def relative_resource_name
  @relative_resource_name
end

#search_result_subtypeString

Sub-type of the search result. This is a dot-delimited description of the resource's full type, and is the same as the value callers would provide in the "type" search facet. Examples: entry.table, entry.dataStream, tagTemplate. Corresponds to the JSON property searchResultSubtype

Returns:

  • (String)


1154
1155
1156
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1154

def search_result_subtype
  @search_result_subtype
end

#search_result_typeString

Type of the search result. This field can be used to determine which Get method to call to fetch the full resource. Corresponds to the JSON property searchResultType

Returns:

  • (String)


1160
1161
1162
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1160

def search_result_type
  @search_result_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1167
1168
1169
1170
1171
1172
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1167

def update!(**args)
  @linked_resource = args[:linked_resource] if args.key?(:linked_resource)
  @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)
end