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
1898 1899 1900 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1898 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
1876 1877 1878 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1876 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
1881 1882 1883 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1881 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
1886 1887 1888 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1886 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
1891 1892 1893 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1891 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
1896 1897 1898 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1896 def low_api_version @low_api_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1903 1904 1905 1906 1907 1908 1909 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1903 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 |