5191f1224cd746eb8ad43cc80147670037593b35
[oom/registrator.git] /
1 /*
2 Copyright 2016 The Kubernetes Authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8     http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 package v1alpha1
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
30 var map_PetSet = map[string]string{
31         "":       "PetSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe PetSet guarantees that a given network identity will always map to the same storage identity. PetSet is currently in alpha and subject to change without notice.",
32         "spec":   "Spec defines the desired identities of pets in this set.",
33         "status": "Status is the current status of Pets in this PetSet. This data may be out of date by some window of time.",
34 }
35
36 func (PetSet) SwaggerDoc() map[string]string {
37         return map_PetSet
38 }
39
40 var map_PetSetList = map[string]string{
41         "": "PetSetList is a collection of PetSets.",
42 }
43
44 func (PetSetList) SwaggerDoc() map[string]string {
45         return map_PetSetList
46 }
47
48 var map_PetSetSpec = map[string]string{
49         "":                     "A PetSetSpec is the specification of a PetSet.",
50         "replicas":             "Replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.",
51         "selector":             "Selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: http://releases.k8s.io/HEAD/docs/user-guide/labels.md#label-selectors",
52         "template":             "Template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the PetSet will fulfill this Template, but have a unique identity from the rest of the PetSet.",
53         "volumeClaimTemplates": "VolumeClaimTemplates is a list of claims that pets are allowed to reference. The PetSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pet. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.",
54         "serviceName":          "ServiceName is the name of the service that governs this PetSet. This service must exist before the PetSet, and is responsible for the network identity of the set. Pets get DNS/hostnames that follow the pattern: pet-specific-string.serviceName.default.svc.cluster.local where \"pet-specific-string\" is managed by the PetSet controller.",
55 }
56
57 func (PetSetSpec) SwaggerDoc() map[string]string {
58         return map_PetSetSpec
59 }
60
61 var map_PetSetStatus = map[string]string{
62         "":                   "PetSetStatus represents the current state of a PetSet.",
63         "observedGeneration": "most recent generation observed by this autoscaler.",
64         "replicas":           "Replicas is the number of actual replicas.",
65 }
66
67 func (PetSetStatus) SwaggerDoc() map[string]string {
68         return map_PetSetStatus
69 }
70
71 // AUTO-GENERATED FUNCTIONS END HERE