blob: 8c987f89963e2c5eb62f13afee3f888bbf2a6b5b [file] [log] [blame]
Matteo Scandoloa4285862020-12-01 18:10:10 -08001/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package v1beta1
18
19// This file contains a collection of methods that can be used from go-restful to
20// generate Swagger API documentation for its models. Please read this PR for more
21// information on the implementation: https://github.com/emicklei/go-restful/pull/215
22//
23// TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
24// they are on one line! For multiple line or blocks that you want to ignore use ---.
25// Any context after a --- is ignored.
26//
27// Those methods can be generated by using hack/update-generated-swagger-docs.sh
28
29// AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
30var map_Event = map[string]string{
31 "": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.",
32 "eventTime": "eventTime is the time when this Event was first observed. It is required.",
33 "series": "series is data about the Event series this event represents or nil if it's a singleton Event.",
34 "reportingController": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
35 "reportingInstance": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.",
36 "action": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.",
37 "reason": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
38 "regarding": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.",
39 "related": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.",
40 "note": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
41 "type": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.",
42 "deprecatedSource": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.",
43 "deprecatedFirstTimestamp": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.",
44 "deprecatedLastTimestamp": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.",
45 "deprecatedCount": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
46}
47
48func (Event) SwaggerDoc() map[string]string {
49 return map_Event
50}
51
52var map_EventList = map[string]string{
53 "": "EventList is a list of Event objects.",
54 "metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
55 "items": "items is a list of schema objects.",
56}
57
58func (EventList) SwaggerDoc() map[string]string {
59 return map_EventList
60}
61
62var map_EventSeries = map[string]string{
63 "": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
64 "count": "count is the number of occurrences in this series up to the last heartbeat time.",
65 "lastObservedTime": "lastObservedTime is the time when last Event from the series was seen before last heartbeat.",
66}
67
68func (EventSeries) SwaggerDoc() map[string]string {
69 return map_EventSeries
70}
71
72// AUTO-GENERATED FUNCTIONS END HERE