blob: 67bf53f6968c2725178ca7ba2a7e0c990faed94a [file] [log] [blame]
Jian Li841a8b92017-11-23 01:31:22 +09001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
shivani vaidya530917c2017-07-11 11:27:48 -070016syntax = "proto3";
17option java_package = "org.onosproject.grpc.net.region.models";
18
19package net.region;
20
21enum RegionTypeProto {
22 /**
23 * Region represents an entire continent.
24 */
25 CONTINENT = 0;
26
27 /**
28 * Region represents an entire country.
29 */
30 COUNTRY = 1;
31
32 /**
33 * Region represents a metropolitan area.
34 */
35 METRO = 2;
36
37 /**
38 * Region represents a campus.
39 */
40 CAMPUS = 3;
41
42 /**
43 * Region represents a building.
44 */
45 BUILDING = 4;
46
47 /**
48 * Region represents a data center.
49 */
50 DATA_CENTER = 5;
51
52 /**
53 * Region represents a building floor.
54 */
55 FLOOR = 6;
56
57 /**
58 * Region represents a room.
59 */
60 ROOM = 7;
61
62 /**
63 * Region represents a rack.
64 */
65 RACK = 8;
66
67 /**
68 * Region represents a logical grouping.
69 */
70 LOGICAL_GROUP = 9;
71}