Class: DockerEngineRuby::Models::StatsResponse::StorageStats

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/docker_engine_ruby/models/stats_response.rb

Overview

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(read_count_normalized: nil, read_size_bytes: nil, write_count_normalized: nil, write_size_bytes: nil) ⇒ Object

StorageStats is the disk I/O stats for read/write on Windows.

This type is Windows-specific and omitted for Linux containers.

Parameters:

  • read_count_normalized (Integer, nil) (defaults to: nil)
  • read_size_bytes (Integer, nil) (defaults to: nil)
  • write_count_normalized (Integer, nil) (defaults to: nil)
  • write_size_bytes (Integer, nil) (defaults to: nil)


# File 'lib/docker_engine_ruby/models/stats_response.rb', line 1017


Instance Attribute Details

#read_count_normalizedInteger?

Returns:

  • (Integer, nil)


1000
# File 'lib/docker_engine_ruby/models/stats_response.rb', line 1000

optional :read_count_normalized, Integer, nil?: true

#read_size_bytesInteger?

Returns:

  • (Integer, nil)


1005
# File 'lib/docker_engine_ruby/models/stats_response.rb', line 1005

optional :read_size_bytes, Integer, nil?: true

#write_count_normalizedInteger?

Returns:

  • (Integer, nil)


1010
# File 'lib/docker_engine_ruby/models/stats_response.rb', line 1010

optional :write_count_normalized, Integer, nil?: true

#write_size_bytesInteger?

Returns:

  • (Integer, nil)


1015
# File 'lib/docker_engine_ruby/models/stats_response.rb', line 1015

optional :write_size_bytes, Integer, nil?: true