1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_NetworkManagement_RouteInfo extends Google_Collection
19{
20  protected $collection_key = 'instanceTags';
21  public $destIpRange;
22  public $displayName;
23  public $instanceTags;
24  public $networkUri;
25  public $nextHop;
26  public $nextHopType;
27  public $priority;
28  public $routeType;
29  public $uri;
30
31  public function setDestIpRange($destIpRange)
32  {
33    $this->destIpRange = $destIpRange;
34  }
35  public function getDestIpRange()
36  {
37    return $this->destIpRange;
38  }
39  public function setDisplayName($displayName)
40  {
41    $this->displayName = $displayName;
42  }
43  public function getDisplayName()
44  {
45    return $this->displayName;
46  }
47  public function setInstanceTags($instanceTags)
48  {
49    $this->instanceTags = $instanceTags;
50  }
51  public function getInstanceTags()
52  {
53    return $this->instanceTags;
54  }
55  public function setNetworkUri($networkUri)
56  {
57    $this->networkUri = $networkUri;
58  }
59  public function getNetworkUri()
60  {
61    return $this->networkUri;
62  }
63  public function setNextHop($nextHop)
64  {
65    $this->nextHop = $nextHop;
66  }
67  public function getNextHop()
68  {
69    return $this->nextHop;
70  }
71  public function setNextHopType($nextHopType)
72  {
73    $this->nextHopType = $nextHopType;
74  }
75  public function getNextHopType()
76  {
77    return $this->nextHopType;
78  }
79  public function setPriority($priority)
80  {
81    $this->priority = $priority;
82  }
83  public function getPriority()
84  {
85    return $this->priority;
86  }
87  public function setRouteType($routeType)
88  {
89    $this->routeType = $routeType;
90  }
91  public function getRouteType()
92  {
93    return $this->routeType;
94  }
95  public function setUri($uri)
96  {
97    $this->uri = $uri;
98  }
99  public function getUri()
100  {
101    return $this->uri;
102  }
103}
104