Class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2NodeProperty

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

Overview

A single property for FileNodes, DirectoryNodes, and SymlinkNodes. The server is responsible for specifying the property names that it accepts. If permitted by the server, the same name may occur multiple times.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuildBazelRemoteExecutionV2NodeProperty

Returns a new instance of BuildBazelRemoteExecutionV2NodeProperty.



1555
1556
1557
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 1555

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

Instance Attribute Details

#nameString

The property name. Corresponds to the JSON property name

Returns:

  • (String)


1548
1549
1550
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 1548

def name
  @name
end

#valueString

The property value. Corresponds to the JSON property value

Returns:

  • (String)


1553
1554
1555
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 1553

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1560
1561
1562
1563
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 1560

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