source: vendor/google/apiclient-services/src/NetworkServices/AuthzExtension.php

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

Upload project files

  • Property mode set to 100644
File size: 4.4 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\NetworkServices;
19
20class AuthzExtension extends \Google\Collection
21{
22 protected $collection_key = 'forwardHeaders';
23 /**
24 * @var string
25 */
26 public $authority;
27 /**
28 * @var string
29 */
30 public $createTime;
31 /**
32 * @var string
33 */
34 public $description;
35 /**
36 * @var bool
37 */
38 public $failOpen;
39 /**
40 * @var string[]
41 */
42 public $forwardHeaders;
43 /**
44 * @var string[]
45 */
46 public $labels;
47 /**
48 * @var string
49 */
50 public $loadBalancingScheme;
51 /**
52 * @var array[]
53 */
54 public $metadata;
55 /**
56 * @var string
57 */
58 public $name;
59 /**
60 * @var string
61 */
62 public $service;
63 /**
64 * @var string
65 */
66 public $timeout;
67 /**
68 * @var string
69 */
70 public $updateTime;
71 /**
72 * @var string
73 */
74 public $wireFormat;
75
76 /**
77 * @param string
78 */
79 public function setAuthority($authority)
80 {
81 $this->authority = $authority;
82 }
83 /**
84 * @return string
85 */
86 public function getAuthority()
87 {
88 return $this->authority;
89 }
90 /**
91 * @param string
92 */
93 public function setCreateTime($createTime)
94 {
95 $this->createTime = $createTime;
96 }
97 /**
98 * @return string
99 */
100 public function getCreateTime()
101 {
102 return $this->createTime;
103 }
104 /**
105 * @param string
106 */
107 public function setDescription($description)
108 {
109 $this->description = $description;
110 }
111 /**
112 * @return string
113 */
114 public function getDescription()
115 {
116 return $this->description;
117 }
118 /**
119 * @param bool
120 */
121 public function setFailOpen($failOpen)
122 {
123 $this->failOpen = $failOpen;
124 }
125 /**
126 * @return bool
127 */
128 public function getFailOpen()
129 {
130 return $this->failOpen;
131 }
132 /**
133 * @param string[]
134 */
135 public function setForwardHeaders($forwardHeaders)
136 {
137 $this->forwardHeaders = $forwardHeaders;
138 }
139 /**
140 * @return string[]
141 */
142 public function getForwardHeaders()
143 {
144 return $this->forwardHeaders;
145 }
146 /**
147 * @param string[]
148 */
149 public function setLabels($labels)
150 {
151 $this->labels = $labels;
152 }
153 /**
154 * @return string[]
155 */
156 public function getLabels()
157 {
158 return $this->labels;
159 }
160 /**
161 * @param string
162 */
163 public function setLoadBalancingScheme($loadBalancingScheme)
164 {
165 $this->loadBalancingScheme = $loadBalancingScheme;
166 }
167 /**
168 * @return string
169 */
170 public function getLoadBalancingScheme()
171 {
172 return $this->loadBalancingScheme;
173 }
174 /**
175 * @param array[]
176 */
177 public function setMetadata($metadata)
178 {
179 $this->metadata = $metadata;
180 }
181 /**
182 * @return array[]
183 */
184 public function getMetadata()
185 {
186 return $this->metadata;
187 }
188 /**
189 * @param string
190 */
191 public function setName($name)
192 {
193 $this->name = $name;
194 }
195 /**
196 * @return string
197 */
198 public function getName()
199 {
200 return $this->name;
201 }
202 /**
203 * @param string
204 */
205 public function setService($service)
206 {
207 $this->service = $service;
208 }
209 /**
210 * @return string
211 */
212 public function getService()
213 {
214 return $this->service;
215 }
216 /**
217 * @param string
218 */
219 public function setTimeout($timeout)
220 {
221 $this->timeout = $timeout;
222 }
223 /**
224 * @return string
225 */
226 public function getTimeout()
227 {
228 return $this->timeout;
229 }
230 /**
231 * @param string
232 */
233 public function setUpdateTime($updateTime)
234 {
235 $this->updateTime = $updateTime;
236 }
237 /**
238 * @return string
239 */
240 public function getUpdateTime()
241 {
242 return $this->updateTime;
243 }
244 /**
245 * @param string
246 */
247 public function setWireFormat($wireFormat)
248 {
249 $this->wireFormat = $wireFormat;
250 }
251 /**
252 * @return string
253 */
254 public function getWireFormat()
255 {
256 return $this->wireFormat;
257 }
258}
259
260// Adding a class alias for backwards compatibility with the previous class name.
261class_alias(AuthzExtension::class, 'Google_Service_NetworkServices_AuthzExtension');
Note: See TracBrowser for help on using the repository browser.