source: vendor/google/apiclient-services/src/ServiceNetworking/ConsumerConfig.php

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

Upload project files

  • Property mode set to 100644
File size: 6.1 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\ServiceNetworking;
19
20class ConsumerConfig extends \Google\Collection
21{
22 protected $collection_key = 'usedIpRanges';
23 protected $cloudsqlConfigsType = CloudSQLConfig::class;
24 protected $cloudsqlConfigsDataType = 'array';
25 /**
26 * @var bool
27 */
28 public $consumerExportCustomRoutes;
29 /**
30 * @var bool
31 */
32 public $consumerExportSubnetRoutesWithPublicIp;
33 /**
34 * @var bool
35 */
36 public $consumerImportCustomRoutes;
37 /**
38 * @var bool
39 */
40 public $consumerImportSubnetRoutesWithPublicIp;
41 /**
42 * @var bool
43 */
44 public $producerExportCustomRoutes;
45 /**
46 * @var bool
47 */
48 public $producerExportSubnetRoutesWithPublicIp;
49 /**
50 * @var bool
51 */
52 public $producerImportCustomRoutes;
53 /**
54 * @var bool
55 */
56 public $producerImportSubnetRoutesWithPublicIp;
57 /**
58 * @var string
59 */
60 public $producerNetwork;
61 protected $reservedRangesType = GoogleCloudServicenetworkingV1ConsumerConfigReservedRange::class;
62 protected $reservedRangesDataType = 'array';
63 /**
64 * @var string[]
65 */
66 public $usedIpRanges;
67 /**
68 * @var bool
69 */
70 public $vpcScReferenceArchitectureEnabled;
71
72 /**
73 * @param CloudSQLConfig[]
74 */
75 public function setCloudsqlConfigs($cloudsqlConfigs)
76 {
77 $this->cloudsqlConfigs = $cloudsqlConfigs;
78 }
79 /**
80 * @return CloudSQLConfig[]
81 */
82 public function getCloudsqlConfigs()
83 {
84 return $this->cloudsqlConfigs;
85 }
86 /**
87 * @param bool
88 */
89 public function setConsumerExportCustomRoutes($consumerExportCustomRoutes)
90 {
91 $this->consumerExportCustomRoutes = $consumerExportCustomRoutes;
92 }
93 /**
94 * @return bool
95 */
96 public function getConsumerExportCustomRoutes()
97 {
98 return $this->consumerExportCustomRoutes;
99 }
100 /**
101 * @param bool
102 */
103 public function setConsumerExportSubnetRoutesWithPublicIp($consumerExportSubnetRoutesWithPublicIp)
104 {
105 $this->consumerExportSubnetRoutesWithPublicIp = $consumerExportSubnetRoutesWithPublicIp;
106 }
107 /**
108 * @return bool
109 */
110 public function getConsumerExportSubnetRoutesWithPublicIp()
111 {
112 return $this->consumerExportSubnetRoutesWithPublicIp;
113 }
114 /**
115 * @param bool
116 */
117 public function setConsumerImportCustomRoutes($consumerImportCustomRoutes)
118 {
119 $this->consumerImportCustomRoutes = $consumerImportCustomRoutes;
120 }
121 /**
122 * @return bool
123 */
124 public function getConsumerImportCustomRoutes()
125 {
126 return $this->consumerImportCustomRoutes;
127 }
128 /**
129 * @param bool
130 */
131 public function setConsumerImportSubnetRoutesWithPublicIp($consumerImportSubnetRoutesWithPublicIp)
132 {
133 $this->consumerImportSubnetRoutesWithPublicIp = $consumerImportSubnetRoutesWithPublicIp;
134 }
135 /**
136 * @return bool
137 */
138 public function getConsumerImportSubnetRoutesWithPublicIp()
139 {
140 return $this->consumerImportSubnetRoutesWithPublicIp;
141 }
142 /**
143 * @param bool
144 */
145 public function setProducerExportCustomRoutes($producerExportCustomRoutes)
146 {
147 $this->producerExportCustomRoutes = $producerExportCustomRoutes;
148 }
149 /**
150 * @return bool
151 */
152 public function getProducerExportCustomRoutes()
153 {
154 return $this->producerExportCustomRoutes;
155 }
156 /**
157 * @param bool
158 */
159 public function setProducerExportSubnetRoutesWithPublicIp($producerExportSubnetRoutesWithPublicIp)
160 {
161 $this->producerExportSubnetRoutesWithPublicIp = $producerExportSubnetRoutesWithPublicIp;
162 }
163 /**
164 * @return bool
165 */
166 public function getProducerExportSubnetRoutesWithPublicIp()
167 {
168 return $this->producerExportSubnetRoutesWithPublicIp;
169 }
170 /**
171 * @param bool
172 */
173 public function setProducerImportCustomRoutes($producerImportCustomRoutes)
174 {
175 $this->producerImportCustomRoutes = $producerImportCustomRoutes;
176 }
177 /**
178 * @return bool
179 */
180 public function getProducerImportCustomRoutes()
181 {
182 return $this->producerImportCustomRoutes;
183 }
184 /**
185 * @param bool
186 */
187 public function setProducerImportSubnetRoutesWithPublicIp($producerImportSubnetRoutesWithPublicIp)
188 {
189 $this->producerImportSubnetRoutesWithPublicIp = $producerImportSubnetRoutesWithPublicIp;
190 }
191 /**
192 * @return bool
193 */
194 public function getProducerImportSubnetRoutesWithPublicIp()
195 {
196 return $this->producerImportSubnetRoutesWithPublicIp;
197 }
198 /**
199 * @param string
200 */
201 public function setProducerNetwork($producerNetwork)
202 {
203 $this->producerNetwork = $producerNetwork;
204 }
205 /**
206 * @return string
207 */
208 public function getProducerNetwork()
209 {
210 return $this->producerNetwork;
211 }
212 /**
213 * @param GoogleCloudServicenetworkingV1ConsumerConfigReservedRange[]
214 */
215 public function setReservedRanges($reservedRanges)
216 {
217 $this->reservedRanges = $reservedRanges;
218 }
219 /**
220 * @return GoogleCloudServicenetworkingV1ConsumerConfigReservedRange[]
221 */
222 public function getReservedRanges()
223 {
224 return $this->reservedRanges;
225 }
226 /**
227 * @param string[]
228 */
229 public function setUsedIpRanges($usedIpRanges)
230 {
231 $this->usedIpRanges = $usedIpRanges;
232 }
233 /**
234 * @return string[]
235 */
236 public function getUsedIpRanges()
237 {
238 return $this->usedIpRanges;
239 }
240 /**
241 * @param bool
242 */
243 public function setVpcScReferenceArchitectureEnabled($vpcScReferenceArchitectureEnabled)
244 {
245 $this->vpcScReferenceArchitectureEnabled = $vpcScReferenceArchitectureEnabled;
246 }
247 /**
248 * @return bool
249 */
250 public function getVpcScReferenceArchitectureEnabled()
251 {
252 return $this->vpcScReferenceArchitectureEnabled;
253 }
254}
255
256// Adding a class alias for backwards compatibility with the previous class name.
257class_alias(ConsumerConfig::class, 'Google_Service_ServiceNetworking_ConsumerConfig');
Note: See TracBrowser for help on using the repository browser.