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.
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ServerCapabilities
Returns a new instance of BuildBazelRemoteExecutionV2ServerCapabilities.
1865 1866 1867 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1865 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
1843 1844 1845 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1843 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
1848 1849 1850 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1848 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
1853 1854 1855 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1853 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
1858 1859 1860 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1858 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
1863 1864 1865 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1863 def low_api_version @low_api_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1870 1871 1872 1873 1874 1875 1876 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1870 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 |