Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1158)

Side by Side Diff: generated/googleapis/test/compute/v1_test.dart

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 library googleapis.compute.v1.test; 1 library googleapis.compute.v1.test;
2 2
3 import "dart:core" as core; 3 import "dart:core" as core;
4 import "dart:collection" as collection; 4 import "dart:collection" as collection;
5 import "dart:async" as async; 5 import "dart:async" as async;
6 import "dart:convert" as convert; 6 import "dart:convert" as convert;
7 7
8 import 'package:http/http.dart' as http; 8 import 'package:http/http.dart' as http;
9 import 'package:http/testing.dart' as http_testing; 9 import 'package:http/testing.dart' as http_testing;
10 import 'package:unittest/unittest.dart' as unittest; 10 import 'package:unittest/unittest.dart' as unittest;
(...skipping 23 matching lines...) Expand all
34 buildCounterAccessConfig++; 34 buildCounterAccessConfig++;
35 if (buildCounterAccessConfig < 3) { 35 if (buildCounterAccessConfig < 3) {
36 unittest.expect(o.kind, unittest.equals('foo')); 36 unittest.expect(o.kind, unittest.equals('foo'));
37 unittest.expect(o.name, unittest.equals('foo')); 37 unittest.expect(o.name, unittest.equals('foo'));
38 unittest.expect(o.natIP, unittest.equals('foo')); 38 unittest.expect(o.natIP, unittest.equals('foo'));
39 unittest.expect(o.type, unittest.equals('foo')); 39 unittest.expect(o.type, unittest.equals('foo'));
40 } 40 }
41 buildCounterAccessConfig--; 41 buildCounterAccessConfig--;
42 } 42 }
43 43
44 buildUnnamed926() { 44 buildUnnamed465() {
45 var o = new core.List<core.String>(); 45 var o = new core.List<core.String>();
46 o.add("foo"); 46 o.add("foo");
47 o.add("foo"); 47 o.add("foo");
48 return o; 48 return o;
49 } 49 }
50 50
51 checkUnnamed926(core.List<core.String> o) { 51 checkUnnamed465(core.List<core.String> o) {
52 unittest.expect(o, unittest.hasLength(2)); 52 unittest.expect(o, unittest.hasLength(2));
53 unittest.expect(o[0], unittest.equals('foo')); 53 unittest.expect(o[0], unittest.equals('foo'));
54 unittest.expect(o[1], unittest.equals('foo')); 54 unittest.expect(o[1], unittest.equals('foo'));
55 } 55 }
56 56
57 core.int buildCounterAddress = 0; 57 core.int buildCounterAddress = 0;
58 buildAddress() { 58 buildAddress() {
59 var o = new api.Address(); 59 var o = new api.Address();
60 buildCounterAddress++; 60 buildCounterAddress++;
61 if (buildCounterAddress < 3) { 61 if (buildCounterAddress < 3) {
62 o.address = "foo"; 62 o.address = "foo";
63 o.creationTimestamp = "foo"; 63 o.creationTimestamp = "foo";
64 o.description = "foo"; 64 o.description = "foo";
65 o.id = "foo"; 65 o.id = "foo";
66 o.kind = "foo"; 66 o.kind = "foo";
67 o.name = "foo"; 67 o.name = "foo";
68 o.region = "foo"; 68 o.region = "foo";
69 o.selfLink = "foo"; 69 o.selfLink = "foo";
70 o.status = "foo"; 70 o.status = "foo";
71 o.users = buildUnnamed926(); 71 o.users = buildUnnamed465();
72 } 72 }
73 buildCounterAddress--; 73 buildCounterAddress--;
74 return o; 74 return o;
75 } 75 }
76 76
77 checkAddress(api.Address o) { 77 checkAddress(api.Address o) {
78 buildCounterAddress++; 78 buildCounterAddress++;
79 if (buildCounterAddress < 3) { 79 if (buildCounterAddress < 3) {
80 unittest.expect(o.address, unittest.equals('foo')); 80 unittest.expect(o.address, unittest.equals('foo'));
81 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 81 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
82 unittest.expect(o.description, unittest.equals('foo')); 82 unittest.expect(o.description, unittest.equals('foo'));
83 unittest.expect(o.id, unittest.equals('foo')); 83 unittest.expect(o.id, unittest.equals('foo'));
84 unittest.expect(o.kind, unittest.equals('foo')); 84 unittest.expect(o.kind, unittest.equals('foo'));
85 unittest.expect(o.name, unittest.equals('foo')); 85 unittest.expect(o.name, unittest.equals('foo'));
86 unittest.expect(o.region, unittest.equals('foo')); 86 unittest.expect(o.region, unittest.equals('foo'));
87 unittest.expect(o.selfLink, unittest.equals('foo')); 87 unittest.expect(o.selfLink, unittest.equals('foo'));
88 unittest.expect(o.status, unittest.equals('foo')); 88 unittest.expect(o.status, unittest.equals('foo'));
89 checkUnnamed926(o.users); 89 checkUnnamed465(o.users);
90 } 90 }
91 buildCounterAddress--; 91 buildCounterAddress--;
92 } 92 }
93 93
94 buildUnnamed927() { 94 buildUnnamed466() {
95 var o = new core.Map<core.String, api.AddressesScopedList>(); 95 var o = new core.Map<core.String, api.AddressesScopedList>();
96 o["x"] = buildAddressesScopedList(); 96 o["x"] = buildAddressesScopedList();
97 o["y"] = buildAddressesScopedList(); 97 o["y"] = buildAddressesScopedList();
98 return o; 98 return o;
99 } 99 }
100 100
101 checkUnnamed927(core.Map<core.String, api.AddressesScopedList> o) { 101 checkUnnamed466(core.Map<core.String, api.AddressesScopedList> o) {
102 unittest.expect(o, unittest.hasLength(2)); 102 unittest.expect(o, unittest.hasLength(2));
103 checkAddressesScopedList(o["x"]); 103 checkAddressesScopedList(o["x"]);
104 checkAddressesScopedList(o["y"]); 104 checkAddressesScopedList(o["y"]);
105 } 105 }
106 106
107 core.int buildCounterAddressAggregatedList = 0; 107 core.int buildCounterAddressAggregatedList = 0;
108 buildAddressAggregatedList() { 108 buildAddressAggregatedList() {
109 var o = new api.AddressAggregatedList(); 109 var o = new api.AddressAggregatedList();
110 buildCounterAddressAggregatedList++; 110 buildCounterAddressAggregatedList++;
111 if (buildCounterAddressAggregatedList < 3) { 111 if (buildCounterAddressAggregatedList < 3) {
112 o.id = "foo"; 112 o.id = "foo";
113 o.items = buildUnnamed927(); 113 o.items = buildUnnamed466();
114 o.kind = "foo"; 114 o.kind = "foo";
115 o.nextPageToken = "foo"; 115 o.nextPageToken = "foo";
116 o.selfLink = "foo"; 116 o.selfLink = "foo";
117 } 117 }
118 buildCounterAddressAggregatedList--; 118 buildCounterAddressAggregatedList--;
119 return o; 119 return o;
120 } 120 }
121 121
122 checkAddressAggregatedList(api.AddressAggregatedList o) { 122 checkAddressAggregatedList(api.AddressAggregatedList o) {
123 buildCounterAddressAggregatedList++; 123 buildCounterAddressAggregatedList++;
124 if (buildCounterAddressAggregatedList < 3) { 124 if (buildCounterAddressAggregatedList < 3) {
125 unittest.expect(o.id, unittest.equals('foo')); 125 unittest.expect(o.id, unittest.equals('foo'));
126 checkUnnamed927(o.items); 126 checkUnnamed466(o.items);
127 unittest.expect(o.kind, unittest.equals('foo')); 127 unittest.expect(o.kind, unittest.equals('foo'));
128 unittest.expect(o.nextPageToken, unittest.equals('foo')); 128 unittest.expect(o.nextPageToken, unittest.equals('foo'));
129 unittest.expect(o.selfLink, unittest.equals('foo')); 129 unittest.expect(o.selfLink, unittest.equals('foo'));
130 } 130 }
131 buildCounterAddressAggregatedList--; 131 buildCounterAddressAggregatedList--;
132 } 132 }
133 133
134 buildUnnamed928() { 134 buildUnnamed467() {
135 var o = new core.List<api.Address>(); 135 var o = new core.List<api.Address>();
136 o.add(buildAddress()); 136 o.add(buildAddress());
137 o.add(buildAddress()); 137 o.add(buildAddress());
138 return o; 138 return o;
139 } 139 }
140 140
141 checkUnnamed928(core.List<api.Address> o) { 141 checkUnnamed467(core.List<api.Address> o) {
142 unittest.expect(o, unittest.hasLength(2)); 142 unittest.expect(o, unittest.hasLength(2));
143 checkAddress(o[0]); 143 checkAddress(o[0]);
144 checkAddress(o[1]); 144 checkAddress(o[1]);
145 } 145 }
146 146
147 core.int buildCounterAddressList = 0; 147 core.int buildCounterAddressList = 0;
148 buildAddressList() { 148 buildAddressList() {
149 var o = new api.AddressList(); 149 var o = new api.AddressList();
150 buildCounterAddressList++; 150 buildCounterAddressList++;
151 if (buildCounterAddressList < 3) { 151 if (buildCounterAddressList < 3) {
152 o.id = "foo"; 152 o.id = "foo";
153 o.items = buildUnnamed928(); 153 o.items = buildUnnamed467();
154 o.kind = "foo"; 154 o.kind = "foo";
155 o.nextPageToken = "foo"; 155 o.nextPageToken = "foo";
156 o.selfLink = "foo"; 156 o.selfLink = "foo";
157 } 157 }
158 buildCounterAddressList--; 158 buildCounterAddressList--;
159 return o; 159 return o;
160 } 160 }
161 161
162 checkAddressList(api.AddressList o) { 162 checkAddressList(api.AddressList o) {
163 buildCounterAddressList++; 163 buildCounterAddressList++;
164 if (buildCounterAddressList < 3) { 164 if (buildCounterAddressList < 3) {
165 unittest.expect(o.id, unittest.equals('foo')); 165 unittest.expect(o.id, unittest.equals('foo'));
166 checkUnnamed928(o.items); 166 checkUnnamed467(o.items);
167 unittest.expect(o.kind, unittest.equals('foo')); 167 unittest.expect(o.kind, unittest.equals('foo'));
168 unittest.expect(o.nextPageToken, unittest.equals('foo')); 168 unittest.expect(o.nextPageToken, unittest.equals('foo'));
169 unittest.expect(o.selfLink, unittest.equals('foo')); 169 unittest.expect(o.selfLink, unittest.equals('foo'));
170 } 170 }
171 buildCounterAddressList--; 171 buildCounterAddressList--;
172 } 172 }
173 173
174 buildUnnamed929() { 174 buildUnnamed468() {
175 var o = new core.List<api.Address>(); 175 var o = new core.List<api.Address>();
176 o.add(buildAddress()); 176 o.add(buildAddress());
177 o.add(buildAddress()); 177 o.add(buildAddress());
178 return o; 178 return o;
179 } 179 }
180 180
181 checkUnnamed929(core.List<api.Address> o) { 181 checkUnnamed468(core.List<api.Address> o) {
182 unittest.expect(o, unittest.hasLength(2)); 182 unittest.expect(o, unittest.hasLength(2));
183 checkAddress(o[0]); 183 checkAddress(o[0]);
184 checkAddress(o[1]); 184 checkAddress(o[1]);
185 } 185 }
186 186
187 core.int buildCounterAddressesScopedListWarningData = 0; 187 core.int buildCounterAddressesScopedListWarningData = 0;
188 buildAddressesScopedListWarningData() { 188 buildAddressesScopedListWarningData() {
189 var o = new api.AddressesScopedListWarningData(); 189 var o = new api.AddressesScopedListWarningData();
190 buildCounterAddressesScopedListWarningData++; 190 buildCounterAddressesScopedListWarningData++;
191 if (buildCounterAddressesScopedListWarningData < 3) { 191 if (buildCounterAddressesScopedListWarningData < 3) {
192 o.key = "foo"; 192 o.key = "foo";
193 o.value = "foo"; 193 o.value = "foo";
194 } 194 }
195 buildCounterAddressesScopedListWarningData--; 195 buildCounterAddressesScopedListWarningData--;
196 return o; 196 return o;
197 } 197 }
198 198
199 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { 199 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) {
200 buildCounterAddressesScopedListWarningData++; 200 buildCounterAddressesScopedListWarningData++;
201 if (buildCounterAddressesScopedListWarningData < 3) { 201 if (buildCounterAddressesScopedListWarningData < 3) {
202 unittest.expect(o.key, unittest.equals('foo')); 202 unittest.expect(o.key, unittest.equals('foo'));
203 unittest.expect(o.value, unittest.equals('foo')); 203 unittest.expect(o.value, unittest.equals('foo'));
204 } 204 }
205 buildCounterAddressesScopedListWarningData--; 205 buildCounterAddressesScopedListWarningData--;
206 } 206 }
207 207
208 buildUnnamed930() { 208 buildUnnamed469() {
209 var o = new core.List<api.AddressesScopedListWarningData>(); 209 var o = new core.List<api.AddressesScopedListWarningData>();
210 o.add(buildAddressesScopedListWarningData()); 210 o.add(buildAddressesScopedListWarningData());
211 o.add(buildAddressesScopedListWarningData()); 211 o.add(buildAddressesScopedListWarningData());
212 return o; 212 return o;
213 } 213 }
214 214
215 checkUnnamed930(core.List<api.AddressesScopedListWarningData> o) { 215 checkUnnamed469(core.List<api.AddressesScopedListWarningData> o) {
216 unittest.expect(o, unittest.hasLength(2)); 216 unittest.expect(o, unittest.hasLength(2));
217 checkAddressesScopedListWarningData(o[0]); 217 checkAddressesScopedListWarningData(o[0]);
218 checkAddressesScopedListWarningData(o[1]); 218 checkAddressesScopedListWarningData(o[1]);
219 } 219 }
220 220
221 core.int buildCounterAddressesScopedListWarning = 0; 221 core.int buildCounterAddressesScopedListWarning = 0;
222 buildAddressesScopedListWarning() { 222 buildAddressesScopedListWarning() {
223 var o = new api.AddressesScopedListWarning(); 223 var o = new api.AddressesScopedListWarning();
224 buildCounterAddressesScopedListWarning++; 224 buildCounterAddressesScopedListWarning++;
225 if (buildCounterAddressesScopedListWarning < 3) { 225 if (buildCounterAddressesScopedListWarning < 3) {
226 o.code = "foo"; 226 o.code = "foo";
227 o.data = buildUnnamed930(); 227 o.data = buildUnnamed469();
228 o.message = "foo"; 228 o.message = "foo";
229 } 229 }
230 buildCounterAddressesScopedListWarning--; 230 buildCounterAddressesScopedListWarning--;
231 return o; 231 return o;
232 } 232 }
233 233
234 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { 234 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) {
235 buildCounterAddressesScopedListWarning++; 235 buildCounterAddressesScopedListWarning++;
236 if (buildCounterAddressesScopedListWarning < 3) { 236 if (buildCounterAddressesScopedListWarning < 3) {
237 unittest.expect(o.code, unittest.equals('foo')); 237 unittest.expect(o.code, unittest.equals('foo'));
238 checkUnnamed930(o.data); 238 checkUnnamed469(o.data);
239 unittest.expect(o.message, unittest.equals('foo')); 239 unittest.expect(o.message, unittest.equals('foo'));
240 } 240 }
241 buildCounterAddressesScopedListWarning--; 241 buildCounterAddressesScopedListWarning--;
242 } 242 }
243 243
244 core.int buildCounterAddressesScopedList = 0; 244 core.int buildCounterAddressesScopedList = 0;
245 buildAddressesScopedList() { 245 buildAddressesScopedList() {
246 var o = new api.AddressesScopedList(); 246 var o = new api.AddressesScopedList();
247 buildCounterAddressesScopedList++; 247 buildCounterAddressesScopedList++;
248 if (buildCounterAddressesScopedList < 3) { 248 if (buildCounterAddressesScopedList < 3) {
249 o.addresses = buildUnnamed929(); 249 o.addresses = buildUnnamed468();
250 o.warning = buildAddressesScopedListWarning(); 250 o.warning = buildAddressesScopedListWarning();
251 } 251 }
252 buildCounterAddressesScopedList--; 252 buildCounterAddressesScopedList--;
253 return o; 253 return o;
254 } 254 }
255 255
256 checkAddressesScopedList(api.AddressesScopedList o) { 256 checkAddressesScopedList(api.AddressesScopedList o) {
257 buildCounterAddressesScopedList++; 257 buildCounterAddressesScopedList++;
258 if (buildCounterAddressesScopedList < 3) { 258 if (buildCounterAddressesScopedList < 3) {
259 checkUnnamed929(o.addresses); 259 checkUnnamed468(o.addresses);
260 checkAddressesScopedListWarning(o.warning); 260 checkAddressesScopedListWarning(o.warning);
261 } 261 }
262 buildCounterAddressesScopedList--; 262 buildCounterAddressesScopedList--;
263 } 263 }
264 264
265 buildUnnamed931() { 265 buildUnnamed470() {
266 var o = new core.List<core.String>(); 266 var o = new core.List<core.String>();
267 o.add("foo"); 267 o.add("foo");
268 o.add("foo"); 268 o.add("foo");
269 return o; 269 return o;
270 } 270 }
271 271
272 checkUnnamed931(core.List<core.String> o) { 272 checkUnnamed470(core.List<core.String> o) {
273 unittest.expect(o, unittest.hasLength(2)); 273 unittest.expect(o, unittest.hasLength(2));
274 unittest.expect(o[0], unittest.equals('foo')); 274 unittest.expect(o[0], unittest.equals('foo'));
275 unittest.expect(o[1], unittest.equals('foo')); 275 unittest.expect(o[1], unittest.equals('foo'));
276 } 276 }
277 277
278 core.int buildCounterAttachedDisk = 0; 278 core.int buildCounterAttachedDisk = 0;
279 buildAttachedDisk() { 279 buildAttachedDisk() {
280 var o = new api.AttachedDisk(); 280 var o = new api.AttachedDisk();
281 buildCounterAttachedDisk++; 281 buildCounterAttachedDisk++;
282 if (buildCounterAttachedDisk < 3) { 282 if (buildCounterAttachedDisk < 3) {
283 o.autoDelete = true; 283 o.autoDelete = true;
284 o.boot = true; 284 o.boot = true;
285 o.deviceName = "foo"; 285 o.deviceName = "foo";
286 o.index = 42; 286 o.index = 42;
287 o.initializeParams = buildAttachedDiskInitializeParams(); 287 o.initializeParams = buildAttachedDiskInitializeParams();
288 o.interface = "foo"; 288 o.interface = "foo";
289 o.kind = "foo"; 289 o.kind = "foo";
290 o.licenses = buildUnnamed931(); 290 o.licenses = buildUnnamed470();
291 o.mode = "foo"; 291 o.mode = "foo";
292 o.source = "foo"; 292 o.source = "foo";
293 o.type = "foo"; 293 o.type = "foo";
294 } 294 }
295 buildCounterAttachedDisk--; 295 buildCounterAttachedDisk--;
296 return o; 296 return o;
297 } 297 }
298 298
299 checkAttachedDisk(api.AttachedDisk o) { 299 checkAttachedDisk(api.AttachedDisk o) {
300 buildCounterAttachedDisk++; 300 buildCounterAttachedDisk++;
301 if (buildCounterAttachedDisk < 3) { 301 if (buildCounterAttachedDisk < 3) {
302 unittest.expect(o.autoDelete, unittest.isTrue); 302 unittest.expect(o.autoDelete, unittest.isTrue);
303 unittest.expect(o.boot, unittest.isTrue); 303 unittest.expect(o.boot, unittest.isTrue);
304 unittest.expect(o.deviceName, unittest.equals('foo')); 304 unittest.expect(o.deviceName, unittest.equals('foo'));
305 unittest.expect(o.index, unittest.equals(42)); 305 unittest.expect(o.index, unittest.equals(42));
306 checkAttachedDiskInitializeParams(o.initializeParams); 306 checkAttachedDiskInitializeParams(o.initializeParams);
307 unittest.expect(o.interface, unittest.equals('foo')); 307 unittest.expect(o.interface, unittest.equals('foo'));
308 unittest.expect(o.kind, unittest.equals('foo')); 308 unittest.expect(o.kind, unittest.equals('foo'));
309 checkUnnamed931(o.licenses); 309 checkUnnamed470(o.licenses);
310 unittest.expect(o.mode, unittest.equals('foo')); 310 unittest.expect(o.mode, unittest.equals('foo'));
311 unittest.expect(o.source, unittest.equals('foo')); 311 unittest.expect(o.source, unittest.equals('foo'));
312 unittest.expect(o.type, unittest.equals('foo')); 312 unittest.expect(o.type, unittest.equals('foo'));
313 } 313 }
314 buildCounterAttachedDisk--; 314 buildCounterAttachedDisk--;
315 } 315 }
316 316
317 core.int buildCounterAttachedDiskInitializeParams = 0; 317 core.int buildCounterAttachedDiskInitializeParams = 0;
318 buildAttachedDiskInitializeParams() { 318 buildAttachedDiskInitializeParams() {
319 var o = new api.AttachedDiskInitializeParams(); 319 var o = new api.AttachedDiskInitializeParams();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 unittest.expect(o.capacityScaler, unittest.equals(42.0)); 363 unittest.expect(o.capacityScaler, unittest.equals(42.0));
364 unittest.expect(o.description, unittest.equals('foo')); 364 unittest.expect(o.description, unittest.equals('foo'));
365 unittest.expect(o.group, unittest.equals('foo')); 365 unittest.expect(o.group, unittest.equals('foo'));
366 unittest.expect(o.maxRate, unittest.equals(42)); 366 unittest.expect(o.maxRate, unittest.equals(42));
367 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); 367 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0));
368 unittest.expect(o.maxUtilization, unittest.equals(42.0)); 368 unittest.expect(o.maxUtilization, unittest.equals(42.0));
369 } 369 }
370 buildCounterBackend--; 370 buildCounterBackend--;
371 } 371 }
372 372
373 buildUnnamed932() { 373 buildUnnamed471() {
374 var o = new core.List<api.Backend>(); 374 var o = new core.List<api.Backend>();
375 o.add(buildBackend()); 375 o.add(buildBackend());
376 o.add(buildBackend()); 376 o.add(buildBackend());
377 return o; 377 return o;
378 } 378 }
379 379
380 checkUnnamed932(core.List<api.Backend> o) { 380 checkUnnamed471(core.List<api.Backend> o) {
381 unittest.expect(o, unittest.hasLength(2)); 381 unittest.expect(o, unittest.hasLength(2));
382 checkBackend(o[0]); 382 checkBackend(o[0]);
383 checkBackend(o[1]); 383 checkBackend(o[1]);
384 } 384 }
385 385
386 buildUnnamed933() { 386 buildUnnamed472() {
387 var o = new core.List<core.String>(); 387 var o = new core.List<core.String>();
388 o.add("foo"); 388 o.add("foo");
389 o.add("foo"); 389 o.add("foo");
390 return o; 390 return o;
391 } 391 }
392 392
393 checkUnnamed933(core.List<core.String> o) { 393 checkUnnamed472(core.List<core.String> o) {
394 unittest.expect(o, unittest.hasLength(2)); 394 unittest.expect(o, unittest.hasLength(2));
395 unittest.expect(o[0], unittest.equals('foo')); 395 unittest.expect(o[0], unittest.equals('foo'));
396 unittest.expect(o[1], unittest.equals('foo')); 396 unittest.expect(o[1], unittest.equals('foo'));
397 } 397 }
398 398
399 core.int buildCounterBackendService = 0; 399 core.int buildCounterBackendService = 0;
400 buildBackendService() { 400 buildBackendService() {
401 var o = new api.BackendService(); 401 var o = new api.BackendService();
402 buildCounterBackendService++; 402 buildCounterBackendService++;
403 if (buildCounterBackendService < 3) { 403 if (buildCounterBackendService < 3) {
404 o.backends = buildUnnamed932(); 404 o.backends = buildUnnamed471();
405 o.creationTimestamp = "foo"; 405 o.creationTimestamp = "foo";
406 o.description = "foo"; 406 o.description = "foo";
407 o.fingerprint = "foo"; 407 o.fingerprint = "foo";
408 o.healthChecks = buildUnnamed933(); 408 o.healthChecks = buildUnnamed472();
409 o.id = "foo"; 409 o.id = "foo";
410 o.kind = "foo"; 410 o.kind = "foo";
411 o.name = "foo"; 411 o.name = "foo";
412 o.port = 42; 412 o.port = 42;
413 o.portName = "foo"; 413 o.portName = "foo";
414 o.protocol = "foo"; 414 o.protocol = "foo";
415 o.selfLink = "foo"; 415 o.selfLink = "foo";
416 o.timeoutSec = 42; 416 o.timeoutSec = 42;
417 } 417 }
418 buildCounterBackendService--; 418 buildCounterBackendService--;
419 return o; 419 return o;
420 } 420 }
421 421
422 checkBackendService(api.BackendService o) { 422 checkBackendService(api.BackendService o) {
423 buildCounterBackendService++; 423 buildCounterBackendService++;
424 if (buildCounterBackendService < 3) { 424 if (buildCounterBackendService < 3) {
425 checkUnnamed932(o.backends); 425 checkUnnamed471(o.backends);
426 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 426 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
427 unittest.expect(o.description, unittest.equals('foo')); 427 unittest.expect(o.description, unittest.equals('foo'));
428 unittest.expect(o.fingerprint, unittest.equals('foo')); 428 unittest.expect(o.fingerprint, unittest.equals('foo'));
429 checkUnnamed933(o.healthChecks); 429 checkUnnamed472(o.healthChecks);
430 unittest.expect(o.id, unittest.equals('foo')); 430 unittest.expect(o.id, unittest.equals('foo'));
431 unittest.expect(o.kind, unittest.equals('foo')); 431 unittest.expect(o.kind, unittest.equals('foo'));
432 unittest.expect(o.name, unittest.equals('foo')); 432 unittest.expect(o.name, unittest.equals('foo'));
433 unittest.expect(o.port, unittest.equals(42)); 433 unittest.expect(o.port, unittest.equals(42));
434 unittest.expect(o.portName, unittest.equals('foo')); 434 unittest.expect(o.portName, unittest.equals('foo'));
435 unittest.expect(o.protocol, unittest.equals('foo')); 435 unittest.expect(o.protocol, unittest.equals('foo'));
436 unittest.expect(o.selfLink, unittest.equals('foo')); 436 unittest.expect(o.selfLink, unittest.equals('foo'));
437 unittest.expect(o.timeoutSec, unittest.equals(42)); 437 unittest.expect(o.timeoutSec, unittest.equals(42));
438 } 438 }
439 buildCounterBackendService--; 439 buildCounterBackendService--;
440 } 440 }
441 441
442 buildUnnamed934() { 442 buildUnnamed473() {
443 var o = new core.List<api.HealthStatus>(); 443 var o = new core.List<api.HealthStatus>();
444 o.add(buildHealthStatus()); 444 o.add(buildHealthStatus());
445 o.add(buildHealthStatus()); 445 o.add(buildHealthStatus());
446 return o; 446 return o;
447 } 447 }
448 448
449 checkUnnamed934(core.List<api.HealthStatus> o) { 449 checkUnnamed473(core.List<api.HealthStatus> o) {
450 unittest.expect(o, unittest.hasLength(2)); 450 unittest.expect(o, unittest.hasLength(2));
451 checkHealthStatus(o[0]); 451 checkHealthStatus(o[0]);
452 checkHealthStatus(o[1]); 452 checkHealthStatus(o[1]);
453 } 453 }
454 454
455 core.int buildCounterBackendServiceGroupHealth = 0; 455 core.int buildCounterBackendServiceGroupHealth = 0;
456 buildBackendServiceGroupHealth() { 456 buildBackendServiceGroupHealth() {
457 var o = new api.BackendServiceGroupHealth(); 457 var o = new api.BackendServiceGroupHealth();
458 buildCounterBackendServiceGroupHealth++; 458 buildCounterBackendServiceGroupHealth++;
459 if (buildCounterBackendServiceGroupHealth < 3) { 459 if (buildCounterBackendServiceGroupHealth < 3) {
460 o.healthStatus = buildUnnamed934(); 460 o.healthStatus = buildUnnamed473();
461 o.kind = "foo"; 461 o.kind = "foo";
462 } 462 }
463 buildCounterBackendServiceGroupHealth--; 463 buildCounterBackendServiceGroupHealth--;
464 return o; 464 return o;
465 } 465 }
466 466
467 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { 467 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) {
468 buildCounterBackendServiceGroupHealth++; 468 buildCounterBackendServiceGroupHealth++;
469 if (buildCounterBackendServiceGroupHealth < 3) { 469 if (buildCounterBackendServiceGroupHealth < 3) {
470 checkUnnamed934(o.healthStatus); 470 checkUnnamed473(o.healthStatus);
471 unittest.expect(o.kind, unittest.equals('foo')); 471 unittest.expect(o.kind, unittest.equals('foo'));
472 } 472 }
473 buildCounterBackendServiceGroupHealth--; 473 buildCounterBackendServiceGroupHealth--;
474 } 474 }
475 475
476 buildUnnamed935() { 476 buildUnnamed474() {
477 var o = new core.List<api.BackendService>(); 477 var o = new core.List<api.BackendService>();
478 o.add(buildBackendService()); 478 o.add(buildBackendService());
479 o.add(buildBackendService()); 479 o.add(buildBackendService());
480 return o; 480 return o;
481 } 481 }
482 482
483 checkUnnamed935(core.List<api.BackendService> o) { 483 checkUnnamed474(core.List<api.BackendService> o) {
484 unittest.expect(o, unittest.hasLength(2)); 484 unittest.expect(o, unittest.hasLength(2));
485 checkBackendService(o[0]); 485 checkBackendService(o[0]);
486 checkBackendService(o[1]); 486 checkBackendService(o[1]);
487 } 487 }
488 488
489 core.int buildCounterBackendServiceList = 0; 489 core.int buildCounterBackendServiceList = 0;
490 buildBackendServiceList() { 490 buildBackendServiceList() {
491 var o = new api.BackendServiceList(); 491 var o = new api.BackendServiceList();
492 buildCounterBackendServiceList++; 492 buildCounterBackendServiceList++;
493 if (buildCounterBackendServiceList < 3) { 493 if (buildCounterBackendServiceList < 3) {
494 o.id = "foo"; 494 o.id = "foo";
495 o.items = buildUnnamed935(); 495 o.items = buildUnnamed474();
496 o.kind = "foo"; 496 o.kind = "foo";
497 o.nextPageToken = "foo"; 497 o.nextPageToken = "foo";
498 o.selfLink = "foo"; 498 o.selfLink = "foo";
499 } 499 }
500 buildCounterBackendServiceList--; 500 buildCounterBackendServiceList--;
501 return o; 501 return o;
502 } 502 }
503 503
504 checkBackendServiceList(api.BackendServiceList o) { 504 checkBackendServiceList(api.BackendServiceList o) {
505 buildCounterBackendServiceList++; 505 buildCounterBackendServiceList++;
506 if (buildCounterBackendServiceList < 3) { 506 if (buildCounterBackendServiceList < 3) {
507 unittest.expect(o.id, unittest.equals('foo')); 507 unittest.expect(o.id, unittest.equals('foo'));
508 checkUnnamed935(o.items); 508 checkUnnamed474(o.items);
509 unittest.expect(o.kind, unittest.equals('foo')); 509 unittest.expect(o.kind, unittest.equals('foo'));
510 unittest.expect(o.nextPageToken, unittest.equals('foo')); 510 unittest.expect(o.nextPageToken, unittest.equals('foo'));
511 unittest.expect(o.selfLink, unittest.equals('foo')); 511 unittest.expect(o.selfLink, unittest.equals('foo'));
512 } 512 }
513 buildCounterBackendServiceList--; 513 buildCounterBackendServiceList--;
514 } 514 }
515 515
516 core.int buildCounterDeprecationStatus = 0; 516 core.int buildCounterDeprecationStatus = 0;
517 buildDeprecationStatus() { 517 buildDeprecationStatus() {
518 var o = new api.DeprecationStatus(); 518 var o = new api.DeprecationStatus();
(...skipping 14 matching lines...) Expand all
533 if (buildCounterDeprecationStatus < 3) { 533 if (buildCounterDeprecationStatus < 3) {
534 unittest.expect(o.deleted, unittest.equals('foo')); 534 unittest.expect(o.deleted, unittest.equals('foo'));
535 unittest.expect(o.deprecated, unittest.equals('foo')); 535 unittest.expect(o.deprecated, unittest.equals('foo'));
536 unittest.expect(o.obsolete, unittest.equals('foo')); 536 unittest.expect(o.obsolete, unittest.equals('foo'));
537 unittest.expect(o.replacement, unittest.equals('foo')); 537 unittest.expect(o.replacement, unittest.equals('foo'));
538 unittest.expect(o.state, unittest.equals('foo')); 538 unittest.expect(o.state, unittest.equals('foo'));
539 } 539 }
540 buildCounterDeprecationStatus--; 540 buildCounterDeprecationStatus--;
541 } 541 }
542 542
543 buildUnnamed936() { 543 buildUnnamed475() {
544 var o = new core.List<core.String>(); 544 var o = new core.List<core.String>();
545 o.add("foo"); 545 o.add("foo");
546 o.add("foo"); 546 o.add("foo");
547 return o; 547 return o;
548 } 548 }
549 549
550 checkUnnamed936(core.List<core.String> o) { 550 checkUnnamed475(core.List<core.String> o) {
551 unittest.expect(o, unittest.hasLength(2)); 551 unittest.expect(o, unittest.hasLength(2));
552 unittest.expect(o[0], unittest.equals('foo')); 552 unittest.expect(o[0], unittest.equals('foo'));
553 unittest.expect(o[1], unittest.equals('foo')); 553 unittest.expect(o[1], unittest.equals('foo'));
554 } 554 }
555 555
556 core.int buildCounterDisk = 0; 556 core.int buildCounterDisk = 0;
557 buildDisk() { 557 buildDisk() {
558 var o = new api.Disk(); 558 var o = new api.Disk();
559 buildCounterDisk++; 559 buildCounterDisk++;
560 if (buildCounterDisk < 3) { 560 if (buildCounterDisk < 3) {
561 o.creationTimestamp = "foo"; 561 o.creationTimestamp = "foo";
562 o.description = "foo"; 562 o.description = "foo";
563 o.id = "foo"; 563 o.id = "foo";
564 o.kind = "foo"; 564 o.kind = "foo";
565 o.licenses = buildUnnamed936(); 565 o.licenses = buildUnnamed475();
566 o.name = "foo"; 566 o.name = "foo";
567 o.options = "foo"; 567 o.options = "foo";
568 o.selfLink = "foo"; 568 o.selfLink = "foo";
569 o.sizeGb = "foo"; 569 o.sizeGb = "foo";
570 o.sourceImage = "foo"; 570 o.sourceImage = "foo";
571 o.sourceImageId = "foo"; 571 o.sourceImageId = "foo";
572 o.sourceSnapshot = "foo"; 572 o.sourceSnapshot = "foo";
573 o.sourceSnapshotId = "foo"; 573 o.sourceSnapshotId = "foo";
574 o.status = "foo"; 574 o.status = "foo";
575 o.type = "foo"; 575 o.type = "foo";
576 o.zone = "foo"; 576 o.zone = "foo";
577 } 577 }
578 buildCounterDisk--; 578 buildCounterDisk--;
579 return o; 579 return o;
580 } 580 }
581 581
582 checkDisk(api.Disk o) { 582 checkDisk(api.Disk o) {
583 buildCounterDisk++; 583 buildCounterDisk++;
584 if (buildCounterDisk < 3) { 584 if (buildCounterDisk < 3) {
585 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 585 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
586 unittest.expect(o.description, unittest.equals('foo')); 586 unittest.expect(o.description, unittest.equals('foo'));
587 unittest.expect(o.id, unittest.equals('foo')); 587 unittest.expect(o.id, unittest.equals('foo'));
588 unittest.expect(o.kind, unittest.equals('foo')); 588 unittest.expect(o.kind, unittest.equals('foo'));
589 checkUnnamed936(o.licenses); 589 checkUnnamed475(o.licenses);
590 unittest.expect(o.name, unittest.equals('foo')); 590 unittest.expect(o.name, unittest.equals('foo'));
591 unittest.expect(o.options, unittest.equals('foo')); 591 unittest.expect(o.options, unittest.equals('foo'));
592 unittest.expect(o.selfLink, unittest.equals('foo')); 592 unittest.expect(o.selfLink, unittest.equals('foo'));
593 unittest.expect(o.sizeGb, unittest.equals('foo')); 593 unittest.expect(o.sizeGb, unittest.equals('foo'));
594 unittest.expect(o.sourceImage, unittest.equals('foo')); 594 unittest.expect(o.sourceImage, unittest.equals('foo'));
595 unittest.expect(o.sourceImageId, unittest.equals('foo')); 595 unittest.expect(o.sourceImageId, unittest.equals('foo'));
596 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); 596 unittest.expect(o.sourceSnapshot, unittest.equals('foo'));
597 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); 597 unittest.expect(o.sourceSnapshotId, unittest.equals('foo'));
598 unittest.expect(o.status, unittest.equals('foo')); 598 unittest.expect(o.status, unittest.equals('foo'));
599 unittest.expect(o.type, unittest.equals('foo')); 599 unittest.expect(o.type, unittest.equals('foo'));
600 unittest.expect(o.zone, unittest.equals('foo')); 600 unittest.expect(o.zone, unittest.equals('foo'));
601 } 601 }
602 buildCounterDisk--; 602 buildCounterDisk--;
603 } 603 }
604 604
605 buildUnnamed937() { 605 buildUnnamed476() {
606 var o = new core.Map<core.String, api.DisksScopedList>(); 606 var o = new core.Map<core.String, api.DisksScopedList>();
607 o["x"] = buildDisksScopedList(); 607 o["x"] = buildDisksScopedList();
608 o["y"] = buildDisksScopedList(); 608 o["y"] = buildDisksScopedList();
609 return o; 609 return o;
610 } 610 }
611 611
612 checkUnnamed937(core.Map<core.String, api.DisksScopedList> o) { 612 checkUnnamed476(core.Map<core.String, api.DisksScopedList> o) {
613 unittest.expect(o, unittest.hasLength(2)); 613 unittest.expect(o, unittest.hasLength(2));
614 checkDisksScopedList(o["x"]); 614 checkDisksScopedList(o["x"]);
615 checkDisksScopedList(o["y"]); 615 checkDisksScopedList(o["y"]);
616 } 616 }
617 617
618 core.int buildCounterDiskAggregatedList = 0; 618 core.int buildCounterDiskAggregatedList = 0;
619 buildDiskAggregatedList() { 619 buildDiskAggregatedList() {
620 var o = new api.DiskAggregatedList(); 620 var o = new api.DiskAggregatedList();
621 buildCounterDiskAggregatedList++; 621 buildCounterDiskAggregatedList++;
622 if (buildCounterDiskAggregatedList < 3) { 622 if (buildCounterDiskAggregatedList < 3) {
623 o.id = "foo"; 623 o.id = "foo";
624 o.items = buildUnnamed937(); 624 o.items = buildUnnamed476();
625 o.kind = "foo"; 625 o.kind = "foo";
626 o.nextPageToken = "foo"; 626 o.nextPageToken = "foo";
627 o.selfLink = "foo"; 627 o.selfLink = "foo";
628 } 628 }
629 buildCounterDiskAggregatedList--; 629 buildCounterDiskAggregatedList--;
630 return o; 630 return o;
631 } 631 }
632 632
633 checkDiskAggregatedList(api.DiskAggregatedList o) { 633 checkDiskAggregatedList(api.DiskAggregatedList o) {
634 buildCounterDiskAggregatedList++; 634 buildCounterDiskAggregatedList++;
635 if (buildCounterDiskAggregatedList < 3) { 635 if (buildCounterDiskAggregatedList < 3) {
636 unittest.expect(o.id, unittest.equals('foo')); 636 unittest.expect(o.id, unittest.equals('foo'));
637 checkUnnamed937(o.items); 637 checkUnnamed476(o.items);
638 unittest.expect(o.kind, unittest.equals('foo')); 638 unittest.expect(o.kind, unittest.equals('foo'));
639 unittest.expect(o.nextPageToken, unittest.equals('foo')); 639 unittest.expect(o.nextPageToken, unittest.equals('foo'));
640 unittest.expect(o.selfLink, unittest.equals('foo')); 640 unittest.expect(o.selfLink, unittest.equals('foo'));
641 } 641 }
642 buildCounterDiskAggregatedList--; 642 buildCounterDiskAggregatedList--;
643 } 643 }
644 644
645 buildUnnamed938() { 645 buildUnnamed477() {
646 var o = new core.List<api.Disk>(); 646 var o = new core.List<api.Disk>();
647 o.add(buildDisk()); 647 o.add(buildDisk());
648 o.add(buildDisk()); 648 o.add(buildDisk());
649 return o; 649 return o;
650 } 650 }
651 651
652 checkUnnamed938(core.List<api.Disk> o) { 652 checkUnnamed477(core.List<api.Disk> o) {
653 unittest.expect(o, unittest.hasLength(2)); 653 unittest.expect(o, unittest.hasLength(2));
654 checkDisk(o[0]); 654 checkDisk(o[0]);
655 checkDisk(o[1]); 655 checkDisk(o[1]);
656 } 656 }
657 657
658 core.int buildCounterDiskList = 0; 658 core.int buildCounterDiskList = 0;
659 buildDiskList() { 659 buildDiskList() {
660 var o = new api.DiskList(); 660 var o = new api.DiskList();
661 buildCounterDiskList++; 661 buildCounterDiskList++;
662 if (buildCounterDiskList < 3) { 662 if (buildCounterDiskList < 3) {
663 o.id = "foo"; 663 o.id = "foo";
664 o.items = buildUnnamed938(); 664 o.items = buildUnnamed477();
665 o.kind = "foo"; 665 o.kind = "foo";
666 o.nextPageToken = "foo"; 666 o.nextPageToken = "foo";
667 o.selfLink = "foo"; 667 o.selfLink = "foo";
668 } 668 }
669 buildCounterDiskList--; 669 buildCounterDiskList--;
670 return o; 670 return o;
671 } 671 }
672 672
673 checkDiskList(api.DiskList o) { 673 checkDiskList(api.DiskList o) {
674 buildCounterDiskList++; 674 buildCounterDiskList++;
675 if (buildCounterDiskList < 3) { 675 if (buildCounterDiskList < 3) {
676 unittest.expect(o.id, unittest.equals('foo')); 676 unittest.expect(o.id, unittest.equals('foo'));
677 checkUnnamed938(o.items); 677 checkUnnamed477(o.items);
678 unittest.expect(o.kind, unittest.equals('foo')); 678 unittest.expect(o.kind, unittest.equals('foo'));
679 unittest.expect(o.nextPageToken, unittest.equals('foo')); 679 unittest.expect(o.nextPageToken, unittest.equals('foo'));
680 unittest.expect(o.selfLink, unittest.equals('foo')); 680 unittest.expect(o.selfLink, unittest.equals('foo'));
681 } 681 }
682 buildCounterDiskList--; 682 buildCounterDiskList--;
683 } 683 }
684 684
685 core.int buildCounterDiskType = 0; 685 core.int buildCounterDiskType = 0;
686 buildDiskType() { 686 buildDiskType() {
687 var o = new api.DiskType(); 687 var o = new api.DiskType();
(...skipping 24 matching lines...) Expand all
712 unittest.expect(o.id, unittest.equals('foo')); 712 unittest.expect(o.id, unittest.equals('foo'));
713 unittest.expect(o.kind, unittest.equals('foo')); 713 unittest.expect(o.kind, unittest.equals('foo'));
714 unittest.expect(o.name, unittest.equals('foo')); 714 unittest.expect(o.name, unittest.equals('foo'));
715 unittest.expect(o.selfLink, unittest.equals('foo')); 715 unittest.expect(o.selfLink, unittest.equals('foo'));
716 unittest.expect(o.validDiskSize, unittest.equals('foo')); 716 unittest.expect(o.validDiskSize, unittest.equals('foo'));
717 unittest.expect(o.zone, unittest.equals('foo')); 717 unittest.expect(o.zone, unittest.equals('foo'));
718 } 718 }
719 buildCounterDiskType--; 719 buildCounterDiskType--;
720 } 720 }
721 721
722 buildUnnamed939() { 722 buildUnnamed478() {
723 var o = new core.Map<core.String, api.DiskTypesScopedList>(); 723 var o = new core.Map<core.String, api.DiskTypesScopedList>();
724 o["x"] = buildDiskTypesScopedList(); 724 o["x"] = buildDiskTypesScopedList();
725 o["y"] = buildDiskTypesScopedList(); 725 o["y"] = buildDiskTypesScopedList();
726 return o; 726 return o;
727 } 727 }
728 728
729 checkUnnamed939(core.Map<core.String, api.DiskTypesScopedList> o) { 729 checkUnnamed478(core.Map<core.String, api.DiskTypesScopedList> o) {
730 unittest.expect(o, unittest.hasLength(2)); 730 unittest.expect(o, unittest.hasLength(2));
731 checkDiskTypesScopedList(o["x"]); 731 checkDiskTypesScopedList(o["x"]);
732 checkDiskTypesScopedList(o["y"]); 732 checkDiskTypesScopedList(o["y"]);
733 } 733 }
734 734
735 core.int buildCounterDiskTypeAggregatedList = 0; 735 core.int buildCounterDiskTypeAggregatedList = 0;
736 buildDiskTypeAggregatedList() { 736 buildDiskTypeAggregatedList() {
737 var o = new api.DiskTypeAggregatedList(); 737 var o = new api.DiskTypeAggregatedList();
738 buildCounterDiskTypeAggregatedList++; 738 buildCounterDiskTypeAggregatedList++;
739 if (buildCounterDiskTypeAggregatedList < 3) { 739 if (buildCounterDiskTypeAggregatedList < 3) {
740 o.id = "foo"; 740 o.id = "foo";
741 o.items = buildUnnamed939(); 741 o.items = buildUnnamed478();
742 o.kind = "foo"; 742 o.kind = "foo";
743 o.nextPageToken = "foo"; 743 o.nextPageToken = "foo";
744 o.selfLink = "foo"; 744 o.selfLink = "foo";
745 } 745 }
746 buildCounterDiskTypeAggregatedList--; 746 buildCounterDiskTypeAggregatedList--;
747 return o; 747 return o;
748 } 748 }
749 749
750 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { 750 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) {
751 buildCounterDiskTypeAggregatedList++; 751 buildCounterDiskTypeAggregatedList++;
752 if (buildCounterDiskTypeAggregatedList < 3) { 752 if (buildCounterDiskTypeAggregatedList < 3) {
753 unittest.expect(o.id, unittest.equals('foo')); 753 unittest.expect(o.id, unittest.equals('foo'));
754 checkUnnamed939(o.items); 754 checkUnnamed478(o.items);
755 unittest.expect(o.kind, unittest.equals('foo')); 755 unittest.expect(o.kind, unittest.equals('foo'));
756 unittest.expect(o.nextPageToken, unittest.equals('foo')); 756 unittest.expect(o.nextPageToken, unittest.equals('foo'));
757 unittest.expect(o.selfLink, unittest.equals('foo')); 757 unittest.expect(o.selfLink, unittest.equals('foo'));
758 } 758 }
759 buildCounterDiskTypeAggregatedList--; 759 buildCounterDiskTypeAggregatedList--;
760 } 760 }
761 761
762 buildUnnamed940() { 762 buildUnnamed479() {
763 var o = new core.List<api.DiskType>(); 763 var o = new core.List<api.DiskType>();
764 o.add(buildDiskType()); 764 o.add(buildDiskType());
765 o.add(buildDiskType()); 765 o.add(buildDiskType());
766 return o; 766 return o;
767 } 767 }
768 768
769 checkUnnamed940(core.List<api.DiskType> o) { 769 checkUnnamed479(core.List<api.DiskType> o) {
770 unittest.expect(o, unittest.hasLength(2)); 770 unittest.expect(o, unittest.hasLength(2));
771 checkDiskType(o[0]); 771 checkDiskType(o[0]);
772 checkDiskType(o[1]); 772 checkDiskType(o[1]);
773 } 773 }
774 774
775 core.int buildCounterDiskTypeList = 0; 775 core.int buildCounterDiskTypeList = 0;
776 buildDiskTypeList() { 776 buildDiskTypeList() {
777 var o = new api.DiskTypeList(); 777 var o = new api.DiskTypeList();
778 buildCounterDiskTypeList++; 778 buildCounterDiskTypeList++;
779 if (buildCounterDiskTypeList < 3) { 779 if (buildCounterDiskTypeList < 3) {
780 o.id = "foo"; 780 o.id = "foo";
781 o.items = buildUnnamed940(); 781 o.items = buildUnnamed479();
782 o.kind = "foo"; 782 o.kind = "foo";
783 o.nextPageToken = "foo"; 783 o.nextPageToken = "foo";
784 o.selfLink = "foo"; 784 o.selfLink = "foo";
785 } 785 }
786 buildCounterDiskTypeList--; 786 buildCounterDiskTypeList--;
787 return o; 787 return o;
788 } 788 }
789 789
790 checkDiskTypeList(api.DiskTypeList o) { 790 checkDiskTypeList(api.DiskTypeList o) {
791 buildCounterDiskTypeList++; 791 buildCounterDiskTypeList++;
792 if (buildCounterDiskTypeList < 3) { 792 if (buildCounterDiskTypeList < 3) {
793 unittest.expect(o.id, unittest.equals('foo')); 793 unittest.expect(o.id, unittest.equals('foo'));
794 checkUnnamed940(o.items); 794 checkUnnamed479(o.items);
795 unittest.expect(o.kind, unittest.equals('foo')); 795 unittest.expect(o.kind, unittest.equals('foo'));
796 unittest.expect(o.nextPageToken, unittest.equals('foo')); 796 unittest.expect(o.nextPageToken, unittest.equals('foo'));
797 unittest.expect(o.selfLink, unittest.equals('foo')); 797 unittest.expect(o.selfLink, unittest.equals('foo'));
798 } 798 }
799 buildCounterDiskTypeList--; 799 buildCounterDiskTypeList--;
800 } 800 }
801 801
802 buildUnnamed941() { 802 buildUnnamed480() {
803 var o = new core.List<api.DiskType>(); 803 var o = new core.List<api.DiskType>();
804 o.add(buildDiskType()); 804 o.add(buildDiskType());
805 o.add(buildDiskType()); 805 o.add(buildDiskType());
806 return o; 806 return o;
807 } 807 }
808 808
809 checkUnnamed941(core.List<api.DiskType> o) { 809 checkUnnamed480(core.List<api.DiskType> o) {
810 unittest.expect(o, unittest.hasLength(2)); 810 unittest.expect(o, unittest.hasLength(2));
811 checkDiskType(o[0]); 811 checkDiskType(o[0]);
812 checkDiskType(o[1]); 812 checkDiskType(o[1]);
813 } 813 }
814 814
815 core.int buildCounterDiskTypesScopedListWarningData = 0; 815 core.int buildCounterDiskTypesScopedListWarningData = 0;
816 buildDiskTypesScopedListWarningData() { 816 buildDiskTypesScopedListWarningData() {
817 var o = new api.DiskTypesScopedListWarningData(); 817 var o = new api.DiskTypesScopedListWarningData();
818 buildCounterDiskTypesScopedListWarningData++; 818 buildCounterDiskTypesScopedListWarningData++;
819 if (buildCounterDiskTypesScopedListWarningData < 3) { 819 if (buildCounterDiskTypesScopedListWarningData < 3) {
820 o.key = "foo"; 820 o.key = "foo";
821 o.value = "foo"; 821 o.value = "foo";
822 } 822 }
823 buildCounterDiskTypesScopedListWarningData--; 823 buildCounterDiskTypesScopedListWarningData--;
824 return o; 824 return o;
825 } 825 }
826 826
827 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { 827 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) {
828 buildCounterDiskTypesScopedListWarningData++; 828 buildCounterDiskTypesScopedListWarningData++;
829 if (buildCounterDiskTypesScopedListWarningData < 3) { 829 if (buildCounterDiskTypesScopedListWarningData < 3) {
830 unittest.expect(o.key, unittest.equals('foo')); 830 unittest.expect(o.key, unittest.equals('foo'));
831 unittest.expect(o.value, unittest.equals('foo')); 831 unittest.expect(o.value, unittest.equals('foo'));
832 } 832 }
833 buildCounterDiskTypesScopedListWarningData--; 833 buildCounterDiskTypesScopedListWarningData--;
834 } 834 }
835 835
836 buildUnnamed942() { 836 buildUnnamed481() {
837 var o = new core.List<api.DiskTypesScopedListWarningData>(); 837 var o = new core.List<api.DiskTypesScopedListWarningData>();
838 o.add(buildDiskTypesScopedListWarningData()); 838 o.add(buildDiskTypesScopedListWarningData());
839 o.add(buildDiskTypesScopedListWarningData()); 839 o.add(buildDiskTypesScopedListWarningData());
840 return o; 840 return o;
841 } 841 }
842 842
843 checkUnnamed942(core.List<api.DiskTypesScopedListWarningData> o) { 843 checkUnnamed481(core.List<api.DiskTypesScopedListWarningData> o) {
844 unittest.expect(o, unittest.hasLength(2)); 844 unittest.expect(o, unittest.hasLength(2));
845 checkDiskTypesScopedListWarningData(o[0]); 845 checkDiskTypesScopedListWarningData(o[0]);
846 checkDiskTypesScopedListWarningData(o[1]); 846 checkDiskTypesScopedListWarningData(o[1]);
847 } 847 }
848 848
849 core.int buildCounterDiskTypesScopedListWarning = 0; 849 core.int buildCounterDiskTypesScopedListWarning = 0;
850 buildDiskTypesScopedListWarning() { 850 buildDiskTypesScopedListWarning() {
851 var o = new api.DiskTypesScopedListWarning(); 851 var o = new api.DiskTypesScopedListWarning();
852 buildCounterDiskTypesScopedListWarning++; 852 buildCounterDiskTypesScopedListWarning++;
853 if (buildCounterDiskTypesScopedListWarning < 3) { 853 if (buildCounterDiskTypesScopedListWarning < 3) {
854 o.code = "foo"; 854 o.code = "foo";
855 o.data = buildUnnamed942(); 855 o.data = buildUnnamed481();
856 o.message = "foo"; 856 o.message = "foo";
857 } 857 }
858 buildCounterDiskTypesScopedListWarning--; 858 buildCounterDiskTypesScopedListWarning--;
859 return o; 859 return o;
860 } 860 }
861 861
862 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { 862 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) {
863 buildCounterDiskTypesScopedListWarning++; 863 buildCounterDiskTypesScopedListWarning++;
864 if (buildCounterDiskTypesScopedListWarning < 3) { 864 if (buildCounterDiskTypesScopedListWarning < 3) {
865 unittest.expect(o.code, unittest.equals('foo')); 865 unittest.expect(o.code, unittest.equals('foo'));
866 checkUnnamed942(o.data); 866 checkUnnamed481(o.data);
867 unittest.expect(o.message, unittest.equals('foo')); 867 unittest.expect(o.message, unittest.equals('foo'));
868 } 868 }
869 buildCounterDiskTypesScopedListWarning--; 869 buildCounterDiskTypesScopedListWarning--;
870 } 870 }
871 871
872 core.int buildCounterDiskTypesScopedList = 0; 872 core.int buildCounterDiskTypesScopedList = 0;
873 buildDiskTypesScopedList() { 873 buildDiskTypesScopedList() {
874 var o = new api.DiskTypesScopedList(); 874 var o = new api.DiskTypesScopedList();
875 buildCounterDiskTypesScopedList++; 875 buildCounterDiskTypesScopedList++;
876 if (buildCounterDiskTypesScopedList < 3) { 876 if (buildCounterDiskTypesScopedList < 3) {
877 o.diskTypes = buildUnnamed941(); 877 o.diskTypes = buildUnnamed480();
878 o.warning = buildDiskTypesScopedListWarning(); 878 o.warning = buildDiskTypesScopedListWarning();
879 } 879 }
880 buildCounterDiskTypesScopedList--; 880 buildCounterDiskTypesScopedList--;
881 return o; 881 return o;
882 } 882 }
883 883
884 checkDiskTypesScopedList(api.DiskTypesScopedList o) { 884 checkDiskTypesScopedList(api.DiskTypesScopedList o) {
885 buildCounterDiskTypesScopedList++; 885 buildCounterDiskTypesScopedList++;
886 if (buildCounterDiskTypesScopedList < 3) { 886 if (buildCounterDiskTypesScopedList < 3) {
887 checkUnnamed941(o.diskTypes); 887 checkUnnamed480(o.diskTypes);
888 checkDiskTypesScopedListWarning(o.warning); 888 checkDiskTypesScopedListWarning(o.warning);
889 } 889 }
890 buildCounterDiskTypesScopedList--; 890 buildCounterDiskTypesScopedList--;
891 } 891 }
892 892
893 buildUnnamed943() { 893 buildUnnamed482() {
894 var o = new core.List<api.Disk>(); 894 var o = new core.List<api.Disk>();
895 o.add(buildDisk()); 895 o.add(buildDisk());
896 o.add(buildDisk()); 896 o.add(buildDisk());
897 return o; 897 return o;
898 } 898 }
899 899
900 checkUnnamed943(core.List<api.Disk> o) { 900 checkUnnamed482(core.List<api.Disk> o) {
901 unittest.expect(o, unittest.hasLength(2)); 901 unittest.expect(o, unittest.hasLength(2));
902 checkDisk(o[0]); 902 checkDisk(o[0]);
903 checkDisk(o[1]); 903 checkDisk(o[1]);
904 } 904 }
905 905
906 core.int buildCounterDisksScopedListWarningData = 0; 906 core.int buildCounterDisksScopedListWarningData = 0;
907 buildDisksScopedListWarningData() { 907 buildDisksScopedListWarningData() {
908 var o = new api.DisksScopedListWarningData(); 908 var o = new api.DisksScopedListWarningData();
909 buildCounterDisksScopedListWarningData++; 909 buildCounterDisksScopedListWarningData++;
910 if (buildCounterDisksScopedListWarningData < 3) { 910 if (buildCounterDisksScopedListWarningData < 3) {
911 o.key = "foo"; 911 o.key = "foo";
912 o.value = "foo"; 912 o.value = "foo";
913 } 913 }
914 buildCounterDisksScopedListWarningData--; 914 buildCounterDisksScopedListWarningData--;
915 return o; 915 return o;
916 } 916 }
917 917
918 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { 918 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) {
919 buildCounterDisksScopedListWarningData++; 919 buildCounterDisksScopedListWarningData++;
920 if (buildCounterDisksScopedListWarningData < 3) { 920 if (buildCounterDisksScopedListWarningData < 3) {
921 unittest.expect(o.key, unittest.equals('foo')); 921 unittest.expect(o.key, unittest.equals('foo'));
922 unittest.expect(o.value, unittest.equals('foo')); 922 unittest.expect(o.value, unittest.equals('foo'));
923 } 923 }
924 buildCounterDisksScopedListWarningData--; 924 buildCounterDisksScopedListWarningData--;
925 } 925 }
926 926
927 buildUnnamed944() { 927 buildUnnamed483() {
928 var o = new core.List<api.DisksScopedListWarningData>(); 928 var o = new core.List<api.DisksScopedListWarningData>();
929 o.add(buildDisksScopedListWarningData()); 929 o.add(buildDisksScopedListWarningData());
930 o.add(buildDisksScopedListWarningData()); 930 o.add(buildDisksScopedListWarningData());
931 return o; 931 return o;
932 } 932 }
933 933
934 checkUnnamed944(core.List<api.DisksScopedListWarningData> o) { 934 checkUnnamed483(core.List<api.DisksScopedListWarningData> o) {
935 unittest.expect(o, unittest.hasLength(2)); 935 unittest.expect(o, unittest.hasLength(2));
936 checkDisksScopedListWarningData(o[0]); 936 checkDisksScopedListWarningData(o[0]);
937 checkDisksScopedListWarningData(o[1]); 937 checkDisksScopedListWarningData(o[1]);
938 } 938 }
939 939
940 core.int buildCounterDisksScopedListWarning = 0; 940 core.int buildCounterDisksScopedListWarning = 0;
941 buildDisksScopedListWarning() { 941 buildDisksScopedListWarning() {
942 var o = new api.DisksScopedListWarning(); 942 var o = new api.DisksScopedListWarning();
943 buildCounterDisksScopedListWarning++; 943 buildCounterDisksScopedListWarning++;
944 if (buildCounterDisksScopedListWarning < 3) { 944 if (buildCounterDisksScopedListWarning < 3) {
945 o.code = "foo"; 945 o.code = "foo";
946 o.data = buildUnnamed944(); 946 o.data = buildUnnamed483();
947 o.message = "foo"; 947 o.message = "foo";
948 } 948 }
949 buildCounterDisksScopedListWarning--; 949 buildCounterDisksScopedListWarning--;
950 return o; 950 return o;
951 } 951 }
952 952
953 checkDisksScopedListWarning(api.DisksScopedListWarning o) { 953 checkDisksScopedListWarning(api.DisksScopedListWarning o) {
954 buildCounterDisksScopedListWarning++; 954 buildCounterDisksScopedListWarning++;
955 if (buildCounterDisksScopedListWarning < 3) { 955 if (buildCounterDisksScopedListWarning < 3) {
956 unittest.expect(o.code, unittest.equals('foo')); 956 unittest.expect(o.code, unittest.equals('foo'));
957 checkUnnamed944(o.data); 957 checkUnnamed483(o.data);
958 unittest.expect(o.message, unittest.equals('foo')); 958 unittest.expect(o.message, unittest.equals('foo'));
959 } 959 }
960 buildCounterDisksScopedListWarning--; 960 buildCounterDisksScopedListWarning--;
961 } 961 }
962 962
963 core.int buildCounterDisksScopedList = 0; 963 core.int buildCounterDisksScopedList = 0;
964 buildDisksScopedList() { 964 buildDisksScopedList() {
965 var o = new api.DisksScopedList(); 965 var o = new api.DisksScopedList();
966 buildCounterDisksScopedList++; 966 buildCounterDisksScopedList++;
967 if (buildCounterDisksScopedList < 3) { 967 if (buildCounterDisksScopedList < 3) {
968 o.disks = buildUnnamed943(); 968 o.disks = buildUnnamed482();
969 o.warning = buildDisksScopedListWarning(); 969 o.warning = buildDisksScopedListWarning();
970 } 970 }
971 buildCounterDisksScopedList--; 971 buildCounterDisksScopedList--;
972 return o; 972 return o;
973 } 973 }
974 974
975 checkDisksScopedList(api.DisksScopedList o) { 975 checkDisksScopedList(api.DisksScopedList o) {
976 buildCounterDisksScopedList++; 976 buildCounterDisksScopedList++;
977 if (buildCounterDisksScopedList < 3) { 977 if (buildCounterDisksScopedList < 3) {
978 checkUnnamed943(o.disks); 978 checkUnnamed482(o.disks);
979 checkDisksScopedListWarning(o.warning); 979 checkDisksScopedListWarning(o.warning);
980 } 980 }
981 buildCounterDisksScopedList--; 981 buildCounterDisksScopedList--;
982 } 982 }
983 983
984 buildUnnamed945() { 984 buildUnnamed484() {
985 var o = new core.List<core.String>(); 985 var o = new core.List<core.String>();
986 o.add("foo"); 986 o.add("foo");
987 o.add("foo"); 987 o.add("foo");
988 return o; 988 return o;
989 } 989 }
990 990
991 checkUnnamed945(core.List<core.String> o) { 991 checkUnnamed484(core.List<core.String> o) {
992 unittest.expect(o, unittest.hasLength(2)); 992 unittest.expect(o, unittest.hasLength(2));
993 unittest.expect(o[0], unittest.equals('foo')); 993 unittest.expect(o[0], unittest.equals('foo'));
994 unittest.expect(o[1], unittest.equals('foo')); 994 unittest.expect(o[1], unittest.equals('foo'));
995 } 995 }
996 996
997 core.int buildCounterFirewallAllowed = 0; 997 core.int buildCounterFirewallAllowed = 0;
998 buildFirewallAllowed() { 998 buildFirewallAllowed() {
999 var o = new api.FirewallAllowed(); 999 var o = new api.FirewallAllowed();
1000 buildCounterFirewallAllowed++; 1000 buildCounterFirewallAllowed++;
1001 if (buildCounterFirewallAllowed < 3) { 1001 if (buildCounterFirewallAllowed < 3) {
1002 o.IPProtocol = "foo"; 1002 o.IPProtocol = "foo";
1003 o.ports = buildUnnamed945(); 1003 o.ports = buildUnnamed484();
1004 } 1004 }
1005 buildCounterFirewallAllowed--; 1005 buildCounterFirewallAllowed--;
1006 return o; 1006 return o;
1007 } 1007 }
1008 1008
1009 checkFirewallAllowed(api.FirewallAllowed o) { 1009 checkFirewallAllowed(api.FirewallAllowed o) {
1010 buildCounterFirewallAllowed++; 1010 buildCounterFirewallAllowed++;
1011 if (buildCounterFirewallAllowed < 3) { 1011 if (buildCounterFirewallAllowed < 3) {
1012 unittest.expect(o.IPProtocol, unittest.equals('foo')); 1012 unittest.expect(o.IPProtocol, unittest.equals('foo'));
1013 checkUnnamed945(o.ports); 1013 checkUnnamed484(o.ports);
1014 } 1014 }
1015 buildCounterFirewallAllowed--; 1015 buildCounterFirewallAllowed--;
1016 } 1016 }
1017 1017
1018 buildUnnamed946() { 1018 buildUnnamed485() {
1019 var o = new core.List<api.FirewallAllowed>(); 1019 var o = new core.List<api.FirewallAllowed>();
1020 o.add(buildFirewallAllowed()); 1020 o.add(buildFirewallAllowed());
1021 o.add(buildFirewallAllowed()); 1021 o.add(buildFirewallAllowed());
1022 return o; 1022 return o;
1023 } 1023 }
1024 1024
1025 checkUnnamed946(core.List<api.FirewallAllowed> o) { 1025 checkUnnamed485(core.List<api.FirewallAllowed> o) {
1026 unittest.expect(o, unittest.hasLength(2)); 1026 unittest.expect(o, unittest.hasLength(2));
1027 checkFirewallAllowed(o[0]); 1027 checkFirewallAllowed(o[0]);
1028 checkFirewallAllowed(o[1]); 1028 checkFirewallAllowed(o[1]);
1029 } 1029 }
1030 1030
1031 buildUnnamed947() { 1031 buildUnnamed486() {
1032 var o = new core.List<core.String>(); 1032 var o = new core.List<core.String>();
1033 o.add("foo"); 1033 o.add("foo");
1034 o.add("foo"); 1034 o.add("foo");
1035 return o; 1035 return o;
1036 } 1036 }
1037 1037
1038 checkUnnamed947(core.List<core.String> o) { 1038 checkUnnamed486(core.List<core.String> o) {
1039 unittest.expect(o, unittest.hasLength(2)); 1039 unittest.expect(o, unittest.hasLength(2));
1040 unittest.expect(o[0], unittest.equals('foo')); 1040 unittest.expect(o[0], unittest.equals('foo'));
1041 unittest.expect(o[1], unittest.equals('foo')); 1041 unittest.expect(o[1], unittest.equals('foo'));
1042 } 1042 }
1043 1043
1044 buildUnnamed948() { 1044 buildUnnamed487() {
1045 var o = new core.List<core.String>(); 1045 var o = new core.List<core.String>();
1046 o.add("foo"); 1046 o.add("foo");
1047 o.add("foo"); 1047 o.add("foo");
1048 return o; 1048 return o;
1049 } 1049 }
1050 1050
1051 checkUnnamed948(core.List<core.String> o) { 1051 checkUnnamed487(core.List<core.String> o) {
1052 unittest.expect(o, unittest.hasLength(2)); 1052 unittest.expect(o, unittest.hasLength(2));
1053 unittest.expect(o[0], unittest.equals('foo')); 1053 unittest.expect(o[0], unittest.equals('foo'));
1054 unittest.expect(o[1], unittest.equals('foo')); 1054 unittest.expect(o[1], unittest.equals('foo'));
1055 } 1055 }
1056 1056
1057 buildUnnamed949() { 1057 buildUnnamed488() {
1058 var o = new core.List<core.String>(); 1058 var o = new core.List<core.String>();
1059 o.add("foo"); 1059 o.add("foo");
1060 o.add("foo"); 1060 o.add("foo");
1061 return o; 1061 return o;
1062 } 1062 }
1063 1063
1064 checkUnnamed949(core.List<core.String> o) { 1064 checkUnnamed488(core.List<core.String> o) {
1065 unittest.expect(o, unittest.hasLength(2)); 1065 unittest.expect(o, unittest.hasLength(2));
1066 unittest.expect(o[0], unittest.equals('foo')); 1066 unittest.expect(o[0], unittest.equals('foo'));
1067 unittest.expect(o[1], unittest.equals('foo')); 1067 unittest.expect(o[1], unittest.equals('foo'));
1068 } 1068 }
1069 1069
1070 core.int buildCounterFirewall = 0; 1070 core.int buildCounterFirewall = 0;
1071 buildFirewall() { 1071 buildFirewall() {
1072 var o = new api.Firewall(); 1072 var o = new api.Firewall();
1073 buildCounterFirewall++; 1073 buildCounterFirewall++;
1074 if (buildCounterFirewall < 3) { 1074 if (buildCounterFirewall < 3) {
1075 o.allowed = buildUnnamed946(); 1075 o.allowed = buildUnnamed485();
1076 o.creationTimestamp = "foo"; 1076 o.creationTimestamp = "foo";
1077 o.description = "foo"; 1077 o.description = "foo";
1078 o.id = "foo"; 1078 o.id = "foo";
1079 o.kind = "foo"; 1079 o.kind = "foo";
1080 o.name = "foo"; 1080 o.name = "foo";
1081 o.network = "foo"; 1081 o.network = "foo";
1082 o.selfLink = "foo"; 1082 o.selfLink = "foo";
1083 o.sourceRanges = buildUnnamed947(); 1083 o.sourceRanges = buildUnnamed486();
1084 o.sourceTags = buildUnnamed948(); 1084 o.sourceTags = buildUnnamed487();
1085 o.targetTags = buildUnnamed949(); 1085 o.targetTags = buildUnnamed488();
1086 } 1086 }
1087 buildCounterFirewall--; 1087 buildCounterFirewall--;
1088 return o; 1088 return o;
1089 } 1089 }
1090 1090
1091 checkFirewall(api.Firewall o) { 1091 checkFirewall(api.Firewall o) {
1092 buildCounterFirewall++; 1092 buildCounterFirewall++;
1093 if (buildCounterFirewall < 3) { 1093 if (buildCounterFirewall < 3) {
1094 checkUnnamed946(o.allowed); 1094 checkUnnamed485(o.allowed);
1095 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 1095 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
1096 unittest.expect(o.description, unittest.equals('foo')); 1096 unittest.expect(o.description, unittest.equals('foo'));
1097 unittest.expect(o.id, unittest.equals('foo')); 1097 unittest.expect(o.id, unittest.equals('foo'));
1098 unittest.expect(o.kind, unittest.equals('foo')); 1098 unittest.expect(o.kind, unittest.equals('foo'));
1099 unittest.expect(o.name, unittest.equals('foo')); 1099 unittest.expect(o.name, unittest.equals('foo'));
1100 unittest.expect(o.network, unittest.equals('foo')); 1100 unittest.expect(o.network, unittest.equals('foo'));
1101 unittest.expect(o.selfLink, unittest.equals('foo')); 1101 unittest.expect(o.selfLink, unittest.equals('foo'));
1102 checkUnnamed947(o.sourceRanges); 1102 checkUnnamed486(o.sourceRanges);
1103 checkUnnamed948(o.sourceTags); 1103 checkUnnamed487(o.sourceTags);
1104 checkUnnamed949(o.targetTags); 1104 checkUnnamed488(o.targetTags);
1105 } 1105 }
1106 buildCounterFirewall--; 1106 buildCounterFirewall--;
1107 } 1107 }
1108 1108
1109 buildUnnamed950() { 1109 buildUnnamed489() {
1110 var o = new core.List<api.Firewall>(); 1110 var o = new core.List<api.Firewall>();
1111 o.add(buildFirewall()); 1111 o.add(buildFirewall());
1112 o.add(buildFirewall()); 1112 o.add(buildFirewall());
1113 return o; 1113 return o;
1114 } 1114 }
1115 1115
1116 checkUnnamed950(core.List<api.Firewall> o) { 1116 checkUnnamed489(core.List<api.Firewall> o) {
1117 unittest.expect(o, unittest.hasLength(2)); 1117 unittest.expect(o, unittest.hasLength(2));
1118 checkFirewall(o[0]); 1118 checkFirewall(o[0]);
1119 checkFirewall(o[1]); 1119 checkFirewall(o[1]);
1120 } 1120 }
1121 1121
1122 core.int buildCounterFirewallList = 0; 1122 core.int buildCounterFirewallList = 0;
1123 buildFirewallList() { 1123 buildFirewallList() {
1124 var o = new api.FirewallList(); 1124 var o = new api.FirewallList();
1125 buildCounterFirewallList++; 1125 buildCounterFirewallList++;
1126 if (buildCounterFirewallList < 3) { 1126 if (buildCounterFirewallList < 3) {
1127 o.id = "foo"; 1127 o.id = "foo";
1128 o.items = buildUnnamed950(); 1128 o.items = buildUnnamed489();
1129 o.kind = "foo"; 1129 o.kind = "foo";
1130 o.nextPageToken = "foo"; 1130 o.nextPageToken = "foo";
1131 o.selfLink = "foo"; 1131 o.selfLink = "foo";
1132 } 1132 }
1133 buildCounterFirewallList--; 1133 buildCounterFirewallList--;
1134 return o; 1134 return o;
1135 } 1135 }
1136 1136
1137 checkFirewallList(api.FirewallList o) { 1137 checkFirewallList(api.FirewallList o) {
1138 buildCounterFirewallList++; 1138 buildCounterFirewallList++;
1139 if (buildCounterFirewallList < 3) { 1139 if (buildCounterFirewallList < 3) {
1140 unittest.expect(o.id, unittest.equals('foo')); 1140 unittest.expect(o.id, unittest.equals('foo'));
1141 checkUnnamed950(o.items); 1141 checkUnnamed489(o.items);
1142 unittest.expect(o.kind, unittest.equals('foo')); 1142 unittest.expect(o.kind, unittest.equals('foo'));
1143 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1143 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1144 unittest.expect(o.selfLink, unittest.equals('foo')); 1144 unittest.expect(o.selfLink, unittest.equals('foo'));
1145 } 1145 }
1146 buildCounterFirewallList--; 1146 buildCounterFirewallList--;
1147 } 1147 }
1148 1148
1149 core.int buildCounterForwardingRule = 0; 1149 core.int buildCounterForwardingRule = 0;
1150 buildForwardingRule() { 1150 buildForwardingRule() {
1151 var o = new api.ForwardingRule(); 1151 var o = new api.ForwardingRule();
(...skipping 26 matching lines...) Expand all
1178 unittest.expect(o.kind, unittest.equals('foo')); 1178 unittest.expect(o.kind, unittest.equals('foo'));
1179 unittest.expect(o.name, unittest.equals('foo')); 1179 unittest.expect(o.name, unittest.equals('foo'));
1180 unittest.expect(o.portRange, unittest.equals('foo')); 1180 unittest.expect(o.portRange, unittest.equals('foo'));
1181 unittest.expect(o.region, unittest.equals('foo')); 1181 unittest.expect(o.region, unittest.equals('foo'));
1182 unittest.expect(o.selfLink, unittest.equals('foo')); 1182 unittest.expect(o.selfLink, unittest.equals('foo'));
1183 unittest.expect(o.target, unittest.equals('foo')); 1183 unittest.expect(o.target, unittest.equals('foo'));
1184 } 1184 }
1185 buildCounterForwardingRule--; 1185 buildCounterForwardingRule--;
1186 } 1186 }
1187 1187
1188 buildUnnamed951() { 1188 buildUnnamed490() {
1189 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); 1189 var o = new core.Map<core.String, api.ForwardingRulesScopedList>();
1190 o["x"] = buildForwardingRulesScopedList(); 1190 o["x"] = buildForwardingRulesScopedList();
1191 o["y"] = buildForwardingRulesScopedList(); 1191 o["y"] = buildForwardingRulesScopedList();
1192 return o; 1192 return o;
1193 } 1193 }
1194 1194
1195 checkUnnamed951(core.Map<core.String, api.ForwardingRulesScopedList> o) { 1195 checkUnnamed490(core.Map<core.String, api.ForwardingRulesScopedList> o) {
1196 unittest.expect(o, unittest.hasLength(2)); 1196 unittest.expect(o, unittest.hasLength(2));
1197 checkForwardingRulesScopedList(o["x"]); 1197 checkForwardingRulesScopedList(o["x"]);
1198 checkForwardingRulesScopedList(o["y"]); 1198 checkForwardingRulesScopedList(o["y"]);
1199 } 1199 }
1200 1200
1201 core.int buildCounterForwardingRuleAggregatedList = 0; 1201 core.int buildCounterForwardingRuleAggregatedList = 0;
1202 buildForwardingRuleAggregatedList() { 1202 buildForwardingRuleAggregatedList() {
1203 var o = new api.ForwardingRuleAggregatedList(); 1203 var o = new api.ForwardingRuleAggregatedList();
1204 buildCounterForwardingRuleAggregatedList++; 1204 buildCounterForwardingRuleAggregatedList++;
1205 if (buildCounterForwardingRuleAggregatedList < 3) { 1205 if (buildCounterForwardingRuleAggregatedList < 3) {
1206 o.id = "foo"; 1206 o.id = "foo";
1207 o.items = buildUnnamed951(); 1207 o.items = buildUnnamed490();
1208 o.kind = "foo"; 1208 o.kind = "foo";
1209 o.nextPageToken = "foo"; 1209 o.nextPageToken = "foo";
1210 o.selfLink = "foo"; 1210 o.selfLink = "foo";
1211 } 1211 }
1212 buildCounterForwardingRuleAggregatedList--; 1212 buildCounterForwardingRuleAggregatedList--;
1213 return o; 1213 return o;
1214 } 1214 }
1215 1215
1216 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { 1216 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) {
1217 buildCounterForwardingRuleAggregatedList++; 1217 buildCounterForwardingRuleAggregatedList++;
1218 if (buildCounterForwardingRuleAggregatedList < 3) { 1218 if (buildCounterForwardingRuleAggregatedList < 3) {
1219 unittest.expect(o.id, unittest.equals('foo')); 1219 unittest.expect(o.id, unittest.equals('foo'));
1220 checkUnnamed951(o.items); 1220 checkUnnamed490(o.items);
1221 unittest.expect(o.kind, unittest.equals('foo')); 1221 unittest.expect(o.kind, unittest.equals('foo'));
1222 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1222 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1223 unittest.expect(o.selfLink, unittest.equals('foo')); 1223 unittest.expect(o.selfLink, unittest.equals('foo'));
1224 } 1224 }
1225 buildCounterForwardingRuleAggregatedList--; 1225 buildCounterForwardingRuleAggregatedList--;
1226 } 1226 }
1227 1227
1228 buildUnnamed952() { 1228 buildUnnamed491() {
1229 var o = new core.List<api.ForwardingRule>(); 1229 var o = new core.List<api.ForwardingRule>();
1230 o.add(buildForwardingRule()); 1230 o.add(buildForwardingRule());
1231 o.add(buildForwardingRule()); 1231 o.add(buildForwardingRule());
1232 return o; 1232 return o;
1233 } 1233 }
1234 1234
1235 checkUnnamed952(core.List<api.ForwardingRule> o) { 1235 checkUnnamed491(core.List<api.ForwardingRule> o) {
1236 unittest.expect(o, unittest.hasLength(2)); 1236 unittest.expect(o, unittest.hasLength(2));
1237 checkForwardingRule(o[0]); 1237 checkForwardingRule(o[0]);
1238 checkForwardingRule(o[1]); 1238 checkForwardingRule(o[1]);
1239 } 1239 }
1240 1240
1241 core.int buildCounterForwardingRuleList = 0; 1241 core.int buildCounterForwardingRuleList = 0;
1242 buildForwardingRuleList() { 1242 buildForwardingRuleList() {
1243 var o = new api.ForwardingRuleList(); 1243 var o = new api.ForwardingRuleList();
1244 buildCounterForwardingRuleList++; 1244 buildCounterForwardingRuleList++;
1245 if (buildCounterForwardingRuleList < 3) { 1245 if (buildCounterForwardingRuleList < 3) {
1246 o.id = "foo"; 1246 o.id = "foo";
1247 o.items = buildUnnamed952(); 1247 o.items = buildUnnamed491();
1248 o.kind = "foo"; 1248 o.kind = "foo";
1249 o.nextPageToken = "foo"; 1249 o.nextPageToken = "foo";
1250 o.selfLink = "foo"; 1250 o.selfLink = "foo";
1251 } 1251 }
1252 buildCounterForwardingRuleList--; 1252 buildCounterForwardingRuleList--;
1253 return o; 1253 return o;
1254 } 1254 }
1255 1255
1256 checkForwardingRuleList(api.ForwardingRuleList o) { 1256 checkForwardingRuleList(api.ForwardingRuleList o) {
1257 buildCounterForwardingRuleList++; 1257 buildCounterForwardingRuleList++;
1258 if (buildCounterForwardingRuleList < 3) { 1258 if (buildCounterForwardingRuleList < 3) {
1259 unittest.expect(o.id, unittest.equals('foo')); 1259 unittest.expect(o.id, unittest.equals('foo'));
1260 checkUnnamed952(o.items); 1260 checkUnnamed491(o.items);
1261 unittest.expect(o.kind, unittest.equals('foo')); 1261 unittest.expect(o.kind, unittest.equals('foo'));
1262 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1262 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1263 unittest.expect(o.selfLink, unittest.equals('foo')); 1263 unittest.expect(o.selfLink, unittest.equals('foo'));
1264 } 1264 }
1265 buildCounterForwardingRuleList--; 1265 buildCounterForwardingRuleList--;
1266 } 1266 }
1267 1267
1268 buildUnnamed953() { 1268 buildUnnamed492() {
1269 var o = new core.List<api.ForwardingRule>(); 1269 var o = new core.List<api.ForwardingRule>();
1270 o.add(buildForwardingRule()); 1270 o.add(buildForwardingRule());
1271 o.add(buildForwardingRule()); 1271 o.add(buildForwardingRule());
1272 return o; 1272 return o;
1273 } 1273 }
1274 1274
1275 checkUnnamed953(core.List<api.ForwardingRule> o) { 1275 checkUnnamed492(core.List<api.ForwardingRule> o) {
1276 unittest.expect(o, unittest.hasLength(2)); 1276 unittest.expect(o, unittest.hasLength(2));
1277 checkForwardingRule(o[0]); 1277 checkForwardingRule(o[0]);
1278 checkForwardingRule(o[1]); 1278 checkForwardingRule(o[1]);
1279 } 1279 }
1280 1280
1281 core.int buildCounterForwardingRulesScopedListWarningData = 0; 1281 core.int buildCounterForwardingRulesScopedListWarningData = 0;
1282 buildForwardingRulesScopedListWarningData() { 1282 buildForwardingRulesScopedListWarningData() {
1283 var o = new api.ForwardingRulesScopedListWarningData(); 1283 var o = new api.ForwardingRulesScopedListWarningData();
1284 buildCounterForwardingRulesScopedListWarningData++; 1284 buildCounterForwardingRulesScopedListWarningData++;
1285 if (buildCounterForwardingRulesScopedListWarningData < 3) { 1285 if (buildCounterForwardingRulesScopedListWarningData < 3) {
1286 o.key = "foo"; 1286 o.key = "foo";
1287 o.value = "foo"; 1287 o.value = "foo";
1288 } 1288 }
1289 buildCounterForwardingRulesScopedListWarningData--; 1289 buildCounterForwardingRulesScopedListWarningData--;
1290 return o; 1290 return o;
1291 } 1291 }
1292 1292
1293 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa ta o) { 1293 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa ta o) {
1294 buildCounterForwardingRulesScopedListWarningData++; 1294 buildCounterForwardingRulesScopedListWarningData++;
1295 if (buildCounterForwardingRulesScopedListWarningData < 3) { 1295 if (buildCounterForwardingRulesScopedListWarningData < 3) {
1296 unittest.expect(o.key, unittest.equals('foo')); 1296 unittest.expect(o.key, unittest.equals('foo'));
1297 unittest.expect(o.value, unittest.equals('foo')); 1297 unittest.expect(o.value, unittest.equals('foo'));
1298 } 1298 }
1299 buildCounterForwardingRulesScopedListWarningData--; 1299 buildCounterForwardingRulesScopedListWarningData--;
1300 } 1300 }
1301 1301
1302 buildUnnamed954() { 1302 buildUnnamed493() {
1303 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); 1303 var o = new core.List<api.ForwardingRulesScopedListWarningData>();
1304 o.add(buildForwardingRulesScopedListWarningData()); 1304 o.add(buildForwardingRulesScopedListWarningData());
1305 o.add(buildForwardingRulesScopedListWarningData()); 1305 o.add(buildForwardingRulesScopedListWarningData());
1306 return o; 1306 return o;
1307 } 1307 }
1308 1308
1309 checkUnnamed954(core.List<api.ForwardingRulesScopedListWarningData> o) { 1309 checkUnnamed493(core.List<api.ForwardingRulesScopedListWarningData> o) {
1310 unittest.expect(o, unittest.hasLength(2)); 1310 unittest.expect(o, unittest.hasLength(2));
1311 checkForwardingRulesScopedListWarningData(o[0]); 1311 checkForwardingRulesScopedListWarningData(o[0]);
1312 checkForwardingRulesScopedListWarningData(o[1]); 1312 checkForwardingRulesScopedListWarningData(o[1]);
1313 } 1313 }
1314 1314
1315 core.int buildCounterForwardingRulesScopedListWarning = 0; 1315 core.int buildCounterForwardingRulesScopedListWarning = 0;
1316 buildForwardingRulesScopedListWarning() { 1316 buildForwardingRulesScopedListWarning() {
1317 var o = new api.ForwardingRulesScopedListWarning(); 1317 var o = new api.ForwardingRulesScopedListWarning();
1318 buildCounterForwardingRulesScopedListWarning++; 1318 buildCounterForwardingRulesScopedListWarning++;
1319 if (buildCounterForwardingRulesScopedListWarning < 3) { 1319 if (buildCounterForwardingRulesScopedListWarning < 3) {
1320 o.code = "foo"; 1320 o.code = "foo";
1321 o.data = buildUnnamed954(); 1321 o.data = buildUnnamed493();
1322 o.message = "foo"; 1322 o.message = "foo";
1323 } 1323 }
1324 buildCounterForwardingRulesScopedListWarning--; 1324 buildCounterForwardingRulesScopedListWarning--;
1325 return o; 1325 return o;
1326 } 1326 }
1327 1327
1328 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { 1328 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) {
1329 buildCounterForwardingRulesScopedListWarning++; 1329 buildCounterForwardingRulesScopedListWarning++;
1330 if (buildCounterForwardingRulesScopedListWarning < 3) { 1330 if (buildCounterForwardingRulesScopedListWarning < 3) {
1331 unittest.expect(o.code, unittest.equals('foo')); 1331 unittest.expect(o.code, unittest.equals('foo'));
1332 checkUnnamed954(o.data); 1332 checkUnnamed493(o.data);
1333 unittest.expect(o.message, unittest.equals('foo')); 1333 unittest.expect(o.message, unittest.equals('foo'));
1334 } 1334 }
1335 buildCounterForwardingRulesScopedListWarning--; 1335 buildCounterForwardingRulesScopedListWarning--;
1336 } 1336 }
1337 1337
1338 core.int buildCounterForwardingRulesScopedList = 0; 1338 core.int buildCounterForwardingRulesScopedList = 0;
1339 buildForwardingRulesScopedList() { 1339 buildForwardingRulesScopedList() {
1340 var o = new api.ForwardingRulesScopedList(); 1340 var o = new api.ForwardingRulesScopedList();
1341 buildCounterForwardingRulesScopedList++; 1341 buildCounterForwardingRulesScopedList++;
1342 if (buildCounterForwardingRulesScopedList < 3) { 1342 if (buildCounterForwardingRulesScopedList < 3) {
1343 o.forwardingRules = buildUnnamed953(); 1343 o.forwardingRules = buildUnnamed492();
1344 o.warning = buildForwardingRulesScopedListWarning(); 1344 o.warning = buildForwardingRulesScopedListWarning();
1345 } 1345 }
1346 buildCounterForwardingRulesScopedList--; 1346 buildCounterForwardingRulesScopedList--;
1347 return o; 1347 return o;
1348 } 1348 }
1349 1349
1350 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { 1350 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) {
1351 buildCounterForwardingRulesScopedList++; 1351 buildCounterForwardingRulesScopedList++;
1352 if (buildCounterForwardingRulesScopedList < 3) { 1352 if (buildCounterForwardingRulesScopedList < 3) {
1353 checkUnnamed953(o.forwardingRules); 1353 checkUnnamed492(o.forwardingRules);
1354 checkForwardingRulesScopedListWarning(o.warning); 1354 checkForwardingRulesScopedListWarning(o.warning);
1355 } 1355 }
1356 buildCounterForwardingRulesScopedList--; 1356 buildCounterForwardingRulesScopedList--;
1357 } 1357 }
1358 1358
1359 core.int buildCounterHealthCheckReference = 0; 1359 core.int buildCounterHealthCheckReference = 0;
1360 buildHealthCheckReference() { 1360 buildHealthCheckReference() {
1361 var o = new api.HealthCheckReference(); 1361 var o = new api.HealthCheckReference();
1362 buildCounterHealthCheckReference++; 1362 buildCounterHealthCheckReference++;
1363 if (buildCounterHealthCheckReference < 3) { 1363 if (buildCounterHealthCheckReference < 3) {
(...skipping 29 matching lines...) Expand all
1393 buildCounterHealthStatus++; 1393 buildCounterHealthStatus++;
1394 if (buildCounterHealthStatus < 3) { 1394 if (buildCounterHealthStatus < 3) {
1395 unittest.expect(o.healthState, unittest.equals('foo')); 1395 unittest.expect(o.healthState, unittest.equals('foo'));
1396 unittest.expect(o.instance, unittest.equals('foo')); 1396 unittest.expect(o.instance, unittest.equals('foo'));
1397 unittest.expect(o.ipAddress, unittest.equals('foo')); 1397 unittest.expect(o.ipAddress, unittest.equals('foo'));
1398 unittest.expect(o.port, unittest.equals(42)); 1398 unittest.expect(o.port, unittest.equals(42));
1399 } 1399 }
1400 buildCounterHealthStatus--; 1400 buildCounterHealthStatus--;
1401 } 1401 }
1402 1402
1403 buildUnnamed955() { 1403 buildUnnamed494() {
1404 var o = new core.List<core.String>(); 1404 var o = new core.List<core.String>();
1405 o.add("foo"); 1405 o.add("foo");
1406 o.add("foo"); 1406 o.add("foo");
1407 return o; 1407 return o;
1408 } 1408 }
1409 1409
1410 checkUnnamed955(core.List<core.String> o) { 1410 checkUnnamed494(core.List<core.String> o) {
1411 unittest.expect(o, unittest.hasLength(2)); 1411 unittest.expect(o, unittest.hasLength(2));
1412 unittest.expect(o[0], unittest.equals('foo')); 1412 unittest.expect(o[0], unittest.equals('foo'));
1413 unittest.expect(o[1], unittest.equals('foo')); 1413 unittest.expect(o[1], unittest.equals('foo'));
1414 } 1414 }
1415 1415
1416 core.int buildCounterHostRule = 0; 1416 core.int buildCounterHostRule = 0;
1417 buildHostRule() { 1417 buildHostRule() {
1418 var o = new api.HostRule(); 1418 var o = new api.HostRule();
1419 buildCounterHostRule++; 1419 buildCounterHostRule++;
1420 if (buildCounterHostRule < 3) { 1420 if (buildCounterHostRule < 3) {
1421 o.description = "foo"; 1421 o.description = "foo";
1422 o.hosts = buildUnnamed955(); 1422 o.hosts = buildUnnamed494();
1423 o.pathMatcher = "foo"; 1423 o.pathMatcher = "foo";
1424 } 1424 }
1425 buildCounterHostRule--; 1425 buildCounterHostRule--;
1426 return o; 1426 return o;
1427 } 1427 }
1428 1428
1429 checkHostRule(api.HostRule o) { 1429 checkHostRule(api.HostRule o) {
1430 buildCounterHostRule++; 1430 buildCounterHostRule++;
1431 if (buildCounterHostRule < 3) { 1431 if (buildCounterHostRule < 3) {
1432 unittest.expect(o.description, unittest.equals('foo')); 1432 unittest.expect(o.description, unittest.equals('foo'));
1433 checkUnnamed955(o.hosts); 1433 checkUnnamed494(o.hosts);
1434 unittest.expect(o.pathMatcher, unittest.equals('foo')); 1434 unittest.expect(o.pathMatcher, unittest.equals('foo'));
1435 } 1435 }
1436 buildCounterHostRule--; 1436 buildCounterHostRule--;
1437 } 1437 }
1438 1438
1439 core.int buildCounterHttpHealthCheck = 0; 1439 core.int buildCounterHttpHealthCheck = 0;
1440 buildHttpHealthCheck() { 1440 buildHttpHealthCheck() {
1441 var o = new api.HttpHealthCheck(); 1441 var o = new api.HttpHealthCheck();
1442 buildCounterHttpHealthCheck++; 1442 buildCounterHttpHealthCheck++;
1443 if (buildCounterHttpHealthCheck < 3) { 1443 if (buildCounterHttpHealthCheck < 3) {
(...skipping 28 matching lines...) Expand all
1472 unittest.expect(o.name, unittest.equals('foo')); 1472 unittest.expect(o.name, unittest.equals('foo'));
1473 unittest.expect(o.port, unittest.equals(42)); 1473 unittest.expect(o.port, unittest.equals(42));
1474 unittest.expect(o.requestPath, unittest.equals('foo')); 1474 unittest.expect(o.requestPath, unittest.equals('foo'));
1475 unittest.expect(o.selfLink, unittest.equals('foo')); 1475 unittest.expect(o.selfLink, unittest.equals('foo'));
1476 unittest.expect(o.timeoutSec, unittest.equals(42)); 1476 unittest.expect(o.timeoutSec, unittest.equals(42));
1477 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); 1477 unittest.expect(o.unhealthyThreshold, unittest.equals(42));
1478 } 1478 }
1479 buildCounterHttpHealthCheck--; 1479 buildCounterHttpHealthCheck--;
1480 } 1480 }
1481 1481
1482 buildUnnamed956() { 1482 buildUnnamed495() {
1483 var o = new core.List<api.HttpHealthCheck>(); 1483 var o = new core.List<api.HttpHealthCheck>();
1484 o.add(buildHttpHealthCheck()); 1484 o.add(buildHttpHealthCheck());
1485 o.add(buildHttpHealthCheck()); 1485 o.add(buildHttpHealthCheck());
1486 return o; 1486 return o;
1487 } 1487 }
1488 1488
1489 checkUnnamed956(core.List<api.HttpHealthCheck> o) { 1489 checkUnnamed495(core.List<api.HttpHealthCheck> o) {
1490 unittest.expect(o, unittest.hasLength(2)); 1490 unittest.expect(o, unittest.hasLength(2));
1491 checkHttpHealthCheck(o[0]); 1491 checkHttpHealthCheck(o[0]);
1492 checkHttpHealthCheck(o[1]); 1492 checkHttpHealthCheck(o[1]);
1493 } 1493 }
1494 1494
1495 core.int buildCounterHttpHealthCheckList = 0; 1495 core.int buildCounterHttpHealthCheckList = 0;
1496 buildHttpHealthCheckList() { 1496 buildHttpHealthCheckList() {
1497 var o = new api.HttpHealthCheckList(); 1497 var o = new api.HttpHealthCheckList();
1498 buildCounterHttpHealthCheckList++; 1498 buildCounterHttpHealthCheckList++;
1499 if (buildCounterHttpHealthCheckList < 3) { 1499 if (buildCounterHttpHealthCheckList < 3) {
1500 o.id = "foo"; 1500 o.id = "foo";
1501 o.items = buildUnnamed956(); 1501 o.items = buildUnnamed495();
1502 o.kind = "foo"; 1502 o.kind = "foo";
1503 o.nextPageToken = "foo"; 1503 o.nextPageToken = "foo";
1504 o.selfLink = "foo"; 1504 o.selfLink = "foo";
1505 } 1505 }
1506 buildCounterHttpHealthCheckList--; 1506 buildCounterHttpHealthCheckList--;
1507 return o; 1507 return o;
1508 } 1508 }
1509 1509
1510 checkHttpHealthCheckList(api.HttpHealthCheckList o) { 1510 checkHttpHealthCheckList(api.HttpHealthCheckList o) {
1511 buildCounterHttpHealthCheckList++; 1511 buildCounterHttpHealthCheckList++;
1512 if (buildCounterHttpHealthCheckList < 3) { 1512 if (buildCounterHttpHealthCheckList < 3) {
1513 unittest.expect(o.id, unittest.equals('foo')); 1513 unittest.expect(o.id, unittest.equals('foo'));
1514 checkUnnamed956(o.items); 1514 checkUnnamed495(o.items);
1515 unittest.expect(o.kind, unittest.equals('foo')); 1515 unittest.expect(o.kind, unittest.equals('foo'));
1516 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1516 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1517 unittest.expect(o.selfLink, unittest.equals('foo')); 1517 unittest.expect(o.selfLink, unittest.equals('foo'));
1518 } 1518 }
1519 buildCounterHttpHealthCheckList--; 1519 buildCounterHttpHealthCheckList--;
1520 } 1520 }
1521 1521
1522 buildUnnamed957() { 1522 buildUnnamed496() {
1523 var o = new core.List<core.String>(); 1523 var o = new core.List<core.String>();
1524 o.add("foo"); 1524 o.add("foo");
1525 o.add("foo"); 1525 o.add("foo");
1526 return o; 1526 return o;
1527 } 1527 }
1528 1528
1529 checkUnnamed957(core.List<core.String> o) { 1529 checkUnnamed496(core.List<core.String> o) {
1530 unittest.expect(o, unittest.hasLength(2)); 1530 unittest.expect(o, unittest.hasLength(2));
1531 unittest.expect(o[0], unittest.equals('foo')); 1531 unittest.expect(o[0], unittest.equals('foo'));
1532 unittest.expect(o[1], unittest.equals('foo')); 1532 unittest.expect(o[1], unittest.equals('foo'));
1533 } 1533 }
1534 1534
1535 core.int buildCounterImageRawDisk = 0; 1535 core.int buildCounterImageRawDisk = 0;
1536 buildImageRawDisk() { 1536 buildImageRawDisk() {
1537 var o = new api.ImageRawDisk(); 1537 var o = new api.ImageRawDisk();
1538 buildCounterImageRawDisk++; 1538 buildCounterImageRawDisk++;
1539 if (buildCounterImageRawDisk < 3) { 1539 if (buildCounterImageRawDisk < 3) {
(...skipping 20 matching lines...) Expand all
1560 var o = new api.Image(); 1560 var o = new api.Image();
1561 buildCounterImage++; 1561 buildCounterImage++;
1562 if (buildCounterImage < 3) { 1562 if (buildCounterImage < 3) {
1563 o.archiveSizeBytes = "foo"; 1563 o.archiveSizeBytes = "foo";
1564 o.creationTimestamp = "foo"; 1564 o.creationTimestamp = "foo";
1565 o.deprecated = buildDeprecationStatus(); 1565 o.deprecated = buildDeprecationStatus();
1566 o.description = "foo"; 1566 o.description = "foo";
1567 o.diskSizeGb = "foo"; 1567 o.diskSizeGb = "foo";
1568 o.id = "foo"; 1568 o.id = "foo";
1569 o.kind = "foo"; 1569 o.kind = "foo";
1570 o.licenses = buildUnnamed957(); 1570 o.licenses = buildUnnamed496();
1571 o.name = "foo"; 1571 o.name = "foo";
1572 o.rawDisk = buildImageRawDisk(); 1572 o.rawDisk = buildImageRawDisk();
1573 o.selfLink = "foo"; 1573 o.selfLink = "foo";
1574 o.sourceDisk = "foo"; 1574 o.sourceDisk = "foo";
1575 o.sourceDiskId = "foo"; 1575 o.sourceDiskId = "foo";
1576 o.sourceType = "foo"; 1576 o.sourceType = "foo";
1577 o.status = "foo"; 1577 o.status = "foo";
1578 } 1578 }
1579 buildCounterImage--; 1579 buildCounterImage--;
1580 return o; 1580 return o;
1581 } 1581 }
1582 1582
1583 checkImage(api.Image o) { 1583 checkImage(api.Image o) {
1584 buildCounterImage++; 1584 buildCounterImage++;
1585 if (buildCounterImage < 3) { 1585 if (buildCounterImage < 3) {
1586 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); 1586 unittest.expect(o.archiveSizeBytes, unittest.equals('foo'));
1587 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 1587 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
1588 checkDeprecationStatus(o.deprecated); 1588 checkDeprecationStatus(o.deprecated);
1589 unittest.expect(o.description, unittest.equals('foo')); 1589 unittest.expect(o.description, unittest.equals('foo'));
1590 unittest.expect(o.diskSizeGb, unittest.equals('foo')); 1590 unittest.expect(o.diskSizeGb, unittest.equals('foo'));
1591 unittest.expect(o.id, unittest.equals('foo')); 1591 unittest.expect(o.id, unittest.equals('foo'));
1592 unittest.expect(o.kind, unittest.equals('foo')); 1592 unittest.expect(o.kind, unittest.equals('foo'));
1593 checkUnnamed957(o.licenses); 1593 checkUnnamed496(o.licenses);
1594 unittest.expect(o.name, unittest.equals('foo')); 1594 unittest.expect(o.name, unittest.equals('foo'));
1595 checkImageRawDisk(o.rawDisk); 1595 checkImageRawDisk(o.rawDisk);
1596 unittest.expect(o.selfLink, unittest.equals('foo')); 1596 unittest.expect(o.selfLink, unittest.equals('foo'));
1597 unittest.expect(o.sourceDisk, unittest.equals('foo')); 1597 unittest.expect(o.sourceDisk, unittest.equals('foo'));
1598 unittest.expect(o.sourceDiskId, unittest.equals('foo')); 1598 unittest.expect(o.sourceDiskId, unittest.equals('foo'));
1599 unittest.expect(o.sourceType, unittest.equals('foo')); 1599 unittest.expect(o.sourceType, unittest.equals('foo'));
1600 unittest.expect(o.status, unittest.equals('foo')); 1600 unittest.expect(o.status, unittest.equals('foo'));
1601 } 1601 }
1602 buildCounterImage--; 1602 buildCounterImage--;
1603 } 1603 }
1604 1604
1605 buildUnnamed958() { 1605 buildUnnamed497() {
1606 var o = new core.List<api.Image>(); 1606 var o = new core.List<api.Image>();
1607 o.add(buildImage()); 1607 o.add(buildImage());
1608 o.add(buildImage()); 1608 o.add(buildImage());
1609 return o; 1609 return o;
1610 } 1610 }
1611 1611
1612 checkUnnamed958(core.List<api.Image> o) { 1612 checkUnnamed497(core.List<api.Image> o) {
1613 unittest.expect(o, unittest.hasLength(2)); 1613 unittest.expect(o, unittest.hasLength(2));
1614 checkImage(o[0]); 1614 checkImage(o[0]);
1615 checkImage(o[1]); 1615 checkImage(o[1]);
1616 } 1616 }
1617 1617
1618 core.int buildCounterImageList = 0; 1618 core.int buildCounterImageList = 0;
1619 buildImageList() { 1619 buildImageList() {
1620 var o = new api.ImageList(); 1620 var o = new api.ImageList();
1621 buildCounterImageList++; 1621 buildCounterImageList++;
1622 if (buildCounterImageList < 3) { 1622 if (buildCounterImageList < 3) {
1623 o.id = "foo"; 1623 o.id = "foo";
1624 o.items = buildUnnamed958(); 1624 o.items = buildUnnamed497();
1625 o.kind = "foo"; 1625 o.kind = "foo";
1626 o.nextPageToken = "foo"; 1626 o.nextPageToken = "foo";
1627 o.selfLink = "foo"; 1627 o.selfLink = "foo";
1628 } 1628 }
1629 buildCounterImageList--; 1629 buildCounterImageList--;
1630 return o; 1630 return o;
1631 } 1631 }
1632 1632
1633 checkImageList(api.ImageList o) { 1633 checkImageList(api.ImageList o) {
1634 buildCounterImageList++; 1634 buildCounterImageList++;
1635 if (buildCounterImageList < 3) { 1635 if (buildCounterImageList < 3) {
1636 unittest.expect(o.id, unittest.equals('foo')); 1636 unittest.expect(o.id, unittest.equals('foo'));
1637 checkUnnamed958(o.items); 1637 checkUnnamed497(o.items);
1638 unittest.expect(o.kind, unittest.equals('foo')); 1638 unittest.expect(o.kind, unittest.equals('foo'));
1639 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1639 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1640 unittest.expect(o.selfLink, unittest.equals('foo')); 1640 unittest.expect(o.selfLink, unittest.equals('foo'));
1641 } 1641 }
1642 buildCounterImageList--; 1642 buildCounterImageList--;
1643 } 1643 }
1644 1644
1645 buildUnnamed959() { 1645 buildUnnamed498() {
1646 var o = new core.List<api.AttachedDisk>(); 1646 var o = new core.List<api.AttachedDisk>();
1647 o.add(buildAttachedDisk()); 1647 o.add(buildAttachedDisk());
1648 o.add(buildAttachedDisk()); 1648 o.add(buildAttachedDisk());
1649 return o; 1649 return o;
1650 } 1650 }
1651 1651
1652 checkUnnamed959(core.List<api.AttachedDisk> o) { 1652 checkUnnamed498(core.List<api.AttachedDisk> o) {
1653 unittest.expect(o, unittest.hasLength(2)); 1653 unittest.expect(o, unittest.hasLength(2));
1654 checkAttachedDisk(o[0]); 1654 checkAttachedDisk(o[0]);
1655 checkAttachedDisk(o[1]); 1655 checkAttachedDisk(o[1]);
1656 } 1656 }
1657 1657
1658 buildUnnamed960() { 1658 buildUnnamed499() {
1659 var o = new core.List<api.NetworkInterface>(); 1659 var o = new core.List<api.NetworkInterface>();
1660 o.add(buildNetworkInterface()); 1660 o.add(buildNetworkInterface());
1661 o.add(buildNetworkInterface()); 1661 o.add(buildNetworkInterface());
1662 return o; 1662 return o;
1663 } 1663 }
1664 1664
1665 checkUnnamed960(core.List<api.NetworkInterface> o) { 1665 checkUnnamed499(core.List<api.NetworkInterface> o) {
1666 unittest.expect(o, unittest.hasLength(2)); 1666 unittest.expect(o, unittest.hasLength(2));
1667 checkNetworkInterface(o[0]); 1667 checkNetworkInterface(o[0]);
1668 checkNetworkInterface(o[1]); 1668 checkNetworkInterface(o[1]);
1669 } 1669 }
1670 1670
1671 buildUnnamed961() { 1671 buildUnnamed500() {
1672 var o = new core.List<api.ServiceAccount>(); 1672 var o = new core.List<api.ServiceAccount>();
1673 o.add(buildServiceAccount()); 1673 o.add(buildServiceAccount());
1674 o.add(buildServiceAccount()); 1674 o.add(buildServiceAccount());
1675 return o; 1675 return o;
1676 } 1676 }
1677 1677
1678 checkUnnamed961(core.List<api.ServiceAccount> o) { 1678 checkUnnamed500(core.List<api.ServiceAccount> o) {
1679 unittest.expect(o, unittest.hasLength(2)); 1679 unittest.expect(o, unittest.hasLength(2));
1680 checkServiceAccount(o[0]); 1680 checkServiceAccount(o[0]);
1681 checkServiceAccount(o[1]); 1681 checkServiceAccount(o[1]);
1682 } 1682 }
1683 1683
1684 core.int buildCounterInstance = 0; 1684 core.int buildCounterInstance = 0;
1685 buildInstance() { 1685 buildInstance() {
1686 var o = new api.Instance(); 1686 var o = new api.Instance();
1687 buildCounterInstance++; 1687 buildCounterInstance++;
1688 if (buildCounterInstance < 3) { 1688 if (buildCounterInstance < 3) {
1689 o.canIpForward = true; 1689 o.canIpForward = true;
1690 o.creationTimestamp = "foo"; 1690 o.creationTimestamp = "foo";
1691 o.description = "foo"; 1691 o.description = "foo";
1692 o.disks = buildUnnamed959(); 1692 o.disks = buildUnnamed498();
1693 o.id = "foo"; 1693 o.id = "foo";
1694 o.kind = "foo"; 1694 o.kind = "foo";
1695 o.machineType = "foo"; 1695 o.machineType = "foo";
1696 o.metadata = buildMetadata(); 1696 o.metadata = buildMetadata();
1697 o.name = "foo"; 1697 o.name = "foo";
1698 o.networkInterfaces = buildUnnamed960(); 1698 o.networkInterfaces = buildUnnamed499();
1699 o.scheduling = buildScheduling(); 1699 o.scheduling = buildScheduling();
1700 o.selfLink = "foo"; 1700 o.selfLink = "foo";
1701 o.serviceAccounts = buildUnnamed961(); 1701 o.serviceAccounts = buildUnnamed500();
1702 o.status = "foo"; 1702 o.status = "foo";
1703 o.statusMessage = "foo"; 1703 o.statusMessage = "foo";
1704 o.tags = buildTags(); 1704 o.tags = buildTags();
1705 o.zone = "foo"; 1705 o.zone = "foo";
1706 } 1706 }
1707 buildCounterInstance--; 1707 buildCounterInstance--;
1708 return o; 1708 return o;
1709 } 1709 }
1710 1710
1711 checkInstance(api.Instance o) { 1711 checkInstance(api.Instance o) {
1712 buildCounterInstance++; 1712 buildCounterInstance++;
1713 if (buildCounterInstance < 3) { 1713 if (buildCounterInstance < 3) {
1714 unittest.expect(o.canIpForward, unittest.isTrue); 1714 unittest.expect(o.canIpForward, unittest.isTrue);
1715 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 1715 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
1716 unittest.expect(o.description, unittest.equals('foo')); 1716 unittest.expect(o.description, unittest.equals('foo'));
1717 checkUnnamed959(o.disks); 1717 checkUnnamed498(o.disks);
1718 unittest.expect(o.id, unittest.equals('foo')); 1718 unittest.expect(o.id, unittest.equals('foo'));
1719 unittest.expect(o.kind, unittest.equals('foo')); 1719 unittest.expect(o.kind, unittest.equals('foo'));
1720 unittest.expect(o.machineType, unittest.equals('foo')); 1720 unittest.expect(o.machineType, unittest.equals('foo'));
1721 checkMetadata(o.metadata); 1721 checkMetadata(o.metadata);
1722 unittest.expect(o.name, unittest.equals('foo')); 1722 unittest.expect(o.name, unittest.equals('foo'));
1723 checkUnnamed960(o.networkInterfaces); 1723 checkUnnamed499(o.networkInterfaces);
1724 checkScheduling(o.scheduling); 1724 checkScheduling(o.scheduling);
1725 unittest.expect(o.selfLink, unittest.equals('foo')); 1725 unittest.expect(o.selfLink, unittest.equals('foo'));
1726 checkUnnamed961(o.serviceAccounts); 1726 checkUnnamed500(o.serviceAccounts);
1727 unittest.expect(o.status, unittest.equals('foo')); 1727 unittest.expect(o.status, unittest.equals('foo'));
1728 unittest.expect(o.statusMessage, unittest.equals('foo')); 1728 unittest.expect(o.statusMessage, unittest.equals('foo'));
1729 checkTags(o.tags); 1729 checkTags(o.tags);
1730 unittest.expect(o.zone, unittest.equals('foo')); 1730 unittest.expect(o.zone, unittest.equals('foo'));
1731 } 1731 }
1732 buildCounterInstance--; 1732 buildCounterInstance--;
1733 } 1733 }
1734 1734
1735 buildUnnamed962() { 1735 buildUnnamed501() {
1736 var o = new core.Map<core.String, api.InstancesScopedList>(); 1736 var o = new core.Map<core.String, api.InstancesScopedList>();
1737 o["x"] = buildInstancesScopedList(); 1737 o["x"] = buildInstancesScopedList();
1738 o["y"] = buildInstancesScopedList(); 1738 o["y"] = buildInstancesScopedList();
1739 return o; 1739 return o;
1740 } 1740 }
1741 1741
1742 checkUnnamed962(core.Map<core.String, api.InstancesScopedList> o) { 1742 checkUnnamed501(core.Map<core.String, api.InstancesScopedList> o) {
1743 unittest.expect(o, unittest.hasLength(2)); 1743 unittest.expect(o, unittest.hasLength(2));
1744 checkInstancesScopedList(o["x"]); 1744 checkInstancesScopedList(o["x"]);
1745 checkInstancesScopedList(o["y"]); 1745 checkInstancesScopedList(o["y"]);
1746 } 1746 }
1747 1747
1748 core.int buildCounterInstanceAggregatedList = 0; 1748 core.int buildCounterInstanceAggregatedList = 0;
1749 buildInstanceAggregatedList() { 1749 buildInstanceAggregatedList() {
1750 var o = new api.InstanceAggregatedList(); 1750 var o = new api.InstanceAggregatedList();
1751 buildCounterInstanceAggregatedList++; 1751 buildCounterInstanceAggregatedList++;
1752 if (buildCounterInstanceAggregatedList < 3) { 1752 if (buildCounterInstanceAggregatedList < 3) {
1753 o.id = "foo"; 1753 o.id = "foo";
1754 o.items = buildUnnamed962(); 1754 o.items = buildUnnamed501();
1755 o.kind = "foo"; 1755 o.kind = "foo";
1756 o.nextPageToken = "foo"; 1756 o.nextPageToken = "foo";
1757 o.selfLink = "foo"; 1757 o.selfLink = "foo";
1758 } 1758 }
1759 buildCounterInstanceAggregatedList--; 1759 buildCounterInstanceAggregatedList--;
1760 return o; 1760 return o;
1761 } 1761 }
1762 1762
1763 checkInstanceAggregatedList(api.InstanceAggregatedList o) { 1763 checkInstanceAggregatedList(api.InstanceAggregatedList o) {
1764 buildCounterInstanceAggregatedList++; 1764 buildCounterInstanceAggregatedList++;
1765 if (buildCounterInstanceAggregatedList < 3) { 1765 if (buildCounterInstanceAggregatedList < 3) {
1766 unittest.expect(o.id, unittest.equals('foo')); 1766 unittest.expect(o.id, unittest.equals('foo'));
1767 checkUnnamed962(o.items); 1767 checkUnnamed501(o.items);
1768 unittest.expect(o.kind, unittest.equals('foo')); 1768 unittest.expect(o.kind, unittest.equals('foo'));
1769 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1769 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1770 unittest.expect(o.selfLink, unittest.equals('foo')); 1770 unittest.expect(o.selfLink, unittest.equals('foo'));
1771 } 1771 }
1772 buildCounterInstanceAggregatedList--; 1772 buildCounterInstanceAggregatedList--;
1773 } 1773 }
1774 1774
1775 buildUnnamed963() { 1775 buildUnnamed502() {
1776 var o = new core.List<api.Instance>(); 1776 var o = new core.List<api.Instance>();
1777 o.add(buildInstance()); 1777 o.add(buildInstance());
1778 o.add(buildInstance()); 1778 o.add(buildInstance());
1779 return o; 1779 return o;
1780 } 1780 }
1781 1781
1782 checkUnnamed963(core.List<api.Instance> o) { 1782 checkUnnamed502(core.List<api.Instance> o) {
1783 unittest.expect(o, unittest.hasLength(2)); 1783 unittest.expect(o, unittest.hasLength(2));
1784 checkInstance(o[0]); 1784 checkInstance(o[0]);
1785 checkInstance(o[1]); 1785 checkInstance(o[1]);
1786 } 1786 }
1787 1787
1788 core.int buildCounterInstanceList = 0; 1788 core.int buildCounterInstanceList = 0;
1789 buildInstanceList() { 1789 buildInstanceList() {
1790 var o = new api.InstanceList(); 1790 var o = new api.InstanceList();
1791 buildCounterInstanceList++; 1791 buildCounterInstanceList++;
1792 if (buildCounterInstanceList < 3) { 1792 if (buildCounterInstanceList < 3) {
1793 o.id = "foo"; 1793 o.id = "foo";
1794 o.items = buildUnnamed963(); 1794 o.items = buildUnnamed502();
1795 o.kind = "foo"; 1795 o.kind = "foo";
1796 o.nextPageToken = "foo"; 1796 o.nextPageToken = "foo";
1797 o.selfLink = "foo"; 1797 o.selfLink = "foo";
1798 } 1798 }
1799 buildCounterInstanceList--; 1799 buildCounterInstanceList--;
1800 return o; 1800 return o;
1801 } 1801 }
1802 1802
1803 checkInstanceList(api.InstanceList o) { 1803 checkInstanceList(api.InstanceList o) {
1804 buildCounterInstanceList++; 1804 buildCounterInstanceList++;
1805 if (buildCounterInstanceList < 3) { 1805 if (buildCounterInstanceList < 3) {
1806 unittest.expect(o.id, unittest.equals('foo')); 1806 unittest.expect(o.id, unittest.equals('foo'));
1807 checkUnnamed963(o.items); 1807 checkUnnamed502(o.items);
1808 unittest.expect(o.kind, unittest.equals('foo')); 1808 unittest.expect(o.kind, unittest.equals('foo'));
1809 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1809 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1810 unittest.expect(o.selfLink, unittest.equals('foo')); 1810 unittest.expect(o.selfLink, unittest.equals('foo'));
1811 } 1811 }
1812 buildCounterInstanceList--; 1812 buildCounterInstanceList--;
1813 } 1813 }
1814 1814
1815 buildUnnamed964() { 1815 buildUnnamed503() {
1816 var o = new core.List<api.AttachedDisk>(); 1816 var o = new core.List<api.AttachedDisk>();
1817 o.add(buildAttachedDisk()); 1817 o.add(buildAttachedDisk());
1818 o.add(buildAttachedDisk()); 1818 o.add(buildAttachedDisk());
1819 return o; 1819 return o;
1820 } 1820 }
1821 1821
1822 checkUnnamed964(core.List<api.AttachedDisk> o) { 1822 checkUnnamed503(core.List<api.AttachedDisk> o) {
1823 unittest.expect(o, unittest.hasLength(2)); 1823 unittest.expect(o, unittest.hasLength(2));
1824 checkAttachedDisk(o[0]); 1824 checkAttachedDisk(o[0]);
1825 checkAttachedDisk(o[1]); 1825 checkAttachedDisk(o[1]);
1826 } 1826 }
1827 1827
1828 buildUnnamed965() { 1828 buildUnnamed504() {
1829 var o = new core.List<api.NetworkInterface>(); 1829 var o = new core.List<api.NetworkInterface>();
1830 o.add(buildNetworkInterface()); 1830 o.add(buildNetworkInterface());
1831 o.add(buildNetworkInterface()); 1831 o.add(buildNetworkInterface());
1832 return o; 1832 return o;
1833 } 1833 }
1834 1834
1835 checkUnnamed965(core.List<api.NetworkInterface> o) { 1835 checkUnnamed504(core.List<api.NetworkInterface> o) {
1836 unittest.expect(o, unittest.hasLength(2)); 1836 unittest.expect(o, unittest.hasLength(2));
1837 checkNetworkInterface(o[0]); 1837 checkNetworkInterface(o[0]);
1838 checkNetworkInterface(o[1]); 1838 checkNetworkInterface(o[1]);
1839 } 1839 }
1840 1840
1841 buildUnnamed966() { 1841 buildUnnamed505() {
1842 var o = new core.List<api.ServiceAccount>(); 1842 var o = new core.List<api.ServiceAccount>();
1843 o.add(buildServiceAccount()); 1843 o.add(buildServiceAccount());
1844 o.add(buildServiceAccount()); 1844 o.add(buildServiceAccount());
1845 return o; 1845 return o;
1846 } 1846 }
1847 1847
1848 checkUnnamed966(core.List<api.ServiceAccount> o) { 1848 checkUnnamed505(core.List<api.ServiceAccount> o) {
1849 unittest.expect(o, unittest.hasLength(2)); 1849 unittest.expect(o, unittest.hasLength(2));
1850 checkServiceAccount(o[0]); 1850 checkServiceAccount(o[0]);
1851 checkServiceAccount(o[1]); 1851 checkServiceAccount(o[1]);
1852 } 1852 }
1853 1853
1854 core.int buildCounterInstanceProperties = 0; 1854 core.int buildCounterInstanceProperties = 0;
1855 buildInstanceProperties() { 1855 buildInstanceProperties() {
1856 var o = new api.InstanceProperties(); 1856 var o = new api.InstanceProperties();
1857 buildCounterInstanceProperties++; 1857 buildCounterInstanceProperties++;
1858 if (buildCounterInstanceProperties < 3) { 1858 if (buildCounterInstanceProperties < 3) {
1859 o.canIpForward = true; 1859 o.canIpForward = true;
1860 o.description = "foo"; 1860 o.description = "foo";
1861 o.disks = buildUnnamed964(); 1861 o.disks = buildUnnamed503();
1862 o.machineType = "foo"; 1862 o.machineType = "foo";
1863 o.metadata = buildMetadata(); 1863 o.metadata = buildMetadata();
1864 o.networkInterfaces = buildUnnamed965(); 1864 o.networkInterfaces = buildUnnamed504();
1865 o.scheduling = buildScheduling(); 1865 o.scheduling = buildScheduling();
1866 o.serviceAccounts = buildUnnamed966(); 1866 o.serviceAccounts = buildUnnamed505();
1867 o.tags = buildTags(); 1867 o.tags = buildTags();
1868 } 1868 }
1869 buildCounterInstanceProperties--; 1869 buildCounterInstanceProperties--;
1870 return o; 1870 return o;
1871 } 1871 }
1872 1872
1873 checkInstanceProperties(api.InstanceProperties o) { 1873 checkInstanceProperties(api.InstanceProperties o) {
1874 buildCounterInstanceProperties++; 1874 buildCounterInstanceProperties++;
1875 if (buildCounterInstanceProperties < 3) { 1875 if (buildCounterInstanceProperties < 3) {
1876 unittest.expect(o.canIpForward, unittest.isTrue); 1876 unittest.expect(o.canIpForward, unittest.isTrue);
1877 unittest.expect(o.description, unittest.equals('foo')); 1877 unittest.expect(o.description, unittest.equals('foo'));
1878 checkUnnamed964(o.disks); 1878 checkUnnamed503(o.disks);
1879 unittest.expect(o.machineType, unittest.equals('foo')); 1879 unittest.expect(o.machineType, unittest.equals('foo'));
1880 checkMetadata(o.metadata); 1880 checkMetadata(o.metadata);
1881 checkUnnamed965(o.networkInterfaces); 1881 checkUnnamed504(o.networkInterfaces);
1882 checkScheduling(o.scheduling); 1882 checkScheduling(o.scheduling);
1883 checkUnnamed966(o.serviceAccounts); 1883 checkUnnamed505(o.serviceAccounts);
1884 checkTags(o.tags); 1884 checkTags(o.tags);
1885 } 1885 }
1886 buildCounterInstanceProperties--; 1886 buildCounterInstanceProperties--;
1887 } 1887 }
1888 1888
1889 core.int buildCounterInstanceReference = 0; 1889 core.int buildCounterInstanceReference = 0;
1890 buildInstanceReference() { 1890 buildInstanceReference() {
1891 var o = new api.InstanceReference(); 1891 var o = new api.InstanceReference();
1892 buildCounterInstanceReference++; 1892 buildCounterInstanceReference++;
1893 if (buildCounterInstanceReference < 3) { 1893 if (buildCounterInstanceReference < 3) {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1929 unittest.expect(o.description, unittest.equals('foo')); 1929 unittest.expect(o.description, unittest.equals('foo'));
1930 unittest.expect(o.id, unittest.equals('foo')); 1930 unittest.expect(o.id, unittest.equals('foo'));
1931 unittest.expect(o.kind, unittest.equals('foo')); 1931 unittest.expect(o.kind, unittest.equals('foo'));
1932 unittest.expect(o.name, unittest.equals('foo')); 1932 unittest.expect(o.name, unittest.equals('foo'));
1933 checkInstanceProperties(o.properties); 1933 checkInstanceProperties(o.properties);
1934 unittest.expect(o.selfLink, unittest.equals('foo')); 1934 unittest.expect(o.selfLink, unittest.equals('foo'));
1935 } 1935 }
1936 buildCounterInstanceTemplate--; 1936 buildCounterInstanceTemplate--;
1937 } 1937 }
1938 1938
1939 buildUnnamed967() { 1939 buildUnnamed506() {
1940 var o = new core.List<api.InstanceTemplate>(); 1940 var o = new core.List<api.InstanceTemplate>();
1941 o.add(buildInstanceTemplate()); 1941 o.add(buildInstanceTemplate());
1942 o.add(buildInstanceTemplate()); 1942 o.add(buildInstanceTemplate());
1943 return o; 1943 return o;
1944 } 1944 }
1945 1945
1946 checkUnnamed967(core.List<api.InstanceTemplate> o) { 1946 checkUnnamed506(core.List<api.InstanceTemplate> o) {
1947 unittest.expect(o, unittest.hasLength(2)); 1947 unittest.expect(o, unittest.hasLength(2));
1948 checkInstanceTemplate(o[0]); 1948 checkInstanceTemplate(o[0]);
1949 checkInstanceTemplate(o[1]); 1949 checkInstanceTemplate(o[1]);
1950 } 1950 }
1951 1951
1952 core.int buildCounterInstanceTemplateList = 0; 1952 core.int buildCounterInstanceTemplateList = 0;
1953 buildInstanceTemplateList() { 1953 buildInstanceTemplateList() {
1954 var o = new api.InstanceTemplateList(); 1954 var o = new api.InstanceTemplateList();
1955 buildCounterInstanceTemplateList++; 1955 buildCounterInstanceTemplateList++;
1956 if (buildCounterInstanceTemplateList < 3) { 1956 if (buildCounterInstanceTemplateList < 3) {
1957 o.id = "foo"; 1957 o.id = "foo";
1958 o.items = buildUnnamed967(); 1958 o.items = buildUnnamed506();
1959 o.kind = "foo"; 1959 o.kind = "foo";
1960 o.nextPageToken = "foo"; 1960 o.nextPageToken = "foo";
1961 o.selfLink = "foo"; 1961 o.selfLink = "foo";
1962 } 1962 }
1963 buildCounterInstanceTemplateList--; 1963 buildCounterInstanceTemplateList--;
1964 return o; 1964 return o;
1965 } 1965 }
1966 1966
1967 checkInstanceTemplateList(api.InstanceTemplateList o) { 1967 checkInstanceTemplateList(api.InstanceTemplateList o) {
1968 buildCounterInstanceTemplateList++; 1968 buildCounterInstanceTemplateList++;
1969 if (buildCounterInstanceTemplateList < 3) { 1969 if (buildCounterInstanceTemplateList < 3) {
1970 unittest.expect(o.id, unittest.equals('foo')); 1970 unittest.expect(o.id, unittest.equals('foo'));
1971 checkUnnamed967(o.items); 1971 checkUnnamed506(o.items);
1972 unittest.expect(o.kind, unittest.equals('foo')); 1972 unittest.expect(o.kind, unittest.equals('foo'));
1973 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1973 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1974 unittest.expect(o.selfLink, unittest.equals('foo')); 1974 unittest.expect(o.selfLink, unittest.equals('foo'));
1975 } 1975 }
1976 buildCounterInstanceTemplateList--; 1976 buildCounterInstanceTemplateList--;
1977 } 1977 }
1978 1978
1979 buildUnnamed968() { 1979 buildUnnamed507() {
1980 var o = new core.List<api.Instance>(); 1980 var o = new core.List<api.Instance>();
1981 o.add(buildInstance()); 1981 o.add(buildInstance());
1982 o.add(buildInstance()); 1982 o.add(buildInstance());
1983 return o; 1983 return o;
1984 } 1984 }
1985 1985
1986 checkUnnamed968(core.List<api.Instance> o) { 1986 checkUnnamed507(core.List<api.Instance> o) {
1987 unittest.expect(o, unittest.hasLength(2)); 1987 unittest.expect(o, unittest.hasLength(2));
1988 checkInstance(o[0]); 1988 checkInstance(o[0]);
1989 checkInstance(o[1]); 1989 checkInstance(o[1]);
1990 } 1990 }
1991 1991
1992 core.int buildCounterInstancesScopedListWarningData = 0; 1992 core.int buildCounterInstancesScopedListWarningData = 0;
1993 buildInstancesScopedListWarningData() { 1993 buildInstancesScopedListWarningData() {
1994 var o = new api.InstancesScopedListWarningData(); 1994 var o = new api.InstancesScopedListWarningData();
1995 buildCounterInstancesScopedListWarningData++; 1995 buildCounterInstancesScopedListWarningData++;
1996 if (buildCounterInstancesScopedListWarningData < 3) { 1996 if (buildCounterInstancesScopedListWarningData < 3) {
1997 o.key = "foo"; 1997 o.key = "foo";
1998 o.value = "foo"; 1998 o.value = "foo";
1999 } 1999 }
2000 buildCounterInstancesScopedListWarningData--; 2000 buildCounterInstancesScopedListWarningData--;
2001 return o; 2001 return o;
2002 } 2002 }
2003 2003
2004 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { 2004 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) {
2005 buildCounterInstancesScopedListWarningData++; 2005 buildCounterInstancesScopedListWarningData++;
2006 if (buildCounterInstancesScopedListWarningData < 3) { 2006 if (buildCounterInstancesScopedListWarningData < 3) {
2007 unittest.expect(o.key, unittest.equals('foo')); 2007 unittest.expect(o.key, unittest.equals('foo'));
2008 unittest.expect(o.value, unittest.equals('foo')); 2008 unittest.expect(o.value, unittest.equals('foo'));
2009 } 2009 }
2010 buildCounterInstancesScopedListWarningData--; 2010 buildCounterInstancesScopedListWarningData--;
2011 } 2011 }
2012 2012
2013 buildUnnamed969() { 2013 buildUnnamed508() {
2014 var o = new core.List<api.InstancesScopedListWarningData>(); 2014 var o = new core.List<api.InstancesScopedListWarningData>();
2015 o.add(buildInstancesScopedListWarningData()); 2015 o.add(buildInstancesScopedListWarningData());
2016 o.add(buildInstancesScopedListWarningData()); 2016 o.add(buildInstancesScopedListWarningData());
2017 return o; 2017 return o;
2018 } 2018 }
2019 2019
2020 checkUnnamed969(core.List<api.InstancesScopedListWarningData> o) { 2020 checkUnnamed508(core.List<api.InstancesScopedListWarningData> o) {
2021 unittest.expect(o, unittest.hasLength(2)); 2021 unittest.expect(o, unittest.hasLength(2));
2022 checkInstancesScopedListWarningData(o[0]); 2022 checkInstancesScopedListWarningData(o[0]);
2023 checkInstancesScopedListWarningData(o[1]); 2023 checkInstancesScopedListWarningData(o[1]);
2024 } 2024 }
2025 2025
2026 core.int buildCounterInstancesScopedListWarning = 0; 2026 core.int buildCounterInstancesScopedListWarning = 0;
2027 buildInstancesScopedListWarning() { 2027 buildInstancesScopedListWarning() {
2028 var o = new api.InstancesScopedListWarning(); 2028 var o = new api.InstancesScopedListWarning();
2029 buildCounterInstancesScopedListWarning++; 2029 buildCounterInstancesScopedListWarning++;
2030 if (buildCounterInstancesScopedListWarning < 3) { 2030 if (buildCounterInstancesScopedListWarning < 3) {
2031 o.code = "foo"; 2031 o.code = "foo";
2032 o.data = buildUnnamed969(); 2032 o.data = buildUnnamed508();
2033 o.message = "foo"; 2033 o.message = "foo";
2034 } 2034 }
2035 buildCounterInstancesScopedListWarning--; 2035 buildCounterInstancesScopedListWarning--;
2036 return o; 2036 return o;
2037 } 2037 }
2038 2038
2039 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { 2039 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) {
2040 buildCounterInstancesScopedListWarning++; 2040 buildCounterInstancesScopedListWarning++;
2041 if (buildCounterInstancesScopedListWarning < 3) { 2041 if (buildCounterInstancesScopedListWarning < 3) {
2042 unittest.expect(o.code, unittest.equals('foo')); 2042 unittest.expect(o.code, unittest.equals('foo'));
2043 checkUnnamed969(o.data); 2043 checkUnnamed508(o.data);
2044 unittest.expect(o.message, unittest.equals('foo')); 2044 unittest.expect(o.message, unittest.equals('foo'));
2045 } 2045 }
2046 buildCounterInstancesScopedListWarning--; 2046 buildCounterInstancesScopedListWarning--;
2047 } 2047 }
2048 2048
2049 core.int buildCounterInstancesScopedList = 0; 2049 core.int buildCounterInstancesScopedList = 0;
2050 buildInstancesScopedList() { 2050 buildInstancesScopedList() {
2051 var o = new api.InstancesScopedList(); 2051 var o = new api.InstancesScopedList();
2052 buildCounterInstancesScopedList++; 2052 buildCounterInstancesScopedList++;
2053 if (buildCounterInstancesScopedList < 3) { 2053 if (buildCounterInstancesScopedList < 3) {
2054 o.instances = buildUnnamed968(); 2054 o.instances = buildUnnamed507();
2055 o.warning = buildInstancesScopedListWarning(); 2055 o.warning = buildInstancesScopedListWarning();
2056 } 2056 }
2057 buildCounterInstancesScopedList--; 2057 buildCounterInstancesScopedList--;
2058 return o; 2058 return o;
2059 } 2059 }
2060 2060
2061 checkInstancesScopedList(api.InstancesScopedList o) { 2061 checkInstancesScopedList(api.InstancesScopedList o) {
2062 buildCounterInstancesScopedList++; 2062 buildCounterInstancesScopedList++;
2063 if (buildCounterInstancesScopedList < 3) { 2063 if (buildCounterInstancesScopedList < 3) {
2064 checkUnnamed968(o.instances); 2064 checkUnnamed507(o.instances);
2065 checkInstancesScopedListWarning(o.warning); 2065 checkInstancesScopedListWarning(o.warning);
2066 } 2066 }
2067 buildCounterInstancesScopedList--; 2067 buildCounterInstancesScopedList--;
2068 } 2068 }
2069 2069
2070 core.int buildCounterLicense = 0; 2070 core.int buildCounterLicense = 0;
2071 buildLicense() { 2071 buildLicense() {
2072 var o = new api.License(); 2072 var o = new api.License();
2073 buildCounterLicense++; 2073 buildCounterLicense++;
2074 if (buildCounterLicense < 3) { 2074 if (buildCounterLicense < 3) {
(...skipping 29 matching lines...) Expand all
2104 } 2104 }
2105 2105
2106 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { 2106 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) {
2107 buildCounterMachineTypeScratchDisks++; 2107 buildCounterMachineTypeScratchDisks++;
2108 if (buildCounterMachineTypeScratchDisks < 3) { 2108 if (buildCounterMachineTypeScratchDisks < 3) {
2109 unittest.expect(o.diskGb, unittest.equals(42)); 2109 unittest.expect(o.diskGb, unittest.equals(42));
2110 } 2110 }
2111 buildCounterMachineTypeScratchDisks--; 2111 buildCounterMachineTypeScratchDisks--;
2112 } 2112 }
2113 2113
2114 buildUnnamed970() { 2114 buildUnnamed509() {
2115 var o = new core.List<api.MachineTypeScratchDisks>(); 2115 var o = new core.List<api.MachineTypeScratchDisks>();
2116 o.add(buildMachineTypeScratchDisks()); 2116 o.add(buildMachineTypeScratchDisks());
2117 o.add(buildMachineTypeScratchDisks()); 2117 o.add(buildMachineTypeScratchDisks());
2118 return o; 2118 return o;
2119 } 2119 }
2120 2120
2121 checkUnnamed970(core.List<api.MachineTypeScratchDisks> o) { 2121 checkUnnamed509(core.List<api.MachineTypeScratchDisks> o) {
2122 unittest.expect(o, unittest.hasLength(2)); 2122 unittest.expect(o, unittest.hasLength(2));
2123 checkMachineTypeScratchDisks(o[0]); 2123 checkMachineTypeScratchDisks(o[0]);
2124 checkMachineTypeScratchDisks(o[1]); 2124 checkMachineTypeScratchDisks(o[1]);
2125 } 2125 }
2126 2126
2127 core.int buildCounterMachineType = 0; 2127 core.int buildCounterMachineType = 0;
2128 buildMachineType() { 2128 buildMachineType() {
2129 var o = new api.MachineType(); 2129 var o = new api.MachineType();
2130 buildCounterMachineType++; 2130 buildCounterMachineType++;
2131 if (buildCounterMachineType < 3) { 2131 if (buildCounterMachineType < 3) {
2132 o.creationTimestamp = "foo"; 2132 o.creationTimestamp = "foo";
2133 o.deprecated = buildDeprecationStatus(); 2133 o.deprecated = buildDeprecationStatus();
2134 o.description = "foo"; 2134 o.description = "foo";
2135 o.guestCpus = 42; 2135 o.guestCpus = 42;
2136 o.id = "foo"; 2136 o.id = "foo";
2137 o.imageSpaceGb = 42; 2137 o.imageSpaceGb = 42;
2138 o.kind = "foo"; 2138 o.kind = "foo";
2139 o.maximumPersistentDisks = 42; 2139 o.maximumPersistentDisks = 42;
2140 o.maximumPersistentDisksSizeGb = "foo"; 2140 o.maximumPersistentDisksSizeGb = "foo";
2141 o.memoryMb = 42; 2141 o.memoryMb = 42;
2142 o.name = "foo"; 2142 o.name = "foo";
2143 o.scratchDisks = buildUnnamed970(); 2143 o.scratchDisks = buildUnnamed509();
2144 o.selfLink = "foo"; 2144 o.selfLink = "foo";
2145 o.zone = "foo"; 2145 o.zone = "foo";
2146 } 2146 }
2147 buildCounterMachineType--; 2147 buildCounterMachineType--;
2148 return o; 2148 return o;
2149 } 2149 }
2150 2150
2151 checkMachineType(api.MachineType o) { 2151 checkMachineType(api.MachineType o) {
2152 buildCounterMachineType++; 2152 buildCounterMachineType++;
2153 if (buildCounterMachineType < 3) { 2153 if (buildCounterMachineType < 3) {
2154 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 2154 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
2155 checkDeprecationStatus(o.deprecated); 2155 checkDeprecationStatus(o.deprecated);
2156 unittest.expect(o.description, unittest.equals('foo')); 2156 unittest.expect(o.description, unittest.equals('foo'));
2157 unittest.expect(o.guestCpus, unittest.equals(42)); 2157 unittest.expect(o.guestCpus, unittest.equals(42));
2158 unittest.expect(o.id, unittest.equals('foo')); 2158 unittest.expect(o.id, unittest.equals('foo'));
2159 unittest.expect(o.imageSpaceGb, unittest.equals(42)); 2159 unittest.expect(o.imageSpaceGb, unittest.equals(42));
2160 unittest.expect(o.kind, unittest.equals('foo')); 2160 unittest.expect(o.kind, unittest.equals('foo'));
2161 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); 2161 unittest.expect(o.maximumPersistentDisks, unittest.equals(42));
2162 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); 2162 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo'));
2163 unittest.expect(o.memoryMb, unittest.equals(42)); 2163 unittest.expect(o.memoryMb, unittest.equals(42));
2164 unittest.expect(o.name, unittest.equals('foo')); 2164 unittest.expect(o.name, unittest.equals('foo'));
2165 checkUnnamed970(o.scratchDisks); 2165 checkUnnamed509(o.scratchDisks);
2166 unittest.expect(o.selfLink, unittest.equals('foo')); 2166 unittest.expect(o.selfLink, unittest.equals('foo'));
2167 unittest.expect(o.zone, unittest.equals('foo')); 2167 unittest.expect(o.zone, unittest.equals('foo'));
2168 } 2168 }
2169 buildCounterMachineType--; 2169 buildCounterMachineType--;
2170 } 2170 }
2171 2171
2172 buildUnnamed971() { 2172 buildUnnamed510() {
2173 var o = new core.Map<core.String, api.MachineTypesScopedList>(); 2173 var o = new core.Map<core.String, api.MachineTypesScopedList>();
2174 o["x"] = buildMachineTypesScopedList(); 2174 o["x"] = buildMachineTypesScopedList();
2175 o["y"] = buildMachineTypesScopedList(); 2175 o["y"] = buildMachineTypesScopedList();
2176 return o; 2176 return o;
2177 } 2177 }
2178 2178
2179 checkUnnamed971(core.Map<core.String, api.MachineTypesScopedList> o) { 2179 checkUnnamed510(core.Map<core.String, api.MachineTypesScopedList> o) {
2180 unittest.expect(o, unittest.hasLength(2)); 2180 unittest.expect(o, unittest.hasLength(2));
2181 checkMachineTypesScopedList(o["x"]); 2181 checkMachineTypesScopedList(o["x"]);
2182 checkMachineTypesScopedList(o["y"]); 2182 checkMachineTypesScopedList(o["y"]);
2183 } 2183 }
2184 2184
2185 core.int buildCounterMachineTypeAggregatedList = 0; 2185 core.int buildCounterMachineTypeAggregatedList = 0;
2186 buildMachineTypeAggregatedList() { 2186 buildMachineTypeAggregatedList() {
2187 var o = new api.MachineTypeAggregatedList(); 2187 var o = new api.MachineTypeAggregatedList();
2188 buildCounterMachineTypeAggregatedList++; 2188 buildCounterMachineTypeAggregatedList++;
2189 if (buildCounterMachineTypeAggregatedList < 3) { 2189 if (buildCounterMachineTypeAggregatedList < 3) {
2190 o.id = "foo"; 2190 o.id = "foo";
2191 o.items = buildUnnamed971(); 2191 o.items = buildUnnamed510();
2192 o.kind = "foo"; 2192 o.kind = "foo";
2193 o.nextPageToken = "foo"; 2193 o.nextPageToken = "foo";
2194 o.selfLink = "foo"; 2194 o.selfLink = "foo";
2195 } 2195 }
2196 buildCounterMachineTypeAggregatedList--; 2196 buildCounterMachineTypeAggregatedList--;
2197 return o; 2197 return o;
2198 } 2198 }
2199 2199
2200 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { 2200 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) {
2201 buildCounterMachineTypeAggregatedList++; 2201 buildCounterMachineTypeAggregatedList++;
2202 if (buildCounterMachineTypeAggregatedList < 3) { 2202 if (buildCounterMachineTypeAggregatedList < 3) {
2203 unittest.expect(o.id, unittest.equals('foo')); 2203 unittest.expect(o.id, unittest.equals('foo'));
2204 checkUnnamed971(o.items); 2204 checkUnnamed510(o.items);
2205 unittest.expect(o.kind, unittest.equals('foo')); 2205 unittest.expect(o.kind, unittest.equals('foo'));
2206 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2206 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2207 unittest.expect(o.selfLink, unittest.equals('foo')); 2207 unittest.expect(o.selfLink, unittest.equals('foo'));
2208 } 2208 }
2209 buildCounterMachineTypeAggregatedList--; 2209 buildCounterMachineTypeAggregatedList--;
2210 } 2210 }
2211 2211
2212 buildUnnamed972() { 2212 buildUnnamed511() {
2213 var o = new core.List<api.MachineType>(); 2213 var o = new core.List<api.MachineType>();
2214 o.add(buildMachineType()); 2214 o.add(buildMachineType());
2215 o.add(buildMachineType()); 2215 o.add(buildMachineType());
2216 return o; 2216 return o;
2217 } 2217 }
2218 2218
2219 checkUnnamed972(core.List<api.MachineType> o) { 2219 checkUnnamed511(core.List<api.MachineType> o) {
2220 unittest.expect(o, unittest.hasLength(2)); 2220 unittest.expect(o, unittest.hasLength(2));
2221 checkMachineType(o[0]); 2221 checkMachineType(o[0]);
2222 checkMachineType(o[1]); 2222 checkMachineType(o[1]);
2223 } 2223 }
2224 2224
2225 core.int buildCounterMachineTypeList = 0; 2225 core.int buildCounterMachineTypeList = 0;
2226 buildMachineTypeList() { 2226 buildMachineTypeList() {
2227 var o = new api.MachineTypeList(); 2227 var o = new api.MachineTypeList();
2228 buildCounterMachineTypeList++; 2228 buildCounterMachineTypeList++;
2229 if (buildCounterMachineTypeList < 3) { 2229 if (buildCounterMachineTypeList < 3) {
2230 o.id = "foo"; 2230 o.id = "foo";
2231 o.items = buildUnnamed972(); 2231 o.items = buildUnnamed511();
2232 o.kind = "foo"; 2232 o.kind = "foo";
2233 o.nextPageToken = "foo"; 2233 o.nextPageToken = "foo";
2234 o.selfLink = "foo"; 2234 o.selfLink = "foo";
2235 } 2235 }
2236 buildCounterMachineTypeList--; 2236 buildCounterMachineTypeList--;
2237 return o; 2237 return o;
2238 } 2238 }
2239 2239
2240 checkMachineTypeList(api.MachineTypeList o) { 2240 checkMachineTypeList(api.MachineTypeList o) {
2241 buildCounterMachineTypeList++; 2241 buildCounterMachineTypeList++;
2242 if (buildCounterMachineTypeList < 3) { 2242 if (buildCounterMachineTypeList < 3) {
2243 unittest.expect(o.id, unittest.equals('foo')); 2243 unittest.expect(o.id, unittest.equals('foo'));
2244 checkUnnamed972(o.items); 2244 checkUnnamed511(o.items);
2245 unittest.expect(o.kind, unittest.equals('foo')); 2245 unittest.expect(o.kind, unittest.equals('foo'));
2246 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2246 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2247 unittest.expect(o.selfLink, unittest.equals('foo')); 2247 unittest.expect(o.selfLink, unittest.equals('foo'));
2248 } 2248 }
2249 buildCounterMachineTypeList--; 2249 buildCounterMachineTypeList--;
2250 } 2250 }
2251 2251
2252 buildUnnamed973() { 2252 buildUnnamed512() {
2253 var o = new core.List<api.MachineType>(); 2253 var o = new core.List<api.MachineType>();
2254 o.add(buildMachineType()); 2254 o.add(buildMachineType());
2255 o.add(buildMachineType()); 2255 o.add(buildMachineType());
2256 return o; 2256 return o;
2257 } 2257 }
2258 2258
2259 checkUnnamed973(core.List<api.MachineType> o) { 2259 checkUnnamed512(core.List<api.MachineType> o) {
2260 unittest.expect(o, unittest.hasLength(2)); 2260 unittest.expect(o, unittest.hasLength(2));
2261 checkMachineType(o[0]); 2261 checkMachineType(o[0]);
2262 checkMachineType(o[1]); 2262 checkMachineType(o[1]);
2263 } 2263 }
2264 2264
2265 core.int buildCounterMachineTypesScopedListWarningData = 0; 2265 core.int buildCounterMachineTypesScopedListWarningData = 0;
2266 buildMachineTypesScopedListWarningData() { 2266 buildMachineTypesScopedListWarningData() {
2267 var o = new api.MachineTypesScopedListWarningData(); 2267 var o = new api.MachineTypesScopedListWarningData();
2268 buildCounterMachineTypesScopedListWarningData++; 2268 buildCounterMachineTypesScopedListWarningData++;
2269 if (buildCounterMachineTypesScopedListWarningData < 3) { 2269 if (buildCounterMachineTypesScopedListWarningData < 3) {
2270 o.key = "foo"; 2270 o.key = "foo";
2271 o.value = "foo"; 2271 o.value = "foo";
2272 } 2272 }
2273 buildCounterMachineTypesScopedListWarningData--; 2273 buildCounterMachineTypesScopedListWarningData--;
2274 return o; 2274 return o;
2275 } 2275 }
2276 2276
2277 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o) { 2277 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o) {
2278 buildCounterMachineTypesScopedListWarningData++; 2278 buildCounterMachineTypesScopedListWarningData++;
2279 if (buildCounterMachineTypesScopedListWarningData < 3) { 2279 if (buildCounterMachineTypesScopedListWarningData < 3) {
2280 unittest.expect(o.key, unittest.equals('foo')); 2280 unittest.expect(o.key, unittest.equals('foo'));
2281 unittest.expect(o.value, unittest.equals('foo')); 2281 unittest.expect(o.value, unittest.equals('foo'));
2282 } 2282 }
2283 buildCounterMachineTypesScopedListWarningData--; 2283 buildCounterMachineTypesScopedListWarningData--;
2284 } 2284 }
2285 2285
2286 buildUnnamed974() { 2286 buildUnnamed513() {
2287 var o = new core.List<api.MachineTypesScopedListWarningData>(); 2287 var o = new core.List<api.MachineTypesScopedListWarningData>();
2288 o.add(buildMachineTypesScopedListWarningData()); 2288 o.add(buildMachineTypesScopedListWarningData());
2289 o.add(buildMachineTypesScopedListWarningData()); 2289 o.add(buildMachineTypesScopedListWarningData());
2290 return o; 2290 return o;
2291 } 2291 }
2292 2292
2293 checkUnnamed974(core.List<api.MachineTypesScopedListWarningData> o) { 2293 checkUnnamed513(core.List<api.MachineTypesScopedListWarningData> o) {
2294 unittest.expect(o, unittest.hasLength(2)); 2294 unittest.expect(o, unittest.hasLength(2));
2295 checkMachineTypesScopedListWarningData(o[0]); 2295 checkMachineTypesScopedListWarningData(o[0]);
2296 checkMachineTypesScopedListWarningData(o[1]); 2296 checkMachineTypesScopedListWarningData(o[1]);
2297 } 2297 }
2298 2298
2299 core.int buildCounterMachineTypesScopedListWarning = 0; 2299 core.int buildCounterMachineTypesScopedListWarning = 0;
2300 buildMachineTypesScopedListWarning() { 2300 buildMachineTypesScopedListWarning() {
2301 var o = new api.MachineTypesScopedListWarning(); 2301 var o = new api.MachineTypesScopedListWarning();
2302 buildCounterMachineTypesScopedListWarning++; 2302 buildCounterMachineTypesScopedListWarning++;
2303 if (buildCounterMachineTypesScopedListWarning < 3) { 2303 if (buildCounterMachineTypesScopedListWarning < 3) {
2304 o.code = "foo"; 2304 o.code = "foo";
2305 o.data = buildUnnamed974(); 2305 o.data = buildUnnamed513();
2306 o.message = "foo"; 2306 o.message = "foo";
2307 } 2307 }
2308 buildCounterMachineTypesScopedListWarning--; 2308 buildCounterMachineTypesScopedListWarning--;
2309 return o; 2309 return o;
2310 } 2310 }
2311 2311
2312 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { 2312 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) {
2313 buildCounterMachineTypesScopedListWarning++; 2313 buildCounterMachineTypesScopedListWarning++;
2314 if (buildCounterMachineTypesScopedListWarning < 3) { 2314 if (buildCounterMachineTypesScopedListWarning < 3) {
2315 unittest.expect(o.code, unittest.equals('foo')); 2315 unittest.expect(o.code, unittest.equals('foo'));
2316 checkUnnamed974(o.data); 2316 checkUnnamed513(o.data);
2317 unittest.expect(o.message, unittest.equals('foo')); 2317 unittest.expect(o.message, unittest.equals('foo'));
2318 } 2318 }
2319 buildCounterMachineTypesScopedListWarning--; 2319 buildCounterMachineTypesScopedListWarning--;
2320 } 2320 }
2321 2321
2322 core.int buildCounterMachineTypesScopedList = 0; 2322 core.int buildCounterMachineTypesScopedList = 0;
2323 buildMachineTypesScopedList() { 2323 buildMachineTypesScopedList() {
2324 var o = new api.MachineTypesScopedList(); 2324 var o = new api.MachineTypesScopedList();
2325 buildCounterMachineTypesScopedList++; 2325 buildCounterMachineTypesScopedList++;
2326 if (buildCounterMachineTypesScopedList < 3) { 2326 if (buildCounterMachineTypesScopedList < 3) {
2327 o.machineTypes = buildUnnamed973(); 2327 o.machineTypes = buildUnnamed512();
2328 o.warning = buildMachineTypesScopedListWarning(); 2328 o.warning = buildMachineTypesScopedListWarning();
2329 } 2329 }
2330 buildCounterMachineTypesScopedList--; 2330 buildCounterMachineTypesScopedList--;
2331 return o; 2331 return o;
2332 } 2332 }
2333 2333
2334 checkMachineTypesScopedList(api.MachineTypesScopedList o) { 2334 checkMachineTypesScopedList(api.MachineTypesScopedList o) {
2335 buildCounterMachineTypesScopedList++; 2335 buildCounterMachineTypesScopedList++;
2336 if (buildCounterMachineTypesScopedList < 3) { 2336 if (buildCounterMachineTypesScopedList < 3) {
2337 checkUnnamed973(o.machineTypes); 2337 checkUnnamed512(o.machineTypes);
2338 checkMachineTypesScopedListWarning(o.warning); 2338 checkMachineTypesScopedListWarning(o.warning);
2339 } 2339 }
2340 buildCounterMachineTypesScopedList--; 2340 buildCounterMachineTypesScopedList--;
2341 } 2341 }
2342 2342
2343 core.int buildCounterMetadataItems = 0; 2343 core.int buildCounterMetadataItems = 0;
2344 buildMetadataItems() { 2344 buildMetadataItems() {
2345 var o = new api.MetadataItems(); 2345 var o = new api.MetadataItems();
2346 buildCounterMetadataItems++; 2346 buildCounterMetadataItems++;
2347 if (buildCounterMetadataItems < 3) { 2347 if (buildCounterMetadataItems < 3) {
2348 o.key = "foo"; 2348 o.key = "foo";
2349 o.value = "foo"; 2349 o.value = "foo";
2350 } 2350 }
2351 buildCounterMetadataItems--; 2351 buildCounterMetadataItems--;
2352 return o; 2352 return o;
2353 } 2353 }
2354 2354
2355 checkMetadataItems(api.MetadataItems o) { 2355 checkMetadataItems(api.MetadataItems o) {
2356 buildCounterMetadataItems++; 2356 buildCounterMetadataItems++;
2357 if (buildCounterMetadataItems < 3) { 2357 if (buildCounterMetadataItems < 3) {
2358 unittest.expect(o.key, unittest.equals('foo')); 2358 unittest.expect(o.key, unittest.equals('foo'));
2359 unittest.expect(o.value, unittest.equals('foo')); 2359 unittest.expect(o.value, unittest.equals('foo'));
2360 } 2360 }
2361 buildCounterMetadataItems--; 2361 buildCounterMetadataItems--;
2362 } 2362 }
2363 2363
2364 buildUnnamed975() { 2364 buildUnnamed514() {
2365 var o = new core.List<api.MetadataItems>(); 2365 var o = new core.List<api.MetadataItems>();
2366 o.add(buildMetadataItems()); 2366 o.add(buildMetadataItems());
2367 o.add(buildMetadataItems()); 2367 o.add(buildMetadataItems());
2368 return o; 2368 return o;
2369 } 2369 }
2370 2370
2371 checkUnnamed975(core.List<api.MetadataItems> o) { 2371 checkUnnamed514(core.List<api.MetadataItems> o) {
2372 unittest.expect(o, unittest.hasLength(2)); 2372 unittest.expect(o, unittest.hasLength(2));
2373 checkMetadataItems(o[0]); 2373 checkMetadataItems(o[0]);
2374 checkMetadataItems(o[1]); 2374 checkMetadataItems(o[1]);
2375 } 2375 }
2376 2376
2377 core.int buildCounterMetadata = 0; 2377 core.int buildCounterMetadata = 0;
2378 buildMetadata() { 2378 buildMetadata() {
2379 var o = new api.Metadata(); 2379 var o = new api.Metadata();
2380 buildCounterMetadata++; 2380 buildCounterMetadata++;
2381 if (buildCounterMetadata < 3) { 2381 if (buildCounterMetadata < 3) {
2382 o.fingerprint = "foo"; 2382 o.fingerprint = "foo";
2383 o.items = buildUnnamed975(); 2383 o.items = buildUnnamed514();
2384 o.kind = "foo"; 2384 o.kind = "foo";
2385 } 2385 }
2386 buildCounterMetadata--; 2386 buildCounterMetadata--;
2387 return o; 2387 return o;
2388 } 2388 }
2389 2389
2390 checkMetadata(api.Metadata o) { 2390 checkMetadata(api.Metadata o) {
2391 buildCounterMetadata++; 2391 buildCounterMetadata++;
2392 if (buildCounterMetadata < 3) { 2392 if (buildCounterMetadata < 3) {
2393 unittest.expect(o.fingerprint, unittest.equals('foo')); 2393 unittest.expect(o.fingerprint, unittest.equals('foo'));
2394 checkUnnamed975(o.items); 2394 checkUnnamed514(o.items);
2395 unittest.expect(o.kind, unittest.equals('foo')); 2395 unittest.expect(o.kind, unittest.equals('foo'));
2396 } 2396 }
2397 buildCounterMetadata--; 2397 buildCounterMetadata--;
2398 } 2398 }
2399 2399
2400 core.int buildCounterNetwork = 0; 2400 core.int buildCounterNetwork = 0;
2401 buildNetwork() { 2401 buildNetwork() {
2402 var o = new api.Network(); 2402 var o = new api.Network();
2403 buildCounterNetwork++; 2403 buildCounterNetwork++;
2404 if (buildCounterNetwork < 3) { 2404 if (buildCounterNetwork < 3) {
(...skipping 18 matching lines...) Expand all
2423 unittest.expect(o.description, unittest.equals('foo')); 2423 unittest.expect(o.description, unittest.equals('foo'));
2424 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); 2424 unittest.expect(o.gatewayIPv4, unittest.equals('foo'));
2425 unittest.expect(o.id, unittest.equals('foo')); 2425 unittest.expect(o.id, unittest.equals('foo'));
2426 unittest.expect(o.kind, unittest.equals('foo')); 2426 unittest.expect(o.kind, unittest.equals('foo'));
2427 unittest.expect(o.name, unittest.equals('foo')); 2427 unittest.expect(o.name, unittest.equals('foo'));
2428 unittest.expect(o.selfLink, unittest.equals('foo')); 2428 unittest.expect(o.selfLink, unittest.equals('foo'));
2429 } 2429 }
2430 buildCounterNetwork--; 2430 buildCounterNetwork--;
2431 } 2431 }
2432 2432
2433 buildUnnamed976() { 2433 buildUnnamed515() {
2434 var o = new core.List<api.AccessConfig>(); 2434 var o = new core.List<api.AccessConfig>();
2435 o.add(buildAccessConfig()); 2435 o.add(buildAccessConfig());
2436 o.add(buildAccessConfig()); 2436 o.add(buildAccessConfig());
2437 return o; 2437 return o;
2438 } 2438 }
2439 2439
2440 checkUnnamed976(core.List<api.AccessConfig> o) { 2440 checkUnnamed515(core.List<api.AccessConfig> o) {
2441 unittest.expect(o, unittest.hasLength(2)); 2441 unittest.expect(o, unittest.hasLength(2));
2442 checkAccessConfig(o[0]); 2442 checkAccessConfig(o[0]);
2443 checkAccessConfig(o[1]); 2443 checkAccessConfig(o[1]);
2444 } 2444 }
2445 2445
2446 core.int buildCounterNetworkInterface = 0; 2446 core.int buildCounterNetworkInterface = 0;
2447 buildNetworkInterface() { 2447 buildNetworkInterface() {
2448 var o = new api.NetworkInterface(); 2448 var o = new api.NetworkInterface();
2449 buildCounterNetworkInterface++; 2449 buildCounterNetworkInterface++;
2450 if (buildCounterNetworkInterface < 3) { 2450 if (buildCounterNetworkInterface < 3) {
2451 o.accessConfigs = buildUnnamed976(); 2451 o.accessConfigs = buildUnnamed515();
2452 o.name = "foo"; 2452 o.name = "foo";
2453 o.network = "foo"; 2453 o.network = "foo";
2454 o.networkIP = "foo"; 2454 o.networkIP = "foo";
2455 } 2455 }
2456 buildCounterNetworkInterface--; 2456 buildCounterNetworkInterface--;
2457 return o; 2457 return o;
2458 } 2458 }
2459 2459
2460 checkNetworkInterface(api.NetworkInterface o) { 2460 checkNetworkInterface(api.NetworkInterface o) {
2461 buildCounterNetworkInterface++; 2461 buildCounterNetworkInterface++;
2462 if (buildCounterNetworkInterface < 3) { 2462 if (buildCounterNetworkInterface < 3) {
2463 checkUnnamed976(o.accessConfigs); 2463 checkUnnamed515(o.accessConfigs);
2464 unittest.expect(o.name, unittest.equals('foo')); 2464 unittest.expect(o.name, unittest.equals('foo'));
2465 unittest.expect(o.network, unittest.equals('foo')); 2465 unittest.expect(o.network, unittest.equals('foo'));
2466 unittest.expect(o.networkIP, unittest.equals('foo')); 2466 unittest.expect(o.networkIP, unittest.equals('foo'));
2467 } 2467 }
2468 buildCounterNetworkInterface--; 2468 buildCounterNetworkInterface--;
2469 } 2469 }
2470 2470
2471 buildUnnamed977() { 2471 buildUnnamed516() {
2472 var o = new core.List<api.Network>(); 2472 var o = new core.List<api.Network>();
2473 o.add(buildNetwork()); 2473 o.add(buildNetwork());
2474 o.add(buildNetwork()); 2474 o.add(buildNetwork());
2475 return o; 2475 return o;
2476 } 2476 }
2477 2477
2478 checkUnnamed977(core.List<api.Network> o) { 2478 checkUnnamed516(core.List<api.Network> o) {
2479 unittest.expect(o, unittest.hasLength(2)); 2479 unittest.expect(o, unittest.hasLength(2));
2480 checkNetwork(o[0]); 2480 checkNetwork(o[0]);
2481 checkNetwork(o[1]); 2481 checkNetwork(o[1]);
2482 } 2482 }
2483 2483
2484 core.int buildCounterNetworkList = 0; 2484 core.int buildCounterNetworkList = 0;
2485 buildNetworkList() { 2485 buildNetworkList() {
2486 var o = new api.NetworkList(); 2486 var o = new api.NetworkList();
2487 buildCounterNetworkList++; 2487 buildCounterNetworkList++;
2488 if (buildCounterNetworkList < 3) { 2488 if (buildCounterNetworkList < 3) {
2489 o.id = "foo"; 2489 o.id = "foo";
2490 o.items = buildUnnamed977(); 2490 o.items = buildUnnamed516();
2491 o.kind = "foo"; 2491 o.kind = "foo";
2492 o.nextPageToken = "foo"; 2492 o.nextPageToken = "foo";
2493 o.selfLink = "foo"; 2493 o.selfLink = "foo";
2494 } 2494 }
2495 buildCounterNetworkList--; 2495 buildCounterNetworkList--;
2496 return o; 2496 return o;
2497 } 2497 }
2498 2498
2499 checkNetworkList(api.NetworkList o) { 2499 checkNetworkList(api.NetworkList o) {
2500 buildCounterNetworkList++; 2500 buildCounterNetworkList++;
2501 if (buildCounterNetworkList < 3) { 2501 if (buildCounterNetworkList < 3) {
2502 unittest.expect(o.id, unittest.equals('foo')); 2502 unittest.expect(o.id, unittest.equals('foo'));
2503 checkUnnamed977(o.items); 2503 checkUnnamed516(o.items);
2504 unittest.expect(o.kind, unittest.equals('foo')); 2504 unittest.expect(o.kind, unittest.equals('foo'));
2505 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2505 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2506 unittest.expect(o.selfLink, unittest.equals('foo')); 2506 unittest.expect(o.selfLink, unittest.equals('foo'));
2507 } 2507 }
2508 buildCounterNetworkList--; 2508 buildCounterNetworkList--;
2509 } 2509 }
2510 2510
2511 core.int buildCounterOperationErrorErrors = 0; 2511 core.int buildCounterOperationErrorErrors = 0;
2512 buildOperationErrorErrors() { 2512 buildOperationErrorErrors() {
2513 var o = new api.OperationErrorErrors(); 2513 var o = new api.OperationErrorErrors();
(...skipping 10 matching lines...) Expand all
2524 checkOperationErrorErrors(api.OperationErrorErrors o) { 2524 checkOperationErrorErrors(api.OperationErrorErrors o) {
2525 buildCounterOperationErrorErrors++; 2525 buildCounterOperationErrorErrors++;
2526 if (buildCounterOperationErrorErrors < 3) { 2526 if (buildCounterOperationErrorErrors < 3) {
2527 unittest.expect(o.code, unittest.equals('foo')); 2527 unittest.expect(o.code, unittest.equals('foo'));
2528 unittest.expect(o.location, unittest.equals('foo')); 2528 unittest.expect(o.location, unittest.equals('foo'));
2529 unittest.expect(o.message, unittest.equals('foo')); 2529 unittest.expect(o.message, unittest.equals('foo'));
2530 } 2530 }
2531 buildCounterOperationErrorErrors--; 2531 buildCounterOperationErrorErrors--;
2532 } 2532 }
2533 2533
2534 buildUnnamed978() { 2534 buildUnnamed517() {
2535 var o = new core.List<api.OperationErrorErrors>(); 2535 var o = new core.List<api.OperationErrorErrors>();
2536 o.add(buildOperationErrorErrors()); 2536 o.add(buildOperationErrorErrors());
2537 o.add(buildOperationErrorErrors()); 2537 o.add(buildOperationErrorErrors());
2538 return o; 2538 return o;
2539 } 2539 }
2540 2540
2541 checkUnnamed978(core.List<api.OperationErrorErrors> o) { 2541 checkUnnamed517(core.List<api.OperationErrorErrors> o) {
2542 unittest.expect(o, unittest.hasLength(2)); 2542 unittest.expect(o, unittest.hasLength(2));
2543 checkOperationErrorErrors(o[0]); 2543 checkOperationErrorErrors(o[0]);
2544 checkOperationErrorErrors(o[1]); 2544 checkOperationErrorErrors(o[1]);
2545 } 2545 }
2546 2546
2547 core.int buildCounterOperationError = 0; 2547 core.int buildCounterOperationError = 0;
2548 buildOperationError() { 2548 buildOperationError() {
2549 var o = new api.OperationError(); 2549 var o = new api.OperationError();
2550 buildCounterOperationError++; 2550 buildCounterOperationError++;
2551 if (buildCounterOperationError < 3) { 2551 if (buildCounterOperationError < 3) {
2552 o.errors = buildUnnamed978(); 2552 o.errors = buildUnnamed517();
2553 } 2553 }
2554 buildCounterOperationError--; 2554 buildCounterOperationError--;
2555 return o; 2555 return o;
2556 } 2556 }
2557 2557
2558 checkOperationError(api.OperationError o) { 2558 checkOperationError(api.OperationError o) {
2559 buildCounterOperationError++; 2559 buildCounterOperationError++;
2560 if (buildCounterOperationError < 3) { 2560 if (buildCounterOperationError < 3) {
2561 checkUnnamed978(o.errors); 2561 checkUnnamed517(o.errors);
2562 } 2562 }
2563 buildCounterOperationError--; 2563 buildCounterOperationError--;
2564 } 2564 }
2565 2565
2566 core.int buildCounterOperationWarningsData = 0; 2566 core.int buildCounterOperationWarningsData = 0;
2567 buildOperationWarningsData() { 2567 buildOperationWarningsData() {
2568 var o = new api.OperationWarningsData(); 2568 var o = new api.OperationWarningsData();
2569 buildCounterOperationWarningsData++; 2569 buildCounterOperationWarningsData++;
2570 if (buildCounterOperationWarningsData < 3) { 2570 if (buildCounterOperationWarningsData < 3) {
2571 o.key = "foo"; 2571 o.key = "foo";
2572 o.value = "foo"; 2572 o.value = "foo";
2573 } 2573 }
2574 buildCounterOperationWarningsData--; 2574 buildCounterOperationWarningsData--;
2575 return o; 2575 return o;
2576 } 2576 }
2577 2577
2578 checkOperationWarningsData(api.OperationWarningsData o) { 2578 checkOperationWarningsData(api.OperationWarningsData o) {
2579 buildCounterOperationWarningsData++; 2579 buildCounterOperationWarningsData++;
2580 if (buildCounterOperationWarningsData < 3) { 2580 if (buildCounterOperationWarningsData < 3) {
2581 unittest.expect(o.key, unittest.equals('foo')); 2581 unittest.expect(o.key, unittest.equals('foo'));
2582 unittest.expect(o.value, unittest.equals('foo')); 2582 unittest.expect(o.value, unittest.equals('foo'));
2583 } 2583 }
2584 buildCounterOperationWarningsData--; 2584 buildCounterOperationWarningsData--;
2585 } 2585 }
2586 2586
2587 buildUnnamed979() { 2587 buildUnnamed518() {
2588 var o = new core.List<api.OperationWarningsData>(); 2588 var o = new core.List<api.OperationWarningsData>();
2589 o.add(buildOperationWarningsData()); 2589 o.add(buildOperationWarningsData());
2590 o.add(buildOperationWarningsData()); 2590 o.add(buildOperationWarningsData());
2591 return o; 2591 return o;
2592 } 2592 }
2593 2593
2594 checkUnnamed979(core.List<api.OperationWarningsData> o) { 2594 checkUnnamed518(core.List<api.OperationWarningsData> o) {
2595 unittest.expect(o, unittest.hasLength(2)); 2595 unittest.expect(o, unittest.hasLength(2));
2596 checkOperationWarningsData(o[0]); 2596 checkOperationWarningsData(o[0]);
2597 checkOperationWarningsData(o[1]); 2597 checkOperationWarningsData(o[1]);
2598 } 2598 }
2599 2599
2600 core.int buildCounterOperationWarnings = 0; 2600 core.int buildCounterOperationWarnings = 0;
2601 buildOperationWarnings() { 2601 buildOperationWarnings() {
2602 var o = new api.OperationWarnings(); 2602 var o = new api.OperationWarnings();
2603 buildCounterOperationWarnings++; 2603 buildCounterOperationWarnings++;
2604 if (buildCounterOperationWarnings < 3) { 2604 if (buildCounterOperationWarnings < 3) {
2605 o.code = "foo"; 2605 o.code = "foo";
2606 o.data = buildUnnamed979(); 2606 o.data = buildUnnamed518();
2607 o.message = "foo"; 2607 o.message = "foo";
2608 } 2608 }
2609 buildCounterOperationWarnings--; 2609 buildCounterOperationWarnings--;
2610 return o; 2610 return o;
2611 } 2611 }
2612 2612
2613 checkOperationWarnings(api.OperationWarnings o) { 2613 checkOperationWarnings(api.OperationWarnings o) {
2614 buildCounterOperationWarnings++; 2614 buildCounterOperationWarnings++;
2615 if (buildCounterOperationWarnings < 3) { 2615 if (buildCounterOperationWarnings < 3) {
2616 unittest.expect(o.code, unittest.equals('foo')); 2616 unittest.expect(o.code, unittest.equals('foo'));
2617 checkUnnamed979(o.data); 2617 checkUnnamed518(o.data);
2618 unittest.expect(o.message, unittest.equals('foo')); 2618 unittest.expect(o.message, unittest.equals('foo'));
2619 } 2619 }
2620 buildCounterOperationWarnings--; 2620 buildCounterOperationWarnings--;
2621 } 2621 }
2622 2622
2623 buildUnnamed980() { 2623 buildUnnamed519() {
2624 var o = new core.List<api.OperationWarnings>(); 2624 var o = new core.List<api.OperationWarnings>();
2625 o.add(buildOperationWarnings()); 2625 o.add(buildOperationWarnings());
2626 o.add(buildOperationWarnings()); 2626 o.add(buildOperationWarnings());
2627 return o; 2627 return o;
2628 } 2628 }
2629 2629
2630 checkUnnamed980(core.List<api.OperationWarnings> o) { 2630 checkUnnamed519(core.List<api.OperationWarnings> o) {
2631 unittest.expect(o, unittest.hasLength(2)); 2631 unittest.expect(o, unittest.hasLength(2));
2632 checkOperationWarnings(o[0]); 2632 checkOperationWarnings(o[0]);
2633 checkOperationWarnings(o[1]); 2633 checkOperationWarnings(o[1]);
2634 } 2634 }
2635 2635
2636 core.int buildCounterOperation = 0; 2636 core.int buildCounterOperation = 0;
2637 buildOperation() { 2637 buildOperation() {
2638 var o = new api.Operation(); 2638 var o = new api.Operation();
2639 buildCounterOperation++; 2639 buildCounterOperation++;
2640 if (buildCounterOperation < 3) { 2640 if (buildCounterOperation < 3) {
(...skipping 10 matching lines...) Expand all
2651 o.operationType = "foo"; 2651 o.operationType = "foo";
2652 o.progress = 42; 2652 o.progress = 42;
2653 o.region = "foo"; 2653 o.region = "foo";
2654 o.selfLink = "foo"; 2654 o.selfLink = "foo";
2655 o.startTime = "foo"; 2655 o.startTime = "foo";
2656 o.status = "foo"; 2656 o.status = "foo";
2657 o.statusMessage = "foo"; 2657 o.statusMessage = "foo";
2658 o.targetId = "foo"; 2658 o.targetId = "foo";
2659 o.targetLink = "foo"; 2659 o.targetLink = "foo";
2660 o.user = "foo"; 2660 o.user = "foo";
2661 o.warnings = buildUnnamed980(); 2661 o.warnings = buildUnnamed519();
2662 o.zone = "foo"; 2662 o.zone = "foo";
2663 } 2663 }
2664 buildCounterOperation--; 2664 buildCounterOperation--;
2665 return o; 2665 return o;
2666 } 2666 }
2667 2667
2668 checkOperation(api.Operation o) { 2668 checkOperation(api.Operation o) {
2669 buildCounterOperation++; 2669 buildCounterOperation++;
2670 if (buildCounterOperation < 3) { 2670 if (buildCounterOperation < 3) {
2671 unittest.expect(o.clientOperationId, unittest.equals('foo')); 2671 unittest.expect(o.clientOperationId, unittest.equals('foo'));
2672 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 2672 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
2673 unittest.expect(o.endTime, unittest.equals('foo')); 2673 unittest.expect(o.endTime, unittest.equals('foo'));
2674 checkOperationError(o.error); 2674 checkOperationError(o.error);
2675 unittest.expect(o.httpErrorMessage, unittest.equals('foo')); 2675 unittest.expect(o.httpErrorMessage, unittest.equals('foo'));
2676 unittest.expect(o.httpErrorStatusCode, unittest.equals(42)); 2676 unittest.expect(o.httpErrorStatusCode, unittest.equals(42));
2677 unittest.expect(o.id, unittest.equals('foo')); 2677 unittest.expect(o.id, unittest.equals('foo'));
2678 unittest.expect(o.insertTime, unittest.equals('foo')); 2678 unittest.expect(o.insertTime, unittest.equals('foo'));
2679 unittest.expect(o.kind, unittest.equals('foo')); 2679 unittest.expect(o.kind, unittest.equals('foo'));
2680 unittest.expect(o.name, unittest.equals('foo')); 2680 unittest.expect(o.name, unittest.equals('foo'));
2681 unittest.expect(o.operationType, unittest.equals('foo')); 2681 unittest.expect(o.operationType, unittest.equals('foo'));
2682 unittest.expect(o.progress, unittest.equals(42)); 2682 unittest.expect(o.progress, unittest.equals(42));
2683 unittest.expect(o.region, unittest.equals('foo')); 2683 unittest.expect(o.region, unittest.equals('foo'));
2684 unittest.expect(o.selfLink, unittest.equals('foo')); 2684 unittest.expect(o.selfLink, unittest.equals('foo'));
2685 unittest.expect(o.startTime, unittest.equals('foo')); 2685 unittest.expect(o.startTime, unittest.equals('foo'));
2686 unittest.expect(o.status, unittest.equals('foo')); 2686 unittest.expect(o.status, unittest.equals('foo'));
2687 unittest.expect(o.statusMessage, unittest.equals('foo')); 2687 unittest.expect(o.statusMessage, unittest.equals('foo'));
2688 unittest.expect(o.targetId, unittest.equals('foo')); 2688 unittest.expect(o.targetId, unittest.equals('foo'));
2689 unittest.expect(o.targetLink, unittest.equals('foo')); 2689 unittest.expect(o.targetLink, unittest.equals('foo'));
2690 unittest.expect(o.user, unittest.equals('foo')); 2690 unittest.expect(o.user, unittest.equals('foo'));
2691 checkUnnamed980(o.warnings); 2691 checkUnnamed519(o.warnings);
2692 unittest.expect(o.zone, unittest.equals('foo')); 2692 unittest.expect(o.zone, unittest.equals('foo'));
2693 } 2693 }
2694 buildCounterOperation--; 2694 buildCounterOperation--;
2695 } 2695 }
2696 2696
2697 buildUnnamed981() { 2697 buildUnnamed520() {
2698 var o = new core.Map<core.String, api.OperationsScopedList>(); 2698 var o = new core.Map<core.String, api.OperationsScopedList>();
2699 o["x"] = buildOperationsScopedList(); 2699 o["x"] = buildOperationsScopedList();
2700 o["y"] = buildOperationsScopedList(); 2700 o["y"] = buildOperationsScopedList();
2701 return o; 2701 return o;
2702 } 2702 }
2703 2703
2704 checkUnnamed981(core.Map<core.String, api.OperationsScopedList> o) { 2704 checkUnnamed520(core.Map<core.String, api.OperationsScopedList> o) {
2705 unittest.expect(o, unittest.hasLength(2)); 2705 unittest.expect(o, unittest.hasLength(2));
2706 checkOperationsScopedList(o["x"]); 2706 checkOperationsScopedList(o["x"]);
2707 checkOperationsScopedList(o["y"]); 2707 checkOperationsScopedList(o["y"]);
2708 } 2708 }
2709 2709
2710 core.int buildCounterOperationAggregatedList = 0; 2710 core.int buildCounterOperationAggregatedList = 0;
2711 buildOperationAggregatedList() { 2711 buildOperationAggregatedList() {
2712 var o = new api.OperationAggregatedList(); 2712 var o = new api.OperationAggregatedList();
2713 buildCounterOperationAggregatedList++; 2713 buildCounterOperationAggregatedList++;
2714 if (buildCounterOperationAggregatedList < 3) { 2714 if (buildCounterOperationAggregatedList < 3) {
2715 o.id = "foo"; 2715 o.id = "foo";
2716 o.items = buildUnnamed981(); 2716 o.items = buildUnnamed520();
2717 o.kind = "foo"; 2717 o.kind = "foo";
2718 o.nextPageToken = "foo"; 2718 o.nextPageToken = "foo";
2719 o.selfLink = "foo"; 2719 o.selfLink = "foo";
2720 } 2720 }
2721 buildCounterOperationAggregatedList--; 2721 buildCounterOperationAggregatedList--;
2722 return o; 2722 return o;
2723 } 2723 }
2724 2724
2725 checkOperationAggregatedList(api.OperationAggregatedList o) { 2725 checkOperationAggregatedList(api.OperationAggregatedList o) {
2726 buildCounterOperationAggregatedList++; 2726 buildCounterOperationAggregatedList++;
2727 if (buildCounterOperationAggregatedList < 3) { 2727 if (buildCounterOperationAggregatedList < 3) {
2728 unittest.expect(o.id, unittest.equals('foo')); 2728 unittest.expect(o.id, unittest.equals('foo'));
2729 checkUnnamed981(o.items); 2729 checkUnnamed520(o.items);
2730 unittest.expect(o.kind, unittest.equals('foo')); 2730 unittest.expect(o.kind, unittest.equals('foo'));
2731 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2731 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2732 unittest.expect(o.selfLink, unittest.equals('foo')); 2732 unittest.expect(o.selfLink, unittest.equals('foo'));
2733 } 2733 }
2734 buildCounterOperationAggregatedList--; 2734 buildCounterOperationAggregatedList--;
2735 } 2735 }
2736 2736
2737 buildUnnamed982() { 2737 buildUnnamed521() {
2738 var o = new core.List<api.Operation>(); 2738 var o = new core.List<api.Operation>();
2739 o.add(buildOperation()); 2739 o.add(buildOperation());
2740 o.add(buildOperation()); 2740 o.add(buildOperation());
2741 return o; 2741 return o;
2742 } 2742 }
2743 2743
2744 checkUnnamed982(core.List<api.Operation> o) { 2744 checkUnnamed521(core.List<api.Operation> o) {
2745 unittest.expect(o, unittest.hasLength(2)); 2745 unittest.expect(o, unittest.hasLength(2));
2746 checkOperation(o[0]); 2746 checkOperation(o[0]);
2747 checkOperation(o[1]); 2747 checkOperation(o[1]);
2748 } 2748 }
2749 2749
2750 core.int buildCounterOperationList = 0; 2750 core.int buildCounterOperationList = 0;
2751 buildOperationList() { 2751 buildOperationList() {
2752 var o = new api.OperationList(); 2752 var o = new api.OperationList();
2753 buildCounterOperationList++; 2753 buildCounterOperationList++;
2754 if (buildCounterOperationList < 3) { 2754 if (buildCounterOperationList < 3) {
2755 o.id = "foo"; 2755 o.id = "foo";
2756 o.items = buildUnnamed982(); 2756 o.items = buildUnnamed521();
2757 o.kind = "foo"; 2757 o.kind = "foo";
2758 o.nextPageToken = "foo"; 2758 o.nextPageToken = "foo";
2759 o.selfLink = "foo"; 2759 o.selfLink = "foo";
2760 } 2760 }
2761 buildCounterOperationList--; 2761 buildCounterOperationList--;
2762 return o; 2762 return o;
2763 } 2763 }
2764 2764
2765 checkOperationList(api.OperationList o) { 2765 checkOperationList(api.OperationList o) {
2766 buildCounterOperationList++; 2766 buildCounterOperationList++;
2767 if (buildCounterOperationList < 3) { 2767 if (buildCounterOperationList < 3) {
2768 unittest.expect(o.id, unittest.equals('foo')); 2768 unittest.expect(o.id, unittest.equals('foo'));
2769 checkUnnamed982(o.items); 2769 checkUnnamed521(o.items);
2770 unittest.expect(o.kind, unittest.equals('foo')); 2770 unittest.expect(o.kind, unittest.equals('foo'));
2771 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2771 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2772 unittest.expect(o.selfLink, unittest.equals('foo')); 2772 unittest.expect(o.selfLink, unittest.equals('foo'));
2773 } 2773 }
2774 buildCounterOperationList--; 2774 buildCounterOperationList--;
2775 } 2775 }
2776 2776
2777 buildUnnamed983() { 2777 buildUnnamed522() {
2778 var o = new core.List<api.Operation>(); 2778 var o = new core.List<api.Operation>();
2779 o.add(buildOperation()); 2779 o.add(buildOperation());
2780 o.add(buildOperation()); 2780 o.add(buildOperation());
2781 return o; 2781 return o;
2782 } 2782 }
2783 2783
2784 checkUnnamed983(core.List<api.Operation> o) { 2784 checkUnnamed522(core.List<api.Operation> o) {
2785 unittest.expect(o, unittest.hasLength(2)); 2785 unittest.expect(o, unittest.hasLength(2));
2786 checkOperation(o[0]); 2786 checkOperation(o[0]);
2787 checkOperation(o[1]); 2787 checkOperation(o[1]);
2788 } 2788 }
2789 2789
2790 core.int buildCounterOperationsScopedListWarningData = 0; 2790 core.int buildCounterOperationsScopedListWarningData = 0;
2791 buildOperationsScopedListWarningData() { 2791 buildOperationsScopedListWarningData() {
2792 var o = new api.OperationsScopedListWarningData(); 2792 var o = new api.OperationsScopedListWarningData();
2793 buildCounterOperationsScopedListWarningData++; 2793 buildCounterOperationsScopedListWarningData++;
2794 if (buildCounterOperationsScopedListWarningData < 3) { 2794 if (buildCounterOperationsScopedListWarningData < 3) {
2795 o.key = "foo"; 2795 o.key = "foo";
2796 o.value = "foo"; 2796 o.value = "foo";
2797 } 2797 }
2798 buildCounterOperationsScopedListWarningData--; 2798 buildCounterOperationsScopedListWarningData--;
2799 return o; 2799 return o;
2800 } 2800 }
2801 2801
2802 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { 2802 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) {
2803 buildCounterOperationsScopedListWarningData++; 2803 buildCounterOperationsScopedListWarningData++;
2804 if (buildCounterOperationsScopedListWarningData < 3) { 2804 if (buildCounterOperationsScopedListWarningData < 3) {
2805 unittest.expect(o.key, unittest.equals('foo')); 2805 unittest.expect(o.key, unittest.equals('foo'));
2806 unittest.expect(o.value, unittest.equals('foo')); 2806 unittest.expect(o.value, unittest.equals('foo'));
2807 } 2807 }
2808 buildCounterOperationsScopedListWarningData--; 2808 buildCounterOperationsScopedListWarningData--;
2809 } 2809 }
2810 2810
2811 buildUnnamed984() { 2811 buildUnnamed523() {
2812 var o = new core.List<api.OperationsScopedListWarningData>(); 2812 var o = new core.List<api.OperationsScopedListWarningData>();
2813 o.add(buildOperationsScopedListWarningData()); 2813 o.add(buildOperationsScopedListWarningData());
2814 o.add(buildOperationsScopedListWarningData()); 2814 o.add(buildOperationsScopedListWarningData());
2815 return o; 2815 return o;
2816 } 2816 }
2817 2817
2818 checkUnnamed984(core.List<api.OperationsScopedListWarningData> o) { 2818 checkUnnamed523(core.List<api.OperationsScopedListWarningData> o) {
2819 unittest.expect(o, unittest.hasLength(2)); 2819 unittest.expect(o, unittest.hasLength(2));
2820 checkOperationsScopedListWarningData(o[0]); 2820 checkOperationsScopedListWarningData(o[0]);
2821 checkOperationsScopedListWarningData(o[1]); 2821 checkOperationsScopedListWarningData(o[1]);
2822 } 2822 }
2823 2823
2824 core.int buildCounterOperationsScopedListWarning = 0; 2824 core.int buildCounterOperationsScopedListWarning = 0;
2825 buildOperationsScopedListWarning() { 2825 buildOperationsScopedListWarning() {
2826 var o = new api.OperationsScopedListWarning(); 2826 var o = new api.OperationsScopedListWarning();
2827 buildCounterOperationsScopedListWarning++; 2827 buildCounterOperationsScopedListWarning++;
2828 if (buildCounterOperationsScopedListWarning < 3) { 2828 if (buildCounterOperationsScopedListWarning < 3) {
2829 o.code = "foo"; 2829 o.code = "foo";
2830 o.data = buildUnnamed984(); 2830 o.data = buildUnnamed523();
2831 o.message = "foo"; 2831 o.message = "foo";
2832 } 2832 }
2833 buildCounterOperationsScopedListWarning--; 2833 buildCounterOperationsScopedListWarning--;
2834 return o; 2834 return o;
2835 } 2835 }
2836 2836
2837 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { 2837 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) {
2838 buildCounterOperationsScopedListWarning++; 2838 buildCounterOperationsScopedListWarning++;
2839 if (buildCounterOperationsScopedListWarning < 3) { 2839 if (buildCounterOperationsScopedListWarning < 3) {
2840 unittest.expect(o.code, unittest.equals('foo')); 2840 unittest.expect(o.code, unittest.equals('foo'));
2841 checkUnnamed984(o.data); 2841 checkUnnamed523(o.data);
2842 unittest.expect(o.message, unittest.equals('foo')); 2842 unittest.expect(o.message, unittest.equals('foo'));
2843 } 2843 }
2844 buildCounterOperationsScopedListWarning--; 2844 buildCounterOperationsScopedListWarning--;
2845 } 2845 }
2846 2846
2847 core.int buildCounterOperationsScopedList = 0; 2847 core.int buildCounterOperationsScopedList = 0;
2848 buildOperationsScopedList() { 2848 buildOperationsScopedList() {
2849 var o = new api.OperationsScopedList(); 2849 var o = new api.OperationsScopedList();
2850 buildCounterOperationsScopedList++; 2850 buildCounterOperationsScopedList++;
2851 if (buildCounterOperationsScopedList < 3) { 2851 if (buildCounterOperationsScopedList < 3) {
2852 o.operations = buildUnnamed983(); 2852 o.operations = buildUnnamed522();
2853 o.warning = buildOperationsScopedListWarning(); 2853 o.warning = buildOperationsScopedListWarning();
2854 } 2854 }
2855 buildCounterOperationsScopedList--; 2855 buildCounterOperationsScopedList--;
2856 return o; 2856 return o;
2857 } 2857 }
2858 2858
2859 checkOperationsScopedList(api.OperationsScopedList o) { 2859 checkOperationsScopedList(api.OperationsScopedList o) {
2860 buildCounterOperationsScopedList++; 2860 buildCounterOperationsScopedList++;
2861 if (buildCounterOperationsScopedList < 3) { 2861 if (buildCounterOperationsScopedList < 3) {
2862 checkUnnamed983(o.operations); 2862 checkUnnamed522(o.operations);
2863 checkOperationsScopedListWarning(o.warning); 2863 checkOperationsScopedListWarning(o.warning);
2864 } 2864 }
2865 buildCounterOperationsScopedList--; 2865 buildCounterOperationsScopedList--;
2866 } 2866 }
2867 2867
2868 buildUnnamed985() { 2868 buildUnnamed524() {
2869 var o = new core.List<api.PathRule>(); 2869 var o = new core.List<api.PathRule>();
2870 o.add(buildPathRule()); 2870 o.add(buildPathRule());
2871 o.add(buildPathRule()); 2871 o.add(buildPathRule());
2872 return o; 2872 return o;
2873 } 2873 }
2874 2874
2875 checkUnnamed985(core.List<api.PathRule> o) { 2875 checkUnnamed524(core.List<api.PathRule> o) {
2876 unittest.expect(o, unittest.hasLength(2)); 2876 unittest.expect(o, unittest.hasLength(2));
2877 checkPathRule(o[0]); 2877 checkPathRule(o[0]);
2878 checkPathRule(o[1]); 2878 checkPathRule(o[1]);
2879 } 2879 }
2880 2880
2881 core.int buildCounterPathMatcher = 0; 2881 core.int buildCounterPathMatcher = 0;
2882 buildPathMatcher() { 2882 buildPathMatcher() {
2883 var o = new api.PathMatcher(); 2883 var o = new api.PathMatcher();
2884 buildCounterPathMatcher++; 2884 buildCounterPathMatcher++;
2885 if (buildCounterPathMatcher < 3) { 2885 if (buildCounterPathMatcher < 3) {
2886 o.defaultService = "foo"; 2886 o.defaultService = "foo";
2887 o.description = "foo"; 2887 o.description = "foo";
2888 o.name = "foo"; 2888 o.name = "foo";
2889 o.pathRules = buildUnnamed985(); 2889 o.pathRules = buildUnnamed524();
2890 } 2890 }
2891 buildCounterPathMatcher--; 2891 buildCounterPathMatcher--;
2892 return o; 2892 return o;
2893 } 2893 }
2894 2894
2895 checkPathMatcher(api.PathMatcher o) { 2895 checkPathMatcher(api.PathMatcher o) {
2896 buildCounterPathMatcher++; 2896 buildCounterPathMatcher++;
2897 if (buildCounterPathMatcher < 3) { 2897 if (buildCounterPathMatcher < 3) {
2898 unittest.expect(o.defaultService, unittest.equals('foo')); 2898 unittest.expect(o.defaultService, unittest.equals('foo'));
2899 unittest.expect(o.description, unittest.equals('foo')); 2899 unittest.expect(o.description, unittest.equals('foo'));
2900 unittest.expect(o.name, unittest.equals('foo')); 2900 unittest.expect(o.name, unittest.equals('foo'));
2901 checkUnnamed985(o.pathRules); 2901 checkUnnamed524(o.pathRules);
2902 } 2902 }
2903 buildCounterPathMatcher--; 2903 buildCounterPathMatcher--;
2904 } 2904 }
2905 2905
2906 buildUnnamed986() { 2906 buildUnnamed525() {
2907 var o = new core.List<core.String>(); 2907 var o = new core.List<core.String>();
2908 o.add("foo"); 2908 o.add("foo");
2909 o.add("foo"); 2909 o.add("foo");
2910 return o; 2910 return o;
2911 } 2911 }
2912 2912
2913 checkUnnamed986(core.List<core.String> o) { 2913 checkUnnamed525(core.List<core.String> o) {
2914 unittest.expect(o, unittest.hasLength(2)); 2914 unittest.expect(o, unittest.hasLength(2));
2915 unittest.expect(o[0], unittest.equals('foo')); 2915 unittest.expect(o[0], unittest.equals('foo'));
2916 unittest.expect(o[1], unittest.equals('foo')); 2916 unittest.expect(o[1], unittest.equals('foo'));
2917 } 2917 }
2918 2918
2919 core.int buildCounterPathRule = 0; 2919 core.int buildCounterPathRule = 0;
2920 buildPathRule() { 2920 buildPathRule() {
2921 var o = new api.PathRule(); 2921 var o = new api.PathRule();
2922 buildCounterPathRule++; 2922 buildCounterPathRule++;
2923 if (buildCounterPathRule < 3) { 2923 if (buildCounterPathRule < 3) {
2924 o.paths = buildUnnamed986(); 2924 o.paths = buildUnnamed525();
2925 o.service = "foo"; 2925 o.service = "foo";
2926 } 2926 }
2927 buildCounterPathRule--; 2927 buildCounterPathRule--;
2928 return o; 2928 return o;
2929 } 2929 }
2930 2930
2931 checkPathRule(api.PathRule o) { 2931 checkPathRule(api.PathRule o) {
2932 buildCounterPathRule++; 2932 buildCounterPathRule++;
2933 if (buildCounterPathRule < 3) { 2933 if (buildCounterPathRule < 3) {
2934 checkUnnamed986(o.paths); 2934 checkUnnamed525(o.paths);
2935 unittest.expect(o.service, unittest.equals('foo')); 2935 unittest.expect(o.service, unittest.equals('foo'));
2936 } 2936 }
2937 buildCounterPathRule--; 2937 buildCounterPathRule--;
2938 } 2938 }
2939 2939
2940 buildUnnamed987() { 2940 buildUnnamed526() {
2941 var o = new core.List<api.Quota>(); 2941 var o = new core.List<api.Quota>();
2942 o.add(buildQuota()); 2942 o.add(buildQuota());
2943 o.add(buildQuota()); 2943 o.add(buildQuota());
2944 return o; 2944 return o;
2945 } 2945 }
2946 2946
2947 checkUnnamed987(core.List<api.Quota> o) { 2947 checkUnnamed526(core.List<api.Quota> o) {
2948 unittest.expect(o, unittest.hasLength(2)); 2948 unittest.expect(o, unittest.hasLength(2));
2949 checkQuota(o[0]); 2949 checkQuota(o[0]);
2950 checkQuota(o[1]); 2950 checkQuota(o[1]);
2951 } 2951 }
2952 2952
2953 core.int buildCounterProject = 0; 2953 core.int buildCounterProject = 0;
2954 buildProject() { 2954 buildProject() {
2955 var o = new api.Project(); 2955 var o = new api.Project();
2956 buildCounterProject++; 2956 buildCounterProject++;
2957 if (buildCounterProject < 3) { 2957 if (buildCounterProject < 3) {
2958 o.commonInstanceMetadata = buildMetadata(); 2958 o.commonInstanceMetadata = buildMetadata();
2959 o.creationTimestamp = "foo"; 2959 o.creationTimestamp = "foo";
2960 o.description = "foo"; 2960 o.description = "foo";
2961 o.id = "foo"; 2961 o.id = "foo";
2962 o.kind = "foo"; 2962 o.kind = "foo";
2963 o.name = "foo"; 2963 o.name = "foo";
2964 o.quotas = buildUnnamed987(); 2964 o.quotas = buildUnnamed526();
2965 o.selfLink = "foo"; 2965 o.selfLink = "foo";
2966 o.usageExportLocation = buildUsageExportLocation(); 2966 o.usageExportLocation = buildUsageExportLocation();
2967 } 2967 }
2968 buildCounterProject--; 2968 buildCounterProject--;
2969 return o; 2969 return o;
2970 } 2970 }
2971 2971
2972 checkProject(api.Project o) { 2972 checkProject(api.Project o) {
2973 buildCounterProject++; 2973 buildCounterProject++;
2974 if (buildCounterProject < 3) { 2974 if (buildCounterProject < 3) {
2975 checkMetadata(o.commonInstanceMetadata); 2975 checkMetadata(o.commonInstanceMetadata);
2976 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 2976 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
2977 unittest.expect(o.description, unittest.equals('foo')); 2977 unittest.expect(o.description, unittest.equals('foo'));
2978 unittest.expect(o.id, unittest.equals('foo')); 2978 unittest.expect(o.id, unittest.equals('foo'));
2979 unittest.expect(o.kind, unittest.equals('foo')); 2979 unittest.expect(o.kind, unittest.equals('foo'));
2980 unittest.expect(o.name, unittest.equals('foo')); 2980 unittest.expect(o.name, unittest.equals('foo'));
2981 checkUnnamed987(o.quotas); 2981 checkUnnamed526(o.quotas);
2982 unittest.expect(o.selfLink, unittest.equals('foo')); 2982 unittest.expect(o.selfLink, unittest.equals('foo'));
2983 checkUsageExportLocation(o.usageExportLocation); 2983 checkUsageExportLocation(o.usageExportLocation);
2984 } 2984 }
2985 buildCounterProject--; 2985 buildCounterProject--;
2986 } 2986 }
2987 2987
2988 core.int buildCounterQuota = 0; 2988 core.int buildCounterQuota = 0;
2989 buildQuota() { 2989 buildQuota() {
2990 var o = new api.Quota(); 2990 var o = new api.Quota();
2991 buildCounterQuota++; 2991 buildCounterQuota++;
2992 if (buildCounterQuota < 3) { 2992 if (buildCounterQuota < 3) {
2993 o.limit = 42.0; 2993 o.limit = 42.0;
2994 o.metric = "foo"; 2994 o.metric = "foo";
2995 o.usage = 42.0; 2995 o.usage = 42.0;
2996 } 2996 }
2997 buildCounterQuota--; 2997 buildCounterQuota--;
2998 return o; 2998 return o;
2999 } 2999 }
3000 3000
3001 checkQuota(api.Quota o) { 3001 checkQuota(api.Quota o) {
3002 buildCounterQuota++; 3002 buildCounterQuota++;
3003 if (buildCounterQuota < 3) { 3003 if (buildCounterQuota < 3) {
3004 unittest.expect(o.limit, unittest.equals(42.0)); 3004 unittest.expect(o.limit, unittest.equals(42.0));
3005 unittest.expect(o.metric, unittest.equals('foo')); 3005 unittest.expect(o.metric, unittest.equals('foo'));
3006 unittest.expect(o.usage, unittest.equals(42.0)); 3006 unittest.expect(o.usage, unittest.equals(42.0));
3007 } 3007 }
3008 buildCounterQuota--; 3008 buildCounterQuota--;
3009 } 3009 }
3010 3010
3011 buildUnnamed988() { 3011 buildUnnamed527() {
3012 var o = new core.List<api.Quota>(); 3012 var o = new core.List<api.Quota>();
3013 o.add(buildQuota()); 3013 o.add(buildQuota());
3014 o.add(buildQuota()); 3014 o.add(buildQuota());
3015 return o; 3015 return o;
3016 } 3016 }
3017 3017
3018 checkUnnamed988(core.List<api.Quota> o) { 3018 checkUnnamed527(core.List<api.Quota> o) {
3019 unittest.expect(o, unittest.hasLength(2)); 3019 unittest.expect(o, unittest.hasLength(2));
3020 checkQuota(o[0]); 3020 checkQuota(o[0]);
3021 checkQuota(o[1]); 3021 checkQuota(o[1]);
3022 } 3022 }
3023 3023
3024 buildUnnamed989() { 3024 buildUnnamed528() {
3025 var o = new core.List<core.String>(); 3025 var o = new core.List<core.String>();
3026 o.add("foo"); 3026 o.add("foo");
3027 o.add("foo"); 3027 o.add("foo");
3028 return o; 3028 return o;
3029 } 3029 }
3030 3030
3031 checkUnnamed989(core.List<core.String> o) { 3031 checkUnnamed528(core.List<core.String> o) {
3032 unittest.expect(o, unittest.hasLength(2)); 3032 unittest.expect(o, unittest.hasLength(2));
3033 unittest.expect(o[0], unittest.equals('foo')); 3033 unittest.expect(o[0], unittest.equals('foo'));
3034 unittest.expect(o[1], unittest.equals('foo')); 3034 unittest.expect(o[1], unittest.equals('foo'));
3035 } 3035 }
3036 3036
3037 core.int buildCounterRegion = 0; 3037 core.int buildCounterRegion = 0;
3038 buildRegion() { 3038 buildRegion() {
3039 var o = new api.Region(); 3039 var o = new api.Region();
3040 buildCounterRegion++; 3040 buildCounterRegion++;
3041 if (buildCounterRegion < 3) { 3041 if (buildCounterRegion < 3) {
3042 o.creationTimestamp = "foo"; 3042 o.creationTimestamp = "foo";
3043 o.deprecated = buildDeprecationStatus(); 3043 o.deprecated = buildDeprecationStatus();
3044 o.description = "foo"; 3044 o.description = "foo";
3045 o.id = "foo"; 3045 o.id = "foo";
3046 o.kind = "foo"; 3046 o.kind = "foo";
3047 o.name = "foo"; 3047 o.name = "foo";
3048 o.quotas = buildUnnamed988(); 3048 o.quotas = buildUnnamed527();
3049 o.selfLink = "foo"; 3049 o.selfLink = "foo";
3050 o.status = "foo"; 3050 o.status = "foo";
3051 o.zones = buildUnnamed989(); 3051 o.zones = buildUnnamed528();
3052 } 3052 }
3053 buildCounterRegion--; 3053 buildCounterRegion--;
3054 return o; 3054 return o;
3055 } 3055 }
3056 3056
3057 checkRegion(api.Region o) { 3057 checkRegion(api.Region o) {
3058 buildCounterRegion++; 3058 buildCounterRegion++;
3059 if (buildCounterRegion < 3) { 3059 if (buildCounterRegion < 3) {
3060 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 3060 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
3061 checkDeprecationStatus(o.deprecated); 3061 checkDeprecationStatus(o.deprecated);
3062 unittest.expect(o.description, unittest.equals('foo')); 3062 unittest.expect(o.description, unittest.equals('foo'));
3063 unittest.expect(o.id, unittest.equals('foo')); 3063 unittest.expect(o.id, unittest.equals('foo'));
3064 unittest.expect(o.kind, unittest.equals('foo')); 3064 unittest.expect(o.kind, unittest.equals('foo'));
3065 unittest.expect(o.name, unittest.equals('foo')); 3065 unittest.expect(o.name, unittest.equals('foo'));
3066 checkUnnamed988(o.quotas); 3066 checkUnnamed527(o.quotas);
3067 unittest.expect(o.selfLink, unittest.equals('foo')); 3067 unittest.expect(o.selfLink, unittest.equals('foo'));
3068 unittest.expect(o.status, unittest.equals('foo')); 3068 unittest.expect(o.status, unittest.equals('foo'));
3069 checkUnnamed989(o.zones); 3069 checkUnnamed528(o.zones);
3070 } 3070 }
3071 buildCounterRegion--; 3071 buildCounterRegion--;
3072 } 3072 }
3073 3073
3074 buildUnnamed990() { 3074 buildUnnamed529() {
3075 var o = new core.List<api.Region>(); 3075 var o = new core.List<api.Region>();
3076 o.add(buildRegion()); 3076 o.add(buildRegion());
3077 o.add(buildRegion()); 3077 o.add(buildRegion());
3078 return o; 3078 return o;
3079 } 3079 }
3080 3080
3081 checkUnnamed990(core.List<api.Region> o) { 3081 checkUnnamed529(core.List<api.Region> o) {
3082 unittest.expect(o, unittest.hasLength(2)); 3082 unittest.expect(o, unittest.hasLength(2));
3083 checkRegion(o[0]); 3083 checkRegion(o[0]);
3084 checkRegion(o[1]); 3084 checkRegion(o[1]);
3085 } 3085 }
3086 3086
3087 core.int buildCounterRegionList = 0; 3087 core.int buildCounterRegionList = 0;
3088 buildRegionList() { 3088 buildRegionList() {
3089 var o = new api.RegionList(); 3089 var o = new api.RegionList();
3090 buildCounterRegionList++; 3090 buildCounterRegionList++;
3091 if (buildCounterRegionList < 3) { 3091 if (buildCounterRegionList < 3) {
3092 o.id = "foo"; 3092 o.id = "foo";
3093 o.items = buildUnnamed990(); 3093 o.items = buildUnnamed529();
3094 o.kind = "foo"; 3094 o.kind = "foo";
3095 o.nextPageToken = "foo"; 3095 o.nextPageToken = "foo";
3096 o.selfLink = "foo"; 3096 o.selfLink = "foo";
3097 } 3097 }
3098 buildCounterRegionList--; 3098 buildCounterRegionList--;
3099 return o; 3099 return o;
3100 } 3100 }
3101 3101
3102 checkRegionList(api.RegionList o) { 3102 checkRegionList(api.RegionList o) {
3103 buildCounterRegionList++; 3103 buildCounterRegionList++;
3104 if (buildCounterRegionList < 3) { 3104 if (buildCounterRegionList < 3) {
3105 unittest.expect(o.id, unittest.equals('foo')); 3105 unittest.expect(o.id, unittest.equals('foo'));
3106 checkUnnamed990(o.items); 3106 checkUnnamed529(o.items);
3107 unittest.expect(o.kind, unittest.equals('foo')); 3107 unittest.expect(o.kind, unittest.equals('foo'));
3108 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3108 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3109 unittest.expect(o.selfLink, unittest.equals('foo')); 3109 unittest.expect(o.selfLink, unittest.equals('foo'));
3110 } 3110 }
3111 buildCounterRegionList--; 3111 buildCounterRegionList--;
3112 } 3112 }
3113 3113
3114 core.int buildCounterResourceGroupReference = 0; 3114 core.int buildCounterResourceGroupReference = 0;
3115 buildResourceGroupReference() { 3115 buildResourceGroupReference() {
3116 var o = new api.ResourceGroupReference(); 3116 var o = new api.ResourceGroupReference();
3117 buildCounterResourceGroupReference++; 3117 buildCounterResourceGroupReference++;
3118 if (buildCounterResourceGroupReference < 3) { 3118 if (buildCounterResourceGroupReference < 3) {
3119 o.group = "foo"; 3119 o.group = "foo";
3120 } 3120 }
3121 buildCounterResourceGroupReference--; 3121 buildCounterResourceGroupReference--;
3122 return o; 3122 return o;
3123 } 3123 }
3124 3124
3125 checkResourceGroupReference(api.ResourceGroupReference o) { 3125 checkResourceGroupReference(api.ResourceGroupReference o) {
3126 buildCounterResourceGroupReference++; 3126 buildCounterResourceGroupReference++;
3127 if (buildCounterResourceGroupReference < 3) { 3127 if (buildCounterResourceGroupReference < 3) {
3128 unittest.expect(o.group, unittest.equals('foo')); 3128 unittest.expect(o.group, unittest.equals('foo'));
3129 } 3129 }
3130 buildCounterResourceGroupReference--; 3130 buildCounterResourceGroupReference--;
3131 } 3131 }
3132 3132
3133 buildUnnamed991() { 3133 buildUnnamed530() {
3134 var o = new core.List<core.String>(); 3134 var o = new core.List<core.String>();
3135 o.add("foo"); 3135 o.add("foo");
3136 o.add("foo"); 3136 o.add("foo");
3137 return o; 3137 return o;
3138 } 3138 }
3139 3139
3140 checkUnnamed991(core.List<core.String> o) { 3140 checkUnnamed530(core.List<core.String> o) {
3141 unittest.expect(o, unittest.hasLength(2)); 3141 unittest.expect(o, unittest.hasLength(2));
3142 unittest.expect(o[0], unittest.equals('foo')); 3142 unittest.expect(o[0], unittest.equals('foo'));
3143 unittest.expect(o[1], unittest.equals('foo')); 3143 unittest.expect(o[1], unittest.equals('foo'));
3144 } 3144 }
3145 3145
3146 core.int buildCounterRouteWarningsData = 0; 3146 core.int buildCounterRouteWarningsData = 0;
3147 buildRouteWarningsData() { 3147 buildRouteWarningsData() {
3148 var o = new api.RouteWarningsData(); 3148 var o = new api.RouteWarningsData();
3149 buildCounterRouteWarningsData++; 3149 buildCounterRouteWarningsData++;
3150 if (buildCounterRouteWarningsData < 3) { 3150 if (buildCounterRouteWarningsData < 3) {
3151 o.key = "foo"; 3151 o.key = "foo";
3152 o.value = "foo"; 3152 o.value = "foo";
3153 } 3153 }
3154 buildCounterRouteWarningsData--; 3154 buildCounterRouteWarningsData--;
3155 return o; 3155 return o;
3156 } 3156 }
3157 3157
3158 checkRouteWarningsData(api.RouteWarningsData o) { 3158 checkRouteWarningsData(api.RouteWarningsData o) {
3159 buildCounterRouteWarningsData++; 3159 buildCounterRouteWarningsData++;
3160 if (buildCounterRouteWarningsData < 3) { 3160 if (buildCounterRouteWarningsData < 3) {
3161 unittest.expect(o.key, unittest.equals('foo')); 3161 unittest.expect(o.key, unittest.equals('foo'));
3162 unittest.expect(o.value, unittest.equals('foo')); 3162 unittest.expect(o.value, unittest.equals('foo'));
3163 } 3163 }
3164 buildCounterRouteWarningsData--; 3164 buildCounterRouteWarningsData--;
3165 } 3165 }
3166 3166
3167 buildUnnamed992() { 3167 buildUnnamed531() {
3168 var o = new core.List<api.RouteWarningsData>(); 3168 var o = new core.List<api.RouteWarningsData>();
3169 o.add(buildRouteWarningsData()); 3169 o.add(buildRouteWarningsData());
3170 o.add(buildRouteWarningsData()); 3170 o.add(buildRouteWarningsData());
3171 return o; 3171 return o;
3172 } 3172 }
3173 3173
3174 checkUnnamed992(core.List<api.RouteWarningsData> o) { 3174 checkUnnamed531(core.List<api.RouteWarningsData> o) {
3175 unittest.expect(o, unittest.hasLength(2)); 3175 unittest.expect(o, unittest.hasLength(2));
3176 checkRouteWarningsData(o[0]); 3176 checkRouteWarningsData(o[0]);
3177 checkRouteWarningsData(o[1]); 3177 checkRouteWarningsData(o[1]);
3178 } 3178 }
3179 3179
3180 core.int buildCounterRouteWarnings = 0; 3180 core.int buildCounterRouteWarnings = 0;
3181 buildRouteWarnings() { 3181 buildRouteWarnings() {
3182 var o = new api.RouteWarnings(); 3182 var o = new api.RouteWarnings();
3183 buildCounterRouteWarnings++; 3183 buildCounterRouteWarnings++;
3184 if (buildCounterRouteWarnings < 3) { 3184 if (buildCounterRouteWarnings < 3) {
3185 o.code = "foo"; 3185 o.code = "foo";
3186 o.data = buildUnnamed992(); 3186 o.data = buildUnnamed531();
3187 o.message = "foo"; 3187 o.message = "foo";
3188 } 3188 }
3189 buildCounterRouteWarnings--; 3189 buildCounterRouteWarnings--;
3190 return o; 3190 return o;
3191 } 3191 }
3192 3192
3193 checkRouteWarnings(api.RouteWarnings o) { 3193 checkRouteWarnings(api.RouteWarnings o) {
3194 buildCounterRouteWarnings++; 3194 buildCounterRouteWarnings++;
3195 if (buildCounterRouteWarnings < 3) { 3195 if (buildCounterRouteWarnings < 3) {
3196 unittest.expect(o.code, unittest.equals('foo')); 3196 unittest.expect(o.code, unittest.equals('foo'));
3197 checkUnnamed992(o.data); 3197 checkUnnamed531(o.data);
3198 unittest.expect(o.message, unittest.equals('foo')); 3198 unittest.expect(o.message, unittest.equals('foo'));
3199 } 3199 }
3200 buildCounterRouteWarnings--; 3200 buildCounterRouteWarnings--;
3201 } 3201 }
3202 3202
3203 buildUnnamed993() { 3203 buildUnnamed532() {
3204 var o = new core.List<api.RouteWarnings>(); 3204 var o = new core.List<api.RouteWarnings>();
3205 o.add(buildRouteWarnings()); 3205 o.add(buildRouteWarnings());
3206 o.add(buildRouteWarnings()); 3206 o.add(buildRouteWarnings());
3207 return o; 3207 return o;
3208 } 3208 }
3209 3209
3210 checkUnnamed993(core.List<api.RouteWarnings> o) { 3210 checkUnnamed532(core.List<api.RouteWarnings> o) {
3211 unittest.expect(o, unittest.hasLength(2)); 3211 unittest.expect(o, unittest.hasLength(2));
3212 checkRouteWarnings(o[0]); 3212 checkRouteWarnings(o[0]);
3213 checkRouteWarnings(o[1]); 3213 checkRouteWarnings(o[1]);
3214 } 3214 }
3215 3215
3216 core.int buildCounterRoute = 0; 3216 core.int buildCounterRoute = 0;
3217 buildRoute() { 3217 buildRoute() {
3218 var o = new api.Route(); 3218 var o = new api.Route();
3219 buildCounterRoute++; 3219 buildCounterRoute++;
3220 if (buildCounterRoute < 3) { 3220 if (buildCounterRoute < 3) {
3221 o.creationTimestamp = "foo"; 3221 o.creationTimestamp = "foo";
3222 o.description = "foo"; 3222 o.description = "foo";
3223 o.destRange = "foo"; 3223 o.destRange = "foo";
3224 o.id = "foo"; 3224 o.id = "foo";
3225 o.kind = "foo"; 3225 o.kind = "foo";
3226 o.name = "foo"; 3226 o.name = "foo";
3227 o.network = "foo"; 3227 o.network = "foo";
3228 o.nextHopGateway = "foo"; 3228 o.nextHopGateway = "foo";
3229 o.nextHopInstance = "foo"; 3229 o.nextHopInstance = "foo";
3230 o.nextHopIp = "foo"; 3230 o.nextHopIp = "foo";
3231 o.nextHopNetwork = "foo"; 3231 o.nextHopNetwork = "foo";
3232 o.priority = 42; 3232 o.priority = 42;
3233 o.selfLink = "foo"; 3233 o.selfLink = "foo";
3234 o.tags = buildUnnamed991(); 3234 o.tags = buildUnnamed530();
3235 o.warnings = buildUnnamed993(); 3235 o.warnings = buildUnnamed532();
3236 } 3236 }
3237 buildCounterRoute--; 3237 buildCounterRoute--;
3238 return o; 3238 return o;
3239 } 3239 }
3240 3240
3241 checkRoute(api.Route o) { 3241 checkRoute(api.Route o) {
3242 buildCounterRoute++; 3242 buildCounterRoute++;
3243 if (buildCounterRoute < 3) { 3243 if (buildCounterRoute < 3) {
3244 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 3244 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
3245 unittest.expect(o.description, unittest.equals('foo')); 3245 unittest.expect(o.description, unittest.equals('foo'));
3246 unittest.expect(o.destRange, unittest.equals('foo')); 3246 unittest.expect(o.destRange, unittest.equals('foo'));
3247 unittest.expect(o.id, unittest.equals('foo')); 3247 unittest.expect(o.id, unittest.equals('foo'));
3248 unittest.expect(o.kind, unittest.equals('foo')); 3248 unittest.expect(o.kind, unittest.equals('foo'));
3249 unittest.expect(o.name, unittest.equals('foo')); 3249 unittest.expect(o.name, unittest.equals('foo'));
3250 unittest.expect(o.network, unittest.equals('foo')); 3250 unittest.expect(o.network, unittest.equals('foo'));
3251 unittest.expect(o.nextHopGateway, unittest.equals('foo')); 3251 unittest.expect(o.nextHopGateway, unittest.equals('foo'));
3252 unittest.expect(o.nextHopInstance, unittest.equals('foo')); 3252 unittest.expect(o.nextHopInstance, unittest.equals('foo'));
3253 unittest.expect(o.nextHopIp, unittest.equals('foo')); 3253 unittest.expect(o.nextHopIp, unittest.equals('foo'));
3254 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); 3254 unittest.expect(o.nextHopNetwork, unittest.equals('foo'));
3255 unittest.expect(o.priority, unittest.equals(42)); 3255 unittest.expect(o.priority, unittest.equals(42));
3256 unittest.expect(o.selfLink, unittest.equals('foo')); 3256 unittest.expect(o.selfLink, unittest.equals('foo'));
3257 checkUnnamed991(o.tags); 3257 checkUnnamed530(o.tags);
3258 checkUnnamed993(o.warnings); 3258 checkUnnamed532(o.warnings);
3259 } 3259 }
3260 buildCounterRoute--; 3260 buildCounterRoute--;
3261 } 3261 }
3262 3262
3263 buildUnnamed994() { 3263 buildUnnamed533() {
3264 var o = new core.List<api.Route>(); 3264 var o = new core.List<api.Route>();
3265 o.add(buildRoute()); 3265 o.add(buildRoute());
3266 o.add(buildRoute()); 3266 o.add(buildRoute());
3267 return o; 3267 return o;
3268 } 3268 }
3269 3269
3270 checkUnnamed994(core.List<api.Route> o) { 3270 checkUnnamed533(core.List<api.Route> o) {
3271 unittest.expect(o, unittest.hasLength(2)); 3271 unittest.expect(o, unittest.hasLength(2));
3272 checkRoute(o[0]); 3272 checkRoute(o[0]);
3273 checkRoute(o[1]); 3273 checkRoute(o[1]);
3274 } 3274 }
3275 3275
3276 core.int buildCounterRouteList = 0; 3276 core.int buildCounterRouteList = 0;
3277 buildRouteList() { 3277 buildRouteList() {
3278 var o = new api.RouteList(); 3278 var o = new api.RouteList();
3279 buildCounterRouteList++; 3279 buildCounterRouteList++;
3280 if (buildCounterRouteList < 3) { 3280 if (buildCounterRouteList < 3) {
3281 o.id = "foo"; 3281 o.id = "foo";
3282 o.items = buildUnnamed994(); 3282 o.items = buildUnnamed533();
3283 o.kind = "foo"; 3283 o.kind = "foo";
3284 o.nextPageToken = "foo"; 3284 o.nextPageToken = "foo";
3285 o.selfLink = "foo"; 3285 o.selfLink = "foo";
3286 } 3286 }
3287 buildCounterRouteList--; 3287 buildCounterRouteList--;
3288 return o; 3288 return o;
3289 } 3289 }
3290 3290
3291 checkRouteList(api.RouteList o) { 3291 checkRouteList(api.RouteList o) {
3292 buildCounterRouteList++; 3292 buildCounterRouteList++;
3293 if (buildCounterRouteList < 3) { 3293 if (buildCounterRouteList < 3) {
3294 unittest.expect(o.id, unittest.equals('foo')); 3294 unittest.expect(o.id, unittest.equals('foo'));
3295 checkUnnamed994(o.items); 3295 checkUnnamed533(o.items);
3296 unittest.expect(o.kind, unittest.equals('foo')); 3296 unittest.expect(o.kind, unittest.equals('foo'));
3297 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3297 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3298 unittest.expect(o.selfLink, unittest.equals('foo')); 3298 unittest.expect(o.selfLink, unittest.equals('foo'));
3299 } 3299 }
3300 buildCounterRouteList--; 3300 buildCounterRouteList--;
3301 } 3301 }
3302 3302
3303 core.int buildCounterScheduling = 0; 3303 core.int buildCounterScheduling = 0;
3304 buildScheduling() { 3304 buildScheduling() {
3305 var o = new api.Scheduling(); 3305 var o = new api.Scheduling();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
3337 checkSerialPortOutput(api.SerialPortOutput o) { 3337 checkSerialPortOutput(api.SerialPortOutput o) {
3338 buildCounterSerialPortOutput++; 3338 buildCounterSerialPortOutput++;
3339 if (buildCounterSerialPortOutput < 3) { 3339 if (buildCounterSerialPortOutput < 3) {
3340 unittest.expect(o.contents, unittest.equals('foo')); 3340 unittest.expect(o.contents, unittest.equals('foo'));
3341 unittest.expect(o.kind, unittest.equals('foo')); 3341 unittest.expect(o.kind, unittest.equals('foo'));
3342 unittest.expect(o.selfLink, unittest.equals('foo')); 3342 unittest.expect(o.selfLink, unittest.equals('foo'));
3343 } 3343 }
3344 buildCounterSerialPortOutput--; 3344 buildCounterSerialPortOutput--;
3345 } 3345 }
3346 3346
3347 buildUnnamed995() { 3347 buildUnnamed534() {
3348 var o = new core.List<core.String>(); 3348 var o = new core.List<core.String>();
3349 o.add("foo"); 3349 o.add("foo");
3350 o.add("foo"); 3350 o.add("foo");
3351 return o; 3351 return o;
3352 } 3352 }
3353 3353
3354 checkUnnamed995(core.List<core.String> o) { 3354 checkUnnamed534(core.List<core.String> o) {
3355 unittest.expect(o, unittest.hasLength(2)); 3355 unittest.expect(o, unittest.hasLength(2));
3356 unittest.expect(o[0], unittest.equals('foo')); 3356 unittest.expect(o[0], unittest.equals('foo'));
3357 unittest.expect(o[1], unittest.equals('foo')); 3357 unittest.expect(o[1], unittest.equals('foo'));
3358 } 3358 }
3359 3359
3360 core.int buildCounterServiceAccount = 0; 3360 core.int buildCounterServiceAccount = 0;
3361 buildServiceAccount() { 3361 buildServiceAccount() {
3362 var o = new api.ServiceAccount(); 3362 var o = new api.ServiceAccount();
3363 buildCounterServiceAccount++; 3363 buildCounterServiceAccount++;
3364 if (buildCounterServiceAccount < 3) { 3364 if (buildCounterServiceAccount < 3) {
3365 o.email = "foo"; 3365 o.email = "foo";
3366 o.scopes = buildUnnamed995(); 3366 o.scopes = buildUnnamed534();
3367 } 3367 }
3368 buildCounterServiceAccount--; 3368 buildCounterServiceAccount--;
3369 return o; 3369 return o;
3370 } 3370 }
3371 3371
3372 checkServiceAccount(api.ServiceAccount o) { 3372 checkServiceAccount(api.ServiceAccount o) {
3373 buildCounterServiceAccount++; 3373 buildCounterServiceAccount++;
3374 if (buildCounterServiceAccount < 3) { 3374 if (buildCounterServiceAccount < 3) {
3375 unittest.expect(o.email, unittest.equals('foo')); 3375 unittest.expect(o.email, unittest.equals('foo'));
3376 checkUnnamed995(o.scopes); 3376 checkUnnamed534(o.scopes);
3377 } 3377 }
3378 buildCounterServiceAccount--; 3378 buildCounterServiceAccount--;
3379 } 3379 }
3380 3380
3381 buildUnnamed996() { 3381 buildUnnamed535() {
3382 var o = new core.List<core.String>(); 3382 var o = new core.List<core.String>();
3383 o.add("foo"); 3383 o.add("foo");
3384 o.add("foo"); 3384 o.add("foo");
3385 return o; 3385 return o;
3386 } 3386 }
3387 3387
3388 checkUnnamed996(core.List<core.String> o) { 3388 checkUnnamed535(core.List<core.String> o) {
3389 unittest.expect(o, unittest.hasLength(2)); 3389 unittest.expect(o, unittest.hasLength(2));
3390 unittest.expect(o[0], unittest.equals('foo')); 3390 unittest.expect(o[0], unittest.equals('foo'));
3391 unittest.expect(o[1], unittest.equals('foo')); 3391 unittest.expect(o[1], unittest.equals('foo'));
3392 } 3392 }
3393 3393
3394 core.int buildCounterSnapshot = 0; 3394 core.int buildCounterSnapshot = 0;
3395 buildSnapshot() { 3395 buildSnapshot() {
3396 var o = new api.Snapshot(); 3396 var o = new api.Snapshot();
3397 buildCounterSnapshot++; 3397 buildCounterSnapshot++;
3398 if (buildCounterSnapshot < 3) { 3398 if (buildCounterSnapshot < 3) {
3399 o.creationTimestamp = "foo"; 3399 o.creationTimestamp = "foo";
3400 o.description = "foo"; 3400 o.description = "foo";
3401 o.diskSizeGb = "foo"; 3401 o.diskSizeGb = "foo";
3402 o.id = "foo"; 3402 o.id = "foo";
3403 o.kind = "foo"; 3403 o.kind = "foo";
3404 o.licenses = buildUnnamed996(); 3404 o.licenses = buildUnnamed535();
3405 o.name = "foo"; 3405 o.name = "foo";
3406 o.selfLink = "foo"; 3406 o.selfLink = "foo";
3407 o.sourceDisk = "foo"; 3407 o.sourceDisk = "foo";
3408 o.sourceDiskId = "foo"; 3408 o.sourceDiskId = "foo";
3409 o.status = "foo"; 3409 o.status = "foo";
3410 o.storageBytes = "foo"; 3410 o.storageBytes = "foo";
3411 o.storageBytesStatus = "foo"; 3411 o.storageBytesStatus = "foo";
3412 } 3412 }
3413 buildCounterSnapshot--; 3413 buildCounterSnapshot--;
3414 return o; 3414 return o;
3415 } 3415 }
3416 3416
3417 checkSnapshot(api.Snapshot o) { 3417 checkSnapshot(api.Snapshot o) {
3418 buildCounterSnapshot++; 3418 buildCounterSnapshot++;
3419 if (buildCounterSnapshot < 3) { 3419 if (buildCounterSnapshot < 3) {
3420 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 3420 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
3421 unittest.expect(o.description, unittest.equals('foo')); 3421 unittest.expect(o.description, unittest.equals('foo'));
3422 unittest.expect(o.diskSizeGb, unittest.equals('foo')); 3422 unittest.expect(o.diskSizeGb, unittest.equals('foo'));
3423 unittest.expect(o.id, unittest.equals('foo')); 3423 unittest.expect(o.id, unittest.equals('foo'));
3424 unittest.expect(o.kind, unittest.equals('foo')); 3424 unittest.expect(o.kind, unittest.equals('foo'));
3425 checkUnnamed996(o.licenses); 3425 checkUnnamed535(o.licenses);
3426 unittest.expect(o.name, unittest.equals('foo')); 3426 unittest.expect(o.name, unittest.equals('foo'));
3427 unittest.expect(o.selfLink, unittest.equals('foo')); 3427 unittest.expect(o.selfLink, unittest.equals('foo'));
3428 unittest.expect(o.sourceDisk, unittest.equals('foo')); 3428 unittest.expect(o.sourceDisk, unittest.equals('foo'));
3429 unittest.expect(o.sourceDiskId, unittest.equals('foo')); 3429 unittest.expect(o.sourceDiskId, unittest.equals('foo'));
3430 unittest.expect(o.status, unittest.equals('foo')); 3430 unittest.expect(o.status, unittest.equals('foo'));
3431 unittest.expect(o.storageBytes, unittest.equals('foo')); 3431 unittest.expect(o.storageBytes, unittest.equals('foo'));
3432 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); 3432 unittest.expect(o.storageBytesStatus, unittest.equals('foo'));
3433 } 3433 }
3434 buildCounterSnapshot--; 3434 buildCounterSnapshot--;
3435 } 3435 }
3436 3436
3437 buildUnnamed997() { 3437 buildUnnamed536() {
3438 var o = new core.List<api.Snapshot>(); 3438 var o = new core.List<api.Snapshot>();
3439 o.add(buildSnapshot()); 3439 o.add(buildSnapshot());
3440 o.add(buildSnapshot()); 3440 o.add(buildSnapshot());
3441 return o; 3441 return o;
3442 } 3442 }
3443 3443
3444 checkUnnamed997(core.List<api.Snapshot> o) { 3444 checkUnnamed536(core.List<api.Snapshot> o) {
3445 unittest.expect(o, unittest.hasLength(2)); 3445 unittest.expect(o, unittest.hasLength(2));
3446 checkSnapshot(o[0]); 3446 checkSnapshot(o[0]);
3447 checkSnapshot(o[1]); 3447 checkSnapshot(o[1]);
3448 } 3448 }
3449 3449
3450 core.int buildCounterSnapshotList = 0; 3450 core.int buildCounterSnapshotList = 0;
3451 buildSnapshotList() { 3451 buildSnapshotList() {
3452 var o = new api.SnapshotList(); 3452 var o = new api.SnapshotList();
3453 buildCounterSnapshotList++; 3453 buildCounterSnapshotList++;
3454 if (buildCounterSnapshotList < 3) { 3454 if (buildCounterSnapshotList < 3) {
3455 o.id = "foo"; 3455 o.id = "foo";
3456 o.items = buildUnnamed997(); 3456 o.items = buildUnnamed536();
3457 o.kind = "foo"; 3457 o.kind = "foo";
3458 o.nextPageToken = "foo"; 3458 o.nextPageToken = "foo";
3459 o.selfLink = "foo"; 3459 o.selfLink = "foo";
3460 } 3460 }
3461 buildCounterSnapshotList--; 3461 buildCounterSnapshotList--;
3462 return o; 3462 return o;
3463 } 3463 }
3464 3464
3465 checkSnapshotList(api.SnapshotList o) { 3465 checkSnapshotList(api.SnapshotList o) {
3466 buildCounterSnapshotList++; 3466 buildCounterSnapshotList++;
3467 if (buildCounterSnapshotList < 3) { 3467 if (buildCounterSnapshotList < 3) {
3468 unittest.expect(o.id, unittest.equals('foo')); 3468 unittest.expect(o.id, unittest.equals('foo'));
3469 checkUnnamed997(o.items); 3469 checkUnnamed536(o.items);
3470 unittest.expect(o.kind, unittest.equals('foo')); 3470 unittest.expect(o.kind, unittest.equals('foo'));
3471 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3471 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3472 unittest.expect(o.selfLink, unittest.equals('foo')); 3472 unittest.expect(o.selfLink, unittest.equals('foo'));
3473 } 3473 }
3474 buildCounterSnapshotList--; 3474 buildCounterSnapshotList--;
3475 } 3475 }
3476 3476
3477 buildUnnamed998() { 3477 buildUnnamed537() {
3478 var o = new core.List<core.String>(); 3478 var o = new core.List<core.String>();
3479 o.add("foo"); 3479 o.add("foo");
3480 o.add("foo"); 3480 o.add("foo");
3481 return o; 3481 return o;
3482 } 3482 }
3483 3483
3484 checkUnnamed998(core.List<core.String> o) { 3484 checkUnnamed537(core.List<core.String> o) {
3485 unittest.expect(o, unittest.hasLength(2)); 3485 unittest.expect(o, unittest.hasLength(2));
3486 unittest.expect(o[0], unittest.equals('foo')); 3486 unittest.expect(o[0], unittest.equals('foo'));
3487 unittest.expect(o[1], unittest.equals('foo')); 3487 unittest.expect(o[1], unittest.equals('foo'));
3488 } 3488 }
3489 3489
3490 core.int buildCounterTags = 0; 3490 core.int buildCounterTags = 0;
3491 buildTags() { 3491 buildTags() {
3492 var o = new api.Tags(); 3492 var o = new api.Tags();
3493 buildCounterTags++; 3493 buildCounterTags++;
3494 if (buildCounterTags < 3) { 3494 if (buildCounterTags < 3) {
3495 o.fingerprint = "foo"; 3495 o.fingerprint = "foo";
3496 o.items = buildUnnamed998(); 3496 o.items = buildUnnamed537();
3497 } 3497 }
3498 buildCounterTags--; 3498 buildCounterTags--;
3499 return o; 3499 return o;
3500 } 3500 }
3501 3501
3502 checkTags(api.Tags o) { 3502 checkTags(api.Tags o) {
3503 buildCounterTags++; 3503 buildCounterTags++;
3504 if (buildCounterTags < 3) { 3504 if (buildCounterTags < 3) {
3505 unittest.expect(o.fingerprint, unittest.equals('foo')); 3505 unittest.expect(o.fingerprint, unittest.equals('foo'));
3506 checkUnnamed998(o.items); 3506 checkUnnamed537(o.items);
3507 } 3507 }
3508 buildCounterTags--; 3508 buildCounterTags--;
3509 } 3509 }
3510 3510
3511 core.int buildCounterTargetHttpProxy = 0; 3511 core.int buildCounterTargetHttpProxy = 0;
3512 buildTargetHttpProxy() { 3512 buildTargetHttpProxy() {
3513 var o = new api.TargetHttpProxy(); 3513 var o = new api.TargetHttpProxy();
3514 buildCounterTargetHttpProxy++; 3514 buildCounterTargetHttpProxy++;
3515 if (buildCounterTargetHttpProxy < 3) { 3515 if (buildCounterTargetHttpProxy < 3) {
3516 o.creationTimestamp = "foo"; 3516 o.creationTimestamp = "foo";
(...skipping 15 matching lines...) Expand all
3532 unittest.expect(o.description, unittest.equals('foo')); 3532 unittest.expect(o.description, unittest.equals('foo'));
3533 unittest.expect(o.id, unittest.equals('foo')); 3533 unittest.expect(o.id, unittest.equals('foo'));
3534 unittest.expect(o.kind, unittest.equals('foo')); 3534 unittest.expect(o.kind, unittest.equals('foo'));
3535 unittest.expect(o.name, unittest.equals('foo')); 3535 unittest.expect(o.name, unittest.equals('foo'));
3536 unittest.expect(o.selfLink, unittest.equals('foo')); 3536 unittest.expect(o.selfLink, unittest.equals('foo'));
3537 unittest.expect(o.urlMap, unittest.equals('foo')); 3537 unittest.expect(o.urlMap, unittest.equals('foo'));
3538 } 3538 }
3539 buildCounterTargetHttpProxy--; 3539 buildCounterTargetHttpProxy--;
3540 } 3540 }
3541 3541
3542 buildUnnamed999() { 3542 buildUnnamed538() {
3543 var o = new core.List<api.TargetHttpProxy>(); 3543 var o = new core.List<api.TargetHttpProxy>();
3544 o.add(buildTargetHttpProxy()); 3544 o.add(buildTargetHttpProxy());
3545 o.add(buildTargetHttpProxy()); 3545 o.add(buildTargetHttpProxy());
3546 return o; 3546 return o;
3547 } 3547 }
3548 3548
3549 checkUnnamed999(core.List<api.TargetHttpProxy> o) { 3549 checkUnnamed538(core.List<api.TargetHttpProxy> o) {
3550 unittest.expect(o, unittest.hasLength(2)); 3550 unittest.expect(o, unittest.hasLength(2));
3551 checkTargetHttpProxy(o[0]); 3551 checkTargetHttpProxy(o[0]);
3552 checkTargetHttpProxy(o[1]); 3552 checkTargetHttpProxy(o[1]);
3553 } 3553 }
3554 3554
3555 core.int buildCounterTargetHttpProxyList = 0; 3555 core.int buildCounterTargetHttpProxyList = 0;
3556 buildTargetHttpProxyList() { 3556 buildTargetHttpProxyList() {
3557 var o = new api.TargetHttpProxyList(); 3557 var o = new api.TargetHttpProxyList();
3558 buildCounterTargetHttpProxyList++; 3558 buildCounterTargetHttpProxyList++;
3559 if (buildCounterTargetHttpProxyList < 3) { 3559 if (buildCounterTargetHttpProxyList < 3) {
3560 o.id = "foo"; 3560 o.id = "foo";
3561 o.items = buildUnnamed999(); 3561 o.items = buildUnnamed538();
3562 o.kind = "foo"; 3562 o.kind = "foo";
3563 o.nextPageToken = "foo"; 3563 o.nextPageToken = "foo";
3564 o.selfLink = "foo"; 3564 o.selfLink = "foo";
3565 } 3565 }
3566 buildCounterTargetHttpProxyList--; 3566 buildCounterTargetHttpProxyList--;
3567 return o; 3567 return o;
3568 } 3568 }
3569 3569
3570 checkTargetHttpProxyList(api.TargetHttpProxyList o) { 3570 checkTargetHttpProxyList(api.TargetHttpProxyList o) {
3571 buildCounterTargetHttpProxyList++; 3571 buildCounterTargetHttpProxyList++;
3572 if (buildCounterTargetHttpProxyList < 3) { 3572 if (buildCounterTargetHttpProxyList < 3) {
3573 unittest.expect(o.id, unittest.equals('foo')); 3573 unittest.expect(o.id, unittest.equals('foo'));
3574 checkUnnamed999(o.items); 3574 checkUnnamed538(o.items);
3575 unittest.expect(o.kind, unittest.equals('foo')); 3575 unittest.expect(o.kind, unittest.equals('foo'));
3576 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3576 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3577 unittest.expect(o.selfLink, unittest.equals('foo')); 3577 unittest.expect(o.selfLink, unittest.equals('foo'));
3578 } 3578 }
3579 buildCounterTargetHttpProxyList--; 3579 buildCounterTargetHttpProxyList--;
3580 } 3580 }
3581 3581
3582 core.int buildCounterTargetInstance = 0; 3582 core.int buildCounterTargetInstance = 0;
3583 buildTargetInstance() { 3583 buildTargetInstance() {
3584 var o = new api.TargetInstance(); 3584 var o = new api.TargetInstance();
(...skipping 22 matching lines...) Expand all
3607 unittest.expect(o.instance, unittest.equals('foo')); 3607 unittest.expect(o.instance, unittest.equals('foo'));
3608 unittest.expect(o.kind, unittest.equals('foo')); 3608 unittest.expect(o.kind, unittest.equals('foo'));
3609 unittest.expect(o.name, unittest.equals('foo')); 3609 unittest.expect(o.name, unittest.equals('foo'));
3610 unittest.expect(o.natPolicy, unittest.equals('foo')); 3610 unittest.expect(o.natPolicy, unittest.equals('foo'));
3611 unittest.expect(o.selfLink, unittest.equals('foo')); 3611 unittest.expect(o.selfLink, unittest.equals('foo'));
3612 unittest.expect(o.zone, unittest.equals('foo')); 3612 unittest.expect(o.zone, unittest.equals('foo'));
3613 } 3613 }
3614 buildCounterTargetInstance--; 3614 buildCounterTargetInstance--;
3615 } 3615 }
3616 3616
3617 buildUnnamed1000() { 3617 buildUnnamed539() {
3618 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); 3618 var o = new core.Map<core.String, api.TargetInstancesScopedList>();
3619 o["x"] = buildTargetInstancesScopedList(); 3619 o["x"] = buildTargetInstancesScopedList();
3620 o["y"] = buildTargetInstancesScopedList(); 3620 o["y"] = buildTargetInstancesScopedList();
3621 return o; 3621 return o;
3622 } 3622 }
3623 3623
3624 checkUnnamed1000(core.Map<core.String, api.TargetInstancesScopedList> o) { 3624 checkUnnamed539(core.Map<core.String, api.TargetInstancesScopedList> o) {
3625 unittest.expect(o, unittest.hasLength(2)); 3625 unittest.expect(o, unittest.hasLength(2));
3626 checkTargetInstancesScopedList(o["x"]); 3626 checkTargetInstancesScopedList(o["x"]);
3627 checkTargetInstancesScopedList(o["y"]); 3627 checkTargetInstancesScopedList(o["y"]);
3628 } 3628 }
3629 3629
3630 core.int buildCounterTargetInstanceAggregatedList = 0; 3630 core.int buildCounterTargetInstanceAggregatedList = 0;
3631 buildTargetInstanceAggregatedList() { 3631 buildTargetInstanceAggregatedList() {
3632 var o = new api.TargetInstanceAggregatedList(); 3632 var o = new api.TargetInstanceAggregatedList();
3633 buildCounterTargetInstanceAggregatedList++; 3633 buildCounterTargetInstanceAggregatedList++;
3634 if (buildCounterTargetInstanceAggregatedList < 3) { 3634 if (buildCounterTargetInstanceAggregatedList < 3) {
3635 o.id = "foo"; 3635 o.id = "foo";
3636 o.items = buildUnnamed1000(); 3636 o.items = buildUnnamed539();
3637 o.kind = "foo"; 3637 o.kind = "foo";
3638 o.nextPageToken = "foo"; 3638 o.nextPageToken = "foo";
3639 o.selfLink = "foo"; 3639 o.selfLink = "foo";
3640 } 3640 }
3641 buildCounterTargetInstanceAggregatedList--; 3641 buildCounterTargetInstanceAggregatedList--;
3642 return o; 3642 return o;
3643 } 3643 }
3644 3644
3645 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { 3645 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) {
3646 buildCounterTargetInstanceAggregatedList++; 3646 buildCounterTargetInstanceAggregatedList++;
3647 if (buildCounterTargetInstanceAggregatedList < 3) { 3647 if (buildCounterTargetInstanceAggregatedList < 3) {
3648 unittest.expect(o.id, unittest.equals('foo')); 3648 unittest.expect(o.id, unittest.equals('foo'));
3649 checkUnnamed1000(o.items); 3649 checkUnnamed539(o.items);
3650 unittest.expect(o.kind, unittest.equals('foo')); 3650 unittest.expect(o.kind, unittest.equals('foo'));
3651 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3651 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3652 unittest.expect(o.selfLink, unittest.equals('foo')); 3652 unittest.expect(o.selfLink, unittest.equals('foo'));
3653 } 3653 }
3654 buildCounterTargetInstanceAggregatedList--; 3654 buildCounterTargetInstanceAggregatedList--;
3655 } 3655 }
3656 3656
3657 buildUnnamed1001() { 3657 buildUnnamed540() {
3658 var o = new core.List<api.TargetInstance>(); 3658 var o = new core.List<api.TargetInstance>();
3659 o.add(buildTargetInstance()); 3659 o.add(buildTargetInstance());
3660 o.add(buildTargetInstance()); 3660 o.add(buildTargetInstance());
3661 return o; 3661 return o;
3662 } 3662 }
3663 3663
3664 checkUnnamed1001(core.List<api.TargetInstance> o) { 3664 checkUnnamed540(core.List<api.TargetInstance> o) {
3665 unittest.expect(o, unittest.hasLength(2)); 3665 unittest.expect(o, unittest.hasLength(2));
3666 checkTargetInstance(o[0]); 3666 checkTargetInstance(o[0]);
3667 checkTargetInstance(o[1]); 3667 checkTargetInstance(o[1]);
3668 } 3668 }
3669 3669
3670 core.int buildCounterTargetInstanceList = 0; 3670 core.int buildCounterTargetInstanceList = 0;
3671 buildTargetInstanceList() { 3671 buildTargetInstanceList() {
3672 var o = new api.TargetInstanceList(); 3672 var o = new api.TargetInstanceList();
3673 buildCounterTargetInstanceList++; 3673 buildCounterTargetInstanceList++;
3674 if (buildCounterTargetInstanceList < 3) { 3674 if (buildCounterTargetInstanceList < 3) {
3675 o.id = "foo"; 3675 o.id = "foo";
3676 o.items = buildUnnamed1001(); 3676 o.items = buildUnnamed540();
3677 o.kind = "foo"; 3677 o.kind = "foo";
3678 o.nextPageToken = "foo"; 3678 o.nextPageToken = "foo";
3679 o.selfLink = "foo"; 3679 o.selfLink = "foo";
3680 } 3680 }
3681 buildCounterTargetInstanceList--; 3681 buildCounterTargetInstanceList--;
3682 return o; 3682 return o;
3683 } 3683 }
3684 3684
3685 checkTargetInstanceList(api.TargetInstanceList o) { 3685 checkTargetInstanceList(api.TargetInstanceList o) {
3686 buildCounterTargetInstanceList++; 3686 buildCounterTargetInstanceList++;
3687 if (buildCounterTargetInstanceList < 3) { 3687 if (buildCounterTargetInstanceList < 3) {
3688 unittest.expect(o.id, unittest.equals('foo')); 3688 unittest.expect(o.id, unittest.equals('foo'));
3689 checkUnnamed1001(o.items); 3689 checkUnnamed540(o.items);
3690 unittest.expect(o.kind, unittest.equals('foo')); 3690 unittest.expect(o.kind, unittest.equals('foo'));
3691 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3691 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3692 unittest.expect(o.selfLink, unittest.equals('foo')); 3692 unittest.expect(o.selfLink, unittest.equals('foo'));
3693 } 3693 }
3694 buildCounterTargetInstanceList--; 3694 buildCounterTargetInstanceList--;
3695 } 3695 }
3696 3696
3697 buildUnnamed1002() { 3697 buildUnnamed541() {
3698 var o = new core.List<api.TargetInstance>(); 3698 var o = new core.List<api.TargetInstance>();
3699 o.add(buildTargetInstance()); 3699 o.add(buildTargetInstance());
3700 o.add(buildTargetInstance()); 3700 o.add(buildTargetInstance());
3701 return o; 3701 return o;
3702 } 3702 }
3703 3703
3704 checkUnnamed1002(core.List<api.TargetInstance> o) { 3704 checkUnnamed541(core.List<api.TargetInstance> o) {
3705 unittest.expect(o, unittest.hasLength(2)); 3705 unittest.expect(o, unittest.hasLength(2));
3706 checkTargetInstance(o[0]); 3706 checkTargetInstance(o[0]);
3707 checkTargetInstance(o[1]); 3707 checkTargetInstance(o[1]);
3708 } 3708 }
3709 3709
3710 core.int buildCounterTargetInstancesScopedListWarningData = 0; 3710 core.int buildCounterTargetInstancesScopedListWarningData = 0;
3711 buildTargetInstancesScopedListWarningData() { 3711 buildTargetInstancesScopedListWarningData() {
3712 var o = new api.TargetInstancesScopedListWarningData(); 3712 var o = new api.TargetInstancesScopedListWarningData();
3713 buildCounterTargetInstancesScopedListWarningData++; 3713 buildCounterTargetInstancesScopedListWarningData++;
3714 if (buildCounterTargetInstancesScopedListWarningData < 3) { 3714 if (buildCounterTargetInstancesScopedListWarningData < 3) {
3715 o.key = "foo"; 3715 o.key = "foo";
3716 o.value = "foo"; 3716 o.value = "foo";
3717 } 3717 }
3718 buildCounterTargetInstancesScopedListWarningData--; 3718 buildCounterTargetInstancesScopedListWarningData--;
3719 return o; 3719 return o;
3720 } 3720 }
3721 3721
3722 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa ta o) { 3722 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa ta o) {
3723 buildCounterTargetInstancesScopedListWarningData++; 3723 buildCounterTargetInstancesScopedListWarningData++;
3724 if (buildCounterTargetInstancesScopedListWarningData < 3) { 3724 if (buildCounterTargetInstancesScopedListWarningData < 3) {
3725 unittest.expect(o.key, unittest.equals('foo')); 3725 unittest.expect(o.key, unittest.equals('foo'));
3726 unittest.expect(o.value, unittest.equals('foo')); 3726 unittest.expect(o.value, unittest.equals('foo'));
3727 } 3727 }
3728 buildCounterTargetInstancesScopedListWarningData--; 3728 buildCounterTargetInstancesScopedListWarningData--;
3729 } 3729 }
3730 3730
3731 buildUnnamed1003() { 3731 buildUnnamed542() {
3732 var o = new core.List<api.TargetInstancesScopedListWarningData>(); 3732 var o = new core.List<api.TargetInstancesScopedListWarningData>();
3733 o.add(buildTargetInstancesScopedListWarningData()); 3733 o.add(buildTargetInstancesScopedListWarningData());
3734 o.add(buildTargetInstancesScopedListWarningData()); 3734 o.add(buildTargetInstancesScopedListWarningData());
3735 return o; 3735 return o;
3736 } 3736 }
3737 3737
3738 checkUnnamed1003(core.List<api.TargetInstancesScopedListWarningData> o) { 3738 checkUnnamed542(core.List<api.TargetInstancesScopedListWarningData> o) {
3739 unittest.expect(o, unittest.hasLength(2)); 3739 unittest.expect(o, unittest.hasLength(2));
3740 checkTargetInstancesScopedListWarningData(o[0]); 3740 checkTargetInstancesScopedListWarningData(o[0]);
3741 checkTargetInstancesScopedListWarningData(o[1]); 3741 checkTargetInstancesScopedListWarningData(o[1]);
3742 } 3742 }
3743 3743
3744 core.int buildCounterTargetInstancesScopedListWarning = 0; 3744 core.int buildCounterTargetInstancesScopedListWarning = 0;
3745 buildTargetInstancesScopedListWarning() { 3745 buildTargetInstancesScopedListWarning() {
3746 var o = new api.TargetInstancesScopedListWarning(); 3746 var o = new api.TargetInstancesScopedListWarning();
3747 buildCounterTargetInstancesScopedListWarning++; 3747 buildCounterTargetInstancesScopedListWarning++;
3748 if (buildCounterTargetInstancesScopedListWarning < 3) { 3748 if (buildCounterTargetInstancesScopedListWarning < 3) {
3749 o.code = "foo"; 3749 o.code = "foo";
3750 o.data = buildUnnamed1003(); 3750 o.data = buildUnnamed542();
3751 o.message = "foo"; 3751 o.message = "foo";
3752 } 3752 }
3753 buildCounterTargetInstancesScopedListWarning--; 3753 buildCounterTargetInstancesScopedListWarning--;
3754 return o; 3754 return o;
3755 } 3755 }
3756 3756
3757 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { 3757 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) {
3758 buildCounterTargetInstancesScopedListWarning++; 3758 buildCounterTargetInstancesScopedListWarning++;
3759 if (buildCounterTargetInstancesScopedListWarning < 3) { 3759 if (buildCounterTargetInstancesScopedListWarning < 3) {
3760 unittest.expect(o.code, unittest.equals('foo')); 3760 unittest.expect(o.code, unittest.equals('foo'));
3761 checkUnnamed1003(o.data); 3761 checkUnnamed542(o.data);
3762 unittest.expect(o.message, unittest.equals('foo')); 3762 unittest.expect(o.message, unittest.equals('foo'));
3763 } 3763 }
3764 buildCounterTargetInstancesScopedListWarning--; 3764 buildCounterTargetInstancesScopedListWarning--;
3765 } 3765 }
3766 3766
3767 core.int buildCounterTargetInstancesScopedList = 0; 3767 core.int buildCounterTargetInstancesScopedList = 0;
3768 buildTargetInstancesScopedList() { 3768 buildTargetInstancesScopedList() {
3769 var o = new api.TargetInstancesScopedList(); 3769 var o = new api.TargetInstancesScopedList();
3770 buildCounterTargetInstancesScopedList++; 3770 buildCounterTargetInstancesScopedList++;
3771 if (buildCounterTargetInstancesScopedList < 3) { 3771 if (buildCounterTargetInstancesScopedList < 3) {
3772 o.targetInstances = buildUnnamed1002(); 3772 o.targetInstances = buildUnnamed541();
3773 o.warning = buildTargetInstancesScopedListWarning(); 3773 o.warning = buildTargetInstancesScopedListWarning();
3774 } 3774 }
3775 buildCounterTargetInstancesScopedList--; 3775 buildCounterTargetInstancesScopedList--;
3776 return o; 3776 return o;
3777 } 3777 }
3778 3778
3779 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { 3779 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) {
3780 buildCounterTargetInstancesScopedList++; 3780 buildCounterTargetInstancesScopedList++;
3781 if (buildCounterTargetInstancesScopedList < 3) { 3781 if (buildCounterTargetInstancesScopedList < 3) {
3782 checkUnnamed1002(o.targetInstances); 3782 checkUnnamed541(o.targetInstances);
3783 checkTargetInstancesScopedListWarning(o.warning); 3783 checkTargetInstancesScopedListWarning(o.warning);
3784 } 3784 }
3785 buildCounterTargetInstancesScopedList--; 3785 buildCounterTargetInstancesScopedList--;
3786 } 3786 }
3787 3787
3788 buildUnnamed1004() { 3788 buildUnnamed543() {
3789 var o = new core.List<core.String>(); 3789 var o = new core.List<core.String>();
3790 o.add("foo"); 3790 o.add("foo");
3791 o.add("foo"); 3791 o.add("foo");
3792 return o; 3792 return o;
3793 } 3793 }
3794 3794
3795 checkUnnamed1004(core.List<core.String> o) { 3795 checkUnnamed543(core.List<core.String> o) {
3796 unittest.expect(o, unittest.hasLength(2)); 3796 unittest.expect(o, unittest.hasLength(2));
3797 unittest.expect(o[0], unittest.equals('foo')); 3797 unittest.expect(o[0], unittest.equals('foo'));
3798 unittest.expect(o[1], unittest.equals('foo')); 3798 unittest.expect(o[1], unittest.equals('foo'));
3799 } 3799 }
3800 3800
3801 buildUnnamed1005() { 3801 buildUnnamed544() {
3802 var o = new core.List<core.String>(); 3802 var o = new core.List<core.String>();
3803 o.add("foo"); 3803 o.add("foo");
3804 o.add("foo"); 3804 o.add("foo");
3805 return o; 3805 return o;
3806 } 3806 }
3807 3807
3808 checkUnnamed1005(core.List<core.String> o) { 3808 checkUnnamed544(core.List<core.String> o) {
3809 unittest.expect(o, unittest.hasLength(2)); 3809 unittest.expect(o, unittest.hasLength(2));
3810 unittest.expect(o[0], unittest.equals('foo')); 3810 unittest.expect(o[0], unittest.equals('foo'));
3811 unittest.expect(o[1], unittest.equals('foo')); 3811 unittest.expect(o[1], unittest.equals('foo'));
3812 } 3812 }
3813 3813
3814 core.int buildCounterTargetPool = 0; 3814 core.int buildCounterTargetPool = 0;
3815 buildTargetPool() { 3815 buildTargetPool() {
3816 var o = new api.TargetPool(); 3816 var o = new api.TargetPool();
3817 buildCounterTargetPool++; 3817 buildCounterTargetPool++;
3818 if (buildCounterTargetPool < 3) { 3818 if (buildCounterTargetPool < 3) {
3819 o.backupPool = "foo"; 3819 o.backupPool = "foo";
3820 o.creationTimestamp = "foo"; 3820 o.creationTimestamp = "foo";
3821 o.description = "foo"; 3821 o.description = "foo";
3822 o.failoverRatio = 42.0; 3822 o.failoverRatio = 42.0;
3823 o.healthChecks = buildUnnamed1004(); 3823 o.healthChecks = buildUnnamed543();
3824 o.id = "foo"; 3824 o.id = "foo";
3825 o.instances = buildUnnamed1005(); 3825 o.instances = buildUnnamed544();
3826 o.kind = "foo"; 3826 o.kind = "foo";
3827 o.name = "foo"; 3827 o.name = "foo";
3828 o.region = "foo"; 3828 o.region = "foo";
3829 o.selfLink = "foo"; 3829 o.selfLink = "foo";
3830 o.sessionAffinity = "foo"; 3830 o.sessionAffinity = "foo";
3831 } 3831 }
3832 buildCounterTargetPool--; 3832 buildCounterTargetPool--;
3833 return o; 3833 return o;
3834 } 3834 }
3835 3835
3836 checkTargetPool(api.TargetPool o) { 3836 checkTargetPool(api.TargetPool o) {
3837 buildCounterTargetPool++; 3837 buildCounterTargetPool++;
3838 if (buildCounterTargetPool < 3) { 3838 if (buildCounterTargetPool < 3) {
3839 unittest.expect(o.backupPool, unittest.equals('foo')); 3839 unittest.expect(o.backupPool, unittest.equals('foo'));
3840 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 3840 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
3841 unittest.expect(o.description, unittest.equals('foo')); 3841 unittest.expect(o.description, unittest.equals('foo'));
3842 unittest.expect(o.failoverRatio, unittest.equals(42.0)); 3842 unittest.expect(o.failoverRatio, unittest.equals(42.0));
3843 checkUnnamed1004(o.healthChecks); 3843 checkUnnamed543(o.healthChecks);
3844 unittest.expect(o.id, unittest.equals('foo')); 3844 unittest.expect(o.id, unittest.equals('foo'));
3845 checkUnnamed1005(o.instances); 3845 checkUnnamed544(o.instances);
3846 unittest.expect(o.kind, unittest.equals('foo')); 3846 unittest.expect(o.kind, unittest.equals('foo'));
3847 unittest.expect(o.name, unittest.equals('foo')); 3847 unittest.expect(o.name, unittest.equals('foo'));
3848 unittest.expect(o.region, unittest.equals('foo')); 3848 unittest.expect(o.region, unittest.equals('foo'));
3849 unittest.expect(o.selfLink, unittest.equals('foo')); 3849 unittest.expect(o.selfLink, unittest.equals('foo'));
3850 unittest.expect(o.sessionAffinity, unittest.equals('foo')); 3850 unittest.expect(o.sessionAffinity, unittest.equals('foo'));
3851 } 3851 }
3852 buildCounterTargetPool--; 3852 buildCounterTargetPool--;
3853 } 3853 }
3854 3854
3855 buildUnnamed1006() { 3855 buildUnnamed545() {
3856 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); 3856 var o = new core.Map<core.String, api.TargetPoolsScopedList>();
3857 o["x"] = buildTargetPoolsScopedList(); 3857 o["x"] = buildTargetPoolsScopedList();
3858 o["y"] = buildTargetPoolsScopedList(); 3858 o["y"] = buildTargetPoolsScopedList();
3859 return o; 3859 return o;
3860 } 3860 }
3861 3861
3862 checkUnnamed1006(core.Map<core.String, api.TargetPoolsScopedList> o) { 3862 checkUnnamed545(core.Map<core.String, api.TargetPoolsScopedList> o) {
3863 unittest.expect(o, unittest.hasLength(2)); 3863 unittest.expect(o, unittest.hasLength(2));
3864 checkTargetPoolsScopedList(o["x"]); 3864 checkTargetPoolsScopedList(o["x"]);
3865 checkTargetPoolsScopedList(o["y"]); 3865 checkTargetPoolsScopedList(o["y"]);
3866 } 3866 }
3867 3867
3868 core.int buildCounterTargetPoolAggregatedList = 0; 3868 core.int buildCounterTargetPoolAggregatedList = 0;
3869 buildTargetPoolAggregatedList() { 3869 buildTargetPoolAggregatedList() {
3870 var o = new api.TargetPoolAggregatedList(); 3870 var o = new api.TargetPoolAggregatedList();
3871 buildCounterTargetPoolAggregatedList++; 3871 buildCounterTargetPoolAggregatedList++;
3872 if (buildCounterTargetPoolAggregatedList < 3) { 3872 if (buildCounterTargetPoolAggregatedList < 3) {
3873 o.id = "foo"; 3873 o.id = "foo";
3874 o.items = buildUnnamed1006(); 3874 o.items = buildUnnamed545();
3875 o.kind = "foo"; 3875 o.kind = "foo";
3876 o.nextPageToken = "foo"; 3876 o.nextPageToken = "foo";
3877 o.selfLink = "foo"; 3877 o.selfLink = "foo";
3878 } 3878 }
3879 buildCounterTargetPoolAggregatedList--; 3879 buildCounterTargetPoolAggregatedList--;
3880 return o; 3880 return o;
3881 } 3881 }
3882 3882
3883 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { 3883 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) {
3884 buildCounterTargetPoolAggregatedList++; 3884 buildCounterTargetPoolAggregatedList++;
3885 if (buildCounterTargetPoolAggregatedList < 3) { 3885 if (buildCounterTargetPoolAggregatedList < 3) {
3886 unittest.expect(o.id, unittest.equals('foo')); 3886 unittest.expect(o.id, unittest.equals('foo'));
3887 checkUnnamed1006(o.items); 3887 checkUnnamed545(o.items);
3888 unittest.expect(o.kind, unittest.equals('foo')); 3888 unittest.expect(o.kind, unittest.equals('foo'));
3889 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3889 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3890 unittest.expect(o.selfLink, unittest.equals('foo')); 3890 unittest.expect(o.selfLink, unittest.equals('foo'));
3891 } 3891 }
3892 buildCounterTargetPoolAggregatedList--; 3892 buildCounterTargetPoolAggregatedList--;
3893 } 3893 }
3894 3894
3895 buildUnnamed1007() { 3895 buildUnnamed546() {
3896 var o = new core.List<api.HealthStatus>(); 3896 var o = new core.List<api.HealthStatus>();
3897 o.add(buildHealthStatus()); 3897 o.add(buildHealthStatus());
3898 o.add(buildHealthStatus()); 3898 o.add(buildHealthStatus());
3899 return o; 3899 return o;
3900 } 3900 }
3901 3901
3902 checkUnnamed1007(core.List<api.HealthStatus> o) { 3902 checkUnnamed546(core.List<api.HealthStatus> o) {
3903 unittest.expect(o, unittest.hasLength(2)); 3903 unittest.expect(o, unittest.hasLength(2));
3904 checkHealthStatus(o[0]); 3904 checkHealthStatus(o[0]);
3905 checkHealthStatus(o[1]); 3905 checkHealthStatus(o[1]);
3906 } 3906 }
3907 3907
3908 core.int buildCounterTargetPoolInstanceHealth = 0; 3908 core.int buildCounterTargetPoolInstanceHealth = 0;
3909 buildTargetPoolInstanceHealth() { 3909 buildTargetPoolInstanceHealth() {
3910 var o = new api.TargetPoolInstanceHealth(); 3910 var o = new api.TargetPoolInstanceHealth();
3911 buildCounterTargetPoolInstanceHealth++; 3911 buildCounterTargetPoolInstanceHealth++;
3912 if (buildCounterTargetPoolInstanceHealth < 3) { 3912 if (buildCounterTargetPoolInstanceHealth < 3) {
3913 o.healthStatus = buildUnnamed1007(); 3913 o.healthStatus = buildUnnamed546();
3914 o.kind = "foo"; 3914 o.kind = "foo";
3915 } 3915 }
3916 buildCounterTargetPoolInstanceHealth--; 3916 buildCounterTargetPoolInstanceHealth--;
3917 return o; 3917 return o;
3918 } 3918 }
3919 3919
3920 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { 3920 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) {
3921 buildCounterTargetPoolInstanceHealth++; 3921 buildCounterTargetPoolInstanceHealth++;
3922 if (buildCounterTargetPoolInstanceHealth < 3) { 3922 if (buildCounterTargetPoolInstanceHealth < 3) {
3923 checkUnnamed1007(o.healthStatus); 3923 checkUnnamed546(o.healthStatus);
3924 unittest.expect(o.kind, unittest.equals('foo')); 3924 unittest.expect(o.kind, unittest.equals('foo'));
3925 } 3925 }
3926 buildCounterTargetPoolInstanceHealth--; 3926 buildCounterTargetPoolInstanceHealth--;
3927 } 3927 }
3928 3928
3929 buildUnnamed1008() { 3929 buildUnnamed547() {
3930 var o = new core.List<api.TargetPool>(); 3930 var o = new core.List<api.TargetPool>();
3931 o.add(buildTargetPool()); 3931 o.add(buildTargetPool());
3932 o.add(buildTargetPool()); 3932 o.add(buildTargetPool());
3933 return o; 3933 return o;
3934 } 3934 }
3935 3935
3936 checkUnnamed1008(core.List<api.TargetPool> o) { 3936 checkUnnamed547(core.List<api.TargetPool> o) {
3937 unittest.expect(o, unittest.hasLength(2)); 3937 unittest.expect(o, unittest.hasLength(2));
3938 checkTargetPool(o[0]); 3938 checkTargetPool(o[0]);
3939 checkTargetPool(o[1]); 3939 checkTargetPool(o[1]);
3940 } 3940 }
3941 3941
3942 core.int buildCounterTargetPoolList = 0; 3942 core.int buildCounterTargetPoolList = 0;
3943 buildTargetPoolList() { 3943 buildTargetPoolList() {
3944 var o = new api.TargetPoolList(); 3944 var o = new api.TargetPoolList();
3945 buildCounterTargetPoolList++; 3945 buildCounterTargetPoolList++;
3946 if (buildCounterTargetPoolList < 3) { 3946 if (buildCounterTargetPoolList < 3) {
3947 o.id = "foo"; 3947 o.id = "foo";
3948 o.items = buildUnnamed1008(); 3948 o.items = buildUnnamed547();
3949 o.kind = "foo"; 3949 o.kind = "foo";
3950 o.nextPageToken = "foo"; 3950 o.nextPageToken = "foo";
3951 o.selfLink = "foo"; 3951 o.selfLink = "foo";
3952 } 3952 }
3953 buildCounterTargetPoolList--; 3953 buildCounterTargetPoolList--;
3954 return o; 3954 return o;
3955 } 3955 }
3956 3956
3957 checkTargetPoolList(api.TargetPoolList o) { 3957 checkTargetPoolList(api.TargetPoolList o) {
3958 buildCounterTargetPoolList++; 3958 buildCounterTargetPoolList++;
3959 if (buildCounterTargetPoolList < 3) { 3959 if (buildCounterTargetPoolList < 3) {
3960 unittest.expect(o.id, unittest.equals('foo')); 3960 unittest.expect(o.id, unittest.equals('foo'));
3961 checkUnnamed1008(o.items); 3961 checkUnnamed547(o.items);
3962 unittest.expect(o.kind, unittest.equals('foo')); 3962 unittest.expect(o.kind, unittest.equals('foo'));
3963 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3963 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3964 unittest.expect(o.selfLink, unittest.equals('foo')); 3964 unittest.expect(o.selfLink, unittest.equals('foo'));
3965 } 3965 }
3966 buildCounterTargetPoolList--; 3966 buildCounterTargetPoolList--;
3967 } 3967 }
3968 3968
3969 buildUnnamed1009() { 3969 buildUnnamed548() {
3970 var o = new core.List<api.HealthCheckReference>(); 3970 var o = new core.List<api.HealthCheckReference>();
3971 o.add(buildHealthCheckReference()); 3971 o.add(buildHealthCheckReference());
3972 o.add(buildHealthCheckReference()); 3972 o.add(buildHealthCheckReference());
3973 return o; 3973 return o;
3974 } 3974 }
3975 3975
3976 checkUnnamed1009(core.List<api.HealthCheckReference> o) { 3976 checkUnnamed548(core.List<api.HealthCheckReference> o) {
3977 unittest.expect(o, unittest.hasLength(2)); 3977 unittest.expect(o, unittest.hasLength(2));
3978 checkHealthCheckReference(o[0]); 3978 checkHealthCheckReference(o[0]);
3979 checkHealthCheckReference(o[1]); 3979 checkHealthCheckReference(o[1]);
3980 } 3980 }
3981 3981
3982 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; 3982 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0;
3983 buildTargetPoolsAddHealthCheckRequest() { 3983 buildTargetPoolsAddHealthCheckRequest() {
3984 var o = new api.TargetPoolsAddHealthCheckRequest(); 3984 var o = new api.TargetPoolsAddHealthCheckRequest();
3985 buildCounterTargetPoolsAddHealthCheckRequest++; 3985 buildCounterTargetPoolsAddHealthCheckRequest++;
3986 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { 3986 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) {
3987 o.healthChecks = buildUnnamed1009(); 3987 o.healthChecks = buildUnnamed548();
3988 } 3988 }
3989 buildCounterTargetPoolsAddHealthCheckRequest--; 3989 buildCounterTargetPoolsAddHealthCheckRequest--;
3990 return o; 3990 return o;
3991 } 3991 }
3992 3992
3993 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { 3993 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) {
3994 buildCounterTargetPoolsAddHealthCheckRequest++; 3994 buildCounterTargetPoolsAddHealthCheckRequest++;
3995 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { 3995 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) {
3996 checkUnnamed1009(o.healthChecks); 3996 checkUnnamed548(o.healthChecks);
3997 } 3997 }
3998 buildCounterTargetPoolsAddHealthCheckRequest--; 3998 buildCounterTargetPoolsAddHealthCheckRequest--;
3999 } 3999 }
4000 4000
4001 buildUnnamed1010() { 4001 buildUnnamed549() {
4002 var o = new core.List<api.InstanceReference>(); 4002 var o = new core.List<api.InstanceReference>();
4003 o.add(buildInstanceReference()); 4003 o.add(buildInstanceReference());
4004 o.add(buildInstanceReference()); 4004 o.add(buildInstanceReference());
4005 return o; 4005 return o;
4006 } 4006 }
4007 4007
4008 checkUnnamed1010(core.List<api.InstanceReference> o) { 4008 checkUnnamed549(core.List<api.InstanceReference> o) {
4009 unittest.expect(o, unittest.hasLength(2)); 4009 unittest.expect(o, unittest.hasLength(2));
4010 checkInstanceReference(o[0]); 4010 checkInstanceReference(o[0]);
4011 checkInstanceReference(o[1]); 4011 checkInstanceReference(o[1]);
4012 } 4012 }
4013 4013
4014 core.int buildCounterTargetPoolsAddInstanceRequest = 0; 4014 core.int buildCounterTargetPoolsAddInstanceRequest = 0;
4015 buildTargetPoolsAddInstanceRequest() { 4015 buildTargetPoolsAddInstanceRequest() {
4016 var o = new api.TargetPoolsAddInstanceRequest(); 4016 var o = new api.TargetPoolsAddInstanceRequest();
4017 buildCounterTargetPoolsAddInstanceRequest++; 4017 buildCounterTargetPoolsAddInstanceRequest++;
4018 if (buildCounterTargetPoolsAddInstanceRequest < 3) { 4018 if (buildCounterTargetPoolsAddInstanceRequest < 3) {
4019 o.instances = buildUnnamed1010(); 4019 o.instances = buildUnnamed549();
4020 } 4020 }
4021 buildCounterTargetPoolsAddInstanceRequest--; 4021 buildCounterTargetPoolsAddInstanceRequest--;
4022 return o; 4022 return o;
4023 } 4023 }
4024 4024
4025 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { 4025 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) {
4026 buildCounterTargetPoolsAddInstanceRequest++; 4026 buildCounterTargetPoolsAddInstanceRequest++;
4027 if (buildCounterTargetPoolsAddInstanceRequest < 3) { 4027 if (buildCounterTargetPoolsAddInstanceRequest < 3) {
4028 checkUnnamed1010(o.instances); 4028 checkUnnamed549(o.instances);
4029 } 4029 }
4030 buildCounterTargetPoolsAddInstanceRequest--; 4030 buildCounterTargetPoolsAddInstanceRequest--;
4031 } 4031 }
4032 4032
4033 buildUnnamed1011() { 4033 buildUnnamed550() {
4034 var o = new core.List<api.HealthCheckReference>(); 4034 var o = new core.List<api.HealthCheckReference>();
4035 o.add(buildHealthCheckReference()); 4035 o.add(buildHealthCheckReference());
4036 o.add(buildHealthCheckReference()); 4036 o.add(buildHealthCheckReference());
4037 return o; 4037 return o;
4038 } 4038 }
4039 4039
4040 checkUnnamed1011(core.List<api.HealthCheckReference> o) { 4040 checkUnnamed550(core.List<api.HealthCheckReference> o) {
4041 unittest.expect(o, unittest.hasLength(2)); 4041 unittest.expect(o, unittest.hasLength(2));
4042 checkHealthCheckReference(o[0]); 4042 checkHealthCheckReference(o[0]);
4043 checkHealthCheckReference(o[1]); 4043 checkHealthCheckReference(o[1]);
4044 } 4044 }
4045 4045
4046 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; 4046 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0;
4047 buildTargetPoolsRemoveHealthCheckRequest() { 4047 buildTargetPoolsRemoveHealthCheckRequest() {
4048 var o = new api.TargetPoolsRemoveHealthCheckRequest(); 4048 var o = new api.TargetPoolsRemoveHealthCheckRequest();
4049 buildCounterTargetPoolsRemoveHealthCheckRequest++; 4049 buildCounterTargetPoolsRemoveHealthCheckRequest++;
4050 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { 4050 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) {
4051 o.healthChecks = buildUnnamed1011(); 4051 o.healthChecks = buildUnnamed550();
4052 } 4052 }
4053 buildCounterTargetPoolsRemoveHealthCheckRequest--; 4053 buildCounterTargetPoolsRemoveHealthCheckRequest--;
4054 return o; 4054 return o;
4055 } 4055 }
4056 4056
4057 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest o) { 4057 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest o) {
4058 buildCounterTargetPoolsRemoveHealthCheckRequest++; 4058 buildCounterTargetPoolsRemoveHealthCheckRequest++;
4059 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { 4059 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) {
4060 checkUnnamed1011(o.healthChecks); 4060 checkUnnamed550(o.healthChecks);
4061 } 4061 }
4062 buildCounterTargetPoolsRemoveHealthCheckRequest--; 4062 buildCounterTargetPoolsRemoveHealthCheckRequest--;
4063 } 4063 }
4064 4064
4065 buildUnnamed1012() { 4065 buildUnnamed551() {
4066 var o = new core.List<api.InstanceReference>(); 4066 var o = new core.List<api.InstanceReference>();
4067 o.add(buildInstanceReference()); 4067 o.add(buildInstanceReference());
4068 o.add(buildInstanceReference()); 4068 o.add(buildInstanceReference());
4069 return o; 4069 return o;
4070 } 4070 }
4071 4071
4072 checkUnnamed1012(core.List<api.InstanceReference> o) { 4072 checkUnnamed551(core.List<api.InstanceReference> o) {
4073 unittest.expect(o, unittest.hasLength(2)); 4073 unittest.expect(o, unittest.hasLength(2));
4074 checkInstanceReference(o[0]); 4074 checkInstanceReference(o[0]);
4075 checkInstanceReference(o[1]); 4075 checkInstanceReference(o[1]);
4076 } 4076 }
4077 4077
4078 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; 4078 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0;
4079 buildTargetPoolsRemoveInstanceRequest() { 4079 buildTargetPoolsRemoveInstanceRequest() {
4080 var o = new api.TargetPoolsRemoveInstanceRequest(); 4080 var o = new api.TargetPoolsRemoveInstanceRequest();
4081 buildCounterTargetPoolsRemoveInstanceRequest++; 4081 buildCounterTargetPoolsRemoveInstanceRequest++;
4082 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { 4082 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) {
4083 o.instances = buildUnnamed1012(); 4083 o.instances = buildUnnamed551();
4084 } 4084 }
4085 buildCounterTargetPoolsRemoveInstanceRequest--; 4085 buildCounterTargetPoolsRemoveInstanceRequest--;
4086 return o; 4086 return o;
4087 } 4087 }
4088 4088
4089 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { 4089 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) {
4090 buildCounterTargetPoolsRemoveInstanceRequest++; 4090 buildCounterTargetPoolsRemoveInstanceRequest++;
4091 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { 4091 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) {
4092 checkUnnamed1012(o.instances); 4092 checkUnnamed551(o.instances);
4093 } 4093 }
4094 buildCounterTargetPoolsRemoveInstanceRequest--; 4094 buildCounterTargetPoolsRemoveInstanceRequest--;
4095 } 4095 }
4096 4096
4097 buildUnnamed1013() { 4097 buildUnnamed552() {
4098 var o = new core.List<api.TargetPool>(); 4098 var o = new core.List<api.TargetPool>();
4099 o.add(buildTargetPool()); 4099 o.add(buildTargetPool());
4100 o.add(buildTargetPool()); 4100 o.add(buildTargetPool());
4101 return o; 4101 return o;
4102 } 4102 }
4103 4103
4104 checkUnnamed1013(core.List<api.TargetPool> o) { 4104 checkUnnamed552(core.List<api.TargetPool> o) {
4105 unittest.expect(o, unittest.hasLength(2)); 4105 unittest.expect(o, unittest.hasLength(2));
4106 checkTargetPool(o[0]); 4106 checkTargetPool(o[0]);
4107 checkTargetPool(o[1]); 4107 checkTargetPool(o[1]);
4108 } 4108 }
4109 4109
4110 core.int buildCounterTargetPoolsScopedListWarningData = 0; 4110 core.int buildCounterTargetPoolsScopedListWarningData = 0;
4111 buildTargetPoolsScopedListWarningData() { 4111 buildTargetPoolsScopedListWarningData() {
4112 var o = new api.TargetPoolsScopedListWarningData(); 4112 var o = new api.TargetPoolsScopedListWarningData();
4113 buildCounterTargetPoolsScopedListWarningData++; 4113 buildCounterTargetPoolsScopedListWarningData++;
4114 if (buildCounterTargetPoolsScopedListWarningData < 3) { 4114 if (buildCounterTargetPoolsScopedListWarningData < 3) {
4115 o.key = "foo"; 4115 o.key = "foo";
4116 o.value = "foo"; 4116 o.value = "foo";
4117 } 4117 }
4118 buildCounterTargetPoolsScopedListWarningData--; 4118 buildCounterTargetPoolsScopedListWarningData--;
4119 return o; 4119 return o;
4120 } 4120 }
4121 4121
4122 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { 4122 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) {
4123 buildCounterTargetPoolsScopedListWarningData++; 4123 buildCounterTargetPoolsScopedListWarningData++;
4124 if (buildCounterTargetPoolsScopedListWarningData < 3) { 4124 if (buildCounterTargetPoolsScopedListWarningData < 3) {
4125 unittest.expect(o.key, unittest.equals('foo')); 4125 unittest.expect(o.key, unittest.equals('foo'));
4126 unittest.expect(o.value, unittest.equals('foo')); 4126 unittest.expect(o.value, unittest.equals('foo'));
4127 } 4127 }
4128 buildCounterTargetPoolsScopedListWarningData--; 4128 buildCounterTargetPoolsScopedListWarningData--;
4129 } 4129 }
4130 4130
4131 buildUnnamed1014() { 4131 buildUnnamed553() {
4132 var o = new core.List<api.TargetPoolsScopedListWarningData>(); 4132 var o = new core.List<api.TargetPoolsScopedListWarningData>();
4133 o.add(buildTargetPoolsScopedListWarningData()); 4133 o.add(buildTargetPoolsScopedListWarningData());
4134 o.add(buildTargetPoolsScopedListWarningData()); 4134 o.add(buildTargetPoolsScopedListWarningData());
4135 return o; 4135 return o;
4136 } 4136 }
4137 4137
4138 checkUnnamed1014(core.List<api.TargetPoolsScopedListWarningData> o) { 4138 checkUnnamed553(core.List<api.TargetPoolsScopedListWarningData> o) {
4139 unittest.expect(o, unittest.hasLength(2)); 4139 unittest.expect(o, unittest.hasLength(2));
4140 checkTargetPoolsScopedListWarningData(o[0]); 4140 checkTargetPoolsScopedListWarningData(o[0]);
4141 checkTargetPoolsScopedListWarningData(o[1]); 4141 checkTargetPoolsScopedListWarningData(o[1]);
4142 } 4142 }
4143 4143
4144 core.int buildCounterTargetPoolsScopedListWarning = 0; 4144 core.int buildCounterTargetPoolsScopedListWarning = 0;
4145 buildTargetPoolsScopedListWarning() { 4145 buildTargetPoolsScopedListWarning() {
4146 var o = new api.TargetPoolsScopedListWarning(); 4146 var o = new api.TargetPoolsScopedListWarning();
4147 buildCounterTargetPoolsScopedListWarning++; 4147 buildCounterTargetPoolsScopedListWarning++;
4148 if (buildCounterTargetPoolsScopedListWarning < 3) { 4148 if (buildCounterTargetPoolsScopedListWarning < 3) {
4149 o.code = "foo"; 4149 o.code = "foo";
4150 o.data = buildUnnamed1014(); 4150 o.data = buildUnnamed553();
4151 o.message = "foo"; 4151 o.message = "foo";
4152 } 4152 }
4153 buildCounterTargetPoolsScopedListWarning--; 4153 buildCounterTargetPoolsScopedListWarning--;
4154 return o; 4154 return o;
4155 } 4155 }
4156 4156
4157 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { 4157 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) {
4158 buildCounterTargetPoolsScopedListWarning++; 4158 buildCounterTargetPoolsScopedListWarning++;
4159 if (buildCounterTargetPoolsScopedListWarning < 3) { 4159 if (buildCounterTargetPoolsScopedListWarning < 3) {
4160 unittest.expect(o.code, unittest.equals('foo')); 4160 unittest.expect(o.code, unittest.equals('foo'));
4161 checkUnnamed1014(o.data); 4161 checkUnnamed553(o.data);
4162 unittest.expect(o.message, unittest.equals('foo')); 4162 unittest.expect(o.message, unittest.equals('foo'));
4163 } 4163 }
4164 buildCounterTargetPoolsScopedListWarning--; 4164 buildCounterTargetPoolsScopedListWarning--;
4165 } 4165 }
4166 4166
4167 core.int buildCounterTargetPoolsScopedList = 0; 4167 core.int buildCounterTargetPoolsScopedList = 0;
4168 buildTargetPoolsScopedList() { 4168 buildTargetPoolsScopedList() {
4169 var o = new api.TargetPoolsScopedList(); 4169 var o = new api.TargetPoolsScopedList();
4170 buildCounterTargetPoolsScopedList++; 4170 buildCounterTargetPoolsScopedList++;
4171 if (buildCounterTargetPoolsScopedList < 3) { 4171 if (buildCounterTargetPoolsScopedList < 3) {
4172 o.targetPools = buildUnnamed1013(); 4172 o.targetPools = buildUnnamed552();
4173 o.warning = buildTargetPoolsScopedListWarning(); 4173 o.warning = buildTargetPoolsScopedListWarning();
4174 } 4174 }
4175 buildCounterTargetPoolsScopedList--; 4175 buildCounterTargetPoolsScopedList--;
4176 return o; 4176 return o;
4177 } 4177 }
4178 4178
4179 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { 4179 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) {
4180 buildCounterTargetPoolsScopedList++; 4180 buildCounterTargetPoolsScopedList++;
4181 if (buildCounterTargetPoolsScopedList < 3) { 4181 if (buildCounterTargetPoolsScopedList < 3) {
4182 checkUnnamed1013(o.targetPools); 4182 checkUnnamed552(o.targetPools);
4183 checkTargetPoolsScopedListWarning(o.warning); 4183 checkTargetPoolsScopedListWarning(o.warning);
4184 } 4184 }
4185 buildCounterTargetPoolsScopedList--; 4185 buildCounterTargetPoolsScopedList--;
4186 } 4186 }
4187 4187
4188 core.int buildCounterTargetReference = 0; 4188 core.int buildCounterTargetReference = 0;
4189 buildTargetReference() { 4189 buildTargetReference() {
4190 var o = new api.TargetReference(); 4190 var o = new api.TargetReference();
4191 buildCounterTargetReference++; 4191 buildCounterTargetReference++;
4192 if (buildCounterTargetReference < 3) { 4192 if (buildCounterTargetReference < 3) {
(...skipping 29 matching lines...) Expand all
4222 buildCounterTestFailure++; 4222 buildCounterTestFailure++;
4223 if (buildCounterTestFailure < 3) { 4223 if (buildCounterTestFailure < 3) {
4224 unittest.expect(o.actualService, unittest.equals('foo')); 4224 unittest.expect(o.actualService, unittest.equals('foo'));
4225 unittest.expect(o.expectedService, unittest.equals('foo')); 4225 unittest.expect(o.expectedService, unittest.equals('foo'));
4226 unittest.expect(o.host, unittest.equals('foo')); 4226 unittest.expect(o.host, unittest.equals('foo'));
4227 unittest.expect(o.path, unittest.equals('foo')); 4227 unittest.expect(o.path, unittest.equals('foo'));
4228 } 4228 }
4229 buildCounterTestFailure--; 4229 buildCounterTestFailure--;
4230 } 4230 }
4231 4231
4232 buildUnnamed1015() { 4232 buildUnnamed554() {
4233 var o = new core.List<api.HostRule>(); 4233 var o = new core.List<api.HostRule>();
4234 o.add(buildHostRule()); 4234 o.add(buildHostRule());
4235 o.add(buildHostRule()); 4235 o.add(buildHostRule());
4236 return o; 4236 return o;
4237 } 4237 }
4238 4238
4239 checkUnnamed1015(core.List<api.HostRule> o) { 4239 checkUnnamed554(core.List<api.HostRule> o) {
4240 unittest.expect(o, unittest.hasLength(2)); 4240 unittest.expect(o, unittest.hasLength(2));
4241 checkHostRule(o[0]); 4241 checkHostRule(o[0]);
4242 checkHostRule(o[1]); 4242 checkHostRule(o[1]);
4243 } 4243 }
4244 4244
4245 buildUnnamed1016() { 4245 buildUnnamed555() {
4246 var o = new core.List<api.PathMatcher>(); 4246 var o = new core.List<api.PathMatcher>();
4247 o.add(buildPathMatcher()); 4247 o.add(buildPathMatcher());
4248 o.add(buildPathMatcher()); 4248 o.add(buildPathMatcher());
4249 return o; 4249 return o;
4250 } 4250 }
4251 4251
4252 checkUnnamed1016(core.List<api.PathMatcher> o) { 4252 checkUnnamed555(core.List<api.PathMatcher> o) {
4253 unittest.expect(o, unittest.hasLength(2)); 4253 unittest.expect(o, unittest.hasLength(2));
4254 checkPathMatcher(o[0]); 4254 checkPathMatcher(o[0]);
4255 checkPathMatcher(o[1]); 4255 checkPathMatcher(o[1]);
4256 } 4256 }
4257 4257
4258 buildUnnamed1017() { 4258 buildUnnamed556() {
4259 var o = new core.List<api.UrlMapTest>(); 4259 var o = new core.List<api.UrlMapTest>();
4260 o.add(buildUrlMapTest()); 4260 o.add(buildUrlMapTest());
4261 o.add(buildUrlMapTest()); 4261 o.add(buildUrlMapTest());
4262 return o; 4262 return o;
4263 } 4263 }
4264 4264
4265 checkUnnamed1017(core.List<api.UrlMapTest> o) { 4265 checkUnnamed556(core.List<api.UrlMapTest> o) {
4266 unittest.expect(o, unittest.hasLength(2)); 4266 unittest.expect(o, unittest.hasLength(2));
4267 checkUrlMapTest(o[0]); 4267 checkUrlMapTest(o[0]);
4268 checkUrlMapTest(o[1]); 4268 checkUrlMapTest(o[1]);
4269 } 4269 }
4270 4270
4271 core.int buildCounterUrlMap = 0; 4271 core.int buildCounterUrlMap = 0;
4272 buildUrlMap() { 4272 buildUrlMap() {
4273 var o = new api.UrlMap(); 4273 var o = new api.UrlMap();
4274 buildCounterUrlMap++; 4274 buildCounterUrlMap++;
4275 if (buildCounterUrlMap < 3) { 4275 if (buildCounterUrlMap < 3) {
4276 o.creationTimestamp = "foo"; 4276 o.creationTimestamp = "foo";
4277 o.defaultService = "foo"; 4277 o.defaultService = "foo";
4278 o.description = "foo"; 4278 o.description = "foo";
4279 o.fingerprint = "foo"; 4279 o.fingerprint = "foo";
4280 o.hostRules = buildUnnamed1015(); 4280 o.hostRules = buildUnnamed554();
4281 o.id = "foo"; 4281 o.id = "foo";
4282 o.kind = "foo"; 4282 o.kind = "foo";
4283 o.name = "foo"; 4283 o.name = "foo";
4284 o.pathMatchers = buildUnnamed1016(); 4284 o.pathMatchers = buildUnnamed555();
4285 o.selfLink = "foo"; 4285 o.selfLink = "foo";
4286 o.tests = buildUnnamed1017(); 4286 o.tests = buildUnnamed556();
4287 } 4287 }
4288 buildCounterUrlMap--; 4288 buildCounterUrlMap--;
4289 return o; 4289 return o;
4290 } 4290 }
4291 4291
4292 checkUrlMap(api.UrlMap o) { 4292 checkUrlMap(api.UrlMap o) {
4293 buildCounterUrlMap++; 4293 buildCounterUrlMap++;
4294 if (buildCounterUrlMap < 3) { 4294 if (buildCounterUrlMap < 3) {
4295 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 4295 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
4296 unittest.expect(o.defaultService, unittest.equals('foo')); 4296 unittest.expect(o.defaultService, unittest.equals('foo'));
4297 unittest.expect(o.description, unittest.equals('foo')); 4297 unittest.expect(o.description, unittest.equals('foo'));
4298 unittest.expect(o.fingerprint, unittest.equals('foo')); 4298 unittest.expect(o.fingerprint, unittest.equals('foo'));
4299 checkUnnamed1015(o.hostRules); 4299 checkUnnamed554(o.hostRules);
4300 unittest.expect(o.id, unittest.equals('foo')); 4300 unittest.expect(o.id, unittest.equals('foo'));
4301 unittest.expect(o.kind, unittest.equals('foo')); 4301 unittest.expect(o.kind, unittest.equals('foo'));
4302 unittest.expect(o.name, unittest.equals('foo')); 4302 unittest.expect(o.name, unittest.equals('foo'));
4303 checkUnnamed1016(o.pathMatchers); 4303 checkUnnamed555(o.pathMatchers);
4304 unittest.expect(o.selfLink, unittest.equals('foo')); 4304 unittest.expect(o.selfLink, unittest.equals('foo'));
4305 checkUnnamed1017(o.tests); 4305 checkUnnamed556(o.tests);
4306 } 4306 }
4307 buildCounterUrlMap--; 4307 buildCounterUrlMap--;
4308 } 4308 }
4309 4309
4310 buildUnnamed1018() { 4310 buildUnnamed557() {
4311 var o = new core.List<api.UrlMap>(); 4311 var o = new core.List<api.UrlMap>();
4312 o.add(buildUrlMap()); 4312 o.add(buildUrlMap());
4313 o.add(buildUrlMap()); 4313 o.add(buildUrlMap());
4314 return o; 4314 return o;
4315 } 4315 }
4316 4316
4317 checkUnnamed1018(core.List<api.UrlMap> o) { 4317 checkUnnamed557(core.List<api.UrlMap> o) {
4318 unittest.expect(o, unittest.hasLength(2)); 4318 unittest.expect(o, unittest.hasLength(2));
4319 checkUrlMap(o[0]); 4319 checkUrlMap(o[0]);
4320 checkUrlMap(o[1]); 4320 checkUrlMap(o[1]);
4321 } 4321 }
4322 4322
4323 core.int buildCounterUrlMapList = 0; 4323 core.int buildCounterUrlMapList = 0;
4324 buildUrlMapList() { 4324 buildUrlMapList() {
4325 var o = new api.UrlMapList(); 4325 var o = new api.UrlMapList();
4326 buildCounterUrlMapList++; 4326 buildCounterUrlMapList++;
4327 if (buildCounterUrlMapList < 3) { 4327 if (buildCounterUrlMapList < 3) {
4328 o.id = "foo"; 4328 o.id = "foo";
4329 o.items = buildUnnamed1018(); 4329 o.items = buildUnnamed557();
4330 o.kind = "foo"; 4330 o.kind = "foo";
4331 o.nextPageToken = "foo"; 4331 o.nextPageToken = "foo";
4332 o.selfLink = "foo"; 4332 o.selfLink = "foo";
4333 } 4333 }
4334 buildCounterUrlMapList--; 4334 buildCounterUrlMapList--;
4335 return o; 4335 return o;
4336 } 4336 }
4337 4337
4338 checkUrlMapList(api.UrlMapList o) { 4338 checkUrlMapList(api.UrlMapList o) {
4339 buildCounterUrlMapList++; 4339 buildCounterUrlMapList++;
4340 if (buildCounterUrlMapList < 3) { 4340 if (buildCounterUrlMapList < 3) {
4341 unittest.expect(o.id, unittest.equals('foo')); 4341 unittest.expect(o.id, unittest.equals('foo'));
4342 checkUnnamed1018(o.items); 4342 checkUnnamed557(o.items);
4343 unittest.expect(o.kind, unittest.equals('foo')); 4343 unittest.expect(o.kind, unittest.equals('foo'));
4344 unittest.expect(o.nextPageToken, unittest.equals('foo')); 4344 unittest.expect(o.nextPageToken, unittest.equals('foo'));
4345 unittest.expect(o.selfLink, unittest.equals('foo')); 4345 unittest.expect(o.selfLink, unittest.equals('foo'));
4346 } 4346 }
4347 buildCounterUrlMapList--; 4347 buildCounterUrlMapList--;
4348 } 4348 }
4349 4349
4350 core.int buildCounterUrlMapReference = 0; 4350 core.int buildCounterUrlMapReference = 0;
4351 buildUrlMapReference() { 4351 buildUrlMapReference() {
4352 var o = new api.UrlMapReference(); 4352 var o = new api.UrlMapReference();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
4384 buildCounterUrlMapTest++; 4384 buildCounterUrlMapTest++;
4385 if (buildCounterUrlMapTest < 3) { 4385 if (buildCounterUrlMapTest < 3) {
4386 unittest.expect(o.description, unittest.equals('foo')); 4386 unittest.expect(o.description, unittest.equals('foo'));
4387 unittest.expect(o.host, unittest.equals('foo')); 4387 unittest.expect(o.host, unittest.equals('foo'));
4388 unittest.expect(o.path, unittest.equals('foo')); 4388 unittest.expect(o.path, unittest.equals('foo'));
4389 unittest.expect(o.service, unittest.equals('foo')); 4389 unittest.expect(o.service, unittest.equals('foo'));
4390 } 4390 }
4391 buildCounterUrlMapTest--; 4391 buildCounterUrlMapTest--;
4392 } 4392 }
4393 4393
4394 buildUnnamed1019() { 4394 buildUnnamed558() {
4395 var o = new core.List<core.String>(); 4395 var o = new core.List<core.String>();
4396 o.add("foo"); 4396 o.add("foo");
4397 o.add("foo"); 4397 o.add("foo");
4398 return o; 4398 return o;
4399 } 4399 }
4400 4400
4401 checkUnnamed1019(core.List<core.String> o) { 4401 checkUnnamed558(core.List<core.String> o) {
4402 unittest.expect(o, unittest.hasLength(2)); 4402 unittest.expect(o, unittest.hasLength(2));
4403 unittest.expect(o[0], unittest.equals('foo')); 4403 unittest.expect(o[0], unittest.equals('foo'));
4404 unittest.expect(o[1], unittest.equals('foo')); 4404 unittest.expect(o[1], unittest.equals('foo'));
4405 } 4405 }
4406 4406
4407 buildUnnamed1020() { 4407 buildUnnamed559() {
4408 var o = new core.List<api.TestFailure>(); 4408 var o = new core.List<api.TestFailure>();
4409 o.add(buildTestFailure()); 4409 o.add(buildTestFailure());
4410 o.add(buildTestFailure()); 4410 o.add(buildTestFailure());
4411 return o; 4411 return o;
4412 } 4412 }
4413 4413
4414 checkUnnamed1020(core.List<api.TestFailure> o) { 4414 checkUnnamed559(core.List<api.TestFailure> o) {
4415 unittest.expect(o, unittest.hasLength(2)); 4415 unittest.expect(o, unittest.hasLength(2));
4416 checkTestFailure(o[0]); 4416 checkTestFailure(o[0]);
4417 checkTestFailure(o[1]); 4417 checkTestFailure(o[1]);
4418 } 4418 }
4419 4419
4420 core.int buildCounterUrlMapValidationResult = 0; 4420 core.int buildCounterUrlMapValidationResult = 0;
4421 buildUrlMapValidationResult() { 4421 buildUrlMapValidationResult() {
4422 var o = new api.UrlMapValidationResult(); 4422 var o = new api.UrlMapValidationResult();
4423 buildCounterUrlMapValidationResult++; 4423 buildCounterUrlMapValidationResult++;
4424 if (buildCounterUrlMapValidationResult < 3) { 4424 if (buildCounterUrlMapValidationResult < 3) {
4425 o.loadErrors = buildUnnamed1019(); 4425 o.loadErrors = buildUnnamed558();
4426 o.loadSucceeded = true; 4426 o.loadSucceeded = true;
4427 o.testFailures = buildUnnamed1020(); 4427 o.testFailures = buildUnnamed559();
4428 o.testPassed = true; 4428 o.testPassed = true;
4429 } 4429 }
4430 buildCounterUrlMapValidationResult--; 4430 buildCounterUrlMapValidationResult--;
4431 return o; 4431 return o;
4432 } 4432 }
4433 4433
4434 checkUrlMapValidationResult(api.UrlMapValidationResult o) { 4434 checkUrlMapValidationResult(api.UrlMapValidationResult o) {
4435 buildCounterUrlMapValidationResult++; 4435 buildCounterUrlMapValidationResult++;
4436 if (buildCounterUrlMapValidationResult < 3) { 4436 if (buildCounterUrlMapValidationResult < 3) {
4437 checkUnnamed1019(o.loadErrors); 4437 checkUnnamed558(o.loadErrors);
4438 unittest.expect(o.loadSucceeded, unittest.isTrue); 4438 unittest.expect(o.loadSucceeded, unittest.isTrue);
4439 checkUnnamed1020(o.testFailures); 4439 checkUnnamed559(o.testFailures);
4440 unittest.expect(o.testPassed, unittest.isTrue); 4440 unittest.expect(o.testPassed, unittest.isTrue);
4441 } 4441 }
4442 buildCounterUrlMapValidationResult--; 4442 buildCounterUrlMapValidationResult--;
4443 } 4443 }
4444 4444
4445 core.int buildCounterUrlMapsValidateRequest = 0; 4445 core.int buildCounterUrlMapsValidateRequest = 0;
4446 buildUrlMapsValidateRequest() { 4446 buildUrlMapsValidateRequest() {
4447 var o = new api.UrlMapsValidateRequest(); 4447 var o = new api.UrlMapsValidateRequest();
4448 buildCounterUrlMapsValidateRequest++; 4448 buildCounterUrlMapsValidateRequest++;
4449 if (buildCounterUrlMapsValidateRequest < 3) { 4449 if (buildCounterUrlMapsValidateRequest < 3) {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
4519 buildCounterZoneMaintenanceWindows++; 4519 buildCounterZoneMaintenanceWindows++;
4520 if (buildCounterZoneMaintenanceWindows < 3) { 4520 if (buildCounterZoneMaintenanceWindows < 3) {
4521 unittest.expect(o.beginTime, unittest.equals('foo')); 4521 unittest.expect(o.beginTime, unittest.equals('foo'));
4522 unittest.expect(o.description, unittest.equals('foo')); 4522 unittest.expect(o.description, unittest.equals('foo'));
4523 unittest.expect(o.endTime, unittest.equals('foo')); 4523 unittest.expect(o.endTime, unittest.equals('foo'));
4524 unittest.expect(o.name, unittest.equals('foo')); 4524 unittest.expect(o.name, unittest.equals('foo'));
4525 } 4525 }
4526 buildCounterZoneMaintenanceWindows--; 4526 buildCounterZoneMaintenanceWindows--;
4527 } 4527 }
4528 4528
4529 buildUnnamed1021() { 4529 buildUnnamed560() {
4530 var o = new core.List<api.ZoneMaintenanceWindows>(); 4530 var o = new core.List<api.ZoneMaintenanceWindows>();
4531 o.add(buildZoneMaintenanceWindows()); 4531 o.add(buildZoneMaintenanceWindows());
4532 o.add(buildZoneMaintenanceWindows()); 4532 o.add(buildZoneMaintenanceWindows());
4533 return o; 4533 return o;
4534 } 4534 }
4535 4535
4536 checkUnnamed1021(core.List<api.ZoneMaintenanceWindows> o) { 4536 checkUnnamed560(core.List<api.ZoneMaintenanceWindows> o) {
4537 unittest.expect(o, unittest.hasLength(2)); 4537 unittest.expect(o, unittest.hasLength(2));
4538 checkZoneMaintenanceWindows(o[0]); 4538 checkZoneMaintenanceWindows(o[0]);
4539 checkZoneMaintenanceWindows(o[1]); 4539 checkZoneMaintenanceWindows(o[1]);
4540 } 4540 }
4541 4541
4542 core.int buildCounterZone = 0; 4542 core.int buildCounterZone = 0;
4543 buildZone() { 4543 buildZone() {
4544 var o = new api.Zone(); 4544 var o = new api.Zone();
4545 buildCounterZone++; 4545 buildCounterZone++;
4546 if (buildCounterZone < 3) { 4546 if (buildCounterZone < 3) {
4547 o.creationTimestamp = "foo"; 4547 o.creationTimestamp = "foo";
4548 o.deprecated = buildDeprecationStatus(); 4548 o.deprecated = buildDeprecationStatus();
4549 o.description = "foo"; 4549 o.description = "foo";
4550 o.id = "foo"; 4550 o.id = "foo";
4551 o.kind = "foo"; 4551 o.kind = "foo";
4552 o.maintenanceWindows = buildUnnamed1021(); 4552 o.maintenanceWindows = buildUnnamed560();
4553 o.name = "foo"; 4553 o.name = "foo";
4554 o.region = "foo"; 4554 o.region = "foo";
4555 o.selfLink = "foo"; 4555 o.selfLink = "foo";
4556 o.status = "foo"; 4556 o.status = "foo";
4557 } 4557 }
4558 buildCounterZone--; 4558 buildCounterZone--;
4559 return o; 4559 return o;
4560 } 4560 }
4561 4561
4562 checkZone(api.Zone o) { 4562 checkZone(api.Zone o) {
4563 buildCounterZone++; 4563 buildCounterZone++;
4564 if (buildCounterZone < 3) { 4564 if (buildCounterZone < 3) {
4565 unittest.expect(o.creationTimestamp, unittest.equals('foo')); 4565 unittest.expect(o.creationTimestamp, unittest.equals('foo'));
4566 checkDeprecationStatus(o.deprecated); 4566 checkDeprecationStatus(o.deprecated);
4567 unittest.expect(o.description, unittest.equals('foo')); 4567 unittest.expect(o.description, unittest.equals('foo'));
4568 unittest.expect(o.id, unittest.equals('foo')); 4568 unittest.expect(o.id, unittest.equals('foo'));
4569 unittest.expect(o.kind, unittest.equals('foo')); 4569 unittest.expect(o.kind, unittest.equals('foo'));
4570 checkUnnamed1021(o.maintenanceWindows); 4570 checkUnnamed560(o.maintenanceWindows);
4571 unittest.expect(o.name, unittest.equals('foo')); 4571 unittest.expect(o.name, unittest.equals('foo'));
4572 unittest.expect(o.region, unittest.equals('foo')); 4572 unittest.expect(o.region, unittest.equals('foo'));
4573 unittest.expect(o.selfLink, unittest.equals('foo')); 4573 unittest.expect(o.selfLink, unittest.equals('foo'));
4574 unittest.expect(o.status, unittest.equals('foo')); 4574 unittest.expect(o.status, unittest.equals('foo'));
4575 } 4575 }
4576 buildCounterZone--; 4576 buildCounterZone--;
4577 } 4577 }
4578 4578
4579 buildUnnamed1022() { 4579 buildUnnamed561() {
4580 var o = new core.List<api.Zone>(); 4580 var o = new core.List<api.Zone>();
4581 o.add(buildZone()); 4581 o.add(buildZone());
4582 o.add(buildZone()); 4582 o.add(buildZone());
4583 return o; 4583 return o;
4584 } 4584 }
4585 4585
4586 checkUnnamed1022(core.List<api.Zone> o) { 4586 checkUnnamed561(core.List<api.Zone> o) {
4587 unittest.expect(o, unittest.hasLength(2)); 4587 unittest.expect(o, unittest.hasLength(2));
4588 checkZone(o[0]); 4588 checkZone(o[0]);
4589 checkZone(o[1]); 4589 checkZone(o[1]);
4590 } 4590 }
4591 4591
4592 core.int buildCounterZoneList = 0; 4592 core.int buildCounterZoneList = 0;
4593 buildZoneList() { 4593 buildZoneList() {
4594 var o = new api.ZoneList(); 4594 var o = new api.ZoneList();
4595 buildCounterZoneList++; 4595 buildCounterZoneList++;
4596 if (buildCounterZoneList < 3) { 4596 if (buildCounterZoneList < 3) {
4597 o.id = "foo"; 4597 o.id = "foo";
4598 o.items = buildUnnamed1022(); 4598 o.items = buildUnnamed561();
4599 o.kind = "foo"; 4599 o.kind = "foo";
4600 o.nextPageToken = "foo"; 4600 o.nextPageToken = "foo";
4601 o.selfLink = "foo"; 4601 o.selfLink = "foo";
4602 } 4602 }
4603 buildCounterZoneList--; 4603 buildCounterZoneList--;
4604 return o; 4604 return o;
4605 } 4605 }
4606 4606
4607 checkZoneList(api.ZoneList o) { 4607 checkZoneList(api.ZoneList o) {
4608 buildCounterZoneList++; 4608 buildCounterZoneList++;
4609 if (buildCounterZoneList < 3) { 4609 if (buildCounterZoneList < 3) {
4610 unittest.expect(o.id, unittest.equals('foo')); 4610 unittest.expect(o.id, unittest.equals('foo'));
4611 checkUnnamed1022(o.items); 4611 checkUnnamed561(o.items);
4612 unittest.expect(o.kind, unittest.equals('foo')); 4612 unittest.expect(o.kind, unittest.equals('foo'));
4613 unittest.expect(o.nextPageToken, unittest.equals('foo')); 4613 unittest.expect(o.nextPageToken, unittest.equals('foo'));
4614 unittest.expect(o.selfLink, unittest.equals('foo')); 4614 unittest.expect(o.selfLink, unittest.equals('foo'));
4615 } 4615 }
4616 buildCounterZoneList--; 4616 buildCounterZoneList--;
4617 } 4617 }
4618 4618
4619 4619
4620 main() { 4620 main() {
4621 unittest.group("obj-schema-AccessConfig", () { 4621 unittest.group("obj-schema-AccessConfig", () {
(...skipping 7292 matching lines...) Expand 10 before | Expand all | Expand 10 after
11914 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { 11914 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) {
11915 checkZoneList(response); 11915 checkZoneList(response);
11916 }))); 11916 })));
11917 }); 11917 });
11918 11918
11919 }); 11919 });
11920 11920
11921 11921
11922 } 11922 }
11923 11923
OLDNEW
« no previous file with comments | « generated/googleapis/test/civicinfo/v2_test.dart ('k') | generated/googleapis/test/content/v2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698