...
1 package v1
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_RangeAllocation = map[string]string{
15 "": "RangeAllocation is used so we can easily expose a RangeAllocation typed for security group This is an internal API, not intended for external consumption.\n\nCompatibility level 1: Stable within a major release for a minimum of 12 months or 3 minor releases (whichever is longer).",
16 "metadata": "metadata is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
17 "range": "range is a string representing a unique label for a range of uids, \"1000000000-2000000000/10000\".",
18 "data": "data is a byte array representing the serialized state of a range allocation. It is a bitmap with each bit set to one to represent a range is taken.",
19 }
20
21 func (RangeAllocation) SwaggerDoc() map[string]string {
22 return map_RangeAllocation
23 }
24
25 var map_RangeAllocationList = map[string]string{
26 "": "RangeAllocationList is a list of RangeAllocations objects This is an internal API, not intended for external consumption.\n\nCompatibility level 1: Stable within a major release for a minimum of 12 months or 3 minor releases (whichever is longer).",
27 "metadata": "metadata is the standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
28 "items": "List of RangeAllocations.",
29 }
30
31 func (RangeAllocationList) SwaggerDoc() map[string]string {
32 return map_RangeAllocationList
33 }
34
35
36
View as plain text