Class: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2PlatformProperty

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

Overview

A single property for the environment. The server is responsible for specifying the property names that it accepts. If an unknown name is provided in the requirements for an Action, the server SHOULD reject the execution request. If permitted by the server, the same name may occur multiple times. The server is also responsible for specifying the interpretation of property values. For instance, a property describing how much RAM must be available may be interpreted as allowing a worker with 16GB to fulfill a request for 8GB, while a property describing the OS environment on which the action must be performed may require an exact match with the worker's OS. The server MAY use the value of one or more properties to determine how it sets up the execution environment, such as by making specific system files available to the worker.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ BuildBazelRemoteExecutionV2PlatformProperty

Returns a new instance of BuildBazelRemoteExecutionV2PlatformProperty.



1245
1246
1247
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1245

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

Instance Attribute Details

#nameString

The property name. Corresponds to the JSON property name

Returns:

  • (String)


1238
1239
1240
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1238

def name
  @name
end

#valueString

The property value. Corresponds to the JSON property value

Returns:

  • (String)


1243
1244
1245
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1243

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1250
1251
1252
1253
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1250

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