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.
7163 7164 7165 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7163 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
7156 7157 7158 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7156 def edge_types @edge_types end |
#node_types ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileNodeType>
Output only. Node types.
Corresponds to the JSON property nodeTypes
7161 7162 7163 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7161 def node_types @node_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7168 7169 7170 7171 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7168 def update!(**args) @edge_types = args[:edge_types] if args.key?(:edge_types) @node_types = args[:node_types] if args.key?(:node_types) end |