Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Process

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

A process is the definition of a data transformation operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1Process

Returns a new instance of GoogleCloudDatacatalogLineageV1Process.



420
421
422
# File 'lib/google/apis/datalineage_v1/classes.rb', line 420

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

Instance Attribute Details

#attributesHash<String,Object>

Optional. The attributes of the process. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the process). Up to 100 attributes are allowed. Corresponds to the JSON property attributes

Returns:

  • (Hash<String,Object>)


398
399
400
# File 'lib/google/apis/datalineage_v1/classes.rb', line 398

def attributes
  @attributes
end

#display_nameString

Optional. A human-readable name you can set to display in a user interface. Must be not longer than 200 characters and only contain UTF-8 letters or numbers, spaces or characters like _-:&. Corresponds to the JSON property displayName

Returns:

  • (String)


405
406
407
# File 'lib/google/apis/datalineage_v1/classes.rb', line 405

def display_name
  @display_name
end

#nameString

Immutable. The resource name of the lineage process. Format: projects/ project/locations/location/processes/process`. Can be specified or auto- assigned.processmust be not longer than 200 characters and only contain characters in a set:a-zA-Z0-9_-:. Corresponds to the JSON propertyname`

Returns:

  • (String)


413
414
415
# File 'lib/google/apis/datalineage_v1/classes.rb', line 413

def name
  @name
end

#originGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Origin

Origin of a process. Corresponds to the JSON property origin



418
419
420
# File 'lib/google/apis/datalineage_v1/classes.rb', line 418

def origin
  @origin
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



425
426
427
428
429
430
# File 'lib/google/apis/datalineage_v1/classes.rb', line 425

def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @origin = args[:origin] if args.key?(:origin)
end