Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Process
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Process
- 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
-
#attributes ⇒ Hash<String,Object>
Optional.
-
#display_name ⇒ String
Optional.
-
#name ⇒ String
Immutable.
-
#origin ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Origin
Origin of a process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1Process
constructor
A new instance of GoogleCloudDatacatalogLineageV1Process.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#attributes ⇒ Hash<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
398 399 400 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 398 def attributes @attributes end |
#display_name ⇒ String
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
405 406 407 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 405 def display_name @display_name end |
#name ⇒ String
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 property
name`
413 414 415 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 413 def name @name end |
#origin ⇒ Google::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 |