Class: Google::Apis::CloudassetV1p4beta1::GoogleCloudAssetV1p4beta1Edge

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

Overview

A directional edge.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAssetV1p4beta1Edge

Returns a new instance of GoogleCloudAssetV1p4beta1Edge.



481
482
483
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 481

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

Instance Attribute Details

#source_nodeString

The source node of the edge. Corresponds to the JSON property sourceNode

Returns:

  • (String)


474
475
476
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 474

def source_node
  @source_node
end

#target_nodeString

The target node of the edge. Corresponds to the JSON property targetNode

Returns:

  • (String)


479
480
481
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 479

def target_node
  @target_node
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



486
487
488
489
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 486

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