blob: 28e11c9fbaa4c7cae2995e5bd81255b17773072b (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
//nolint:deadcode,unused // these types are used to wire generated swagger to API code
package swagger
import (
"github.com/containers/podman/v4/pkg/errorhandling"
)
// Error model embedded in swagger:response to aid in documentation generation
// No such image
// swagger:response
type imageNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such container
// swagger:response
type containerNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such network
// swagger:response
type networkNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such exec instance
// swagger:response
type execSessionNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such volume
// swagger:response
type volumeNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such pod
// swagger:response
type podNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// No such manifest
// swagger:response
type manifestNotFound struct {
// in:body
Body errorhandling.ErrorModel
}
// Internal server error
// swagger:response
type internalError struct {
// in:body
Body errorhandling.ErrorModel
}
// Conflict error in operation
// swagger:response
type conflictError struct {
// in:body
Body errorhandling.ErrorModel
}
// Bad parameter in request
// swagger:response
type badParamError struct {
// in:body
Body errorhandling.ErrorModel
}
// Container already started
// swagger:response
type containerAlreadyStartedError struct {
// in:body
Body errorhandling.ErrorModel
}
// Container already stopped
// swagger:response
type containerAlreadyStoppedError struct {
// in:body
Body errorhandling.ErrorModel
}
// Pod already started
// swagger:response
type podAlreadyStartedError struct {
// in:body
Body errorhandling.ErrorModel
}
// Pod already stopped
// swagger:response
type podAlreadyStoppedError struct {
// in:body
Body errorhandling.ErrorModel
}
// Success
// swagger:response
type ok struct {
// in:body
Body struct {
// example: OK
ok string
}
}
|