Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfile
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Contains the strict structure for graph-profile for semantic inference scan result.
Instance Attribute Summary collapse
-
#edge_types ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileEdgeType>
Output only.
-
#node_types ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileNodeType>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1GraphProfile
constructor
A new instance of GoogleCloudDataplexV1GraphProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1GraphProfile
Returns a new instance of GoogleCloudDataplexV1GraphProfile.
7358 7359 7360 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7358 def initialize(**args) update!(**args) end |
Instance Attribute Details
#edge_types ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileEdgeType>
Output only. Edge types.
Corresponds to the JSON property edgeTypes
7351 7352 7353 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7351 def edge_types @edge_types end |
#node_types ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileNodeType>
Output only. Node types.
Corresponds to the JSON property nodeTypes
7356 7357 7358 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7356 def node_types @node_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7363 7364 7365 7366 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7363 def update!(**args) @edge_types = args[:edge_types] if args.key?(:edge_types) @node_types = args[:node_types] if args.key?(:node_types) end |