| OLD | NEW |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 buildCounterAccessConfig++; | 69 buildCounterAccessConfig++; |
| 70 if (buildCounterAccessConfig < 3) { | 70 if (buildCounterAccessConfig < 3) { |
| 71 unittest.expect(o.kind, unittest.equals('foo')); | 71 unittest.expect(o.kind, unittest.equals('foo')); |
| 72 unittest.expect(o.name, unittest.equals('foo')); | 72 unittest.expect(o.name, unittest.equals('foo')); |
| 73 unittest.expect(o.natIP, unittest.equals('foo')); | 73 unittest.expect(o.natIP, unittest.equals('foo')); |
| 74 unittest.expect(o.type, unittest.equals('foo')); | 74 unittest.expect(o.type, unittest.equals('foo')); |
| 75 } | 75 } |
| 76 buildCounterAccessConfig--; | 76 buildCounterAccessConfig--; |
| 77 } | 77 } |
| 78 | 78 |
| 79 buildUnnamed2039() { | 79 buildUnnamed2356() { |
| 80 var o = new core.List<core.String>(); | 80 var o = new core.List<core.String>(); |
| 81 o.add("foo"); | 81 o.add("foo"); |
| 82 o.add("foo"); | 82 o.add("foo"); |
| 83 return o; | 83 return o; |
| 84 } | 84 } |
| 85 | 85 |
| 86 checkUnnamed2039(core.List<core.String> o) { | 86 checkUnnamed2356(core.List<core.String> o) { |
| 87 unittest.expect(o, unittest.hasLength(2)); | 87 unittest.expect(o, unittest.hasLength(2)); |
| 88 unittest.expect(o[0], unittest.equals('foo')); | 88 unittest.expect(o[0], unittest.equals('foo')); |
| 89 unittest.expect(o[1], unittest.equals('foo')); | 89 unittest.expect(o[1], unittest.equals('foo')); |
| 90 } | 90 } |
| 91 | 91 |
| 92 core.int buildCounterAddress = 0; | 92 core.int buildCounterAddress = 0; |
| 93 buildAddress() { | 93 buildAddress() { |
| 94 var o = new api.Address(); | 94 var o = new api.Address(); |
| 95 buildCounterAddress++; | 95 buildCounterAddress++; |
| 96 if (buildCounterAddress < 3) { | 96 if (buildCounterAddress < 3) { |
| 97 o.address = "foo"; | 97 o.address = "foo"; |
| 98 o.creationTimestamp = "foo"; | 98 o.creationTimestamp = "foo"; |
| 99 o.description = "foo"; | 99 o.description = "foo"; |
| 100 o.id = "foo"; | 100 o.id = "foo"; |
| 101 o.kind = "foo"; | 101 o.kind = "foo"; |
| 102 o.name = "foo"; | 102 o.name = "foo"; |
| 103 o.region = "foo"; | 103 o.region = "foo"; |
| 104 o.selfLink = "foo"; | 104 o.selfLink = "foo"; |
| 105 o.status = "foo"; | 105 o.status = "foo"; |
| 106 o.users = buildUnnamed2039(); | 106 o.users = buildUnnamed2356(); |
| 107 } | 107 } |
| 108 buildCounterAddress--; | 108 buildCounterAddress--; |
| 109 return o; | 109 return o; |
| 110 } | 110 } |
| 111 | 111 |
| 112 checkAddress(api.Address o) { | 112 checkAddress(api.Address o) { |
| 113 buildCounterAddress++; | 113 buildCounterAddress++; |
| 114 if (buildCounterAddress < 3) { | 114 if (buildCounterAddress < 3) { |
| 115 unittest.expect(o.address, unittest.equals('foo')); | 115 unittest.expect(o.address, unittest.equals('foo')); |
| 116 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 116 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 117 unittest.expect(o.description, unittest.equals('foo')); | 117 unittest.expect(o.description, unittest.equals('foo')); |
| 118 unittest.expect(o.id, unittest.equals('foo')); | 118 unittest.expect(o.id, unittest.equals('foo')); |
| 119 unittest.expect(o.kind, unittest.equals('foo')); | 119 unittest.expect(o.kind, unittest.equals('foo')); |
| 120 unittest.expect(o.name, unittest.equals('foo')); | 120 unittest.expect(o.name, unittest.equals('foo')); |
| 121 unittest.expect(o.region, unittest.equals('foo')); | 121 unittest.expect(o.region, unittest.equals('foo')); |
| 122 unittest.expect(o.selfLink, unittest.equals('foo')); | 122 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 123 unittest.expect(o.status, unittest.equals('foo')); | 123 unittest.expect(o.status, unittest.equals('foo')); |
| 124 checkUnnamed2039(o.users); | 124 checkUnnamed2356(o.users); |
| 125 } | 125 } |
| 126 buildCounterAddress--; | 126 buildCounterAddress--; |
| 127 } | 127 } |
| 128 | 128 |
| 129 buildUnnamed2040() { | 129 buildUnnamed2357() { |
| 130 var o = new core.Map<core.String, api.AddressesScopedList>(); | 130 var o = new core.Map<core.String, api.AddressesScopedList>(); |
| 131 o["x"] = buildAddressesScopedList(); | 131 o["x"] = buildAddressesScopedList(); |
| 132 o["y"] = buildAddressesScopedList(); | 132 o["y"] = buildAddressesScopedList(); |
| 133 return o; | 133 return o; |
| 134 } | 134 } |
| 135 | 135 |
| 136 checkUnnamed2040(core.Map<core.String, api.AddressesScopedList> o) { | 136 checkUnnamed2357(core.Map<core.String, api.AddressesScopedList> o) { |
| 137 unittest.expect(o, unittest.hasLength(2)); | 137 unittest.expect(o, unittest.hasLength(2)); |
| 138 checkAddressesScopedList(o["x"]); | 138 checkAddressesScopedList(o["x"]); |
| 139 checkAddressesScopedList(o["y"]); | 139 checkAddressesScopedList(o["y"]); |
| 140 } | 140 } |
| 141 | 141 |
| 142 core.int buildCounterAddressAggregatedList = 0; | 142 core.int buildCounterAddressAggregatedList = 0; |
| 143 buildAddressAggregatedList() { | 143 buildAddressAggregatedList() { |
| 144 var o = new api.AddressAggregatedList(); | 144 var o = new api.AddressAggregatedList(); |
| 145 buildCounterAddressAggregatedList++; | 145 buildCounterAddressAggregatedList++; |
| 146 if (buildCounterAddressAggregatedList < 3) { | 146 if (buildCounterAddressAggregatedList < 3) { |
| 147 o.id = "foo"; | 147 o.id = "foo"; |
| 148 o.items = buildUnnamed2040(); | 148 o.items = buildUnnamed2357(); |
| 149 o.kind = "foo"; | 149 o.kind = "foo"; |
| 150 o.nextPageToken = "foo"; | 150 o.nextPageToken = "foo"; |
| 151 o.selfLink = "foo"; | 151 o.selfLink = "foo"; |
| 152 } | 152 } |
| 153 buildCounterAddressAggregatedList--; | 153 buildCounterAddressAggregatedList--; |
| 154 return o; | 154 return o; |
| 155 } | 155 } |
| 156 | 156 |
| 157 checkAddressAggregatedList(api.AddressAggregatedList o) { | 157 checkAddressAggregatedList(api.AddressAggregatedList o) { |
| 158 buildCounterAddressAggregatedList++; | 158 buildCounterAddressAggregatedList++; |
| 159 if (buildCounterAddressAggregatedList < 3) { | 159 if (buildCounterAddressAggregatedList < 3) { |
| 160 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
| 161 checkUnnamed2040(o.items); | 161 checkUnnamed2357(o.items); |
| 162 unittest.expect(o.kind, unittest.equals('foo')); | 162 unittest.expect(o.kind, unittest.equals('foo')); |
| 163 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 163 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 164 unittest.expect(o.selfLink, unittest.equals('foo')); | 164 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 165 } | 165 } |
| 166 buildCounterAddressAggregatedList--; | 166 buildCounterAddressAggregatedList--; |
| 167 } | 167 } |
| 168 | 168 |
| 169 buildUnnamed2041() { | 169 buildUnnamed2358() { |
| 170 var o = new core.List<api.Address>(); | 170 var o = new core.List<api.Address>(); |
| 171 o.add(buildAddress()); | 171 o.add(buildAddress()); |
| 172 o.add(buildAddress()); | 172 o.add(buildAddress()); |
| 173 return o; | 173 return o; |
| 174 } | 174 } |
| 175 | 175 |
| 176 checkUnnamed2041(core.List<api.Address> o) { | 176 checkUnnamed2358(core.List<api.Address> o) { |
| 177 unittest.expect(o, unittest.hasLength(2)); | 177 unittest.expect(o, unittest.hasLength(2)); |
| 178 checkAddress(o[0]); | 178 checkAddress(o[0]); |
| 179 checkAddress(o[1]); | 179 checkAddress(o[1]); |
| 180 } | 180 } |
| 181 | 181 |
| 182 core.int buildCounterAddressList = 0; | 182 core.int buildCounterAddressList = 0; |
| 183 buildAddressList() { | 183 buildAddressList() { |
| 184 var o = new api.AddressList(); | 184 var o = new api.AddressList(); |
| 185 buildCounterAddressList++; | 185 buildCounterAddressList++; |
| 186 if (buildCounterAddressList < 3) { | 186 if (buildCounterAddressList < 3) { |
| 187 o.id = "foo"; | 187 o.id = "foo"; |
| 188 o.items = buildUnnamed2041(); | 188 o.items = buildUnnamed2358(); |
| 189 o.kind = "foo"; | 189 o.kind = "foo"; |
| 190 o.nextPageToken = "foo"; | 190 o.nextPageToken = "foo"; |
| 191 o.selfLink = "foo"; | 191 o.selfLink = "foo"; |
| 192 } | 192 } |
| 193 buildCounterAddressList--; | 193 buildCounterAddressList--; |
| 194 return o; | 194 return o; |
| 195 } | 195 } |
| 196 | 196 |
| 197 checkAddressList(api.AddressList o) { | 197 checkAddressList(api.AddressList o) { |
| 198 buildCounterAddressList++; | 198 buildCounterAddressList++; |
| 199 if (buildCounterAddressList < 3) { | 199 if (buildCounterAddressList < 3) { |
| 200 unittest.expect(o.id, unittest.equals('foo')); | 200 unittest.expect(o.id, unittest.equals('foo')); |
| 201 checkUnnamed2041(o.items); | 201 checkUnnamed2358(o.items); |
| 202 unittest.expect(o.kind, unittest.equals('foo')); | 202 unittest.expect(o.kind, unittest.equals('foo')); |
| 203 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 203 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 204 unittest.expect(o.selfLink, unittest.equals('foo')); | 204 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 205 } | 205 } |
| 206 buildCounterAddressList--; | 206 buildCounterAddressList--; |
| 207 } | 207 } |
| 208 | 208 |
| 209 buildUnnamed2042() { | 209 buildUnnamed2359() { |
| 210 var o = new core.List<api.Address>(); | 210 var o = new core.List<api.Address>(); |
| 211 o.add(buildAddress()); | 211 o.add(buildAddress()); |
| 212 o.add(buildAddress()); | 212 o.add(buildAddress()); |
| 213 return o; | 213 return o; |
| 214 } | 214 } |
| 215 | 215 |
| 216 checkUnnamed2042(core.List<api.Address> o) { | 216 checkUnnamed2359(core.List<api.Address> o) { |
| 217 unittest.expect(o, unittest.hasLength(2)); | 217 unittest.expect(o, unittest.hasLength(2)); |
| 218 checkAddress(o[0]); | 218 checkAddress(o[0]); |
| 219 checkAddress(o[1]); | 219 checkAddress(o[1]); |
| 220 } | 220 } |
| 221 | 221 |
| 222 core.int buildCounterAddressesScopedListWarningData = 0; | 222 core.int buildCounterAddressesScopedListWarningData = 0; |
| 223 buildAddressesScopedListWarningData() { | 223 buildAddressesScopedListWarningData() { |
| 224 var o = new api.AddressesScopedListWarningData(); | 224 var o = new api.AddressesScopedListWarningData(); |
| 225 buildCounterAddressesScopedListWarningData++; | 225 buildCounterAddressesScopedListWarningData++; |
| 226 if (buildCounterAddressesScopedListWarningData < 3) { | 226 if (buildCounterAddressesScopedListWarningData < 3) { |
| 227 o.key = "foo"; | 227 o.key = "foo"; |
| 228 o.value = "foo"; | 228 o.value = "foo"; |
| 229 } | 229 } |
| 230 buildCounterAddressesScopedListWarningData--; | 230 buildCounterAddressesScopedListWarningData--; |
| 231 return o; | 231 return o; |
| 232 } | 232 } |
| 233 | 233 |
| 234 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { | 234 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { |
| 235 buildCounterAddressesScopedListWarningData++; | 235 buildCounterAddressesScopedListWarningData++; |
| 236 if (buildCounterAddressesScopedListWarningData < 3) { | 236 if (buildCounterAddressesScopedListWarningData < 3) { |
| 237 unittest.expect(o.key, unittest.equals('foo')); | 237 unittest.expect(o.key, unittest.equals('foo')); |
| 238 unittest.expect(o.value, unittest.equals('foo')); | 238 unittest.expect(o.value, unittest.equals('foo')); |
| 239 } | 239 } |
| 240 buildCounterAddressesScopedListWarningData--; | 240 buildCounterAddressesScopedListWarningData--; |
| 241 } | 241 } |
| 242 | 242 |
| 243 buildUnnamed2043() { | 243 buildUnnamed2360() { |
| 244 var o = new core.List<api.AddressesScopedListWarningData>(); | 244 var o = new core.List<api.AddressesScopedListWarningData>(); |
| 245 o.add(buildAddressesScopedListWarningData()); | 245 o.add(buildAddressesScopedListWarningData()); |
| 246 o.add(buildAddressesScopedListWarningData()); | 246 o.add(buildAddressesScopedListWarningData()); |
| 247 return o; | 247 return o; |
| 248 } | 248 } |
| 249 | 249 |
| 250 checkUnnamed2043(core.List<api.AddressesScopedListWarningData> o) { | 250 checkUnnamed2360(core.List<api.AddressesScopedListWarningData> o) { |
| 251 unittest.expect(o, unittest.hasLength(2)); | 251 unittest.expect(o, unittest.hasLength(2)); |
| 252 checkAddressesScopedListWarningData(o[0]); | 252 checkAddressesScopedListWarningData(o[0]); |
| 253 checkAddressesScopedListWarningData(o[1]); | 253 checkAddressesScopedListWarningData(o[1]); |
| 254 } | 254 } |
| 255 | 255 |
| 256 core.int buildCounterAddressesScopedListWarning = 0; | 256 core.int buildCounterAddressesScopedListWarning = 0; |
| 257 buildAddressesScopedListWarning() { | 257 buildAddressesScopedListWarning() { |
| 258 var o = new api.AddressesScopedListWarning(); | 258 var o = new api.AddressesScopedListWarning(); |
| 259 buildCounterAddressesScopedListWarning++; | 259 buildCounterAddressesScopedListWarning++; |
| 260 if (buildCounterAddressesScopedListWarning < 3) { | 260 if (buildCounterAddressesScopedListWarning < 3) { |
| 261 o.code = "foo"; | 261 o.code = "foo"; |
| 262 o.data = buildUnnamed2043(); | 262 o.data = buildUnnamed2360(); |
| 263 o.message = "foo"; | 263 o.message = "foo"; |
| 264 } | 264 } |
| 265 buildCounterAddressesScopedListWarning--; | 265 buildCounterAddressesScopedListWarning--; |
| 266 return o; | 266 return o; |
| 267 } | 267 } |
| 268 | 268 |
| 269 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { | 269 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { |
| 270 buildCounterAddressesScopedListWarning++; | 270 buildCounterAddressesScopedListWarning++; |
| 271 if (buildCounterAddressesScopedListWarning < 3) { | 271 if (buildCounterAddressesScopedListWarning < 3) { |
| 272 unittest.expect(o.code, unittest.equals('foo')); | 272 unittest.expect(o.code, unittest.equals('foo')); |
| 273 checkUnnamed2043(o.data); | 273 checkUnnamed2360(o.data); |
| 274 unittest.expect(o.message, unittest.equals('foo')); | 274 unittest.expect(o.message, unittest.equals('foo')); |
| 275 } | 275 } |
| 276 buildCounterAddressesScopedListWarning--; | 276 buildCounterAddressesScopedListWarning--; |
| 277 } | 277 } |
| 278 | 278 |
| 279 core.int buildCounterAddressesScopedList = 0; | 279 core.int buildCounterAddressesScopedList = 0; |
| 280 buildAddressesScopedList() { | 280 buildAddressesScopedList() { |
| 281 var o = new api.AddressesScopedList(); | 281 var o = new api.AddressesScopedList(); |
| 282 buildCounterAddressesScopedList++; | 282 buildCounterAddressesScopedList++; |
| 283 if (buildCounterAddressesScopedList < 3) { | 283 if (buildCounterAddressesScopedList < 3) { |
| 284 o.addresses = buildUnnamed2042(); | 284 o.addresses = buildUnnamed2359(); |
| 285 o.warning = buildAddressesScopedListWarning(); | 285 o.warning = buildAddressesScopedListWarning(); |
| 286 } | 286 } |
| 287 buildCounterAddressesScopedList--; | 287 buildCounterAddressesScopedList--; |
| 288 return o; | 288 return o; |
| 289 } | 289 } |
| 290 | 290 |
| 291 checkAddressesScopedList(api.AddressesScopedList o) { | 291 checkAddressesScopedList(api.AddressesScopedList o) { |
| 292 buildCounterAddressesScopedList++; | 292 buildCounterAddressesScopedList++; |
| 293 if (buildCounterAddressesScopedList < 3) { | 293 if (buildCounterAddressesScopedList < 3) { |
| 294 checkUnnamed2042(o.addresses); | 294 checkUnnamed2359(o.addresses); |
| 295 checkAddressesScopedListWarning(o.warning); | 295 checkAddressesScopedListWarning(o.warning); |
| 296 } | 296 } |
| 297 buildCounterAddressesScopedList--; | 297 buildCounterAddressesScopedList--; |
| 298 } | 298 } |
| 299 | 299 |
| 300 buildUnnamed2044() { | 300 buildUnnamed2361() { |
| 301 var o = new core.List<core.String>(); | 301 var o = new core.List<core.String>(); |
| 302 o.add("foo"); | 302 o.add("foo"); |
| 303 o.add("foo"); | 303 o.add("foo"); |
| 304 return o; | 304 return o; |
| 305 } | 305 } |
| 306 | 306 |
| 307 checkUnnamed2044(core.List<core.String> o) { | 307 checkUnnamed2361(core.List<core.String> o) { |
| 308 unittest.expect(o, unittest.hasLength(2)); | 308 unittest.expect(o, unittest.hasLength(2)); |
| 309 unittest.expect(o[0], unittest.equals('foo')); | 309 unittest.expect(o[0], unittest.equals('foo')); |
| 310 unittest.expect(o[1], unittest.equals('foo')); | 310 unittest.expect(o[1], unittest.equals('foo')); |
| 311 } | 311 } |
| 312 | 312 |
| 313 core.int buildCounterAttachedDisk = 0; | 313 core.int buildCounterAttachedDisk = 0; |
| 314 buildAttachedDisk() { | 314 buildAttachedDisk() { |
| 315 var o = new api.AttachedDisk(); | 315 var o = new api.AttachedDisk(); |
| 316 buildCounterAttachedDisk++; | 316 buildCounterAttachedDisk++; |
| 317 if (buildCounterAttachedDisk < 3) { | 317 if (buildCounterAttachedDisk < 3) { |
| 318 o.autoDelete = true; | 318 o.autoDelete = true; |
| 319 o.boot = true; | 319 o.boot = true; |
| 320 o.deviceName = "foo"; | 320 o.deviceName = "foo"; |
| 321 o.index = 42; | 321 o.index = 42; |
| 322 o.initializeParams = buildAttachedDiskInitializeParams(); | 322 o.initializeParams = buildAttachedDiskInitializeParams(); |
| 323 o.interface = "foo"; | 323 o.interface = "foo"; |
| 324 o.kind = "foo"; | 324 o.kind = "foo"; |
| 325 o.licenses = buildUnnamed2044(); | 325 o.licenses = buildUnnamed2361(); |
| 326 o.mode = "foo"; | 326 o.mode = "foo"; |
| 327 o.source = "foo"; | 327 o.source = "foo"; |
| 328 o.type = "foo"; | 328 o.type = "foo"; |
| 329 } | 329 } |
| 330 buildCounterAttachedDisk--; | 330 buildCounterAttachedDisk--; |
| 331 return o; | 331 return o; |
| 332 } | 332 } |
| 333 | 333 |
| 334 checkAttachedDisk(api.AttachedDisk o) { | 334 checkAttachedDisk(api.AttachedDisk o) { |
| 335 buildCounterAttachedDisk++; | 335 buildCounterAttachedDisk++; |
| 336 if (buildCounterAttachedDisk < 3) { | 336 if (buildCounterAttachedDisk < 3) { |
| 337 unittest.expect(o.autoDelete, unittest.isTrue); | 337 unittest.expect(o.autoDelete, unittest.isTrue); |
| 338 unittest.expect(o.boot, unittest.isTrue); | 338 unittest.expect(o.boot, unittest.isTrue); |
| 339 unittest.expect(o.deviceName, unittest.equals('foo')); | 339 unittest.expect(o.deviceName, unittest.equals('foo')); |
| 340 unittest.expect(o.index, unittest.equals(42)); | 340 unittest.expect(o.index, unittest.equals(42)); |
| 341 checkAttachedDiskInitializeParams(o.initializeParams); | 341 checkAttachedDiskInitializeParams(o.initializeParams); |
| 342 unittest.expect(o.interface, unittest.equals('foo')); | 342 unittest.expect(o.interface, unittest.equals('foo')); |
| 343 unittest.expect(o.kind, unittest.equals('foo')); | 343 unittest.expect(o.kind, unittest.equals('foo')); |
| 344 checkUnnamed2044(o.licenses); | 344 checkUnnamed2361(o.licenses); |
| 345 unittest.expect(o.mode, unittest.equals('foo')); | 345 unittest.expect(o.mode, unittest.equals('foo')); |
| 346 unittest.expect(o.source, unittest.equals('foo')); | 346 unittest.expect(o.source, unittest.equals('foo')); |
| 347 unittest.expect(o.type, unittest.equals('foo')); | 347 unittest.expect(o.type, unittest.equals('foo')); |
| 348 } | 348 } |
| 349 buildCounterAttachedDisk--; | 349 buildCounterAttachedDisk--; |
| 350 } | 350 } |
| 351 | 351 |
| 352 core.int buildCounterAttachedDiskInitializeParams = 0; | 352 core.int buildCounterAttachedDiskInitializeParams = 0; |
| 353 buildAttachedDiskInitializeParams() { | 353 buildAttachedDiskInitializeParams() { |
| 354 var o = new api.AttachedDiskInitializeParams(); | 354 var o = new api.AttachedDiskInitializeParams(); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 unittest.expect(o.id, unittest.equals('foo')); | 402 unittest.expect(o.id, unittest.equals('foo')); |
| 403 unittest.expect(o.kind, unittest.equals('foo')); | 403 unittest.expect(o.kind, unittest.equals('foo')); |
| 404 unittest.expect(o.name, unittest.equals('foo')); | 404 unittest.expect(o.name, unittest.equals('foo')); |
| 405 unittest.expect(o.selfLink, unittest.equals('foo')); | 405 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 406 unittest.expect(o.target, unittest.equals('foo')); | 406 unittest.expect(o.target, unittest.equals('foo')); |
| 407 unittest.expect(o.zone, unittest.equals('foo')); | 407 unittest.expect(o.zone, unittest.equals('foo')); |
| 408 } | 408 } |
| 409 buildCounterAutoscaler--; | 409 buildCounterAutoscaler--; |
| 410 } | 410 } |
| 411 | 411 |
| 412 buildUnnamed2045() { | 412 buildUnnamed2362() { |
| 413 var o = new core.Map<core.String, api.AutoscalersScopedList>(); | 413 var o = new core.Map<core.String, api.AutoscalersScopedList>(); |
| 414 o["x"] = buildAutoscalersScopedList(); | 414 o["x"] = buildAutoscalersScopedList(); |
| 415 o["y"] = buildAutoscalersScopedList(); | 415 o["y"] = buildAutoscalersScopedList(); |
| 416 return o; | 416 return o; |
| 417 } | 417 } |
| 418 | 418 |
| 419 checkUnnamed2045(core.Map<core.String, api.AutoscalersScopedList> o) { | 419 checkUnnamed2362(core.Map<core.String, api.AutoscalersScopedList> o) { |
| 420 unittest.expect(o, unittest.hasLength(2)); | 420 unittest.expect(o, unittest.hasLength(2)); |
| 421 checkAutoscalersScopedList(o["x"]); | 421 checkAutoscalersScopedList(o["x"]); |
| 422 checkAutoscalersScopedList(o["y"]); | 422 checkAutoscalersScopedList(o["y"]); |
| 423 } | 423 } |
| 424 | 424 |
| 425 core.int buildCounterAutoscalerAggregatedList = 0; | 425 core.int buildCounterAutoscalerAggregatedList = 0; |
| 426 buildAutoscalerAggregatedList() { | 426 buildAutoscalerAggregatedList() { |
| 427 var o = new api.AutoscalerAggregatedList(); | 427 var o = new api.AutoscalerAggregatedList(); |
| 428 buildCounterAutoscalerAggregatedList++; | 428 buildCounterAutoscalerAggregatedList++; |
| 429 if (buildCounterAutoscalerAggregatedList < 3) { | 429 if (buildCounterAutoscalerAggregatedList < 3) { |
| 430 o.id = "foo"; | 430 o.id = "foo"; |
| 431 o.items = buildUnnamed2045(); | 431 o.items = buildUnnamed2362(); |
| 432 o.kind = "foo"; | 432 o.kind = "foo"; |
| 433 o.nextPageToken = "foo"; | 433 o.nextPageToken = "foo"; |
| 434 o.selfLink = "foo"; | 434 o.selfLink = "foo"; |
| 435 } | 435 } |
| 436 buildCounterAutoscalerAggregatedList--; | 436 buildCounterAutoscalerAggregatedList--; |
| 437 return o; | 437 return o; |
| 438 } | 438 } |
| 439 | 439 |
| 440 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { | 440 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { |
| 441 buildCounterAutoscalerAggregatedList++; | 441 buildCounterAutoscalerAggregatedList++; |
| 442 if (buildCounterAutoscalerAggregatedList < 3) { | 442 if (buildCounterAutoscalerAggregatedList < 3) { |
| 443 unittest.expect(o.id, unittest.equals('foo')); | 443 unittest.expect(o.id, unittest.equals('foo')); |
| 444 checkUnnamed2045(o.items); | 444 checkUnnamed2362(o.items); |
| 445 unittest.expect(o.kind, unittest.equals('foo')); | 445 unittest.expect(o.kind, unittest.equals('foo')); |
| 446 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 446 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 447 unittest.expect(o.selfLink, unittest.equals('foo')); | 447 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 448 } | 448 } |
| 449 buildCounterAutoscalerAggregatedList--; | 449 buildCounterAutoscalerAggregatedList--; |
| 450 } | 450 } |
| 451 | 451 |
| 452 buildUnnamed2046() { | 452 buildUnnamed2363() { |
| 453 var o = new core.List<api.Autoscaler>(); | 453 var o = new core.List<api.Autoscaler>(); |
| 454 o.add(buildAutoscaler()); | 454 o.add(buildAutoscaler()); |
| 455 o.add(buildAutoscaler()); | 455 o.add(buildAutoscaler()); |
| 456 return o; | 456 return o; |
| 457 } | 457 } |
| 458 | 458 |
| 459 checkUnnamed2046(core.List<api.Autoscaler> o) { | 459 checkUnnamed2363(core.List<api.Autoscaler> o) { |
| 460 unittest.expect(o, unittest.hasLength(2)); | 460 unittest.expect(o, unittest.hasLength(2)); |
| 461 checkAutoscaler(o[0]); | 461 checkAutoscaler(o[0]); |
| 462 checkAutoscaler(o[1]); | 462 checkAutoscaler(o[1]); |
| 463 } | 463 } |
| 464 | 464 |
| 465 core.int buildCounterAutoscalerList = 0; | 465 core.int buildCounterAutoscalerList = 0; |
| 466 buildAutoscalerList() { | 466 buildAutoscalerList() { |
| 467 var o = new api.AutoscalerList(); | 467 var o = new api.AutoscalerList(); |
| 468 buildCounterAutoscalerList++; | 468 buildCounterAutoscalerList++; |
| 469 if (buildCounterAutoscalerList < 3) { | 469 if (buildCounterAutoscalerList < 3) { |
| 470 o.id = "foo"; | 470 o.id = "foo"; |
| 471 o.items = buildUnnamed2046(); | 471 o.items = buildUnnamed2363(); |
| 472 o.kind = "foo"; | 472 o.kind = "foo"; |
| 473 o.nextPageToken = "foo"; | 473 o.nextPageToken = "foo"; |
| 474 o.selfLink = "foo"; | 474 o.selfLink = "foo"; |
| 475 } | 475 } |
| 476 buildCounterAutoscalerList--; | 476 buildCounterAutoscalerList--; |
| 477 return o; | 477 return o; |
| 478 } | 478 } |
| 479 | 479 |
| 480 checkAutoscalerList(api.AutoscalerList o) { | 480 checkAutoscalerList(api.AutoscalerList o) { |
| 481 buildCounterAutoscalerList++; | 481 buildCounterAutoscalerList++; |
| 482 if (buildCounterAutoscalerList < 3) { | 482 if (buildCounterAutoscalerList < 3) { |
| 483 unittest.expect(o.id, unittest.equals('foo')); | 483 unittest.expect(o.id, unittest.equals('foo')); |
| 484 checkUnnamed2046(o.items); | 484 checkUnnamed2363(o.items); |
| 485 unittest.expect(o.kind, unittest.equals('foo')); | 485 unittest.expect(o.kind, unittest.equals('foo')); |
| 486 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 486 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 487 unittest.expect(o.selfLink, unittest.equals('foo')); | 487 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 488 } | 488 } |
| 489 buildCounterAutoscalerList--; | 489 buildCounterAutoscalerList--; |
| 490 } | 490 } |
| 491 | 491 |
| 492 buildUnnamed2047() { | 492 buildUnnamed2364() { |
| 493 var o = new core.List<api.Autoscaler>(); | 493 var o = new core.List<api.Autoscaler>(); |
| 494 o.add(buildAutoscaler()); | 494 o.add(buildAutoscaler()); |
| 495 o.add(buildAutoscaler()); | 495 o.add(buildAutoscaler()); |
| 496 return o; | 496 return o; |
| 497 } | 497 } |
| 498 | 498 |
| 499 checkUnnamed2047(core.List<api.Autoscaler> o) { | 499 checkUnnamed2364(core.List<api.Autoscaler> o) { |
| 500 unittest.expect(o, unittest.hasLength(2)); | 500 unittest.expect(o, unittest.hasLength(2)); |
| 501 checkAutoscaler(o[0]); | 501 checkAutoscaler(o[0]); |
| 502 checkAutoscaler(o[1]); | 502 checkAutoscaler(o[1]); |
| 503 } | 503 } |
| 504 | 504 |
| 505 core.int buildCounterAutoscalersScopedListWarningData = 0; | 505 core.int buildCounterAutoscalersScopedListWarningData = 0; |
| 506 buildAutoscalersScopedListWarningData() { | 506 buildAutoscalersScopedListWarningData() { |
| 507 var o = new api.AutoscalersScopedListWarningData(); | 507 var o = new api.AutoscalersScopedListWarningData(); |
| 508 buildCounterAutoscalersScopedListWarningData++; | 508 buildCounterAutoscalersScopedListWarningData++; |
| 509 if (buildCounterAutoscalersScopedListWarningData < 3) { | 509 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 510 o.key = "foo"; | 510 o.key = "foo"; |
| 511 o.value = "foo"; | 511 o.value = "foo"; |
| 512 } | 512 } |
| 513 buildCounterAutoscalersScopedListWarningData--; | 513 buildCounterAutoscalersScopedListWarningData--; |
| 514 return o; | 514 return o; |
| 515 } | 515 } |
| 516 | 516 |
| 517 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { | 517 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { |
| 518 buildCounterAutoscalersScopedListWarningData++; | 518 buildCounterAutoscalersScopedListWarningData++; |
| 519 if (buildCounterAutoscalersScopedListWarningData < 3) { | 519 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 520 unittest.expect(o.key, unittest.equals('foo')); | 520 unittest.expect(o.key, unittest.equals('foo')); |
| 521 unittest.expect(o.value, unittest.equals('foo')); | 521 unittest.expect(o.value, unittest.equals('foo')); |
| 522 } | 522 } |
| 523 buildCounterAutoscalersScopedListWarningData--; | 523 buildCounterAutoscalersScopedListWarningData--; |
| 524 } | 524 } |
| 525 | 525 |
| 526 buildUnnamed2048() { | 526 buildUnnamed2365() { |
| 527 var o = new core.List<api.AutoscalersScopedListWarningData>(); | 527 var o = new core.List<api.AutoscalersScopedListWarningData>(); |
| 528 o.add(buildAutoscalersScopedListWarningData()); | 528 o.add(buildAutoscalersScopedListWarningData()); |
| 529 o.add(buildAutoscalersScopedListWarningData()); | 529 o.add(buildAutoscalersScopedListWarningData()); |
| 530 return o; | 530 return o; |
| 531 } | 531 } |
| 532 | 532 |
| 533 checkUnnamed2048(core.List<api.AutoscalersScopedListWarningData> o) { | 533 checkUnnamed2365(core.List<api.AutoscalersScopedListWarningData> o) { |
| 534 unittest.expect(o, unittest.hasLength(2)); | 534 unittest.expect(o, unittest.hasLength(2)); |
| 535 checkAutoscalersScopedListWarningData(o[0]); | 535 checkAutoscalersScopedListWarningData(o[0]); |
| 536 checkAutoscalersScopedListWarningData(o[1]); | 536 checkAutoscalersScopedListWarningData(o[1]); |
| 537 } | 537 } |
| 538 | 538 |
| 539 core.int buildCounterAutoscalersScopedListWarning = 0; | 539 core.int buildCounterAutoscalersScopedListWarning = 0; |
| 540 buildAutoscalersScopedListWarning() { | 540 buildAutoscalersScopedListWarning() { |
| 541 var o = new api.AutoscalersScopedListWarning(); | 541 var o = new api.AutoscalersScopedListWarning(); |
| 542 buildCounterAutoscalersScopedListWarning++; | 542 buildCounterAutoscalersScopedListWarning++; |
| 543 if (buildCounterAutoscalersScopedListWarning < 3) { | 543 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 544 o.code = "foo"; | 544 o.code = "foo"; |
| 545 o.data = buildUnnamed2048(); | 545 o.data = buildUnnamed2365(); |
| 546 o.message = "foo"; | 546 o.message = "foo"; |
| 547 } | 547 } |
| 548 buildCounterAutoscalersScopedListWarning--; | 548 buildCounterAutoscalersScopedListWarning--; |
| 549 return o; | 549 return o; |
| 550 } | 550 } |
| 551 | 551 |
| 552 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { | 552 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { |
| 553 buildCounterAutoscalersScopedListWarning++; | 553 buildCounterAutoscalersScopedListWarning++; |
| 554 if (buildCounterAutoscalersScopedListWarning < 3) { | 554 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 555 unittest.expect(o.code, unittest.equals('foo')); | 555 unittest.expect(o.code, unittest.equals('foo')); |
| 556 checkUnnamed2048(o.data); | 556 checkUnnamed2365(o.data); |
| 557 unittest.expect(o.message, unittest.equals('foo')); | 557 unittest.expect(o.message, unittest.equals('foo')); |
| 558 } | 558 } |
| 559 buildCounterAutoscalersScopedListWarning--; | 559 buildCounterAutoscalersScopedListWarning--; |
| 560 } | 560 } |
| 561 | 561 |
| 562 core.int buildCounterAutoscalersScopedList = 0; | 562 core.int buildCounterAutoscalersScopedList = 0; |
| 563 buildAutoscalersScopedList() { | 563 buildAutoscalersScopedList() { |
| 564 var o = new api.AutoscalersScopedList(); | 564 var o = new api.AutoscalersScopedList(); |
| 565 buildCounterAutoscalersScopedList++; | 565 buildCounterAutoscalersScopedList++; |
| 566 if (buildCounterAutoscalersScopedList < 3) { | 566 if (buildCounterAutoscalersScopedList < 3) { |
| 567 o.autoscalers = buildUnnamed2047(); | 567 o.autoscalers = buildUnnamed2364(); |
| 568 o.warning = buildAutoscalersScopedListWarning(); | 568 o.warning = buildAutoscalersScopedListWarning(); |
| 569 } | 569 } |
| 570 buildCounterAutoscalersScopedList--; | 570 buildCounterAutoscalersScopedList--; |
| 571 return o; | 571 return o; |
| 572 } | 572 } |
| 573 | 573 |
| 574 checkAutoscalersScopedList(api.AutoscalersScopedList o) { | 574 checkAutoscalersScopedList(api.AutoscalersScopedList o) { |
| 575 buildCounterAutoscalersScopedList++; | 575 buildCounterAutoscalersScopedList++; |
| 576 if (buildCounterAutoscalersScopedList < 3) { | 576 if (buildCounterAutoscalersScopedList < 3) { |
| 577 checkUnnamed2047(o.autoscalers); | 577 checkUnnamed2364(o.autoscalers); |
| 578 checkAutoscalersScopedListWarning(o.warning); | 578 checkAutoscalersScopedListWarning(o.warning); |
| 579 } | 579 } |
| 580 buildCounterAutoscalersScopedList--; | 580 buildCounterAutoscalersScopedList--; |
| 581 } | 581 } |
| 582 | 582 |
| 583 buildUnnamed2049() { | 583 buildUnnamed2366() { |
| 584 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); | 584 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); |
| 585 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 585 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 586 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 586 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 587 return o; | 587 return o; |
| 588 } | 588 } |
| 589 | 589 |
| 590 checkUnnamed2049(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 590 checkUnnamed2366(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { |
| 591 unittest.expect(o, unittest.hasLength(2)); | 591 unittest.expect(o, unittest.hasLength(2)); |
| 592 checkAutoscalingPolicyCustomMetricUtilization(o[0]); | 592 checkAutoscalingPolicyCustomMetricUtilization(o[0]); |
| 593 checkAutoscalingPolicyCustomMetricUtilization(o[1]); | 593 checkAutoscalingPolicyCustomMetricUtilization(o[1]); |
| 594 } | 594 } |
| 595 | 595 |
| 596 core.int buildCounterAutoscalingPolicy = 0; | 596 core.int buildCounterAutoscalingPolicy = 0; |
| 597 buildAutoscalingPolicy() { | 597 buildAutoscalingPolicy() { |
| 598 var o = new api.AutoscalingPolicy(); | 598 var o = new api.AutoscalingPolicy(); |
| 599 buildCounterAutoscalingPolicy++; | 599 buildCounterAutoscalingPolicy++; |
| 600 if (buildCounterAutoscalingPolicy < 3) { | 600 if (buildCounterAutoscalingPolicy < 3) { |
| 601 o.coolDownPeriodSec = 42; | 601 o.coolDownPeriodSec = 42; |
| 602 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); | 602 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); |
| 603 o.customMetricUtilizations = buildUnnamed2049(); | 603 o.customMetricUtilizations = buildUnnamed2366(); |
| 604 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); | 604 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); |
| 605 o.maxNumReplicas = 42; | 605 o.maxNumReplicas = 42; |
| 606 o.minNumReplicas = 42; | 606 o.minNumReplicas = 42; |
| 607 } | 607 } |
| 608 buildCounterAutoscalingPolicy--; | 608 buildCounterAutoscalingPolicy--; |
| 609 return o; | 609 return o; |
| 610 } | 610 } |
| 611 | 611 |
| 612 checkAutoscalingPolicy(api.AutoscalingPolicy o) { | 612 checkAutoscalingPolicy(api.AutoscalingPolicy o) { |
| 613 buildCounterAutoscalingPolicy++; | 613 buildCounterAutoscalingPolicy++; |
| 614 if (buildCounterAutoscalingPolicy < 3) { | 614 if (buildCounterAutoscalingPolicy < 3) { |
| 615 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); | 615 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); |
| 616 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); | 616 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); |
| 617 checkUnnamed2049(o.customMetricUtilizations); | 617 checkUnnamed2366(o.customMetricUtilizations); |
| 618 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); | 618 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); |
| 619 unittest.expect(o.maxNumReplicas, unittest.equals(42)); | 619 unittest.expect(o.maxNumReplicas, unittest.equals(42)); |
| 620 unittest.expect(o.minNumReplicas, unittest.equals(42)); | 620 unittest.expect(o.minNumReplicas, unittest.equals(42)); |
| 621 } | 621 } |
| 622 buildCounterAutoscalingPolicy--; | 622 buildCounterAutoscalingPolicy--; |
| 623 } | 623 } |
| 624 | 624 |
| 625 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; | 625 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; |
| 626 buildAutoscalingPolicyCpuUtilization() { | 626 buildAutoscalingPolicyCpuUtilization() { |
| 627 var o = new api.AutoscalingPolicyCpuUtilization(); | 627 var o = new api.AutoscalingPolicyCpuUtilization(); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 unittest.expect(o.capacityScaler, unittest.equals(42.0)); | 707 unittest.expect(o.capacityScaler, unittest.equals(42.0)); |
| 708 unittest.expect(o.description, unittest.equals('foo')); | 708 unittest.expect(o.description, unittest.equals('foo')); |
| 709 unittest.expect(o.group, unittest.equals('foo')); | 709 unittest.expect(o.group, unittest.equals('foo')); |
| 710 unittest.expect(o.maxRate, unittest.equals(42)); | 710 unittest.expect(o.maxRate, unittest.equals(42)); |
| 711 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); | 711 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); |
| 712 unittest.expect(o.maxUtilization, unittest.equals(42.0)); | 712 unittest.expect(o.maxUtilization, unittest.equals(42.0)); |
| 713 } | 713 } |
| 714 buildCounterBackend--; | 714 buildCounterBackend--; |
| 715 } | 715 } |
| 716 | 716 |
| 717 buildUnnamed2050() { | 717 buildUnnamed2367() { |
| 718 var o = new core.List<api.Backend>(); | 718 var o = new core.List<api.Backend>(); |
| 719 o.add(buildBackend()); | 719 o.add(buildBackend()); |
| 720 o.add(buildBackend()); | 720 o.add(buildBackend()); |
| 721 return o; | 721 return o; |
| 722 } | 722 } |
| 723 | 723 |
| 724 checkUnnamed2050(core.List<api.Backend> o) { | 724 checkUnnamed2367(core.List<api.Backend> o) { |
| 725 unittest.expect(o, unittest.hasLength(2)); | 725 unittest.expect(o, unittest.hasLength(2)); |
| 726 checkBackend(o[0]); | 726 checkBackend(o[0]); |
| 727 checkBackend(o[1]); | 727 checkBackend(o[1]); |
| 728 } | 728 } |
| 729 | 729 |
| 730 buildUnnamed2051() { | 730 buildUnnamed2368() { |
| 731 var o = new core.List<core.String>(); | 731 var o = new core.List<core.String>(); |
| 732 o.add("foo"); | 732 o.add("foo"); |
| 733 o.add("foo"); | 733 o.add("foo"); |
| 734 return o; | 734 return o; |
| 735 } | 735 } |
| 736 | 736 |
| 737 checkUnnamed2051(core.List<core.String> o) { | 737 checkUnnamed2368(core.List<core.String> o) { |
| 738 unittest.expect(o, unittest.hasLength(2)); | 738 unittest.expect(o, unittest.hasLength(2)); |
| 739 unittest.expect(o[0], unittest.equals('foo')); | 739 unittest.expect(o[0], unittest.equals('foo')); |
| 740 unittest.expect(o[1], unittest.equals('foo')); | 740 unittest.expect(o[1], unittest.equals('foo')); |
| 741 } | 741 } |
| 742 | 742 |
| 743 core.int buildCounterBackendService = 0; | 743 core.int buildCounterBackendService = 0; |
| 744 buildBackendService() { | 744 buildBackendService() { |
| 745 var o = new api.BackendService(); | 745 var o = new api.BackendService(); |
| 746 buildCounterBackendService++; | 746 buildCounterBackendService++; |
| 747 if (buildCounterBackendService < 3) { | 747 if (buildCounterBackendService < 3) { |
| 748 o.backends = buildUnnamed2050(); | 748 o.backends = buildUnnamed2367(); |
| 749 o.creationTimestamp = "foo"; | 749 o.creationTimestamp = "foo"; |
| 750 o.description = "foo"; | 750 o.description = "foo"; |
| 751 o.fingerprint = "foo"; | 751 o.fingerprint = "foo"; |
| 752 o.healthChecks = buildUnnamed2051(); | 752 o.healthChecks = buildUnnamed2368(); |
| 753 o.id = "foo"; | 753 o.id = "foo"; |
| 754 o.kind = "foo"; | 754 o.kind = "foo"; |
| 755 o.name = "foo"; | 755 o.name = "foo"; |
| 756 o.port = 42; | 756 o.port = 42; |
| 757 o.portName = "foo"; | 757 o.portName = "foo"; |
| 758 o.protocol = "foo"; | 758 o.protocol = "foo"; |
| 759 o.selfLink = "foo"; | 759 o.selfLink = "foo"; |
| 760 o.timeoutSec = 42; | 760 o.timeoutSec = 42; |
| 761 } | 761 } |
| 762 buildCounterBackendService--; | 762 buildCounterBackendService--; |
| 763 return o; | 763 return o; |
| 764 } | 764 } |
| 765 | 765 |
| 766 checkBackendService(api.BackendService o) { | 766 checkBackendService(api.BackendService o) { |
| 767 buildCounterBackendService++; | 767 buildCounterBackendService++; |
| 768 if (buildCounterBackendService < 3) { | 768 if (buildCounterBackendService < 3) { |
| 769 checkUnnamed2050(o.backends); | 769 checkUnnamed2367(o.backends); |
| 770 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 770 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 771 unittest.expect(o.description, unittest.equals('foo')); | 771 unittest.expect(o.description, unittest.equals('foo')); |
| 772 unittest.expect(o.fingerprint, unittest.equals('foo')); | 772 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 773 checkUnnamed2051(o.healthChecks); | 773 checkUnnamed2368(o.healthChecks); |
| 774 unittest.expect(o.id, unittest.equals('foo')); | 774 unittest.expect(o.id, unittest.equals('foo')); |
| 775 unittest.expect(o.kind, unittest.equals('foo')); | 775 unittest.expect(o.kind, unittest.equals('foo')); |
| 776 unittest.expect(o.name, unittest.equals('foo')); | 776 unittest.expect(o.name, unittest.equals('foo')); |
| 777 unittest.expect(o.port, unittest.equals(42)); | 777 unittest.expect(o.port, unittest.equals(42)); |
| 778 unittest.expect(o.portName, unittest.equals('foo')); | 778 unittest.expect(o.portName, unittest.equals('foo')); |
| 779 unittest.expect(o.protocol, unittest.equals('foo')); | 779 unittest.expect(o.protocol, unittest.equals('foo')); |
| 780 unittest.expect(o.selfLink, unittest.equals('foo')); | 780 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 781 unittest.expect(o.timeoutSec, unittest.equals(42)); | 781 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 782 } | 782 } |
| 783 buildCounterBackendService--; | 783 buildCounterBackendService--; |
| 784 } | 784 } |
| 785 | 785 |
| 786 buildUnnamed2052() { | 786 buildUnnamed2369() { |
| 787 var o = new core.List<api.HealthStatus>(); | 787 var o = new core.List<api.HealthStatus>(); |
| 788 o.add(buildHealthStatus()); | 788 o.add(buildHealthStatus()); |
| 789 o.add(buildHealthStatus()); | 789 o.add(buildHealthStatus()); |
| 790 return o; | 790 return o; |
| 791 } | 791 } |
| 792 | 792 |
| 793 checkUnnamed2052(core.List<api.HealthStatus> o) { | 793 checkUnnamed2369(core.List<api.HealthStatus> o) { |
| 794 unittest.expect(o, unittest.hasLength(2)); | 794 unittest.expect(o, unittest.hasLength(2)); |
| 795 checkHealthStatus(o[0]); | 795 checkHealthStatus(o[0]); |
| 796 checkHealthStatus(o[1]); | 796 checkHealthStatus(o[1]); |
| 797 } | 797 } |
| 798 | 798 |
| 799 core.int buildCounterBackendServiceGroupHealth = 0; | 799 core.int buildCounterBackendServiceGroupHealth = 0; |
| 800 buildBackendServiceGroupHealth() { | 800 buildBackendServiceGroupHealth() { |
| 801 var o = new api.BackendServiceGroupHealth(); | 801 var o = new api.BackendServiceGroupHealth(); |
| 802 buildCounterBackendServiceGroupHealth++; | 802 buildCounterBackendServiceGroupHealth++; |
| 803 if (buildCounterBackendServiceGroupHealth < 3) { | 803 if (buildCounterBackendServiceGroupHealth < 3) { |
| 804 o.healthStatus = buildUnnamed2052(); | 804 o.healthStatus = buildUnnamed2369(); |
| 805 o.kind = "foo"; | 805 o.kind = "foo"; |
| 806 } | 806 } |
| 807 buildCounterBackendServiceGroupHealth--; | 807 buildCounterBackendServiceGroupHealth--; |
| 808 return o; | 808 return o; |
| 809 } | 809 } |
| 810 | 810 |
| 811 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 811 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 812 buildCounterBackendServiceGroupHealth++; | 812 buildCounterBackendServiceGroupHealth++; |
| 813 if (buildCounterBackendServiceGroupHealth < 3) { | 813 if (buildCounterBackendServiceGroupHealth < 3) { |
| 814 checkUnnamed2052(o.healthStatus); | 814 checkUnnamed2369(o.healthStatus); |
| 815 unittest.expect(o.kind, unittest.equals('foo')); | 815 unittest.expect(o.kind, unittest.equals('foo')); |
| 816 } | 816 } |
| 817 buildCounterBackendServiceGroupHealth--; | 817 buildCounterBackendServiceGroupHealth--; |
| 818 } | 818 } |
| 819 | 819 |
| 820 buildUnnamed2053() { | 820 buildUnnamed2370() { |
| 821 var o = new core.List<api.BackendService>(); | 821 var o = new core.List<api.BackendService>(); |
| 822 o.add(buildBackendService()); | 822 o.add(buildBackendService()); |
| 823 o.add(buildBackendService()); | 823 o.add(buildBackendService()); |
| 824 return o; | 824 return o; |
| 825 } | 825 } |
| 826 | 826 |
| 827 checkUnnamed2053(core.List<api.BackendService> o) { | 827 checkUnnamed2370(core.List<api.BackendService> o) { |
| 828 unittest.expect(o, unittest.hasLength(2)); | 828 unittest.expect(o, unittest.hasLength(2)); |
| 829 checkBackendService(o[0]); | 829 checkBackendService(o[0]); |
| 830 checkBackendService(o[1]); | 830 checkBackendService(o[1]); |
| 831 } | 831 } |
| 832 | 832 |
| 833 core.int buildCounterBackendServiceList = 0; | 833 core.int buildCounterBackendServiceList = 0; |
| 834 buildBackendServiceList() { | 834 buildBackendServiceList() { |
| 835 var o = new api.BackendServiceList(); | 835 var o = new api.BackendServiceList(); |
| 836 buildCounterBackendServiceList++; | 836 buildCounterBackendServiceList++; |
| 837 if (buildCounterBackendServiceList < 3) { | 837 if (buildCounterBackendServiceList < 3) { |
| 838 o.id = "foo"; | 838 o.id = "foo"; |
| 839 o.items = buildUnnamed2053(); | 839 o.items = buildUnnamed2370(); |
| 840 o.kind = "foo"; | 840 o.kind = "foo"; |
| 841 o.nextPageToken = "foo"; | 841 o.nextPageToken = "foo"; |
| 842 o.selfLink = "foo"; | 842 o.selfLink = "foo"; |
| 843 } | 843 } |
| 844 buildCounterBackendServiceList--; | 844 buildCounterBackendServiceList--; |
| 845 return o; | 845 return o; |
| 846 } | 846 } |
| 847 | 847 |
| 848 checkBackendServiceList(api.BackendServiceList o) { | 848 checkBackendServiceList(api.BackendServiceList o) { |
| 849 buildCounterBackendServiceList++; | 849 buildCounterBackendServiceList++; |
| 850 if (buildCounterBackendServiceList < 3) { | 850 if (buildCounterBackendServiceList < 3) { |
| 851 unittest.expect(o.id, unittest.equals('foo')); | 851 unittest.expect(o.id, unittest.equals('foo')); |
| 852 checkUnnamed2053(o.items); | 852 checkUnnamed2370(o.items); |
| 853 unittest.expect(o.kind, unittest.equals('foo')); | 853 unittest.expect(o.kind, unittest.equals('foo')); |
| 854 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 854 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 855 unittest.expect(o.selfLink, unittest.equals('foo')); | 855 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 856 } | 856 } |
| 857 buildCounterBackendServiceList--; | 857 buildCounterBackendServiceList--; |
| 858 } | 858 } |
| 859 | 859 |
| 860 core.int buildCounterDeprecationStatus = 0; | 860 core.int buildCounterDeprecationStatus = 0; |
| 861 buildDeprecationStatus() { | 861 buildDeprecationStatus() { |
| 862 var o = new api.DeprecationStatus(); | 862 var o = new api.DeprecationStatus(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 877 if (buildCounterDeprecationStatus < 3) { | 877 if (buildCounterDeprecationStatus < 3) { |
| 878 unittest.expect(o.deleted, unittest.equals('foo')); | 878 unittest.expect(o.deleted, unittest.equals('foo')); |
| 879 unittest.expect(o.deprecated, unittest.equals('foo')); | 879 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 880 unittest.expect(o.obsolete, unittest.equals('foo')); | 880 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 881 unittest.expect(o.replacement, unittest.equals('foo')); | 881 unittest.expect(o.replacement, unittest.equals('foo')); |
| 882 unittest.expect(o.state, unittest.equals('foo')); | 882 unittest.expect(o.state, unittest.equals('foo')); |
| 883 } | 883 } |
| 884 buildCounterDeprecationStatus--; | 884 buildCounterDeprecationStatus--; |
| 885 } | 885 } |
| 886 | 886 |
| 887 buildUnnamed2054() { | 887 buildUnnamed2371() { |
| 888 var o = new core.List<core.String>(); | 888 var o = new core.List<core.String>(); |
| 889 o.add("foo"); | 889 o.add("foo"); |
| 890 o.add("foo"); | 890 o.add("foo"); |
| 891 return o; | 891 return o; |
| 892 } | 892 } |
| 893 | 893 |
| 894 checkUnnamed2054(core.List<core.String> o) { | 894 checkUnnamed2371(core.List<core.String> o) { |
| 895 unittest.expect(o, unittest.hasLength(2)); | 895 unittest.expect(o, unittest.hasLength(2)); |
| 896 unittest.expect(o[0], unittest.equals('foo')); | 896 unittest.expect(o[0], unittest.equals('foo')); |
| 897 unittest.expect(o[1], unittest.equals('foo')); | 897 unittest.expect(o[1], unittest.equals('foo')); |
| 898 } | 898 } |
| 899 | 899 |
| 900 buildUnnamed2055() { | 900 buildUnnamed2372() { |
| 901 var o = new core.List<core.String>(); | 901 var o = new core.List<core.String>(); |
| 902 o.add("foo"); | 902 o.add("foo"); |
| 903 o.add("foo"); | 903 o.add("foo"); |
| 904 return o; | 904 return o; |
| 905 } | 905 } |
| 906 | 906 |
| 907 checkUnnamed2055(core.List<core.String> o) { | 907 checkUnnamed2372(core.List<core.String> o) { |
| 908 unittest.expect(o, unittest.hasLength(2)); | 908 unittest.expect(o, unittest.hasLength(2)); |
| 909 unittest.expect(o[0], unittest.equals('foo')); | 909 unittest.expect(o[0], unittest.equals('foo')); |
| 910 unittest.expect(o[1], unittest.equals('foo')); | 910 unittest.expect(o[1], unittest.equals('foo')); |
| 911 } | 911 } |
| 912 | 912 |
| 913 core.int buildCounterDisk = 0; | 913 core.int buildCounterDisk = 0; |
| 914 buildDisk() { | 914 buildDisk() { |
| 915 var o = new api.Disk(); | 915 var o = new api.Disk(); |
| 916 buildCounterDisk++; | 916 buildCounterDisk++; |
| 917 if (buildCounterDisk < 3) { | 917 if (buildCounterDisk < 3) { |
| 918 o.creationTimestamp = "foo"; | 918 o.creationTimestamp = "foo"; |
| 919 o.description = "foo"; | 919 o.description = "foo"; |
| 920 o.id = "foo"; | 920 o.id = "foo"; |
| 921 o.kind = "foo"; | 921 o.kind = "foo"; |
| 922 o.lastAttachTimestamp = "foo"; | 922 o.lastAttachTimestamp = "foo"; |
| 923 o.lastDetachTimestamp = "foo"; | 923 o.lastDetachTimestamp = "foo"; |
| 924 o.licenses = buildUnnamed2054(); | 924 o.licenses = buildUnnamed2371(); |
| 925 o.name = "foo"; | 925 o.name = "foo"; |
| 926 o.options = "foo"; | 926 o.options = "foo"; |
| 927 o.selfLink = "foo"; | 927 o.selfLink = "foo"; |
| 928 o.sizeGb = "foo"; | 928 o.sizeGb = "foo"; |
| 929 o.sourceImage = "foo"; | 929 o.sourceImage = "foo"; |
| 930 o.sourceImageId = "foo"; | 930 o.sourceImageId = "foo"; |
| 931 o.sourceSnapshot = "foo"; | 931 o.sourceSnapshot = "foo"; |
| 932 o.sourceSnapshotId = "foo"; | 932 o.sourceSnapshotId = "foo"; |
| 933 o.status = "foo"; | 933 o.status = "foo"; |
| 934 o.type = "foo"; | 934 o.type = "foo"; |
| 935 o.users = buildUnnamed2055(); | 935 o.users = buildUnnamed2372(); |
| 936 o.zone = "foo"; | 936 o.zone = "foo"; |
| 937 } | 937 } |
| 938 buildCounterDisk--; | 938 buildCounterDisk--; |
| 939 return o; | 939 return o; |
| 940 } | 940 } |
| 941 | 941 |
| 942 checkDisk(api.Disk o) { | 942 checkDisk(api.Disk o) { |
| 943 buildCounterDisk++; | 943 buildCounterDisk++; |
| 944 if (buildCounterDisk < 3) { | 944 if (buildCounterDisk < 3) { |
| 945 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 945 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 946 unittest.expect(o.description, unittest.equals('foo')); | 946 unittest.expect(o.description, unittest.equals('foo')); |
| 947 unittest.expect(o.id, unittest.equals('foo')); | 947 unittest.expect(o.id, unittest.equals('foo')); |
| 948 unittest.expect(o.kind, unittest.equals('foo')); | 948 unittest.expect(o.kind, unittest.equals('foo')); |
| 949 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); | 949 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); |
| 950 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); | 950 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); |
| 951 checkUnnamed2054(o.licenses); | 951 checkUnnamed2371(o.licenses); |
| 952 unittest.expect(o.name, unittest.equals('foo')); | 952 unittest.expect(o.name, unittest.equals('foo')); |
| 953 unittest.expect(o.options, unittest.equals('foo')); | 953 unittest.expect(o.options, unittest.equals('foo')); |
| 954 unittest.expect(o.selfLink, unittest.equals('foo')); | 954 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 955 unittest.expect(o.sizeGb, unittest.equals('foo')); | 955 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 956 unittest.expect(o.sourceImage, unittest.equals('foo')); | 956 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 957 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 957 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 958 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 958 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 959 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 959 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 960 unittest.expect(o.status, unittest.equals('foo')); | 960 unittest.expect(o.status, unittest.equals('foo')); |
| 961 unittest.expect(o.type, unittest.equals('foo')); | 961 unittest.expect(o.type, unittest.equals('foo')); |
| 962 checkUnnamed2055(o.users); | 962 checkUnnamed2372(o.users); |
| 963 unittest.expect(o.zone, unittest.equals('foo')); | 963 unittest.expect(o.zone, unittest.equals('foo')); |
| 964 } | 964 } |
| 965 buildCounterDisk--; | 965 buildCounterDisk--; |
| 966 } | 966 } |
| 967 | 967 |
| 968 buildUnnamed2056() { | 968 buildUnnamed2373() { |
| 969 var o = new core.Map<core.String, api.DisksScopedList>(); | 969 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 970 o["x"] = buildDisksScopedList(); | 970 o["x"] = buildDisksScopedList(); |
| 971 o["y"] = buildDisksScopedList(); | 971 o["y"] = buildDisksScopedList(); |
| 972 return o; | 972 return o; |
| 973 } | 973 } |
| 974 | 974 |
| 975 checkUnnamed2056(core.Map<core.String, api.DisksScopedList> o) { | 975 checkUnnamed2373(core.Map<core.String, api.DisksScopedList> o) { |
| 976 unittest.expect(o, unittest.hasLength(2)); | 976 unittest.expect(o, unittest.hasLength(2)); |
| 977 checkDisksScopedList(o["x"]); | 977 checkDisksScopedList(o["x"]); |
| 978 checkDisksScopedList(o["y"]); | 978 checkDisksScopedList(o["y"]); |
| 979 } | 979 } |
| 980 | 980 |
| 981 core.int buildCounterDiskAggregatedList = 0; | 981 core.int buildCounterDiskAggregatedList = 0; |
| 982 buildDiskAggregatedList() { | 982 buildDiskAggregatedList() { |
| 983 var o = new api.DiskAggregatedList(); | 983 var o = new api.DiskAggregatedList(); |
| 984 buildCounterDiskAggregatedList++; | 984 buildCounterDiskAggregatedList++; |
| 985 if (buildCounterDiskAggregatedList < 3) { | 985 if (buildCounterDiskAggregatedList < 3) { |
| 986 o.id = "foo"; | 986 o.id = "foo"; |
| 987 o.items = buildUnnamed2056(); | 987 o.items = buildUnnamed2373(); |
| 988 o.kind = "foo"; | 988 o.kind = "foo"; |
| 989 o.nextPageToken = "foo"; | 989 o.nextPageToken = "foo"; |
| 990 o.selfLink = "foo"; | 990 o.selfLink = "foo"; |
| 991 } | 991 } |
| 992 buildCounterDiskAggregatedList--; | 992 buildCounterDiskAggregatedList--; |
| 993 return o; | 993 return o; |
| 994 } | 994 } |
| 995 | 995 |
| 996 checkDiskAggregatedList(api.DiskAggregatedList o) { | 996 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 997 buildCounterDiskAggregatedList++; | 997 buildCounterDiskAggregatedList++; |
| 998 if (buildCounterDiskAggregatedList < 3) { | 998 if (buildCounterDiskAggregatedList < 3) { |
| 999 unittest.expect(o.id, unittest.equals('foo')); | 999 unittest.expect(o.id, unittest.equals('foo')); |
| 1000 checkUnnamed2056(o.items); | 1000 checkUnnamed2373(o.items); |
| 1001 unittest.expect(o.kind, unittest.equals('foo')); | 1001 unittest.expect(o.kind, unittest.equals('foo')); |
| 1002 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1002 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1003 unittest.expect(o.selfLink, unittest.equals('foo')); | 1003 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1004 } | 1004 } |
| 1005 buildCounterDiskAggregatedList--; | 1005 buildCounterDiskAggregatedList--; |
| 1006 } | 1006 } |
| 1007 | 1007 |
| 1008 buildUnnamed2057() { | 1008 buildUnnamed2374() { |
| 1009 var o = new core.List<api.Disk>(); | 1009 var o = new core.List<api.Disk>(); |
| 1010 o.add(buildDisk()); | 1010 o.add(buildDisk()); |
| 1011 o.add(buildDisk()); | 1011 o.add(buildDisk()); |
| 1012 return o; | 1012 return o; |
| 1013 } | 1013 } |
| 1014 | 1014 |
| 1015 checkUnnamed2057(core.List<api.Disk> o) { | 1015 checkUnnamed2374(core.List<api.Disk> o) { |
| 1016 unittest.expect(o, unittest.hasLength(2)); | 1016 unittest.expect(o, unittest.hasLength(2)); |
| 1017 checkDisk(o[0]); | 1017 checkDisk(o[0]); |
| 1018 checkDisk(o[1]); | 1018 checkDisk(o[1]); |
| 1019 } | 1019 } |
| 1020 | 1020 |
| 1021 core.int buildCounterDiskList = 0; | 1021 core.int buildCounterDiskList = 0; |
| 1022 buildDiskList() { | 1022 buildDiskList() { |
| 1023 var o = new api.DiskList(); | 1023 var o = new api.DiskList(); |
| 1024 buildCounterDiskList++; | 1024 buildCounterDiskList++; |
| 1025 if (buildCounterDiskList < 3) { | 1025 if (buildCounterDiskList < 3) { |
| 1026 o.id = "foo"; | 1026 o.id = "foo"; |
| 1027 o.items = buildUnnamed2057(); | 1027 o.items = buildUnnamed2374(); |
| 1028 o.kind = "foo"; | 1028 o.kind = "foo"; |
| 1029 o.nextPageToken = "foo"; | 1029 o.nextPageToken = "foo"; |
| 1030 o.selfLink = "foo"; | 1030 o.selfLink = "foo"; |
| 1031 } | 1031 } |
| 1032 buildCounterDiskList--; | 1032 buildCounterDiskList--; |
| 1033 return o; | 1033 return o; |
| 1034 } | 1034 } |
| 1035 | 1035 |
| 1036 checkDiskList(api.DiskList o) { | 1036 checkDiskList(api.DiskList o) { |
| 1037 buildCounterDiskList++; | 1037 buildCounterDiskList++; |
| 1038 if (buildCounterDiskList < 3) { | 1038 if (buildCounterDiskList < 3) { |
| 1039 unittest.expect(o.id, unittest.equals('foo')); | 1039 unittest.expect(o.id, unittest.equals('foo')); |
| 1040 checkUnnamed2057(o.items); | 1040 checkUnnamed2374(o.items); |
| 1041 unittest.expect(o.kind, unittest.equals('foo')); | 1041 unittest.expect(o.kind, unittest.equals('foo')); |
| 1042 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1042 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1043 unittest.expect(o.selfLink, unittest.equals('foo')); | 1043 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1044 } | 1044 } |
| 1045 buildCounterDiskList--; | 1045 buildCounterDiskList--; |
| 1046 } | 1046 } |
| 1047 | 1047 |
| 1048 core.int buildCounterDiskMoveRequest = 0; | 1048 core.int buildCounterDiskMoveRequest = 0; |
| 1049 buildDiskMoveRequest() { | 1049 buildDiskMoveRequest() { |
| 1050 var o = new api.DiskMoveRequest(); | 1050 var o = new api.DiskMoveRequest(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 unittest.expect(o.id, unittest.equals('foo')); | 1096 unittest.expect(o.id, unittest.equals('foo')); |
| 1097 unittest.expect(o.kind, unittest.equals('foo')); | 1097 unittest.expect(o.kind, unittest.equals('foo')); |
| 1098 unittest.expect(o.name, unittest.equals('foo')); | 1098 unittest.expect(o.name, unittest.equals('foo')); |
| 1099 unittest.expect(o.selfLink, unittest.equals('foo')); | 1099 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1100 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 1100 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 1101 unittest.expect(o.zone, unittest.equals('foo')); | 1101 unittest.expect(o.zone, unittest.equals('foo')); |
| 1102 } | 1102 } |
| 1103 buildCounterDiskType--; | 1103 buildCounterDiskType--; |
| 1104 } | 1104 } |
| 1105 | 1105 |
| 1106 buildUnnamed2058() { | 1106 buildUnnamed2375() { |
| 1107 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 1107 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 1108 o["x"] = buildDiskTypesScopedList(); | 1108 o["x"] = buildDiskTypesScopedList(); |
| 1109 o["y"] = buildDiskTypesScopedList(); | 1109 o["y"] = buildDiskTypesScopedList(); |
| 1110 return o; | 1110 return o; |
| 1111 } | 1111 } |
| 1112 | 1112 |
| 1113 checkUnnamed2058(core.Map<core.String, api.DiskTypesScopedList> o) { | 1113 checkUnnamed2375(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 1114 unittest.expect(o, unittest.hasLength(2)); | 1114 unittest.expect(o, unittest.hasLength(2)); |
| 1115 checkDiskTypesScopedList(o["x"]); | 1115 checkDiskTypesScopedList(o["x"]); |
| 1116 checkDiskTypesScopedList(o["y"]); | 1116 checkDiskTypesScopedList(o["y"]); |
| 1117 } | 1117 } |
| 1118 | 1118 |
| 1119 core.int buildCounterDiskTypeAggregatedList = 0; | 1119 core.int buildCounterDiskTypeAggregatedList = 0; |
| 1120 buildDiskTypeAggregatedList() { | 1120 buildDiskTypeAggregatedList() { |
| 1121 var o = new api.DiskTypeAggregatedList(); | 1121 var o = new api.DiskTypeAggregatedList(); |
| 1122 buildCounterDiskTypeAggregatedList++; | 1122 buildCounterDiskTypeAggregatedList++; |
| 1123 if (buildCounterDiskTypeAggregatedList < 3) { | 1123 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1124 o.id = "foo"; | 1124 o.id = "foo"; |
| 1125 o.items = buildUnnamed2058(); | 1125 o.items = buildUnnamed2375(); |
| 1126 o.kind = "foo"; | 1126 o.kind = "foo"; |
| 1127 o.nextPageToken = "foo"; | 1127 o.nextPageToken = "foo"; |
| 1128 o.selfLink = "foo"; | 1128 o.selfLink = "foo"; |
| 1129 } | 1129 } |
| 1130 buildCounterDiskTypeAggregatedList--; | 1130 buildCounterDiskTypeAggregatedList--; |
| 1131 return o; | 1131 return o; |
| 1132 } | 1132 } |
| 1133 | 1133 |
| 1134 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 1134 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 1135 buildCounterDiskTypeAggregatedList++; | 1135 buildCounterDiskTypeAggregatedList++; |
| 1136 if (buildCounterDiskTypeAggregatedList < 3) { | 1136 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1137 unittest.expect(o.id, unittest.equals('foo')); | 1137 unittest.expect(o.id, unittest.equals('foo')); |
| 1138 checkUnnamed2058(o.items); | 1138 checkUnnamed2375(o.items); |
| 1139 unittest.expect(o.kind, unittest.equals('foo')); | 1139 unittest.expect(o.kind, unittest.equals('foo')); |
| 1140 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1140 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1141 unittest.expect(o.selfLink, unittest.equals('foo')); | 1141 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1142 } | 1142 } |
| 1143 buildCounterDiskTypeAggregatedList--; | 1143 buildCounterDiskTypeAggregatedList--; |
| 1144 } | 1144 } |
| 1145 | 1145 |
| 1146 buildUnnamed2059() { | 1146 buildUnnamed2376() { |
| 1147 var o = new core.List<api.DiskType>(); | 1147 var o = new core.List<api.DiskType>(); |
| 1148 o.add(buildDiskType()); | 1148 o.add(buildDiskType()); |
| 1149 o.add(buildDiskType()); | 1149 o.add(buildDiskType()); |
| 1150 return o; | 1150 return o; |
| 1151 } | 1151 } |
| 1152 | 1152 |
| 1153 checkUnnamed2059(core.List<api.DiskType> o) { | 1153 checkUnnamed2376(core.List<api.DiskType> o) { |
| 1154 unittest.expect(o, unittest.hasLength(2)); | 1154 unittest.expect(o, unittest.hasLength(2)); |
| 1155 checkDiskType(o[0]); | 1155 checkDiskType(o[0]); |
| 1156 checkDiskType(o[1]); | 1156 checkDiskType(o[1]); |
| 1157 } | 1157 } |
| 1158 | 1158 |
| 1159 core.int buildCounterDiskTypeList = 0; | 1159 core.int buildCounterDiskTypeList = 0; |
| 1160 buildDiskTypeList() { | 1160 buildDiskTypeList() { |
| 1161 var o = new api.DiskTypeList(); | 1161 var o = new api.DiskTypeList(); |
| 1162 buildCounterDiskTypeList++; | 1162 buildCounterDiskTypeList++; |
| 1163 if (buildCounterDiskTypeList < 3) { | 1163 if (buildCounterDiskTypeList < 3) { |
| 1164 o.id = "foo"; | 1164 o.id = "foo"; |
| 1165 o.items = buildUnnamed2059(); | 1165 o.items = buildUnnamed2376(); |
| 1166 o.kind = "foo"; | 1166 o.kind = "foo"; |
| 1167 o.nextPageToken = "foo"; | 1167 o.nextPageToken = "foo"; |
| 1168 o.selfLink = "foo"; | 1168 o.selfLink = "foo"; |
| 1169 } | 1169 } |
| 1170 buildCounterDiskTypeList--; | 1170 buildCounterDiskTypeList--; |
| 1171 return o; | 1171 return o; |
| 1172 } | 1172 } |
| 1173 | 1173 |
| 1174 checkDiskTypeList(api.DiskTypeList o) { | 1174 checkDiskTypeList(api.DiskTypeList o) { |
| 1175 buildCounterDiskTypeList++; | 1175 buildCounterDiskTypeList++; |
| 1176 if (buildCounterDiskTypeList < 3) { | 1176 if (buildCounterDiskTypeList < 3) { |
| 1177 unittest.expect(o.id, unittest.equals('foo')); | 1177 unittest.expect(o.id, unittest.equals('foo')); |
| 1178 checkUnnamed2059(o.items); | 1178 checkUnnamed2376(o.items); |
| 1179 unittest.expect(o.kind, unittest.equals('foo')); | 1179 unittest.expect(o.kind, unittest.equals('foo')); |
| 1180 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1180 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1181 unittest.expect(o.selfLink, unittest.equals('foo')); | 1181 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1182 } | 1182 } |
| 1183 buildCounterDiskTypeList--; | 1183 buildCounterDiskTypeList--; |
| 1184 } | 1184 } |
| 1185 | 1185 |
| 1186 buildUnnamed2060() { | 1186 buildUnnamed2377() { |
| 1187 var o = new core.List<api.DiskType>(); | 1187 var o = new core.List<api.DiskType>(); |
| 1188 o.add(buildDiskType()); | 1188 o.add(buildDiskType()); |
| 1189 o.add(buildDiskType()); | 1189 o.add(buildDiskType()); |
| 1190 return o; | 1190 return o; |
| 1191 } | 1191 } |
| 1192 | 1192 |
| 1193 checkUnnamed2060(core.List<api.DiskType> o) { | 1193 checkUnnamed2377(core.List<api.DiskType> o) { |
| 1194 unittest.expect(o, unittest.hasLength(2)); | 1194 unittest.expect(o, unittest.hasLength(2)); |
| 1195 checkDiskType(o[0]); | 1195 checkDiskType(o[0]); |
| 1196 checkDiskType(o[1]); | 1196 checkDiskType(o[1]); |
| 1197 } | 1197 } |
| 1198 | 1198 |
| 1199 core.int buildCounterDiskTypesScopedListWarningData = 0; | 1199 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 1200 buildDiskTypesScopedListWarningData() { | 1200 buildDiskTypesScopedListWarningData() { |
| 1201 var o = new api.DiskTypesScopedListWarningData(); | 1201 var o = new api.DiskTypesScopedListWarningData(); |
| 1202 buildCounterDiskTypesScopedListWarningData++; | 1202 buildCounterDiskTypesScopedListWarningData++; |
| 1203 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1203 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1204 o.key = "foo"; | 1204 o.key = "foo"; |
| 1205 o.value = "foo"; | 1205 o.value = "foo"; |
| 1206 } | 1206 } |
| 1207 buildCounterDiskTypesScopedListWarningData--; | 1207 buildCounterDiskTypesScopedListWarningData--; |
| 1208 return o; | 1208 return o; |
| 1209 } | 1209 } |
| 1210 | 1210 |
| 1211 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 1211 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 1212 buildCounterDiskTypesScopedListWarningData++; | 1212 buildCounterDiskTypesScopedListWarningData++; |
| 1213 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1213 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1214 unittest.expect(o.key, unittest.equals('foo')); | 1214 unittest.expect(o.key, unittest.equals('foo')); |
| 1215 unittest.expect(o.value, unittest.equals('foo')); | 1215 unittest.expect(o.value, unittest.equals('foo')); |
| 1216 } | 1216 } |
| 1217 buildCounterDiskTypesScopedListWarningData--; | 1217 buildCounterDiskTypesScopedListWarningData--; |
| 1218 } | 1218 } |
| 1219 | 1219 |
| 1220 buildUnnamed2061() { | 1220 buildUnnamed2378() { |
| 1221 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 1221 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 1222 o.add(buildDiskTypesScopedListWarningData()); | 1222 o.add(buildDiskTypesScopedListWarningData()); |
| 1223 o.add(buildDiskTypesScopedListWarningData()); | 1223 o.add(buildDiskTypesScopedListWarningData()); |
| 1224 return o; | 1224 return o; |
| 1225 } | 1225 } |
| 1226 | 1226 |
| 1227 checkUnnamed2061(core.List<api.DiskTypesScopedListWarningData> o) { | 1227 checkUnnamed2378(core.List<api.DiskTypesScopedListWarningData> o) { |
| 1228 unittest.expect(o, unittest.hasLength(2)); | 1228 unittest.expect(o, unittest.hasLength(2)); |
| 1229 checkDiskTypesScopedListWarningData(o[0]); | 1229 checkDiskTypesScopedListWarningData(o[0]); |
| 1230 checkDiskTypesScopedListWarningData(o[1]); | 1230 checkDiskTypesScopedListWarningData(o[1]); |
| 1231 } | 1231 } |
| 1232 | 1232 |
| 1233 core.int buildCounterDiskTypesScopedListWarning = 0; | 1233 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 1234 buildDiskTypesScopedListWarning() { | 1234 buildDiskTypesScopedListWarning() { |
| 1235 var o = new api.DiskTypesScopedListWarning(); | 1235 var o = new api.DiskTypesScopedListWarning(); |
| 1236 buildCounterDiskTypesScopedListWarning++; | 1236 buildCounterDiskTypesScopedListWarning++; |
| 1237 if (buildCounterDiskTypesScopedListWarning < 3) { | 1237 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1238 o.code = "foo"; | 1238 o.code = "foo"; |
| 1239 o.data = buildUnnamed2061(); | 1239 o.data = buildUnnamed2378(); |
| 1240 o.message = "foo"; | 1240 o.message = "foo"; |
| 1241 } | 1241 } |
| 1242 buildCounterDiskTypesScopedListWarning--; | 1242 buildCounterDiskTypesScopedListWarning--; |
| 1243 return o; | 1243 return o; |
| 1244 } | 1244 } |
| 1245 | 1245 |
| 1246 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 1246 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 1247 buildCounterDiskTypesScopedListWarning++; | 1247 buildCounterDiskTypesScopedListWarning++; |
| 1248 if (buildCounterDiskTypesScopedListWarning < 3) { | 1248 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1249 unittest.expect(o.code, unittest.equals('foo')); | 1249 unittest.expect(o.code, unittest.equals('foo')); |
| 1250 checkUnnamed2061(o.data); | 1250 checkUnnamed2378(o.data); |
| 1251 unittest.expect(o.message, unittest.equals('foo')); | 1251 unittest.expect(o.message, unittest.equals('foo')); |
| 1252 } | 1252 } |
| 1253 buildCounterDiskTypesScopedListWarning--; | 1253 buildCounterDiskTypesScopedListWarning--; |
| 1254 } | 1254 } |
| 1255 | 1255 |
| 1256 core.int buildCounterDiskTypesScopedList = 0; | 1256 core.int buildCounterDiskTypesScopedList = 0; |
| 1257 buildDiskTypesScopedList() { | 1257 buildDiskTypesScopedList() { |
| 1258 var o = new api.DiskTypesScopedList(); | 1258 var o = new api.DiskTypesScopedList(); |
| 1259 buildCounterDiskTypesScopedList++; | 1259 buildCounterDiskTypesScopedList++; |
| 1260 if (buildCounterDiskTypesScopedList < 3) { | 1260 if (buildCounterDiskTypesScopedList < 3) { |
| 1261 o.diskTypes = buildUnnamed2060(); | 1261 o.diskTypes = buildUnnamed2377(); |
| 1262 o.warning = buildDiskTypesScopedListWarning(); | 1262 o.warning = buildDiskTypesScopedListWarning(); |
| 1263 } | 1263 } |
| 1264 buildCounterDiskTypesScopedList--; | 1264 buildCounterDiskTypesScopedList--; |
| 1265 return o; | 1265 return o; |
| 1266 } | 1266 } |
| 1267 | 1267 |
| 1268 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 1268 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 1269 buildCounterDiskTypesScopedList++; | 1269 buildCounterDiskTypesScopedList++; |
| 1270 if (buildCounterDiskTypesScopedList < 3) { | 1270 if (buildCounterDiskTypesScopedList < 3) { |
| 1271 checkUnnamed2060(o.diskTypes); | 1271 checkUnnamed2377(o.diskTypes); |
| 1272 checkDiskTypesScopedListWarning(o.warning); | 1272 checkDiskTypesScopedListWarning(o.warning); |
| 1273 } | 1273 } |
| 1274 buildCounterDiskTypesScopedList--; | 1274 buildCounterDiskTypesScopedList--; |
| 1275 } | 1275 } |
| 1276 | 1276 |
| 1277 buildUnnamed2062() { | 1277 buildUnnamed2379() { |
| 1278 var o = new core.List<api.Disk>(); | 1278 var o = new core.List<api.Disk>(); |
| 1279 o.add(buildDisk()); | 1279 o.add(buildDisk()); |
| 1280 o.add(buildDisk()); | 1280 o.add(buildDisk()); |
| 1281 return o; | 1281 return o; |
| 1282 } | 1282 } |
| 1283 | 1283 |
| 1284 checkUnnamed2062(core.List<api.Disk> o) { | 1284 checkUnnamed2379(core.List<api.Disk> o) { |
| 1285 unittest.expect(o, unittest.hasLength(2)); | 1285 unittest.expect(o, unittest.hasLength(2)); |
| 1286 checkDisk(o[0]); | 1286 checkDisk(o[0]); |
| 1287 checkDisk(o[1]); | 1287 checkDisk(o[1]); |
| 1288 } | 1288 } |
| 1289 | 1289 |
| 1290 core.int buildCounterDisksScopedListWarningData = 0; | 1290 core.int buildCounterDisksScopedListWarningData = 0; |
| 1291 buildDisksScopedListWarningData() { | 1291 buildDisksScopedListWarningData() { |
| 1292 var o = new api.DisksScopedListWarningData(); | 1292 var o = new api.DisksScopedListWarningData(); |
| 1293 buildCounterDisksScopedListWarningData++; | 1293 buildCounterDisksScopedListWarningData++; |
| 1294 if (buildCounterDisksScopedListWarningData < 3) { | 1294 if (buildCounterDisksScopedListWarningData < 3) { |
| 1295 o.key = "foo"; | 1295 o.key = "foo"; |
| 1296 o.value = "foo"; | 1296 o.value = "foo"; |
| 1297 } | 1297 } |
| 1298 buildCounterDisksScopedListWarningData--; | 1298 buildCounterDisksScopedListWarningData--; |
| 1299 return o; | 1299 return o; |
| 1300 } | 1300 } |
| 1301 | 1301 |
| 1302 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 1302 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 1303 buildCounterDisksScopedListWarningData++; | 1303 buildCounterDisksScopedListWarningData++; |
| 1304 if (buildCounterDisksScopedListWarningData < 3) { | 1304 if (buildCounterDisksScopedListWarningData < 3) { |
| 1305 unittest.expect(o.key, unittest.equals('foo')); | 1305 unittest.expect(o.key, unittest.equals('foo')); |
| 1306 unittest.expect(o.value, unittest.equals('foo')); | 1306 unittest.expect(o.value, unittest.equals('foo')); |
| 1307 } | 1307 } |
| 1308 buildCounterDisksScopedListWarningData--; | 1308 buildCounterDisksScopedListWarningData--; |
| 1309 } | 1309 } |
| 1310 | 1310 |
| 1311 buildUnnamed2063() { | 1311 buildUnnamed2380() { |
| 1312 var o = new core.List<api.DisksScopedListWarningData>(); | 1312 var o = new core.List<api.DisksScopedListWarningData>(); |
| 1313 o.add(buildDisksScopedListWarningData()); | 1313 o.add(buildDisksScopedListWarningData()); |
| 1314 o.add(buildDisksScopedListWarningData()); | 1314 o.add(buildDisksScopedListWarningData()); |
| 1315 return o; | 1315 return o; |
| 1316 } | 1316 } |
| 1317 | 1317 |
| 1318 checkUnnamed2063(core.List<api.DisksScopedListWarningData> o) { | 1318 checkUnnamed2380(core.List<api.DisksScopedListWarningData> o) { |
| 1319 unittest.expect(o, unittest.hasLength(2)); | 1319 unittest.expect(o, unittest.hasLength(2)); |
| 1320 checkDisksScopedListWarningData(o[0]); | 1320 checkDisksScopedListWarningData(o[0]); |
| 1321 checkDisksScopedListWarningData(o[1]); | 1321 checkDisksScopedListWarningData(o[1]); |
| 1322 } | 1322 } |
| 1323 | 1323 |
| 1324 core.int buildCounterDisksScopedListWarning = 0; | 1324 core.int buildCounterDisksScopedListWarning = 0; |
| 1325 buildDisksScopedListWarning() { | 1325 buildDisksScopedListWarning() { |
| 1326 var o = new api.DisksScopedListWarning(); | 1326 var o = new api.DisksScopedListWarning(); |
| 1327 buildCounterDisksScopedListWarning++; | 1327 buildCounterDisksScopedListWarning++; |
| 1328 if (buildCounterDisksScopedListWarning < 3) { | 1328 if (buildCounterDisksScopedListWarning < 3) { |
| 1329 o.code = "foo"; | 1329 o.code = "foo"; |
| 1330 o.data = buildUnnamed2063(); | 1330 o.data = buildUnnamed2380(); |
| 1331 o.message = "foo"; | 1331 o.message = "foo"; |
| 1332 } | 1332 } |
| 1333 buildCounterDisksScopedListWarning--; | 1333 buildCounterDisksScopedListWarning--; |
| 1334 return o; | 1334 return o; |
| 1335 } | 1335 } |
| 1336 | 1336 |
| 1337 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 1337 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 1338 buildCounterDisksScopedListWarning++; | 1338 buildCounterDisksScopedListWarning++; |
| 1339 if (buildCounterDisksScopedListWarning < 3) { | 1339 if (buildCounterDisksScopedListWarning < 3) { |
| 1340 unittest.expect(o.code, unittest.equals('foo')); | 1340 unittest.expect(o.code, unittest.equals('foo')); |
| 1341 checkUnnamed2063(o.data); | 1341 checkUnnamed2380(o.data); |
| 1342 unittest.expect(o.message, unittest.equals('foo')); | 1342 unittest.expect(o.message, unittest.equals('foo')); |
| 1343 } | 1343 } |
| 1344 buildCounterDisksScopedListWarning--; | 1344 buildCounterDisksScopedListWarning--; |
| 1345 } | 1345 } |
| 1346 | 1346 |
| 1347 core.int buildCounterDisksScopedList = 0; | 1347 core.int buildCounterDisksScopedList = 0; |
| 1348 buildDisksScopedList() { | 1348 buildDisksScopedList() { |
| 1349 var o = new api.DisksScopedList(); | 1349 var o = new api.DisksScopedList(); |
| 1350 buildCounterDisksScopedList++; | 1350 buildCounterDisksScopedList++; |
| 1351 if (buildCounterDisksScopedList < 3) { | 1351 if (buildCounterDisksScopedList < 3) { |
| 1352 o.disks = buildUnnamed2062(); | 1352 o.disks = buildUnnamed2379(); |
| 1353 o.warning = buildDisksScopedListWarning(); | 1353 o.warning = buildDisksScopedListWarning(); |
| 1354 } | 1354 } |
| 1355 buildCounterDisksScopedList--; | 1355 buildCounterDisksScopedList--; |
| 1356 return o; | 1356 return o; |
| 1357 } | 1357 } |
| 1358 | 1358 |
| 1359 checkDisksScopedList(api.DisksScopedList o) { | 1359 checkDisksScopedList(api.DisksScopedList o) { |
| 1360 buildCounterDisksScopedList++; | 1360 buildCounterDisksScopedList++; |
| 1361 if (buildCounterDisksScopedList < 3) { | 1361 if (buildCounterDisksScopedList < 3) { |
| 1362 checkUnnamed2062(o.disks); | 1362 checkUnnamed2379(o.disks); |
| 1363 checkDisksScopedListWarning(o.warning); | 1363 checkDisksScopedListWarning(o.warning); |
| 1364 } | 1364 } |
| 1365 buildCounterDisksScopedList--; | 1365 buildCounterDisksScopedList--; |
| 1366 } | 1366 } |
| 1367 | 1367 |
| 1368 buildUnnamed2064() { | 1368 buildUnnamed2381() { |
| 1369 var o = new core.List<core.String>(); | 1369 var o = new core.List<core.String>(); |
| 1370 o.add("foo"); | 1370 o.add("foo"); |
| 1371 o.add("foo"); | 1371 o.add("foo"); |
| 1372 return o; | 1372 return o; |
| 1373 } | 1373 } |
| 1374 | 1374 |
| 1375 checkUnnamed2064(core.List<core.String> o) { | 1375 checkUnnamed2381(core.List<core.String> o) { |
| 1376 unittest.expect(o, unittest.hasLength(2)); | 1376 unittest.expect(o, unittest.hasLength(2)); |
| 1377 unittest.expect(o[0], unittest.equals('foo')); | 1377 unittest.expect(o[0], unittest.equals('foo')); |
| 1378 unittest.expect(o[1], unittest.equals('foo')); | 1378 unittest.expect(o[1], unittest.equals('foo')); |
| 1379 } | 1379 } |
| 1380 | 1380 |
| 1381 core.int buildCounterFirewallAllowed = 0; | 1381 core.int buildCounterFirewallAllowed = 0; |
| 1382 buildFirewallAllowed() { | 1382 buildFirewallAllowed() { |
| 1383 var o = new api.FirewallAllowed(); | 1383 var o = new api.FirewallAllowed(); |
| 1384 buildCounterFirewallAllowed++; | 1384 buildCounterFirewallAllowed++; |
| 1385 if (buildCounterFirewallAllowed < 3) { | 1385 if (buildCounterFirewallAllowed < 3) { |
| 1386 o.IPProtocol = "foo"; | 1386 o.IPProtocol = "foo"; |
| 1387 o.ports = buildUnnamed2064(); | 1387 o.ports = buildUnnamed2381(); |
| 1388 } | 1388 } |
| 1389 buildCounterFirewallAllowed--; | 1389 buildCounterFirewallAllowed--; |
| 1390 return o; | 1390 return o; |
| 1391 } | 1391 } |
| 1392 | 1392 |
| 1393 checkFirewallAllowed(api.FirewallAllowed o) { | 1393 checkFirewallAllowed(api.FirewallAllowed o) { |
| 1394 buildCounterFirewallAllowed++; | 1394 buildCounterFirewallAllowed++; |
| 1395 if (buildCounterFirewallAllowed < 3) { | 1395 if (buildCounterFirewallAllowed < 3) { |
| 1396 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1396 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1397 checkUnnamed2064(o.ports); | 1397 checkUnnamed2381(o.ports); |
| 1398 } | 1398 } |
| 1399 buildCounterFirewallAllowed--; | 1399 buildCounterFirewallAllowed--; |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 buildUnnamed2065() { | 1402 buildUnnamed2382() { |
| 1403 var o = new core.List<api.FirewallAllowed>(); | 1403 var o = new core.List<api.FirewallAllowed>(); |
| 1404 o.add(buildFirewallAllowed()); | 1404 o.add(buildFirewallAllowed()); |
| 1405 o.add(buildFirewallAllowed()); | 1405 o.add(buildFirewallAllowed()); |
| 1406 return o; | 1406 return o; |
| 1407 } | 1407 } |
| 1408 | 1408 |
| 1409 checkUnnamed2065(core.List<api.FirewallAllowed> o) { | 1409 checkUnnamed2382(core.List<api.FirewallAllowed> o) { |
| 1410 unittest.expect(o, unittest.hasLength(2)); | 1410 unittest.expect(o, unittest.hasLength(2)); |
| 1411 checkFirewallAllowed(o[0]); | 1411 checkFirewallAllowed(o[0]); |
| 1412 checkFirewallAllowed(o[1]); | 1412 checkFirewallAllowed(o[1]); |
| 1413 } | 1413 } |
| 1414 | 1414 |
| 1415 buildUnnamed2066() { | 1415 buildUnnamed2383() { |
| 1416 var o = new core.List<core.String>(); | 1416 var o = new core.List<core.String>(); |
| 1417 o.add("foo"); | 1417 o.add("foo"); |
| 1418 o.add("foo"); | 1418 o.add("foo"); |
| 1419 return o; | 1419 return o; |
| 1420 } | 1420 } |
| 1421 | 1421 |
| 1422 checkUnnamed2066(core.List<core.String> o) { | 1422 checkUnnamed2383(core.List<core.String> o) { |
| 1423 unittest.expect(o, unittest.hasLength(2)); | 1423 unittest.expect(o, unittest.hasLength(2)); |
| 1424 unittest.expect(o[0], unittest.equals('foo')); | 1424 unittest.expect(o[0], unittest.equals('foo')); |
| 1425 unittest.expect(o[1], unittest.equals('foo')); | 1425 unittest.expect(o[1], unittest.equals('foo')); |
| 1426 } | 1426 } |
| 1427 | 1427 |
| 1428 buildUnnamed2067() { | 1428 buildUnnamed2384() { |
| 1429 var o = new core.List<core.String>(); | 1429 var o = new core.List<core.String>(); |
| 1430 o.add("foo"); | 1430 o.add("foo"); |
| 1431 o.add("foo"); | 1431 o.add("foo"); |
| 1432 return o; | 1432 return o; |
| 1433 } | 1433 } |
| 1434 | 1434 |
| 1435 checkUnnamed2067(core.List<core.String> o) { | 1435 checkUnnamed2384(core.List<core.String> o) { |
| 1436 unittest.expect(o, unittest.hasLength(2)); | 1436 unittest.expect(o, unittest.hasLength(2)); |
| 1437 unittest.expect(o[0], unittest.equals('foo')); | 1437 unittest.expect(o[0], unittest.equals('foo')); |
| 1438 unittest.expect(o[1], unittest.equals('foo')); | 1438 unittest.expect(o[1], unittest.equals('foo')); |
| 1439 } | 1439 } |
| 1440 | 1440 |
| 1441 buildUnnamed2068() { | 1441 buildUnnamed2385() { |
| 1442 var o = new core.List<core.String>(); | 1442 var o = new core.List<core.String>(); |
| 1443 o.add("foo"); | 1443 o.add("foo"); |
| 1444 o.add("foo"); | 1444 o.add("foo"); |
| 1445 return o; | 1445 return o; |
| 1446 } | 1446 } |
| 1447 | 1447 |
| 1448 checkUnnamed2068(core.List<core.String> o) { | 1448 checkUnnamed2385(core.List<core.String> o) { |
| 1449 unittest.expect(o, unittest.hasLength(2)); | 1449 unittest.expect(o, unittest.hasLength(2)); |
| 1450 unittest.expect(o[0], unittest.equals('foo')); | 1450 unittest.expect(o[0], unittest.equals('foo')); |
| 1451 unittest.expect(o[1], unittest.equals('foo')); | 1451 unittest.expect(o[1], unittest.equals('foo')); |
| 1452 } | 1452 } |
| 1453 | 1453 |
| 1454 core.int buildCounterFirewall = 0; | 1454 core.int buildCounterFirewall = 0; |
| 1455 buildFirewall() { | 1455 buildFirewall() { |
| 1456 var o = new api.Firewall(); | 1456 var o = new api.Firewall(); |
| 1457 buildCounterFirewall++; | 1457 buildCounterFirewall++; |
| 1458 if (buildCounterFirewall < 3) { | 1458 if (buildCounterFirewall < 3) { |
| 1459 o.allowed = buildUnnamed2065(); | 1459 o.allowed = buildUnnamed2382(); |
| 1460 o.creationTimestamp = "foo"; | 1460 o.creationTimestamp = "foo"; |
| 1461 o.description = "foo"; | 1461 o.description = "foo"; |
| 1462 o.id = "foo"; | 1462 o.id = "foo"; |
| 1463 o.kind = "foo"; | 1463 o.kind = "foo"; |
| 1464 o.name = "foo"; | 1464 o.name = "foo"; |
| 1465 o.network = "foo"; | 1465 o.network = "foo"; |
| 1466 o.selfLink = "foo"; | 1466 o.selfLink = "foo"; |
| 1467 o.sourceRanges = buildUnnamed2066(); | 1467 o.sourceRanges = buildUnnamed2383(); |
| 1468 o.sourceTags = buildUnnamed2067(); | 1468 o.sourceTags = buildUnnamed2384(); |
| 1469 o.targetTags = buildUnnamed2068(); | 1469 o.targetTags = buildUnnamed2385(); |
| 1470 } | 1470 } |
| 1471 buildCounterFirewall--; | 1471 buildCounterFirewall--; |
| 1472 return o; | 1472 return o; |
| 1473 } | 1473 } |
| 1474 | 1474 |
| 1475 checkFirewall(api.Firewall o) { | 1475 checkFirewall(api.Firewall o) { |
| 1476 buildCounterFirewall++; | 1476 buildCounterFirewall++; |
| 1477 if (buildCounterFirewall < 3) { | 1477 if (buildCounterFirewall < 3) { |
| 1478 checkUnnamed2065(o.allowed); | 1478 checkUnnamed2382(o.allowed); |
| 1479 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1479 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1480 unittest.expect(o.description, unittest.equals('foo')); | 1480 unittest.expect(o.description, unittest.equals('foo')); |
| 1481 unittest.expect(o.id, unittest.equals('foo')); | 1481 unittest.expect(o.id, unittest.equals('foo')); |
| 1482 unittest.expect(o.kind, unittest.equals('foo')); | 1482 unittest.expect(o.kind, unittest.equals('foo')); |
| 1483 unittest.expect(o.name, unittest.equals('foo')); | 1483 unittest.expect(o.name, unittest.equals('foo')); |
| 1484 unittest.expect(o.network, unittest.equals('foo')); | 1484 unittest.expect(o.network, unittest.equals('foo')); |
| 1485 unittest.expect(o.selfLink, unittest.equals('foo')); | 1485 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1486 checkUnnamed2066(o.sourceRanges); | 1486 checkUnnamed2383(o.sourceRanges); |
| 1487 checkUnnamed2067(o.sourceTags); | 1487 checkUnnamed2384(o.sourceTags); |
| 1488 checkUnnamed2068(o.targetTags); | 1488 checkUnnamed2385(o.targetTags); |
| 1489 } | 1489 } |
| 1490 buildCounterFirewall--; | 1490 buildCounterFirewall--; |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 buildUnnamed2069() { | 1493 buildUnnamed2386() { |
| 1494 var o = new core.List<api.Firewall>(); | 1494 var o = new core.List<api.Firewall>(); |
| 1495 o.add(buildFirewall()); | 1495 o.add(buildFirewall()); |
| 1496 o.add(buildFirewall()); | 1496 o.add(buildFirewall()); |
| 1497 return o; | 1497 return o; |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 checkUnnamed2069(core.List<api.Firewall> o) { | 1500 checkUnnamed2386(core.List<api.Firewall> o) { |
| 1501 unittest.expect(o, unittest.hasLength(2)); | 1501 unittest.expect(o, unittest.hasLength(2)); |
| 1502 checkFirewall(o[0]); | 1502 checkFirewall(o[0]); |
| 1503 checkFirewall(o[1]); | 1503 checkFirewall(o[1]); |
| 1504 } | 1504 } |
| 1505 | 1505 |
| 1506 core.int buildCounterFirewallList = 0; | 1506 core.int buildCounterFirewallList = 0; |
| 1507 buildFirewallList() { | 1507 buildFirewallList() { |
| 1508 var o = new api.FirewallList(); | 1508 var o = new api.FirewallList(); |
| 1509 buildCounterFirewallList++; | 1509 buildCounterFirewallList++; |
| 1510 if (buildCounterFirewallList < 3) { | 1510 if (buildCounterFirewallList < 3) { |
| 1511 o.id = "foo"; | 1511 o.id = "foo"; |
| 1512 o.items = buildUnnamed2069(); | 1512 o.items = buildUnnamed2386(); |
| 1513 o.kind = "foo"; | 1513 o.kind = "foo"; |
| 1514 o.nextPageToken = "foo"; | 1514 o.nextPageToken = "foo"; |
| 1515 o.selfLink = "foo"; | 1515 o.selfLink = "foo"; |
| 1516 } | 1516 } |
| 1517 buildCounterFirewallList--; | 1517 buildCounterFirewallList--; |
| 1518 return o; | 1518 return o; |
| 1519 } | 1519 } |
| 1520 | 1520 |
| 1521 checkFirewallList(api.FirewallList o) { | 1521 checkFirewallList(api.FirewallList o) { |
| 1522 buildCounterFirewallList++; | 1522 buildCounterFirewallList++; |
| 1523 if (buildCounterFirewallList < 3) { | 1523 if (buildCounterFirewallList < 3) { |
| 1524 unittest.expect(o.id, unittest.equals('foo')); | 1524 unittest.expect(o.id, unittest.equals('foo')); |
| 1525 checkUnnamed2069(o.items); | 1525 checkUnnamed2386(o.items); |
| 1526 unittest.expect(o.kind, unittest.equals('foo')); | 1526 unittest.expect(o.kind, unittest.equals('foo')); |
| 1527 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1527 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1528 unittest.expect(o.selfLink, unittest.equals('foo')); | 1528 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1529 } | 1529 } |
| 1530 buildCounterFirewallList--; | 1530 buildCounterFirewallList--; |
| 1531 } | 1531 } |
| 1532 | 1532 |
| 1533 core.int buildCounterForwardingRule = 0; | 1533 core.int buildCounterForwardingRule = 0; |
| 1534 buildForwardingRule() { | 1534 buildForwardingRule() { |
| 1535 var o = new api.ForwardingRule(); | 1535 var o = new api.ForwardingRule(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1562 unittest.expect(o.kind, unittest.equals('foo')); | 1562 unittest.expect(o.kind, unittest.equals('foo')); |
| 1563 unittest.expect(o.name, unittest.equals('foo')); | 1563 unittest.expect(o.name, unittest.equals('foo')); |
| 1564 unittest.expect(o.portRange, unittest.equals('foo')); | 1564 unittest.expect(o.portRange, unittest.equals('foo')); |
| 1565 unittest.expect(o.region, unittest.equals('foo')); | 1565 unittest.expect(o.region, unittest.equals('foo')); |
| 1566 unittest.expect(o.selfLink, unittest.equals('foo')); | 1566 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1567 unittest.expect(o.target, unittest.equals('foo')); | 1567 unittest.expect(o.target, unittest.equals('foo')); |
| 1568 } | 1568 } |
| 1569 buildCounterForwardingRule--; | 1569 buildCounterForwardingRule--; |
| 1570 } | 1570 } |
| 1571 | 1571 |
| 1572 buildUnnamed2070() { | 1572 buildUnnamed2387() { |
| 1573 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 1573 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 1574 o["x"] = buildForwardingRulesScopedList(); | 1574 o["x"] = buildForwardingRulesScopedList(); |
| 1575 o["y"] = buildForwardingRulesScopedList(); | 1575 o["y"] = buildForwardingRulesScopedList(); |
| 1576 return o; | 1576 return o; |
| 1577 } | 1577 } |
| 1578 | 1578 |
| 1579 checkUnnamed2070(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1579 checkUnnamed2387(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 1580 unittest.expect(o, unittest.hasLength(2)); | 1580 unittest.expect(o, unittest.hasLength(2)); |
| 1581 checkForwardingRulesScopedList(o["x"]); | 1581 checkForwardingRulesScopedList(o["x"]); |
| 1582 checkForwardingRulesScopedList(o["y"]); | 1582 checkForwardingRulesScopedList(o["y"]); |
| 1583 } | 1583 } |
| 1584 | 1584 |
| 1585 core.int buildCounterForwardingRuleAggregatedList = 0; | 1585 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 1586 buildForwardingRuleAggregatedList() { | 1586 buildForwardingRuleAggregatedList() { |
| 1587 var o = new api.ForwardingRuleAggregatedList(); | 1587 var o = new api.ForwardingRuleAggregatedList(); |
| 1588 buildCounterForwardingRuleAggregatedList++; | 1588 buildCounterForwardingRuleAggregatedList++; |
| 1589 if (buildCounterForwardingRuleAggregatedList < 3) { | 1589 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1590 o.id = "foo"; | 1590 o.id = "foo"; |
| 1591 o.items = buildUnnamed2070(); | 1591 o.items = buildUnnamed2387(); |
| 1592 o.kind = "foo"; | 1592 o.kind = "foo"; |
| 1593 o.nextPageToken = "foo"; | 1593 o.nextPageToken = "foo"; |
| 1594 o.selfLink = "foo"; | 1594 o.selfLink = "foo"; |
| 1595 } | 1595 } |
| 1596 buildCounterForwardingRuleAggregatedList--; | 1596 buildCounterForwardingRuleAggregatedList--; |
| 1597 return o; | 1597 return o; |
| 1598 } | 1598 } |
| 1599 | 1599 |
| 1600 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 1600 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 1601 buildCounterForwardingRuleAggregatedList++; | 1601 buildCounterForwardingRuleAggregatedList++; |
| 1602 if (buildCounterForwardingRuleAggregatedList < 3) { | 1602 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1603 unittest.expect(o.id, unittest.equals('foo')); | 1603 unittest.expect(o.id, unittest.equals('foo')); |
| 1604 checkUnnamed2070(o.items); | 1604 checkUnnamed2387(o.items); |
| 1605 unittest.expect(o.kind, unittest.equals('foo')); | 1605 unittest.expect(o.kind, unittest.equals('foo')); |
| 1606 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1606 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1607 unittest.expect(o.selfLink, unittest.equals('foo')); | 1607 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1608 } | 1608 } |
| 1609 buildCounterForwardingRuleAggregatedList--; | 1609 buildCounterForwardingRuleAggregatedList--; |
| 1610 } | 1610 } |
| 1611 | 1611 |
| 1612 buildUnnamed2071() { | 1612 buildUnnamed2388() { |
| 1613 var o = new core.List<api.ForwardingRule>(); | 1613 var o = new core.List<api.ForwardingRule>(); |
| 1614 o.add(buildForwardingRule()); | 1614 o.add(buildForwardingRule()); |
| 1615 o.add(buildForwardingRule()); | 1615 o.add(buildForwardingRule()); |
| 1616 return o; | 1616 return o; |
| 1617 } | 1617 } |
| 1618 | 1618 |
| 1619 checkUnnamed2071(core.List<api.ForwardingRule> o) { | 1619 checkUnnamed2388(core.List<api.ForwardingRule> o) { |
| 1620 unittest.expect(o, unittest.hasLength(2)); | 1620 unittest.expect(o, unittest.hasLength(2)); |
| 1621 checkForwardingRule(o[0]); | 1621 checkForwardingRule(o[0]); |
| 1622 checkForwardingRule(o[1]); | 1622 checkForwardingRule(o[1]); |
| 1623 } | 1623 } |
| 1624 | 1624 |
| 1625 core.int buildCounterForwardingRuleList = 0; | 1625 core.int buildCounterForwardingRuleList = 0; |
| 1626 buildForwardingRuleList() { | 1626 buildForwardingRuleList() { |
| 1627 var o = new api.ForwardingRuleList(); | 1627 var o = new api.ForwardingRuleList(); |
| 1628 buildCounterForwardingRuleList++; | 1628 buildCounterForwardingRuleList++; |
| 1629 if (buildCounterForwardingRuleList < 3) { | 1629 if (buildCounterForwardingRuleList < 3) { |
| 1630 o.id = "foo"; | 1630 o.id = "foo"; |
| 1631 o.items = buildUnnamed2071(); | 1631 o.items = buildUnnamed2388(); |
| 1632 o.kind = "foo"; | 1632 o.kind = "foo"; |
| 1633 o.nextPageToken = "foo"; | 1633 o.nextPageToken = "foo"; |
| 1634 o.selfLink = "foo"; | 1634 o.selfLink = "foo"; |
| 1635 } | 1635 } |
| 1636 buildCounterForwardingRuleList--; | 1636 buildCounterForwardingRuleList--; |
| 1637 return o; | 1637 return o; |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 checkForwardingRuleList(api.ForwardingRuleList o) { | 1640 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 1641 buildCounterForwardingRuleList++; | 1641 buildCounterForwardingRuleList++; |
| 1642 if (buildCounterForwardingRuleList < 3) { | 1642 if (buildCounterForwardingRuleList < 3) { |
| 1643 unittest.expect(o.id, unittest.equals('foo')); | 1643 unittest.expect(o.id, unittest.equals('foo')); |
| 1644 checkUnnamed2071(o.items); | 1644 checkUnnamed2388(o.items); |
| 1645 unittest.expect(o.kind, unittest.equals('foo')); | 1645 unittest.expect(o.kind, unittest.equals('foo')); |
| 1646 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1646 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1647 unittest.expect(o.selfLink, unittest.equals('foo')); | 1647 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1648 } | 1648 } |
| 1649 buildCounterForwardingRuleList--; | 1649 buildCounterForwardingRuleList--; |
| 1650 } | 1650 } |
| 1651 | 1651 |
| 1652 buildUnnamed2072() { | 1652 buildUnnamed2389() { |
| 1653 var o = new core.List<api.ForwardingRule>(); | 1653 var o = new core.List<api.ForwardingRule>(); |
| 1654 o.add(buildForwardingRule()); | 1654 o.add(buildForwardingRule()); |
| 1655 o.add(buildForwardingRule()); | 1655 o.add(buildForwardingRule()); |
| 1656 return o; | 1656 return o; |
| 1657 } | 1657 } |
| 1658 | 1658 |
| 1659 checkUnnamed2072(core.List<api.ForwardingRule> o) { | 1659 checkUnnamed2389(core.List<api.ForwardingRule> o) { |
| 1660 unittest.expect(o, unittest.hasLength(2)); | 1660 unittest.expect(o, unittest.hasLength(2)); |
| 1661 checkForwardingRule(o[0]); | 1661 checkForwardingRule(o[0]); |
| 1662 checkForwardingRule(o[1]); | 1662 checkForwardingRule(o[1]); |
| 1663 } | 1663 } |
| 1664 | 1664 |
| 1665 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 1665 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 1666 buildForwardingRulesScopedListWarningData() { | 1666 buildForwardingRulesScopedListWarningData() { |
| 1667 var o = new api.ForwardingRulesScopedListWarningData(); | 1667 var o = new api.ForwardingRulesScopedListWarningData(); |
| 1668 buildCounterForwardingRulesScopedListWarningData++; | 1668 buildCounterForwardingRulesScopedListWarningData++; |
| 1669 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1669 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1670 o.key = "foo"; | 1670 o.key = "foo"; |
| 1671 o.value = "foo"; | 1671 o.value = "foo"; |
| 1672 } | 1672 } |
| 1673 buildCounterForwardingRulesScopedListWarningData--; | 1673 buildCounterForwardingRulesScopedListWarningData--; |
| 1674 return o; | 1674 return o; |
| 1675 } | 1675 } |
| 1676 | 1676 |
| 1677 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 1677 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 1678 buildCounterForwardingRulesScopedListWarningData++; | 1678 buildCounterForwardingRulesScopedListWarningData++; |
| 1679 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1679 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1680 unittest.expect(o.key, unittest.equals('foo')); | 1680 unittest.expect(o.key, unittest.equals('foo')); |
| 1681 unittest.expect(o.value, unittest.equals('foo')); | 1681 unittest.expect(o.value, unittest.equals('foo')); |
| 1682 } | 1682 } |
| 1683 buildCounterForwardingRulesScopedListWarningData--; | 1683 buildCounterForwardingRulesScopedListWarningData--; |
| 1684 } | 1684 } |
| 1685 | 1685 |
| 1686 buildUnnamed2073() { | 1686 buildUnnamed2390() { |
| 1687 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 1687 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 1688 o.add(buildForwardingRulesScopedListWarningData()); | 1688 o.add(buildForwardingRulesScopedListWarningData()); |
| 1689 o.add(buildForwardingRulesScopedListWarningData()); | 1689 o.add(buildForwardingRulesScopedListWarningData()); |
| 1690 return o; | 1690 return o; |
| 1691 } | 1691 } |
| 1692 | 1692 |
| 1693 checkUnnamed2073(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1693 checkUnnamed2390(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 1694 unittest.expect(o, unittest.hasLength(2)); | 1694 unittest.expect(o, unittest.hasLength(2)); |
| 1695 checkForwardingRulesScopedListWarningData(o[0]); | 1695 checkForwardingRulesScopedListWarningData(o[0]); |
| 1696 checkForwardingRulesScopedListWarningData(o[1]); | 1696 checkForwardingRulesScopedListWarningData(o[1]); |
| 1697 } | 1697 } |
| 1698 | 1698 |
| 1699 core.int buildCounterForwardingRulesScopedListWarning = 0; | 1699 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 1700 buildForwardingRulesScopedListWarning() { | 1700 buildForwardingRulesScopedListWarning() { |
| 1701 var o = new api.ForwardingRulesScopedListWarning(); | 1701 var o = new api.ForwardingRulesScopedListWarning(); |
| 1702 buildCounterForwardingRulesScopedListWarning++; | 1702 buildCounterForwardingRulesScopedListWarning++; |
| 1703 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1703 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1704 o.code = "foo"; | 1704 o.code = "foo"; |
| 1705 o.data = buildUnnamed2073(); | 1705 o.data = buildUnnamed2390(); |
| 1706 o.message = "foo"; | 1706 o.message = "foo"; |
| 1707 } | 1707 } |
| 1708 buildCounterForwardingRulesScopedListWarning--; | 1708 buildCounterForwardingRulesScopedListWarning--; |
| 1709 return o; | 1709 return o; |
| 1710 } | 1710 } |
| 1711 | 1711 |
| 1712 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 1712 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 1713 buildCounterForwardingRulesScopedListWarning++; | 1713 buildCounterForwardingRulesScopedListWarning++; |
| 1714 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1714 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1715 unittest.expect(o.code, unittest.equals('foo')); | 1715 unittest.expect(o.code, unittest.equals('foo')); |
| 1716 checkUnnamed2073(o.data); | 1716 checkUnnamed2390(o.data); |
| 1717 unittest.expect(o.message, unittest.equals('foo')); | 1717 unittest.expect(o.message, unittest.equals('foo')); |
| 1718 } | 1718 } |
| 1719 buildCounterForwardingRulesScopedListWarning--; | 1719 buildCounterForwardingRulesScopedListWarning--; |
| 1720 } | 1720 } |
| 1721 | 1721 |
| 1722 core.int buildCounterForwardingRulesScopedList = 0; | 1722 core.int buildCounterForwardingRulesScopedList = 0; |
| 1723 buildForwardingRulesScopedList() { | 1723 buildForwardingRulesScopedList() { |
| 1724 var o = new api.ForwardingRulesScopedList(); | 1724 var o = new api.ForwardingRulesScopedList(); |
| 1725 buildCounterForwardingRulesScopedList++; | 1725 buildCounterForwardingRulesScopedList++; |
| 1726 if (buildCounterForwardingRulesScopedList < 3) { | 1726 if (buildCounterForwardingRulesScopedList < 3) { |
| 1727 o.forwardingRules = buildUnnamed2072(); | 1727 o.forwardingRules = buildUnnamed2389(); |
| 1728 o.warning = buildForwardingRulesScopedListWarning(); | 1728 o.warning = buildForwardingRulesScopedListWarning(); |
| 1729 } | 1729 } |
| 1730 buildCounterForwardingRulesScopedList--; | 1730 buildCounterForwardingRulesScopedList--; |
| 1731 return o; | 1731 return o; |
| 1732 } | 1732 } |
| 1733 | 1733 |
| 1734 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 1734 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 1735 buildCounterForwardingRulesScopedList++; | 1735 buildCounterForwardingRulesScopedList++; |
| 1736 if (buildCounterForwardingRulesScopedList < 3) { | 1736 if (buildCounterForwardingRulesScopedList < 3) { |
| 1737 checkUnnamed2072(o.forwardingRules); | 1737 checkUnnamed2389(o.forwardingRules); |
| 1738 checkForwardingRulesScopedListWarning(o.warning); | 1738 checkForwardingRulesScopedListWarning(o.warning); |
| 1739 } | 1739 } |
| 1740 buildCounterForwardingRulesScopedList--; | 1740 buildCounterForwardingRulesScopedList--; |
| 1741 } | 1741 } |
| 1742 | 1742 |
| 1743 core.int buildCounterHealthCheckReference = 0; | 1743 core.int buildCounterHealthCheckReference = 0; |
| 1744 buildHealthCheckReference() { | 1744 buildHealthCheckReference() { |
| 1745 var o = new api.HealthCheckReference(); | 1745 var o = new api.HealthCheckReference(); |
| 1746 buildCounterHealthCheckReference++; | 1746 buildCounterHealthCheckReference++; |
| 1747 if (buildCounterHealthCheckReference < 3) { | 1747 if (buildCounterHealthCheckReference < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1777 buildCounterHealthStatus++; | 1777 buildCounterHealthStatus++; |
| 1778 if (buildCounterHealthStatus < 3) { | 1778 if (buildCounterHealthStatus < 3) { |
| 1779 unittest.expect(o.healthState, unittest.equals('foo')); | 1779 unittest.expect(o.healthState, unittest.equals('foo')); |
| 1780 unittest.expect(o.instance, unittest.equals('foo')); | 1780 unittest.expect(o.instance, unittest.equals('foo')); |
| 1781 unittest.expect(o.ipAddress, unittest.equals('foo')); | 1781 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 1782 unittest.expect(o.port, unittest.equals(42)); | 1782 unittest.expect(o.port, unittest.equals(42)); |
| 1783 } | 1783 } |
| 1784 buildCounterHealthStatus--; | 1784 buildCounterHealthStatus--; |
| 1785 } | 1785 } |
| 1786 | 1786 |
| 1787 buildUnnamed2074() { | 1787 buildUnnamed2391() { |
| 1788 var o = new core.List<core.String>(); | 1788 var o = new core.List<core.String>(); |
| 1789 o.add("foo"); | 1789 o.add("foo"); |
| 1790 o.add("foo"); | 1790 o.add("foo"); |
| 1791 return o; | 1791 return o; |
| 1792 } | 1792 } |
| 1793 | 1793 |
| 1794 checkUnnamed2074(core.List<core.String> o) { | 1794 checkUnnamed2391(core.List<core.String> o) { |
| 1795 unittest.expect(o, unittest.hasLength(2)); | 1795 unittest.expect(o, unittest.hasLength(2)); |
| 1796 unittest.expect(o[0], unittest.equals('foo')); | 1796 unittest.expect(o[0], unittest.equals('foo')); |
| 1797 unittest.expect(o[1], unittest.equals('foo')); | 1797 unittest.expect(o[1], unittest.equals('foo')); |
| 1798 } | 1798 } |
| 1799 | 1799 |
| 1800 core.int buildCounterHostRule = 0; | 1800 core.int buildCounterHostRule = 0; |
| 1801 buildHostRule() { | 1801 buildHostRule() { |
| 1802 var o = new api.HostRule(); | 1802 var o = new api.HostRule(); |
| 1803 buildCounterHostRule++; | 1803 buildCounterHostRule++; |
| 1804 if (buildCounterHostRule < 3) { | 1804 if (buildCounterHostRule < 3) { |
| 1805 o.description = "foo"; | 1805 o.description = "foo"; |
| 1806 o.hosts = buildUnnamed2074(); | 1806 o.hosts = buildUnnamed2391(); |
| 1807 o.pathMatcher = "foo"; | 1807 o.pathMatcher = "foo"; |
| 1808 } | 1808 } |
| 1809 buildCounterHostRule--; | 1809 buildCounterHostRule--; |
| 1810 return o; | 1810 return o; |
| 1811 } | 1811 } |
| 1812 | 1812 |
| 1813 checkHostRule(api.HostRule o) { | 1813 checkHostRule(api.HostRule o) { |
| 1814 buildCounterHostRule++; | 1814 buildCounterHostRule++; |
| 1815 if (buildCounterHostRule < 3) { | 1815 if (buildCounterHostRule < 3) { |
| 1816 unittest.expect(o.description, unittest.equals('foo')); | 1816 unittest.expect(o.description, unittest.equals('foo')); |
| 1817 checkUnnamed2074(o.hosts); | 1817 checkUnnamed2391(o.hosts); |
| 1818 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 1818 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 1819 } | 1819 } |
| 1820 buildCounterHostRule--; | 1820 buildCounterHostRule--; |
| 1821 } | 1821 } |
| 1822 | 1822 |
| 1823 core.int buildCounterHttpHealthCheck = 0; | 1823 core.int buildCounterHttpHealthCheck = 0; |
| 1824 buildHttpHealthCheck() { | 1824 buildHttpHealthCheck() { |
| 1825 var o = new api.HttpHealthCheck(); | 1825 var o = new api.HttpHealthCheck(); |
| 1826 buildCounterHttpHealthCheck++; | 1826 buildCounterHttpHealthCheck++; |
| 1827 if (buildCounterHttpHealthCheck < 3) { | 1827 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1856 unittest.expect(o.name, unittest.equals('foo')); | 1856 unittest.expect(o.name, unittest.equals('foo')); |
| 1857 unittest.expect(o.port, unittest.equals(42)); | 1857 unittest.expect(o.port, unittest.equals(42)); |
| 1858 unittest.expect(o.requestPath, unittest.equals('foo')); | 1858 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 1859 unittest.expect(o.selfLink, unittest.equals('foo')); | 1859 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1860 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1860 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1861 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 1861 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 1862 } | 1862 } |
| 1863 buildCounterHttpHealthCheck--; | 1863 buildCounterHttpHealthCheck--; |
| 1864 } | 1864 } |
| 1865 | 1865 |
| 1866 buildUnnamed2075() { | 1866 buildUnnamed2392() { |
| 1867 var o = new core.List<api.HttpHealthCheck>(); | 1867 var o = new core.List<api.HttpHealthCheck>(); |
| 1868 o.add(buildHttpHealthCheck()); | 1868 o.add(buildHttpHealthCheck()); |
| 1869 o.add(buildHttpHealthCheck()); | 1869 o.add(buildHttpHealthCheck()); |
| 1870 return o; | 1870 return o; |
| 1871 } | 1871 } |
| 1872 | 1872 |
| 1873 checkUnnamed2075(core.List<api.HttpHealthCheck> o) { | 1873 checkUnnamed2392(core.List<api.HttpHealthCheck> o) { |
| 1874 unittest.expect(o, unittest.hasLength(2)); | 1874 unittest.expect(o, unittest.hasLength(2)); |
| 1875 checkHttpHealthCheck(o[0]); | 1875 checkHttpHealthCheck(o[0]); |
| 1876 checkHttpHealthCheck(o[1]); | 1876 checkHttpHealthCheck(o[1]); |
| 1877 } | 1877 } |
| 1878 | 1878 |
| 1879 core.int buildCounterHttpHealthCheckList = 0; | 1879 core.int buildCounterHttpHealthCheckList = 0; |
| 1880 buildHttpHealthCheckList() { | 1880 buildHttpHealthCheckList() { |
| 1881 var o = new api.HttpHealthCheckList(); | 1881 var o = new api.HttpHealthCheckList(); |
| 1882 buildCounterHttpHealthCheckList++; | 1882 buildCounterHttpHealthCheckList++; |
| 1883 if (buildCounterHttpHealthCheckList < 3) { | 1883 if (buildCounterHttpHealthCheckList < 3) { |
| 1884 o.id = "foo"; | 1884 o.id = "foo"; |
| 1885 o.items = buildUnnamed2075(); | 1885 o.items = buildUnnamed2392(); |
| 1886 o.kind = "foo"; | 1886 o.kind = "foo"; |
| 1887 o.nextPageToken = "foo"; | 1887 o.nextPageToken = "foo"; |
| 1888 o.selfLink = "foo"; | 1888 o.selfLink = "foo"; |
| 1889 } | 1889 } |
| 1890 buildCounterHttpHealthCheckList--; | 1890 buildCounterHttpHealthCheckList--; |
| 1891 return o; | 1891 return o; |
| 1892 } | 1892 } |
| 1893 | 1893 |
| 1894 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 1894 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 1895 buildCounterHttpHealthCheckList++; | 1895 buildCounterHttpHealthCheckList++; |
| 1896 if (buildCounterHttpHealthCheckList < 3) { | 1896 if (buildCounterHttpHealthCheckList < 3) { |
| 1897 unittest.expect(o.id, unittest.equals('foo')); | 1897 unittest.expect(o.id, unittest.equals('foo')); |
| 1898 checkUnnamed2075(o.items); | 1898 checkUnnamed2392(o.items); |
| 1899 unittest.expect(o.kind, unittest.equals('foo')); | 1899 unittest.expect(o.kind, unittest.equals('foo')); |
| 1900 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1900 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1901 unittest.expect(o.selfLink, unittest.equals('foo')); | 1901 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1902 } | 1902 } |
| 1903 buildCounterHttpHealthCheckList--; | 1903 buildCounterHttpHealthCheckList--; |
| 1904 } | 1904 } |
| 1905 | 1905 |
| 1906 core.int buildCounterHttpsHealthCheck = 0; | 1906 core.int buildCounterHttpsHealthCheck = 0; |
| 1907 buildHttpsHealthCheck() { | 1907 buildHttpsHealthCheck() { |
| 1908 var o = new api.HttpsHealthCheck(); | 1908 var o = new api.HttpsHealthCheck(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1939 unittest.expect(o.name, unittest.equals('foo')); | 1939 unittest.expect(o.name, unittest.equals('foo')); |
| 1940 unittest.expect(o.port, unittest.equals(42)); | 1940 unittest.expect(o.port, unittest.equals(42)); |
| 1941 unittest.expect(o.requestPath, unittest.equals('foo')); | 1941 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 1942 unittest.expect(o.selfLink, unittest.equals('foo')); | 1942 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1943 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1943 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1944 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 1944 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 1945 } | 1945 } |
| 1946 buildCounterHttpsHealthCheck--; | 1946 buildCounterHttpsHealthCheck--; |
| 1947 } | 1947 } |
| 1948 | 1948 |
| 1949 buildUnnamed2076() { | 1949 buildUnnamed2393() { |
| 1950 var o = new core.List<api.HttpsHealthCheck>(); | 1950 var o = new core.List<api.HttpsHealthCheck>(); |
| 1951 o.add(buildHttpsHealthCheck()); | 1951 o.add(buildHttpsHealthCheck()); |
| 1952 o.add(buildHttpsHealthCheck()); | 1952 o.add(buildHttpsHealthCheck()); |
| 1953 return o; | 1953 return o; |
| 1954 } | 1954 } |
| 1955 | 1955 |
| 1956 checkUnnamed2076(core.List<api.HttpsHealthCheck> o) { | 1956 checkUnnamed2393(core.List<api.HttpsHealthCheck> o) { |
| 1957 unittest.expect(o, unittest.hasLength(2)); | 1957 unittest.expect(o, unittest.hasLength(2)); |
| 1958 checkHttpsHealthCheck(o[0]); | 1958 checkHttpsHealthCheck(o[0]); |
| 1959 checkHttpsHealthCheck(o[1]); | 1959 checkHttpsHealthCheck(o[1]); |
| 1960 } | 1960 } |
| 1961 | 1961 |
| 1962 core.int buildCounterHttpsHealthCheckList = 0; | 1962 core.int buildCounterHttpsHealthCheckList = 0; |
| 1963 buildHttpsHealthCheckList() { | 1963 buildHttpsHealthCheckList() { |
| 1964 var o = new api.HttpsHealthCheckList(); | 1964 var o = new api.HttpsHealthCheckList(); |
| 1965 buildCounterHttpsHealthCheckList++; | 1965 buildCounterHttpsHealthCheckList++; |
| 1966 if (buildCounterHttpsHealthCheckList < 3) { | 1966 if (buildCounterHttpsHealthCheckList < 3) { |
| 1967 o.id = "foo"; | 1967 o.id = "foo"; |
| 1968 o.items = buildUnnamed2076(); | 1968 o.items = buildUnnamed2393(); |
| 1969 o.kind = "foo"; | 1969 o.kind = "foo"; |
| 1970 o.nextPageToken = "foo"; | 1970 o.nextPageToken = "foo"; |
| 1971 o.selfLink = "foo"; | 1971 o.selfLink = "foo"; |
| 1972 } | 1972 } |
| 1973 buildCounterHttpsHealthCheckList--; | 1973 buildCounterHttpsHealthCheckList--; |
| 1974 return o; | 1974 return o; |
| 1975 } | 1975 } |
| 1976 | 1976 |
| 1977 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { | 1977 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { |
| 1978 buildCounterHttpsHealthCheckList++; | 1978 buildCounterHttpsHealthCheckList++; |
| 1979 if (buildCounterHttpsHealthCheckList < 3) { | 1979 if (buildCounterHttpsHealthCheckList < 3) { |
| 1980 unittest.expect(o.id, unittest.equals('foo')); | 1980 unittest.expect(o.id, unittest.equals('foo')); |
| 1981 checkUnnamed2076(o.items); | 1981 checkUnnamed2393(o.items); |
| 1982 unittest.expect(o.kind, unittest.equals('foo')); | 1982 unittest.expect(o.kind, unittest.equals('foo')); |
| 1983 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1983 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1984 unittest.expect(o.selfLink, unittest.equals('foo')); | 1984 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1985 } | 1985 } |
| 1986 buildCounterHttpsHealthCheckList--; | 1986 buildCounterHttpsHealthCheckList--; |
| 1987 } | 1987 } |
| 1988 | 1988 |
| 1989 buildUnnamed2077() { | 1989 buildUnnamed2394() { |
| 1990 var o = new core.List<core.String>(); | 1990 var o = new core.List<core.String>(); |
| 1991 o.add("foo"); | 1991 o.add("foo"); |
| 1992 o.add("foo"); | 1992 o.add("foo"); |
| 1993 return o; | 1993 return o; |
| 1994 } | 1994 } |
| 1995 | 1995 |
| 1996 checkUnnamed2077(core.List<core.String> o) { | 1996 checkUnnamed2394(core.List<core.String> o) { |
| 1997 unittest.expect(o, unittest.hasLength(2)); | 1997 unittest.expect(o, unittest.hasLength(2)); |
| 1998 unittest.expect(o[0], unittest.equals('foo')); | 1998 unittest.expect(o[0], unittest.equals('foo')); |
| 1999 unittest.expect(o[1], unittest.equals('foo')); | 1999 unittest.expect(o[1], unittest.equals('foo')); |
| 2000 } | 2000 } |
| 2001 | 2001 |
| 2002 core.int buildCounterImageRawDisk = 0; | 2002 core.int buildCounterImageRawDisk = 0; |
| 2003 buildImageRawDisk() { | 2003 buildImageRawDisk() { |
| 2004 var o = new api.ImageRawDisk(); | 2004 var o = new api.ImageRawDisk(); |
| 2005 buildCounterImageRawDisk++; | 2005 buildCounterImageRawDisk++; |
| 2006 if (buildCounterImageRawDisk < 3) { | 2006 if (buildCounterImageRawDisk < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 2027 var o = new api.Image(); | 2027 var o = new api.Image(); |
| 2028 buildCounterImage++; | 2028 buildCounterImage++; |
| 2029 if (buildCounterImage < 3) { | 2029 if (buildCounterImage < 3) { |
| 2030 o.archiveSizeBytes = "foo"; | 2030 o.archiveSizeBytes = "foo"; |
| 2031 o.creationTimestamp = "foo"; | 2031 o.creationTimestamp = "foo"; |
| 2032 o.deprecated = buildDeprecationStatus(); | 2032 o.deprecated = buildDeprecationStatus(); |
| 2033 o.description = "foo"; | 2033 o.description = "foo"; |
| 2034 o.diskSizeGb = "foo"; | 2034 o.diskSizeGb = "foo"; |
| 2035 o.id = "foo"; | 2035 o.id = "foo"; |
| 2036 o.kind = "foo"; | 2036 o.kind = "foo"; |
| 2037 o.licenses = buildUnnamed2077(); | 2037 o.licenses = buildUnnamed2394(); |
| 2038 o.name = "foo"; | 2038 o.name = "foo"; |
| 2039 o.rawDisk = buildImageRawDisk(); | 2039 o.rawDisk = buildImageRawDisk(); |
| 2040 o.selfLink = "foo"; | 2040 o.selfLink = "foo"; |
| 2041 o.sourceDisk = "foo"; | 2041 o.sourceDisk = "foo"; |
| 2042 o.sourceDiskId = "foo"; | 2042 o.sourceDiskId = "foo"; |
| 2043 o.sourceType = "foo"; | 2043 o.sourceType = "foo"; |
| 2044 o.status = "foo"; | 2044 o.status = "foo"; |
| 2045 } | 2045 } |
| 2046 buildCounterImage--; | 2046 buildCounterImage--; |
| 2047 return o; | 2047 return o; |
| 2048 } | 2048 } |
| 2049 | 2049 |
| 2050 checkImage(api.Image o) { | 2050 checkImage(api.Image o) { |
| 2051 buildCounterImage++; | 2051 buildCounterImage++; |
| 2052 if (buildCounterImage < 3) { | 2052 if (buildCounterImage < 3) { |
| 2053 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 2053 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 2054 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2054 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2055 checkDeprecationStatus(o.deprecated); | 2055 checkDeprecationStatus(o.deprecated); |
| 2056 unittest.expect(o.description, unittest.equals('foo')); | 2056 unittest.expect(o.description, unittest.equals('foo')); |
| 2057 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 2057 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 2058 unittest.expect(o.id, unittest.equals('foo')); | 2058 unittest.expect(o.id, unittest.equals('foo')); |
| 2059 unittest.expect(o.kind, unittest.equals('foo')); | 2059 unittest.expect(o.kind, unittest.equals('foo')); |
| 2060 checkUnnamed2077(o.licenses); | 2060 checkUnnamed2394(o.licenses); |
| 2061 unittest.expect(o.name, unittest.equals('foo')); | 2061 unittest.expect(o.name, unittest.equals('foo')); |
| 2062 checkImageRawDisk(o.rawDisk); | 2062 checkImageRawDisk(o.rawDisk); |
| 2063 unittest.expect(o.selfLink, unittest.equals('foo')); | 2063 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2064 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 2064 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 2065 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 2065 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 2066 unittest.expect(o.sourceType, unittest.equals('foo')); | 2066 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 2067 unittest.expect(o.status, unittest.equals('foo')); | 2067 unittest.expect(o.status, unittest.equals('foo')); |
| 2068 } | 2068 } |
| 2069 buildCounterImage--; | 2069 buildCounterImage--; |
| 2070 } | 2070 } |
| 2071 | 2071 |
| 2072 buildUnnamed2078() { | 2072 buildUnnamed2395() { |
| 2073 var o = new core.List<api.Image>(); | 2073 var o = new core.List<api.Image>(); |
| 2074 o.add(buildImage()); | 2074 o.add(buildImage()); |
| 2075 o.add(buildImage()); | 2075 o.add(buildImage()); |
| 2076 return o; | 2076 return o; |
| 2077 } | 2077 } |
| 2078 | 2078 |
| 2079 checkUnnamed2078(core.List<api.Image> o) { | 2079 checkUnnamed2395(core.List<api.Image> o) { |
| 2080 unittest.expect(o, unittest.hasLength(2)); | 2080 unittest.expect(o, unittest.hasLength(2)); |
| 2081 checkImage(o[0]); | 2081 checkImage(o[0]); |
| 2082 checkImage(o[1]); | 2082 checkImage(o[1]); |
| 2083 } | 2083 } |
| 2084 | 2084 |
| 2085 core.int buildCounterImageList = 0; | 2085 core.int buildCounterImageList = 0; |
| 2086 buildImageList() { | 2086 buildImageList() { |
| 2087 var o = new api.ImageList(); | 2087 var o = new api.ImageList(); |
| 2088 buildCounterImageList++; | 2088 buildCounterImageList++; |
| 2089 if (buildCounterImageList < 3) { | 2089 if (buildCounterImageList < 3) { |
| 2090 o.id = "foo"; | 2090 o.id = "foo"; |
| 2091 o.items = buildUnnamed2078(); | 2091 o.items = buildUnnamed2395(); |
| 2092 o.kind = "foo"; | 2092 o.kind = "foo"; |
| 2093 o.nextPageToken = "foo"; | 2093 o.nextPageToken = "foo"; |
| 2094 o.selfLink = "foo"; | 2094 o.selfLink = "foo"; |
| 2095 } | 2095 } |
| 2096 buildCounterImageList--; | 2096 buildCounterImageList--; |
| 2097 return o; | 2097 return o; |
| 2098 } | 2098 } |
| 2099 | 2099 |
| 2100 checkImageList(api.ImageList o) { | 2100 checkImageList(api.ImageList o) { |
| 2101 buildCounterImageList++; | 2101 buildCounterImageList++; |
| 2102 if (buildCounterImageList < 3) { | 2102 if (buildCounterImageList < 3) { |
| 2103 unittest.expect(o.id, unittest.equals('foo')); | 2103 unittest.expect(o.id, unittest.equals('foo')); |
| 2104 checkUnnamed2078(o.items); | 2104 checkUnnamed2395(o.items); |
| 2105 unittest.expect(o.kind, unittest.equals('foo')); | 2105 unittest.expect(o.kind, unittest.equals('foo')); |
| 2106 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2106 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2107 unittest.expect(o.selfLink, unittest.equals('foo')); | 2107 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2108 } | 2108 } |
| 2109 buildCounterImageList--; | 2109 buildCounterImageList--; |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 buildUnnamed2079() { | 2112 buildUnnamed2396() { |
| 2113 var o = new core.List<api.AttachedDisk>(); | 2113 var o = new core.List<api.AttachedDisk>(); |
| 2114 o.add(buildAttachedDisk()); | 2114 o.add(buildAttachedDisk()); |
| 2115 o.add(buildAttachedDisk()); | 2115 o.add(buildAttachedDisk()); |
| 2116 return o; | 2116 return o; |
| 2117 } | 2117 } |
| 2118 | 2118 |
| 2119 checkUnnamed2079(core.List<api.AttachedDisk> o) { | 2119 checkUnnamed2396(core.List<api.AttachedDisk> o) { |
| 2120 unittest.expect(o, unittest.hasLength(2)); | 2120 unittest.expect(o, unittest.hasLength(2)); |
| 2121 checkAttachedDisk(o[0]); | 2121 checkAttachedDisk(o[0]); |
| 2122 checkAttachedDisk(o[1]); | 2122 checkAttachedDisk(o[1]); |
| 2123 } | 2123 } |
| 2124 | 2124 |
| 2125 buildUnnamed2080() { | 2125 buildUnnamed2397() { |
| 2126 var o = new core.List<api.NetworkInterface>(); | 2126 var o = new core.List<api.NetworkInterface>(); |
| 2127 o.add(buildNetworkInterface()); | 2127 o.add(buildNetworkInterface()); |
| 2128 o.add(buildNetworkInterface()); | 2128 o.add(buildNetworkInterface()); |
| 2129 return o; | 2129 return o; |
| 2130 } | 2130 } |
| 2131 | 2131 |
| 2132 checkUnnamed2080(core.List<api.NetworkInterface> o) { | 2132 checkUnnamed2397(core.List<api.NetworkInterface> o) { |
| 2133 unittest.expect(o, unittest.hasLength(2)); | 2133 unittest.expect(o, unittest.hasLength(2)); |
| 2134 checkNetworkInterface(o[0]); | 2134 checkNetworkInterface(o[0]); |
| 2135 checkNetworkInterface(o[1]); | 2135 checkNetworkInterface(o[1]); |
| 2136 } | 2136 } |
| 2137 | 2137 |
| 2138 buildUnnamed2081() { | 2138 buildUnnamed2398() { |
| 2139 var o = new core.List<api.ServiceAccount>(); | 2139 var o = new core.List<api.ServiceAccount>(); |
| 2140 o.add(buildServiceAccount()); | 2140 o.add(buildServiceAccount()); |
| 2141 o.add(buildServiceAccount()); | 2141 o.add(buildServiceAccount()); |
| 2142 return o; | 2142 return o; |
| 2143 } | 2143 } |
| 2144 | 2144 |
| 2145 checkUnnamed2081(core.List<api.ServiceAccount> o) { | 2145 checkUnnamed2398(core.List<api.ServiceAccount> o) { |
| 2146 unittest.expect(o, unittest.hasLength(2)); | 2146 unittest.expect(o, unittest.hasLength(2)); |
| 2147 checkServiceAccount(o[0]); | 2147 checkServiceAccount(o[0]); |
| 2148 checkServiceAccount(o[1]); | 2148 checkServiceAccount(o[1]); |
| 2149 } | 2149 } |
| 2150 | 2150 |
| 2151 core.int buildCounterInstance = 0; | 2151 core.int buildCounterInstance = 0; |
| 2152 buildInstance() { | 2152 buildInstance() { |
| 2153 var o = new api.Instance(); | 2153 var o = new api.Instance(); |
| 2154 buildCounterInstance++; | 2154 buildCounterInstance++; |
| 2155 if (buildCounterInstance < 3) { | 2155 if (buildCounterInstance < 3) { |
| 2156 o.canIpForward = true; | 2156 o.canIpForward = true; |
| 2157 o.cpuPlatform = "foo"; | 2157 o.cpuPlatform = "foo"; |
| 2158 o.creationTimestamp = "foo"; | 2158 o.creationTimestamp = "foo"; |
| 2159 o.description = "foo"; | 2159 o.description = "foo"; |
| 2160 o.disks = buildUnnamed2079(); | 2160 o.disks = buildUnnamed2396(); |
| 2161 o.id = "foo"; | 2161 o.id = "foo"; |
| 2162 o.kind = "foo"; | 2162 o.kind = "foo"; |
| 2163 o.machineType = "foo"; | 2163 o.machineType = "foo"; |
| 2164 o.metadata = buildMetadata(); | 2164 o.metadata = buildMetadata(); |
| 2165 o.name = "foo"; | 2165 o.name = "foo"; |
| 2166 o.networkInterfaces = buildUnnamed2080(); | 2166 o.networkInterfaces = buildUnnamed2397(); |
| 2167 o.scheduling = buildScheduling(); | 2167 o.scheduling = buildScheduling(); |
| 2168 o.selfLink = "foo"; | 2168 o.selfLink = "foo"; |
| 2169 o.serviceAccounts = buildUnnamed2081(); | 2169 o.serviceAccounts = buildUnnamed2398(); |
| 2170 o.status = "foo"; | 2170 o.status = "foo"; |
| 2171 o.statusMessage = "foo"; | 2171 o.statusMessage = "foo"; |
| 2172 o.tags = buildTags(); | 2172 o.tags = buildTags(); |
| 2173 o.zone = "foo"; | 2173 o.zone = "foo"; |
| 2174 } | 2174 } |
| 2175 buildCounterInstance--; | 2175 buildCounterInstance--; |
| 2176 return o; | 2176 return o; |
| 2177 } | 2177 } |
| 2178 | 2178 |
| 2179 checkInstance(api.Instance o) { | 2179 checkInstance(api.Instance o) { |
| 2180 buildCounterInstance++; | 2180 buildCounterInstance++; |
| 2181 if (buildCounterInstance < 3) { | 2181 if (buildCounterInstance < 3) { |
| 2182 unittest.expect(o.canIpForward, unittest.isTrue); | 2182 unittest.expect(o.canIpForward, unittest.isTrue); |
| 2183 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 2183 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 2184 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2184 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2185 unittest.expect(o.description, unittest.equals('foo')); | 2185 unittest.expect(o.description, unittest.equals('foo')); |
| 2186 checkUnnamed2079(o.disks); | 2186 checkUnnamed2396(o.disks); |
| 2187 unittest.expect(o.id, unittest.equals('foo')); | 2187 unittest.expect(o.id, unittest.equals('foo')); |
| 2188 unittest.expect(o.kind, unittest.equals('foo')); | 2188 unittest.expect(o.kind, unittest.equals('foo')); |
| 2189 unittest.expect(o.machineType, unittest.equals('foo')); | 2189 unittest.expect(o.machineType, unittest.equals('foo')); |
| 2190 checkMetadata(o.metadata); | 2190 checkMetadata(o.metadata); |
| 2191 unittest.expect(o.name, unittest.equals('foo')); | 2191 unittest.expect(o.name, unittest.equals('foo')); |
| 2192 checkUnnamed2080(o.networkInterfaces); | 2192 checkUnnamed2397(o.networkInterfaces); |
| 2193 checkScheduling(o.scheduling); | 2193 checkScheduling(o.scheduling); |
| 2194 unittest.expect(o.selfLink, unittest.equals('foo')); | 2194 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2195 checkUnnamed2081(o.serviceAccounts); | 2195 checkUnnamed2398(o.serviceAccounts); |
| 2196 unittest.expect(o.status, unittest.equals('foo')); | 2196 unittest.expect(o.status, unittest.equals('foo')); |
| 2197 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2197 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2198 checkTags(o.tags); | 2198 checkTags(o.tags); |
| 2199 unittest.expect(o.zone, unittest.equals('foo')); | 2199 unittest.expect(o.zone, unittest.equals('foo')); |
| 2200 } | 2200 } |
| 2201 buildCounterInstance--; | 2201 buildCounterInstance--; |
| 2202 } | 2202 } |
| 2203 | 2203 |
| 2204 buildUnnamed2082() { | 2204 buildUnnamed2399() { |
| 2205 var o = new core.Map<core.String, api.InstancesScopedList>(); | 2205 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 2206 o["x"] = buildInstancesScopedList(); | 2206 o["x"] = buildInstancesScopedList(); |
| 2207 o["y"] = buildInstancesScopedList(); | 2207 o["y"] = buildInstancesScopedList(); |
| 2208 return o; | 2208 return o; |
| 2209 } | 2209 } |
| 2210 | 2210 |
| 2211 checkUnnamed2082(core.Map<core.String, api.InstancesScopedList> o) { | 2211 checkUnnamed2399(core.Map<core.String, api.InstancesScopedList> o) { |
| 2212 unittest.expect(o, unittest.hasLength(2)); | 2212 unittest.expect(o, unittest.hasLength(2)); |
| 2213 checkInstancesScopedList(o["x"]); | 2213 checkInstancesScopedList(o["x"]); |
| 2214 checkInstancesScopedList(o["y"]); | 2214 checkInstancesScopedList(o["y"]); |
| 2215 } | 2215 } |
| 2216 | 2216 |
| 2217 core.int buildCounterInstanceAggregatedList = 0; | 2217 core.int buildCounterInstanceAggregatedList = 0; |
| 2218 buildInstanceAggregatedList() { | 2218 buildInstanceAggregatedList() { |
| 2219 var o = new api.InstanceAggregatedList(); | 2219 var o = new api.InstanceAggregatedList(); |
| 2220 buildCounterInstanceAggregatedList++; | 2220 buildCounterInstanceAggregatedList++; |
| 2221 if (buildCounterInstanceAggregatedList < 3) { | 2221 if (buildCounterInstanceAggregatedList < 3) { |
| 2222 o.id = "foo"; | 2222 o.id = "foo"; |
| 2223 o.items = buildUnnamed2082(); | 2223 o.items = buildUnnamed2399(); |
| 2224 o.kind = "foo"; | 2224 o.kind = "foo"; |
| 2225 o.nextPageToken = "foo"; | 2225 o.nextPageToken = "foo"; |
| 2226 o.selfLink = "foo"; | 2226 o.selfLink = "foo"; |
| 2227 } | 2227 } |
| 2228 buildCounterInstanceAggregatedList--; | 2228 buildCounterInstanceAggregatedList--; |
| 2229 return o; | 2229 return o; |
| 2230 } | 2230 } |
| 2231 | 2231 |
| 2232 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 2232 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 2233 buildCounterInstanceAggregatedList++; | 2233 buildCounterInstanceAggregatedList++; |
| 2234 if (buildCounterInstanceAggregatedList < 3) { | 2234 if (buildCounterInstanceAggregatedList < 3) { |
| 2235 unittest.expect(o.id, unittest.equals('foo')); | 2235 unittest.expect(o.id, unittest.equals('foo')); |
| 2236 checkUnnamed2082(o.items); | 2236 checkUnnamed2399(o.items); |
| 2237 unittest.expect(o.kind, unittest.equals('foo')); | 2237 unittest.expect(o.kind, unittest.equals('foo')); |
| 2238 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2238 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2239 unittest.expect(o.selfLink, unittest.equals('foo')); | 2239 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2240 } | 2240 } |
| 2241 buildCounterInstanceAggregatedList--; | 2241 buildCounterInstanceAggregatedList--; |
| 2242 } | 2242 } |
| 2243 | 2243 |
| 2244 buildUnnamed2083() { | 2244 buildUnnamed2400() { |
| 2245 var o = new core.List<api.NamedPort>(); | 2245 var o = new core.List<api.NamedPort>(); |
| 2246 o.add(buildNamedPort()); | 2246 o.add(buildNamedPort()); |
| 2247 o.add(buildNamedPort()); | 2247 o.add(buildNamedPort()); |
| 2248 return o; | 2248 return o; |
| 2249 } | 2249 } |
| 2250 | 2250 |
| 2251 checkUnnamed2083(core.List<api.NamedPort> o) { | 2251 checkUnnamed2400(core.List<api.NamedPort> o) { |
| 2252 unittest.expect(o, unittest.hasLength(2)); | 2252 unittest.expect(o, unittest.hasLength(2)); |
| 2253 checkNamedPort(o[0]); | 2253 checkNamedPort(o[0]); |
| 2254 checkNamedPort(o[1]); | 2254 checkNamedPort(o[1]); |
| 2255 } | 2255 } |
| 2256 | 2256 |
| 2257 core.int buildCounterInstanceGroup = 0; | 2257 core.int buildCounterInstanceGroup = 0; |
| 2258 buildInstanceGroup() { | 2258 buildInstanceGroup() { |
| 2259 var o = new api.InstanceGroup(); | 2259 var o = new api.InstanceGroup(); |
| 2260 buildCounterInstanceGroup++; | 2260 buildCounterInstanceGroup++; |
| 2261 if (buildCounterInstanceGroup < 3) { | 2261 if (buildCounterInstanceGroup < 3) { |
| 2262 o.creationTimestamp = "foo"; | 2262 o.creationTimestamp = "foo"; |
| 2263 o.description = "foo"; | 2263 o.description = "foo"; |
| 2264 o.fingerprint = "foo"; | 2264 o.fingerprint = "foo"; |
| 2265 o.id = "foo"; | 2265 o.id = "foo"; |
| 2266 o.kind = "foo"; | 2266 o.kind = "foo"; |
| 2267 o.name = "foo"; | 2267 o.name = "foo"; |
| 2268 o.namedPorts = buildUnnamed2083(); | 2268 o.namedPorts = buildUnnamed2400(); |
| 2269 o.network = "foo"; | 2269 o.network = "foo"; |
| 2270 o.selfLink = "foo"; | 2270 o.selfLink = "foo"; |
| 2271 o.size = 42; | 2271 o.size = 42; |
| 2272 o.subnetwork = "foo"; | 2272 o.subnetwork = "foo"; |
| 2273 o.zone = "foo"; | 2273 o.zone = "foo"; |
| 2274 } | 2274 } |
| 2275 buildCounterInstanceGroup--; | 2275 buildCounterInstanceGroup--; |
| 2276 return o; | 2276 return o; |
| 2277 } | 2277 } |
| 2278 | 2278 |
| 2279 checkInstanceGroup(api.InstanceGroup o) { | 2279 checkInstanceGroup(api.InstanceGroup o) { |
| 2280 buildCounterInstanceGroup++; | 2280 buildCounterInstanceGroup++; |
| 2281 if (buildCounterInstanceGroup < 3) { | 2281 if (buildCounterInstanceGroup < 3) { |
| 2282 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2282 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2283 unittest.expect(o.description, unittest.equals('foo')); | 2283 unittest.expect(o.description, unittest.equals('foo')); |
| 2284 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2284 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2285 unittest.expect(o.id, unittest.equals('foo')); | 2285 unittest.expect(o.id, unittest.equals('foo')); |
| 2286 unittest.expect(o.kind, unittest.equals('foo')); | 2286 unittest.expect(o.kind, unittest.equals('foo')); |
| 2287 unittest.expect(o.name, unittest.equals('foo')); | 2287 unittest.expect(o.name, unittest.equals('foo')); |
| 2288 checkUnnamed2083(o.namedPorts); | 2288 checkUnnamed2400(o.namedPorts); |
| 2289 unittest.expect(o.network, unittest.equals('foo')); | 2289 unittest.expect(o.network, unittest.equals('foo')); |
| 2290 unittest.expect(o.selfLink, unittest.equals('foo')); | 2290 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2291 unittest.expect(o.size, unittest.equals(42)); | 2291 unittest.expect(o.size, unittest.equals(42)); |
| 2292 unittest.expect(o.subnetwork, unittest.equals('foo')); | 2292 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 2293 unittest.expect(o.zone, unittest.equals('foo')); | 2293 unittest.expect(o.zone, unittest.equals('foo')); |
| 2294 } | 2294 } |
| 2295 buildCounterInstanceGroup--; | 2295 buildCounterInstanceGroup--; |
| 2296 } | 2296 } |
| 2297 | 2297 |
| 2298 buildUnnamed2084() { | 2298 buildUnnamed2401() { |
| 2299 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 2299 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 2300 o["x"] = buildInstanceGroupsScopedList(); | 2300 o["x"] = buildInstanceGroupsScopedList(); |
| 2301 o["y"] = buildInstanceGroupsScopedList(); | 2301 o["y"] = buildInstanceGroupsScopedList(); |
| 2302 return o; | 2302 return o; |
| 2303 } | 2303 } |
| 2304 | 2304 |
| 2305 checkUnnamed2084(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 2305 checkUnnamed2401(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 2306 unittest.expect(o, unittest.hasLength(2)); | 2306 unittest.expect(o, unittest.hasLength(2)); |
| 2307 checkInstanceGroupsScopedList(o["x"]); | 2307 checkInstanceGroupsScopedList(o["x"]); |
| 2308 checkInstanceGroupsScopedList(o["y"]); | 2308 checkInstanceGroupsScopedList(o["y"]); |
| 2309 } | 2309 } |
| 2310 | 2310 |
| 2311 core.int buildCounterInstanceGroupAggregatedList = 0; | 2311 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 2312 buildInstanceGroupAggregatedList() { | 2312 buildInstanceGroupAggregatedList() { |
| 2313 var o = new api.InstanceGroupAggregatedList(); | 2313 var o = new api.InstanceGroupAggregatedList(); |
| 2314 buildCounterInstanceGroupAggregatedList++; | 2314 buildCounterInstanceGroupAggregatedList++; |
| 2315 if (buildCounterInstanceGroupAggregatedList < 3) { | 2315 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2316 o.id = "foo"; | 2316 o.id = "foo"; |
| 2317 o.items = buildUnnamed2084(); | 2317 o.items = buildUnnamed2401(); |
| 2318 o.kind = "foo"; | 2318 o.kind = "foo"; |
| 2319 o.nextPageToken = "foo"; | 2319 o.nextPageToken = "foo"; |
| 2320 o.selfLink = "foo"; | 2320 o.selfLink = "foo"; |
| 2321 } | 2321 } |
| 2322 buildCounterInstanceGroupAggregatedList--; | 2322 buildCounterInstanceGroupAggregatedList--; |
| 2323 return o; | 2323 return o; |
| 2324 } | 2324 } |
| 2325 | 2325 |
| 2326 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 2326 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 2327 buildCounterInstanceGroupAggregatedList++; | 2327 buildCounterInstanceGroupAggregatedList++; |
| 2328 if (buildCounterInstanceGroupAggregatedList < 3) { | 2328 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2329 unittest.expect(o.id, unittest.equals('foo')); | 2329 unittest.expect(o.id, unittest.equals('foo')); |
| 2330 checkUnnamed2084(o.items); | 2330 checkUnnamed2401(o.items); |
| 2331 unittest.expect(o.kind, unittest.equals('foo')); | 2331 unittest.expect(o.kind, unittest.equals('foo')); |
| 2332 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2332 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2333 unittest.expect(o.selfLink, unittest.equals('foo')); | 2333 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2334 } | 2334 } |
| 2335 buildCounterInstanceGroupAggregatedList--; | 2335 buildCounterInstanceGroupAggregatedList--; |
| 2336 } | 2336 } |
| 2337 | 2337 |
| 2338 buildUnnamed2085() { | 2338 buildUnnamed2402() { |
| 2339 var o = new core.List<api.InstanceGroup>(); | 2339 var o = new core.List<api.InstanceGroup>(); |
| 2340 o.add(buildInstanceGroup()); | 2340 o.add(buildInstanceGroup()); |
| 2341 o.add(buildInstanceGroup()); | 2341 o.add(buildInstanceGroup()); |
| 2342 return o; | 2342 return o; |
| 2343 } | 2343 } |
| 2344 | 2344 |
| 2345 checkUnnamed2085(core.List<api.InstanceGroup> o) { | 2345 checkUnnamed2402(core.List<api.InstanceGroup> o) { |
| 2346 unittest.expect(o, unittest.hasLength(2)); | 2346 unittest.expect(o, unittest.hasLength(2)); |
| 2347 checkInstanceGroup(o[0]); | 2347 checkInstanceGroup(o[0]); |
| 2348 checkInstanceGroup(o[1]); | 2348 checkInstanceGroup(o[1]); |
| 2349 } | 2349 } |
| 2350 | 2350 |
| 2351 core.int buildCounterInstanceGroupList = 0; | 2351 core.int buildCounterInstanceGroupList = 0; |
| 2352 buildInstanceGroupList() { | 2352 buildInstanceGroupList() { |
| 2353 var o = new api.InstanceGroupList(); | 2353 var o = new api.InstanceGroupList(); |
| 2354 buildCounterInstanceGroupList++; | 2354 buildCounterInstanceGroupList++; |
| 2355 if (buildCounterInstanceGroupList < 3) { | 2355 if (buildCounterInstanceGroupList < 3) { |
| 2356 o.id = "foo"; | 2356 o.id = "foo"; |
| 2357 o.items = buildUnnamed2085(); | 2357 o.items = buildUnnamed2402(); |
| 2358 o.kind = "foo"; | 2358 o.kind = "foo"; |
| 2359 o.nextPageToken = "foo"; | 2359 o.nextPageToken = "foo"; |
| 2360 o.selfLink = "foo"; | 2360 o.selfLink = "foo"; |
| 2361 } | 2361 } |
| 2362 buildCounterInstanceGroupList--; | 2362 buildCounterInstanceGroupList--; |
| 2363 return o; | 2363 return o; |
| 2364 } | 2364 } |
| 2365 | 2365 |
| 2366 checkInstanceGroupList(api.InstanceGroupList o) { | 2366 checkInstanceGroupList(api.InstanceGroupList o) { |
| 2367 buildCounterInstanceGroupList++; | 2367 buildCounterInstanceGroupList++; |
| 2368 if (buildCounterInstanceGroupList < 3) { | 2368 if (buildCounterInstanceGroupList < 3) { |
| 2369 unittest.expect(o.id, unittest.equals('foo')); | 2369 unittest.expect(o.id, unittest.equals('foo')); |
| 2370 checkUnnamed2085(o.items); | 2370 checkUnnamed2402(o.items); |
| 2371 unittest.expect(o.kind, unittest.equals('foo')); | 2371 unittest.expect(o.kind, unittest.equals('foo')); |
| 2372 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2372 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2373 unittest.expect(o.selfLink, unittest.equals('foo')); | 2373 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2374 } | 2374 } |
| 2375 buildCounterInstanceGroupList--; | 2375 buildCounterInstanceGroupList--; |
| 2376 } | 2376 } |
| 2377 | 2377 |
| 2378 buildUnnamed2086() { | 2378 buildUnnamed2403() { |
| 2379 var o = new core.List<api.NamedPort>(); | 2379 var o = new core.List<api.NamedPort>(); |
| 2380 o.add(buildNamedPort()); | 2380 o.add(buildNamedPort()); |
| 2381 o.add(buildNamedPort()); | 2381 o.add(buildNamedPort()); |
| 2382 return o; | 2382 return o; |
| 2383 } | 2383 } |
| 2384 | 2384 |
| 2385 checkUnnamed2086(core.List<api.NamedPort> o) { | 2385 checkUnnamed2403(core.List<api.NamedPort> o) { |
| 2386 unittest.expect(o, unittest.hasLength(2)); | 2386 unittest.expect(o, unittest.hasLength(2)); |
| 2387 checkNamedPort(o[0]); | 2387 checkNamedPort(o[0]); |
| 2388 checkNamedPort(o[1]); | 2388 checkNamedPort(o[1]); |
| 2389 } | 2389 } |
| 2390 | 2390 |
| 2391 buildUnnamed2087() { | 2391 buildUnnamed2404() { |
| 2392 var o = new core.List<core.String>(); | 2392 var o = new core.List<core.String>(); |
| 2393 o.add("foo"); | 2393 o.add("foo"); |
| 2394 o.add("foo"); | 2394 o.add("foo"); |
| 2395 return o; | 2395 return o; |
| 2396 } | 2396 } |
| 2397 | 2397 |
| 2398 checkUnnamed2087(core.List<core.String> o) { | 2398 checkUnnamed2404(core.List<core.String> o) { |
| 2399 unittest.expect(o, unittest.hasLength(2)); | 2399 unittest.expect(o, unittest.hasLength(2)); |
| 2400 unittest.expect(o[0], unittest.equals('foo')); | 2400 unittest.expect(o[0], unittest.equals('foo')); |
| 2401 unittest.expect(o[1], unittest.equals('foo')); | 2401 unittest.expect(o[1], unittest.equals('foo')); |
| 2402 } | 2402 } |
| 2403 | 2403 |
| 2404 core.int buildCounterInstanceGroupManager = 0; | 2404 core.int buildCounterInstanceGroupManager = 0; |
| 2405 buildInstanceGroupManager() { | 2405 buildInstanceGroupManager() { |
| 2406 var o = new api.InstanceGroupManager(); | 2406 var o = new api.InstanceGroupManager(); |
| 2407 buildCounterInstanceGroupManager++; | 2407 buildCounterInstanceGroupManager++; |
| 2408 if (buildCounterInstanceGroupManager < 3) { | 2408 if (buildCounterInstanceGroupManager < 3) { |
| 2409 o.baseInstanceName = "foo"; | 2409 o.baseInstanceName = "foo"; |
| 2410 o.creationTimestamp = "foo"; | 2410 o.creationTimestamp = "foo"; |
| 2411 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 2411 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 2412 o.description = "foo"; | 2412 o.description = "foo"; |
| 2413 o.fingerprint = "foo"; | 2413 o.fingerprint = "foo"; |
| 2414 o.id = "foo"; | 2414 o.id = "foo"; |
| 2415 o.instanceGroup = "foo"; | 2415 o.instanceGroup = "foo"; |
| 2416 o.instanceTemplate = "foo"; | 2416 o.instanceTemplate = "foo"; |
| 2417 o.kind = "foo"; | 2417 o.kind = "foo"; |
| 2418 o.name = "foo"; | 2418 o.name = "foo"; |
| 2419 o.namedPorts = buildUnnamed2086(); | 2419 o.namedPorts = buildUnnamed2403(); |
| 2420 o.selfLink = "foo"; | 2420 o.selfLink = "foo"; |
| 2421 o.targetPools = buildUnnamed2087(); | 2421 o.targetPools = buildUnnamed2404(); |
| 2422 o.targetSize = 42; | 2422 o.targetSize = 42; |
| 2423 o.zone = "foo"; | 2423 o.zone = "foo"; |
| 2424 } | 2424 } |
| 2425 buildCounterInstanceGroupManager--; | 2425 buildCounterInstanceGroupManager--; |
| 2426 return o; | 2426 return o; |
| 2427 } | 2427 } |
| 2428 | 2428 |
| 2429 checkInstanceGroupManager(api.InstanceGroupManager o) { | 2429 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 2430 buildCounterInstanceGroupManager++; | 2430 buildCounterInstanceGroupManager++; |
| 2431 if (buildCounterInstanceGroupManager < 3) { | 2431 if (buildCounterInstanceGroupManager < 3) { |
| 2432 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 2432 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 2433 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2433 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2434 checkInstanceGroupManagerActionsSummary(o.currentActions); | 2434 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 2435 unittest.expect(o.description, unittest.equals('foo')); | 2435 unittest.expect(o.description, unittest.equals('foo')); |
| 2436 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2436 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2437 unittest.expect(o.id, unittest.equals('foo')); | 2437 unittest.expect(o.id, unittest.equals('foo')); |
| 2438 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 2438 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 2439 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2439 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2440 unittest.expect(o.kind, unittest.equals('foo')); | 2440 unittest.expect(o.kind, unittest.equals('foo')); |
| 2441 unittest.expect(o.name, unittest.equals('foo')); | 2441 unittest.expect(o.name, unittest.equals('foo')); |
| 2442 checkUnnamed2086(o.namedPorts); | 2442 checkUnnamed2403(o.namedPorts); |
| 2443 unittest.expect(o.selfLink, unittest.equals('foo')); | 2443 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2444 checkUnnamed2087(o.targetPools); | 2444 checkUnnamed2404(o.targetPools); |
| 2445 unittest.expect(o.targetSize, unittest.equals(42)); | 2445 unittest.expect(o.targetSize, unittest.equals(42)); |
| 2446 unittest.expect(o.zone, unittest.equals('foo')); | 2446 unittest.expect(o.zone, unittest.equals('foo')); |
| 2447 } | 2447 } |
| 2448 buildCounterInstanceGroupManager--; | 2448 buildCounterInstanceGroupManager--; |
| 2449 } | 2449 } |
| 2450 | 2450 |
| 2451 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 2451 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 2452 buildInstanceGroupManagerActionsSummary() { | 2452 buildInstanceGroupManagerActionsSummary() { |
| 2453 var o = new api.InstanceGroupManagerActionsSummary(); | 2453 var o = new api.InstanceGroupManagerActionsSummary(); |
| 2454 buildCounterInstanceGroupManagerActionsSummary++; | 2454 buildCounterInstanceGroupManagerActionsSummary++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 2472 unittest.expect(o.creating, unittest.equals(42)); | 2472 unittest.expect(o.creating, unittest.equals(42)); |
| 2473 unittest.expect(o.deleting, unittest.equals(42)); | 2473 unittest.expect(o.deleting, unittest.equals(42)); |
| 2474 unittest.expect(o.none, unittest.equals(42)); | 2474 unittest.expect(o.none, unittest.equals(42)); |
| 2475 unittest.expect(o.recreating, unittest.equals(42)); | 2475 unittest.expect(o.recreating, unittest.equals(42)); |
| 2476 unittest.expect(o.refreshing, unittest.equals(42)); | 2476 unittest.expect(o.refreshing, unittest.equals(42)); |
| 2477 unittest.expect(o.restarting, unittest.equals(42)); | 2477 unittest.expect(o.restarting, unittest.equals(42)); |
| 2478 } | 2478 } |
| 2479 buildCounterInstanceGroupManagerActionsSummary--; | 2479 buildCounterInstanceGroupManagerActionsSummary--; |
| 2480 } | 2480 } |
| 2481 | 2481 |
| 2482 buildUnnamed2088() { | 2482 buildUnnamed2405() { |
| 2483 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 2483 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 2484 o["x"] = buildInstanceGroupManagersScopedList(); | 2484 o["x"] = buildInstanceGroupManagersScopedList(); |
| 2485 o["y"] = buildInstanceGroupManagersScopedList(); | 2485 o["y"] = buildInstanceGroupManagersScopedList(); |
| 2486 return o; | 2486 return o; |
| 2487 } | 2487 } |
| 2488 | 2488 |
| 2489 checkUnnamed2088(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 2489 checkUnnamed2405(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 2490 unittest.expect(o, unittest.hasLength(2)); | 2490 unittest.expect(o, unittest.hasLength(2)); |
| 2491 checkInstanceGroupManagersScopedList(o["x"]); | 2491 checkInstanceGroupManagersScopedList(o["x"]); |
| 2492 checkInstanceGroupManagersScopedList(o["y"]); | 2492 checkInstanceGroupManagersScopedList(o["y"]); |
| 2493 } | 2493 } |
| 2494 | 2494 |
| 2495 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 2495 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 2496 buildInstanceGroupManagerAggregatedList() { | 2496 buildInstanceGroupManagerAggregatedList() { |
| 2497 var o = new api.InstanceGroupManagerAggregatedList(); | 2497 var o = new api.InstanceGroupManagerAggregatedList(); |
| 2498 buildCounterInstanceGroupManagerAggregatedList++; | 2498 buildCounterInstanceGroupManagerAggregatedList++; |
| 2499 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2499 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2500 o.id = "foo"; | 2500 o.id = "foo"; |
| 2501 o.items = buildUnnamed2088(); | 2501 o.items = buildUnnamed2405(); |
| 2502 o.kind = "foo"; | 2502 o.kind = "foo"; |
| 2503 o.nextPageToken = "foo"; | 2503 o.nextPageToken = "foo"; |
| 2504 o.selfLink = "foo"; | 2504 o.selfLink = "foo"; |
| 2505 } | 2505 } |
| 2506 buildCounterInstanceGroupManagerAggregatedList--; | 2506 buildCounterInstanceGroupManagerAggregatedList--; |
| 2507 return o; | 2507 return o; |
| 2508 } | 2508 } |
| 2509 | 2509 |
| 2510 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 2510 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 2511 buildCounterInstanceGroupManagerAggregatedList++; | 2511 buildCounterInstanceGroupManagerAggregatedList++; |
| 2512 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2512 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2513 unittest.expect(o.id, unittest.equals('foo')); | 2513 unittest.expect(o.id, unittest.equals('foo')); |
| 2514 checkUnnamed2088(o.items); | 2514 checkUnnamed2405(o.items); |
| 2515 unittest.expect(o.kind, unittest.equals('foo')); | 2515 unittest.expect(o.kind, unittest.equals('foo')); |
| 2516 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2516 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2517 unittest.expect(o.selfLink, unittest.equals('foo')); | 2517 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2518 } | 2518 } |
| 2519 buildCounterInstanceGroupManagerAggregatedList--; | 2519 buildCounterInstanceGroupManagerAggregatedList--; |
| 2520 } | 2520 } |
| 2521 | 2521 |
| 2522 buildUnnamed2089() { | 2522 buildUnnamed2406() { |
| 2523 var o = new core.List<api.InstanceGroupManager>(); | 2523 var o = new core.List<api.InstanceGroupManager>(); |
| 2524 o.add(buildInstanceGroupManager()); | 2524 o.add(buildInstanceGroupManager()); |
| 2525 o.add(buildInstanceGroupManager()); | 2525 o.add(buildInstanceGroupManager()); |
| 2526 return o; | 2526 return o; |
| 2527 } | 2527 } |
| 2528 | 2528 |
| 2529 checkUnnamed2089(core.List<api.InstanceGroupManager> o) { | 2529 checkUnnamed2406(core.List<api.InstanceGroupManager> o) { |
| 2530 unittest.expect(o, unittest.hasLength(2)); | 2530 unittest.expect(o, unittest.hasLength(2)); |
| 2531 checkInstanceGroupManager(o[0]); | 2531 checkInstanceGroupManager(o[0]); |
| 2532 checkInstanceGroupManager(o[1]); | 2532 checkInstanceGroupManager(o[1]); |
| 2533 } | 2533 } |
| 2534 | 2534 |
| 2535 core.int buildCounterInstanceGroupManagerList = 0; | 2535 core.int buildCounterInstanceGroupManagerList = 0; |
| 2536 buildInstanceGroupManagerList() { | 2536 buildInstanceGroupManagerList() { |
| 2537 var o = new api.InstanceGroupManagerList(); | 2537 var o = new api.InstanceGroupManagerList(); |
| 2538 buildCounterInstanceGroupManagerList++; | 2538 buildCounterInstanceGroupManagerList++; |
| 2539 if (buildCounterInstanceGroupManagerList < 3) { | 2539 if (buildCounterInstanceGroupManagerList < 3) { |
| 2540 o.id = "foo"; | 2540 o.id = "foo"; |
| 2541 o.items = buildUnnamed2089(); | 2541 o.items = buildUnnamed2406(); |
| 2542 o.kind = "foo"; | 2542 o.kind = "foo"; |
| 2543 o.nextPageToken = "foo"; | 2543 o.nextPageToken = "foo"; |
| 2544 o.selfLink = "foo"; | 2544 o.selfLink = "foo"; |
| 2545 } | 2545 } |
| 2546 buildCounterInstanceGroupManagerList--; | 2546 buildCounterInstanceGroupManagerList--; |
| 2547 return o; | 2547 return o; |
| 2548 } | 2548 } |
| 2549 | 2549 |
| 2550 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 2550 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 2551 buildCounterInstanceGroupManagerList++; | 2551 buildCounterInstanceGroupManagerList++; |
| 2552 if (buildCounterInstanceGroupManagerList < 3) { | 2552 if (buildCounterInstanceGroupManagerList < 3) { |
| 2553 unittest.expect(o.id, unittest.equals('foo')); | 2553 unittest.expect(o.id, unittest.equals('foo')); |
| 2554 checkUnnamed2089(o.items); | 2554 checkUnnamed2406(o.items); |
| 2555 unittest.expect(o.kind, unittest.equals('foo')); | 2555 unittest.expect(o.kind, unittest.equals('foo')); |
| 2556 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2556 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2557 unittest.expect(o.selfLink, unittest.equals('foo')); | 2557 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2558 } | 2558 } |
| 2559 buildCounterInstanceGroupManagerList--; | 2559 buildCounterInstanceGroupManagerList--; |
| 2560 } | 2560 } |
| 2561 | 2561 |
| 2562 buildUnnamed2090() { | 2562 buildUnnamed2407() { |
| 2563 var o = new core.List<core.String>(); | 2563 var o = new core.List<core.String>(); |
| 2564 o.add("foo"); | 2564 o.add("foo"); |
| 2565 o.add("foo"); | 2565 o.add("foo"); |
| 2566 return o; | 2566 return o; |
| 2567 } | 2567 } |
| 2568 | 2568 |
| 2569 checkUnnamed2090(core.List<core.String> o) { | 2569 checkUnnamed2407(core.List<core.String> o) { |
| 2570 unittest.expect(o, unittest.hasLength(2)); | 2570 unittest.expect(o, unittest.hasLength(2)); |
| 2571 unittest.expect(o[0], unittest.equals('foo')); | 2571 unittest.expect(o[0], unittest.equals('foo')); |
| 2572 unittest.expect(o[1], unittest.equals('foo')); | 2572 unittest.expect(o[1], unittest.equals('foo')); |
| 2573 } | 2573 } |
| 2574 | 2574 |
| 2575 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 2575 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 2576 buildInstanceGroupManagersAbandonInstancesRequest() { | 2576 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 2577 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 2577 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 2578 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2578 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2579 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2579 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2580 o.instances = buildUnnamed2090(); | 2580 o.instances = buildUnnamed2407(); |
| 2581 } | 2581 } |
| 2582 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2582 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2583 return o; | 2583 return o; |
| 2584 } | 2584 } |
| 2585 | 2585 |
| 2586 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 2586 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 2587 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2587 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2588 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2588 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2589 checkUnnamed2090(o.instances); | 2589 checkUnnamed2407(o.instances); |
| 2590 } | 2590 } |
| 2591 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2591 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2592 } | 2592 } |
| 2593 | 2593 |
| 2594 buildUnnamed2091() { | 2594 buildUnnamed2408() { |
| 2595 var o = new core.List<core.String>(); | 2595 var o = new core.List<core.String>(); |
| 2596 o.add("foo"); | 2596 o.add("foo"); |
| 2597 o.add("foo"); | 2597 o.add("foo"); |
| 2598 return o; | 2598 return o; |
| 2599 } | 2599 } |
| 2600 | 2600 |
| 2601 checkUnnamed2091(core.List<core.String> o) { | 2601 checkUnnamed2408(core.List<core.String> o) { |
| 2602 unittest.expect(o, unittest.hasLength(2)); | 2602 unittest.expect(o, unittest.hasLength(2)); |
| 2603 unittest.expect(o[0], unittest.equals('foo')); | 2603 unittest.expect(o[0], unittest.equals('foo')); |
| 2604 unittest.expect(o[1], unittest.equals('foo')); | 2604 unittest.expect(o[1], unittest.equals('foo')); |
| 2605 } | 2605 } |
| 2606 | 2606 |
| 2607 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 2607 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 2608 buildInstanceGroupManagersDeleteInstancesRequest() { | 2608 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 2609 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 2609 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 2610 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2610 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2611 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2611 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2612 o.instances = buildUnnamed2091(); | 2612 o.instances = buildUnnamed2408(); |
| 2613 } | 2613 } |
| 2614 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2614 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2615 return o; | 2615 return o; |
| 2616 } | 2616 } |
| 2617 | 2617 |
| 2618 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 2618 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 2619 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2619 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2620 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2620 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2621 checkUnnamed2091(o.instances); | 2621 checkUnnamed2408(o.instances); |
| 2622 } | 2622 } |
| 2623 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2623 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2624 } | 2624 } |
| 2625 | 2625 |
| 2626 buildUnnamed2092() { | 2626 buildUnnamed2409() { |
| 2627 var o = new core.List<api.ManagedInstance>(); | 2627 var o = new core.List<api.ManagedInstance>(); |
| 2628 o.add(buildManagedInstance()); | 2628 o.add(buildManagedInstance()); |
| 2629 o.add(buildManagedInstance()); | 2629 o.add(buildManagedInstance()); |
| 2630 return o; | 2630 return o; |
| 2631 } | 2631 } |
| 2632 | 2632 |
| 2633 checkUnnamed2092(core.List<api.ManagedInstance> o) { | 2633 checkUnnamed2409(core.List<api.ManagedInstance> o) { |
| 2634 unittest.expect(o, unittest.hasLength(2)); | 2634 unittest.expect(o, unittest.hasLength(2)); |
| 2635 checkManagedInstance(o[0]); | 2635 checkManagedInstance(o[0]); |
| 2636 checkManagedInstance(o[1]); | 2636 checkManagedInstance(o[1]); |
| 2637 } | 2637 } |
| 2638 | 2638 |
| 2639 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 2639 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 2640 buildInstanceGroupManagersListManagedInstancesResponse() { | 2640 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 2641 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 2641 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 2642 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2642 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2643 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2643 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2644 o.managedInstances = buildUnnamed2092(); | 2644 o.managedInstances = buildUnnamed2409(); |
| 2645 } | 2645 } |
| 2646 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2646 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2647 return o; | 2647 return o; |
| 2648 } | 2648 } |
| 2649 | 2649 |
| 2650 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 2650 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 2651 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2651 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2652 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2652 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2653 checkUnnamed2092(o.managedInstances); | 2653 checkUnnamed2409(o.managedInstances); |
| 2654 } | 2654 } |
| 2655 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2655 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2656 } | 2656 } |
| 2657 | 2657 |
| 2658 buildUnnamed2093() { | 2658 buildUnnamed2410() { |
| 2659 var o = new core.List<core.String>(); | 2659 var o = new core.List<core.String>(); |
| 2660 o.add("foo"); | 2660 o.add("foo"); |
| 2661 o.add("foo"); | 2661 o.add("foo"); |
| 2662 return o; | 2662 return o; |
| 2663 } | 2663 } |
| 2664 | 2664 |
| 2665 checkUnnamed2093(core.List<core.String> o) { | 2665 checkUnnamed2410(core.List<core.String> o) { |
| 2666 unittest.expect(o, unittest.hasLength(2)); | 2666 unittest.expect(o, unittest.hasLength(2)); |
| 2667 unittest.expect(o[0], unittest.equals('foo')); | 2667 unittest.expect(o[0], unittest.equals('foo')); |
| 2668 unittest.expect(o[1], unittest.equals('foo')); | 2668 unittest.expect(o[1], unittest.equals('foo')); |
| 2669 } | 2669 } |
| 2670 | 2670 |
| 2671 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 2671 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 2672 buildInstanceGroupManagersRecreateInstancesRequest() { | 2672 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 2673 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 2673 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 2674 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2674 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2675 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2675 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2676 o.instances = buildUnnamed2093(); | 2676 o.instances = buildUnnamed2410(); |
| 2677 } | 2677 } |
| 2678 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2678 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2679 return o; | 2679 return o; |
| 2680 } | 2680 } |
| 2681 | 2681 |
| 2682 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 2682 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 2683 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2683 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2684 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2684 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2685 checkUnnamed2093(o.instances); | 2685 checkUnnamed2410(o.instances); |
| 2686 } | 2686 } |
| 2687 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2687 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2688 } | 2688 } |
| 2689 | 2689 |
| 2690 buildUnnamed2094() { | 2690 buildUnnamed2411() { |
| 2691 var o = new core.List<api.InstanceGroupManager>(); | 2691 var o = new core.List<api.InstanceGroupManager>(); |
| 2692 o.add(buildInstanceGroupManager()); | 2692 o.add(buildInstanceGroupManager()); |
| 2693 o.add(buildInstanceGroupManager()); | 2693 o.add(buildInstanceGroupManager()); |
| 2694 return o; | 2694 return o; |
| 2695 } | 2695 } |
| 2696 | 2696 |
| 2697 checkUnnamed2094(core.List<api.InstanceGroupManager> o) { | 2697 checkUnnamed2411(core.List<api.InstanceGroupManager> o) { |
| 2698 unittest.expect(o, unittest.hasLength(2)); | 2698 unittest.expect(o, unittest.hasLength(2)); |
| 2699 checkInstanceGroupManager(o[0]); | 2699 checkInstanceGroupManager(o[0]); |
| 2700 checkInstanceGroupManager(o[1]); | 2700 checkInstanceGroupManager(o[1]); |
| 2701 } | 2701 } |
| 2702 | 2702 |
| 2703 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 2703 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 2704 buildInstanceGroupManagersScopedListWarningData() { | 2704 buildInstanceGroupManagersScopedListWarningData() { |
| 2705 var o = new api.InstanceGroupManagersScopedListWarningData(); | 2705 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 2706 buildCounterInstanceGroupManagersScopedListWarningData++; | 2706 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2707 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2707 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2708 o.key = "foo"; | 2708 o.key = "foo"; |
| 2709 o.value = "foo"; | 2709 o.value = "foo"; |
| 2710 } | 2710 } |
| 2711 buildCounterInstanceGroupManagersScopedListWarningData--; | 2711 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2712 return o; | 2712 return o; |
| 2713 } | 2713 } |
| 2714 | 2714 |
| 2715 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 2715 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 2716 buildCounterInstanceGroupManagersScopedListWarningData++; | 2716 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2717 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2717 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2718 unittest.expect(o.key, unittest.equals('foo')); | 2718 unittest.expect(o.key, unittest.equals('foo')); |
| 2719 unittest.expect(o.value, unittest.equals('foo')); | 2719 unittest.expect(o.value, unittest.equals('foo')); |
| 2720 } | 2720 } |
| 2721 buildCounterInstanceGroupManagersScopedListWarningData--; | 2721 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2722 } | 2722 } |
| 2723 | 2723 |
| 2724 buildUnnamed2095() { | 2724 buildUnnamed2412() { |
| 2725 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 2725 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 2726 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2726 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2727 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2727 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2728 return o; | 2728 return o; |
| 2729 } | 2729 } |
| 2730 | 2730 |
| 2731 checkUnnamed2095(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 2731 checkUnnamed2412(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 2732 unittest.expect(o, unittest.hasLength(2)); | 2732 unittest.expect(o, unittest.hasLength(2)); |
| 2733 checkInstanceGroupManagersScopedListWarningData(o[0]); | 2733 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 2734 checkInstanceGroupManagersScopedListWarningData(o[1]); | 2734 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 2735 } | 2735 } |
| 2736 | 2736 |
| 2737 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 2737 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 2738 buildInstanceGroupManagersScopedListWarning() { | 2738 buildInstanceGroupManagersScopedListWarning() { |
| 2739 var o = new api.InstanceGroupManagersScopedListWarning(); | 2739 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 2740 buildCounterInstanceGroupManagersScopedListWarning++; | 2740 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2741 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2741 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2742 o.code = "foo"; | 2742 o.code = "foo"; |
| 2743 o.data = buildUnnamed2095(); | 2743 o.data = buildUnnamed2412(); |
| 2744 o.message = "foo"; | 2744 o.message = "foo"; |
| 2745 } | 2745 } |
| 2746 buildCounterInstanceGroupManagersScopedListWarning--; | 2746 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2747 return o; | 2747 return o; |
| 2748 } | 2748 } |
| 2749 | 2749 |
| 2750 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 2750 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 2751 buildCounterInstanceGroupManagersScopedListWarning++; | 2751 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2752 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2752 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2753 unittest.expect(o.code, unittest.equals('foo')); | 2753 unittest.expect(o.code, unittest.equals('foo')); |
| 2754 checkUnnamed2095(o.data); | 2754 checkUnnamed2412(o.data); |
| 2755 unittest.expect(o.message, unittest.equals('foo')); | 2755 unittest.expect(o.message, unittest.equals('foo')); |
| 2756 } | 2756 } |
| 2757 buildCounterInstanceGroupManagersScopedListWarning--; | 2757 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2758 } | 2758 } |
| 2759 | 2759 |
| 2760 core.int buildCounterInstanceGroupManagersScopedList = 0; | 2760 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 2761 buildInstanceGroupManagersScopedList() { | 2761 buildInstanceGroupManagersScopedList() { |
| 2762 var o = new api.InstanceGroupManagersScopedList(); | 2762 var o = new api.InstanceGroupManagersScopedList(); |
| 2763 buildCounterInstanceGroupManagersScopedList++; | 2763 buildCounterInstanceGroupManagersScopedList++; |
| 2764 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2764 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2765 o.instanceGroupManagers = buildUnnamed2094(); | 2765 o.instanceGroupManagers = buildUnnamed2411(); |
| 2766 o.warning = buildInstanceGroupManagersScopedListWarning(); | 2766 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 2767 } | 2767 } |
| 2768 buildCounterInstanceGroupManagersScopedList--; | 2768 buildCounterInstanceGroupManagersScopedList--; |
| 2769 return o; | 2769 return o; |
| 2770 } | 2770 } |
| 2771 | 2771 |
| 2772 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 2772 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 2773 buildCounterInstanceGroupManagersScopedList++; | 2773 buildCounterInstanceGroupManagersScopedList++; |
| 2774 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2774 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2775 checkUnnamed2094(o.instanceGroupManagers); | 2775 checkUnnamed2411(o.instanceGroupManagers); |
| 2776 checkInstanceGroupManagersScopedListWarning(o.warning); | 2776 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 2777 } | 2777 } |
| 2778 buildCounterInstanceGroupManagersScopedList--; | 2778 buildCounterInstanceGroupManagersScopedList--; |
| 2779 } | 2779 } |
| 2780 | 2780 |
| 2781 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 2781 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 2782 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 2782 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 2783 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 2783 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 2784 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2784 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2785 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2785 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2786 o.instanceTemplate = "foo"; | 2786 o.instanceTemplate = "foo"; |
| 2787 } | 2787 } |
| 2788 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2788 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2789 return o; | 2789 return o; |
| 2790 } | 2790 } |
| 2791 | 2791 |
| 2792 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 2792 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 2793 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2793 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2794 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2794 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2795 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2795 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2796 } | 2796 } |
| 2797 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2797 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2798 } | 2798 } |
| 2799 | 2799 |
| 2800 buildUnnamed2096() { | 2800 buildUnnamed2413() { |
| 2801 var o = new core.List<core.String>(); | 2801 var o = new core.List<core.String>(); |
| 2802 o.add("foo"); | 2802 o.add("foo"); |
| 2803 o.add("foo"); | 2803 o.add("foo"); |
| 2804 return o; | 2804 return o; |
| 2805 } | 2805 } |
| 2806 | 2806 |
| 2807 checkUnnamed2096(core.List<core.String> o) { | 2807 checkUnnamed2413(core.List<core.String> o) { |
| 2808 unittest.expect(o, unittest.hasLength(2)); | 2808 unittest.expect(o, unittest.hasLength(2)); |
| 2809 unittest.expect(o[0], unittest.equals('foo')); | 2809 unittest.expect(o[0], unittest.equals('foo')); |
| 2810 unittest.expect(o[1], unittest.equals('foo')); | 2810 unittest.expect(o[1], unittest.equals('foo')); |
| 2811 } | 2811 } |
| 2812 | 2812 |
| 2813 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 2813 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 2814 buildInstanceGroupManagersSetTargetPoolsRequest() { | 2814 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 2815 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 2815 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 2816 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2816 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2817 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2817 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2818 o.fingerprint = "foo"; | 2818 o.fingerprint = "foo"; |
| 2819 o.targetPools = buildUnnamed2096(); | 2819 o.targetPools = buildUnnamed2413(); |
| 2820 } | 2820 } |
| 2821 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2821 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2822 return o; | 2822 return o; |
| 2823 } | 2823 } |
| 2824 | 2824 |
| 2825 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 2825 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 2826 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2826 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2827 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2827 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2828 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2828 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2829 checkUnnamed2096(o.targetPools); | 2829 checkUnnamed2413(o.targetPools); |
| 2830 } | 2830 } |
| 2831 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2831 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2832 } | 2832 } |
| 2833 | 2833 |
| 2834 buildUnnamed2097() { | 2834 buildUnnamed2414() { |
| 2835 var o = new core.List<api.InstanceReference>(); | 2835 var o = new core.List<api.InstanceReference>(); |
| 2836 o.add(buildInstanceReference()); | 2836 o.add(buildInstanceReference()); |
| 2837 o.add(buildInstanceReference()); | 2837 o.add(buildInstanceReference()); |
| 2838 return o; | 2838 return o; |
| 2839 } | 2839 } |
| 2840 | 2840 |
| 2841 checkUnnamed2097(core.List<api.InstanceReference> o) { | 2841 checkUnnamed2414(core.List<api.InstanceReference> o) { |
| 2842 unittest.expect(o, unittest.hasLength(2)); | 2842 unittest.expect(o, unittest.hasLength(2)); |
| 2843 checkInstanceReference(o[0]); | 2843 checkInstanceReference(o[0]); |
| 2844 checkInstanceReference(o[1]); | 2844 checkInstanceReference(o[1]); |
| 2845 } | 2845 } |
| 2846 | 2846 |
| 2847 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 2847 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 2848 buildInstanceGroupsAddInstancesRequest() { | 2848 buildInstanceGroupsAddInstancesRequest() { |
| 2849 var o = new api.InstanceGroupsAddInstancesRequest(); | 2849 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 2850 buildCounterInstanceGroupsAddInstancesRequest++; | 2850 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2851 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2851 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2852 o.instances = buildUnnamed2097(); | 2852 o.instances = buildUnnamed2414(); |
| 2853 } | 2853 } |
| 2854 buildCounterInstanceGroupsAddInstancesRequest--; | 2854 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2855 return o; | 2855 return o; |
| 2856 } | 2856 } |
| 2857 | 2857 |
| 2858 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 2858 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 2859 buildCounterInstanceGroupsAddInstancesRequest++; | 2859 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2860 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2860 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2861 checkUnnamed2097(o.instances); | 2861 checkUnnamed2414(o.instances); |
| 2862 } | 2862 } |
| 2863 buildCounterInstanceGroupsAddInstancesRequest--; | 2863 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2864 } | 2864 } |
| 2865 | 2865 |
| 2866 buildUnnamed2098() { | 2866 buildUnnamed2415() { |
| 2867 var o = new core.List<api.InstanceWithNamedPorts>(); | 2867 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 2868 o.add(buildInstanceWithNamedPorts()); | 2868 o.add(buildInstanceWithNamedPorts()); |
| 2869 o.add(buildInstanceWithNamedPorts()); | 2869 o.add(buildInstanceWithNamedPorts()); |
| 2870 return o; | 2870 return o; |
| 2871 } | 2871 } |
| 2872 | 2872 |
| 2873 checkUnnamed2098(core.List<api.InstanceWithNamedPorts> o) { | 2873 checkUnnamed2415(core.List<api.InstanceWithNamedPorts> o) { |
| 2874 unittest.expect(o, unittest.hasLength(2)); | 2874 unittest.expect(o, unittest.hasLength(2)); |
| 2875 checkInstanceWithNamedPorts(o[0]); | 2875 checkInstanceWithNamedPorts(o[0]); |
| 2876 checkInstanceWithNamedPorts(o[1]); | 2876 checkInstanceWithNamedPorts(o[1]); |
| 2877 } | 2877 } |
| 2878 | 2878 |
| 2879 core.int buildCounterInstanceGroupsListInstances = 0; | 2879 core.int buildCounterInstanceGroupsListInstances = 0; |
| 2880 buildInstanceGroupsListInstances() { | 2880 buildInstanceGroupsListInstances() { |
| 2881 var o = new api.InstanceGroupsListInstances(); | 2881 var o = new api.InstanceGroupsListInstances(); |
| 2882 buildCounterInstanceGroupsListInstances++; | 2882 buildCounterInstanceGroupsListInstances++; |
| 2883 if (buildCounterInstanceGroupsListInstances < 3) { | 2883 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2884 o.id = "foo"; | 2884 o.id = "foo"; |
| 2885 o.items = buildUnnamed2098(); | 2885 o.items = buildUnnamed2415(); |
| 2886 o.kind = "foo"; | 2886 o.kind = "foo"; |
| 2887 o.nextPageToken = "foo"; | 2887 o.nextPageToken = "foo"; |
| 2888 o.selfLink = "foo"; | 2888 o.selfLink = "foo"; |
| 2889 } | 2889 } |
| 2890 buildCounterInstanceGroupsListInstances--; | 2890 buildCounterInstanceGroupsListInstances--; |
| 2891 return o; | 2891 return o; |
| 2892 } | 2892 } |
| 2893 | 2893 |
| 2894 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 2894 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 2895 buildCounterInstanceGroupsListInstances++; | 2895 buildCounterInstanceGroupsListInstances++; |
| 2896 if (buildCounterInstanceGroupsListInstances < 3) { | 2896 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2897 unittest.expect(o.id, unittest.equals('foo')); | 2897 unittest.expect(o.id, unittest.equals('foo')); |
| 2898 checkUnnamed2098(o.items); | 2898 checkUnnamed2415(o.items); |
| 2899 unittest.expect(o.kind, unittest.equals('foo')); | 2899 unittest.expect(o.kind, unittest.equals('foo')); |
| 2900 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2900 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2901 unittest.expect(o.selfLink, unittest.equals('foo')); | 2901 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2902 } | 2902 } |
| 2903 buildCounterInstanceGroupsListInstances--; | 2903 buildCounterInstanceGroupsListInstances--; |
| 2904 } | 2904 } |
| 2905 | 2905 |
| 2906 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 2906 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 2907 buildInstanceGroupsListInstancesRequest() { | 2907 buildInstanceGroupsListInstancesRequest() { |
| 2908 var o = new api.InstanceGroupsListInstancesRequest(); | 2908 var o = new api.InstanceGroupsListInstancesRequest(); |
| 2909 buildCounterInstanceGroupsListInstancesRequest++; | 2909 buildCounterInstanceGroupsListInstancesRequest++; |
| 2910 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 2910 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 2911 o.instanceState = "foo"; | 2911 o.instanceState = "foo"; |
| 2912 } | 2912 } |
| 2913 buildCounterInstanceGroupsListInstancesRequest--; | 2913 buildCounterInstanceGroupsListInstancesRequest--; |
| 2914 return o; | 2914 return o; |
| 2915 } | 2915 } |
| 2916 | 2916 |
| 2917 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 2917 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 2918 buildCounterInstanceGroupsListInstancesRequest++; | 2918 buildCounterInstanceGroupsListInstancesRequest++; |
| 2919 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 2919 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 2920 unittest.expect(o.instanceState, unittest.equals('foo')); | 2920 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 2921 } | 2921 } |
| 2922 buildCounterInstanceGroupsListInstancesRequest--; | 2922 buildCounterInstanceGroupsListInstancesRequest--; |
| 2923 } | 2923 } |
| 2924 | 2924 |
| 2925 buildUnnamed2099() { | 2925 buildUnnamed2416() { |
| 2926 var o = new core.List<api.InstanceReference>(); | 2926 var o = new core.List<api.InstanceReference>(); |
| 2927 o.add(buildInstanceReference()); | 2927 o.add(buildInstanceReference()); |
| 2928 o.add(buildInstanceReference()); | 2928 o.add(buildInstanceReference()); |
| 2929 return o; | 2929 return o; |
| 2930 } | 2930 } |
| 2931 | 2931 |
| 2932 checkUnnamed2099(core.List<api.InstanceReference> o) { | 2932 checkUnnamed2416(core.List<api.InstanceReference> o) { |
| 2933 unittest.expect(o, unittest.hasLength(2)); | 2933 unittest.expect(o, unittest.hasLength(2)); |
| 2934 checkInstanceReference(o[0]); | 2934 checkInstanceReference(o[0]); |
| 2935 checkInstanceReference(o[1]); | 2935 checkInstanceReference(o[1]); |
| 2936 } | 2936 } |
| 2937 | 2937 |
| 2938 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 2938 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 2939 buildInstanceGroupsRemoveInstancesRequest() { | 2939 buildInstanceGroupsRemoveInstancesRequest() { |
| 2940 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 2940 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 2941 buildCounterInstanceGroupsRemoveInstancesRequest++; | 2941 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 2942 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 2942 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 2943 o.instances = buildUnnamed2099(); | 2943 o.instances = buildUnnamed2416(); |
| 2944 } | 2944 } |
| 2945 buildCounterInstanceGroupsRemoveInstancesRequest--; | 2945 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 2946 return o; | 2946 return o; |
| 2947 } | 2947 } |
| 2948 | 2948 |
| 2949 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 2949 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 2950 buildCounterInstanceGroupsRemoveInstancesRequest++; | 2950 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 2951 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 2951 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 2952 checkUnnamed2099(o.instances); | 2952 checkUnnamed2416(o.instances); |
| 2953 } | 2953 } |
| 2954 buildCounterInstanceGroupsRemoveInstancesRequest--; | 2954 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 2955 } | 2955 } |
| 2956 | 2956 |
| 2957 buildUnnamed2100() { | 2957 buildUnnamed2417() { |
| 2958 var o = new core.List<api.InstanceGroup>(); | 2958 var o = new core.List<api.InstanceGroup>(); |
| 2959 o.add(buildInstanceGroup()); | 2959 o.add(buildInstanceGroup()); |
| 2960 o.add(buildInstanceGroup()); | 2960 o.add(buildInstanceGroup()); |
| 2961 return o; | 2961 return o; |
| 2962 } | 2962 } |
| 2963 | 2963 |
| 2964 checkUnnamed2100(core.List<api.InstanceGroup> o) { | 2964 checkUnnamed2417(core.List<api.InstanceGroup> o) { |
| 2965 unittest.expect(o, unittest.hasLength(2)); | 2965 unittest.expect(o, unittest.hasLength(2)); |
| 2966 checkInstanceGroup(o[0]); | 2966 checkInstanceGroup(o[0]); |
| 2967 checkInstanceGroup(o[1]); | 2967 checkInstanceGroup(o[1]); |
| 2968 } | 2968 } |
| 2969 | 2969 |
| 2970 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 2970 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 2971 buildInstanceGroupsScopedListWarningData() { | 2971 buildInstanceGroupsScopedListWarningData() { |
| 2972 var o = new api.InstanceGroupsScopedListWarningData(); | 2972 var o = new api.InstanceGroupsScopedListWarningData(); |
| 2973 buildCounterInstanceGroupsScopedListWarningData++; | 2973 buildCounterInstanceGroupsScopedListWarningData++; |
| 2974 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 2974 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 2975 o.key = "foo"; | 2975 o.key = "foo"; |
| 2976 o.value = "foo"; | 2976 o.value = "foo"; |
| 2977 } | 2977 } |
| 2978 buildCounterInstanceGroupsScopedListWarningData--; | 2978 buildCounterInstanceGroupsScopedListWarningData--; |
| 2979 return o; | 2979 return o; |
| 2980 } | 2980 } |
| 2981 | 2981 |
| 2982 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 2982 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 2983 buildCounterInstanceGroupsScopedListWarningData++; | 2983 buildCounterInstanceGroupsScopedListWarningData++; |
| 2984 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 2984 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 2985 unittest.expect(o.key, unittest.equals('foo')); | 2985 unittest.expect(o.key, unittest.equals('foo')); |
| 2986 unittest.expect(o.value, unittest.equals('foo')); | 2986 unittest.expect(o.value, unittest.equals('foo')); |
| 2987 } | 2987 } |
| 2988 buildCounterInstanceGroupsScopedListWarningData--; | 2988 buildCounterInstanceGroupsScopedListWarningData--; |
| 2989 } | 2989 } |
| 2990 | 2990 |
| 2991 buildUnnamed2101() { | 2991 buildUnnamed2418() { |
| 2992 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 2992 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 2993 o.add(buildInstanceGroupsScopedListWarningData()); | 2993 o.add(buildInstanceGroupsScopedListWarningData()); |
| 2994 o.add(buildInstanceGroupsScopedListWarningData()); | 2994 o.add(buildInstanceGroupsScopedListWarningData()); |
| 2995 return o; | 2995 return o; |
| 2996 } | 2996 } |
| 2997 | 2997 |
| 2998 checkUnnamed2101(core.List<api.InstanceGroupsScopedListWarningData> o) { | 2998 checkUnnamed2418(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 2999 unittest.expect(o, unittest.hasLength(2)); | 2999 unittest.expect(o, unittest.hasLength(2)); |
| 3000 checkInstanceGroupsScopedListWarningData(o[0]); | 3000 checkInstanceGroupsScopedListWarningData(o[0]); |
| 3001 checkInstanceGroupsScopedListWarningData(o[1]); | 3001 checkInstanceGroupsScopedListWarningData(o[1]); |
| 3002 } | 3002 } |
| 3003 | 3003 |
| 3004 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 3004 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 3005 buildInstanceGroupsScopedListWarning() { | 3005 buildInstanceGroupsScopedListWarning() { |
| 3006 var o = new api.InstanceGroupsScopedListWarning(); | 3006 var o = new api.InstanceGroupsScopedListWarning(); |
| 3007 buildCounterInstanceGroupsScopedListWarning++; | 3007 buildCounterInstanceGroupsScopedListWarning++; |
| 3008 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3008 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3009 o.code = "foo"; | 3009 o.code = "foo"; |
| 3010 o.data = buildUnnamed2101(); | 3010 o.data = buildUnnamed2418(); |
| 3011 o.message = "foo"; | 3011 o.message = "foo"; |
| 3012 } | 3012 } |
| 3013 buildCounterInstanceGroupsScopedListWarning--; | 3013 buildCounterInstanceGroupsScopedListWarning--; |
| 3014 return o; | 3014 return o; |
| 3015 } | 3015 } |
| 3016 | 3016 |
| 3017 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 3017 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 3018 buildCounterInstanceGroupsScopedListWarning++; | 3018 buildCounterInstanceGroupsScopedListWarning++; |
| 3019 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3019 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3020 unittest.expect(o.code, unittest.equals('foo')); | 3020 unittest.expect(o.code, unittest.equals('foo')); |
| 3021 checkUnnamed2101(o.data); | 3021 checkUnnamed2418(o.data); |
| 3022 unittest.expect(o.message, unittest.equals('foo')); | 3022 unittest.expect(o.message, unittest.equals('foo')); |
| 3023 } | 3023 } |
| 3024 buildCounterInstanceGroupsScopedListWarning--; | 3024 buildCounterInstanceGroupsScopedListWarning--; |
| 3025 } | 3025 } |
| 3026 | 3026 |
| 3027 core.int buildCounterInstanceGroupsScopedList = 0; | 3027 core.int buildCounterInstanceGroupsScopedList = 0; |
| 3028 buildInstanceGroupsScopedList() { | 3028 buildInstanceGroupsScopedList() { |
| 3029 var o = new api.InstanceGroupsScopedList(); | 3029 var o = new api.InstanceGroupsScopedList(); |
| 3030 buildCounterInstanceGroupsScopedList++; | 3030 buildCounterInstanceGroupsScopedList++; |
| 3031 if (buildCounterInstanceGroupsScopedList < 3) { | 3031 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3032 o.instanceGroups = buildUnnamed2100(); | 3032 o.instanceGroups = buildUnnamed2417(); |
| 3033 o.warning = buildInstanceGroupsScopedListWarning(); | 3033 o.warning = buildInstanceGroupsScopedListWarning(); |
| 3034 } | 3034 } |
| 3035 buildCounterInstanceGroupsScopedList--; | 3035 buildCounterInstanceGroupsScopedList--; |
| 3036 return o; | 3036 return o; |
| 3037 } | 3037 } |
| 3038 | 3038 |
| 3039 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 3039 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 3040 buildCounterInstanceGroupsScopedList++; | 3040 buildCounterInstanceGroupsScopedList++; |
| 3041 if (buildCounterInstanceGroupsScopedList < 3) { | 3041 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3042 checkUnnamed2100(o.instanceGroups); | 3042 checkUnnamed2417(o.instanceGroups); |
| 3043 checkInstanceGroupsScopedListWarning(o.warning); | 3043 checkInstanceGroupsScopedListWarning(o.warning); |
| 3044 } | 3044 } |
| 3045 buildCounterInstanceGroupsScopedList--; | 3045 buildCounterInstanceGroupsScopedList--; |
| 3046 } | 3046 } |
| 3047 | 3047 |
| 3048 buildUnnamed2102() { | 3048 buildUnnamed2419() { |
| 3049 var o = new core.List<api.NamedPort>(); | 3049 var o = new core.List<api.NamedPort>(); |
| 3050 o.add(buildNamedPort()); | 3050 o.add(buildNamedPort()); |
| 3051 o.add(buildNamedPort()); | 3051 o.add(buildNamedPort()); |
| 3052 return o; | 3052 return o; |
| 3053 } | 3053 } |
| 3054 | 3054 |
| 3055 checkUnnamed2102(core.List<api.NamedPort> o) { | 3055 checkUnnamed2419(core.List<api.NamedPort> o) { |
| 3056 unittest.expect(o, unittest.hasLength(2)); | 3056 unittest.expect(o, unittest.hasLength(2)); |
| 3057 checkNamedPort(o[0]); | 3057 checkNamedPort(o[0]); |
| 3058 checkNamedPort(o[1]); | 3058 checkNamedPort(o[1]); |
| 3059 } | 3059 } |
| 3060 | 3060 |
| 3061 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 3061 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 3062 buildInstanceGroupsSetNamedPortsRequest() { | 3062 buildInstanceGroupsSetNamedPortsRequest() { |
| 3063 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 3063 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 3064 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3064 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3065 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3065 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3066 o.fingerprint = "foo"; | 3066 o.fingerprint = "foo"; |
| 3067 o.namedPorts = buildUnnamed2102(); | 3067 o.namedPorts = buildUnnamed2419(); |
| 3068 } | 3068 } |
| 3069 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3069 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3070 return o; | 3070 return o; |
| 3071 } | 3071 } |
| 3072 | 3072 |
| 3073 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 3073 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 3074 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3074 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3075 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3075 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3076 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3076 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3077 checkUnnamed2102(o.namedPorts); | 3077 checkUnnamed2419(o.namedPorts); |
| 3078 } | 3078 } |
| 3079 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3079 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3080 } | 3080 } |
| 3081 | 3081 |
| 3082 buildUnnamed2103() { | 3082 buildUnnamed2420() { |
| 3083 var o = new core.List<api.Instance>(); | 3083 var o = new core.List<api.Instance>(); |
| 3084 o.add(buildInstance()); | 3084 o.add(buildInstance()); |
| 3085 o.add(buildInstance()); | 3085 o.add(buildInstance()); |
| 3086 return o; | 3086 return o; |
| 3087 } | 3087 } |
| 3088 | 3088 |
| 3089 checkUnnamed2103(core.List<api.Instance> o) { | 3089 checkUnnamed2420(core.List<api.Instance> o) { |
| 3090 unittest.expect(o, unittest.hasLength(2)); | 3090 unittest.expect(o, unittest.hasLength(2)); |
| 3091 checkInstance(o[0]); | 3091 checkInstance(o[0]); |
| 3092 checkInstance(o[1]); | 3092 checkInstance(o[1]); |
| 3093 } | 3093 } |
| 3094 | 3094 |
| 3095 core.int buildCounterInstanceList = 0; | 3095 core.int buildCounterInstanceList = 0; |
| 3096 buildInstanceList() { | 3096 buildInstanceList() { |
| 3097 var o = new api.InstanceList(); | 3097 var o = new api.InstanceList(); |
| 3098 buildCounterInstanceList++; | 3098 buildCounterInstanceList++; |
| 3099 if (buildCounterInstanceList < 3) { | 3099 if (buildCounterInstanceList < 3) { |
| 3100 o.id = "foo"; | 3100 o.id = "foo"; |
| 3101 o.items = buildUnnamed2103(); | 3101 o.items = buildUnnamed2420(); |
| 3102 o.kind = "foo"; | 3102 o.kind = "foo"; |
| 3103 o.nextPageToken = "foo"; | 3103 o.nextPageToken = "foo"; |
| 3104 o.selfLink = "foo"; | 3104 o.selfLink = "foo"; |
| 3105 } | 3105 } |
| 3106 buildCounterInstanceList--; | 3106 buildCounterInstanceList--; |
| 3107 return o; | 3107 return o; |
| 3108 } | 3108 } |
| 3109 | 3109 |
| 3110 checkInstanceList(api.InstanceList o) { | 3110 checkInstanceList(api.InstanceList o) { |
| 3111 buildCounterInstanceList++; | 3111 buildCounterInstanceList++; |
| 3112 if (buildCounterInstanceList < 3) { | 3112 if (buildCounterInstanceList < 3) { |
| 3113 unittest.expect(o.id, unittest.equals('foo')); | 3113 unittest.expect(o.id, unittest.equals('foo')); |
| 3114 checkUnnamed2103(o.items); | 3114 checkUnnamed2420(o.items); |
| 3115 unittest.expect(o.kind, unittest.equals('foo')); | 3115 unittest.expect(o.kind, unittest.equals('foo')); |
| 3116 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3116 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3117 unittest.expect(o.selfLink, unittest.equals('foo')); | 3117 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3118 } | 3118 } |
| 3119 buildCounterInstanceList--; | 3119 buildCounterInstanceList--; |
| 3120 } | 3120 } |
| 3121 | 3121 |
| 3122 core.int buildCounterInstanceMoveRequest = 0; | 3122 core.int buildCounterInstanceMoveRequest = 0; |
| 3123 buildInstanceMoveRequest() { | 3123 buildInstanceMoveRequest() { |
| 3124 var o = new api.InstanceMoveRequest(); | 3124 var o = new api.InstanceMoveRequest(); |
| 3125 buildCounterInstanceMoveRequest++; | 3125 buildCounterInstanceMoveRequest++; |
| 3126 if (buildCounterInstanceMoveRequest < 3) { | 3126 if (buildCounterInstanceMoveRequest < 3) { |
| 3127 o.destinationZone = "foo"; | 3127 o.destinationZone = "foo"; |
| 3128 o.targetInstance = "foo"; | 3128 o.targetInstance = "foo"; |
| 3129 } | 3129 } |
| 3130 buildCounterInstanceMoveRequest--; | 3130 buildCounterInstanceMoveRequest--; |
| 3131 return o; | 3131 return o; |
| 3132 } | 3132 } |
| 3133 | 3133 |
| 3134 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 3134 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 3135 buildCounterInstanceMoveRequest++; | 3135 buildCounterInstanceMoveRequest++; |
| 3136 if (buildCounterInstanceMoveRequest < 3) { | 3136 if (buildCounterInstanceMoveRequest < 3) { |
| 3137 unittest.expect(o.destinationZone, unittest.equals('foo')); | 3137 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 3138 unittest.expect(o.targetInstance, unittest.equals('foo')); | 3138 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 3139 } | 3139 } |
| 3140 buildCounterInstanceMoveRequest--; | 3140 buildCounterInstanceMoveRequest--; |
| 3141 } | 3141 } |
| 3142 | 3142 |
| 3143 buildUnnamed2104() { | 3143 buildUnnamed2421() { |
| 3144 var o = new core.List<api.AttachedDisk>(); | 3144 var o = new core.List<api.AttachedDisk>(); |
| 3145 o.add(buildAttachedDisk()); | 3145 o.add(buildAttachedDisk()); |
| 3146 o.add(buildAttachedDisk()); | 3146 o.add(buildAttachedDisk()); |
| 3147 return o; | 3147 return o; |
| 3148 } | 3148 } |
| 3149 | 3149 |
| 3150 checkUnnamed2104(core.List<api.AttachedDisk> o) { | 3150 checkUnnamed2421(core.List<api.AttachedDisk> o) { |
| 3151 unittest.expect(o, unittest.hasLength(2)); | 3151 unittest.expect(o, unittest.hasLength(2)); |
| 3152 checkAttachedDisk(o[0]); | 3152 checkAttachedDisk(o[0]); |
| 3153 checkAttachedDisk(o[1]); | 3153 checkAttachedDisk(o[1]); |
| 3154 } | 3154 } |
| 3155 | 3155 |
| 3156 buildUnnamed2105() { | 3156 buildUnnamed2422() { |
| 3157 var o = new core.List<api.NetworkInterface>(); | 3157 var o = new core.List<api.NetworkInterface>(); |
| 3158 o.add(buildNetworkInterface()); | 3158 o.add(buildNetworkInterface()); |
| 3159 o.add(buildNetworkInterface()); | 3159 o.add(buildNetworkInterface()); |
| 3160 return o; | 3160 return o; |
| 3161 } | 3161 } |
| 3162 | 3162 |
| 3163 checkUnnamed2105(core.List<api.NetworkInterface> o) { | 3163 checkUnnamed2422(core.List<api.NetworkInterface> o) { |
| 3164 unittest.expect(o, unittest.hasLength(2)); | 3164 unittest.expect(o, unittest.hasLength(2)); |
| 3165 checkNetworkInterface(o[0]); | 3165 checkNetworkInterface(o[0]); |
| 3166 checkNetworkInterface(o[1]); | 3166 checkNetworkInterface(o[1]); |
| 3167 } | 3167 } |
| 3168 | 3168 |
| 3169 buildUnnamed2106() { | 3169 buildUnnamed2423() { |
| 3170 var o = new core.List<api.ServiceAccount>(); | 3170 var o = new core.List<api.ServiceAccount>(); |
| 3171 o.add(buildServiceAccount()); | 3171 o.add(buildServiceAccount()); |
| 3172 o.add(buildServiceAccount()); | 3172 o.add(buildServiceAccount()); |
| 3173 return o; | 3173 return o; |
| 3174 } | 3174 } |
| 3175 | 3175 |
| 3176 checkUnnamed2106(core.List<api.ServiceAccount> o) { | 3176 checkUnnamed2423(core.List<api.ServiceAccount> o) { |
| 3177 unittest.expect(o, unittest.hasLength(2)); | 3177 unittest.expect(o, unittest.hasLength(2)); |
| 3178 checkServiceAccount(o[0]); | 3178 checkServiceAccount(o[0]); |
| 3179 checkServiceAccount(o[1]); | 3179 checkServiceAccount(o[1]); |
| 3180 } | 3180 } |
| 3181 | 3181 |
| 3182 core.int buildCounterInstanceProperties = 0; | 3182 core.int buildCounterInstanceProperties = 0; |
| 3183 buildInstanceProperties() { | 3183 buildInstanceProperties() { |
| 3184 var o = new api.InstanceProperties(); | 3184 var o = new api.InstanceProperties(); |
| 3185 buildCounterInstanceProperties++; | 3185 buildCounterInstanceProperties++; |
| 3186 if (buildCounterInstanceProperties < 3) { | 3186 if (buildCounterInstanceProperties < 3) { |
| 3187 o.canIpForward = true; | 3187 o.canIpForward = true; |
| 3188 o.description = "foo"; | 3188 o.description = "foo"; |
| 3189 o.disks = buildUnnamed2104(); | 3189 o.disks = buildUnnamed2421(); |
| 3190 o.machineType = "foo"; | 3190 o.machineType = "foo"; |
| 3191 o.metadata = buildMetadata(); | 3191 o.metadata = buildMetadata(); |
| 3192 o.networkInterfaces = buildUnnamed2105(); | 3192 o.networkInterfaces = buildUnnamed2422(); |
| 3193 o.scheduling = buildScheduling(); | 3193 o.scheduling = buildScheduling(); |
| 3194 o.serviceAccounts = buildUnnamed2106(); | 3194 o.serviceAccounts = buildUnnamed2423(); |
| 3195 o.tags = buildTags(); | 3195 o.tags = buildTags(); |
| 3196 } | 3196 } |
| 3197 buildCounterInstanceProperties--; | 3197 buildCounterInstanceProperties--; |
| 3198 return o; | 3198 return o; |
| 3199 } | 3199 } |
| 3200 | 3200 |
| 3201 checkInstanceProperties(api.InstanceProperties o) { | 3201 checkInstanceProperties(api.InstanceProperties o) { |
| 3202 buildCounterInstanceProperties++; | 3202 buildCounterInstanceProperties++; |
| 3203 if (buildCounterInstanceProperties < 3) { | 3203 if (buildCounterInstanceProperties < 3) { |
| 3204 unittest.expect(o.canIpForward, unittest.isTrue); | 3204 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3205 unittest.expect(o.description, unittest.equals('foo')); | 3205 unittest.expect(o.description, unittest.equals('foo')); |
| 3206 checkUnnamed2104(o.disks); | 3206 checkUnnamed2421(o.disks); |
| 3207 unittest.expect(o.machineType, unittest.equals('foo')); | 3207 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3208 checkMetadata(o.metadata); | 3208 checkMetadata(o.metadata); |
| 3209 checkUnnamed2105(o.networkInterfaces); | 3209 checkUnnamed2422(o.networkInterfaces); |
| 3210 checkScheduling(o.scheduling); | 3210 checkScheduling(o.scheduling); |
| 3211 checkUnnamed2106(o.serviceAccounts); | 3211 checkUnnamed2423(o.serviceAccounts); |
| 3212 checkTags(o.tags); | 3212 checkTags(o.tags); |
| 3213 } | 3213 } |
| 3214 buildCounterInstanceProperties--; | 3214 buildCounterInstanceProperties--; |
| 3215 } | 3215 } |
| 3216 | 3216 |
| 3217 core.int buildCounterInstanceReference = 0; | 3217 core.int buildCounterInstanceReference = 0; |
| 3218 buildInstanceReference() { | 3218 buildInstanceReference() { |
| 3219 var o = new api.InstanceReference(); | 3219 var o = new api.InstanceReference(); |
| 3220 buildCounterInstanceReference++; | 3220 buildCounterInstanceReference++; |
| 3221 if (buildCounterInstanceReference < 3) { | 3221 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3257 unittest.expect(o.description, unittest.equals('foo')); | 3257 unittest.expect(o.description, unittest.equals('foo')); |
| 3258 unittest.expect(o.id, unittest.equals('foo')); | 3258 unittest.expect(o.id, unittest.equals('foo')); |
| 3259 unittest.expect(o.kind, unittest.equals('foo')); | 3259 unittest.expect(o.kind, unittest.equals('foo')); |
| 3260 unittest.expect(o.name, unittest.equals('foo')); | 3260 unittest.expect(o.name, unittest.equals('foo')); |
| 3261 checkInstanceProperties(o.properties); | 3261 checkInstanceProperties(o.properties); |
| 3262 unittest.expect(o.selfLink, unittest.equals('foo')); | 3262 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3263 } | 3263 } |
| 3264 buildCounterInstanceTemplate--; | 3264 buildCounterInstanceTemplate--; |
| 3265 } | 3265 } |
| 3266 | 3266 |
| 3267 buildUnnamed2107() { | 3267 buildUnnamed2424() { |
| 3268 var o = new core.List<api.InstanceTemplate>(); | 3268 var o = new core.List<api.InstanceTemplate>(); |
| 3269 o.add(buildInstanceTemplate()); | 3269 o.add(buildInstanceTemplate()); |
| 3270 o.add(buildInstanceTemplate()); | 3270 o.add(buildInstanceTemplate()); |
| 3271 return o; | 3271 return o; |
| 3272 } | 3272 } |
| 3273 | 3273 |
| 3274 checkUnnamed2107(core.List<api.InstanceTemplate> o) { | 3274 checkUnnamed2424(core.List<api.InstanceTemplate> o) { |
| 3275 unittest.expect(o, unittest.hasLength(2)); | 3275 unittest.expect(o, unittest.hasLength(2)); |
| 3276 checkInstanceTemplate(o[0]); | 3276 checkInstanceTemplate(o[0]); |
| 3277 checkInstanceTemplate(o[1]); | 3277 checkInstanceTemplate(o[1]); |
| 3278 } | 3278 } |
| 3279 | 3279 |
| 3280 core.int buildCounterInstanceTemplateList = 0; | 3280 core.int buildCounterInstanceTemplateList = 0; |
| 3281 buildInstanceTemplateList() { | 3281 buildInstanceTemplateList() { |
| 3282 var o = new api.InstanceTemplateList(); | 3282 var o = new api.InstanceTemplateList(); |
| 3283 buildCounterInstanceTemplateList++; | 3283 buildCounterInstanceTemplateList++; |
| 3284 if (buildCounterInstanceTemplateList < 3) { | 3284 if (buildCounterInstanceTemplateList < 3) { |
| 3285 o.id = "foo"; | 3285 o.id = "foo"; |
| 3286 o.items = buildUnnamed2107(); | 3286 o.items = buildUnnamed2424(); |
| 3287 o.kind = "foo"; | 3287 o.kind = "foo"; |
| 3288 o.nextPageToken = "foo"; | 3288 o.nextPageToken = "foo"; |
| 3289 o.selfLink = "foo"; | 3289 o.selfLink = "foo"; |
| 3290 } | 3290 } |
| 3291 buildCounterInstanceTemplateList--; | 3291 buildCounterInstanceTemplateList--; |
| 3292 return o; | 3292 return o; |
| 3293 } | 3293 } |
| 3294 | 3294 |
| 3295 checkInstanceTemplateList(api.InstanceTemplateList o) { | 3295 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 3296 buildCounterInstanceTemplateList++; | 3296 buildCounterInstanceTemplateList++; |
| 3297 if (buildCounterInstanceTemplateList < 3) { | 3297 if (buildCounterInstanceTemplateList < 3) { |
| 3298 unittest.expect(o.id, unittest.equals('foo')); | 3298 unittest.expect(o.id, unittest.equals('foo')); |
| 3299 checkUnnamed2107(o.items); | 3299 checkUnnamed2424(o.items); |
| 3300 unittest.expect(o.kind, unittest.equals('foo')); | 3300 unittest.expect(o.kind, unittest.equals('foo')); |
| 3301 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3301 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3302 unittest.expect(o.selfLink, unittest.equals('foo')); | 3302 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3303 } | 3303 } |
| 3304 buildCounterInstanceTemplateList--; | 3304 buildCounterInstanceTemplateList--; |
| 3305 } | 3305 } |
| 3306 | 3306 |
| 3307 buildUnnamed2108() { | 3307 buildUnnamed2425() { |
| 3308 var o = new core.List<api.NamedPort>(); | 3308 var o = new core.List<api.NamedPort>(); |
| 3309 o.add(buildNamedPort()); | 3309 o.add(buildNamedPort()); |
| 3310 o.add(buildNamedPort()); | 3310 o.add(buildNamedPort()); |
| 3311 return o; | 3311 return o; |
| 3312 } | 3312 } |
| 3313 | 3313 |
| 3314 checkUnnamed2108(core.List<api.NamedPort> o) { | 3314 checkUnnamed2425(core.List<api.NamedPort> o) { |
| 3315 unittest.expect(o, unittest.hasLength(2)); | 3315 unittest.expect(o, unittest.hasLength(2)); |
| 3316 checkNamedPort(o[0]); | 3316 checkNamedPort(o[0]); |
| 3317 checkNamedPort(o[1]); | 3317 checkNamedPort(o[1]); |
| 3318 } | 3318 } |
| 3319 | 3319 |
| 3320 core.int buildCounterInstanceWithNamedPorts = 0; | 3320 core.int buildCounterInstanceWithNamedPorts = 0; |
| 3321 buildInstanceWithNamedPorts() { | 3321 buildInstanceWithNamedPorts() { |
| 3322 var o = new api.InstanceWithNamedPorts(); | 3322 var o = new api.InstanceWithNamedPorts(); |
| 3323 buildCounterInstanceWithNamedPorts++; | 3323 buildCounterInstanceWithNamedPorts++; |
| 3324 if (buildCounterInstanceWithNamedPorts < 3) { | 3324 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3325 o.instance = "foo"; | 3325 o.instance = "foo"; |
| 3326 o.namedPorts = buildUnnamed2108(); | 3326 o.namedPorts = buildUnnamed2425(); |
| 3327 o.status = "foo"; | 3327 o.status = "foo"; |
| 3328 } | 3328 } |
| 3329 buildCounterInstanceWithNamedPorts--; | 3329 buildCounterInstanceWithNamedPorts--; |
| 3330 return o; | 3330 return o; |
| 3331 } | 3331 } |
| 3332 | 3332 |
| 3333 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 3333 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 3334 buildCounterInstanceWithNamedPorts++; | 3334 buildCounterInstanceWithNamedPorts++; |
| 3335 if (buildCounterInstanceWithNamedPorts < 3) { | 3335 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3336 unittest.expect(o.instance, unittest.equals('foo')); | 3336 unittest.expect(o.instance, unittest.equals('foo')); |
| 3337 checkUnnamed2108(o.namedPorts); | 3337 checkUnnamed2425(o.namedPorts); |
| 3338 unittest.expect(o.status, unittest.equals('foo')); | 3338 unittest.expect(o.status, unittest.equals('foo')); |
| 3339 } | 3339 } |
| 3340 buildCounterInstanceWithNamedPorts--; | 3340 buildCounterInstanceWithNamedPorts--; |
| 3341 } | 3341 } |
| 3342 | 3342 |
| 3343 buildUnnamed2109() { | 3343 buildUnnamed2426() { |
| 3344 var o = new core.List<api.Instance>(); | 3344 var o = new core.List<api.Instance>(); |
| 3345 o.add(buildInstance()); | 3345 o.add(buildInstance()); |
| 3346 o.add(buildInstance()); | 3346 o.add(buildInstance()); |
| 3347 return o; | 3347 return o; |
| 3348 } | 3348 } |
| 3349 | 3349 |
| 3350 checkUnnamed2109(core.List<api.Instance> o) { | 3350 checkUnnamed2426(core.List<api.Instance> o) { |
| 3351 unittest.expect(o, unittest.hasLength(2)); | 3351 unittest.expect(o, unittest.hasLength(2)); |
| 3352 checkInstance(o[0]); | 3352 checkInstance(o[0]); |
| 3353 checkInstance(o[1]); | 3353 checkInstance(o[1]); |
| 3354 } | 3354 } |
| 3355 | 3355 |
| 3356 core.int buildCounterInstancesScopedListWarningData = 0; | 3356 core.int buildCounterInstancesScopedListWarningData = 0; |
| 3357 buildInstancesScopedListWarningData() { | 3357 buildInstancesScopedListWarningData() { |
| 3358 var o = new api.InstancesScopedListWarningData(); | 3358 var o = new api.InstancesScopedListWarningData(); |
| 3359 buildCounterInstancesScopedListWarningData++; | 3359 buildCounterInstancesScopedListWarningData++; |
| 3360 if (buildCounterInstancesScopedListWarningData < 3) { | 3360 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3361 o.key = "foo"; | 3361 o.key = "foo"; |
| 3362 o.value = "foo"; | 3362 o.value = "foo"; |
| 3363 } | 3363 } |
| 3364 buildCounterInstancesScopedListWarningData--; | 3364 buildCounterInstancesScopedListWarningData--; |
| 3365 return o; | 3365 return o; |
| 3366 } | 3366 } |
| 3367 | 3367 |
| 3368 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 3368 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 3369 buildCounterInstancesScopedListWarningData++; | 3369 buildCounterInstancesScopedListWarningData++; |
| 3370 if (buildCounterInstancesScopedListWarningData < 3) { | 3370 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3371 unittest.expect(o.key, unittest.equals('foo')); | 3371 unittest.expect(o.key, unittest.equals('foo')); |
| 3372 unittest.expect(o.value, unittest.equals('foo')); | 3372 unittest.expect(o.value, unittest.equals('foo')); |
| 3373 } | 3373 } |
| 3374 buildCounterInstancesScopedListWarningData--; | 3374 buildCounterInstancesScopedListWarningData--; |
| 3375 } | 3375 } |
| 3376 | 3376 |
| 3377 buildUnnamed2110() { | 3377 buildUnnamed2427() { |
| 3378 var o = new core.List<api.InstancesScopedListWarningData>(); | 3378 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 3379 o.add(buildInstancesScopedListWarningData()); | 3379 o.add(buildInstancesScopedListWarningData()); |
| 3380 o.add(buildInstancesScopedListWarningData()); | 3380 o.add(buildInstancesScopedListWarningData()); |
| 3381 return o; | 3381 return o; |
| 3382 } | 3382 } |
| 3383 | 3383 |
| 3384 checkUnnamed2110(core.List<api.InstancesScopedListWarningData> o) { | 3384 checkUnnamed2427(core.List<api.InstancesScopedListWarningData> o) { |
| 3385 unittest.expect(o, unittest.hasLength(2)); | 3385 unittest.expect(o, unittest.hasLength(2)); |
| 3386 checkInstancesScopedListWarningData(o[0]); | 3386 checkInstancesScopedListWarningData(o[0]); |
| 3387 checkInstancesScopedListWarningData(o[1]); | 3387 checkInstancesScopedListWarningData(o[1]); |
| 3388 } | 3388 } |
| 3389 | 3389 |
| 3390 core.int buildCounterInstancesScopedListWarning = 0; | 3390 core.int buildCounterInstancesScopedListWarning = 0; |
| 3391 buildInstancesScopedListWarning() { | 3391 buildInstancesScopedListWarning() { |
| 3392 var o = new api.InstancesScopedListWarning(); | 3392 var o = new api.InstancesScopedListWarning(); |
| 3393 buildCounterInstancesScopedListWarning++; | 3393 buildCounterInstancesScopedListWarning++; |
| 3394 if (buildCounterInstancesScopedListWarning < 3) { | 3394 if (buildCounterInstancesScopedListWarning < 3) { |
| 3395 o.code = "foo"; | 3395 o.code = "foo"; |
| 3396 o.data = buildUnnamed2110(); | 3396 o.data = buildUnnamed2427(); |
| 3397 o.message = "foo"; | 3397 o.message = "foo"; |
| 3398 } | 3398 } |
| 3399 buildCounterInstancesScopedListWarning--; | 3399 buildCounterInstancesScopedListWarning--; |
| 3400 return o; | 3400 return o; |
| 3401 } | 3401 } |
| 3402 | 3402 |
| 3403 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 3403 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 3404 buildCounterInstancesScopedListWarning++; | 3404 buildCounterInstancesScopedListWarning++; |
| 3405 if (buildCounterInstancesScopedListWarning < 3) { | 3405 if (buildCounterInstancesScopedListWarning < 3) { |
| 3406 unittest.expect(o.code, unittest.equals('foo')); | 3406 unittest.expect(o.code, unittest.equals('foo')); |
| 3407 checkUnnamed2110(o.data); | 3407 checkUnnamed2427(o.data); |
| 3408 unittest.expect(o.message, unittest.equals('foo')); | 3408 unittest.expect(o.message, unittest.equals('foo')); |
| 3409 } | 3409 } |
| 3410 buildCounterInstancesScopedListWarning--; | 3410 buildCounterInstancesScopedListWarning--; |
| 3411 } | 3411 } |
| 3412 | 3412 |
| 3413 core.int buildCounterInstancesScopedList = 0; | 3413 core.int buildCounterInstancesScopedList = 0; |
| 3414 buildInstancesScopedList() { | 3414 buildInstancesScopedList() { |
| 3415 var o = new api.InstancesScopedList(); | 3415 var o = new api.InstancesScopedList(); |
| 3416 buildCounterInstancesScopedList++; | 3416 buildCounterInstancesScopedList++; |
| 3417 if (buildCounterInstancesScopedList < 3) { | 3417 if (buildCounterInstancesScopedList < 3) { |
| 3418 o.instances = buildUnnamed2109(); | 3418 o.instances = buildUnnamed2426(); |
| 3419 o.warning = buildInstancesScopedListWarning(); | 3419 o.warning = buildInstancesScopedListWarning(); |
| 3420 } | 3420 } |
| 3421 buildCounterInstancesScopedList--; | 3421 buildCounterInstancesScopedList--; |
| 3422 return o; | 3422 return o; |
| 3423 } | 3423 } |
| 3424 | 3424 |
| 3425 checkInstancesScopedList(api.InstancesScopedList o) { | 3425 checkInstancesScopedList(api.InstancesScopedList o) { |
| 3426 buildCounterInstancesScopedList++; | 3426 buildCounterInstancesScopedList++; |
| 3427 if (buildCounterInstancesScopedList < 3) { | 3427 if (buildCounterInstancesScopedList < 3) { |
| 3428 checkUnnamed2109(o.instances); | 3428 checkUnnamed2426(o.instances); |
| 3429 checkInstancesScopedListWarning(o.warning); | 3429 checkInstancesScopedListWarning(o.warning); |
| 3430 } | 3430 } |
| 3431 buildCounterInstancesScopedList--; | 3431 buildCounterInstancesScopedList--; |
| 3432 } | 3432 } |
| 3433 | 3433 |
| 3434 core.int buildCounterInstancesSetMachineTypeRequest = 0; | 3434 core.int buildCounterInstancesSetMachineTypeRequest = 0; |
| 3435 buildInstancesSetMachineTypeRequest() { | 3435 buildInstancesSetMachineTypeRequest() { |
| 3436 var o = new api.InstancesSetMachineTypeRequest(); | 3436 var o = new api.InstancesSetMachineTypeRequest(); |
| 3437 buildCounterInstancesSetMachineTypeRequest++; | 3437 buildCounterInstancesSetMachineTypeRequest++; |
| 3438 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3438 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3487 } | 3487 } |
| 3488 | 3488 |
| 3489 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 3489 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 3490 buildCounterMachineTypeScratchDisks++; | 3490 buildCounterMachineTypeScratchDisks++; |
| 3491 if (buildCounterMachineTypeScratchDisks < 3) { | 3491 if (buildCounterMachineTypeScratchDisks < 3) { |
| 3492 unittest.expect(o.diskGb, unittest.equals(42)); | 3492 unittest.expect(o.diskGb, unittest.equals(42)); |
| 3493 } | 3493 } |
| 3494 buildCounterMachineTypeScratchDisks--; | 3494 buildCounterMachineTypeScratchDisks--; |
| 3495 } | 3495 } |
| 3496 | 3496 |
| 3497 buildUnnamed2111() { | 3497 buildUnnamed2428() { |
| 3498 var o = new core.List<api.MachineTypeScratchDisks>(); | 3498 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 3499 o.add(buildMachineTypeScratchDisks()); | 3499 o.add(buildMachineTypeScratchDisks()); |
| 3500 o.add(buildMachineTypeScratchDisks()); | 3500 o.add(buildMachineTypeScratchDisks()); |
| 3501 return o; | 3501 return o; |
| 3502 } | 3502 } |
| 3503 | 3503 |
| 3504 checkUnnamed2111(core.List<api.MachineTypeScratchDisks> o) { | 3504 checkUnnamed2428(core.List<api.MachineTypeScratchDisks> o) { |
| 3505 unittest.expect(o, unittest.hasLength(2)); | 3505 unittest.expect(o, unittest.hasLength(2)); |
| 3506 checkMachineTypeScratchDisks(o[0]); | 3506 checkMachineTypeScratchDisks(o[0]); |
| 3507 checkMachineTypeScratchDisks(o[1]); | 3507 checkMachineTypeScratchDisks(o[1]); |
| 3508 } | 3508 } |
| 3509 | 3509 |
| 3510 core.int buildCounterMachineType = 0; | 3510 core.int buildCounterMachineType = 0; |
| 3511 buildMachineType() { | 3511 buildMachineType() { |
| 3512 var o = new api.MachineType(); | 3512 var o = new api.MachineType(); |
| 3513 buildCounterMachineType++; | 3513 buildCounterMachineType++; |
| 3514 if (buildCounterMachineType < 3) { | 3514 if (buildCounterMachineType < 3) { |
| 3515 o.creationTimestamp = "foo"; | 3515 o.creationTimestamp = "foo"; |
| 3516 o.deprecated = buildDeprecationStatus(); | 3516 o.deprecated = buildDeprecationStatus(); |
| 3517 o.description = "foo"; | 3517 o.description = "foo"; |
| 3518 o.guestCpus = 42; | 3518 o.guestCpus = 42; |
| 3519 o.id = "foo"; | 3519 o.id = "foo"; |
| 3520 o.imageSpaceGb = 42; | 3520 o.imageSpaceGb = 42; |
| 3521 o.kind = "foo"; | 3521 o.kind = "foo"; |
| 3522 o.maximumPersistentDisks = 42; | 3522 o.maximumPersistentDisks = 42; |
| 3523 o.maximumPersistentDisksSizeGb = "foo"; | 3523 o.maximumPersistentDisksSizeGb = "foo"; |
| 3524 o.memoryMb = 42; | 3524 o.memoryMb = 42; |
| 3525 o.name = "foo"; | 3525 o.name = "foo"; |
| 3526 o.scratchDisks = buildUnnamed2111(); | 3526 o.scratchDisks = buildUnnamed2428(); |
| 3527 o.selfLink = "foo"; | 3527 o.selfLink = "foo"; |
| 3528 o.zone = "foo"; | 3528 o.zone = "foo"; |
| 3529 } | 3529 } |
| 3530 buildCounterMachineType--; | 3530 buildCounterMachineType--; |
| 3531 return o; | 3531 return o; |
| 3532 } | 3532 } |
| 3533 | 3533 |
| 3534 checkMachineType(api.MachineType o) { | 3534 checkMachineType(api.MachineType o) { |
| 3535 buildCounterMachineType++; | 3535 buildCounterMachineType++; |
| 3536 if (buildCounterMachineType < 3) { | 3536 if (buildCounterMachineType < 3) { |
| 3537 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3537 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3538 checkDeprecationStatus(o.deprecated); | 3538 checkDeprecationStatus(o.deprecated); |
| 3539 unittest.expect(o.description, unittest.equals('foo')); | 3539 unittest.expect(o.description, unittest.equals('foo')); |
| 3540 unittest.expect(o.guestCpus, unittest.equals(42)); | 3540 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 3541 unittest.expect(o.id, unittest.equals('foo')); | 3541 unittest.expect(o.id, unittest.equals('foo')); |
| 3542 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 3542 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 3543 unittest.expect(o.kind, unittest.equals('foo')); | 3543 unittest.expect(o.kind, unittest.equals('foo')); |
| 3544 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 3544 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 3545 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 3545 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 3546 unittest.expect(o.memoryMb, unittest.equals(42)); | 3546 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 3547 unittest.expect(o.name, unittest.equals('foo')); | 3547 unittest.expect(o.name, unittest.equals('foo')); |
| 3548 checkUnnamed2111(o.scratchDisks); | 3548 checkUnnamed2428(o.scratchDisks); |
| 3549 unittest.expect(o.selfLink, unittest.equals('foo')); | 3549 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3550 unittest.expect(o.zone, unittest.equals('foo')); | 3550 unittest.expect(o.zone, unittest.equals('foo')); |
| 3551 } | 3551 } |
| 3552 buildCounterMachineType--; | 3552 buildCounterMachineType--; |
| 3553 } | 3553 } |
| 3554 | 3554 |
| 3555 buildUnnamed2112() { | 3555 buildUnnamed2429() { |
| 3556 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 3556 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 3557 o["x"] = buildMachineTypesScopedList(); | 3557 o["x"] = buildMachineTypesScopedList(); |
| 3558 o["y"] = buildMachineTypesScopedList(); | 3558 o["y"] = buildMachineTypesScopedList(); |
| 3559 return o; | 3559 return o; |
| 3560 } | 3560 } |
| 3561 | 3561 |
| 3562 checkUnnamed2112(core.Map<core.String, api.MachineTypesScopedList> o) { | 3562 checkUnnamed2429(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 3563 unittest.expect(o, unittest.hasLength(2)); | 3563 unittest.expect(o, unittest.hasLength(2)); |
| 3564 checkMachineTypesScopedList(o["x"]); | 3564 checkMachineTypesScopedList(o["x"]); |
| 3565 checkMachineTypesScopedList(o["y"]); | 3565 checkMachineTypesScopedList(o["y"]); |
| 3566 } | 3566 } |
| 3567 | 3567 |
| 3568 core.int buildCounterMachineTypeAggregatedList = 0; | 3568 core.int buildCounterMachineTypeAggregatedList = 0; |
| 3569 buildMachineTypeAggregatedList() { | 3569 buildMachineTypeAggregatedList() { |
| 3570 var o = new api.MachineTypeAggregatedList(); | 3570 var o = new api.MachineTypeAggregatedList(); |
| 3571 buildCounterMachineTypeAggregatedList++; | 3571 buildCounterMachineTypeAggregatedList++; |
| 3572 if (buildCounterMachineTypeAggregatedList < 3) { | 3572 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3573 o.id = "foo"; | 3573 o.id = "foo"; |
| 3574 o.items = buildUnnamed2112(); | 3574 o.items = buildUnnamed2429(); |
| 3575 o.kind = "foo"; | 3575 o.kind = "foo"; |
| 3576 o.nextPageToken = "foo"; | 3576 o.nextPageToken = "foo"; |
| 3577 o.selfLink = "foo"; | 3577 o.selfLink = "foo"; |
| 3578 } | 3578 } |
| 3579 buildCounterMachineTypeAggregatedList--; | 3579 buildCounterMachineTypeAggregatedList--; |
| 3580 return o; | 3580 return o; |
| 3581 } | 3581 } |
| 3582 | 3582 |
| 3583 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 3583 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 3584 buildCounterMachineTypeAggregatedList++; | 3584 buildCounterMachineTypeAggregatedList++; |
| 3585 if (buildCounterMachineTypeAggregatedList < 3) { | 3585 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3586 unittest.expect(o.id, unittest.equals('foo')); | 3586 unittest.expect(o.id, unittest.equals('foo')); |
| 3587 checkUnnamed2112(o.items); | 3587 checkUnnamed2429(o.items); |
| 3588 unittest.expect(o.kind, unittest.equals('foo')); | 3588 unittest.expect(o.kind, unittest.equals('foo')); |
| 3589 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3589 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3590 unittest.expect(o.selfLink, unittest.equals('foo')); | 3590 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3591 } | 3591 } |
| 3592 buildCounterMachineTypeAggregatedList--; | 3592 buildCounterMachineTypeAggregatedList--; |
| 3593 } | 3593 } |
| 3594 | 3594 |
| 3595 buildUnnamed2113() { | 3595 buildUnnamed2430() { |
| 3596 var o = new core.List<api.MachineType>(); | 3596 var o = new core.List<api.MachineType>(); |
| 3597 o.add(buildMachineType()); | 3597 o.add(buildMachineType()); |
| 3598 o.add(buildMachineType()); | 3598 o.add(buildMachineType()); |
| 3599 return o; | 3599 return o; |
| 3600 } | 3600 } |
| 3601 | 3601 |
| 3602 checkUnnamed2113(core.List<api.MachineType> o) { | 3602 checkUnnamed2430(core.List<api.MachineType> o) { |
| 3603 unittest.expect(o, unittest.hasLength(2)); | 3603 unittest.expect(o, unittest.hasLength(2)); |
| 3604 checkMachineType(o[0]); | 3604 checkMachineType(o[0]); |
| 3605 checkMachineType(o[1]); | 3605 checkMachineType(o[1]); |
| 3606 } | 3606 } |
| 3607 | 3607 |
| 3608 core.int buildCounterMachineTypeList = 0; | 3608 core.int buildCounterMachineTypeList = 0; |
| 3609 buildMachineTypeList() { | 3609 buildMachineTypeList() { |
| 3610 var o = new api.MachineTypeList(); | 3610 var o = new api.MachineTypeList(); |
| 3611 buildCounterMachineTypeList++; | 3611 buildCounterMachineTypeList++; |
| 3612 if (buildCounterMachineTypeList < 3) { | 3612 if (buildCounterMachineTypeList < 3) { |
| 3613 o.id = "foo"; | 3613 o.id = "foo"; |
| 3614 o.items = buildUnnamed2113(); | 3614 o.items = buildUnnamed2430(); |
| 3615 o.kind = "foo"; | 3615 o.kind = "foo"; |
| 3616 o.nextPageToken = "foo"; | 3616 o.nextPageToken = "foo"; |
| 3617 o.selfLink = "foo"; | 3617 o.selfLink = "foo"; |
| 3618 } | 3618 } |
| 3619 buildCounterMachineTypeList--; | 3619 buildCounterMachineTypeList--; |
| 3620 return o; | 3620 return o; |
| 3621 } | 3621 } |
| 3622 | 3622 |
| 3623 checkMachineTypeList(api.MachineTypeList o) { | 3623 checkMachineTypeList(api.MachineTypeList o) { |
| 3624 buildCounterMachineTypeList++; | 3624 buildCounterMachineTypeList++; |
| 3625 if (buildCounterMachineTypeList < 3) { | 3625 if (buildCounterMachineTypeList < 3) { |
| 3626 unittest.expect(o.id, unittest.equals('foo')); | 3626 unittest.expect(o.id, unittest.equals('foo')); |
| 3627 checkUnnamed2113(o.items); | 3627 checkUnnamed2430(o.items); |
| 3628 unittest.expect(o.kind, unittest.equals('foo')); | 3628 unittest.expect(o.kind, unittest.equals('foo')); |
| 3629 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3629 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3630 unittest.expect(o.selfLink, unittest.equals('foo')); | 3630 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3631 } | 3631 } |
| 3632 buildCounterMachineTypeList--; | 3632 buildCounterMachineTypeList--; |
| 3633 } | 3633 } |
| 3634 | 3634 |
| 3635 buildUnnamed2114() { | 3635 buildUnnamed2431() { |
| 3636 var o = new core.List<api.MachineType>(); | 3636 var o = new core.List<api.MachineType>(); |
| 3637 o.add(buildMachineType()); | 3637 o.add(buildMachineType()); |
| 3638 o.add(buildMachineType()); | 3638 o.add(buildMachineType()); |
| 3639 return o; | 3639 return o; |
| 3640 } | 3640 } |
| 3641 | 3641 |
| 3642 checkUnnamed2114(core.List<api.MachineType> o) { | 3642 checkUnnamed2431(core.List<api.MachineType> o) { |
| 3643 unittest.expect(o, unittest.hasLength(2)); | 3643 unittest.expect(o, unittest.hasLength(2)); |
| 3644 checkMachineType(o[0]); | 3644 checkMachineType(o[0]); |
| 3645 checkMachineType(o[1]); | 3645 checkMachineType(o[1]); |
| 3646 } | 3646 } |
| 3647 | 3647 |
| 3648 core.int buildCounterMachineTypesScopedListWarningData = 0; | 3648 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 3649 buildMachineTypesScopedListWarningData() { | 3649 buildMachineTypesScopedListWarningData() { |
| 3650 var o = new api.MachineTypesScopedListWarningData(); | 3650 var o = new api.MachineTypesScopedListWarningData(); |
| 3651 buildCounterMachineTypesScopedListWarningData++; | 3651 buildCounterMachineTypesScopedListWarningData++; |
| 3652 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3652 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3653 o.key = "foo"; | 3653 o.key = "foo"; |
| 3654 o.value = "foo"; | 3654 o.value = "foo"; |
| 3655 } | 3655 } |
| 3656 buildCounterMachineTypesScopedListWarningData--; | 3656 buildCounterMachineTypesScopedListWarningData--; |
| 3657 return o; | 3657 return o; |
| 3658 } | 3658 } |
| 3659 | 3659 |
| 3660 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 3660 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 3661 buildCounterMachineTypesScopedListWarningData++; | 3661 buildCounterMachineTypesScopedListWarningData++; |
| 3662 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3662 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3663 unittest.expect(o.key, unittest.equals('foo')); | 3663 unittest.expect(o.key, unittest.equals('foo')); |
| 3664 unittest.expect(o.value, unittest.equals('foo')); | 3664 unittest.expect(o.value, unittest.equals('foo')); |
| 3665 } | 3665 } |
| 3666 buildCounterMachineTypesScopedListWarningData--; | 3666 buildCounterMachineTypesScopedListWarningData--; |
| 3667 } | 3667 } |
| 3668 | 3668 |
| 3669 buildUnnamed2115() { | 3669 buildUnnamed2432() { |
| 3670 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 3670 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 3671 o.add(buildMachineTypesScopedListWarningData()); | 3671 o.add(buildMachineTypesScopedListWarningData()); |
| 3672 o.add(buildMachineTypesScopedListWarningData()); | 3672 o.add(buildMachineTypesScopedListWarningData()); |
| 3673 return o; | 3673 return o; |
| 3674 } | 3674 } |
| 3675 | 3675 |
| 3676 checkUnnamed2115(core.List<api.MachineTypesScopedListWarningData> o) { | 3676 checkUnnamed2432(core.List<api.MachineTypesScopedListWarningData> o) { |
| 3677 unittest.expect(o, unittest.hasLength(2)); | 3677 unittest.expect(o, unittest.hasLength(2)); |
| 3678 checkMachineTypesScopedListWarningData(o[0]); | 3678 checkMachineTypesScopedListWarningData(o[0]); |
| 3679 checkMachineTypesScopedListWarningData(o[1]); | 3679 checkMachineTypesScopedListWarningData(o[1]); |
| 3680 } | 3680 } |
| 3681 | 3681 |
| 3682 core.int buildCounterMachineTypesScopedListWarning = 0; | 3682 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 3683 buildMachineTypesScopedListWarning() { | 3683 buildMachineTypesScopedListWarning() { |
| 3684 var o = new api.MachineTypesScopedListWarning(); | 3684 var o = new api.MachineTypesScopedListWarning(); |
| 3685 buildCounterMachineTypesScopedListWarning++; | 3685 buildCounterMachineTypesScopedListWarning++; |
| 3686 if (buildCounterMachineTypesScopedListWarning < 3) { | 3686 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3687 o.code = "foo"; | 3687 o.code = "foo"; |
| 3688 o.data = buildUnnamed2115(); | 3688 o.data = buildUnnamed2432(); |
| 3689 o.message = "foo"; | 3689 o.message = "foo"; |
| 3690 } | 3690 } |
| 3691 buildCounterMachineTypesScopedListWarning--; | 3691 buildCounterMachineTypesScopedListWarning--; |
| 3692 return o; | 3692 return o; |
| 3693 } | 3693 } |
| 3694 | 3694 |
| 3695 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 3695 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 3696 buildCounterMachineTypesScopedListWarning++; | 3696 buildCounterMachineTypesScopedListWarning++; |
| 3697 if (buildCounterMachineTypesScopedListWarning < 3) { | 3697 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3698 unittest.expect(o.code, unittest.equals('foo')); | 3698 unittest.expect(o.code, unittest.equals('foo')); |
| 3699 checkUnnamed2115(o.data); | 3699 checkUnnamed2432(o.data); |
| 3700 unittest.expect(o.message, unittest.equals('foo')); | 3700 unittest.expect(o.message, unittest.equals('foo')); |
| 3701 } | 3701 } |
| 3702 buildCounterMachineTypesScopedListWarning--; | 3702 buildCounterMachineTypesScopedListWarning--; |
| 3703 } | 3703 } |
| 3704 | 3704 |
| 3705 core.int buildCounterMachineTypesScopedList = 0; | 3705 core.int buildCounterMachineTypesScopedList = 0; |
| 3706 buildMachineTypesScopedList() { | 3706 buildMachineTypesScopedList() { |
| 3707 var o = new api.MachineTypesScopedList(); | 3707 var o = new api.MachineTypesScopedList(); |
| 3708 buildCounterMachineTypesScopedList++; | 3708 buildCounterMachineTypesScopedList++; |
| 3709 if (buildCounterMachineTypesScopedList < 3) { | 3709 if (buildCounterMachineTypesScopedList < 3) { |
| 3710 o.machineTypes = buildUnnamed2114(); | 3710 o.machineTypes = buildUnnamed2431(); |
| 3711 o.warning = buildMachineTypesScopedListWarning(); | 3711 o.warning = buildMachineTypesScopedListWarning(); |
| 3712 } | 3712 } |
| 3713 buildCounterMachineTypesScopedList--; | 3713 buildCounterMachineTypesScopedList--; |
| 3714 return o; | 3714 return o; |
| 3715 } | 3715 } |
| 3716 | 3716 |
| 3717 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 3717 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 3718 buildCounterMachineTypesScopedList++; | 3718 buildCounterMachineTypesScopedList++; |
| 3719 if (buildCounterMachineTypesScopedList < 3) { | 3719 if (buildCounterMachineTypesScopedList < 3) { |
| 3720 checkUnnamed2114(o.machineTypes); | 3720 checkUnnamed2431(o.machineTypes); |
| 3721 checkMachineTypesScopedListWarning(o.warning); | 3721 checkMachineTypesScopedListWarning(o.warning); |
| 3722 } | 3722 } |
| 3723 buildCounterMachineTypesScopedList--; | 3723 buildCounterMachineTypesScopedList--; |
| 3724 } | 3724 } |
| 3725 | 3725 |
| 3726 core.int buildCounterManagedInstance = 0; | 3726 core.int buildCounterManagedInstance = 0; |
| 3727 buildManagedInstance() { | 3727 buildManagedInstance() { |
| 3728 var o = new api.ManagedInstance(); | 3728 var o = new api.ManagedInstance(); |
| 3729 buildCounterManagedInstance++; | 3729 buildCounterManagedInstance++; |
| 3730 if (buildCounterManagedInstance < 3) { | 3730 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3766 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 3766 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 3767 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 3767 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 3768 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 3768 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 3769 unittest.expect(o.code, unittest.equals('foo')); | 3769 unittest.expect(o.code, unittest.equals('foo')); |
| 3770 unittest.expect(o.location, unittest.equals('foo')); | 3770 unittest.expect(o.location, unittest.equals('foo')); |
| 3771 unittest.expect(o.message, unittest.equals('foo')); | 3771 unittest.expect(o.message, unittest.equals('foo')); |
| 3772 } | 3772 } |
| 3773 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 3773 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 3774 } | 3774 } |
| 3775 | 3775 |
| 3776 buildUnnamed2116() { | 3776 buildUnnamed2433() { |
| 3777 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 3777 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 3778 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3778 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3779 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3779 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3780 return o; | 3780 return o; |
| 3781 } | 3781 } |
| 3782 | 3782 |
| 3783 checkUnnamed2116(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 3783 checkUnnamed2433(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 3784 unittest.expect(o, unittest.hasLength(2)); | 3784 unittest.expect(o, unittest.hasLength(2)); |
| 3785 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 3785 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 3786 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 3786 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 3787 } | 3787 } |
| 3788 | 3788 |
| 3789 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 3789 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 3790 buildManagedInstanceLastAttemptErrors() { | 3790 buildManagedInstanceLastAttemptErrors() { |
| 3791 var o = new api.ManagedInstanceLastAttemptErrors(); | 3791 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 3792 buildCounterManagedInstanceLastAttemptErrors++; | 3792 buildCounterManagedInstanceLastAttemptErrors++; |
| 3793 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3793 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3794 o.errors = buildUnnamed2116(); | 3794 o.errors = buildUnnamed2433(); |
| 3795 } | 3795 } |
| 3796 buildCounterManagedInstanceLastAttemptErrors--; | 3796 buildCounterManagedInstanceLastAttemptErrors--; |
| 3797 return o; | 3797 return o; |
| 3798 } | 3798 } |
| 3799 | 3799 |
| 3800 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 3800 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 3801 buildCounterManagedInstanceLastAttemptErrors++; | 3801 buildCounterManagedInstanceLastAttemptErrors++; |
| 3802 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3802 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3803 checkUnnamed2116(o.errors); | 3803 checkUnnamed2433(o.errors); |
| 3804 } | 3804 } |
| 3805 buildCounterManagedInstanceLastAttemptErrors--; | 3805 buildCounterManagedInstanceLastAttemptErrors--; |
| 3806 } | 3806 } |
| 3807 | 3807 |
| 3808 core.int buildCounterManagedInstanceLastAttempt = 0; | 3808 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 3809 buildManagedInstanceLastAttempt() { | 3809 buildManagedInstanceLastAttempt() { |
| 3810 var o = new api.ManagedInstanceLastAttempt(); | 3810 var o = new api.ManagedInstanceLastAttempt(); |
| 3811 buildCounterManagedInstanceLastAttempt++; | 3811 buildCounterManagedInstanceLastAttempt++; |
| 3812 if (buildCounterManagedInstanceLastAttempt < 3) { | 3812 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 3813 o.errors = buildManagedInstanceLastAttemptErrors(); | 3813 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3838 | 3838 |
| 3839 checkMetadataItems(api.MetadataItems o) { | 3839 checkMetadataItems(api.MetadataItems o) { |
| 3840 buildCounterMetadataItems++; | 3840 buildCounterMetadataItems++; |
| 3841 if (buildCounterMetadataItems < 3) { | 3841 if (buildCounterMetadataItems < 3) { |
| 3842 unittest.expect(o.key, unittest.equals('foo')); | 3842 unittest.expect(o.key, unittest.equals('foo')); |
| 3843 unittest.expect(o.value, unittest.equals('foo')); | 3843 unittest.expect(o.value, unittest.equals('foo')); |
| 3844 } | 3844 } |
| 3845 buildCounterMetadataItems--; | 3845 buildCounterMetadataItems--; |
| 3846 } | 3846 } |
| 3847 | 3847 |
| 3848 buildUnnamed2117() { | 3848 buildUnnamed2434() { |
| 3849 var o = new core.List<api.MetadataItems>(); | 3849 var o = new core.List<api.MetadataItems>(); |
| 3850 o.add(buildMetadataItems()); | 3850 o.add(buildMetadataItems()); |
| 3851 o.add(buildMetadataItems()); | 3851 o.add(buildMetadataItems()); |
| 3852 return o; | 3852 return o; |
| 3853 } | 3853 } |
| 3854 | 3854 |
| 3855 checkUnnamed2117(core.List<api.MetadataItems> o) { | 3855 checkUnnamed2434(core.List<api.MetadataItems> o) { |
| 3856 unittest.expect(o, unittest.hasLength(2)); | 3856 unittest.expect(o, unittest.hasLength(2)); |
| 3857 checkMetadataItems(o[0]); | 3857 checkMetadataItems(o[0]); |
| 3858 checkMetadataItems(o[1]); | 3858 checkMetadataItems(o[1]); |
| 3859 } | 3859 } |
| 3860 | 3860 |
| 3861 core.int buildCounterMetadata = 0; | 3861 core.int buildCounterMetadata = 0; |
| 3862 buildMetadata() { | 3862 buildMetadata() { |
| 3863 var o = new api.Metadata(); | 3863 var o = new api.Metadata(); |
| 3864 buildCounterMetadata++; | 3864 buildCounterMetadata++; |
| 3865 if (buildCounterMetadata < 3) { | 3865 if (buildCounterMetadata < 3) { |
| 3866 o.fingerprint = "foo"; | 3866 o.fingerprint = "foo"; |
| 3867 o.items = buildUnnamed2117(); | 3867 o.items = buildUnnamed2434(); |
| 3868 o.kind = "foo"; | 3868 o.kind = "foo"; |
| 3869 } | 3869 } |
| 3870 buildCounterMetadata--; | 3870 buildCounterMetadata--; |
| 3871 return o; | 3871 return o; |
| 3872 } | 3872 } |
| 3873 | 3873 |
| 3874 checkMetadata(api.Metadata o) { | 3874 checkMetadata(api.Metadata o) { |
| 3875 buildCounterMetadata++; | 3875 buildCounterMetadata++; |
| 3876 if (buildCounterMetadata < 3) { | 3876 if (buildCounterMetadata < 3) { |
| 3877 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3877 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3878 checkUnnamed2117(o.items); | 3878 checkUnnamed2434(o.items); |
| 3879 unittest.expect(o.kind, unittest.equals('foo')); | 3879 unittest.expect(o.kind, unittest.equals('foo')); |
| 3880 } | 3880 } |
| 3881 buildCounterMetadata--; | 3881 buildCounterMetadata--; |
| 3882 } | 3882 } |
| 3883 | 3883 |
| 3884 core.int buildCounterNamedPort = 0; | 3884 core.int buildCounterNamedPort = 0; |
| 3885 buildNamedPort() { | 3885 buildNamedPort() { |
| 3886 var o = new api.NamedPort(); | 3886 var o = new api.NamedPort(); |
| 3887 buildCounterNamedPort++; | 3887 buildCounterNamedPort++; |
| 3888 if (buildCounterNamedPort < 3) { | 3888 if (buildCounterNamedPort < 3) { |
| 3889 o.name = "foo"; | 3889 o.name = "foo"; |
| 3890 o.port = 42; | 3890 o.port = 42; |
| 3891 } | 3891 } |
| 3892 buildCounterNamedPort--; | 3892 buildCounterNamedPort--; |
| 3893 return o; | 3893 return o; |
| 3894 } | 3894 } |
| 3895 | 3895 |
| 3896 checkNamedPort(api.NamedPort o) { | 3896 checkNamedPort(api.NamedPort o) { |
| 3897 buildCounterNamedPort++; | 3897 buildCounterNamedPort++; |
| 3898 if (buildCounterNamedPort < 3) { | 3898 if (buildCounterNamedPort < 3) { |
| 3899 unittest.expect(o.name, unittest.equals('foo')); | 3899 unittest.expect(o.name, unittest.equals('foo')); |
| 3900 unittest.expect(o.port, unittest.equals(42)); | 3900 unittest.expect(o.port, unittest.equals(42)); |
| 3901 } | 3901 } |
| 3902 buildCounterNamedPort--; | 3902 buildCounterNamedPort--; |
| 3903 } | 3903 } |
| 3904 | 3904 |
| 3905 buildUnnamed2118() { | 3905 buildUnnamed2435() { |
| 3906 var o = new core.List<core.String>(); | 3906 var o = new core.List<core.String>(); |
| 3907 o.add("foo"); | 3907 o.add("foo"); |
| 3908 o.add("foo"); | 3908 o.add("foo"); |
| 3909 return o; | 3909 return o; |
| 3910 } | 3910 } |
| 3911 | 3911 |
| 3912 checkUnnamed2118(core.List<core.String> o) { | 3912 checkUnnamed2435(core.List<core.String> o) { |
| 3913 unittest.expect(o, unittest.hasLength(2)); | 3913 unittest.expect(o, unittest.hasLength(2)); |
| 3914 unittest.expect(o[0], unittest.equals('foo')); | 3914 unittest.expect(o[0], unittest.equals('foo')); |
| 3915 unittest.expect(o[1], unittest.equals('foo')); | 3915 unittest.expect(o[1], unittest.equals('foo')); |
| 3916 } | 3916 } |
| 3917 | 3917 |
| 3918 core.int buildCounterNetwork = 0; | 3918 core.int buildCounterNetwork = 0; |
| 3919 buildNetwork() { | 3919 buildNetwork() { |
| 3920 var o = new api.Network(); | 3920 var o = new api.Network(); |
| 3921 buildCounterNetwork++; | 3921 buildCounterNetwork++; |
| 3922 if (buildCounterNetwork < 3) { | 3922 if (buildCounterNetwork < 3) { |
| 3923 o.IPv4Range = "foo"; | 3923 o.IPv4Range = "foo"; |
| 3924 o.autoCreateSubnetworks = true; | 3924 o.autoCreateSubnetworks = true; |
| 3925 o.creationTimestamp = "foo"; | 3925 o.creationTimestamp = "foo"; |
| 3926 o.description = "foo"; | 3926 o.description = "foo"; |
| 3927 o.gatewayIPv4 = "foo"; | 3927 o.gatewayIPv4 = "foo"; |
| 3928 o.id = "foo"; | 3928 o.id = "foo"; |
| 3929 o.kind = "foo"; | 3929 o.kind = "foo"; |
| 3930 o.name = "foo"; | 3930 o.name = "foo"; |
| 3931 o.selfLink = "foo"; | 3931 o.selfLink = "foo"; |
| 3932 o.subnetworks = buildUnnamed2118(); | 3932 o.subnetworks = buildUnnamed2435(); |
| 3933 } | 3933 } |
| 3934 buildCounterNetwork--; | 3934 buildCounterNetwork--; |
| 3935 return o; | 3935 return o; |
| 3936 } | 3936 } |
| 3937 | 3937 |
| 3938 checkNetwork(api.Network o) { | 3938 checkNetwork(api.Network o) { |
| 3939 buildCounterNetwork++; | 3939 buildCounterNetwork++; |
| 3940 if (buildCounterNetwork < 3) { | 3940 if (buildCounterNetwork < 3) { |
| 3941 unittest.expect(o.IPv4Range, unittest.equals('foo')); | 3941 unittest.expect(o.IPv4Range, unittest.equals('foo')); |
| 3942 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); | 3942 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); |
| 3943 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3943 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3944 unittest.expect(o.description, unittest.equals('foo')); | 3944 unittest.expect(o.description, unittest.equals('foo')); |
| 3945 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 3945 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 3946 unittest.expect(o.id, unittest.equals('foo')); | 3946 unittest.expect(o.id, unittest.equals('foo')); |
| 3947 unittest.expect(o.kind, unittest.equals('foo')); | 3947 unittest.expect(o.kind, unittest.equals('foo')); |
| 3948 unittest.expect(o.name, unittest.equals('foo')); | 3948 unittest.expect(o.name, unittest.equals('foo')); |
| 3949 unittest.expect(o.selfLink, unittest.equals('foo')); | 3949 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3950 checkUnnamed2118(o.subnetworks); | 3950 checkUnnamed2435(o.subnetworks); |
| 3951 } | 3951 } |
| 3952 buildCounterNetwork--; | 3952 buildCounterNetwork--; |
| 3953 } | 3953 } |
| 3954 | 3954 |
| 3955 buildUnnamed2119() { | 3955 buildUnnamed2436() { |
| 3956 var o = new core.List<api.AccessConfig>(); | 3956 var o = new core.List<api.AccessConfig>(); |
| 3957 o.add(buildAccessConfig()); | 3957 o.add(buildAccessConfig()); |
| 3958 o.add(buildAccessConfig()); | 3958 o.add(buildAccessConfig()); |
| 3959 return o; | 3959 return o; |
| 3960 } | 3960 } |
| 3961 | 3961 |
| 3962 checkUnnamed2119(core.List<api.AccessConfig> o) { | 3962 checkUnnamed2436(core.List<api.AccessConfig> o) { |
| 3963 unittest.expect(o, unittest.hasLength(2)); | 3963 unittest.expect(o, unittest.hasLength(2)); |
| 3964 checkAccessConfig(o[0]); | 3964 checkAccessConfig(o[0]); |
| 3965 checkAccessConfig(o[1]); | 3965 checkAccessConfig(o[1]); |
| 3966 } | 3966 } |
| 3967 | 3967 |
| 3968 core.int buildCounterNetworkInterface = 0; | 3968 core.int buildCounterNetworkInterface = 0; |
| 3969 buildNetworkInterface() { | 3969 buildNetworkInterface() { |
| 3970 var o = new api.NetworkInterface(); | 3970 var o = new api.NetworkInterface(); |
| 3971 buildCounterNetworkInterface++; | 3971 buildCounterNetworkInterface++; |
| 3972 if (buildCounterNetworkInterface < 3) { | 3972 if (buildCounterNetworkInterface < 3) { |
| 3973 o.accessConfigs = buildUnnamed2119(); | 3973 o.accessConfigs = buildUnnamed2436(); |
| 3974 o.name = "foo"; | 3974 o.name = "foo"; |
| 3975 o.network = "foo"; | 3975 o.network = "foo"; |
| 3976 o.networkIP = "foo"; | 3976 o.networkIP = "foo"; |
| 3977 o.subnetwork = "foo"; | 3977 o.subnetwork = "foo"; |
| 3978 } | 3978 } |
| 3979 buildCounterNetworkInterface--; | 3979 buildCounterNetworkInterface--; |
| 3980 return o; | 3980 return o; |
| 3981 } | 3981 } |
| 3982 | 3982 |
| 3983 checkNetworkInterface(api.NetworkInterface o) { | 3983 checkNetworkInterface(api.NetworkInterface o) { |
| 3984 buildCounterNetworkInterface++; | 3984 buildCounterNetworkInterface++; |
| 3985 if (buildCounterNetworkInterface < 3) { | 3985 if (buildCounterNetworkInterface < 3) { |
| 3986 checkUnnamed2119(o.accessConfigs); | 3986 checkUnnamed2436(o.accessConfigs); |
| 3987 unittest.expect(o.name, unittest.equals('foo')); | 3987 unittest.expect(o.name, unittest.equals('foo')); |
| 3988 unittest.expect(o.network, unittest.equals('foo')); | 3988 unittest.expect(o.network, unittest.equals('foo')); |
| 3989 unittest.expect(o.networkIP, unittest.equals('foo')); | 3989 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 3990 unittest.expect(o.subnetwork, unittest.equals('foo')); | 3990 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 3991 } | 3991 } |
| 3992 buildCounterNetworkInterface--; | 3992 buildCounterNetworkInterface--; |
| 3993 } | 3993 } |
| 3994 | 3994 |
| 3995 buildUnnamed2120() { | 3995 buildUnnamed2437() { |
| 3996 var o = new core.List<api.Network>(); | 3996 var o = new core.List<api.Network>(); |
| 3997 o.add(buildNetwork()); | 3997 o.add(buildNetwork()); |
| 3998 o.add(buildNetwork()); | 3998 o.add(buildNetwork()); |
| 3999 return o; | 3999 return o; |
| 4000 } | 4000 } |
| 4001 | 4001 |
| 4002 checkUnnamed2120(core.List<api.Network> o) { | 4002 checkUnnamed2437(core.List<api.Network> o) { |
| 4003 unittest.expect(o, unittest.hasLength(2)); | 4003 unittest.expect(o, unittest.hasLength(2)); |
| 4004 checkNetwork(o[0]); | 4004 checkNetwork(o[0]); |
| 4005 checkNetwork(o[1]); | 4005 checkNetwork(o[1]); |
| 4006 } | 4006 } |
| 4007 | 4007 |
| 4008 core.int buildCounterNetworkList = 0; | 4008 core.int buildCounterNetworkList = 0; |
| 4009 buildNetworkList() { | 4009 buildNetworkList() { |
| 4010 var o = new api.NetworkList(); | 4010 var o = new api.NetworkList(); |
| 4011 buildCounterNetworkList++; | 4011 buildCounterNetworkList++; |
| 4012 if (buildCounterNetworkList < 3) { | 4012 if (buildCounterNetworkList < 3) { |
| 4013 o.id = "foo"; | 4013 o.id = "foo"; |
| 4014 o.items = buildUnnamed2120(); | 4014 o.items = buildUnnamed2437(); |
| 4015 o.kind = "foo"; | 4015 o.kind = "foo"; |
| 4016 o.nextPageToken = "foo"; | 4016 o.nextPageToken = "foo"; |
| 4017 o.selfLink = "foo"; | 4017 o.selfLink = "foo"; |
| 4018 } | 4018 } |
| 4019 buildCounterNetworkList--; | 4019 buildCounterNetworkList--; |
| 4020 return o; | 4020 return o; |
| 4021 } | 4021 } |
| 4022 | 4022 |
| 4023 checkNetworkList(api.NetworkList o) { | 4023 checkNetworkList(api.NetworkList o) { |
| 4024 buildCounterNetworkList++; | 4024 buildCounterNetworkList++; |
| 4025 if (buildCounterNetworkList < 3) { | 4025 if (buildCounterNetworkList < 3) { |
| 4026 unittest.expect(o.id, unittest.equals('foo')); | 4026 unittest.expect(o.id, unittest.equals('foo')); |
| 4027 checkUnnamed2120(o.items); | 4027 checkUnnamed2437(o.items); |
| 4028 unittest.expect(o.kind, unittest.equals('foo')); | 4028 unittest.expect(o.kind, unittest.equals('foo')); |
| 4029 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4029 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4030 unittest.expect(o.selfLink, unittest.equals('foo')); | 4030 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4031 } | 4031 } |
| 4032 buildCounterNetworkList--; | 4032 buildCounterNetworkList--; |
| 4033 } | 4033 } |
| 4034 | 4034 |
| 4035 core.int buildCounterOperationErrorErrors = 0; | 4035 core.int buildCounterOperationErrorErrors = 0; |
| 4036 buildOperationErrorErrors() { | 4036 buildOperationErrorErrors() { |
| 4037 var o = new api.OperationErrorErrors(); | 4037 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4048 checkOperationErrorErrors(api.OperationErrorErrors o) { | 4048 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 4049 buildCounterOperationErrorErrors++; | 4049 buildCounterOperationErrorErrors++; |
| 4050 if (buildCounterOperationErrorErrors < 3) { | 4050 if (buildCounterOperationErrorErrors < 3) { |
| 4051 unittest.expect(o.code, unittest.equals('foo')); | 4051 unittest.expect(o.code, unittest.equals('foo')); |
| 4052 unittest.expect(o.location, unittest.equals('foo')); | 4052 unittest.expect(o.location, unittest.equals('foo')); |
| 4053 unittest.expect(o.message, unittest.equals('foo')); | 4053 unittest.expect(o.message, unittest.equals('foo')); |
| 4054 } | 4054 } |
| 4055 buildCounterOperationErrorErrors--; | 4055 buildCounterOperationErrorErrors--; |
| 4056 } | 4056 } |
| 4057 | 4057 |
| 4058 buildUnnamed2121() { | 4058 buildUnnamed2438() { |
| 4059 var o = new core.List<api.OperationErrorErrors>(); | 4059 var o = new core.List<api.OperationErrorErrors>(); |
| 4060 o.add(buildOperationErrorErrors()); | 4060 o.add(buildOperationErrorErrors()); |
| 4061 o.add(buildOperationErrorErrors()); | 4061 o.add(buildOperationErrorErrors()); |
| 4062 return o; | 4062 return o; |
| 4063 } | 4063 } |
| 4064 | 4064 |
| 4065 checkUnnamed2121(core.List<api.OperationErrorErrors> o) { | 4065 checkUnnamed2438(core.List<api.OperationErrorErrors> o) { |
| 4066 unittest.expect(o, unittest.hasLength(2)); | 4066 unittest.expect(o, unittest.hasLength(2)); |
| 4067 checkOperationErrorErrors(o[0]); | 4067 checkOperationErrorErrors(o[0]); |
| 4068 checkOperationErrorErrors(o[1]); | 4068 checkOperationErrorErrors(o[1]); |
| 4069 } | 4069 } |
| 4070 | 4070 |
| 4071 core.int buildCounterOperationError = 0; | 4071 core.int buildCounterOperationError = 0; |
| 4072 buildOperationError() { | 4072 buildOperationError() { |
| 4073 var o = new api.OperationError(); | 4073 var o = new api.OperationError(); |
| 4074 buildCounterOperationError++; | 4074 buildCounterOperationError++; |
| 4075 if (buildCounterOperationError < 3) { | 4075 if (buildCounterOperationError < 3) { |
| 4076 o.errors = buildUnnamed2121(); | 4076 o.errors = buildUnnamed2438(); |
| 4077 } | 4077 } |
| 4078 buildCounterOperationError--; | 4078 buildCounterOperationError--; |
| 4079 return o; | 4079 return o; |
| 4080 } | 4080 } |
| 4081 | 4081 |
| 4082 checkOperationError(api.OperationError o) { | 4082 checkOperationError(api.OperationError o) { |
| 4083 buildCounterOperationError++; | 4083 buildCounterOperationError++; |
| 4084 if (buildCounterOperationError < 3) { | 4084 if (buildCounterOperationError < 3) { |
| 4085 checkUnnamed2121(o.errors); | 4085 checkUnnamed2438(o.errors); |
| 4086 } | 4086 } |
| 4087 buildCounterOperationError--; | 4087 buildCounterOperationError--; |
| 4088 } | 4088 } |
| 4089 | 4089 |
| 4090 core.int buildCounterOperationWarningsData = 0; | 4090 core.int buildCounterOperationWarningsData = 0; |
| 4091 buildOperationWarningsData() { | 4091 buildOperationWarningsData() { |
| 4092 var o = new api.OperationWarningsData(); | 4092 var o = new api.OperationWarningsData(); |
| 4093 buildCounterOperationWarningsData++; | 4093 buildCounterOperationWarningsData++; |
| 4094 if (buildCounterOperationWarningsData < 3) { | 4094 if (buildCounterOperationWarningsData < 3) { |
| 4095 o.key = "foo"; | 4095 o.key = "foo"; |
| 4096 o.value = "foo"; | 4096 o.value = "foo"; |
| 4097 } | 4097 } |
| 4098 buildCounterOperationWarningsData--; | 4098 buildCounterOperationWarningsData--; |
| 4099 return o; | 4099 return o; |
| 4100 } | 4100 } |
| 4101 | 4101 |
| 4102 checkOperationWarningsData(api.OperationWarningsData o) { | 4102 checkOperationWarningsData(api.OperationWarningsData o) { |
| 4103 buildCounterOperationWarningsData++; | 4103 buildCounterOperationWarningsData++; |
| 4104 if (buildCounterOperationWarningsData < 3) { | 4104 if (buildCounterOperationWarningsData < 3) { |
| 4105 unittest.expect(o.key, unittest.equals('foo')); | 4105 unittest.expect(o.key, unittest.equals('foo')); |
| 4106 unittest.expect(o.value, unittest.equals('foo')); | 4106 unittest.expect(o.value, unittest.equals('foo')); |
| 4107 } | 4107 } |
| 4108 buildCounterOperationWarningsData--; | 4108 buildCounterOperationWarningsData--; |
| 4109 } | 4109 } |
| 4110 | 4110 |
| 4111 buildUnnamed2122() { | 4111 buildUnnamed2439() { |
| 4112 var o = new core.List<api.OperationWarningsData>(); | 4112 var o = new core.List<api.OperationWarningsData>(); |
| 4113 o.add(buildOperationWarningsData()); | 4113 o.add(buildOperationWarningsData()); |
| 4114 o.add(buildOperationWarningsData()); | 4114 o.add(buildOperationWarningsData()); |
| 4115 return o; | 4115 return o; |
| 4116 } | 4116 } |
| 4117 | 4117 |
| 4118 checkUnnamed2122(core.List<api.OperationWarningsData> o) { | 4118 checkUnnamed2439(core.List<api.OperationWarningsData> o) { |
| 4119 unittest.expect(o, unittest.hasLength(2)); | 4119 unittest.expect(o, unittest.hasLength(2)); |
| 4120 checkOperationWarningsData(o[0]); | 4120 checkOperationWarningsData(o[0]); |
| 4121 checkOperationWarningsData(o[1]); | 4121 checkOperationWarningsData(o[1]); |
| 4122 } | 4122 } |
| 4123 | 4123 |
| 4124 core.int buildCounterOperationWarnings = 0; | 4124 core.int buildCounterOperationWarnings = 0; |
| 4125 buildOperationWarnings() { | 4125 buildOperationWarnings() { |
| 4126 var o = new api.OperationWarnings(); | 4126 var o = new api.OperationWarnings(); |
| 4127 buildCounterOperationWarnings++; | 4127 buildCounterOperationWarnings++; |
| 4128 if (buildCounterOperationWarnings < 3) { | 4128 if (buildCounterOperationWarnings < 3) { |
| 4129 o.code = "foo"; | 4129 o.code = "foo"; |
| 4130 o.data = buildUnnamed2122(); | 4130 o.data = buildUnnamed2439(); |
| 4131 o.message = "foo"; | 4131 o.message = "foo"; |
| 4132 } | 4132 } |
| 4133 buildCounterOperationWarnings--; | 4133 buildCounterOperationWarnings--; |
| 4134 return o; | 4134 return o; |
| 4135 } | 4135 } |
| 4136 | 4136 |
| 4137 checkOperationWarnings(api.OperationWarnings o) { | 4137 checkOperationWarnings(api.OperationWarnings o) { |
| 4138 buildCounterOperationWarnings++; | 4138 buildCounterOperationWarnings++; |
| 4139 if (buildCounterOperationWarnings < 3) { | 4139 if (buildCounterOperationWarnings < 3) { |
| 4140 unittest.expect(o.code, unittest.equals('foo')); | 4140 unittest.expect(o.code, unittest.equals('foo')); |
| 4141 checkUnnamed2122(o.data); | 4141 checkUnnamed2439(o.data); |
| 4142 unittest.expect(o.message, unittest.equals('foo')); | 4142 unittest.expect(o.message, unittest.equals('foo')); |
| 4143 } | 4143 } |
| 4144 buildCounterOperationWarnings--; | 4144 buildCounterOperationWarnings--; |
| 4145 } | 4145 } |
| 4146 | 4146 |
| 4147 buildUnnamed2123() { | 4147 buildUnnamed2440() { |
| 4148 var o = new core.List<api.OperationWarnings>(); | 4148 var o = new core.List<api.OperationWarnings>(); |
| 4149 o.add(buildOperationWarnings()); | 4149 o.add(buildOperationWarnings()); |
| 4150 o.add(buildOperationWarnings()); | 4150 o.add(buildOperationWarnings()); |
| 4151 return o; | 4151 return o; |
| 4152 } | 4152 } |
| 4153 | 4153 |
| 4154 checkUnnamed2123(core.List<api.OperationWarnings> o) { | 4154 checkUnnamed2440(core.List<api.OperationWarnings> o) { |
| 4155 unittest.expect(o, unittest.hasLength(2)); | 4155 unittest.expect(o, unittest.hasLength(2)); |
| 4156 checkOperationWarnings(o[0]); | 4156 checkOperationWarnings(o[0]); |
| 4157 checkOperationWarnings(o[1]); | 4157 checkOperationWarnings(o[1]); |
| 4158 } | 4158 } |
| 4159 | 4159 |
| 4160 core.int buildCounterOperation = 0; | 4160 core.int buildCounterOperation = 0; |
| 4161 buildOperation() { | 4161 buildOperation() { |
| 4162 var o = new api.Operation(); | 4162 var o = new api.Operation(); |
| 4163 buildCounterOperation++; | 4163 buildCounterOperation++; |
| 4164 if (buildCounterOperation < 3) { | 4164 if (buildCounterOperation < 3) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4176 o.operationType = "foo"; | 4176 o.operationType = "foo"; |
| 4177 o.progress = 42; | 4177 o.progress = 42; |
| 4178 o.region = "foo"; | 4178 o.region = "foo"; |
| 4179 o.selfLink = "foo"; | 4179 o.selfLink = "foo"; |
| 4180 o.startTime = "foo"; | 4180 o.startTime = "foo"; |
| 4181 o.status = "foo"; | 4181 o.status = "foo"; |
| 4182 o.statusMessage = "foo"; | 4182 o.statusMessage = "foo"; |
| 4183 o.targetId = "foo"; | 4183 o.targetId = "foo"; |
| 4184 o.targetLink = "foo"; | 4184 o.targetLink = "foo"; |
| 4185 o.user = "foo"; | 4185 o.user = "foo"; |
| 4186 o.warnings = buildUnnamed2123(); | 4186 o.warnings = buildUnnamed2440(); |
| 4187 o.zone = "foo"; | 4187 o.zone = "foo"; |
| 4188 } | 4188 } |
| 4189 buildCounterOperation--; | 4189 buildCounterOperation--; |
| 4190 return o; | 4190 return o; |
| 4191 } | 4191 } |
| 4192 | 4192 |
| 4193 checkOperation(api.Operation o) { | 4193 checkOperation(api.Operation o) { |
| 4194 buildCounterOperation++; | 4194 buildCounterOperation++; |
| 4195 if (buildCounterOperation < 3) { | 4195 if (buildCounterOperation < 3) { |
| 4196 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 4196 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4207 unittest.expect(o.operationType, unittest.equals('foo')); | 4207 unittest.expect(o.operationType, unittest.equals('foo')); |
| 4208 unittest.expect(o.progress, unittest.equals(42)); | 4208 unittest.expect(o.progress, unittest.equals(42)); |
| 4209 unittest.expect(o.region, unittest.equals('foo')); | 4209 unittest.expect(o.region, unittest.equals('foo')); |
| 4210 unittest.expect(o.selfLink, unittest.equals('foo')); | 4210 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4211 unittest.expect(o.startTime, unittest.equals('foo')); | 4211 unittest.expect(o.startTime, unittest.equals('foo')); |
| 4212 unittest.expect(o.status, unittest.equals('foo')); | 4212 unittest.expect(o.status, unittest.equals('foo')); |
| 4213 unittest.expect(o.statusMessage, unittest.equals('foo')); | 4213 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 4214 unittest.expect(o.targetId, unittest.equals('foo')); | 4214 unittest.expect(o.targetId, unittest.equals('foo')); |
| 4215 unittest.expect(o.targetLink, unittest.equals('foo')); | 4215 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 4216 unittest.expect(o.user, unittest.equals('foo')); | 4216 unittest.expect(o.user, unittest.equals('foo')); |
| 4217 checkUnnamed2123(o.warnings); | 4217 checkUnnamed2440(o.warnings); |
| 4218 unittest.expect(o.zone, unittest.equals('foo')); | 4218 unittest.expect(o.zone, unittest.equals('foo')); |
| 4219 } | 4219 } |
| 4220 buildCounterOperation--; | 4220 buildCounterOperation--; |
| 4221 } | 4221 } |
| 4222 | 4222 |
| 4223 buildUnnamed2124() { | 4223 buildUnnamed2441() { |
| 4224 var o = new core.Map<core.String, api.OperationsScopedList>(); | 4224 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 4225 o["x"] = buildOperationsScopedList(); | 4225 o["x"] = buildOperationsScopedList(); |
| 4226 o["y"] = buildOperationsScopedList(); | 4226 o["y"] = buildOperationsScopedList(); |
| 4227 return o; | 4227 return o; |
| 4228 } | 4228 } |
| 4229 | 4229 |
| 4230 checkUnnamed2124(core.Map<core.String, api.OperationsScopedList> o) { | 4230 checkUnnamed2441(core.Map<core.String, api.OperationsScopedList> o) { |
| 4231 unittest.expect(o, unittest.hasLength(2)); | 4231 unittest.expect(o, unittest.hasLength(2)); |
| 4232 checkOperationsScopedList(o["x"]); | 4232 checkOperationsScopedList(o["x"]); |
| 4233 checkOperationsScopedList(o["y"]); | 4233 checkOperationsScopedList(o["y"]); |
| 4234 } | 4234 } |
| 4235 | 4235 |
| 4236 core.int buildCounterOperationAggregatedList = 0; | 4236 core.int buildCounterOperationAggregatedList = 0; |
| 4237 buildOperationAggregatedList() { | 4237 buildOperationAggregatedList() { |
| 4238 var o = new api.OperationAggregatedList(); | 4238 var o = new api.OperationAggregatedList(); |
| 4239 buildCounterOperationAggregatedList++; | 4239 buildCounterOperationAggregatedList++; |
| 4240 if (buildCounterOperationAggregatedList < 3) { | 4240 if (buildCounterOperationAggregatedList < 3) { |
| 4241 o.id = "foo"; | 4241 o.id = "foo"; |
| 4242 o.items = buildUnnamed2124(); | 4242 o.items = buildUnnamed2441(); |
| 4243 o.kind = "foo"; | 4243 o.kind = "foo"; |
| 4244 o.nextPageToken = "foo"; | 4244 o.nextPageToken = "foo"; |
| 4245 o.selfLink = "foo"; | 4245 o.selfLink = "foo"; |
| 4246 } | 4246 } |
| 4247 buildCounterOperationAggregatedList--; | 4247 buildCounterOperationAggregatedList--; |
| 4248 return o; | 4248 return o; |
| 4249 } | 4249 } |
| 4250 | 4250 |
| 4251 checkOperationAggregatedList(api.OperationAggregatedList o) { | 4251 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 4252 buildCounterOperationAggregatedList++; | 4252 buildCounterOperationAggregatedList++; |
| 4253 if (buildCounterOperationAggregatedList < 3) { | 4253 if (buildCounterOperationAggregatedList < 3) { |
| 4254 unittest.expect(o.id, unittest.equals('foo')); | 4254 unittest.expect(o.id, unittest.equals('foo')); |
| 4255 checkUnnamed2124(o.items); | 4255 checkUnnamed2441(o.items); |
| 4256 unittest.expect(o.kind, unittest.equals('foo')); | 4256 unittest.expect(o.kind, unittest.equals('foo')); |
| 4257 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4257 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4258 unittest.expect(o.selfLink, unittest.equals('foo')); | 4258 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4259 } | 4259 } |
| 4260 buildCounterOperationAggregatedList--; | 4260 buildCounterOperationAggregatedList--; |
| 4261 } | 4261 } |
| 4262 | 4262 |
| 4263 buildUnnamed2125() { | 4263 buildUnnamed2442() { |
| 4264 var o = new core.List<api.Operation>(); | 4264 var o = new core.List<api.Operation>(); |
| 4265 o.add(buildOperation()); | 4265 o.add(buildOperation()); |
| 4266 o.add(buildOperation()); | 4266 o.add(buildOperation()); |
| 4267 return o; | 4267 return o; |
| 4268 } | 4268 } |
| 4269 | 4269 |
| 4270 checkUnnamed2125(core.List<api.Operation> o) { | 4270 checkUnnamed2442(core.List<api.Operation> o) { |
| 4271 unittest.expect(o, unittest.hasLength(2)); | 4271 unittest.expect(o, unittest.hasLength(2)); |
| 4272 checkOperation(o[0]); | 4272 checkOperation(o[0]); |
| 4273 checkOperation(o[1]); | 4273 checkOperation(o[1]); |
| 4274 } | 4274 } |
| 4275 | 4275 |
| 4276 core.int buildCounterOperationList = 0; | 4276 core.int buildCounterOperationList = 0; |
| 4277 buildOperationList() { | 4277 buildOperationList() { |
| 4278 var o = new api.OperationList(); | 4278 var o = new api.OperationList(); |
| 4279 buildCounterOperationList++; | 4279 buildCounterOperationList++; |
| 4280 if (buildCounterOperationList < 3) { | 4280 if (buildCounterOperationList < 3) { |
| 4281 o.id = "foo"; | 4281 o.id = "foo"; |
| 4282 o.items = buildUnnamed2125(); | 4282 o.items = buildUnnamed2442(); |
| 4283 o.kind = "foo"; | 4283 o.kind = "foo"; |
| 4284 o.nextPageToken = "foo"; | 4284 o.nextPageToken = "foo"; |
| 4285 o.selfLink = "foo"; | 4285 o.selfLink = "foo"; |
| 4286 } | 4286 } |
| 4287 buildCounterOperationList--; | 4287 buildCounterOperationList--; |
| 4288 return o; | 4288 return o; |
| 4289 } | 4289 } |
| 4290 | 4290 |
| 4291 checkOperationList(api.OperationList o) { | 4291 checkOperationList(api.OperationList o) { |
| 4292 buildCounterOperationList++; | 4292 buildCounterOperationList++; |
| 4293 if (buildCounterOperationList < 3) { | 4293 if (buildCounterOperationList < 3) { |
| 4294 unittest.expect(o.id, unittest.equals('foo')); | 4294 unittest.expect(o.id, unittest.equals('foo')); |
| 4295 checkUnnamed2125(o.items); | 4295 checkUnnamed2442(o.items); |
| 4296 unittest.expect(o.kind, unittest.equals('foo')); | 4296 unittest.expect(o.kind, unittest.equals('foo')); |
| 4297 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4297 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4298 unittest.expect(o.selfLink, unittest.equals('foo')); | 4298 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4299 } | 4299 } |
| 4300 buildCounterOperationList--; | 4300 buildCounterOperationList--; |
| 4301 } | 4301 } |
| 4302 | 4302 |
| 4303 buildUnnamed2126() { | 4303 buildUnnamed2443() { |
| 4304 var o = new core.List<api.Operation>(); | 4304 var o = new core.List<api.Operation>(); |
| 4305 o.add(buildOperation()); | 4305 o.add(buildOperation()); |
| 4306 o.add(buildOperation()); | 4306 o.add(buildOperation()); |
| 4307 return o; | 4307 return o; |
| 4308 } | 4308 } |
| 4309 | 4309 |
| 4310 checkUnnamed2126(core.List<api.Operation> o) { | 4310 checkUnnamed2443(core.List<api.Operation> o) { |
| 4311 unittest.expect(o, unittest.hasLength(2)); | 4311 unittest.expect(o, unittest.hasLength(2)); |
| 4312 checkOperation(o[0]); | 4312 checkOperation(o[0]); |
| 4313 checkOperation(o[1]); | 4313 checkOperation(o[1]); |
| 4314 } | 4314 } |
| 4315 | 4315 |
| 4316 core.int buildCounterOperationsScopedListWarningData = 0; | 4316 core.int buildCounterOperationsScopedListWarningData = 0; |
| 4317 buildOperationsScopedListWarningData() { | 4317 buildOperationsScopedListWarningData() { |
| 4318 var o = new api.OperationsScopedListWarningData(); | 4318 var o = new api.OperationsScopedListWarningData(); |
| 4319 buildCounterOperationsScopedListWarningData++; | 4319 buildCounterOperationsScopedListWarningData++; |
| 4320 if (buildCounterOperationsScopedListWarningData < 3) { | 4320 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4321 o.key = "foo"; | 4321 o.key = "foo"; |
| 4322 o.value = "foo"; | 4322 o.value = "foo"; |
| 4323 } | 4323 } |
| 4324 buildCounterOperationsScopedListWarningData--; | 4324 buildCounterOperationsScopedListWarningData--; |
| 4325 return o; | 4325 return o; |
| 4326 } | 4326 } |
| 4327 | 4327 |
| 4328 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 4328 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 4329 buildCounterOperationsScopedListWarningData++; | 4329 buildCounterOperationsScopedListWarningData++; |
| 4330 if (buildCounterOperationsScopedListWarningData < 3) { | 4330 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4331 unittest.expect(o.key, unittest.equals('foo')); | 4331 unittest.expect(o.key, unittest.equals('foo')); |
| 4332 unittest.expect(o.value, unittest.equals('foo')); | 4332 unittest.expect(o.value, unittest.equals('foo')); |
| 4333 } | 4333 } |
| 4334 buildCounterOperationsScopedListWarningData--; | 4334 buildCounterOperationsScopedListWarningData--; |
| 4335 } | 4335 } |
| 4336 | 4336 |
| 4337 buildUnnamed2127() { | 4337 buildUnnamed2444() { |
| 4338 var o = new core.List<api.OperationsScopedListWarningData>(); | 4338 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 4339 o.add(buildOperationsScopedListWarningData()); | 4339 o.add(buildOperationsScopedListWarningData()); |
| 4340 o.add(buildOperationsScopedListWarningData()); | 4340 o.add(buildOperationsScopedListWarningData()); |
| 4341 return o; | 4341 return o; |
| 4342 } | 4342 } |
| 4343 | 4343 |
| 4344 checkUnnamed2127(core.List<api.OperationsScopedListWarningData> o) { | 4344 checkUnnamed2444(core.List<api.OperationsScopedListWarningData> o) { |
| 4345 unittest.expect(o, unittest.hasLength(2)); | 4345 unittest.expect(o, unittest.hasLength(2)); |
| 4346 checkOperationsScopedListWarningData(o[0]); | 4346 checkOperationsScopedListWarningData(o[0]); |
| 4347 checkOperationsScopedListWarningData(o[1]); | 4347 checkOperationsScopedListWarningData(o[1]); |
| 4348 } | 4348 } |
| 4349 | 4349 |
| 4350 core.int buildCounterOperationsScopedListWarning = 0; | 4350 core.int buildCounterOperationsScopedListWarning = 0; |
| 4351 buildOperationsScopedListWarning() { | 4351 buildOperationsScopedListWarning() { |
| 4352 var o = new api.OperationsScopedListWarning(); | 4352 var o = new api.OperationsScopedListWarning(); |
| 4353 buildCounterOperationsScopedListWarning++; | 4353 buildCounterOperationsScopedListWarning++; |
| 4354 if (buildCounterOperationsScopedListWarning < 3) { | 4354 if (buildCounterOperationsScopedListWarning < 3) { |
| 4355 o.code = "foo"; | 4355 o.code = "foo"; |
| 4356 o.data = buildUnnamed2127(); | 4356 o.data = buildUnnamed2444(); |
| 4357 o.message = "foo"; | 4357 o.message = "foo"; |
| 4358 } | 4358 } |
| 4359 buildCounterOperationsScopedListWarning--; | 4359 buildCounterOperationsScopedListWarning--; |
| 4360 return o; | 4360 return o; |
| 4361 } | 4361 } |
| 4362 | 4362 |
| 4363 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 4363 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 4364 buildCounterOperationsScopedListWarning++; | 4364 buildCounterOperationsScopedListWarning++; |
| 4365 if (buildCounterOperationsScopedListWarning < 3) { | 4365 if (buildCounterOperationsScopedListWarning < 3) { |
| 4366 unittest.expect(o.code, unittest.equals('foo')); | 4366 unittest.expect(o.code, unittest.equals('foo')); |
| 4367 checkUnnamed2127(o.data); | 4367 checkUnnamed2444(o.data); |
| 4368 unittest.expect(o.message, unittest.equals('foo')); | 4368 unittest.expect(o.message, unittest.equals('foo')); |
| 4369 } | 4369 } |
| 4370 buildCounterOperationsScopedListWarning--; | 4370 buildCounterOperationsScopedListWarning--; |
| 4371 } | 4371 } |
| 4372 | 4372 |
| 4373 core.int buildCounterOperationsScopedList = 0; | 4373 core.int buildCounterOperationsScopedList = 0; |
| 4374 buildOperationsScopedList() { | 4374 buildOperationsScopedList() { |
| 4375 var o = new api.OperationsScopedList(); | 4375 var o = new api.OperationsScopedList(); |
| 4376 buildCounterOperationsScopedList++; | 4376 buildCounterOperationsScopedList++; |
| 4377 if (buildCounterOperationsScopedList < 3) { | 4377 if (buildCounterOperationsScopedList < 3) { |
| 4378 o.operations = buildUnnamed2126(); | 4378 o.operations = buildUnnamed2443(); |
| 4379 o.warning = buildOperationsScopedListWarning(); | 4379 o.warning = buildOperationsScopedListWarning(); |
| 4380 } | 4380 } |
| 4381 buildCounterOperationsScopedList--; | 4381 buildCounterOperationsScopedList--; |
| 4382 return o; | 4382 return o; |
| 4383 } | 4383 } |
| 4384 | 4384 |
| 4385 checkOperationsScopedList(api.OperationsScopedList o) { | 4385 checkOperationsScopedList(api.OperationsScopedList o) { |
| 4386 buildCounterOperationsScopedList++; | 4386 buildCounterOperationsScopedList++; |
| 4387 if (buildCounterOperationsScopedList < 3) { | 4387 if (buildCounterOperationsScopedList < 3) { |
| 4388 checkUnnamed2126(o.operations); | 4388 checkUnnamed2443(o.operations); |
| 4389 checkOperationsScopedListWarning(o.warning); | 4389 checkOperationsScopedListWarning(o.warning); |
| 4390 } | 4390 } |
| 4391 buildCounterOperationsScopedList--; | 4391 buildCounterOperationsScopedList--; |
| 4392 } | 4392 } |
| 4393 | 4393 |
| 4394 buildUnnamed2128() { | 4394 buildUnnamed2445() { |
| 4395 var o = new core.List<api.PathRule>(); | 4395 var o = new core.List<api.PathRule>(); |
| 4396 o.add(buildPathRule()); | 4396 o.add(buildPathRule()); |
| 4397 o.add(buildPathRule()); | 4397 o.add(buildPathRule()); |
| 4398 return o; | 4398 return o; |
| 4399 } | 4399 } |
| 4400 | 4400 |
| 4401 checkUnnamed2128(core.List<api.PathRule> o) { | 4401 checkUnnamed2445(core.List<api.PathRule> o) { |
| 4402 unittest.expect(o, unittest.hasLength(2)); | 4402 unittest.expect(o, unittest.hasLength(2)); |
| 4403 checkPathRule(o[0]); | 4403 checkPathRule(o[0]); |
| 4404 checkPathRule(o[1]); | 4404 checkPathRule(o[1]); |
| 4405 } | 4405 } |
| 4406 | 4406 |
| 4407 core.int buildCounterPathMatcher = 0; | 4407 core.int buildCounterPathMatcher = 0; |
| 4408 buildPathMatcher() { | 4408 buildPathMatcher() { |
| 4409 var o = new api.PathMatcher(); | 4409 var o = new api.PathMatcher(); |
| 4410 buildCounterPathMatcher++; | 4410 buildCounterPathMatcher++; |
| 4411 if (buildCounterPathMatcher < 3) { | 4411 if (buildCounterPathMatcher < 3) { |
| 4412 o.defaultService = "foo"; | 4412 o.defaultService = "foo"; |
| 4413 o.description = "foo"; | 4413 o.description = "foo"; |
| 4414 o.name = "foo"; | 4414 o.name = "foo"; |
| 4415 o.pathRules = buildUnnamed2128(); | 4415 o.pathRules = buildUnnamed2445(); |
| 4416 } | 4416 } |
| 4417 buildCounterPathMatcher--; | 4417 buildCounterPathMatcher--; |
| 4418 return o; | 4418 return o; |
| 4419 } | 4419 } |
| 4420 | 4420 |
| 4421 checkPathMatcher(api.PathMatcher o) { | 4421 checkPathMatcher(api.PathMatcher o) { |
| 4422 buildCounterPathMatcher++; | 4422 buildCounterPathMatcher++; |
| 4423 if (buildCounterPathMatcher < 3) { | 4423 if (buildCounterPathMatcher < 3) { |
| 4424 unittest.expect(o.defaultService, unittest.equals('foo')); | 4424 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4425 unittest.expect(o.description, unittest.equals('foo')); | 4425 unittest.expect(o.description, unittest.equals('foo')); |
| 4426 unittest.expect(o.name, unittest.equals('foo')); | 4426 unittest.expect(o.name, unittest.equals('foo')); |
| 4427 checkUnnamed2128(o.pathRules); | 4427 checkUnnamed2445(o.pathRules); |
| 4428 } | 4428 } |
| 4429 buildCounterPathMatcher--; | 4429 buildCounterPathMatcher--; |
| 4430 } | 4430 } |
| 4431 | 4431 |
| 4432 buildUnnamed2129() { | 4432 buildUnnamed2446() { |
| 4433 var o = new core.List<core.String>(); | 4433 var o = new core.List<core.String>(); |
| 4434 o.add("foo"); | 4434 o.add("foo"); |
| 4435 o.add("foo"); | 4435 o.add("foo"); |
| 4436 return o; | 4436 return o; |
| 4437 } | 4437 } |
| 4438 | 4438 |
| 4439 checkUnnamed2129(core.List<core.String> o) { | 4439 checkUnnamed2446(core.List<core.String> o) { |
| 4440 unittest.expect(o, unittest.hasLength(2)); | 4440 unittest.expect(o, unittest.hasLength(2)); |
| 4441 unittest.expect(o[0], unittest.equals('foo')); | 4441 unittest.expect(o[0], unittest.equals('foo')); |
| 4442 unittest.expect(o[1], unittest.equals('foo')); | 4442 unittest.expect(o[1], unittest.equals('foo')); |
| 4443 } | 4443 } |
| 4444 | 4444 |
| 4445 core.int buildCounterPathRule = 0; | 4445 core.int buildCounterPathRule = 0; |
| 4446 buildPathRule() { | 4446 buildPathRule() { |
| 4447 var o = new api.PathRule(); | 4447 var o = new api.PathRule(); |
| 4448 buildCounterPathRule++; | 4448 buildCounterPathRule++; |
| 4449 if (buildCounterPathRule < 3) { | 4449 if (buildCounterPathRule < 3) { |
| 4450 o.paths = buildUnnamed2129(); | 4450 o.paths = buildUnnamed2446(); |
| 4451 o.service = "foo"; | 4451 o.service = "foo"; |
| 4452 } | 4452 } |
| 4453 buildCounterPathRule--; | 4453 buildCounterPathRule--; |
| 4454 return o; | 4454 return o; |
| 4455 } | 4455 } |
| 4456 | 4456 |
| 4457 checkPathRule(api.PathRule o) { | 4457 checkPathRule(api.PathRule o) { |
| 4458 buildCounterPathRule++; | 4458 buildCounterPathRule++; |
| 4459 if (buildCounterPathRule < 3) { | 4459 if (buildCounterPathRule < 3) { |
| 4460 checkUnnamed2129(o.paths); | 4460 checkUnnamed2446(o.paths); |
| 4461 unittest.expect(o.service, unittest.equals('foo')); | 4461 unittest.expect(o.service, unittest.equals('foo')); |
| 4462 } | 4462 } |
| 4463 buildCounterPathRule--; | 4463 buildCounterPathRule--; |
| 4464 } | 4464 } |
| 4465 | 4465 |
| 4466 buildUnnamed2130() { | 4466 buildUnnamed2447() { |
| 4467 var o = new core.List<core.String>(); | 4467 var o = new core.List<core.String>(); |
| 4468 o.add("foo"); | 4468 o.add("foo"); |
| 4469 o.add("foo"); | 4469 o.add("foo"); |
| 4470 return o; | 4470 return o; |
| 4471 } | 4471 } |
| 4472 | 4472 |
| 4473 checkUnnamed2130(core.List<core.String> o) { | 4473 checkUnnamed2447(core.List<core.String> o) { |
| 4474 unittest.expect(o, unittest.hasLength(2)); | 4474 unittest.expect(o, unittest.hasLength(2)); |
| 4475 unittest.expect(o[0], unittest.equals('foo')); | 4475 unittest.expect(o[0], unittest.equals('foo')); |
| 4476 unittest.expect(o[1], unittest.equals('foo')); | 4476 unittest.expect(o[1], unittest.equals('foo')); |
| 4477 } | 4477 } |
| 4478 | 4478 |
| 4479 buildUnnamed2131() { | 4479 buildUnnamed2448() { |
| 4480 var o = new core.List<api.Quota>(); | 4480 var o = new core.List<api.Quota>(); |
| 4481 o.add(buildQuota()); | 4481 o.add(buildQuota()); |
| 4482 o.add(buildQuota()); | 4482 o.add(buildQuota()); |
| 4483 return o; | 4483 return o; |
| 4484 } | 4484 } |
| 4485 | 4485 |
| 4486 checkUnnamed2131(core.List<api.Quota> o) { | 4486 checkUnnamed2448(core.List<api.Quota> o) { |
| 4487 unittest.expect(o, unittest.hasLength(2)); | 4487 unittest.expect(o, unittest.hasLength(2)); |
| 4488 checkQuota(o[0]); | 4488 checkQuota(o[0]); |
| 4489 checkQuota(o[1]); | 4489 checkQuota(o[1]); |
| 4490 } | 4490 } |
| 4491 | 4491 |
| 4492 core.int buildCounterProject = 0; | 4492 core.int buildCounterProject = 0; |
| 4493 buildProject() { | 4493 buildProject() { |
| 4494 var o = new api.Project(); | 4494 var o = new api.Project(); |
| 4495 buildCounterProject++; | 4495 buildCounterProject++; |
| 4496 if (buildCounterProject < 3) { | 4496 if (buildCounterProject < 3) { |
| 4497 o.commonInstanceMetadata = buildMetadata(); | 4497 o.commonInstanceMetadata = buildMetadata(); |
| 4498 o.creationTimestamp = "foo"; | 4498 o.creationTimestamp = "foo"; |
| 4499 o.description = "foo"; | 4499 o.description = "foo"; |
| 4500 o.enabledFeatures = buildUnnamed2130(); | 4500 o.enabledFeatures = buildUnnamed2447(); |
| 4501 o.id = "foo"; | 4501 o.id = "foo"; |
| 4502 o.kind = "foo"; | 4502 o.kind = "foo"; |
| 4503 o.name = "foo"; | 4503 o.name = "foo"; |
| 4504 o.quotas = buildUnnamed2131(); | 4504 o.quotas = buildUnnamed2448(); |
| 4505 o.selfLink = "foo"; | 4505 o.selfLink = "foo"; |
| 4506 o.usageExportLocation = buildUsageExportLocation(); | 4506 o.usageExportLocation = buildUsageExportLocation(); |
| 4507 } | 4507 } |
| 4508 buildCounterProject--; | 4508 buildCounterProject--; |
| 4509 return o; | 4509 return o; |
| 4510 } | 4510 } |
| 4511 | 4511 |
| 4512 checkProject(api.Project o) { | 4512 checkProject(api.Project o) { |
| 4513 buildCounterProject++; | 4513 buildCounterProject++; |
| 4514 if (buildCounterProject < 3) { | 4514 if (buildCounterProject < 3) { |
| 4515 checkMetadata(o.commonInstanceMetadata); | 4515 checkMetadata(o.commonInstanceMetadata); |
| 4516 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4516 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4517 unittest.expect(o.description, unittest.equals('foo')); | 4517 unittest.expect(o.description, unittest.equals('foo')); |
| 4518 checkUnnamed2130(o.enabledFeatures); | 4518 checkUnnamed2447(o.enabledFeatures); |
| 4519 unittest.expect(o.id, unittest.equals('foo')); | 4519 unittest.expect(o.id, unittest.equals('foo')); |
| 4520 unittest.expect(o.kind, unittest.equals('foo')); | 4520 unittest.expect(o.kind, unittest.equals('foo')); |
| 4521 unittest.expect(o.name, unittest.equals('foo')); | 4521 unittest.expect(o.name, unittest.equals('foo')); |
| 4522 checkUnnamed2131(o.quotas); | 4522 checkUnnamed2448(o.quotas); |
| 4523 unittest.expect(o.selfLink, unittest.equals('foo')); | 4523 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4524 checkUsageExportLocation(o.usageExportLocation); | 4524 checkUsageExportLocation(o.usageExportLocation); |
| 4525 } | 4525 } |
| 4526 buildCounterProject--; | 4526 buildCounterProject--; |
| 4527 } | 4527 } |
| 4528 | 4528 |
| 4529 core.int buildCounterQuota = 0; | 4529 core.int buildCounterQuota = 0; |
| 4530 buildQuota() { | 4530 buildQuota() { |
| 4531 var o = new api.Quota(); | 4531 var o = new api.Quota(); |
| 4532 buildCounterQuota++; | 4532 buildCounterQuota++; |
| 4533 if (buildCounterQuota < 3) { | 4533 if (buildCounterQuota < 3) { |
| 4534 o.limit = 42.0; | 4534 o.limit = 42.0; |
| 4535 o.metric = "foo"; | 4535 o.metric = "foo"; |
| 4536 o.usage = 42.0; | 4536 o.usage = 42.0; |
| 4537 } | 4537 } |
| 4538 buildCounterQuota--; | 4538 buildCounterQuota--; |
| 4539 return o; | 4539 return o; |
| 4540 } | 4540 } |
| 4541 | 4541 |
| 4542 checkQuota(api.Quota o) { | 4542 checkQuota(api.Quota o) { |
| 4543 buildCounterQuota++; | 4543 buildCounterQuota++; |
| 4544 if (buildCounterQuota < 3) { | 4544 if (buildCounterQuota < 3) { |
| 4545 unittest.expect(o.limit, unittest.equals(42.0)); | 4545 unittest.expect(o.limit, unittest.equals(42.0)); |
| 4546 unittest.expect(o.metric, unittest.equals('foo')); | 4546 unittest.expect(o.metric, unittest.equals('foo')); |
| 4547 unittest.expect(o.usage, unittest.equals(42.0)); | 4547 unittest.expect(o.usage, unittest.equals(42.0)); |
| 4548 } | 4548 } |
| 4549 buildCounterQuota--; | 4549 buildCounterQuota--; |
| 4550 } | 4550 } |
| 4551 | 4551 |
| 4552 buildUnnamed2132() { | 4552 buildUnnamed2449() { |
| 4553 var o = new core.List<api.Quota>(); | 4553 var o = new core.List<api.Quota>(); |
| 4554 o.add(buildQuota()); | 4554 o.add(buildQuota()); |
| 4555 o.add(buildQuota()); | 4555 o.add(buildQuota()); |
| 4556 return o; | 4556 return o; |
| 4557 } | 4557 } |
| 4558 | 4558 |
| 4559 checkUnnamed2132(core.List<api.Quota> o) { | 4559 checkUnnamed2449(core.List<api.Quota> o) { |
| 4560 unittest.expect(o, unittest.hasLength(2)); | 4560 unittest.expect(o, unittest.hasLength(2)); |
| 4561 checkQuota(o[0]); | 4561 checkQuota(o[0]); |
| 4562 checkQuota(o[1]); | 4562 checkQuota(o[1]); |
| 4563 } | 4563 } |
| 4564 | 4564 |
| 4565 buildUnnamed2133() { | 4565 buildUnnamed2450() { |
| 4566 var o = new core.List<core.String>(); | 4566 var o = new core.List<core.String>(); |
| 4567 o.add("foo"); | 4567 o.add("foo"); |
| 4568 o.add("foo"); | 4568 o.add("foo"); |
| 4569 return o; | 4569 return o; |
| 4570 } | 4570 } |
| 4571 | 4571 |
| 4572 checkUnnamed2133(core.List<core.String> o) { | 4572 checkUnnamed2450(core.List<core.String> o) { |
| 4573 unittest.expect(o, unittest.hasLength(2)); | 4573 unittest.expect(o, unittest.hasLength(2)); |
| 4574 unittest.expect(o[0], unittest.equals('foo')); | 4574 unittest.expect(o[0], unittest.equals('foo')); |
| 4575 unittest.expect(o[1], unittest.equals('foo')); | 4575 unittest.expect(o[1], unittest.equals('foo')); |
| 4576 } | 4576 } |
| 4577 | 4577 |
| 4578 core.int buildCounterRegion = 0; | 4578 core.int buildCounterRegion = 0; |
| 4579 buildRegion() { | 4579 buildRegion() { |
| 4580 var o = new api.Region(); | 4580 var o = new api.Region(); |
| 4581 buildCounterRegion++; | 4581 buildCounterRegion++; |
| 4582 if (buildCounterRegion < 3) { | 4582 if (buildCounterRegion < 3) { |
| 4583 o.creationTimestamp = "foo"; | 4583 o.creationTimestamp = "foo"; |
| 4584 o.deprecated = buildDeprecationStatus(); | 4584 o.deprecated = buildDeprecationStatus(); |
| 4585 o.description = "foo"; | 4585 o.description = "foo"; |
| 4586 o.id = "foo"; | 4586 o.id = "foo"; |
| 4587 o.kind = "foo"; | 4587 o.kind = "foo"; |
| 4588 o.name = "foo"; | 4588 o.name = "foo"; |
| 4589 o.quotas = buildUnnamed2132(); | 4589 o.quotas = buildUnnamed2449(); |
| 4590 o.selfLink = "foo"; | 4590 o.selfLink = "foo"; |
| 4591 o.status = "foo"; | 4591 o.status = "foo"; |
| 4592 o.zones = buildUnnamed2133(); | 4592 o.zones = buildUnnamed2450(); |
| 4593 } | 4593 } |
| 4594 buildCounterRegion--; | 4594 buildCounterRegion--; |
| 4595 return o; | 4595 return o; |
| 4596 } | 4596 } |
| 4597 | 4597 |
| 4598 checkRegion(api.Region o) { | 4598 checkRegion(api.Region o) { |
| 4599 buildCounterRegion++; | 4599 buildCounterRegion++; |
| 4600 if (buildCounterRegion < 3) { | 4600 if (buildCounterRegion < 3) { |
| 4601 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4601 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4602 checkDeprecationStatus(o.deprecated); | 4602 checkDeprecationStatus(o.deprecated); |
| 4603 unittest.expect(o.description, unittest.equals('foo')); | 4603 unittest.expect(o.description, unittest.equals('foo')); |
| 4604 unittest.expect(o.id, unittest.equals('foo')); | 4604 unittest.expect(o.id, unittest.equals('foo')); |
| 4605 unittest.expect(o.kind, unittest.equals('foo')); | 4605 unittest.expect(o.kind, unittest.equals('foo')); |
| 4606 unittest.expect(o.name, unittest.equals('foo')); | 4606 unittest.expect(o.name, unittest.equals('foo')); |
| 4607 checkUnnamed2132(o.quotas); | 4607 checkUnnamed2449(o.quotas); |
| 4608 unittest.expect(o.selfLink, unittest.equals('foo')); | 4608 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4609 unittest.expect(o.status, unittest.equals('foo')); | 4609 unittest.expect(o.status, unittest.equals('foo')); |
| 4610 checkUnnamed2133(o.zones); | 4610 checkUnnamed2450(o.zones); |
| 4611 } | 4611 } |
| 4612 buildCounterRegion--; | 4612 buildCounterRegion--; |
| 4613 } | 4613 } |
| 4614 | 4614 |
| 4615 buildUnnamed2134() { | 4615 buildUnnamed2451() { |
| 4616 var o = new core.List<api.Region>(); | 4616 var o = new core.List<api.Region>(); |
| 4617 o.add(buildRegion()); | 4617 o.add(buildRegion()); |
| 4618 o.add(buildRegion()); | 4618 o.add(buildRegion()); |
| 4619 return o; | 4619 return o; |
| 4620 } | 4620 } |
| 4621 | 4621 |
| 4622 checkUnnamed2134(core.List<api.Region> o) { | 4622 checkUnnamed2451(core.List<api.Region> o) { |
| 4623 unittest.expect(o, unittest.hasLength(2)); | 4623 unittest.expect(o, unittest.hasLength(2)); |
| 4624 checkRegion(o[0]); | 4624 checkRegion(o[0]); |
| 4625 checkRegion(o[1]); | 4625 checkRegion(o[1]); |
| 4626 } | 4626 } |
| 4627 | 4627 |
| 4628 core.int buildCounterRegionList = 0; | 4628 core.int buildCounterRegionList = 0; |
| 4629 buildRegionList() { | 4629 buildRegionList() { |
| 4630 var o = new api.RegionList(); | 4630 var o = new api.RegionList(); |
| 4631 buildCounterRegionList++; | 4631 buildCounterRegionList++; |
| 4632 if (buildCounterRegionList < 3) { | 4632 if (buildCounterRegionList < 3) { |
| 4633 o.id = "foo"; | 4633 o.id = "foo"; |
| 4634 o.items = buildUnnamed2134(); | 4634 o.items = buildUnnamed2451(); |
| 4635 o.kind = "foo"; | 4635 o.kind = "foo"; |
| 4636 o.nextPageToken = "foo"; | 4636 o.nextPageToken = "foo"; |
| 4637 o.selfLink = "foo"; | 4637 o.selfLink = "foo"; |
| 4638 } | 4638 } |
| 4639 buildCounterRegionList--; | 4639 buildCounterRegionList--; |
| 4640 return o; | 4640 return o; |
| 4641 } | 4641 } |
| 4642 | 4642 |
| 4643 checkRegionList(api.RegionList o) { | 4643 checkRegionList(api.RegionList o) { |
| 4644 buildCounterRegionList++; | 4644 buildCounterRegionList++; |
| 4645 if (buildCounterRegionList < 3) { | 4645 if (buildCounterRegionList < 3) { |
| 4646 unittest.expect(o.id, unittest.equals('foo')); | 4646 unittest.expect(o.id, unittest.equals('foo')); |
| 4647 checkUnnamed2134(o.items); | 4647 checkUnnamed2451(o.items); |
| 4648 unittest.expect(o.kind, unittest.equals('foo')); | 4648 unittest.expect(o.kind, unittest.equals('foo')); |
| 4649 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4649 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4650 unittest.expect(o.selfLink, unittest.equals('foo')); | 4650 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4651 } | 4651 } |
| 4652 buildCounterRegionList--; | 4652 buildCounterRegionList--; |
| 4653 } | 4653 } |
| 4654 | 4654 |
| 4655 core.int buildCounterResourceGroupReference = 0; | 4655 core.int buildCounterResourceGroupReference = 0; |
| 4656 buildResourceGroupReference() { | 4656 buildResourceGroupReference() { |
| 4657 var o = new api.ResourceGroupReference(); | 4657 var o = new api.ResourceGroupReference(); |
| 4658 buildCounterResourceGroupReference++; | 4658 buildCounterResourceGroupReference++; |
| 4659 if (buildCounterResourceGroupReference < 3) { | 4659 if (buildCounterResourceGroupReference < 3) { |
| 4660 o.group = "foo"; | 4660 o.group = "foo"; |
| 4661 } | 4661 } |
| 4662 buildCounterResourceGroupReference--; | 4662 buildCounterResourceGroupReference--; |
| 4663 return o; | 4663 return o; |
| 4664 } | 4664 } |
| 4665 | 4665 |
| 4666 checkResourceGroupReference(api.ResourceGroupReference o) { | 4666 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 4667 buildCounterResourceGroupReference++; | 4667 buildCounterResourceGroupReference++; |
| 4668 if (buildCounterResourceGroupReference < 3) { | 4668 if (buildCounterResourceGroupReference < 3) { |
| 4669 unittest.expect(o.group, unittest.equals('foo')); | 4669 unittest.expect(o.group, unittest.equals('foo')); |
| 4670 } | 4670 } |
| 4671 buildCounterResourceGroupReference--; | 4671 buildCounterResourceGroupReference--; |
| 4672 } | 4672 } |
| 4673 | 4673 |
| 4674 buildUnnamed2135() { | 4674 buildUnnamed2452() { |
| 4675 var o = new core.List<core.String>(); | 4675 var o = new core.List<core.String>(); |
| 4676 o.add("foo"); | 4676 o.add("foo"); |
| 4677 o.add("foo"); | 4677 o.add("foo"); |
| 4678 return o; | 4678 return o; |
| 4679 } | 4679 } |
| 4680 | 4680 |
| 4681 checkUnnamed2135(core.List<core.String> o) { | 4681 checkUnnamed2452(core.List<core.String> o) { |
| 4682 unittest.expect(o, unittest.hasLength(2)); | 4682 unittest.expect(o, unittest.hasLength(2)); |
| 4683 unittest.expect(o[0], unittest.equals('foo')); | 4683 unittest.expect(o[0], unittest.equals('foo')); |
| 4684 unittest.expect(o[1], unittest.equals('foo')); | 4684 unittest.expect(o[1], unittest.equals('foo')); |
| 4685 } | 4685 } |
| 4686 | 4686 |
| 4687 core.int buildCounterRouteWarningsData = 0; | 4687 core.int buildCounterRouteWarningsData = 0; |
| 4688 buildRouteWarningsData() { | 4688 buildRouteWarningsData() { |
| 4689 var o = new api.RouteWarningsData(); | 4689 var o = new api.RouteWarningsData(); |
| 4690 buildCounterRouteWarningsData++; | 4690 buildCounterRouteWarningsData++; |
| 4691 if (buildCounterRouteWarningsData < 3) { | 4691 if (buildCounterRouteWarningsData < 3) { |
| 4692 o.key = "foo"; | 4692 o.key = "foo"; |
| 4693 o.value = "foo"; | 4693 o.value = "foo"; |
| 4694 } | 4694 } |
| 4695 buildCounterRouteWarningsData--; | 4695 buildCounterRouteWarningsData--; |
| 4696 return o; | 4696 return o; |
| 4697 } | 4697 } |
| 4698 | 4698 |
| 4699 checkRouteWarningsData(api.RouteWarningsData o) { | 4699 checkRouteWarningsData(api.RouteWarningsData o) { |
| 4700 buildCounterRouteWarningsData++; | 4700 buildCounterRouteWarningsData++; |
| 4701 if (buildCounterRouteWarningsData < 3) { | 4701 if (buildCounterRouteWarningsData < 3) { |
| 4702 unittest.expect(o.key, unittest.equals('foo')); | 4702 unittest.expect(o.key, unittest.equals('foo')); |
| 4703 unittest.expect(o.value, unittest.equals('foo')); | 4703 unittest.expect(o.value, unittest.equals('foo')); |
| 4704 } | 4704 } |
| 4705 buildCounterRouteWarningsData--; | 4705 buildCounterRouteWarningsData--; |
| 4706 } | 4706 } |
| 4707 | 4707 |
| 4708 buildUnnamed2136() { | 4708 buildUnnamed2453() { |
| 4709 var o = new core.List<api.RouteWarningsData>(); | 4709 var o = new core.List<api.RouteWarningsData>(); |
| 4710 o.add(buildRouteWarningsData()); | 4710 o.add(buildRouteWarningsData()); |
| 4711 o.add(buildRouteWarningsData()); | 4711 o.add(buildRouteWarningsData()); |
| 4712 return o; | 4712 return o; |
| 4713 } | 4713 } |
| 4714 | 4714 |
| 4715 checkUnnamed2136(core.List<api.RouteWarningsData> o) { | 4715 checkUnnamed2453(core.List<api.RouteWarningsData> o) { |
| 4716 unittest.expect(o, unittest.hasLength(2)); | 4716 unittest.expect(o, unittest.hasLength(2)); |
| 4717 checkRouteWarningsData(o[0]); | 4717 checkRouteWarningsData(o[0]); |
| 4718 checkRouteWarningsData(o[1]); | 4718 checkRouteWarningsData(o[1]); |
| 4719 } | 4719 } |
| 4720 | 4720 |
| 4721 core.int buildCounterRouteWarnings = 0; | 4721 core.int buildCounterRouteWarnings = 0; |
| 4722 buildRouteWarnings() { | 4722 buildRouteWarnings() { |
| 4723 var o = new api.RouteWarnings(); | 4723 var o = new api.RouteWarnings(); |
| 4724 buildCounterRouteWarnings++; | 4724 buildCounterRouteWarnings++; |
| 4725 if (buildCounterRouteWarnings < 3) { | 4725 if (buildCounterRouteWarnings < 3) { |
| 4726 o.code = "foo"; | 4726 o.code = "foo"; |
| 4727 o.data = buildUnnamed2136(); | 4727 o.data = buildUnnamed2453(); |
| 4728 o.message = "foo"; | 4728 o.message = "foo"; |
| 4729 } | 4729 } |
| 4730 buildCounterRouteWarnings--; | 4730 buildCounterRouteWarnings--; |
| 4731 return o; | 4731 return o; |
| 4732 } | 4732 } |
| 4733 | 4733 |
| 4734 checkRouteWarnings(api.RouteWarnings o) { | 4734 checkRouteWarnings(api.RouteWarnings o) { |
| 4735 buildCounterRouteWarnings++; | 4735 buildCounterRouteWarnings++; |
| 4736 if (buildCounterRouteWarnings < 3) { | 4736 if (buildCounterRouteWarnings < 3) { |
| 4737 unittest.expect(o.code, unittest.equals('foo')); | 4737 unittest.expect(o.code, unittest.equals('foo')); |
| 4738 checkUnnamed2136(o.data); | 4738 checkUnnamed2453(o.data); |
| 4739 unittest.expect(o.message, unittest.equals('foo')); | 4739 unittest.expect(o.message, unittest.equals('foo')); |
| 4740 } | 4740 } |
| 4741 buildCounterRouteWarnings--; | 4741 buildCounterRouteWarnings--; |
| 4742 } | 4742 } |
| 4743 | 4743 |
| 4744 buildUnnamed2137() { | 4744 buildUnnamed2454() { |
| 4745 var o = new core.List<api.RouteWarnings>(); | 4745 var o = new core.List<api.RouteWarnings>(); |
| 4746 o.add(buildRouteWarnings()); | 4746 o.add(buildRouteWarnings()); |
| 4747 o.add(buildRouteWarnings()); | 4747 o.add(buildRouteWarnings()); |
| 4748 return o; | 4748 return o; |
| 4749 } | 4749 } |
| 4750 | 4750 |
| 4751 checkUnnamed2137(core.List<api.RouteWarnings> o) { | 4751 checkUnnamed2454(core.List<api.RouteWarnings> o) { |
| 4752 unittest.expect(o, unittest.hasLength(2)); | 4752 unittest.expect(o, unittest.hasLength(2)); |
| 4753 checkRouteWarnings(o[0]); | 4753 checkRouteWarnings(o[0]); |
| 4754 checkRouteWarnings(o[1]); | 4754 checkRouteWarnings(o[1]); |
| 4755 } | 4755 } |
| 4756 | 4756 |
| 4757 core.int buildCounterRoute = 0; | 4757 core.int buildCounterRoute = 0; |
| 4758 buildRoute() { | 4758 buildRoute() { |
| 4759 var o = new api.Route(); | 4759 var o = new api.Route(); |
| 4760 buildCounterRoute++; | 4760 buildCounterRoute++; |
| 4761 if (buildCounterRoute < 3) { | 4761 if (buildCounterRoute < 3) { |
| 4762 o.creationTimestamp = "foo"; | 4762 o.creationTimestamp = "foo"; |
| 4763 o.description = "foo"; | 4763 o.description = "foo"; |
| 4764 o.destRange = "foo"; | 4764 o.destRange = "foo"; |
| 4765 o.id = "foo"; | 4765 o.id = "foo"; |
| 4766 o.kind = "foo"; | 4766 o.kind = "foo"; |
| 4767 o.name = "foo"; | 4767 o.name = "foo"; |
| 4768 o.network = "foo"; | 4768 o.network = "foo"; |
| 4769 o.nextHopGateway = "foo"; | 4769 o.nextHopGateway = "foo"; |
| 4770 o.nextHopInstance = "foo"; | 4770 o.nextHopInstance = "foo"; |
| 4771 o.nextHopIp = "foo"; | 4771 o.nextHopIp = "foo"; |
| 4772 o.nextHopNetwork = "foo"; | 4772 o.nextHopNetwork = "foo"; |
| 4773 o.nextHopVpnTunnel = "foo"; | 4773 o.nextHopVpnTunnel = "foo"; |
| 4774 o.priority = 42; | 4774 o.priority = 42; |
| 4775 o.selfLink = "foo"; | 4775 o.selfLink = "foo"; |
| 4776 o.tags = buildUnnamed2135(); | 4776 o.tags = buildUnnamed2452(); |
| 4777 o.warnings = buildUnnamed2137(); | 4777 o.warnings = buildUnnamed2454(); |
| 4778 } | 4778 } |
| 4779 buildCounterRoute--; | 4779 buildCounterRoute--; |
| 4780 return o; | 4780 return o; |
| 4781 } | 4781 } |
| 4782 | 4782 |
| 4783 checkRoute(api.Route o) { | 4783 checkRoute(api.Route o) { |
| 4784 buildCounterRoute++; | 4784 buildCounterRoute++; |
| 4785 if (buildCounterRoute < 3) { | 4785 if (buildCounterRoute < 3) { |
| 4786 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4786 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4787 unittest.expect(o.description, unittest.equals('foo')); | 4787 unittest.expect(o.description, unittest.equals('foo')); |
| 4788 unittest.expect(o.destRange, unittest.equals('foo')); | 4788 unittest.expect(o.destRange, unittest.equals('foo')); |
| 4789 unittest.expect(o.id, unittest.equals('foo')); | 4789 unittest.expect(o.id, unittest.equals('foo')); |
| 4790 unittest.expect(o.kind, unittest.equals('foo')); | 4790 unittest.expect(o.kind, unittest.equals('foo')); |
| 4791 unittest.expect(o.name, unittest.equals('foo')); | 4791 unittest.expect(o.name, unittest.equals('foo')); |
| 4792 unittest.expect(o.network, unittest.equals('foo')); | 4792 unittest.expect(o.network, unittest.equals('foo')); |
| 4793 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 4793 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 4794 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 4794 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 4795 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 4795 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 4796 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 4796 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 4797 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 4797 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 4798 unittest.expect(o.priority, unittest.equals(42)); | 4798 unittest.expect(o.priority, unittest.equals(42)); |
| 4799 unittest.expect(o.selfLink, unittest.equals('foo')); | 4799 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4800 checkUnnamed2135(o.tags); | 4800 checkUnnamed2452(o.tags); |
| 4801 checkUnnamed2137(o.warnings); | 4801 checkUnnamed2454(o.warnings); |
| 4802 } | 4802 } |
| 4803 buildCounterRoute--; | 4803 buildCounterRoute--; |
| 4804 } | 4804 } |
| 4805 | 4805 |
| 4806 buildUnnamed2138() { | 4806 buildUnnamed2455() { |
| 4807 var o = new core.List<api.Route>(); | 4807 var o = new core.List<api.Route>(); |
| 4808 o.add(buildRoute()); | 4808 o.add(buildRoute()); |
| 4809 o.add(buildRoute()); | 4809 o.add(buildRoute()); |
| 4810 return o; | 4810 return o; |
| 4811 } | 4811 } |
| 4812 | 4812 |
| 4813 checkUnnamed2138(core.List<api.Route> o) { | 4813 checkUnnamed2455(core.List<api.Route> o) { |
| 4814 unittest.expect(o, unittest.hasLength(2)); | 4814 unittest.expect(o, unittest.hasLength(2)); |
| 4815 checkRoute(o[0]); | 4815 checkRoute(o[0]); |
| 4816 checkRoute(o[1]); | 4816 checkRoute(o[1]); |
| 4817 } | 4817 } |
| 4818 | 4818 |
| 4819 core.int buildCounterRouteList = 0; | 4819 core.int buildCounterRouteList = 0; |
| 4820 buildRouteList() { | 4820 buildRouteList() { |
| 4821 var o = new api.RouteList(); | 4821 var o = new api.RouteList(); |
| 4822 buildCounterRouteList++; | 4822 buildCounterRouteList++; |
| 4823 if (buildCounterRouteList < 3) { | 4823 if (buildCounterRouteList < 3) { |
| 4824 o.id = "foo"; | 4824 o.id = "foo"; |
| 4825 o.items = buildUnnamed2138(); | 4825 o.items = buildUnnamed2455(); |
| 4826 o.kind = "foo"; | 4826 o.kind = "foo"; |
| 4827 o.nextPageToken = "foo"; | 4827 o.nextPageToken = "foo"; |
| 4828 o.selfLink = "foo"; | 4828 o.selfLink = "foo"; |
| 4829 } | 4829 } |
| 4830 buildCounterRouteList--; | 4830 buildCounterRouteList--; |
| 4831 return o; | 4831 return o; |
| 4832 } | 4832 } |
| 4833 | 4833 |
| 4834 checkRouteList(api.RouteList o) { | 4834 checkRouteList(api.RouteList o) { |
| 4835 buildCounterRouteList++; | 4835 buildCounterRouteList++; |
| 4836 if (buildCounterRouteList < 3) { | 4836 if (buildCounterRouteList < 3) { |
| 4837 unittest.expect(o.id, unittest.equals('foo')); | 4837 unittest.expect(o.id, unittest.equals('foo')); |
| 4838 checkUnnamed2138(o.items); | 4838 checkUnnamed2455(o.items); |
| 4839 unittest.expect(o.kind, unittest.equals('foo')); | 4839 unittest.expect(o.kind, unittest.equals('foo')); |
| 4840 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4840 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4841 unittest.expect(o.selfLink, unittest.equals('foo')); | 4841 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4842 } | 4842 } |
| 4843 buildCounterRouteList--; | 4843 buildCounterRouteList--; |
| 4844 } | 4844 } |
| 4845 | 4845 |
| 4846 core.int buildCounterScheduling = 0; | 4846 core.int buildCounterScheduling = 0; |
| 4847 buildScheduling() { | 4847 buildScheduling() { |
| 4848 var o = new api.Scheduling(); | 4848 var o = new api.Scheduling(); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4882 checkSerialPortOutput(api.SerialPortOutput o) { | 4882 checkSerialPortOutput(api.SerialPortOutput o) { |
| 4883 buildCounterSerialPortOutput++; | 4883 buildCounterSerialPortOutput++; |
| 4884 if (buildCounterSerialPortOutput < 3) { | 4884 if (buildCounterSerialPortOutput < 3) { |
| 4885 unittest.expect(o.contents, unittest.equals('foo')); | 4885 unittest.expect(o.contents, unittest.equals('foo')); |
| 4886 unittest.expect(o.kind, unittest.equals('foo')); | 4886 unittest.expect(o.kind, unittest.equals('foo')); |
| 4887 unittest.expect(o.selfLink, unittest.equals('foo')); | 4887 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4888 } | 4888 } |
| 4889 buildCounterSerialPortOutput--; | 4889 buildCounterSerialPortOutput--; |
| 4890 } | 4890 } |
| 4891 | 4891 |
| 4892 buildUnnamed2139() { | 4892 buildUnnamed2456() { |
| 4893 var o = new core.List<core.String>(); | 4893 var o = new core.List<core.String>(); |
| 4894 o.add("foo"); | 4894 o.add("foo"); |
| 4895 o.add("foo"); | 4895 o.add("foo"); |
| 4896 return o; | 4896 return o; |
| 4897 } | 4897 } |
| 4898 | 4898 |
| 4899 checkUnnamed2139(core.List<core.String> o) { | 4899 checkUnnamed2456(core.List<core.String> o) { |
| 4900 unittest.expect(o, unittest.hasLength(2)); | 4900 unittest.expect(o, unittest.hasLength(2)); |
| 4901 unittest.expect(o[0], unittest.equals('foo')); | 4901 unittest.expect(o[0], unittest.equals('foo')); |
| 4902 unittest.expect(o[1], unittest.equals('foo')); | 4902 unittest.expect(o[1], unittest.equals('foo')); |
| 4903 } | 4903 } |
| 4904 | 4904 |
| 4905 core.int buildCounterServiceAccount = 0; | 4905 core.int buildCounterServiceAccount = 0; |
| 4906 buildServiceAccount() { | 4906 buildServiceAccount() { |
| 4907 var o = new api.ServiceAccount(); | 4907 var o = new api.ServiceAccount(); |
| 4908 buildCounterServiceAccount++; | 4908 buildCounterServiceAccount++; |
| 4909 if (buildCounterServiceAccount < 3) { | 4909 if (buildCounterServiceAccount < 3) { |
| 4910 o.email = "foo"; | 4910 o.email = "foo"; |
| 4911 o.scopes = buildUnnamed2139(); | 4911 o.scopes = buildUnnamed2456(); |
| 4912 } | 4912 } |
| 4913 buildCounterServiceAccount--; | 4913 buildCounterServiceAccount--; |
| 4914 return o; | 4914 return o; |
| 4915 } | 4915 } |
| 4916 | 4916 |
| 4917 checkServiceAccount(api.ServiceAccount o) { | 4917 checkServiceAccount(api.ServiceAccount o) { |
| 4918 buildCounterServiceAccount++; | 4918 buildCounterServiceAccount++; |
| 4919 if (buildCounterServiceAccount < 3) { | 4919 if (buildCounterServiceAccount < 3) { |
| 4920 unittest.expect(o.email, unittest.equals('foo')); | 4920 unittest.expect(o.email, unittest.equals('foo')); |
| 4921 checkUnnamed2139(o.scopes); | 4921 checkUnnamed2456(o.scopes); |
| 4922 } | 4922 } |
| 4923 buildCounterServiceAccount--; | 4923 buildCounterServiceAccount--; |
| 4924 } | 4924 } |
| 4925 | 4925 |
| 4926 buildUnnamed2140() { | 4926 buildUnnamed2457() { |
| 4927 var o = new core.List<core.String>(); | 4927 var o = new core.List<core.String>(); |
| 4928 o.add("foo"); | 4928 o.add("foo"); |
| 4929 o.add("foo"); | 4929 o.add("foo"); |
| 4930 return o; | 4930 return o; |
| 4931 } | 4931 } |
| 4932 | 4932 |
| 4933 checkUnnamed2140(core.List<core.String> o) { | 4933 checkUnnamed2457(core.List<core.String> o) { |
| 4934 unittest.expect(o, unittest.hasLength(2)); | 4934 unittest.expect(o, unittest.hasLength(2)); |
| 4935 unittest.expect(o[0], unittest.equals('foo')); | 4935 unittest.expect(o[0], unittest.equals('foo')); |
| 4936 unittest.expect(o[1], unittest.equals('foo')); | 4936 unittest.expect(o[1], unittest.equals('foo')); |
| 4937 } | 4937 } |
| 4938 | 4938 |
| 4939 core.int buildCounterSnapshot = 0; | 4939 core.int buildCounterSnapshot = 0; |
| 4940 buildSnapshot() { | 4940 buildSnapshot() { |
| 4941 var o = new api.Snapshot(); | 4941 var o = new api.Snapshot(); |
| 4942 buildCounterSnapshot++; | 4942 buildCounterSnapshot++; |
| 4943 if (buildCounterSnapshot < 3) { | 4943 if (buildCounterSnapshot < 3) { |
| 4944 o.creationTimestamp = "foo"; | 4944 o.creationTimestamp = "foo"; |
| 4945 o.description = "foo"; | 4945 o.description = "foo"; |
| 4946 o.diskSizeGb = "foo"; | 4946 o.diskSizeGb = "foo"; |
| 4947 o.id = "foo"; | 4947 o.id = "foo"; |
| 4948 o.kind = "foo"; | 4948 o.kind = "foo"; |
| 4949 o.licenses = buildUnnamed2140(); | 4949 o.licenses = buildUnnamed2457(); |
| 4950 o.name = "foo"; | 4950 o.name = "foo"; |
| 4951 o.selfLink = "foo"; | 4951 o.selfLink = "foo"; |
| 4952 o.sourceDisk = "foo"; | 4952 o.sourceDisk = "foo"; |
| 4953 o.sourceDiskId = "foo"; | 4953 o.sourceDiskId = "foo"; |
| 4954 o.status = "foo"; | 4954 o.status = "foo"; |
| 4955 o.storageBytes = "foo"; | 4955 o.storageBytes = "foo"; |
| 4956 o.storageBytesStatus = "foo"; | 4956 o.storageBytesStatus = "foo"; |
| 4957 } | 4957 } |
| 4958 buildCounterSnapshot--; | 4958 buildCounterSnapshot--; |
| 4959 return o; | 4959 return o; |
| 4960 } | 4960 } |
| 4961 | 4961 |
| 4962 checkSnapshot(api.Snapshot o) { | 4962 checkSnapshot(api.Snapshot o) { |
| 4963 buildCounterSnapshot++; | 4963 buildCounterSnapshot++; |
| 4964 if (buildCounterSnapshot < 3) { | 4964 if (buildCounterSnapshot < 3) { |
| 4965 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4965 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4966 unittest.expect(o.description, unittest.equals('foo')); | 4966 unittest.expect(o.description, unittest.equals('foo')); |
| 4967 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 4967 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 4968 unittest.expect(o.id, unittest.equals('foo')); | 4968 unittest.expect(o.id, unittest.equals('foo')); |
| 4969 unittest.expect(o.kind, unittest.equals('foo')); | 4969 unittest.expect(o.kind, unittest.equals('foo')); |
| 4970 checkUnnamed2140(o.licenses); | 4970 checkUnnamed2457(o.licenses); |
| 4971 unittest.expect(o.name, unittest.equals('foo')); | 4971 unittest.expect(o.name, unittest.equals('foo')); |
| 4972 unittest.expect(o.selfLink, unittest.equals('foo')); | 4972 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4973 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 4973 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 4974 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 4974 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 4975 unittest.expect(o.status, unittest.equals('foo')); | 4975 unittest.expect(o.status, unittest.equals('foo')); |
| 4976 unittest.expect(o.storageBytes, unittest.equals('foo')); | 4976 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 4977 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 4977 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 4978 } | 4978 } |
| 4979 buildCounterSnapshot--; | 4979 buildCounterSnapshot--; |
| 4980 } | 4980 } |
| 4981 | 4981 |
| 4982 buildUnnamed2141() { | 4982 buildUnnamed2458() { |
| 4983 var o = new core.List<api.Snapshot>(); | 4983 var o = new core.List<api.Snapshot>(); |
| 4984 o.add(buildSnapshot()); | 4984 o.add(buildSnapshot()); |
| 4985 o.add(buildSnapshot()); | 4985 o.add(buildSnapshot()); |
| 4986 return o; | 4986 return o; |
| 4987 } | 4987 } |
| 4988 | 4988 |
| 4989 checkUnnamed2141(core.List<api.Snapshot> o) { | 4989 checkUnnamed2458(core.List<api.Snapshot> o) { |
| 4990 unittest.expect(o, unittest.hasLength(2)); | 4990 unittest.expect(o, unittest.hasLength(2)); |
| 4991 checkSnapshot(o[0]); | 4991 checkSnapshot(o[0]); |
| 4992 checkSnapshot(o[1]); | 4992 checkSnapshot(o[1]); |
| 4993 } | 4993 } |
| 4994 | 4994 |
| 4995 core.int buildCounterSnapshotList = 0; | 4995 core.int buildCounterSnapshotList = 0; |
| 4996 buildSnapshotList() { | 4996 buildSnapshotList() { |
| 4997 var o = new api.SnapshotList(); | 4997 var o = new api.SnapshotList(); |
| 4998 buildCounterSnapshotList++; | 4998 buildCounterSnapshotList++; |
| 4999 if (buildCounterSnapshotList < 3) { | 4999 if (buildCounterSnapshotList < 3) { |
| 5000 o.id = "foo"; | 5000 o.id = "foo"; |
| 5001 o.items = buildUnnamed2141(); | 5001 o.items = buildUnnamed2458(); |
| 5002 o.kind = "foo"; | 5002 o.kind = "foo"; |
| 5003 o.nextPageToken = "foo"; | 5003 o.nextPageToken = "foo"; |
| 5004 o.selfLink = "foo"; | 5004 o.selfLink = "foo"; |
| 5005 } | 5005 } |
| 5006 buildCounterSnapshotList--; | 5006 buildCounterSnapshotList--; |
| 5007 return o; | 5007 return o; |
| 5008 } | 5008 } |
| 5009 | 5009 |
| 5010 checkSnapshotList(api.SnapshotList o) { | 5010 checkSnapshotList(api.SnapshotList o) { |
| 5011 buildCounterSnapshotList++; | 5011 buildCounterSnapshotList++; |
| 5012 if (buildCounterSnapshotList < 3) { | 5012 if (buildCounterSnapshotList < 3) { |
| 5013 unittest.expect(o.id, unittest.equals('foo')); | 5013 unittest.expect(o.id, unittest.equals('foo')); |
| 5014 checkUnnamed2141(o.items); | 5014 checkUnnamed2458(o.items); |
| 5015 unittest.expect(o.kind, unittest.equals('foo')); | 5015 unittest.expect(o.kind, unittest.equals('foo')); |
| 5016 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5016 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5017 unittest.expect(o.selfLink, unittest.equals('foo')); | 5017 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5018 } | 5018 } |
| 5019 buildCounterSnapshotList--; | 5019 buildCounterSnapshotList--; |
| 5020 } | 5020 } |
| 5021 | 5021 |
| 5022 core.int buildCounterSslCertificate = 0; | 5022 core.int buildCounterSslCertificate = 0; |
| 5023 buildSslCertificate() { | 5023 buildSslCertificate() { |
| 5024 var o = new api.SslCertificate(); | 5024 var o = new api.SslCertificate(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 5045 unittest.expect(o.description, unittest.equals('foo')); | 5045 unittest.expect(o.description, unittest.equals('foo')); |
| 5046 unittest.expect(o.id, unittest.equals('foo')); | 5046 unittest.expect(o.id, unittest.equals('foo')); |
| 5047 unittest.expect(o.kind, unittest.equals('foo')); | 5047 unittest.expect(o.kind, unittest.equals('foo')); |
| 5048 unittest.expect(o.name, unittest.equals('foo')); | 5048 unittest.expect(o.name, unittest.equals('foo')); |
| 5049 unittest.expect(o.privateKey, unittest.equals('foo')); | 5049 unittest.expect(o.privateKey, unittest.equals('foo')); |
| 5050 unittest.expect(o.selfLink, unittest.equals('foo')); | 5050 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5051 } | 5051 } |
| 5052 buildCounterSslCertificate--; | 5052 buildCounterSslCertificate--; |
| 5053 } | 5053 } |
| 5054 | 5054 |
| 5055 buildUnnamed2142() { | 5055 buildUnnamed2459() { |
| 5056 var o = new core.List<api.SslCertificate>(); | 5056 var o = new core.List<api.SslCertificate>(); |
| 5057 o.add(buildSslCertificate()); | 5057 o.add(buildSslCertificate()); |
| 5058 o.add(buildSslCertificate()); | 5058 o.add(buildSslCertificate()); |
| 5059 return o; | 5059 return o; |
| 5060 } | 5060 } |
| 5061 | 5061 |
| 5062 checkUnnamed2142(core.List<api.SslCertificate> o) { | 5062 checkUnnamed2459(core.List<api.SslCertificate> o) { |
| 5063 unittest.expect(o, unittest.hasLength(2)); | 5063 unittest.expect(o, unittest.hasLength(2)); |
| 5064 checkSslCertificate(o[0]); | 5064 checkSslCertificate(o[0]); |
| 5065 checkSslCertificate(o[1]); | 5065 checkSslCertificate(o[1]); |
| 5066 } | 5066 } |
| 5067 | 5067 |
| 5068 core.int buildCounterSslCertificateList = 0; | 5068 core.int buildCounterSslCertificateList = 0; |
| 5069 buildSslCertificateList() { | 5069 buildSslCertificateList() { |
| 5070 var o = new api.SslCertificateList(); | 5070 var o = new api.SslCertificateList(); |
| 5071 buildCounterSslCertificateList++; | 5071 buildCounterSslCertificateList++; |
| 5072 if (buildCounterSslCertificateList < 3) { | 5072 if (buildCounterSslCertificateList < 3) { |
| 5073 o.id = "foo"; | 5073 o.id = "foo"; |
| 5074 o.items = buildUnnamed2142(); | 5074 o.items = buildUnnamed2459(); |
| 5075 o.kind = "foo"; | 5075 o.kind = "foo"; |
| 5076 o.nextPageToken = "foo"; | 5076 o.nextPageToken = "foo"; |
| 5077 o.selfLink = "foo"; | 5077 o.selfLink = "foo"; |
| 5078 } | 5078 } |
| 5079 buildCounterSslCertificateList--; | 5079 buildCounterSslCertificateList--; |
| 5080 return o; | 5080 return o; |
| 5081 } | 5081 } |
| 5082 | 5082 |
| 5083 checkSslCertificateList(api.SslCertificateList o) { | 5083 checkSslCertificateList(api.SslCertificateList o) { |
| 5084 buildCounterSslCertificateList++; | 5084 buildCounterSslCertificateList++; |
| 5085 if (buildCounterSslCertificateList < 3) { | 5085 if (buildCounterSslCertificateList < 3) { |
| 5086 unittest.expect(o.id, unittest.equals('foo')); | 5086 unittest.expect(o.id, unittest.equals('foo')); |
| 5087 checkUnnamed2142(o.items); | 5087 checkUnnamed2459(o.items); |
| 5088 unittest.expect(o.kind, unittest.equals('foo')); | 5088 unittest.expect(o.kind, unittest.equals('foo')); |
| 5089 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5089 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5090 unittest.expect(o.selfLink, unittest.equals('foo')); | 5090 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5091 } | 5091 } |
| 5092 buildCounterSslCertificateList--; | 5092 buildCounterSslCertificateList--; |
| 5093 } | 5093 } |
| 5094 | 5094 |
| 5095 core.int buildCounterSubnetwork = 0; | 5095 core.int buildCounterSubnetwork = 0; |
| 5096 buildSubnetwork() { | 5096 buildSubnetwork() { |
| 5097 var o = new api.Subnetwork(); | 5097 var o = new api.Subnetwork(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5122 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 5122 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 5123 unittest.expect(o.kind, unittest.equals('foo')); | 5123 unittest.expect(o.kind, unittest.equals('foo')); |
| 5124 unittest.expect(o.name, unittest.equals('foo')); | 5124 unittest.expect(o.name, unittest.equals('foo')); |
| 5125 unittest.expect(o.network, unittest.equals('foo')); | 5125 unittest.expect(o.network, unittest.equals('foo')); |
| 5126 unittest.expect(o.region, unittest.equals('foo')); | 5126 unittest.expect(o.region, unittest.equals('foo')); |
| 5127 unittest.expect(o.selfLink, unittest.equals('foo')); | 5127 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5128 } | 5128 } |
| 5129 buildCounterSubnetwork--; | 5129 buildCounterSubnetwork--; |
| 5130 } | 5130 } |
| 5131 | 5131 |
| 5132 buildUnnamed2143() { | 5132 buildUnnamed2460() { |
| 5133 var o = new core.Map<core.String, api.SubnetworksScopedList>(); | 5133 var o = new core.Map<core.String, api.SubnetworksScopedList>(); |
| 5134 o["x"] = buildSubnetworksScopedList(); | 5134 o["x"] = buildSubnetworksScopedList(); |
| 5135 o["y"] = buildSubnetworksScopedList(); | 5135 o["y"] = buildSubnetworksScopedList(); |
| 5136 return o; | 5136 return o; |
| 5137 } | 5137 } |
| 5138 | 5138 |
| 5139 checkUnnamed2143(core.Map<core.String, api.SubnetworksScopedList> o) { | 5139 checkUnnamed2460(core.Map<core.String, api.SubnetworksScopedList> o) { |
| 5140 unittest.expect(o, unittest.hasLength(2)); | 5140 unittest.expect(o, unittest.hasLength(2)); |
| 5141 checkSubnetworksScopedList(o["x"]); | 5141 checkSubnetworksScopedList(o["x"]); |
| 5142 checkSubnetworksScopedList(o["y"]); | 5142 checkSubnetworksScopedList(o["y"]); |
| 5143 } | 5143 } |
| 5144 | 5144 |
| 5145 core.int buildCounterSubnetworkAggregatedList = 0; | 5145 core.int buildCounterSubnetworkAggregatedList = 0; |
| 5146 buildSubnetworkAggregatedList() { | 5146 buildSubnetworkAggregatedList() { |
| 5147 var o = new api.SubnetworkAggregatedList(); | 5147 var o = new api.SubnetworkAggregatedList(); |
| 5148 buildCounterSubnetworkAggregatedList++; | 5148 buildCounterSubnetworkAggregatedList++; |
| 5149 if (buildCounterSubnetworkAggregatedList < 3) { | 5149 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5150 o.id = "foo"; | 5150 o.id = "foo"; |
| 5151 o.items = buildUnnamed2143(); | 5151 o.items = buildUnnamed2460(); |
| 5152 o.kind = "foo"; | 5152 o.kind = "foo"; |
| 5153 o.nextPageToken = "foo"; | 5153 o.nextPageToken = "foo"; |
| 5154 o.selfLink = "foo"; | 5154 o.selfLink = "foo"; |
| 5155 } | 5155 } |
| 5156 buildCounterSubnetworkAggregatedList--; | 5156 buildCounterSubnetworkAggregatedList--; |
| 5157 return o; | 5157 return o; |
| 5158 } | 5158 } |
| 5159 | 5159 |
| 5160 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { | 5160 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { |
| 5161 buildCounterSubnetworkAggregatedList++; | 5161 buildCounterSubnetworkAggregatedList++; |
| 5162 if (buildCounterSubnetworkAggregatedList < 3) { | 5162 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5163 unittest.expect(o.id, unittest.equals('foo')); | 5163 unittest.expect(o.id, unittest.equals('foo')); |
| 5164 checkUnnamed2143(o.items); | 5164 checkUnnamed2460(o.items); |
| 5165 unittest.expect(o.kind, unittest.equals('foo')); | 5165 unittest.expect(o.kind, unittest.equals('foo')); |
| 5166 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5166 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5167 unittest.expect(o.selfLink, unittest.equals('foo')); | 5167 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5168 } | 5168 } |
| 5169 buildCounterSubnetworkAggregatedList--; | 5169 buildCounterSubnetworkAggregatedList--; |
| 5170 } | 5170 } |
| 5171 | 5171 |
| 5172 buildUnnamed2144() { | 5172 buildUnnamed2461() { |
| 5173 var o = new core.List<api.Subnetwork>(); | 5173 var o = new core.List<api.Subnetwork>(); |
| 5174 o.add(buildSubnetwork()); | 5174 o.add(buildSubnetwork()); |
| 5175 o.add(buildSubnetwork()); | 5175 o.add(buildSubnetwork()); |
| 5176 return o; | 5176 return o; |
| 5177 } | 5177 } |
| 5178 | 5178 |
| 5179 checkUnnamed2144(core.List<api.Subnetwork> o) { | 5179 checkUnnamed2461(core.List<api.Subnetwork> o) { |
| 5180 unittest.expect(o, unittest.hasLength(2)); | 5180 unittest.expect(o, unittest.hasLength(2)); |
| 5181 checkSubnetwork(o[0]); | 5181 checkSubnetwork(o[0]); |
| 5182 checkSubnetwork(o[1]); | 5182 checkSubnetwork(o[1]); |
| 5183 } | 5183 } |
| 5184 | 5184 |
| 5185 core.int buildCounterSubnetworkList = 0; | 5185 core.int buildCounterSubnetworkList = 0; |
| 5186 buildSubnetworkList() { | 5186 buildSubnetworkList() { |
| 5187 var o = new api.SubnetworkList(); | 5187 var o = new api.SubnetworkList(); |
| 5188 buildCounterSubnetworkList++; | 5188 buildCounterSubnetworkList++; |
| 5189 if (buildCounterSubnetworkList < 3) { | 5189 if (buildCounterSubnetworkList < 3) { |
| 5190 o.id = "foo"; | 5190 o.id = "foo"; |
| 5191 o.items = buildUnnamed2144(); | 5191 o.items = buildUnnamed2461(); |
| 5192 o.kind = "foo"; | 5192 o.kind = "foo"; |
| 5193 o.nextPageToken = "foo"; | 5193 o.nextPageToken = "foo"; |
| 5194 o.selfLink = "foo"; | 5194 o.selfLink = "foo"; |
| 5195 } | 5195 } |
| 5196 buildCounterSubnetworkList--; | 5196 buildCounterSubnetworkList--; |
| 5197 return o; | 5197 return o; |
| 5198 } | 5198 } |
| 5199 | 5199 |
| 5200 checkSubnetworkList(api.SubnetworkList o) { | 5200 checkSubnetworkList(api.SubnetworkList o) { |
| 5201 buildCounterSubnetworkList++; | 5201 buildCounterSubnetworkList++; |
| 5202 if (buildCounterSubnetworkList < 3) { | 5202 if (buildCounterSubnetworkList < 3) { |
| 5203 unittest.expect(o.id, unittest.equals('foo')); | 5203 unittest.expect(o.id, unittest.equals('foo')); |
| 5204 checkUnnamed2144(o.items); | 5204 checkUnnamed2461(o.items); |
| 5205 unittest.expect(o.kind, unittest.equals('foo')); | 5205 unittest.expect(o.kind, unittest.equals('foo')); |
| 5206 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5206 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5207 unittest.expect(o.selfLink, unittest.equals('foo')); | 5207 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5208 } | 5208 } |
| 5209 buildCounterSubnetworkList--; | 5209 buildCounterSubnetworkList--; |
| 5210 } | 5210 } |
| 5211 | 5211 |
| 5212 buildUnnamed2145() { | 5212 buildUnnamed2462() { |
| 5213 var o = new core.List<api.Subnetwork>(); | 5213 var o = new core.List<api.Subnetwork>(); |
| 5214 o.add(buildSubnetwork()); | 5214 o.add(buildSubnetwork()); |
| 5215 o.add(buildSubnetwork()); | 5215 o.add(buildSubnetwork()); |
| 5216 return o; | 5216 return o; |
| 5217 } | 5217 } |
| 5218 | 5218 |
| 5219 checkUnnamed2145(core.List<api.Subnetwork> o) { | 5219 checkUnnamed2462(core.List<api.Subnetwork> o) { |
| 5220 unittest.expect(o, unittest.hasLength(2)); | 5220 unittest.expect(o, unittest.hasLength(2)); |
| 5221 checkSubnetwork(o[0]); | 5221 checkSubnetwork(o[0]); |
| 5222 checkSubnetwork(o[1]); | 5222 checkSubnetwork(o[1]); |
| 5223 } | 5223 } |
| 5224 | 5224 |
| 5225 core.int buildCounterSubnetworksScopedListWarningData = 0; | 5225 core.int buildCounterSubnetworksScopedListWarningData = 0; |
| 5226 buildSubnetworksScopedListWarningData() { | 5226 buildSubnetworksScopedListWarningData() { |
| 5227 var o = new api.SubnetworksScopedListWarningData(); | 5227 var o = new api.SubnetworksScopedListWarningData(); |
| 5228 buildCounterSubnetworksScopedListWarningData++; | 5228 buildCounterSubnetworksScopedListWarningData++; |
| 5229 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5229 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5230 o.key = "foo"; | 5230 o.key = "foo"; |
| 5231 o.value = "foo"; | 5231 o.value = "foo"; |
| 5232 } | 5232 } |
| 5233 buildCounterSubnetworksScopedListWarningData--; | 5233 buildCounterSubnetworksScopedListWarningData--; |
| 5234 return o; | 5234 return o; |
| 5235 } | 5235 } |
| 5236 | 5236 |
| 5237 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { | 5237 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { |
| 5238 buildCounterSubnetworksScopedListWarningData++; | 5238 buildCounterSubnetworksScopedListWarningData++; |
| 5239 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5239 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5240 unittest.expect(o.key, unittest.equals('foo')); | 5240 unittest.expect(o.key, unittest.equals('foo')); |
| 5241 unittest.expect(o.value, unittest.equals('foo')); | 5241 unittest.expect(o.value, unittest.equals('foo')); |
| 5242 } | 5242 } |
| 5243 buildCounterSubnetworksScopedListWarningData--; | 5243 buildCounterSubnetworksScopedListWarningData--; |
| 5244 } | 5244 } |
| 5245 | 5245 |
| 5246 buildUnnamed2146() { | 5246 buildUnnamed2463() { |
| 5247 var o = new core.List<api.SubnetworksScopedListWarningData>(); | 5247 var o = new core.List<api.SubnetworksScopedListWarningData>(); |
| 5248 o.add(buildSubnetworksScopedListWarningData()); | 5248 o.add(buildSubnetworksScopedListWarningData()); |
| 5249 o.add(buildSubnetworksScopedListWarningData()); | 5249 o.add(buildSubnetworksScopedListWarningData()); |
| 5250 return o; | 5250 return o; |
| 5251 } | 5251 } |
| 5252 | 5252 |
| 5253 checkUnnamed2146(core.List<api.SubnetworksScopedListWarningData> o) { | 5253 checkUnnamed2463(core.List<api.SubnetworksScopedListWarningData> o) { |
| 5254 unittest.expect(o, unittest.hasLength(2)); | 5254 unittest.expect(o, unittest.hasLength(2)); |
| 5255 checkSubnetworksScopedListWarningData(o[0]); | 5255 checkSubnetworksScopedListWarningData(o[0]); |
| 5256 checkSubnetworksScopedListWarningData(o[1]); | 5256 checkSubnetworksScopedListWarningData(o[1]); |
| 5257 } | 5257 } |
| 5258 | 5258 |
| 5259 core.int buildCounterSubnetworksScopedListWarning = 0; | 5259 core.int buildCounterSubnetworksScopedListWarning = 0; |
| 5260 buildSubnetworksScopedListWarning() { | 5260 buildSubnetworksScopedListWarning() { |
| 5261 var o = new api.SubnetworksScopedListWarning(); | 5261 var o = new api.SubnetworksScopedListWarning(); |
| 5262 buildCounterSubnetworksScopedListWarning++; | 5262 buildCounterSubnetworksScopedListWarning++; |
| 5263 if (buildCounterSubnetworksScopedListWarning < 3) { | 5263 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5264 o.code = "foo"; | 5264 o.code = "foo"; |
| 5265 o.data = buildUnnamed2146(); | 5265 o.data = buildUnnamed2463(); |
| 5266 o.message = "foo"; | 5266 o.message = "foo"; |
| 5267 } | 5267 } |
| 5268 buildCounterSubnetworksScopedListWarning--; | 5268 buildCounterSubnetworksScopedListWarning--; |
| 5269 return o; | 5269 return o; |
| 5270 } | 5270 } |
| 5271 | 5271 |
| 5272 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { | 5272 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { |
| 5273 buildCounterSubnetworksScopedListWarning++; | 5273 buildCounterSubnetworksScopedListWarning++; |
| 5274 if (buildCounterSubnetworksScopedListWarning < 3) { | 5274 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5275 unittest.expect(o.code, unittest.equals('foo')); | 5275 unittest.expect(o.code, unittest.equals('foo')); |
| 5276 checkUnnamed2146(o.data); | 5276 checkUnnamed2463(o.data); |
| 5277 unittest.expect(o.message, unittest.equals('foo')); | 5277 unittest.expect(o.message, unittest.equals('foo')); |
| 5278 } | 5278 } |
| 5279 buildCounterSubnetworksScopedListWarning--; | 5279 buildCounterSubnetworksScopedListWarning--; |
| 5280 } | 5280 } |
| 5281 | 5281 |
| 5282 core.int buildCounterSubnetworksScopedList = 0; | 5282 core.int buildCounterSubnetworksScopedList = 0; |
| 5283 buildSubnetworksScopedList() { | 5283 buildSubnetworksScopedList() { |
| 5284 var o = new api.SubnetworksScopedList(); | 5284 var o = new api.SubnetworksScopedList(); |
| 5285 buildCounterSubnetworksScopedList++; | 5285 buildCounterSubnetworksScopedList++; |
| 5286 if (buildCounterSubnetworksScopedList < 3) { | 5286 if (buildCounterSubnetworksScopedList < 3) { |
| 5287 o.subnetworks = buildUnnamed2145(); | 5287 o.subnetworks = buildUnnamed2462(); |
| 5288 o.warning = buildSubnetworksScopedListWarning(); | 5288 o.warning = buildSubnetworksScopedListWarning(); |
| 5289 } | 5289 } |
| 5290 buildCounterSubnetworksScopedList--; | 5290 buildCounterSubnetworksScopedList--; |
| 5291 return o; | 5291 return o; |
| 5292 } | 5292 } |
| 5293 | 5293 |
| 5294 checkSubnetworksScopedList(api.SubnetworksScopedList o) { | 5294 checkSubnetworksScopedList(api.SubnetworksScopedList o) { |
| 5295 buildCounterSubnetworksScopedList++; | 5295 buildCounterSubnetworksScopedList++; |
| 5296 if (buildCounterSubnetworksScopedList < 3) { | 5296 if (buildCounterSubnetworksScopedList < 3) { |
| 5297 checkUnnamed2145(o.subnetworks); | 5297 checkUnnamed2462(o.subnetworks); |
| 5298 checkSubnetworksScopedListWarning(o.warning); | 5298 checkSubnetworksScopedListWarning(o.warning); |
| 5299 } | 5299 } |
| 5300 buildCounterSubnetworksScopedList--; | 5300 buildCounterSubnetworksScopedList--; |
| 5301 } | 5301 } |
| 5302 | 5302 |
| 5303 buildUnnamed2147() { | 5303 buildUnnamed2464() { |
| 5304 var o = new core.List<core.String>(); | 5304 var o = new core.List<core.String>(); |
| 5305 o.add("foo"); | 5305 o.add("foo"); |
| 5306 o.add("foo"); | 5306 o.add("foo"); |
| 5307 return o; | 5307 return o; |
| 5308 } | 5308 } |
| 5309 | 5309 |
| 5310 checkUnnamed2147(core.List<core.String> o) { | 5310 checkUnnamed2464(core.List<core.String> o) { |
| 5311 unittest.expect(o, unittest.hasLength(2)); | 5311 unittest.expect(o, unittest.hasLength(2)); |
| 5312 unittest.expect(o[0], unittest.equals('foo')); | 5312 unittest.expect(o[0], unittest.equals('foo')); |
| 5313 unittest.expect(o[1], unittest.equals('foo')); | 5313 unittest.expect(o[1], unittest.equals('foo')); |
| 5314 } | 5314 } |
| 5315 | 5315 |
| 5316 core.int buildCounterTags = 0; | 5316 core.int buildCounterTags = 0; |
| 5317 buildTags() { | 5317 buildTags() { |
| 5318 var o = new api.Tags(); | 5318 var o = new api.Tags(); |
| 5319 buildCounterTags++; | 5319 buildCounterTags++; |
| 5320 if (buildCounterTags < 3) { | 5320 if (buildCounterTags < 3) { |
| 5321 o.fingerprint = "foo"; | 5321 o.fingerprint = "foo"; |
| 5322 o.items = buildUnnamed2147(); | 5322 o.items = buildUnnamed2464(); |
| 5323 } | 5323 } |
| 5324 buildCounterTags--; | 5324 buildCounterTags--; |
| 5325 return o; | 5325 return o; |
| 5326 } | 5326 } |
| 5327 | 5327 |
| 5328 checkTags(api.Tags o) { | 5328 checkTags(api.Tags o) { |
| 5329 buildCounterTags++; | 5329 buildCounterTags++; |
| 5330 if (buildCounterTags < 3) { | 5330 if (buildCounterTags < 3) { |
| 5331 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5331 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5332 checkUnnamed2147(o.items); | 5332 checkUnnamed2464(o.items); |
| 5333 } | 5333 } |
| 5334 buildCounterTags--; | 5334 buildCounterTags--; |
| 5335 } | 5335 } |
| 5336 | 5336 |
| 5337 core.int buildCounterTargetHttpProxy = 0; | 5337 core.int buildCounterTargetHttpProxy = 0; |
| 5338 buildTargetHttpProxy() { | 5338 buildTargetHttpProxy() { |
| 5339 var o = new api.TargetHttpProxy(); | 5339 var o = new api.TargetHttpProxy(); |
| 5340 buildCounterTargetHttpProxy++; | 5340 buildCounterTargetHttpProxy++; |
| 5341 if (buildCounterTargetHttpProxy < 3) { | 5341 if (buildCounterTargetHttpProxy < 3) { |
| 5342 o.creationTimestamp = "foo"; | 5342 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5358 unittest.expect(o.description, unittest.equals('foo')); | 5358 unittest.expect(o.description, unittest.equals('foo')); |
| 5359 unittest.expect(o.id, unittest.equals('foo')); | 5359 unittest.expect(o.id, unittest.equals('foo')); |
| 5360 unittest.expect(o.kind, unittest.equals('foo')); | 5360 unittest.expect(o.kind, unittest.equals('foo')); |
| 5361 unittest.expect(o.name, unittest.equals('foo')); | 5361 unittest.expect(o.name, unittest.equals('foo')); |
| 5362 unittest.expect(o.selfLink, unittest.equals('foo')); | 5362 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5363 unittest.expect(o.urlMap, unittest.equals('foo')); | 5363 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 5364 } | 5364 } |
| 5365 buildCounterTargetHttpProxy--; | 5365 buildCounterTargetHttpProxy--; |
| 5366 } | 5366 } |
| 5367 | 5367 |
| 5368 buildUnnamed2148() { | 5368 buildUnnamed2465() { |
| 5369 var o = new core.List<api.TargetHttpProxy>(); | 5369 var o = new core.List<api.TargetHttpProxy>(); |
| 5370 o.add(buildTargetHttpProxy()); | 5370 o.add(buildTargetHttpProxy()); |
| 5371 o.add(buildTargetHttpProxy()); | 5371 o.add(buildTargetHttpProxy()); |
| 5372 return o; | 5372 return o; |
| 5373 } | 5373 } |
| 5374 | 5374 |
| 5375 checkUnnamed2148(core.List<api.TargetHttpProxy> o) { | 5375 checkUnnamed2465(core.List<api.TargetHttpProxy> o) { |
| 5376 unittest.expect(o, unittest.hasLength(2)); | 5376 unittest.expect(o, unittest.hasLength(2)); |
| 5377 checkTargetHttpProxy(o[0]); | 5377 checkTargetHttpProxy(o[0]); |
| 5378 checkTargetHttpProxy(o[1]); | 5378 checkTargetHttpProxy(o[1]); |
| 5379 } | 5379 } |
| 5380 | 5380 |
| 5381 core.int buildCounterTargetHttpProxyList = 0; | 5381 core.int buildCounterTargetHttpProxyList = 0; |
| 5382 buildTargetHttpProxyList() { | 5382 buildTargetHttpProxyList() { |
| 5383 var o = new api.TargetHttpProxyList(); | 5383 var o = new api.TargetHttpProxyList(); |
| 5384 buildCounterTargetHttpProxyList++; | 5384 buildCounterTargetHttpProxyList++; |
| 5385 if (buildCounterTargetHttpProxyList < 3) { | 5385 if (buildCounterTargetHttpProxyList < 3) { |
| 5386 o.id = "foo"; | 5386 o.id = "foo"; |
| 5387 o.items = buildUnnamed2148(); | 5387 o.items = buildUnnamed2465(); |
| 5388 o.kind = "foo"; | 5388 o.kind = "foo"; |
| 5389 o.nextPageToken = "foo"; | 5389 o.nextPageToken = "foo"; |
| 5390 o.selfLink = "foo"; | 5390 o.selfLink = "foo"; |
| 5391 } | 5391 } |
| 5392 buildCounterTargetHttpProxyList--; | 5392 buildCounterTargetHttpProxyList--; |
| 5393 return o; | 5393 return o; |
| 5394 } | 5394 } |
| 5395 | 5395 |
| 5396 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 5396 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 5397 buildCounterTargetHttpProxyList++; | 5397 buildCounterTargetHttpProxyList++; |
| 5398 if (buildCounterTargetHttpProxyList < 3) { | 5398 if (buildCounterTargetHttpProxyList < 3) { |
| 5399 unittest.expect(o.id, unittest.equals('foo')); | 5399 unittest.expect(o.id, unittest.equals('foo')); |
| 5400 checkUnnamed2148(o.items); | 5400 checkUnnamed2465(o.items); |
| 5401 unittest.expect(o.kind, unittest.equals('foo')); | 5401 unittest.expect(o.kind, unittest.equals('foo')); |
| 5402 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5402 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5403 unittest.expect(o.selfLink, unittest.equals('foo')); | 5403 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5404 } | 5404 } |
| 5405 buildCounterTargetHttpProxyList--; | 5405 buildCounterTargetHttpProxyList--; |
| 5406 } | 5406 } |
| 5407 | 5407 |
| 5408 buildUnnamed2149() { | 5408 buildUnnamed2466() { |
| 5409 var o = new core.List<core.String>(); | 5409 var o = new core.List<core.String>(); |
| 5410 o.add("foo"); | 5410 o.add("foo"); |
| 5411 o.add("foo"); | 5411 o.add("foo"); |
| 5412 return o; | 5412 return o; |
| 5413 } | 5413 } |
| 5414 | 5414 |
| 5415 checkUnnamed2149(core.List<core.String> o) { | 5415 checkUnnamed2466(core.List<core.String> o) { |
| 5416 unittest.expect(o, unittest.hasLength(2)); | 5416 unittest.expect(o, unittest.hasLength(2)); |
| 5417 unittest.expect(o[0], unittest.equals('foo')); | 5417 unittest.expect(o[0], unittest.equals('foo')); |
| 5418 unittest.expect(o[1], unittest.equals('foo')); | 5418 unittest.expect(o[1], unittest.equals('foo')); |
| 5419 } | 5419 } |
| 5420 | 5420 |
| 5421 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; | 5421 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; |
| 5422 buildTargetHttpsProxiesSetSslCertificatesRequest() { | 5422 buildTargetHttpsProxiesSetSslCertificatesRequest() { |
| 5423 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); | 5423 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); |
| 5424 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 5424 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 5425 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 5425 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 5426 o.sslCertificates = buildUnnamed2149(); | 5426 o.sslCertificates = buildUnnamed2466(); |
| 5427 } | 5427 } |
| 5428 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 5428 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 5429 return o; | 5429 return o; |
| 5430 } | 5430 } |
| 5431 | 5431 |
| 5432 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { | 5432 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { |
| 5433 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 5433 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 5434 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 5434 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 5435 checkUnnamed2149(o.sslCertificates); | 5435 checkUnnamed2466(o.sslCertificates); |
| 5436 } | 5436 } |
| 5437 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 5437 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 5438 } | 5438 } |
| 5439 | 5439 |
| 5440 buildUnnamed2150() { | 5440 buildUnnamed2467() { |
| 5441 var o = new core.List<core.String>(); | 5441 var o = new core.List<core.String>(); |
| 5442 o.add("foo"); | 5442 o.add("foo"); |
| 5443 o.add("foo"); | 5443 o.add("foo"); |
| 5444 return o; | 5444 return o; |
| 5445 } | 5445 } |
| 5446 | 5446 |
| 5447 checkUnnamed2150(core.List<core.String> o) { | 5447 checkUnnamed2467(core.List<core.String> o) { |
| 5448 unittest.expect(o, unittest.hasLength(2)); | 5448 unittest.expect(o, unittest.hasLength(2)); |
| 5449 unittest.expect(o[0], unittest.equals('foo')); | 5449 unittest.expect(o[0], unittest.equals('foo')); |
| 5450 unittest.expect(o[1], unittest.equals('foo')); | 5450 unittest.expect(o[1], unittest.equals('foo')); |
| 5451 } | 5451 } |
| 5452 | 5452 |
| 5453 core.int buildCounterTargetHttpsProxy = 0; | 5453 core.int buildCounterTargetHttpsProxy = 0; |
| 5454 buildTargetHttpsProxy() { | 5454 buildTargetHttpsProxy() { |
| 5455 var o = new api.TargetHttpsProxy(); | 5455 var o = new api.TargetHttpsProxy(); |
| 5456 buildCounterTargetHttpsProxy++; | 5456 buildCounterTargetHttpsProxy++; |
| 5457 if (buildCounterTargetHttpsProxy < 3) { | 5457 if (buildCounterTargetHttpsProxy < 3) { |
| 5458 o.creationTimestamp = "foo"; | 5458 o.creationTimestamp = "foo"; |
| 5459 o.description = "foo"; | 5459 o.description = "foo"; |
| 5460 o.id = "foo"; | 5460 o.id = "foo"; |
| 5461 o.kind = "foo"; | 5461 o.kind = "foo"; |
| 5462 o.name = "foo"; | 5462 o.name = "foo"; |
| 5463 o.selfLink = "foo"; | 5463 o.selfLink = "foo"; |
| 5464 o.sslCertificates = buildUnnamed2150(); | 5464 o.sslCertificates = buildUnnamed2467(); |
| 5465 o.urlMap = "foo"; | 5465 o.urlMap = "foo"; |
| 5466 } | 5466 } |
| 5467 buildCounterTargetHttpsProxy--; | 5467 buildCounterTargetHttpsProxy--; |
| 5468 return o; | 5468 return o; |
| 5469 } | 5469 } |
| 5470 | 5470 |
| 5471 checkTargetHttpsProxy(api.TargetHttpsProxy o) { | 5471 checkTargetHttpsProxy(api.TargetHttpsProxy o) { |
| 5472 buildCounterTargetHttpsProxy++; | 5472 buildCounterTargetHttpsProxy++; |
| 5473 if (buildCounterTargetHttpsProxy < 3) { | 5473 if (buildCounterTargetHttpsProxy < 3) { |
| 5474 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5474 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5475 unittest.expect(o.description, unittest.equals('foo')); | 5475 unittest.expect(o.description, unittest.equals('foo')); |
| 5476 unittest.expect(o.id, unittest.equals('foo')); | 5476 unittest.expect(o.id, unittest.equals('foo')); |
| 5477 unittest.expect(o.kind, unittest.equals('foo')); | 5477 unittest.expect(o.kind, unittest.equals('foo')); |
| 5478 unittest.expect(o.name, unittest.equals('foo')); | 5478 unittest.expect(o.name, unittest.equals('foo')); |
| 5479 unittest.expect(o.selfLink, unittest.equals('foo')); | 5479 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5480 checkUnnamed2150(o.sslCertificates); | 5480 checkUnnamed2467(o.sslCertificates); |
| 5481 unittest.expect(o.urlMap, unittest.equals('foo')); | 5481 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 5482 } | 5482 } |
| 5483 buildCounterTargetHttpsProxy--; | 5483 buildCounterTargetHttpsProxy--; |
| 5484 } | 5484 } |
| 5485 | 5485 |
| 5486 buildUnnamed2151() { | 5486 buildUnnamed2468() { |
| 5487 var o = new core.List<api.TargetHttpsProxy>(); | 5487 var o = new core.List<api.TargetHttpsProxy>(); |
| 5488 o.add(buildTargetHttpsProxy()); | 5488 o.add(buildTargetHttpsProxy()); |
| 5489 o.add(buildTargetHttpsProxy()); | 5489 o.add(buildTargetHttpsProxy()); |
| 5490 return o; | 5490 return o; |
| 5491 } | 5491 } |
| 5492 | 5492 |
| 5493 checkUnnamed2151(core.List<api.TargetHttpsProxy> o) { | 5493 checkUnnamed2468(core.List<api.TargetHttpsProxy> o) { |
| 5494 unittest.expect(o, unittest.hasLength(2)); | 5494 unittest.expect(o, unittest.hasLength(2)); |
| 5495 checkTargetHttpsProxy(o[0]); | 5495 checkTargetHttpsProxy(o[0]); |
| 5496 checkTargetHttpsProxy(o[1]); | 5496 checkTargetHttpsProxy(o[1]); |
| 5497 } | 5497 } |
| 5498 | 5498 |
| 5499 core.int buildCounterTargetHttpsProxyList = 0; | 5499 core.int buildCounterTargetHttpsProxyList = 0; |
| 5500 buildTargetHttpsProxyList() { | 5500 buildTargetHttpsProxyList() { |
| 5501 var o = new api.TargetHttpsProxyList(); | 5501 var o = new api.TargetHttpsProxyList(); |
| 5502 buildCounterTargetHttpsProxyList++; | 5502 buildCounterTargetHttpsProxyList++; |
| 5503 if (buildCounterTargetHttpsProxyList < 3) { | 5503 if (buildCounterTargetHttpsProxyList < 3) { |
| 5504 o.id = "foo"; | 5504 o.id = "foo"; |
| 5505 o.items = buildUnnamed2151(); | 5505 o.items = buildUnnamed2468(); |
| 5506 o.kind = "foo"; | 5506 o.kind = "foo"; |
| 5507 o.nextPageToken = "foo"; | 5507 o.nextPageToken = "foo"; |
| 5508 o.selfLink = "foo"; | 5508 o.selfLink = "foo"; |
| 5509 } | 5509 } |
| 5510 buildCounterTargetHttpsProxyList--; | 5510 buildCounterTargetHttpsProxyList--; |
| 5511 return o; | 5511 return o; |
| 5512 } | 5512 } |
| 5513 | 5513 |
| 5514 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { | 5514 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { |
| 5515 buildCounterTargetHttpsProxyList++; | 5515 buildCounterTargetHttpsProxyList++; |
| 5516 if (buildCounterTargetHttpsProxyList < 3) { | 5516 if (buildCounterTargetHttpsProxyList < 3) { |
| 5517 unittest.expect(o.id, unittest.equals('foo')); | 5517 unittest.expect(o.id, unittest.equals('foo')); |
| 5518 checkUnnamed2151(o.items); | 5518 checkUnnamed2468(o.items); |
| 5519 unittest.expect(o.kind, unittest.equals('foo')); | 5519 unittest.expect(o.kind, unittest.equals('foo')); |
| 5520 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5520 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5521 unittest.expect(o.selfLink, unittest.equals('foo')); | 5521 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5522 } | 5522 } |
| 5523 buildCounterTargetHttpsProxyList--; | 5523 buildCounterTargetHttpsProxyList--; |
| 5524 } | 5524 } |
| 5525 | 5525 |
| 5526 core.int buildCounterTargetInstance = 0; | 5526 core.int buildCounterTargetInstance = 0; |
| 5527 buildTargetInstance() { | 5527 buildTargetInstance() { |
| 5528 var o = new api.TargetInstance(); | 5528 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5551 unittest.expect(o.instance, unittest.equals('foo')); | 5551 unittest.expect(o.instance, unittest.equals('foo')); |
| 5552 unittest.expect(o.kind, unittest.equals('foo')); | 5552 unittest.expect(o.kind, unittest.equals('foo')); |
| 5553 unittest.expect(o.name, unittest.equals('foo')); | 5553 unittest.expect(o.name, unittest.equals('foo')); |
| 5554 unittest.expect(o.natPolicy, unittest.equals('foo')); | 5554 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 5555 unittest.expect(o.selfLink, unittest.equals('foo')); | 5555 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5556 unittest.expect(o.zone, unittest.equals('foo')); | 5556 unittest.expect(o.zone, unittest.equals('foo')); |
| 5557 } | 5557 } |
| 5558 buildCounterTargetInstance--; | 5558 buildCounterTargetInstance--; |
| 5559 } | 5559 } |
| 5560 | 5560 |
| 5561 buildUnnamed2152() { | 5561 buildUnnamed2469() { |
| 5562 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 5562 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 5563 o["x"] = buildTargetInstancesScopedList(); | 5563 o["x"] = buildTargetInstancesScopedList(); |
| 5564 o["y"] = buildTargetInstancesScopedList(); | 5564 o["y"] = buildTargetInstancesScopedList(); |
| 5565 return o; | 5565 return o; |
| 5566 } | 5566 } |
| 5567 | 5567 |
| 5568 checkUnnamed2152(core.Map<core.String, api.TargetInstancesScopedList> o) { | 5568 checkUnnamed2469(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 5569 unittest.expect(o, unittest.hasLength(2)); | 5569 unittest.expect(o, unittest.hasLength(2)); |
| 5570 checkTargetInstancesScopedList(o["x"]); | 5570 checkTargetInstancesScopedList(o["x"]); |
| 5571 checkTargetInstancesScopedList(o["y"]); | 5571 checkTargetInstancesScopedList(o["y"]); |
| 5572 } | 5572 } |
| 5573 | 5573 |
| 5574 core.int buildCounterTargetInstanceAggregatedList = 0; | 5574 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 5575 buildTargetInstanceAggregatedList() { | 5575 buildTargetInstanceAggregatedList() { |
| 5576 var o = new api.TargetInstanceAggregatedList(); | 5576 var o = new api.TargetInstanceAggregatedList(); |
| 5577 buildCounterTargetInstanceAggregatedList++; | 5577 buildCounterTargetInstanceAggregatedList++; |
| 5578 if (buildCounterTargetInstanceAggregatedList < 3) { | 5578 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 5579 o.id = "foo"; | 5579 o.id = "foo"; |
| 5580 o.items = buildUnnamed2152(); | 5580 o.items = buildUnnamed2469(); |
| 5581 o.kind = "foo"; | 5581 o.kind = "foo"; |
| 5582 o.nextPageToken = "foo"; | 5582 o.nextPageToken = "foo"; |
| 5583 o.selfLink = "foo"; | 5583 o.selfLink = "foo"; |
| 5584 } | 5584 } |
| 5585 buildCounterTargetInstanceAggregatedList--; | 5585 buildCounterTargetInstanceAggregatedList--; |
| 5586 return o; | 5586 return o; |
| 5587 } | 5587 } |
| 5588 | 5588 |
| 5589 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 5589 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 5590 buildCounterTargetInstanceAggregatedList++; | 5590 buildCounterTargetInstanceAggregatedList++; |
| 5591 if (buildCounterTargetInstanceAggregatedList < 3) { | 5591 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 5592 unittest.expect(o.id, unittest.equals('foo')); | 5592 unittest.expect(o.id, unittest.equals('foo')); |
| 5593 checkUnnamed2152(o.items); | 5593 checkUnnamed2469(o.items); |
| 5594 unittest.expect(o.kind, unittest.equals('foo')); | 5594 unittest.expect(o.kind, unittest.equals('foo')); |
| 5595 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5595 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5596 unittest.expect(o.selfLink, unittest.equals('foo')); | 5596 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5597 } | 5597 } |
| 5598 buildCounterTargetInstanceAggregatedList--; | 5598 buildCounterTargetInstanceAggregatedList--; |
| 5599 } | 5599 } |
| 5600 | 5600 |
| 5601 buildUnnamed2153() { | 5601 buildUnnamed2470() { |
| 5602 var o = new core.List<api.TargetInstance>(); | 5602 var o = new core.List<api.TargetInstance>(); |
| 5603 o.add(buildTargetInstance()); | 5603 o.add(buildTargetInstance()); |
| 5604 o.add(buildTargetInstance()); | 5604 o.add(buildTargetInstance()); |
| 5605 return o; | 5605 return o; |
| 5606 } | 5606 } |
| 5607 | 5607 |
| 5608 checkUnnamed2153(core.List<api.TargetInstance> o) { | 5608 checkUnnamed2470(core.List<api.TargetInstance> o) { |
| 5609 unittest.expect(o, unittest.hasLength(2)); | 5609 unittest.expect(o, unittest.hasLength(2)); |
| 5610 checkTargetInstance(o[0]); | 5610 checkTargetInstance(o[0]); |
| 5611 checkTargetInstance(o[1]); | 5611 checkTargetInstance(o[1]); |
| 5612 } | 5612 } |
| 5613 | 5613 |
| 5614 core.int buildCounterTargetInstanceList = 0; | 5614 core.int buildCounterTargetInstanceList = 0; |
| 5615 buildTargetInstanceList() { | 5615 buildTargetInstanceList() { |
| 5616 var o = new api.TargetInstanceList(); | 5616 var o = new api.TargetInstanceList(); |
| 5617 buildCounterTargetInstanceList++; | 5617 buildCounterTargetInstanceList++; |
| 5618 if (buildCounterTargetInstanceList < 3) { | 5618 if (buildCounterTargetInstanceList < 3) { |
| 5619 o.id = "foo"; | 5619 o.id = "foo"; |
| 5620 o.items = buildUnnamed2153(); | 5620 o.items = buildUnnamed2470(); |
| 5621 o.kind = "foo"; | 5621 o.kind = "foo"; |
| 5622 o.nextPageToken = "foo"; | 5622 o.nextPageToken = "foo"; |
| 5623 o.selfLink = "foo"; | 5623 o.selfLink = "foo"; |
| 5624 } | 5624 } |
| 5625 buildCounterTargetInstanceList--; | 5625 buildCounterTargetInstanceList--; |
| 5626 return o; | 5626 return o; |
| 5627 } | 5627 } |
| 5628 | 5628 |
| 5629 checkTargetInstanceList(api.TargetInstanceList o) { | 5629 checkTargetInstanceList(api.TargetInstanceList o) { |
| 5630 buildCounterTargetInstanceList++; | 5630 buildCounterTargetInstanceList++; |
| 5631 if (buildCounterTargetInstanceList < 3) { | 5631 if (buildCounterTargetInstanceList < 3) { |
| 5632 unittest.expect(o.id, unittest.equals('foo')); | 5632 unittest.expect(o.id, unittest.equals('foo')); |
| 5633 checkUnnamed2153(o.items); | 5633 checkUnnamed2470(o.items); |
| 5634 unittest.expect(o.kind, unittest.equals('foo')); | 5634 unittest.expect(o.kind, unittest.equals('foo')); |
| 5635 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5635 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5636 unittest.expect(o.selfLink, unittest.equals('foo')); | 5636 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5637 } | 5637 } |
| 5638 buildCounterTargetInstanceList--; | 5638 buildCounterTargetInstanceList--; |
| 5639 } | 5639 } |
| 5640 | 5640 |
| 5641 buildUnnamed2154() { | 5641 buildUnnamed2471() { |
| 5642 var o = new core.List<api.TargetInstance>(); | 5642 var o = new core.List<api.TargetInstance>(); |
| 5643 o.add(buildTargetInstance()); | 5643 o.add(buildTargetInstance()); |
| 5644 o.add(buildTargetInstance()); | 5644 o.add(buildTargetInstance()); |
| 5645 return o; | 5645 return o; |
| 5646 } | 5646 } |
| 5647 | 5647 |
| 5648 checkUnnamed2154(core.List<api.TargetInstance> o) { | 5648 checkUnnamed2471(core.List<api.TargetInstance> o) { |
| 5649 unittest.expect(o, unittest.hasLength(2)); | 5649 unittest.expect(o, unittest.hasLength(2)); |
| 5650 checkTargetInstance(o[0]); | 5650 checkTargetInstance(o[0]); |
| 5651 checkTargetInstance(o[1]); | 5651 checkTargetInstance(o[1]); |
| 5652 } | 5652 } |
| 5653 | 5653 |
| 5654 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 5654 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 5655 buildTargetInstancesScopedListWarningData() { | 5655 buildTargetInstancesScopedListWarningData() { |
| 5656 var o = new api.TargetInstancesScopedListWarningData(); | 5656 var o = new api.TargetInstancesScopedListWarningData(); |
| 5657 buildCounterTargetInstancesScopedListWarningData++; | 5657 buildCounterTargetInstancesScopedListWarningData++; |
| 5658 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 5658 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 5659 o.key = "foo"; | 5659 o.key = "foo"; |
| 5660 o.value = "foo"; | 5660 o.value = "foo"; |
| 5661 } | 5661 } |
| 5662 buildCounterTargetInstancesScopedListWarningData--; | 5662 buildCounterTargetInstancesScopedListWarningData--; |
| 5663 return o; | 5663 return o; |
| 5664 } | 5664 } |
| 5665 | 5665 |
| 5666 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 5666 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 5667 buildCounterTargetInstancesScopedListWarningData++; | 5667 buildCounterTargetInstancesScopedListWarningData++; |
| 5668 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 5668 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 5669 unittest.expect(o.key, unittest.equals('foo')); | 5669 unittest.expect(o.key, unittest.equals('foo')); |
| 5670 unittest.expect(o.value, unittest.equals('foo')); | 5670 unittest.expect(o.value, unittest.equals('foo')); |
| 5671 } | 5671 } |
| 5672 buildCounterTargetInstancesScopedListWarningData--; | 5672 buildCounterTargetInstancesScopedListWarningData--; |
| 5673 } | 5673 } |
| 5674 | 5674 |
| 5675 buildUnnamed2155() { | 5675 buildUnnamed2472() { |
| 5676 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 5676 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 5677 o.add(buildTargetInstancesScopedListWarningData()); | 5677 o.add(buildTargetInstancesScopedListWarningData()); |
| 5678 o.add(buildTargetInstancesScopedListWarningData()); | 5678 o.add(buildTargetInstancesScopedListWarningData()); |
| 5679 return o; | 5679 return o; |
| 5680 } | 5680 } |
| 5681 | 5681 |
| 5682 checkUnnamed2155(core.List<api.TargetInstancesScopedListWarningData> o) { | 5682 checkUnnamed2472(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 5683 unittest.expect(o, unittest.hasLength(2)); | 5683 unittest.expect(o, unittest.hasLength(2)); |
| 5684 checkTargetInstancesScopedListWarningData(o[0]); | 5684 checkTargetInstancesScopedListWarningData(o[0]); |
| 5685 checkTargetInstancesScopedListWarningData(o[1]); | 5685 checkTargetInstancesScopedListWarningData(o[1]); |
| 5686 } | 5686 } |
| 5687 | 5687 |
| 5688 core.int buildCounterTargetInstancesScopedListWarning = 0; | 5688 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 5689 buildTargetInstancesScopedListWarning() { | 5689 buildTargetInstancesScopedListWarning() { |
| 5690 var o = new api.TargetInstancesScopedListWarning(); | 5690 var o = new api.TargetInstancesScopedListWarning(); |
| 5691 buildCounterTargetInstancesScopedListWarning++; | 5691 buildCounterTargetInstancesScopedListWarning++; |
| 5692 if (buildCounterTargetInstancesScopedListWarning < 3) { | 5692 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 5693 o.code = "foo"; | 5693 o.code = "foo"; |
| 5694 o.data = buildUnnamed2155(); | 5694 o.data = buildUnnamed2472(); |
| 5695 o.message = "foo"; | 5695 o.message = "foo"; |
| 5696 } | 5696 } |
| 5697 buildCounterTargetInstancesScopedListWarning--; | 5697 buildCounterTargetInstancesScopedListWarning--; |
| 5698 return o; | 5698 return o; |
| 5699 } | 5699 } |
| 5700 | 5700 |
| 5701 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 5701 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 5702 buildCounterTargetInstancesScopedListWarning++; | 5702 buildCounterTargetInstancesScopedListWarning++; |
| 5703 if (buildCounterTargetInstancesScopedListWarning < 3) { | 5703 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 5704 unittest.expect(o.code, unittest.equals('foo')); | 5704 unittest.expect(o.code, unittest.equals('foo')); |
| 5705 checkUnnamed2155(o.data); | 5705 checkUnnamed2472(o.data); |
| 5706 unittest.expect(o.message, unittest.equals('foo')); | 5706 unittest.expect(o.message, unittest.equals('foo')); |
| 5707 } | 5707 } |
| 5708 buildCounterTargetInstancesScopedListWarning--; | 5708 buildCounterTargetInstancesScopedListWarning--; |
| 5709 } | 5709 } |
| 5710 | 5710 |
| 5711 core.int buildCounterTargetInstancesScopedList = 0; | 5711 core.int buildCounterTargetInstancesScopedList = 0; |
| 5712 buildTargetInstancesScopedList() { | 5712 buildTargetInstancesScopedList() { |
| 5713 var o = new api.TargetInstancesScopedList(); | 5713 var o = new api.TargetInstancesScopedList(); |
| 5714 buildCounterTargetInstancesScopedList++; | 5714 buildCounterTargetInstancesScopedList++; |
| 5715 if (buildCounterTargetInstancesScopedList < 3) { | 5715 if (buildCounterTargetInstancesScopedList < 3) { |
| 5716 o.targetInstances = buildUnnamed2154(); | 5716 o.targetInstances = buildUnnamed2471(); |
| 5717 o.warning = buildTargetInstancesScopedListWarning(); | 5717 o.warning = buildTargetInstancesScopedListWarning(); |
| 5718 } | 5718 } |
| 5719 buildCounterTargetInstancesScopedList--; | 5719 buildCounterTargetInstancesScopedList--; |
| 5720 return o; | 5720 return o; |
| 5721 } | 5721 } |
| 5722 | 5722 |
| 5723 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 5723 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 5724 buildCounterTargetInstancesScopedList++; | 5724 buildCounterTargetInstancesScopedList++; |
| 5725 if (buildCounterTargetInstancesScopedList < 3) { | 5725 if (buildCounterTargetInstancesScopedList < 3) { |
| 5726 checkUnnamed2154(o.targetInstances); | 5726 checkUnnamed2471(o.targetInstances); |
| 5727 checkTargetInstancesScopedListWarning(o.warning); | 5727 checkTargetInstancesScopedListWarning(o.warning); |
| 5728 } | 5728 } |
| 5729 buildCounterTargetInstancesScopedList--; | 5729 buildCounterTargetInstancesScopedList--; |
| 5730 } | 5730 } |
| 5731 | 5731 |
| 5732 buildUnnamed2156() { | 5732 buildUnnamed2473() { |
| 5733 var o = new core.List<core.String>(); | 5733 var o = new core.List<core.String>(); |
| 5734 o.add("foo"); | 5734 o.add("foo"); |
| 5735 o.add("foo"); | 5735 o.add("foo"); |
| 5736 return o; | 5736 return o; |
| 5737 } | 5737 } |
| 5738 | 5738 |
| 5739 checkUnnamed2156(core.List<core.String> o) { | 5739 checkUnnamed2473(core.List<core.String> o) { |
| 5740 unittest.expect(o, unittest.hasLength(2)); | 5740 unittest.expect(o, unittest.hasLength(2)); |
| 5741 unittest.expect(o[0], unittest.equals('foo')); | 5741 unittest.expect(o[0], unittest.equals('foo')); |
| 5742 unittest.expect(o[1], unittest.equals('foo')); | 5742 unittest.expect(o[1], unittest.equals('foo')); |
| 5743 } | 5743 } |
| 5744 | 5744 |
| 5745 buildUnnamed2157() { | 5745 buildUnnamed2474() { |
| 5746 var o = new core.List<core.String>(); | 5746 var o = new core.List<core.String>(); |
| 5747 o.add("foo"); | 5747 o.add("foo"); |
| 5748 o.add("foo"); | 5748 o.add("foo"); |
| 5749 return o; | 5749 return o; |
| 5750 } | 5750 } |
| 5751 | 5751 |
| 5752 checkUnnamed2157(core.List<core.String> o) { | 5752 checkUnnamed2474(core.List<core.String> o) { |
| 5753 unittest.expect(o, unittest.hasLength(2)); | 5753 unittest.expect(o, unittest.hasLength(2)); |
| 5754 unittest.expect(o[0], unittest.equals('foo')); | 5754 unittest.expect(o[0], unittest.equals('foo')); |
| 5755 unittest.expect(o[1], unittest.equals('foo')); | 5755 unittest.expect(o[1], unittest.equals('foo')); |
| 5756 } | 5756 } |
| 5757 | 5757 |
| 5758 core.int buildCounterTargetPool = 0; | 5758 core.int buildCounterTargetPool = 0; |
| 5759 buildTargetPool() { | 5759 buildTargetPool() { |
| 5760 var o = new api.TargetPool(); | 5760 var o = new api.TargetPool(); |
| 5761 buildCounterTargetPool++; | 5761 buildCounterTargetPool++; |
| 5762 if (buildCounterTargetPool < 3) { | 5762 if (buildCounterTargetPool < 3) { |
| 5763 o.backupPool = "foo"; | 5763 o.backupPool = "foo"; |
| 5764 o.creationTimestamp = "foo"; | 5764 o.creationTimestamp = "foo"; |
| 5765 o.description = "foo"; | 5765 o.description = "foo"; |
| 5766 o.failoverRatio = 42.0; | 5766 o.failoverRatio = 42.0; |
| 5767 o.healthChecks = buildUnnamed2156(); | 5767 o.healthChecks = buildUnnamed2473(); |
| 5768 o.id = "foo"; | 5768 o.id = "foo"; |
| 5769 o.instances = buildUnnamed2157(); | 5769 o.instances = buildUnnamed2474(); |
| 5770 o.kind = "foo"; | 5770 o.kind = "foo"; |
| 5771 o.name = "foo"; | 5771 o.name = "foo"; |
| 5772 o.region = "foo"; | 5772 o.region = "foo"; |
| 5773 o.selfLink = "foo"; | 5773 o.selfLink = "foo"; |
| 5774 o.sessionAffinity = "foo"; | 5774 o.sessionAffinity = "foo"; |
| 5775 } | 5775 } |
| 5776 buildCounterTargetPool--; | 5776 buildCounterTargetPool--; |
| 5777 return o; | 5777 return o; |
| 5778 } | 5778 } |
| 5779 | 5779 |
| 5780 checkTargetPool(api.TargetPool o) { | 5780 checkTargetPool(api.TargetPool o) { |
| 5781 buildCounterTargetPool++; | 5781 buildCounterTargetPool++; |
| 5782 if (buildCounterTargetPool < 3) { | 5782 if (buildCounterTargetPool < 3) { |
| 5783 unittest.expect(o.backupPool, unittest.equals('foo')); | 5783 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 5784 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5784 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5785 unittest.expect(o.description, unittest.equals('foo')); | 5785 unittest.expect(o.description, unittest.equals('foo')); |
| 5786 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 5786 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 5787 checkUnnamed2156(o.healthChecks); | 5787 checkUnnamed2473(o.healthChecks); |
| 5788 unittest.expect(o.id, unittest.equals('foo')); | 5788 unittest.expect(o.id, unittest.equals('foo')); |
| 5789 checkUnnamed2157(o.instances); | 5789 checkUnnamed2474(o.instances); |
| 5790 unittest.expect(o.kind, unittest.equals('foo')); | 5790 unittest.expect(o.kind, unittest.equals('foo')); |
| 5791 unittest.expect(o.name, unittest.equals('foo')); | 5791 unittest.expect(o.name, unittest.equals('foo')); |
| 5792 unittest.expect(o.region, unittest.equals('foo')); | 5792 unittest.expect(o.region, unittest.equals('foo')); |
| 5793 unittest.expect(o.selfLink, unittest.equals('foo')); | 5793 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5794 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 5794 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 5795 } | 5795 } |
| 5796 buildCounterTargetPool--; | 5796 buildCounterTargetPool--; |
| 5797 } | 5797 } |
| 5798 | 5798 |
| 5799 buildUnnamed2158() { | 5799 buildUnnamed2475() { |
| 5800 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 5800 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 5801 o["x"] = buildTargetPoolsScopedList(); | 5801 o["x"] = buildTargetPoolsScopedList(); |
| 5802 o["y"] = buildTargetPoolsScopedList(); | 5802 o["y"] = buildTargetPoolsScopedList(); |
| 5803 return o; | 5803 return o; |
| 5804 } | 5804 } |
| 5805 | 5805 |
| 5806 checkUnnamed2158(core.Map<core.String, api.TargetPoolsScopedList> o) { | 5806 checkUnnamed2475(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 5807 unittest.expect(o, unittest.hasLength(2)); | 5807 unittest.expect(o, unittest.hasLength(2)); |
| 5808 checkTargetPoolsScopedList(o["x"]); | 5808 checkTargetPoolsScopedList(o["x"]); |
| 5809 checkTargetPoolsScopedList(o["y"]); | 5809 checkTargetPoolsScopedList(o["y"]); |
| 5810 } | 5810 } |
| 5811 | 5811 |
| 5812 core.int buildCounterTargetPoolAggregatedList = 0; | 5812 core.int buildCounterTargetPoolAggregatedList = 0; |
| 5813 buildTargetPoolAggregatedList() { | 5813 buildTargetPoolAggregatedList() { |
| 5814 var o = new api.TargetPoolAggregatedList(); | 5814 var o = new api.TargetPoolAggregatedList(); |
| 5815 buildCounterTargetPoolAggregatedList++; | 5815 buildCounterTargetPoolAggregatedList++; |
| 5816 if (buildCounterTargetPoolAggregatedList < 3) { | 5816 if (buildCounterTargetPoolAggregatedList < 3) { |
| 5817 o.id = "foo"; | 5817 o.id = "foo"; |
| 5818 o.items = buildUnnamed2158(); | 5818 o.items = buildUnnamed2475(); |
| 5819 o.kind = "foo"; | 5819 o.kind = "foo"; |
| 5820 o.nextPageToken = "foo"; | 5820 o.nextPageToken = "foo"; |
| 5821 o.selfLink = "foo"; | 5821 o.selfLink = "foo"; |
| 5822 } | 5822 } |
| 5823 buildCounterTargetPoolAggregatedList--; | 5823 buildCounterTargetPoolAggregatedList--; |
| 5824 return o; | 5824 return o; |
| 5825 } | 5825 } |
| 5826 | 5826 |
| 5827 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 5827 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 5828 buildCounterTargetPoolAggregatedList++; | 5828 buildCounterTargetPoolAggregatedList++; |
| 5829 if (buildCounterTargetPoolAggregatedList < 3) { | 5829 if (buildCounterTargetPoolAggregatedList < 3) { |
| 5830 unittest.expect(o.id, unittest.equals('foo')); | 5830 unittest.expect(o.id, unittest.equals('foo')); |
| 5831 checkUnnamed2158(o.items); | 5831 checkUnnamed2475(o.items); |
| 5832 unittest.expect(o.kind, unittest.equals('foo')); | 5832 unittest.expect(o.kind, unittest.equals('foo')); |
| 5833 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5833 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5834 unittest.expect(o.selfLink, unittest.equals('foo')); | 5834 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5835 } | 5835 } |
| 5836 buildCounterTargetPoolAggregatedList--; | 5836 buildCounterTargetPoolAggregatedList--; |
| 5837 } | 5837 } |
| 5838 | 5838 |
| 5839 buildUnnamed2159() { | 5839 buildUnnamed2476() { |
| 5840 var o = new core.List<api.HealthStatus>(); | 5840 var o = new core.List<api.HealthStatus>(); |
| 5841 o.add(buildHealthStatus()); | 5841 o.add(buildHealthStatus()); |
| 5842 o.add(buildHealthStatus()); | 5842 o.add(buildHealthStatus()); |
| 5843 return o; | 5843 return o; |
| 5844 } | 5844 } |
| 5845 | 5845 |
| 5846 checkUnnamed2159(core.List<api.HealthStatus> o) { | 5846 checkUnnamed2476(core.List<api.HealthStatus> o) { |
| 5847 unittest.expect(o, unittest.hasLength(2)); | 5847 unittest.expect(o, unittest.hasLength(2)); |
| 5848 checkHealthStatus(o[0]); | 5848 checkHealthStatus(o[0]); |
| 5849 checkHealthStatus(o[1]); | 5849 checkHealthStatus(o[1]); |
| 5850 } | 5850 } |
| 5851 | 5851 |
| 5852 core.int buildCounterTargetPoolInstanceHealth = 0; | 5852 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 5853 buildTargetPoolInstanceHealth() { | 5853 buildTargetPoolInstanceHealth() { |
| 5854 var o = new api.TargetPoolInstanceHealth(); | 5854 var o = new api.TargetPoolInstanceHealth(); |
| 5855 buildCounterTargetPoolInstanceHealth++; | 5855 buildCounterTargetPoolInstanceHealth++; |
| 5856 if (buildCounterTargetPoolInstanceHealth < 3) { | 5856 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 5857 o.healthStatus = buildUnnamed2159(); | 5857 o.healthStatus = buildUnnamed2476(); |
| 5858 o.kind = "foo"; | 5858 o.kind = "foo"; |
| 5859 } | 5859 } |
| 5860 buildCounterTargetPoolInstanceHealth--; | 5860 buildCounterTargetPoolInstanceHealth--; |
| 5861 return o; | 5861 return o; |
| 5862 } | 5862 } |
| 5863 | 5863 |
| 5864 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 5864 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 5865 buildCounterTargetPoolInstanceHealth++; | 5865 buildCounterTargetPoolInstanceHealth++; |
| 5866 if (buildCounterTargetPoolInstanceHealth < 3) { | 5866 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 5867 checkUnnamed2159(o.healthStatus); | 5867 checkUnnamed2476(o.healthStatus); |
| 5868 unittest.expect(o.kind, unittest.equals('foo')); | 5868 unittest.expect(o.kind, unittest.equals('foo')); |
| 5869 } | 5869 } |
| 5870 buildCounterTargetPoolInstanceHealth--; | 5870 buildCounterTargetPoolInstanceHealth--; |
| 5871 } | 5871 } |
| 5872 | 5872 |
| 5873 buildUnnamed2160() { | 5873 buildUnnamed2477() { |
| 5874 var o = new core.List<api.TargetPool>(); | 5874 var o = new core.List<api.TargetPool>(); |
| 5875 o.add(buildTargetPool()); | 5875 o.add(buildTargetPool()); |
| 5876 o.add(buildTargetPool()); | 5876 o.add(buildTargetPool()); |
| 5877 return o; | 5877 return o; |
| 5878 } | 5878 } |
| 5879 | 5879 |
| 5880 checkUnnamed2160(core.List<api.TargetPool> o) { | 5880 checkUnnamed2477(core.List<api.TargetPool> o) { |
| 5881 unittest.expect(o, unittest.hasLength(2)); | 5881 unittest.expect(o, unittest.hasLength(2)); |
| 5882 checkTargetPool(o[0]); | 5882 checkTargetPool(o[0]); |
| 5883 checkTargetPool(o[1]); | 5883 checkTargetPool(o[1]); |
| 5884 } | 5884 } |
| 5885 | 5885 |
| 5886 core.int buildCounterTargetPoolList = 0; | 5886 core.int buildCounterTargetPoolList = 0; |
| 5887 buildTargetPoolList() { | 5887 buildTargetPoolList() { |
| 5888 var o = new api.TargetPoolList(); | 5888 var o = new api.TargetPoolList(); |
| 5889 buildCounterTargetPoolList++; | 5889 buildCounterTargetPoolList++; |
| 5890 if (buildCounterTargetPoolList < 3) { | 5890 if (buildCounterTargetPoolList < 3) { |
| 5891 o.id = "foo"; | 5891 o.id = "foo"; |
| 5892 o.items = buildUnnamed2160(); | 5892 o.items = buildUnnamed2477(); |
| 5893 o.kind = "foo"; | 5893 o.kind = "foo"; |
| 5894 o.nextPageToken = "foo"; | 5894 o.nextPageToken = "foo"; |
| 5895 o.selfLink = "foo"; | 5895 o.selfLink = "foo"; |
| 5896 } | 5896 } |
| 5897 buildCounterTargetPoolList--; | 5897 buildCounterTargetPoolList--; |
| 5898 return o; | 5898 return o; |
| 5899 } | 5899 } |
| 5900 | 5900 |
| 5901 checkTargetPoolList(api.TargetPoolList o) { | 5901 checkTargetPoolList(api.TargetPoolList o) { |
| 5902 buildCounterTargetPoolList++; | 5902 buildCounterTargetPoolList++; |
| 5903 if (buildCounterTargetPoolList < 3) { | 5903 if (buildCounterTargetPoolList < 3) { |
| 5904 unittest.expect(o.id, unittest.equals('foo')); | 5904 unittest.expect(o.id, unittest.equals('foo')); |
| 5905 checkUnnamed2160(o.items); | 5905 checkUnnamed2477(o.items); |
| 5906 unittest.expect(o.kind, unittest.equals('foo')); | 5906 unittest.expect(o.kind, unittest.equals('foo')); |
| 5907 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5907 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5908 unittest.expect(o.selfLink, unittest.equals('foo')); | 5908 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5909 } | 5909 } |
| 5910 buildCounterTargetPoolList--; | 5910 buildCounterTargetPoolList--; |
| 5911 } | 5911 } |
| 5912 | 5912 |
| 5913 buildUnnamed2161() { | 5913 buildUnnamed2478() { |
| 5914 var o = new core.List<api.HealthCheckReference>(); | 5914 var o = new core.List<api.HealthCheckReference>(); |
| 5915 o.add(buildHealthCheckReference()); | 5915 o.add(buildHealthCheckReference()); |
| 5916 o.add(buildHealthCheckReference()); | 5916 o.add(buildHealthCheckReference()); |
| 5917 return o; | 5917 return o; |
| 5918 } | 5918 } |
| 5919 | 5919 |
| 5920 checkUnnamed2161(core.List<api.HealthCheckReference> o) { | 5920 checkUnnamed2478(core.List<api.HealthCheckReference> o) { |
| 5921 unittest.expect(o, unittest.hasLength(2)); | 5921 unittest.expect(o, unittest.hasLength(2)); |
| 5922 checkHealthCheckReference(o[0]); | 5922 checkHealthCheckReference(o[0]); |
| 5923 checkHealthCheckReference(o[1]); | 5923 checkHealthCheckReference(o[1]); |
| 5924 } | 5924 } |
| 5925 | 5925 |
| 5926 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 5926 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 5927 buildTargetPoolsAddHealthCheckRequest() { | 5927 buildTargetPoolsAddHealthCheckRequest() { |
| 5928 var o = new api.TargetPoolsAddHealthCheckRequest(); | 5928 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 5929 buildCounterTargetPoolsAddHealthCheckRequest++; | 5929 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 5930 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 5930 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 5931 o.healthChecks = buildUnnamed2161(); | 5931 o.healthChecks = buildUnnamed2478(); |
| 5932 } | 5932 } |
| 5933 buildCounterTargetPoolsAddHealthCheckRequest--; | 5933 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 5934 return o; | 5934 return o; |
| 5935 } | 5935 } |
| 5936 | 5936 |
| 5937 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 5937 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 5938 buildCounterTargetPoolsAddHealthCheckRequest++; | 5938 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 5939 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 5939 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 5940 checkUnnamed2161(o.healthChecks); | 5940 checkUnnamed2478(o.healthChecks); |
| 5941 } | 5941 } |
| 5942 buildCounterTargetPoolsAddHealthCheckRequest--; | 5942 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 5943 } | 5943 } |
| 5944 | 5944 |
| 5945 buildUnnamed2162() { | 5945 buildUnnamed2479() { |
| 5946 var o = new core.List<api.InstanceReference>(); | 5946 var o = new core.List<api.InstanceReference>(); |
| 5947 o.add(buildInstanceReference()); | 5947 o.add(buildInstanceReference()); |
| 5948 o.add(buildInstanceReference()); | 5948 o.add(buildInstanceReference()); |
| 5949 return o; | 5949 return o; |
| 5950 } | 5950 } |
| 5951 | 5951 |
| 5952 checkUnnamed2162(core.List<api.InstanceReference> o) { | 5952 checkUnnamed2479(core.List<api.InstanceReference> o) { |
| 5953 unittest.expect(o, unittest.hasLength(2)); | 5953 unittest.expect(o, unittest.hasLength(2)); |
| 5954 checkInstanceReference(o[0]); | 5954 checkInstanceReference(o[0]); |
| 5955 checkInstanceReference(o[1]); | 5955 checkInstanceReference(o[1]); |
| 5956 } | 5956 } |
| 5957 | 5957 |
| 5958 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 5958 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 5959 buildTargetPoolsAddInstanceRequest() { | 5959 buildTargetPoolsAddInstanceRequest() { |
| 5960 var o = new api.TargetPoolsAddInstanceRequest(); | 5960 var o = new api.TargetPoolsAddInstanceRequest(); |
| 5961 buildCounterTargetPoolsAddInstanceRequest++; | 5961 buildCounterTargetPoolsAddInstanceRequest++; |
| 5962 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 5962 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 5963 o.instances = buildUnnamed2162(); | 5963 o.instances = buildUnnamed2479(); |
| 5964 } | 5964 } |
| 5965 buildCounterTargetPoolsAddInstanceRequest--; | 5965 buildCounterTargetPoolsAddInstanceRequest--; |
| 5966 return o; | 5966 return o; |
| 5967 } | 5967 } |
| 5968 | 5968 |
| 5969 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 5969 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 5970 buildCounterTargetPoolsAddInstanceRequest++; | 5970 buildCounterTargetPoolsAddInstanceRequest++; |
| 5971 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 5971 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 5972 checkUnnamed2162(o.instances); | 5972 checkUnnamed2479(o.instances); |
| 5973 } | 5973 } |
| 5974 buildCounterTargetPoolsAddInstanceRequest--; | 5974 buildCounterTargetPoolsAddInstanceRequest--; |
| 5975 } | 5975 } |
| 5976 | 5976 |
| 5977 buildUnnamed2163() { | 5977 buildUnnamed2480() { |
| 5978 var o = new core.List<api.HealthCheckReference>(); | 5978 var o = new core.List<api.HealthCheckReference>(); |
| 5979 o.add(buildHealthCheckReference()); | 5979 o.add(buildHealthCheckReference()); |
| 5980 o.add(buildHealthCheckReference()); | 5980 o.add(buildHealthCheckReference()); |
| 5981 return o; | 5981 return o; |
| 5982 } | 5982 } |
| 5983 | 5983 |
| 5984 checkUnnamed2163(core.List<api.HealthCheckReference> o) { | 5984 checkUnnamed2480(core.List<api.HealthCheckReference> o) { |
| 5985 unittest.expect(o, unittest.hasLength(2)); | 5985 unittest.expect(o, unittest.hasLength(2)); |
| 5986 checkHealthCheckReference(o[0]); | 5986 checkHealthCheckReference(o[0]); |
| 5987 checkHealthCheckReference(o[1]); | 5987 checkHealthCheckReference(o[1]); |
| 5988 } | 5988 } |
| 5989 | 5989 |
| 5990 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 5990 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 5991 buildTargetPoolsRemoveHealthCheckRequest() { | 5991 buildTargetPoolsRemoveHealthCheckRequest() { |
| 5992 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 5992 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 5993 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 5993 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 5994 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 5994 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 5995 o.healthChecks = buildUnnamed2163(); | 5995 o.healthChecks = buildUnnamed2480(); |
| 5996 } | 5996 } |
| 5997 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 5997 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 5998 return o; | 5998 return o; |
| 5999 } | 5999 } |
| 6000 | 6000 |
| 6001 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 6001 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 6002 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 6002 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 6003 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 6003 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 6004 checkUnnamed2163(o.healthChecks); | 6004 checkUnnamed2480(o.healthChecks); |
| 6005 } | 6005 } |
| 6006 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 6006 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 6007 } | 6007 } |
| 6008 | 6008 |
| 6009 buildUnnamed2164() { | 6009 buildUnnamed2481() { |
| 6010 var o = new core.List<api.InstanceReference>(); | 6010 var o = new core.List<api.InstanceReference>(); |
| 6011 o.add(buildInstanceReference()); | 6011 o.add(buildInstanceReference()); |
| 6012 o.add(buildInstanceReference()); | 6012 o.add(buildInstanceReference()); |
| 6013 return o; | 6013 return o; |
| 6014 } | 6014 } |
| 6015 | 6015 |
| 6016 checkUnnamed2164(core.List<api.InstanceReference> o) { | 6016 checkUnnamed2481(core.List<api.InstanceReference> o) { |
| 6017 unittest.expect(o, unittest.hasLength(2)); | 6017 unittest.expect(o, unittest.hasLength(2)); |
| 6018 checkInstanceReference(o[0]); | 6018 checkInstanceReference(o[0]); |
| 6019 checkInstanceReference(o[1]); | 6019 checkInstanceReference(o[1]); |
| 6020 } | 6020 } |
| 6021 | 6021 |
| 6022 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 6022 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 6023 buildTargetPoolsRemoveInstanceRequest() { | 6023 buildTargetPoolsRemoveInstanceRequest() { |
| 6024 var o = new api.TargetPoolsRemoveInstanceRequest(); | 6024 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 6025 buildCounterTargetPoolsRemoveInstanceRequest++; | 6025 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6026 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6026 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6027 o.instances = buildUnnamed2164(); | 6027 o.instances = buildUnnamed2481(); |
| 6028 } | 6028 } |
| 6029 buildCounterTargetPoolsRemoveInstanceRequest--; | 6029 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6030 return o; | 6030 return o; |
| 6031 } | 6031 } |
| 6032 | 6032 |
| 6033 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 6033 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 6034 buildCounterTargetPoolsRemoveInstanceRequest++; | 6034 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6035 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6035 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6036 checkUnnamed2164(o.instances); | 6036 checkUnnamed2481(o.instances); |
| 6037 } | 6037 } |
| 6038 buildCounterTargetPoolsRemoveInstanceRequest--; | 6038 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6039 } | 6039 } |
| 6040 | 6040 |
| 6041 buildUnnamed2165() { | 6041 buildUnnamed2482() { |
| 6042 var o = new core.List<api.TargetPool>(); | 6042 var o = new core.List<api.TargetPool>(); |
| 6043 o.add(buildTargetPool()); | 6043 o.add(buildTargetPool()); |
| 6044 o.add(buildTargetPool()); | 6044 o.add(buildTargetPool()); |
| 6045 return o; | 6045 return o; |
| 6046 } | 6046 } |
| 6047 | 6047 |
| 6048 checkUnnamed2165(core.List<api.TargetPool> o) { | 6048 checkUnnamed2482(core.List<api.TargetPool> o) { |
| 6049 unittest.expect(o, unittest.hasLength(2)); | 6049 unittest.expect(o, unittest.hasLength(2)); |
| 6050 checkTargetPool(o[0]); | 6050 checkTargetPool(o[0]); |
| 6051 checkTargetPool(o[1]); | 6051 checkTargetPool(o[1]); |
| 6052 } | 6052 } |
| 6053 | 6053 |
| 6054 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 6054 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 6055 buildTargetPoolsScopedListWarningData() { | 6055 buildTargetPoolsScopedListWarningData() { |
| 6056 var o = new api.TargetPoolsScopedListWarningData(); | 6056 var o = new api.TargetPoolsScopedListWarningData(); |
| 6057 buildCounterTargetPoolsScopedListWarningData++; | 6057 buildCounterTargetPoolsScopedListWarningData++; |
| 6058 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6058 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6059 o.key = "foo"; | 6059 o.key = "foo"; |
| 6060 o.value = "foo"; | 6060 o.value = "foo"; |
| 6061 } | 6061 } |
| 6062 buildCounterTargetPoolsScopedListWarningData--; | 6062 buildCounterTargetPoolsScopedListWarningData--; |
| 6063 return o; | 6063 return o; |
| 6064 } | 6064 } |
| 6065 | 6065 |
| 6066 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 6066 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 6067 buildCounterTargetPoolsScopedListWarningData++; | 6067 buildCounterTargetPoolsScopedListWarningData++; |
| 6068 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6068 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6069 unittest.expect(o.key, unittest.equals('foo')); | 6069 unittest.expect(o.key, unittest.equals('foo')); |
| 6070 unittest.expect(o.value, unittest.equals('foo')); | 6070 unittest.expect(o.value, unittest.equals('foo')); |
| 6071 } | 6071 } |
| 6072 buildCounterTargetPoolsScopedListWarningData--; | 6072 buildCounterTargetPoolsScopedListWarningData--; |
| 6073 } | 6073 } |
| 6074 | 6074 |
| 6075 buildUnnamed2166() { | 6075 buildUnnamed2483() { |
| 6076 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 6076 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 6077 o.add(buildTargetPoolsScopedListWarningData()); | 6077 o.add(buildTargetPoolsScopedListWarningData()); |
| 6078 o.add(buildTargetPoolsScopedListWarningData()); | 6078 o.add(buildTargetPoolsScopedListWarningData()); |
| 6079 return o; | 6079 return o; |
| 6080 } | 6080 } |
| 6081 | 6081 |
| 6082 checkUnnamed2166(core.List<api.TargetPoolsScopedListWarningData> o) { | 6082 checkUnnamed2483(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 6083 unittest.expect(o, unittest.hasLength(2)); | 6083 unittest.expect(o, unittest.hasLength(2)); |
| 6084 checkTargetPoolsScopedListWarningData(o[0]); | 6084 checkTargetPoolsScopedListWarningData(o[0]); |
| 6085 checkTargetPoolsScopedListWarningData(o[1]); | 6085 checkTargetPoolsScopedListWarningData(o[1]); |
| 6086 } | 6086 } |
| 6087 | 6087 |
| 6088 core.int buildCounterTargetPoolsScopedListWarning = 0; | 6088 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 6089 buildTargetPoolsScopedListWarning() { | 6089 buildTargetPoolsScopedListWarning() { |
| 6090 var o = new api.TargetPoolsScopedListWarning(); | 6090 var o = new api.TargetPoolsScopedListWarning(); |
| 6091 buildCounterTargetPoolsScopedListWarning++; | 6091 buildCounterTargetPoolsScopedListWarning++; |
| 6092 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6092 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6093 o.code = "foo"; | 6093 o.code = "foo"; |
| 6094 o.data = buildUnnamed2166(); | 6094 o.data = buildUnnamed2483(); |
| 6095 o.message = "foo"; | 6095 o.message = "foo"; |
| 6096 } | 6096 } |
| 6097 buildCounterTargetPoolsScopedListWarning--; | 6097 buildCounterTargetPoolsScopedListWarning--; |
| 6098 return o; | 6098 return o; |
| 6099 } | 6099 } |
| 6100 | 6100 |
| 6101 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 6101 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 6102 buildCounterTargetPoolsScopedListWarning++; | 6102 buildCounterTargetPoolsScopedListWarning++; |
| 6103 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6103 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6104 unittest.expect(o.code, unittest.equals('foo')); | 6104 unittest.expect(o.code, unittest.equals('foo')); |
| 6105 checkUnnamed2166(o.data); | 6105 checkUnnamed2483(o.data); |
| 6106 unittest.expect(o.message, unittest.equals('foo')); | 6106 unittest.expect(o.message, unittest.equals('foo')); |
| 6107 } | 6107 } |
| 6108 buildCounterTargetPoolsScopedListWarning--; | 6108 buildCounterTargetPoolsScopedListWarning--; |
| 6109 } | 6109 } |
| 6110 | 6110 |
| 6111 core.int buildCounterTargetPoolsScopedList = 0; | 6111 core.int buildCounterTargetPoolsScopedList = 0; |
| 6112 buildTargetPoolsScopedList() { | 6112 buildTargetPoolsScopedList() { |
| 6113 var o = new api.TargetPoolsScopedList(); | 6113 var o = new api.TargetPoolsScopedList(); |
| 6114 buildCounterTargetPoolsScopedList++; | 6114 buildCounterTargetPoolsScopedList++; |
| 6115 if (buildCounterTargetPoolsScopedList < 3) { | 6115 if (buildCounterTargetPoolsScopedList < 3) { |
| 6116 o.targetPools = buildUnnamed2165(); | 6116 o.targetPools = buildUnnamed2482(); |
| 6117 o.warning = buildTargetPoolsScopedListWarning(); | 6117 o.warning = buildTargetPoolsScopedListWarning(); |
| 6118 } | 6118 } |
| 6119 buildCounterTargetPoolsScopedList--; | 6119 buildCounterTargetPoolsScopedList--; |
| 6120 return o; | 6120 return o; |
| 6121 } | 6121 } |
| 6122 | 6122 |
| 6123 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 6123 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 6124 buildCounterTargetPoolsScopedList++; | 6124 buildCounterTargetPoolsScopedList++; |
| 6125 if (buildCounterTargetPoolsScopedList < 3) { | 6125 if (buildCounterTargetPoolsScopedList < 3) { |
| 6126 checkUnnamed2165(o.targetPools); | 6126 checkUnnamed2482(o.targetPools); |
| 6127 checkTargetPoolsScopedListWarning(o.warning); | 6127 checkTargetPoolsScopedListWarning(o.warning); |
| 6128 } | 6128 } |
| 6129 buildCounterTargetPoolsScopedList--; | 6129 buildCounterTargetPoolsScopedList--; |
| 6130 } | 6130 } |
| 6131 | 6131 |
| 6132 core.int buildCounterTargetReference = 0; | 6132 core.int buildCounterTargetReference = 0; |
| 6133 buildTargetReference() { | 6133 buildTargetReference() { |
| 6134 var o = new api.TargetReference(); | 6134 var o = new api.TargetReference(); |
| 6135 buildCounterTargetReference++; | 6135 buildCounterTargetReference++; |
| 6136 if (buildCounterTargetReference < 3) { | 6136 if (buildCounterTargetReference < 3) { |
| 6137 o.target = "foo"; | 6137 o.target = "foo"; |
| 6138 } | 6138 } |
| 6139 buildCounterTargetReference--; | 6139 buildCounterTargetReference--; |
| 6140 return o; | 6140 return o; |
| 6141 } | 6141 } |
| 6142 | 6142 |
| 6143 checkTargetReference(api.TargetReference o) { | 6143 checkTargetReference(api.TargetReference o) { |
| 6144 buildCounterTargetReference++; | 6144 buildCounterTargetReference++; |
| 6145 if (buildCounterTargetReference < 3) { | 6145 if (buildCounterTargetReference < 3) { |
| 6146 unittest.expect(o.target, unittest.equals('foo')); | 6146 unittest.expect(o.target, unittest.equals('foo')); |
| 6147 } | 6147 } |
| 6148 buildCounterTargetReference--; | 6148 buildCounterTargetReference--; |
| 6149 } | 6149 } |
| 6150 | 6150 |
| 6151 buildUnnamed2167() { | 6151 buildUnnamed2484() { |
| 6152 var o = new core.List<core.String>(); | 6152 var o = new core.List<core.String>(); |
| 6153 o.add("foo"); | 6153 o.add("foo"); |
| 6154 o.add("foo"); | 6154 o.add("foo"); |
| 6155 return o; | 6155 return o; |
| 6156 } | 6156 } |
| 6157 | 6157 |
| 6158 checkUnnamed2167(core.List<core.String> o) { | 6158 checkUnnamed2484(core.List<core.String> o) { |
| 6159 unittest.expect(o, unittest.hasLength(2)); | 6159 unittest.expect(o, unittest.hasLength(2)); |
| 6160 unittest.expect(o[0], unittest.equals('foo')); | 6160 unittest.expect(o[0], unittest.equals('foo')); |
| 6161 unittest.expect(o[1], unittest.equals('foo')); | 6161 unittest.expect(o[1], unittest.equals('foo')); |
| 6162 } | 6162 } |
| 6163 | 6163 |
| 6164 buildUnnamed2168() { | 6164 buildUnnamed2485() { |
| 6165 var o = new core.List<core.String>(); | 6165 var o = new core.List<core.String>(); |
| 6166 o.add("foo"); | 6166 o.add("foo"); |
| 6167 o.add("foo"); | 6167 o.add("foo"); |
| 6168 return o; | 6168 return o; |
| 6169 } | 6169 } |
| 6170 | 6170 |
| 6171 checkUnnamed2168(core.List<core.String> o) { | 6171 checkUnnamed2485(core.List<core.String> o) { |
| 6172 unittest.expect(o, unittest.hasLength(2)); | 6172 unittest.expect(o, unittest.hasLength(2)); |
| 6173 unittest.expect(o[0], unittest.equals('foo')); | 6173 unittest.expect(o[0], unittest.equals('foo')); |
| 6174 unittest.expect(o[1], unittest.equals('foo')); | 6174 unittest.expect(o[1], unittest.equals('foo')); |
| 6175 } | 6175 } |
| 6176 | 6176 |
| 6177 core.int buildCounterTargetVpnGateway = 0; | 6177 core.int buildCounterTargetVpnGateway = 0; |
| 6178 buildTargetVpnGateway() { | 6178 buildTargetVpnGateway() { |
| 6179 var o = new api.TargetVpnGateway(); | 6179 var o = new api.TargetVpnGateway(); |
| 6180 buildCounterTargetVpnGateway++; | 6180 buildCounterTargetVpnGateway++; |
| 6181 if (buildCounterTargetVpnGateway < 3) { | 6181 if (buildCounterTargetVpnGateway < 3) { |
| 6182 o.creationTimestamp = "foo"; | 6182 o.creationTimestamp = "foo"; |
| 6183 o.description = "foo"; | 6183 o.description = "foo"; |
| 6184 o.forwardingRules = buildUnnamed2167(); | 6184 o.forwardingRules = buildUnnamed2484(); |
| 6185 o.id = "foo"; | 6185 o.id = "foo"; |
| 6186 o.kind = "foo"; | 6186 o.kind = "foo"; |
| 6187 o.name = "foo"; | 6187 o.name = "foo"; |
| 6188 o.network = "foo"; | 6188 o.network = "foo"; |
| 6189 o.region = "foo"; | 6189 o.region = "foo"; |
| 6190 o.selfLink = "foo"; | 6190 o.selfLink = "foo"; |
| 6191 o.status = "foo"; | 6191 o.status = "foo"; |
| 6192 o.tunnels = buildUnnamed2168(); | 6192 o.tunnels = buildUnnamed2485(); |
| 6193 } | 6193 } |
| 6194 buildCounterTargetVpnGateway--; | 6194 buildCounterTargetVpnGateway--; |
| 6195 return o; | 6195 return o; |
| 6196 } | 6196 } |
| 6197 | 6197 |
| 6198 checkTargetVpnGateway(api.TargetVpnGateway o) { | 6198 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 6199 buildCounterTargetVpnGateway++; | 6199 buildCounterTargetVpnGateway++; |
| 6200 if (buildCounterTargetVpnGateway < 3) { | 6200 if (buildCounterTargetVpnGateway < 3) { |
| 6201 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6201 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6202 unittest.expect(o.description, unittest.equals('foo')); | 6202 unittest.expect(o.description, unittest.equals('foo')); |
| 6203 checkUnnamed2167(o.forwardingRules); | 6203 checkUnnamed2484(o.forwardingRules); |
| 6204 unittest.expect(o.id, unittest.equals('foo')); | 6204 unittest.expect(o.id, unittest.equals('foo')); |
| 6205 unittest.expect(o.kind, unittest.equals('foo')); | 6205 unittest.expect(o.kind, unittest.equals('foo')); |
| 6206 unittest.expect(o.name, unittest.equals('foo')); | 6206 unittest.expect(o.name, unittest.equals('foo')); |
| 6207 unittest.expect(o.network, unittest.equals('foo')); | 6207 unittest.expect(o.network, unittest.equals('foo')); |
| 6208 unittest.expect(o.region, unittest.equals('foo')); | 6208 unittest.expect(o.region, unittest.equals('foo')); |
| 6209 unittest.expect(o.selfLink, unittest.equals('foo')); | 6209 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6210 unittest.expect(o.status, unittest.equals('foo')); | 6210 unittest.expect(o.status, unittest.equals('foo')); |
| 6211 checkUnnamed2168(o.tunnels); | 6211 checkUnnamed2485(o.tunnels); |
| 6212 } | 6212 } |
| 6213 buildCounterTargetVpnGateway--; | 6213 buildCounterTargetVpnGateway--; |
| 6214 } | 6214 } |
| 6215 | 6215 |
| 6216 buildUnnamed2169() { | 6216 buildUnnamed2486() { |
| 6217 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 6217 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 6218 o["x"] = buildTargetVpnGatewaysScopedList(); | 6218 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 6219 o["y"] = buildTargetVpnGatewaysScopedList(); | 6219 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 6220 return o; | 6220 return o; |
| 6221 } | 6221 } |
| 6222 | 6222 |
| 6223 checkUnnamed2169(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 6223 checkUnnamed2486(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 6224 unittest.expect(o, unittest.hasLength(2)); | 6224 unittest.expect(o, unittest.hasLength(2)); |
| 6225 checkTargetVpnGatewaysScopedList(o["x"]); | 6225 checkTargetVpnGatewaysScopedList(o["x"]); |
| 6226 checkTargetVpnGatewaysScopedList(o["y"]); | 6226 checkTargetVpnGatewaysScopedList(o["y"]); |
| 6227 } | 6227 } |
| 6228 | 6228 |
| 6229 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 6229 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 6230 buildTargetVpnGatewayAggregatedList() { | 6230 buildTargetVpnGatewayAggregatedList() { |
| 6231 var o = new api.TargetVpnGatewayAggregatedList(); | 6231 var o = new api.TargetVpnGatewayAggregatedList(); |
| 6232 buildCounterTargetVpnGatewayAggregatedList++; | 6232 buildCounterTargetVpnGatewayAggregatedList++; |
| 6233 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6233 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6234 o.id = "foo"; | 6234 o.id = "foo"; |
| 6235 o.items = buildUnnamed2169(); | 6235 o.items = buildUnnamed2486(); |
| 6236 o.kind = "foo"; | 6236 o.kind = "foo"; |
| 6237 o.nextPageToken = "foo"; | 6237 o.nextPageToken = "foo"; |
| 6238 o.selfLink = "foo"; | 6238 o.selfLink = "foo"; |
| 6239 } | 6239 } |
| 6240 buildCounterTargetVpnGatewayAggregatedList--; | 6240 buildCounterTargetVpnGatewayAggregatedList--; |
| 6241 return o; | 6241 return o; |
| 6242 } | 6242 } |
| 6243 | 6243 |
| 6244 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 6244 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 6245 buildCounterTargetVpnGatewayAggregatedList++; | 6245 buildCounterTargetVpnGatewayAggregatedList++; |
| 6246 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6246 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6247 unittest.expect(o.id, unittest.equals('foo')); | 6247 unittest.expect(o.id, unittest.equals('foo')); |
| 6248 checkUnnamed2169(o.items); | 6248 checkUnnamed2486(o.items); |
| 6249 unittest.expect(o.kind, unittest.equals('foo')); | 6249 unittest.expect(o.kind, unittest.equals('foo')); |
| 6250 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6250 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6251 unittest.expect(o.selfLink, unittest.equals('foo')); | 6251 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6252 } | 6252 } |
| 6253 buildCounterTargetVpnGatewayAggregatedList--; | 6253 buildCounterTargetVpnGatewayAggregatedList--; |
| 6254 } | 6254 } |
| 6255 | 6255 |
| 6256 buildUnnamed2170() { | 6256 buildUnnamed2487() { |
| 6257 var o = new core.List<api.TargetVpnGateway>(); | 6257 var o = new core.List<api.TargetVpnGateway>(); |
| 6258 o.add(buildTargetVpnGateway()); | 6258 o.add(buildTargetVpnGateway()); |
| 6259 o.add(buildTargetVpnGateway()); | 6259 o.add(buildTargetVpnGateway()); |
| 6260 return o; | 6260 return o; |
| 6261 } | 6261 } |
| 6262 | 6262 |
| 6263 checkUnnamed2170(core.List<api.TargetVpnGateway> o) { | 6263 checkUnnamed2487(core.List<api.TargetVpnGateway> o) { |
| 6264 unittest.expect(o, unittest.hasLength(2)); | 6264 unittest.expect(o, unittest.hasLength(2)); |
| 6265 checkTargetVpnGateway(o[0]); | 6265 checkTargetVpnGateway(o[0]); |
| 6266 checkTargetVpnGateway(o[1]); | 6266 checkTargetVpnGateway(o[1]); |
| 6267 } | 6267 } |
| 6268 | 6268 |
| 6269 core.int buildCounterTargetVpnGatewayList = 0; | 6269 core.int buildCounterTargetVpnGatewayList = 0; |
| 6270 buildTargetVpnGatewayList() { | 6270 buildTargetVpnGatewayList() { |
| 6271 var o = new api.TargetVpnGatewayList(); | 6271 var o = new api.TargetVpnGatewayList(); |
| 6272 buildCounterTargetVpnGatewayList++; | 6272 buildCounterTargetVpnGatewayList++; |
| 6273 if (buildCounterTargetVpnGatewayList < 3) { | 6273 if (buildCounterTargetVpnGatewayList < 3) { |
| 6274 o.id = "foo"; | 6274 o.id = "foo"; |
| 6275 o.items = buildUnnamed2170(); | 6275 o.items = buildUnnamed2487(); |
| 6276 o.kind = "foo"; | 6276 o.kind = "foo"; |
| 6277 o.nextPageToken = "foo"; | 6277 o.nextPageToken = "foo"; |
| 6278 o.selfLink = "foo"; | 6278 o.selfLink = "foo"; |
| 6279 } | 6279 } |
| 6280 buildCounterTargetVpnGatewayList--; | 6280 buildCounterTargetVpnGatewayList--; |
| 6281 return o; | 6281 return o; |
| 6282 } | 6282 } |
| 6283 | 6283 |
| 6284 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 6284 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 6285 buildCounterTargetVpnGatewayList++; | 6285 buildCounterTargetVpnGatewayList++; |
| 6286 if (buildCounterTargetVpnGatewayList < 3) { | 6286 if (buildCounterTargetVpnGatewayList < 3) { |
| 6287 unittest.expect(o.id, unittest.equals('foo')); | 6287 unittest.expect(o.id, unittest.equals('foo')); |
| 6288 checkUnnamed2170(o.items); | 6288 checkUnnamed2487(o.items); |
| 6289 unittest.expect(o.kind, unittest.equals('foo')); | 6289 unittest.expect(o.kind, unittest.equals('foo')); |
| 6290 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6290 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6291 unittest.expect(o.selfLink, unittest.equals('foo')); | 6291 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6292 } | 6292 } |
| 6293 buildCounterTargetVpnGatewayList--; | 6293 buildCounterTargetVpnGatewayList--; |
| 6294 } | 6294 } |
| 6295 | 6295 |
| 6296 buildUnnamed2171() { | 6296 buildUnnamed2488() { |
| 6297 var o = new core.List<api.TargetVpnGateway>(); | 6297 var o = new core.List<api.TargetVpnGateway>(); |
| 6298 o.add(buildTargetVpnGateway()); | 6298 o.add(buildTargetVpnGateway()); |
| 6299 o.add(buildTargetVpnGateway()); | 6299 o.add(buildTargetVpnGateway()); |
| 6300 return o; | 6300 return o; |
| 6301 } | 6301 } |
| 6302 | 6302 |
| 6303 checkUnnamed2171(core.List<api.TargetVpnGateway> o) { | 6303 checkUnnamed2488(core.List<api.TargetVpnGateway> o) { |
| 6304 unittest.expect(o, unittest.hasLength(2)); | 6304 unittest.expect(o, unittest.hasLength(2)); |
| 6305 checkTargetVpnGateway(o[0]); | 6305 checkTargetVpnGateway(o[0]); |
| 6306 checkTargetVpnGateway(o[1]); | 6306 checkTargetVpnGateway(o[1]); |
| 6307 } | 6307 } |
| 6308 | 6308 |
| 6309 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 6309 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 6310 buildTargetVpnGatewaysScopedListWarningData() { | 6310 buildTargetVpnGatewaysScopedListWarningData() { |
| 6311 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 6311 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 6312 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6312 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6313 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6313 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6314 o.key = "foo"; | 6314 o.key = "foo"; |
| 6315 o.value = "foo"; | 6315 o.value = "foo"; |
| 6316 } | 6316 } |
| 6317 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6317 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6318 return o; | 6318 return o; |
| 6319 } | 6319 } |
| 6320 | 6320 |
| 6321 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 6321 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 6322 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6322 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6323 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6323 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6324 unittest.expect(o.key, unittest.equals('foo')); | 6324 unittest.expect(o.key, unittest.equals('foo')); |
| 6325 unittest.expect(o.value, unittest.equals('foo')); | 6325 unittest.expect(o.value, unittest.equals('foo')); |
| 6326 } | 6326 } |
| 6327 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6327 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6328 } | 6328 } |
| 6329 | 6329 |
| 6330 buildUnnamed2172() { | 6330 buildUnnamed2489() { |
| 6331 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 6331 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 6332 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6332 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6333 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6333 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6334 return o; | 6334 return o; |
| 6335 } | 6335 } |
| 6336 | 6336 |
| 6337 checkUnnamed2172(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 6337 checkUnnamed2489(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 6338 unittest.expect(o, unittest.hasLength(2)); | 6338 unittest.expect(o, unittest.hasLength(2)); |
| 6339 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 6339 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 6340 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 6340 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 6341 } | 6341 } |
| 6342 | 6342 |
| 6343 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 6343 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 6344 buildTargetVpnGatewaysScopedListWarning() { | 6344 buildTargetVpnGatewaysScopedListWarning() { |
| 6345 var o = new api.TargetVpnGatewaysScopedListWarning(); | 6345 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 6346 buildCounterTargetVpnGatewaysScopedListWarning++; | 6346 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6347 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6347 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6348 o.code = "foo"; | 6348 o.code = "foo"; |
| 6349 o.data = buildUnnamed2172(); | 6349 o.data = buildUnnamed2489(); |
| 6350 o.message = "foo"; | 6350 o.message = "foo"; |
| 6351 } | 6351 } |
| 6352 buildCounterTargetVpnGatewaysScopedListWarning--; | 6352 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6353 return o; | 6353 return o; |
| 6354 } | 6354 } |
| 6355 | 6355 |
| 6356 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 6356 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 6357 buildCounterTargetVpnGatewaysScopedListWarning++; | 6357 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6358 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6358 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6359 unittest.expect(o.code, unittest.equals('foo')); | 6359 unittest.expect(o.code, unittest.equals('foo')); |
| 6360 checkUnnamed2172(o.data); | 6360 checkUnnamed2489(o.data); |
| 6361 unittest.expect(o.message, unittest.equals('foo')); | 6361 unittest.expect(o.message, unittest.equals('foo')); |
| 6362 } | 6362 } |
| 6363 buildCounterTargetVpnGatewaysScopedListWarning--; | 6363 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6364 } | 6364 } |
| 6365 | 6365 |
| 6366 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 6366 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 6367 buildTargetVpnGatewaysScopedList() { | 6367 buildTargetVpnGatewaysScopedList() { |
| 6368 var o = new api.TargetVpnGatewaysScopedList(); | 6368 var o = new api.TargetVpnGatewaysScopedList(); |
| 6369 buildCounterTargetVpnGatewaysScopedList++; | 6369 buildCounterTargetVpnGatewaysScopedList++; |
| 6370 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6370 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6371 o.targetVpnGateways = buildUnnamed2171(); | 6371 o.targetVpnGateways = buildUnnamed2488(); |
| 6372 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 6372 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 6373 } | 6373 } |
| 6374 buildCounterTargetVpnGatewaysScopedList--; | 6374 buildCounterTargetVpnGatewaysScopedList--; |
| 6375 return o; | 6375 return o; |
| 6376 } | 6376 } |
| 6377 | 6377 |
| 6378 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 6378 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 6379 buildCounterTargetVpnGatewaysScopedList++; | 6379 buildCounterTargetVpnGatewaysScopedList++; |
| 6380 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6380 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6381 checkUnnamed2171(o.targetVpnGateways); | 6381 checkUnnamed2488(o.targetVpnGateways); |
| 6382 checkTargetVpnGatewaysScopedListWarning(o.warning); | 6382 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 6383 } | 6383 } |
| 6384 buildCounterTargetVpnGatewaysScopedList--; | 6384 buildCounterTargetVpnGatewaysScopedList--; |
| 6385 } | 6385 } |
| 6386 | 6386 |
| 6387 core.int buildCounterTestFailure = 0; | 6387 core.int buildCounterTestFailure = 0; |
| 6388 buildTestFailure() { | 6388 buildTestFailure() { |
| 6389 var o = new api.TestFailure(); | 6389 var o = new api.TestFailure(); |
| 6390 buildCounterTestFailure++; | 6390 buildCounterTestFailure++; |
| 6391 if (buildCounterTestFailure < 3) { | 6391 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6402 buildCounterTestFailure++; | 6402 buildCounterTestFailure++; |
| 6403 if (buildCounterTestFailure < 3) { | 6403 if (buildCounterTestFailure < 3) { |
| 6404 unittest.expect(o.actualService, unittest.equals('foo')); | 6404 unittest.expect(o.actualService, unittest.equals('foo')); |
| 6405 unittest.expect(o.expectedService, unittest.equals('foo')); | 6405 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 6406 unittest.expect(o.host, unittest.equals('foo')); | 6406 unittest.expect(o.host, unittest.equals('foo')); |
| 6407 unittest.expect(o.path, unittest.equals('foo')); | 6407 unittest.expect(o.path, unittest.equals('foo')); |
| 6408 } | 6408 } |
| 6409 buildCounterTestFailure--; | 6409 buildCounterTestFailure--; |
| 6410 } | 6410 } |
| 6411 | 6411 |
| 6412 buildUnnamed2173() { | 6412 buildUnnamed2490() { |
| 6413 var o = new core.List<api.HostRule>(); | 6413 var o = new core.List<api.HostRule>(); |
| 6414 o.add(buildHostRule()); | 6414 o.add(buildHostRule()); |
| 6415 o.add(buildHostRule()); | 6415 o.add(buildHostRule()); |
| 6416 return o; | 6416 return o; |
| 6417 } | 6417 } |
| 6418 | 6418 |
| 6419 checkUnnamed2173(core.List<api.HostRule> o) { | 6419 checkUnnamed2490(core.List<api.HostRule> o) { |
| 6420 unittest.expect(o, unittest.hasLength(2)); | 6420 unittest.expect(o, unittest.hasLength(2)); |
| 6421 checkHostRule(o[0]); | 6421 checkHostRule(o[0]); |
| 6422 checkHostRule(o[1]); | 6422 checkHostRule(o[1]); |
| 6423 } | 6423 } |
| 6424 | 6424 |
| 6425 buildUnnamed2174() { | 6425 buildUnnamed2491() { |
| 6426 var o = new core.List<api.PathMatcher>(); | 6426 var o = new core.List<api.PathMatcher>(); |
| 6427 o.add(buildPathMatcher()); | 6427 o.add(buildPathMatcher()); |
| 6428 o.add(buildPathMatcher()); | 6428 o.add(buildPathMatcher()); |
| 6429 return o; | 6429 return o; |
| 6430 } | 6430 } |
| 6431 | 6431 |
| 6432 checkUnnamed2174(core.List<api.PathMatcher> o) { | 6432 checkUnnamed2491(core.List<api.PathMatcher> o) { |
| 6433 unittest.expect(o, unittest.hasLength(2)); | 6433 unittest.expect(o, unittest.hasLength(2)); |
| 6434 checkPathMatcher(o[0]); | 6434 checkPathMatcher(o[0]); |
| 6435 checkPathMatcher(o[1]); | 6435 checkPathMatcher(o[1]); |
| 6436 } | 6436 } |
| 6437 | 6437 |
| 6438 buildUnnamed2175() { | 6438 buildUnnamed2492() { |
| 6439 var o = new core.List<api.UrlMapTest>(); | 6439 var o = new core.List<api.UrlMapTest>(); |
| 6440 o.add(buildUrlMapTest()); | 6440 o.add(buildUrlMapTest()); |
| 6441 o.add(buildUrlMapTest()); | 6441 o.add(buildUrlMapTest()); |
| 6442 return o; | 6442 return o; |
| 6443 } | 6443 } |
| 6444 | 6444 |
| 6445 checkUnnamed2175(core.List<api.UrlMapTest> o) { | 6445 checkUnnamed2492(core.List<api.UrlMapTest> o) { |
| 6446 unittest.expect(o, unittest.hasLength(2)); | 6446 unittest.expect(o, unittest.hasLength(2)); |
| 6447 checkUrlMapTest(o[0]); | 6447 checkUrlMapTest(o[0]); |
| 6448 checkUrlMapTest(o[1]); | 6448 checkUrlMapTest(o[1]); |
| 6449 } | 6449 } |
| 6450 | 6450 |
| 6451 core.int buildCounterUrlMap = 0; | 6451 core.int buildCounterUrlMap = 0; |
| 6452 buildUrlMap() { | 6452 buildUrlMap() { |
| 6453 var o = new api.UrlMap(); | 6453 var o = new api.UrlMap(); |
| 6454 buildCounterUrlMap++; | 6454 buildCounterUrlMap++; |
| 6455 if (buildCounterUrlMap < 3) { | 6455 if (buildCounterUrlMap < 3) { |
| 6456 o.creationTimestamp = "foo"; | 6456 o.creationTimestamp = "foo"; |
| 6457 o.defaultService = "foo"; | 6457 o.defaultService = "foo"; |
| 6458 o.description = "foo"; | 6458 o.description = "foo"; |
| 6459 o.fingerprint = "foo"; | 6459 o.fingerprint = "foo"; |
| 6460 o.hostRules = buildUnnamed2173(); | 6460 o.hostRules = buildUnnamed2490(); |
| 6461 o.id = "foo"; | 6461 o.id = "foo"; |
| 6462 o.kind = "foo"; | 6462 o.kind = "foo"; |
| 6463 o.name = "foo"; | 6463 o.name = "foo"; |
| 6464 o.pathMatchers = buildUnnamed2174(); | 6464 o.pathMatchers = buildUnnamed2491(); |
| 6465 o.selfLink = "foo"; | 6465 o.selfLink = "foo"; |
| 6466 o.tests = buildUnnamed2175(); | 6466 o.tests = buildUnnamed2492(); |
| 6467 } | 6467 } |
| 6468 buildCounterUrlMap--; | 6468 buildCounterUrlMap--; |
| 6469 return o; | 6469 return o; |
| 6470 } | 6470 } |
| 6471 | 6471 |
| 6472 checkUrlMap(api.UrlMap o) { | 6472 checkUrlMap(api.UrlMap o) { |
| 6473 buildCounterUrlMap++; | 6473 buildCounterUrlMap++; |
| 6474 if (buildCounterUrlMap < 3) { | 6474 if (buildCounterUrlMap < 3) { |
| 6475 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6475 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6476 unittest.expect(o.defaultService, unittest.equals('foo')); | 6476 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 6477 unittest.expect(o.description, unittest.equals('foo')); | 6477 unittest.expect(o.description, unittest.equals('foo')); |
| 6478 unittest.expect(o.fingerprint, unittest.equals('foo')); | 6478 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 6479 checkUnnamed2173(o.hostRules); | 6479 checkUnnamed2490(o.hostRules); |
| 6480 unittest.expect(o.id, unittest.equals('foo')); | 6480 unittest.expect(o.id, unittest.equals('foo')); |
| 6481 unittest.expect(o.kind, unittest.equals('foo')); | 6481 unittest.expect(o.kind, unittest.equals('foo')); |
| 6482 unittest.expect(o.name, unittest.equals('foo')); | 6482 unittest.expect(o.name, unittest.equals('foo')); |
| 6483 checkUnnamed2174(o.pathMatchers); | 6483 checkUnnamed2491(o.pathMatchers); |
| 6484 unittest.expect(o.selfLink, unittest.equals('foo')); | 6484 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6485 checkUnnamed2175(o.tests); | 6485 checkUnnamed2492(o.tests); |
| 6486 } | 6486 } |
| 6487 buildCounterUrlMap--; | 6487 buildCounterUrlMap--; |
| 6488 } | 6488 } |
| 6489 | 6489 |
| 6490 buildUnnamed2176() { | 6490 buildUnnamed2493() { |
| 6491 var o = new core.List<api.UrlMap>(); | 6491 var o = new core.List<api.UrlMap>(); |
| 6492 o.add(buildUrlMap()); | 6492 o.add(buildUrlMap()); |
| 6493 o.add(buildUrlMap()); | 6493 o.add(buildUrlMap()); |
| 6494 return o; | 6494 return o; |
| 6495 } | 6495 } |
| 6496 | 6496 |
| 6497 checkUnnamed2176(core.List<api.UrlMap> o) { | 6497 checkUnnamed2493(core.List<api.UrlMap> o) { |
| 6498 unittest.expect(o, unittest.hasLength(2)); | 6498 unittest.expect(o, unittest.hasLength(2)); |
| 6499 checkUrlMap(o[0]); | 6499 checkUrlMap(o[0]); |
| 6500 checkUrlMap(o[1]); | 6500 checkUrlMap(o[1]); |
| 6501 } | 6501 } |
| 6502 | 6502 |
| 6503 core.int buildCounterUrlMapList = 0; | 6503 core.int buildCounterUrlMapList = 0; |
| 6504 buildUrlMapList() { | 6504 buildUrlMapList() { |
| 6505 var o = new api.UrlMapList(); | 6505 var o = new api.UrlMapList(); |
| 6506 buildCounterUrlMapList++; | 6506 buildCounterUrlMapList++; |
| 6507 if (buildCounterUrlMapList < 3) { | 6507 if (buildCounterUrlMapList < 3) { |
| 6508 o.id = "foo"; | 6508 o.id = "foo"; |
| 6509 o.items = buildUnnamed2176(); | 6509 o.items = buildUnnamed2493(); |
| 6510 o.kind = "foo"; | 6510 o.kind = "foo"; |
| 6511 o.nextPageToken = "foo"; | 6511 o.nextPageToken = "foo"; |
| 6512 o.selfLink = "foo"; | 6512 o.selfLink = "foo"; |
| 6513 } | 6513 } |
| 6514 buildCounterUrlMapList--; | 6514 buildCounterUrlMapList--; |
| 6515 return o; | 6515 return o; |
| 6516 } | 6516 } |
| 6517 | 6517 |
| 6518 checkUrlMapList(api.UrlMapList o) { | 6518 checkUrlMapList(api.UrlMapList o) { |
| 6519 buildCounterUrlMapList++; | 6519 buildCounterUrlMapList++; |
| 6520 if (buildCounterUrlMapList < 3) { | 6520 if (buildCounterUrlMapList < 3) { |
| 6521 unittest.expect(o.id, unittest.equals('foo')); | 6521 unittest.expect(o.id, unittest.equals('foo')); |
| 6522 checkUnnamed2176(o.items); | 6522 checkUnnamed2493(o.items); |
| 6523 unittest.expect(o.kind, unittest.equals('foo')); | 6523 unittest.expect(o.kind, unittest.equals('foo')); |
| 6524 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6524 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6525 unittest.expect(o.selfLink, unittest.equals('foo')); | 6525 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6526 } | 6526 } |
| 6527 buildCounterUrlMapList--; | 6527 buildCounterUrlMapList--; |
| 6528 } | 6528 } |
| 6529 | 6529 |
| 6530 core.int buildCounterUrlMapReference = 0; | 6530 core.int buildCounterUrlMapReference = 0; |
| 6531 buildUrlMapReference() { | 6531 buildUrlMapReference() { |
| 6532 var o = new api.UrlMapReference(); | 6532 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6564 buildCounterUrlMapTest++; | 6564 buildCounterUrlMapTest++; |
| 6565 if (buildCounterUrlMapTest < 3) { | 6565 if (buildCounterUrlMapTest < 3) { |
| 6566 unittest.expect(o.description, unittest.equals('foo')); | 6566 unittest.expect(o.description, unittest.equals('foo')); |
| 6567 unittest.expect(o.host, unittest.equals('foo')); | 6567 unittest.expect(o.host, unittest.equals('foo')); |
| 6568 unittest.expect(o.path, unittest.equals('foo')); | 6568 unittest.expect(o.path, unittest.equals('foo')); |
| 6569 unittest.expect(o.service, unittest.equals('foo')); | 6569 unittest.expect(o.service, unittest.equals('foo')); |
| 6570 } | 6570 } |
| 6571 buildCounterUrlMapTest--; | 6571 buildCounterUrlMapTest--; |
| 6572 } | 6572 } |
| 6573 | 6573 |
| 6574 buildUnnamed2177() { | 6574 buildUnnamed2494() { |
| 6575 var o = new core.List<core.String>(); | 6575 var o = new core.List<core.String>(); |
| 6576 o.add("foo"); | 6576 o.add("foo"); |
| 6577 o.add("foo"); | 6577 o.add("foo"); |
| 6578 return o; | 6578 return o; |
| 6579 } | 6579 } |
| 6580 | 6580 |
| 6581 checkUnnamed2177(core.List<core.String> o) { | 6581 checkUnnamed2494(core.List<core.String> o) { |
| 6582 unittest.expect(o, unittest.hasLength(2)); | 6582 unittest.expect(o, unittest.hasLength(2)); |
| 6583 unittest.expect(o[0], unittest.equals('foo')); | 6583 unittest.expect(o[0], unittest.equals('foo')); |
| 6584 unittest.expect(o[1], unittest.equals('foo')); | 6584 unittest.expect(o[1], unittest.equals('foo')); |
| 6585 } | 6585 } |
| 6586 | 6586 |
| 6587 buildUnnamed2178() { | 6587 buildUnnamed2495() { |
| 6588 var o = new core.List<api.TestFailure>(); | 6588 var o = new core.List<api.TestFailure>(); |
| 6589 o.add(buildTestFailure()); | 6589 o.add(buildTestFailure()); |
| 6590 o.add(buildTestFailure()); | 6590 o.add(buildTestFailure()); |
| 6591 return o; | 6591 return o; |
| 6592 } | 6592 } |
| 6593 | 6593 |
| 6594 checkUnnamed2178(core.List<api.TestFailure> o) { | 6594 checkUnnamed2495(core.List<api.TestFailure> o) { |
| 6595 unittest.expect(o, unittest.hasLength(2)); | 6595 unittest.expect(o, unittest.hasLength(2)); |
| 6596 checkTestFailure(o[0]); | 6596 checkTestFailure(o[0]); |
| 6597 checkTestFailure(o[1]); | 6597 checkTestFailure(o[1]); |
| 6598 } | 6598 } |
| 6599 | 6599 |
| 6600 core.int buildCounterUrlMapValidationResult = 0; | 6600 core.int buildCounterUrlMapValidationResult = 0; |
| 6601 buildUrlMapValidationResult() { | 6601 buildUrlMapValidationResult() { |
| 6602 var o = new api.UrlMapValidationResult(); | 6602 var o = new api.UrlMapValidationResult(); |
| 6603 buildCounterUrlMapValidationResult++; | 6603 buildCounterUrlMapValidationResult++; |
| 6604 if (buildCounterUrlMapValidationResult < 3) { | 6604 if (buildCounterUrlMapValidationResult < 3) { |
| 6605 o.loadErrors = buildUnnamed2177(); | 6605 o.loadErrors = buildUnnamed2494(); |
| 6606 o.loadSucceeded = true; | 6606 o.loadSucceeded = true; |
| 6607 o.testFailures = buildUnnamed2178(); | 6607 o.testFailures = buildUnnamed2495(); |
| 6608 o.testPassed = true; | 6608 o.testPassed = true; |
| 6609 } | 6609 } |
| 6610 buildCounterUrlMapValidationResult--; | 6610 buildCounterUrlMapValidationResult--; |
| 6611 return o; | 6611 return o; |
| 6612 } | 6612 } |
| 6613 | 6613 |
| 6614 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 6614 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 6615 buildCounterUrlMapValidationResult++; | 6615 buildCounterUrlMapValidationResult++; |
| 6616 if (buildCounterUrlMapValidationResult < 3) { | 6616 if (buildCounterUrlMapValidationResult < 3) { |
| 6617 checkUnnamed2177(o.loadErrors); | 6617 checkUnnamed2494(o.loadErrors); |
| 6618 unittest.expect(o.loadSucceeded, unittest.isTrue); | 6618 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 6619 checkUnnamed2178(o.testFailures); | 6619 checkUnnamed2495(o.testFailures); |
| 6620 unittest.expect(o.testPassed, unittest.isTrue); | 6620 unittest.expect(o.testPassed, unittest.isTrue); |
| 6621 } | 6621 } |
| 6622 buildCounterUrlMapValidationResult--; | 6622 buildCounterUrlMapValidationResult--; |
| 6623 } | 6623 } |
| 6624 | 6624 |
| 6625 core.int buildCounterUrlMapsValidateRequest = 0; | 6625 core.int buildCounterUrlMapsValidateRequest = 0; |
| 6626 buildUrlMapsValidateRequest() { | 6626 buildUrlMapsValidateRequest() { |
| 6627 var o = new api.UrlMapsValidateRequest(); | 6627 var o = new api.UrlMapsValidateRequest(); |
| 6628 buildCounterUrlMapsValidateRequest++; | 6628 buildCounterUrlMapsValidateRequest++; |
| 6629 if (buildCounterUrlMapsValidateRequest < 3) { | 6629 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6674 | 6674 |
| 6675 checkUsageExportLocation(api.UsageExportLocation o) { | 6675 checkUsageExportLocation(api.UsageExportLocation o) { |
| 6676 buildCounterUsageExportLocation++; | 6676 buildCounterUsageExportLocation++; |
| 6677 if (buildCounterUsageExportLocation < 3) { | 6677 if (buildCounterUsageExportLocation < 3) { |
| 6678 unittest.expect(o.bucketName, unittest.equals('foo')); | 6678 unittest.expect(o.bucketName, unittest.equals('foo')); |
| 6679 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); | 6679 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); |
| 6680 } | 6680 } |
| 6681 buildCounterUsageExportLocation--; | 6681 buildCounterUsageExportLocation--; |
| 6682 } | 6682 } |
| 6683 | 6683 |
| 6684 buildUnnamed2179() { | 6684 buildUnnamed2496() { |
| 6685 var o = new core.List<core.String>(); | 6685 var o = new core.List<core.String>(); |
| 6686 o.add("foo"); | 6686 o.add("foo"); |
| 6687 o.add("foo"); | 6687 o.add("foo"); |
| 6688 return o; | 6688 return o; |
| 6689 } | 6689 } |
| 6690 | 6690 |
| 6691 checkUnnamed2179(core.List<core.String> o) { | 6691 checkUnnamed2496(core.List<core.String> o) { |
| 6692 unittest.expect(o, unittest.hasLength(2)); | 6692 unittest.expect(o, unittest.hasLength(2)); |
| 6693 unittest.expect(o[0], unittest.equals('foo')); | 6693 unittest.expect(o[0], unittest.equals('foo')); |
| 6694 unittest.expect(o[1], unittest.equals('foo')); | 6694 unittest.expect(o[1], unittest.equals('foo')); |
| 6695 } | 6695 } |
| 6696 | 6696 |
| 6697 core.int buildCounterVpnTunnel = 0; | 6697 core.int buildCounterVpnTunnel = 0; |
| 6698 buildVpnTunnel() { | 6698 buildVpnTunnel() { |
| 6699 var o = new api.VpnTunnel(); | 6699 var o = new api.VpnTunnel(); |
| 6700 buildCounterVpnTunnel++; | 6700 buildCounterVpnTunnel++; |
| 6701 if (buildCounterVpnTunnel < 3) { | 6701 if (buildCounterVpnTunnel < 3) { |
| 6702 o.creationTimestamp = "foo"; | 6702 o.creationTimestamp = "foo"; |
| 6703 o.description = "foo"; | 6703 o.description = "foo"; |
| 6704 o.detailedStatus = "foo"; | 6704 o.detailedStatus = "foo"; |
| 6705 o.id = "foo"; | 6705 o.id = "foo"; |
| 6706 o.ikeVersion = 42; | 6706 o.ikeVersion = 42; |
| 6707 o.kind = "foo"; | 6707 o.kind = "foo"; |
| 6708 o.localTrafficSelector = buildUnnamed2179(); | 6708 o.localTrafficSelector = buildUnnamed2496(); |
| 6709 o.name = "foo"; | 6709 o.name = "foo"; |
| 6710 o.peerIp = "foo"; | 6710 o.peerIp = "foo"; |
| 6711 o.region = "foo"; | 6711 o.region = "foo"; |
| 6712 o.selfLink = "foo"; | 6712 o.selfLink = "foo"; |
| 6713 o.sharedSecret = "foo"; | 6713 o.sharedSecret = "foo"; |
| 6714 o.sharedSecretHash = "foo"; | 6714 o.sharedSecretHash = "foo"; |
| 6715 o.status = "foo"; | 6715 o.status = "foo"; |
| 6716 o.targetVpnGateway = "foo"; | 6716 o.targetVpnGateway = "foo"; |
| 6717 } | 6717 } |
| 6718 buildCounterVpnTunnel--; | 6718 buildCounterVpnTunnel--; |
| 6719 return o; | 6719 return o; |
| 6720 } | 6720 } |
| 6721 | 6721 |
| 6722 checkVpnTunnel(api.VpnTunnel o) { | 6722 checkVpnTunnel(api.VpnTunnel o) { |
| 6723 buildCounterVpnTunnel++; | 6723 buildCounterVpnTunnel++; |
| 6724 if (buildCounterVpnTunnel < 3) { | 6724 if (buildCounterVpnTunnel < 3) { |
| 6725 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6725 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6726 unittest.expect(o.description, unittest.equals('foo')); | 6726 unittest.expect(o.description, unittest.equals('foo')); |
| 6727 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 6727 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 6728 unittest.expect(o.id, unittest.equals('foo')); | 6728 unittest.expect(o.id, unittest.equals('foo')); |
| 6729 unittest.expect(o.ikeVersion, unittest.equals(42)); | 6729 unittest.expect(o.ikeVersion, unittest.equals(42)); |
| 6730 unittest.expect(o.kind, unittest.equals('foo')); | 6730 unittest.expect(o.kind, unittest.equals('foo')); |
| 6731 checkUnnamed2179(o.localTrafficSelector); | 6731 checkUnnamed2496(o.localTrafficSelector); |
| 6732 unittest.expect(o.name, unittest.equals('foo')); | 6732 unittest.expect(o.name, unittest.equals('foo')); |
| 6733 unittest.expect(o.peerIp, unittest.equals('foo')); | 6733 unittest.expect(o.peerIp, unittest.equals('foo')); |
| 6734 unittest.expect(o.region, unittest.equals('foo')); | 6734 unittest.expect(o.region, unittest.equals('foo')); |
| 6735 unittest.expect(o.selfLink, unittest.equals('foo')); | 6735 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6736 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 6736 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 6737 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 6737 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 6738 unittest.expect(o.status, unittest.equals('foo')); | 6738 unittest.expect(o.status, unittest.equals('foo')); |
| 6739 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 6739 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 6740 } | 6740 } |
| 6741 buildCounterVpnTunnel--; | 6741 buildCounterVpnTunnel--; |
| 6742 } | 6742 } |
| 6743 | 6743 |
| 6744 buildUnnamed2180() { | 6744 buildUnnamed2497() { |
| 6745 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 6745 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 6746 o["x"] = buildVpnTunnelsScopedList(); | 6746 o["x"] = buildVpnTunnelsScopedList(); |
| 6747 o["y"] = buildVpnTunnelsScopedList(); | 6747 o["y"] = buildVpnTunnelsScopedList(); |
| 6748 return o; | 6748 return o; |
| 6749 } | 6749 } |
| 6750 | 6750 |
| 6751 checkUnnamed2180(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 6751 checkUnnamed2497(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 6752 unittest.expect(o, unittest.hasLength(2)); | 6752 unittest.expect(o, unittest.hasLength(2)); |
| 6753 checkVpnTunnelsScopedList(o["x"]); | 6753 checkVpnTunnelsScopedList(o["x"]); |
| 6754 checkVpnTunnelsScopedList(o["y"]); | 6754 checkVpnTunnelsScopedList(o["y"]); |
| 6755 } | 6755 } |
| 6756 | 6756 |
| 6757 core.int buildCounterVpnTunnelAggregatedList = 0; | 6757 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 6758 buildVpnTunnelAggregatedList() { | 6758 buildVpnTunnelAggregatedList() { |
| 6759 var o = new api.VpnTunnelAggregatedList(); | 6759 var o = new api.VpnTunnelAggregatedList(); |
| 6760 buildCounterVpnTunnelAggregatedList++; | 6760 buildCounterVpnTunnelAggregatedList++; |
| 6761 if (buildCounterVpnTunnelAggregatedList < 3) { | 6761 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 6762 o.id = "foo"; | 6762 o.id = "foo"; |
| 6763 o.items = buildUnnamed2180(); | 6763 o.items = buildUnnamed2497(); |
| 6764 o.kind = "foo"; | 6764 o.kind = "foo"; |
| 6765 o.nextPageToken = "foo"; | 6765 o.nextPageToken = "foo"; |
| 6766 o.selfLink = "foo"; | 6766 o.selfLink = "foo"; |
| 6767 } | 6767 } |
| 6768 buildCounterVpnTunnelAggregatedList--; | 6768 buildCounterVpnTunnelAggregatedList--; |
| 6769 return o; | 6769 return o; |
| 6770 } | 6770 } |
| 6771 | 6771 |
| 6772 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 6772 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 6773 buildCounterVpnTunnelAggregatedList++; | 6773 buildCounterVpnTunnelAggregatedList++; |
| 6774 if (buildCounterVpnTunnelAggregatedList < 3) { | 6774 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 6775 unittest.expect(o.id, unittest.equals('foo')); | 6775 unittest.expect(o.id, unittest.equals('foo')); |
| 6776 checkUnnamed2180(o.items); | 6776 checkUnnamed2497(o.items); |
| 6777 unittest.expect(o.kind, unittest.equals('foo')); | 6777 unittest.expect(o.kind, unittest.equals('foo')); |
| 6778 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6778 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6779 unittest.expect(o.selfLink, unittest.equals('foo')); | 6779 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6780 } | 6780 } |
| 6781 buildCounterVpnTunnelAggregatedList--; | 6781 buildCounterVpnTunnelAggregatedList--; |
| 6782 } | 6782 } |
| 6783 | 6783 |
| 6784 buildUnnamed2181() { | 6784 buildUnnamed2498() { |
| 6785 var o = new core.List<api.VpnTunnel>(); | 6785 var o = new core.List<api.VpnTunnel>(); |
| 6786 o.add(buildVpnTunnel()); | 6786 o.add(buildVpnTunnel()); |
| 6787 o.add(buildVpnTunnel()); | 6787 o.add(buildVpnTunnel()); |
| 6788 return o; | 6788 return o; |
| 6789 } | 6789 } |
| 6790 | 6790 |
| 6791 checkUnnamed2181(core.List<api.VpnTunnel> o) { | 6791 checkUnnamed2498(core.List<api.VpnTunnel> o) { |
| 6792 unittest.expect(o, unittest.hasLength(2)); | 6792 unittest.expect(o, unittest.hasLength(2)); |
| 6793 checkVpnTunnel(o[0]); | 6793 checkVpnTunnel(o[0]); |
| 6794 checkVpnTunnel(o[1]); | 6794 checkVpnTunnel(o[1]); |
| 6795 } | 6795 } |
| 6796 | 6796 |
| 6797 core.int buildCounterVpnTunnelList = 0; | 6797 core.int buildCounterVpnTunnelList = 0; |
| 6798 buildVpnTunnelList() { | 6798 buildVpnTunnelList() { |
| 6799 var o = new api.VpnTunnelList(); | 6799 var o = new api.VpnTunnelList(); |
| 6800 buildCounterVpnTunnelList++; | 6800 buildCounterVpnTunnelList++; |
| 6801 if (buildCounterVpnTunnelList < 3) { | 6801 if (buildCounterVpnTunnelList < 3) { |
| 6802 o.id = "foo"; | 6802 o.id = "foo"; |
| 6803 o.items = buildUnnamed2181(); | 6803 o.items = buildUnnamed2498(); |
| 6804 o.kind = "foo"; | 6804 o.kind = "foo"; |
| 6805 o.nextPageToken = "foo"; | 6805 o.nextPageToken = "foo"; |
| 6806 o.selfLink = "foo"; | 6806 o.selfLink = "foo"; |
| 6807 } | 6807 } |
| 6808 buildCounterVpnTunnelList--; | 6808 buildCounterVpnTunnelList--; |
| 6809 return o; | 6809 return o; |
| 6810 } | 6810 } |
| 6811 | 6811 |
| 6812 checkVpnTunnelList(api.VpnTunnelList o) { | 6812 checkVpnTunnelList(api.VpnTunnelList o) { |
| 6813 buildCounterVpnTunnelList++; | 6813 buildCounterVpnTunnelList++; |
| 6814 if (buildCounterVpnTunnelList < 3) { | 6814 if (buildCounterVpnTunnelList < 3) { |
| 6815 unittest.expect(o.id, unittest.equals('foo')); | 6815 unittest.expect(o.id, unittest.equals('foo')); |
| 6816 checkUnnamed2181(o.items); | 6816 checkUnnamed2498(o.items); |
| 6817 unittest.expect(o.kind, unittest.equals('foo')); | 6817 unittest.expect(o.kind, unittest.equals('foo')); |
| 6818 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6818 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6819 unittest.expect(o.selfLink, unittest.equals('foo')); | 6819 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6820 } | 6820 } |
| 6821 buildCounterVpnTunnelList--; | 6821 buildCounterVpnTunnelList--; |
| 6822 } | 6822 } |
| 6823 | 6823 |
| 6824 buildUnnamed2182() { | 6824 buildUnnamed2499() { |
| 6825 var o = new core.List<api.VpnTunnel>(); | 6825 var o = new core.List<api.VpnTunnel>(); |
| 6826 o.add(buildVpnTunnel()); | 6826 o.add(buildVpnTunnel()); |
| 6827 o.add(buildVpnTunnel()); | 6827 o.add(buildVpnTunnel()); |
| 6828 return o; | 6828 return o; |
| 6829 } | 6829 } |
| 6830 | 6830 |
| 6831 checkUnnamed2182(core.List<api.VpnTunnel> o) { | 6831 checkUnnamed2499(core.List<api.VpnTunnel> o) { |
| 6832 unittest.expect(o, unittest.hasLength(2)); | 6832 unittest.expect(o, unittest.hasLength(2)); |
| 6833 checkVpnTunnel(o[0]); | 6833 checkVpnTunnel(o[0]); |
| 6834 checkVpnTunnel(o[1]); | 6834 checkVpnTunnel(o[1]); |
| 6835 } | 6835 } |
| 6836 | 6836 |
| 6837 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 6837 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 6838 buildVpnTunnelsScopedListWarningData() { | 6838 buildVpnTunnelsScopedListWarningData() { |
| 6839 var o = new api.VpnTunnelsScopedListWarningData(); | 6839 var o = new api.VpnTunnelsScopedListWarningData(); |
| 6840 buildCounterVpnTunnelsScopedListWarningData++; | 6840 buildCounterVpnTunnelsScopedListWarningData++; |
| 6841 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 6841 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 6842 o.key = "foo"; | 6842 o.key = "foo"; |
| 6843 o.value = "foo"; | 6843 o.value = "foo"; |
| 6844 } | 6844 } |
| 6845 buildCounterVpnTunnelsScopedListWarningData--; | 6845 buildCounterVpnTunnelsScopedListWarningData--; |
| 6846 return o; | 6846 return o; |
| 6847 } | 6847 } |
| 6848 | 6848 |
| 6849 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 6849 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 6850 buildCounterVpnTunnelsScopedListWarningData++; | 6850 buildCounterVpnTunnelsScopedListWarningData++; |
| 6851 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 6851 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 6852 unittest.expect(o.key, unittest.equals('foo')); | 6852 unittest.expect(o.key, unittest.equals('foo')); |
| 6853 unittest.expect(o.value, unittest.equals('foo')); | 6853 unittest.expect(o.value, unittest.equals('foo')); |
| 6854 } | 6854 } |
| 6855 buildCounterVpnTunnelsScopedListWarningData--; | 6855 buildCounterVpnTunnelsScopedListWarningData--; |
| 6856 } | 6856 } |
| 6857 | 6857 |
| 6858 buildUnnamed2183() { | 6858 buildUnnamed2500() { |
| 6859 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 6859 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 6860 o.add(buildVpnTunnelsScopedListWarningData()); | 6860 o.add(buildVpnTunnelsScopedListWarningData()); |
| 6861 o.add(buildVpnTunnelsScopedListWarningData()); | 6861 o.add(buildVpnTunnelsScopedListWarningData()); |
| 6862 return o; | 6862 return o; |
| 6863 } | 6863 } |
| 6864 | 6864 |
| 6865 checkUnnamed2183(core.List<api.VpnTunnelsScopedListWarningData> o) { | 6865 checkUnnamed2500(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 6866 unittest.expect(o, unittest.hasLength(2)); | 6866 unittest.expect(o, unittest.hasLength(2)); |
| 6867 checkVpnTunnelsScopedListWarningData(o[0]); | 6867 checkVpnTunnelsScopedListWarningData(o[0]); |
| 6868 checkVpnTunnelsScopedListWarningData(o[1]); | 6868 checkVpnTunnelsScopedListWarningData(o[1]); |
| 6869 } | 6869 } |
| 6870 | 6870 |
| 6871 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 6871 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 6872 buildVpnTunnelsScopedListWarning() { | 6872 buildVpnTunnelsScopedListWarning() { |
| 6873 var o = new api.VpnTunnelsScopedListWarning(); | 6873 var o = new api.VpnTunnelsScopedListWarning(); |
| 6874 buildCounterVpnTunnelsScopedListWarning++; | 6874 buildCounterVpnTunnelsScopedListWarning++; |
| 6875 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 6875 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 6876 o.code = "foo"; | 6876 o.code = "foo"; |
| 6877 o.data = buildUnnamed2183(); | 6877 o.data = buildUnnamed2500(); |
| 6878 o.message = "foo"; | 6878 o.message = "foo"; |
| 6879 } | 6879 } |
| 6880 buildCounterVpnTunnelsScopedListWarning--; | 6880 buildCounterVpnTunnelsScopedListWarning--; |
| 6881 return o; | 6881 return o; |
| 6882 } | 6882 } |
| 6883 | 6883 |
| 6884 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 6884 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 6885 buildCounterVpnTunnelsScopedListWarning++; | 6885 buildCounterVpnTunnelsScopedListWarning++; |
| 6886 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 6886 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 6887 unittest.expect(o.code, unittest.equals('foo')); | 6887 unittest.expect(o.code, unittest.equals('foo')); |
| 6888 checkUnnamed2183(o.data); | 6888 checkUnnamed2500(o.data); |
| 6889 unittest.expect(o.message, unittest.equals('foo')); | 6889 unittest.expect(o.message, unittest.equals('foo')); |
| 6890 } | 6890 } |
| 6891 buildCounterVpnTunnelsScopedListWarning--; | 6891 buildCounterVpnTunnelsScopedListWarning--; |
| 6892 } | 6892 } |
| 6893 | 6893 |
| 6894 core.int buildCounterVpnTunnelsScopedList = 0; | 6894 core.int buildCounterVpnTunnelsScopedList = 0; |
| 6895 buildVpnTunnelsScopedList() { | 6895 buildVpnTunnelsScopedList() { |
| 6896 var o = new api.VpnTunnelsScopedList(); | 6896 var o = new api.VpnTunnelsScopedList(); |
| 6897 buildCounterVpnTunnelsScopedList++; | 6897 buildCounterVpnTunnelsScopedList++; |
| 6898 if (buildCounterVpnTunnelsScopedList < 3) { | 6898 if (buildCounterVpnTunnelsScopedList < 3) { |
| 6899 o.vpnTunnels = buildUnnamed2182(); | 6899 o.vpnTunnels = buildUnnamed2499(); |
| 6900 o.warning = buildVpnTunnelsScopedListWarning(); | 6900 o.warning = buildVpnTunnelsScopedListWarning(); |
| 6901 } | 6901 } |
| 6902 buildCounterVpnTunnelsScopedList--; | 6902 buildCounterVpnTunnelsScopedList--; |
| 6903 return o; | 6903 return o; |
| 6904 } | 6904 } |
| 6905 | 6905 |
| 6906 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 6906 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 6907 buildCounterVpnTunnelsScopedList++; | 6907 buildCounterVpnTunnelsScopedList++; |
| 6908 if (buildCounterVpnTunnelsScopedList < 3) { | 6908 if (buildCounterVpnTunnelsScopedList < 3) { |
| 6909 checkUnnamed2182(o.vpnTunnels); | 6909 checkUnnamed2499(o.vpnTunnels); |
| 6910 checkVpnTunnelsScopedListWarning(o.warning); | 6910 checkVpnTunnelsScopedListWarning(o.warning); |
| 6911 } | 6911 } |
| 6912 buildCounterVpnTunnelsScopedList--; | 6912 buildCounterVpnTunnelsScopedList--; |
| 6913 } | 6913 } |
| 6914 | 6914 |
| 6915 core.int buildCounterZoneMaintenanceWindows = 0; | 6915 core.int buildCounterZoneMaintenanceWindows = 0; |
| 6916 buildZoneMaintenanceWindows() { | 6916 buildZoneMaintenanceWindows() { |
| 6917 var o = new api.ZoneMaintenanceWindows(); | 6917 var o = new api.ZoneMaintenanceWindows(); |
| 6918 buildCounterZoneMaintenanceWindows++; | 6918 buildCounterZoneMaintenanceWindows++; |
| 6919 if (buildCounterZoneMaintenanceWindows < 3) { | 6919 if (buildCounterZoneMaintenanceWindows < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6930 buildCounterZoneMaintenanceWindows++; | 6930 buildCounterZoneMaintenanceWindows++; |
| 6931 if (buildCounterZoneMaintenanceWindows < 3) { | 6931 if (buildCounterZoneMaintenanceWindows < 3) { |
| 6932 unittest.expect(o.beginTime, unittest.equals('foo')); | 6932 unittest.expect(o.beginTime, unittest.equals('foo')); |
| 6933 unittest.expect(o.description, unittest.equals('foo')); | 6933 unittest.expect(o.description, unittest.equals('foo')); |
| 6934 unittest.expect(o.endTime, unittest.equals('foo')); | 6934 unittest.expect(o.endTime, unittest.equals('foo')); |
| 6935 unittest.expect(o.name, unittest.equals('foo')); | 6935 unittest.expect(o.name, unittest.equals('foo')); |
| 6936 } | 6936 } |
| 6937 buildCounterZoneMaintenanceWindows--; | 6937 buildCounterZoneMaintenanceWindows--; |
| 6938 } | 6938 } |
| 6939 | 6939 |
| 6940 buildUnnamed2184() { | 6940 buildUnnamed2501() { |
| 6941 var o = new core.List<api.ZoneMaintenanceWindows>(); | 6941 var o = new core.List<api.ZoneMaintenanceWindows>(); |
| 6942 o.add(buildZoneMaintenanceWindows()); | 6942 o.add(buildZoneMaintenanceWindows()); |
| 6943 o.add(buildZoneMaintenanceWindows()); | 6943 o.add(buildZoneMaintenanceWindows()); |
| 6944 return o; | 6944 return o; |
| 6945 } | 6945 } |
| 6946 | 6946 |
| 6947 checkUnnamed2184(core.List<api.ZoneMaintenanceWindows> o) { | 6947 checkUnnamed2501(core.List<api.ZoneMaintenanceWindows> o) { |
| 6948 unittest.expect(o, unittest.hasLength(2)); | 6948 unittest.expect(o, unittest.hasLength(2)); |
| 6949 checkZoneMaintenanceWindows(o[0]); | 6949 checkZoneMaintenanceWindows(o[0]); |
| 6950 checkZoneMaintenanceWindows(o[1]); | 6950 checkZoneMaintenanceWindows(o[1]); |
| 6951 } | 6951 } |
| 6952 | 6952 |
| 6953 core.int buildCounterZone = 0; | 6953 core.int buildCounterZone = 0; |
| 6954 buildZone() { | 6954 buildZone() { |
| 6955 var o = new api.Zone(); | 6955 var o = new api.Zone(); |
| 6956 buildCounterZone++; | 6956 buildCounterZone++; |
| 6957 if (buildCounterZone < 3) { | 6957 if (buildCounterZone < 3) { |
| 6958 o.creationTimestamp = "foo"; | 6958 o.creationTimestamp = "foo"; |
| 6959 o.deprecated = buildDeprecationStatus(); | 6959 o.deprecated = buildDeprecationStatus(); |
| 6960 o.description = "foo"; | 6960 o.description = "foo"; |
| 6961 o.id = "foo"; | 6961 o.id = "foo"; |
| 6962 o.kind = "foo"; | 6962 o.kind = "foo"; |
| 6963 o.maintenanceWindows = buildUnnamed2184(); | 6963 o.maintenanceWindows = buildUnnamed2501(); |
| 6964 o.name = "foo"; | 6964 o.name = "foo"; |
| 6965 o.region = "foo"; | 6965 o.region = "foo"; |
| 6966 o.selfLink = "foo"; | 6966 o.selfLink = "foo"; |
| 6967 o.status = "foo"; | 6967 o.status = "foo"; |
| 6968 } | 6968 } |
| 6969 buildCounterZone--; | 6969 buildCounterZone--; |
| 6970 return o; | 6970 return o; |
| 6971 } | 6971 } |
| 6972 | 6972 |
| 6973 checkZone(api.Zone o) { | 6973 checkZone(api.Zone o) { |
| 6974 buildCounterZone++; | 6974 buildCounterZone++; |
| 6975 if (buildCounterZone < 3) { | 6975 if (buildCounterZone < 3) { |
| 6976 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6976 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6977 checkDeprecationStatus(o.deprecated); | 6977 checkDeprecationStatus(o.deprecated); |
| 6978 unittest.expect(o.description, unittest.equals('foo')); | 6978 unittest.expect(o.description, unittest.equals('foo')); |
| 6979 unittest.expect(o.id, unittest.equals('foo')); | 6979 unittest.expect(o.id, unittest.equals('foo')); |
| 6980 unittest.expect(o.kind, unittest.equals('foo')); | 6980 unittest.expect(o.kind, unittest.equals('foo')); |
| 6981 checkUnnamed2184(o.maintenanceWindows); | 6981 checkUnnamed2501(o.maintenanceWindows); |
| 6982 unittest.expect(o.name, unittest.equals('foo')); | 6982 unittest.expect(o.name, unittest.equals('foo')); |
| 6983 unittest.expect(o.region, unittest.equals('foo')); | 6983 unittest.expect(o.region, unittest.equals('foo')); |
| 6984 unittest.expect(o.selfLink, unittest.equals('foo')); | 6984 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6985 unittest.expect(o.status, unittest.equals('foo')); | 6985 unittest.expect(o.status, unittest.equals('foo')); |
| 6986 } | 6986 } |
| 6987 buildCounterZone--; | 6987 buildCounterZone--; |
| 6988 } | 6988 } |
| 6989 | 6989 |
| 6990 buildUnnamed2185() { | 6990 buildUnnamed2502() { |
| 6991 var o = new core.List<api.Zone>(); | 6991 var o = new core.List<api.Zone>(); |
| 6992 o.add(buildZone()); | 6992 o.add(buildZone()); |
| 6993 o.add(buildZone()); | 6993 o.add(buildZone()); |
| 6994 return o; | 6994 return o; |
| 6995 } | 6995 } |
| 6996 | 6996 |
| 6997 checkUnnamed2185(core.List<api.Zone> o) { | 6997 checkUnnamed2502(core.List<api.Zone> o) { |
| 6998 unittest.expect(o, unittest.hasLength(2)); | 6998 unittest.expect(o, unittest.hasLength(2)); |
| 6999 checkZone(o[0]); | 6999 checkZone(o[0]); |
| 7000 checkZone(o[1]); | 7000 checkZone(o[1]); |
| 7001 } | 7001 } |
| 7002 | 7002 |
| 7003 core.int buildCounterZoneList = 0; | 7003 core.int buildCounterZoneList = 0; |
| 7004 buildZoneList() { | 7004 buildZoneList() { |
| 7005 var o = new api.ZoneList(); | 7005 var o = new api.ZoneList(); |
| 7006 buildCounterZoneList++; | 7006 buildCounterZoneList++; |
| 7007 if (buildCounterZoneList < 3) { | 7007 if (buildCounterZoneList < 3) { |
| 7008 o.id = "foo"; | 7008 o.id = "foo"; |
| 7009 o.items = buildUnnamed2185(); | 7009 o.items = buildUnnamed2502(); |
| 7010 o.kind = "foo"; | 7010 o.kind = "foo"; |
| 7011 o.nextPageToken = "foo"; | 7011 o.nextPageToken = "foo"; |
| 7012 o.selfLink = "foo"; | 7012 o.selfLink = "foo"; |
| 7013 } | 7013 } |
| 7014 buildCounterZoneList--; | 7014 buildCounterZoneList--; |
| 7015 return o; | 7015 return o; |
| 7016 } | 7016 } |
| 7017 | 7017 |
| 7018 checkZoneList(api.ZoneList o) { | 7018 checkZoneList(api.ZoneList o) { |
| 7019 buildCounterZoneList++; | 7019 buildCounterZoneList++; |
| 7020 if (buildCounterZoneList < 3) { | 7020 if (buildCounterZoneList < 3) { |
| 7021 unittest.expect(o.id, unittest.equals('foo')); | 7021 unittest.expect(o.id, unittest.equals('foo')); |
| 7022 checkUnnamed2185(o.items); | 7022 checkUnnamed2502(o.items); |
| 7023 unittest.expect(o.kind, unittest.equals('foo')); | 7023 unittest.expect(o.kind, unittest.equals('foo')); |
| 7024 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7024 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7025 unittest.expect(o.selfLink, unittest.equals('foo')); | 7025 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7026 } | 7026 } |
| 7027 buildCounterZoneList--; | 7027 buildCounterZoneList--; |
| 7028 } | 7028 } |
| 7029 | 7029 |
| 7030 | 7030 |
| 7031 main() { | 7031 main() { |
| 7032 unittest.group("obj-schema-AccessConfig", () { | 7032 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 10916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17949 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { | 17949 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { |
| 17950 checkZoneList(response); | 17950 checkZoneList(response); |
| 17951 }))); | 17951 }))); |
| 17952 }); | 17952 }); |
| 17953 | 17953 |
| 17954 }); | 17954 }); |
| 17955 | 17955 |
| 17956 | 17956 |
| 17957 } | 17957 } |
| 17958 | 17958 |
| OLD | NEW |