Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference

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

Overview

The soft reference to everything you can attach a lineage event to.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1EntityReference

Returns a new instance of GoogleCloudDatacatalogLineageV1EntityReference.



102
103
104
# File 'lib/google/apis/datalineage_v1/classes.rb', line 102

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

Instance Attribute Details

#fully_qualified_nameString

Required. Fully Qualified Name of the entity. Useful for referencing entities that aren't represented as Google Cloud resources, for example, tables in Dataproc Metastore API. Examples: * bigquery:dataset.project_id.dataset_id * bigquery:table.project_id.dataset_id.table_id * pubsub:project_id.topic_id

  • dataproc_metastore:projectId.locationId.instanceId.databaseId.tableId Corresponds to the JSON property fullyQualifiedName

Returns:

  • (String)


100
101
102
# File 'lib/google/apis/datalineage_v1/classes.rb', line 100

def fully_qualified_name
  @fully_qualified_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



107
108
109
# File 'lib/google/apis/datalineage_v1/classes.rb', line 107

def update!(**args)
  @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
end