class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ServerCapabilities
A response message for Capabilities.GetCapabilities.
Attributes
Capabilities of the remote cache system. Corresponds to the JSON property `cacheCapabilities` @return [Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2CacheCapabilities]
The full version of a given tool. Corresponds to the JSON property `deprecatedApiVersion` @return [Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer]
Capabilities of the remote execution system. Corresponds to the JSON property `executionCapabilities` @return [Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutionCapabilities]
The full version of a given tool. Corresponds to the JSON property `highApiVersion` @return [Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer]
The full version of a given tool. Corresponds to the JSON property `lowApiVersion` @return [Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer]
Public Class Methods
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1973 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1978 def update!(**args) @cache_capabilities = args[:cache_capabilities] if args.key?(:cache_capabilities) @deprecated_api_version = args[:deprecated_api_version] if args.key?(:deprecated_api_version) @execution_capabilities = args[:execution_capabilities] if args.key?(:execution_capabilities) @high_api_version = args[:high_api_version] if args.key?(:high_api_version) @low_api_version = args[:low_api_version] if args.key?(:low_api_version) end