Class: DockerEngineRuby::Models::ContainerUpdateParams::BlkioDeviceReadBp
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- DockerEngineRuby::Models::ContainerUpdateParams::BlkioDeviceReadBp
- Defined in:
- lib/docker_engine_ruby/models/container_update_params.rb
Instance Attribute Summary collapse
-
#path ⇒ String?
Device path.
-
#rate ⇒ Integer?
Rate.
Instance Method Summary collapse
-
#initialize(blkio_device_read_bps: nil, blkio_device_read_i_ops: nil, blkio_device_write_bps: nil, blkio_device_write_i_ops: nil, blkio_weight: nil, blkio_weight_device: nil, cgroup_parent: nil, cpu_count: nil, cpu_percent: nil, cpu_period: nil, cpu_quota: nil, cpu_realtime_period: nil, cpu_realtime_runtime: nil, cpuset_cpus: nil, cpuset_mems: nil, cpu_shares: nil, device_cgroup_rules: nil, device_requests: nil, devices: nil, init: nil, io_maximum_bandwidth: nil, io_maximum_i_ops: nil, memory: nil, memory_reservation: nil, memory_swap: nil, memory_swappiness: nil, nano_cpus: nil, oom_kill_disable: nil, pids_limit: nil, ulimits: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see DockerEngineRuby::Models::ContainerUpdateParams for more details.
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(blkio_device_read_bps: nil, blkio_device_read_i_ops: nil, blkio_device_write_bps: nil, blkio_device_write_i_ops: nil, blkio_weight: nil, blkio_weight_device: nil, cgroup_parent: nil, cpu_count: nil, cpu_percent: nil, cpu_period: nil, cpu_quota: nil, cpu_realtime_period: nil, cpu_realtime_runtime: nil, cpuset_cpus: nil, cpuset_mems: nil, cpu_shares: nil, device_cgroup_rules: nil, device_requests: nil, devices: nil, init: nil, io_maximum_bandwidth: nil, io_maximum_i_ops: nil, memory: nil, memory_reservation: nil, memory_swap: nil, memory_swappiness: nil, nano_cpus: nil, oom_kill_disable: nil, pids_limit: nil, ulimits: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see DockerEngineRuby::Models::ContainerUpdateParams for more details.
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
# File 'lib/docker_engine_ruby/models/container_update_params.rb', line 332 class BlkioDeviceReadBp < DockerEngineRuby::Internal::Type::BaseModel # @!attribute path # Device path # # @return [String, nil] optional :path, String, api_name: :Path # @!attribute rate # Rate # # @return [Integer, nil] optional :rate, Integer, api_name: :Rate # @!method initialize(path: nil, rate: nil) # @param path [String] Device path # # @param rate [Integer] Rate end |
Instance Attribute Details
#path ⇒ String?
Device path
337 |
# File 'lib/docker_engine_ruby/models/container_update_params.rb', line 337 optional :path, String, api_name: :Path |
#rate ⇒ Integer?
Rate
343 |
# File 'lib/docker_engine_ruby/models/container_update_params.rb', line 343 optional :rate, Integer, api_name: :Rate |