...
1 package v1alpha1
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_CrossGroupObjectReference = map[string]string{
15 "": "CrossGroupObjectReference is a reference to an object in the same namespace in the specified group. It is similar to autoscaling.CrossVersionObjectReference.",
16 "kind": "Kind of the referent; More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds\"",
17 "name": "Name of the referent; More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names",
18 "apiVersion": "API version of the referent (deprecated, prefer usng Group instead)",
19 "group": "Group of the referent",
20 }
21
22 func (CrossGroupObjectReference) SwaggerDoc() map[string]string {
23 return map_CrossGroupObjectReference
24 }
25
26 var map_RecordedScaleReference = map[string]string{
27 "": "RecordedScaleReference is a CrossGroupObjectReference to a scale subresource that also has the previous replica count recorded",
28 "replicas": "The last seen scale of the idled resource (before idling)",
29 }
30
31 func (RecordedScaleReference) SwaggerDoc() map[string]string {
32 return map_RecordedScaleReference
33 }
34
35
36
View as plain text