Class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ServerCapabilities
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ServerCapabilities
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb
Overview
A response message for Capabilities.GetCapabilities.
Instance Attribute Summary collapse
-
#cache_capabilities ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2CacheCapabilities
Capabilities of the remote cache system.
-
#deprecated_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
-
#execution_capabilities ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutionCapabilities
Capabilities of the remote execution system.
-
#high_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
-
#low_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ServerCapabilities
constructor
A new instance of BuildBazelRemoteExecutionV2ServerCapabilities.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ServerCapabilities
Returns a new instance of BuildBazelRemoteExecutionV2ServerCapabilities
1997 1998 1999 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1997 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cache_capabilities ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2CacheCapabilities
Capabilities of the remote cache system.
Corresponds to the JSON property cacheCapabilities
1975 1976 1977 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1975 def cache_capabilities @cache_capabilities end |
#deprecated_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
Corresponds to the JSON property deprecatedApiVersion
1980 1981 1982 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1980 def deprecated_api_version @deprecated_api_version end |
#execution_capabilities ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutionCapabilities
Capabilities of the remote execution system.
Corresponds to the JSON property executionCapabilities
1985 1986 1987 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1985 def execution_capabilities @execution_capabilities end |
#high_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
Corresponds to the JSON property highApiVersion
1990 1991 1992 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1990 def high_api_version @high_api_version end |
#low_api_version ⇒ Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
The full version of a given tool.
Corresponds to the JSON property lowApiVersion
1995 1996 1997 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1995 def low_api_version @low_api_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2002 2003 2004 2005 2006 2007 2008 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2002 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 |