Module: DockerEngineAPI::Models::SystemDataUsageParams::Type
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/docker_engine_api/models/system_data_usage_params.rb
Constant Summary collapse
- CONTAINER =
:container- IMAGE =
:image- VOLUME =
:volume- BUILD_CACHE =
:"build-cache"
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type: nil, verbose: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see DockerEngineAPI::Models::SystemDataUsageParams for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/docker_engine_api/models/system_data_usage_params.rb', line 41
|
Instance Method Details
#initialize(type: nil, verbose: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see DockerEngineAPI::Models::SystemDataUsageParams for more details.
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/docker_engine_api/models/system_data_usage_params.rb', line 33 module Type extend DockerEngineAPI::Internal::Type::Enum CONTAINER = :container IMAGE = :image VOLUME = :volume BUILD_CACHE = :"build-cache" # @!method self.values # @return [Array<Symbol>] end |