source: vendor/google/apiclient-services/src/Compute/PublicDelegatedPrefixPublicDelegatedSubPrefix.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.3 KB
Line 
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
18namespace Google\Service\Compute;
19
20class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Model
21{
22 /**
23 * @var int
24 */
25 public $allocatablePrefixLength;
26 /**
27 * @var string
28 */
29 public $delegateeProject;
30 /**
31 * @var string
32 */
33 public $description;
34 /**
35 * @var string
36 */
37 public $ipCidrRange;
38 /**
39 * @var bool
40 */
41 public $isAddress;
42 /**
43 * @var string
44 */
45 public $mode;
46 /**
47 * @var string
48 */
49 public $name;
50 /**
51 * @var string
52 */
53 public $region;
54 /**
55 * @var string
56 */
57 public $status;
58
59 /**
60 * @param int
61 */
62 public function setAllocatablePrefixLength($allocatablePrefixLength)
63 {
64 $this->allocatablePrefixLength = $allocatablePrefixLength;
65 }
66 /**
67 * @return int
68 */
69 public function getAllocatablePrefixLength()
70 {
71 return $this->allocatablePrefixLength;
72 }
73 /**
74 * @param string
75 */
76 public function setDelegateeProject($delegateeProject)
77 {
78 $this->delegateeProject = $delegateeProject;
79 }
80 /**
81 * @return string
82 */
83 public function getDelegateeProject()
84 {
85 return $this->delegateeProject;
86 }
87 /**
88 * @param string
89 */
90 public function setDescription($description)
91 {
92 $this->description = $description;
93 }
94 /**
95 * @return string
96 */
97 public function getDescription()
98 {
99 return $this->description;
100 }
101 /**
102 * @param string
103 */
104 public function setIpCidrRange($ipCidrRange)
105 {
106 $this->ipCidrRange = $ipCidrRange;
107 }
108 /**
109 * @return string
110 */
111 public function getIpCidrRange()
112 {
113 return $this->ipCidrRange;
114 }
115 /**
116 * @param bool
117 */
118 public function setIsAddress($isAddress)
119 {
120 $this->isAddress = $isAddress;
121 }
122 /**
123 * @return bool
124 */
125 public function getIsAddress()
126 {
127 return $this->isAddress;
128 }
129 /**
130 * @param string
131 */
132 public function setMode($mode)
133 {
134 $this->mode = $mode;
135 }
136 /**
137 * @return string
138 */
139 public function getMode()
140 {
141 return $this->mode;
142 }
143 /**
144 * @param string
145 */
146 public function setName($name)
147 {
148 $this->name = $name;
149 }
150 /**
151 * @return string
152 */
153 public function getName()
154 {
155 return $this->name;
156 }
157 /**
158 * @param string
159 */
160 public function setRegion($region)
161 {
162 $this->region = $region;
163 }
164 /**
165 * @return string
166 */
167 public function getRegion()
168 {
169 return $this->region;
170 }
171 /**
172 * @param string
173 */
174 public function setStatus($status)
175 {
176 $this->status = $status;
177 }
178 /**
179 * @return string
180 */
181 public function getStatus()
182 {
183 return $this->status;
184 }
185}
186
187// Adding a class alias for backwards compatibility with the previous class name.
188class_alias(PublicDelegatedPrefixPublicDelegatedSubPrefix::class, 'Google_Service_Compute_PublicDelegatedPrefixPublicDelegatedSubPrefix');
Note: See TracBrowser for help on using the repository browser.