-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer_delete_params.rb
More file actions
38 lines (32 loc) · 1.11 KB
/
Copy pathcontainer_delete_params.rb
File metadata and controls
38 lines (32 loc) · 1.11 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
# frozen_string_literal: true
module DockerEngineRuby
module Models
# @see DockerEngineRuby::Resources::Containers#delete
class ContainerDeleteParams < DockerEngineRuby::Internal::Type::BaseModel
extend DockerEngineRuby::Internal::Type::RequestParameters::Converter
include DockerEngineRuby::Internal::Type::RequestParameters
# @!attribute id
#
# @return [String]
required :id, String
# @!attribute force
#
# @return [Boolean, nil]
optional :force, DockerEngineRuby::Internal::Type::Boolean
# @!attribute link
#
# @return [Boolean, nil]
optional :link, DockerEngineRuby::Internal::Type::Boolean
# @!attribute v
#
# @return [Boolean, nil]
optional :v, DockerEngineRuby::Internal::Type::Boolean
# @!method initialize(id:, force: nil, link: nil, v: nil, request_options: {})
# @param id [String]
# @param force [Boolean]
# @param link [Boolean]
# @param v [Boolean]
# @param request_options [DockerEngineRuby::RequestOptions, Hash{Symbol=>Object}]
end
end
end