Class: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2PlatformProperty
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2PlatformProperty
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1alpha/classes.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb
Overview
A single property for the environment. The server is responsible for
specifying the property name
s 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 value
s. 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. Both names and values are typically case-
sensitive. Note that the platform is implicitly part of the action digest, so
even tiny changes in the names or values (like changing case) may result in
different action cache entries.
Instance Attribute Summary collapse
-
#name ⇒ String
The property name.
-
#value ⇒ String
The property value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2PlatformProperty
constructor
A new instance of BuildBazelRemoteExecutionV2PlatformProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2PlatformProperty
Returns a new instance of BuildBazelRemoteExecutionV2PlatformProperty.
1270 1271 1272 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1270 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The property name.
Corresponds to the JSON property name
1263 1264 1265 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1263 def name @name end |
#value ⇒ String
The property value.
Corresponds to the JSON property value
1268 1269 1270 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1268 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1275 1276 1277 1278 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1275 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |