Class: DockerEngineRuby::Models::ContainerExecParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- DockerEngineRuby::Models::ContainerExecParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/docker_engine_ruby/models/container_exec_params.rb
Overview
Instance Attribute Summary collapse
- #attach_stderr ⇒ Boolean?
- #attach_stdin ⇒ Boolean?
- #attach_stdout ⇒ Boolean?
- #cmd ⇒ Array<String>?
- #console_size ⇒ Array<Integer>?
- #detach_keys ⇒ String?
- #env ⇒ Array<String>?
- #privileged ⇒ Boolean?
- #tty ⇒ Boolean?
- #user ⇒ String?
- #working_dir ⇒ String?
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(attach_stderr: nil, attach_stdin: nil, attach_stdout: nil, cmd: nil, console_size: nil, detach_keys: nil, env: nil, privileged: nil, tty: nil, user: nil, working_dir: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 68
|
Instance Attribute Details
#attach_stderr ⇒ Boolean?
13 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 13 optional :attach_stderr, DockerEngineRuby::Internal::Type::Boolean, api_name: :AttachStderr |
#attach_stdin ⇒ Boolean?
18 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 18 optional :attach_stdin, DockerEngineRuby::Internal::Type::Boolean, api_name: :AttachStdin |
#attach_stdout ⇒ Boolean?
23 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 23 optional :attach_stdout, DockerEngineRuby::Internal::Type::Boolean, api_name: :AttachStdout |
#cmd ⇒ Array<String>?
28 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 28 optional :cmd, DockerEngineRuby::Internal::Type::ArrayOf[String], api_name: :Cmd |
#console_size ⇒ Array<Integer>?
33 34 35 36 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 33 optional :console_size, DockerEngineRuby::Internal::Type::ArrayOf[Integer], api_name: :ConsoleSize, nil?: true |
#detach_keys ⇒ String?
41 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 41 optional :detach_keys, String, api_name: :DetachKeys |
#env ⇒ Array<String>?
46 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 46 optional :env, DockerEngineRuby::Internal::Type::ArrayOf[String], api_name: :Env |
#privileged ⇒ Boolean?
51 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 51 optional :privileged, DockerEngineRuby::Internal::Type::Boolean, api_name: :Privileged |
#tty ⇒ Boolean?
56 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 56 optional :tty, DockerEngineRuby::Internal::Type::Boolean, api_name: :Tty |
#user ⇒ String?
61 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 61 optional :user, String, api_name: :User |
#working_dir ⇒ String?
66 |
# File 'lib/docker_engine_ruby/models/container_exec_params.rb', line 66 optional :working_dir, String, api_name: :WorkingDir |