-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer_attach_params.rb
More file actions
56 lines (47 loc) · 1.65 KB
/
Copy pathcontainer_attach_params.rb
File metadata and controls
56 lines (47 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
module DockerEngineRuby
module Models
# @see DockerEngineRuby::Resources::Containers#attach
class ContainerAttachParams < DockerEngineRuby::Internal::Type::BaseModel
extend DockerEngineRuby::Internal::Type::RequestParameters::Converter
include DockerEngineRuby::Internal::Type::RequestParameters
# @!attribute id
#
# @return [String]
required :id, String
# @!attribute detach_keys
#
# @return [String, nil]
optional :detach_keys, String
# @!attribute logs
#
# @return [Boolean, nil]
optional :logs, DockerEngineRuby::Internal::Type::Boolean
# @!attribute stderr
#
# @return [Boolean, nil]
optional :stderr, DockerEngineRuby::Internal::Type::Boolean
# @!attribute stdin
#
# @return [Boolean, nil]
optional :stdin, DockerEngineRuby::Internal::Type::Boolean
# @!attribute stdout
#
# @return [Boolean, nil]
optional :stdout, DockerEngineRuby::Internal::Type::Boolean
# @!attribute stream
#
# @return [Boolean, nil]
optional :stream, DockerEngineRuby::Internal::Type::Boolean
# @!method initialize(id:, detach_keys: nil, logs: nil, stderr: nil, stdin: nil, stdout: nil, stream: nil, request_options: {})
# @param id [String]
# @param detach_keys [String]
# @param logs [Boolean]
# @param stderr [Boolean]
# @param stdin [Boolean]
# @param stdout [Boolean]
# @param stream [Boolean]
# @param request_options [DockerEngineRuby::RequestOptions, Hash{Symbol=>Object}]
end
end
end