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.



501
502
503
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 501

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)


494
495
496
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 494

def source_node
  @source_node
end

#target_nodeString

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

Returns:

  • (String)


499
500
501
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 499

def target_node
  @target_node
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



506
507
508
509
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 506

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