| 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 buildUnnamed514() { | 79 buildUnnamed1648() { |
| 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 checkUnnamed514(core.List<core.String> o) { | 86 checkUnnamed1648(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 = buildUnnamed514(); | 106 o.users = buildUnnamed1648(); |
| 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 checkUnnamed514(o.users); | 124 checkUnnamed1648(o.users); |
| 125 } | 125 } |
| 126 buildCounterAddress--; | 126 buildCounterAddress--; |
| 127 } | 127 } |
| 128 | 128 |
| 129 buildUnnamed515() { | 129 buildUnnamed1649() { |
| 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 checkUnnamed515(core.Map<core.String, api.AddressesScopedList> o) { | 136 checkUnnamed1649(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 = buildUnnamed515(); | 148 o.items = buildUnnamed1649(); |
| 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 checkUnnamed515(o.items); | 161 checkUnnamed1649(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 buildUnnamed516() { | 169 buildUnnamed1650() { |
| 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 checkUnnamed516(core.List<api.Address> o) { | 176 checkUnnamed1650(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 = buildUnnamed516(); | 188 o.items = buildUnnamed1650(); |
| 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 checkUnnamed516(o.items); | 201 checkUnnamed1650(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 buildUnnamed517() { | 209 buildUnnamed1651() { |
| 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 checkUnnamed517(core.List<api.Address> o) { | 216 checkUnnamed1651(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 buildUnnamed518() { | 243 buildUnnamed1652() { |
| 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 checkUnnamed518(core.List<api.AddressesScopedListWarningData> o) { | 250 checkUnnamed1652(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 = buildUnnamed518(); | 262 o.data = buildUnnamed1652(); |
| 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 checkUnnamed518(o.data); | 273 checkUnnamed1652(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 = buildUnnamed517(); | 284 o.addresses = buildUnnamed1651(); |
| 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 checkUnnamed517(o.addresses); | 294 checkUnnamed1651(o.addresses); |
| 295 checkAddressesScopedListWarning(o.warning); | 295 checkAddressesScopedListWarning(o.warning); |
| 296 } | 296 } |
| 297 buildCounterAddressesScopedList--; | 297 buildCounterAddressesScopedList--; |
| 298 } | 298 } |
| 299 | 299 |
| 300 buildUnnamed519() { | 300 buildUnnamed1653() { |
| 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 checkUnnamed519(core.List<core.String> o) { | 307 checkUnnamed1653(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 = buildUnnamed519(); | 325 o.licenses = buildUnnamed1653(); |
| 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 checkUnnamed519(o.licenses); | 344 checkUnnamed1653(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 buildUnnamed520() { | 412 buildUnnamed1654() { |
| 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 checkUnnamed520(core.Map<core.String, api.AutoscalersScopedList> o) { | 419 checkUnnamed1654(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 = buildUnnamed520(); | 431 o.items = buildUnnamed1654(); |
| 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 checkUnnamed520(o.items); | 444 checkUnnamed1654(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 buildUnnamed521() { | 452 buildUnnamed1655() { |
| 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 checkUnnamed521(core.List<api.Autoscaler> o) { | 459 checkUnnamed1655(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 = buildUnnamed521(); | 471 o.items = buildUnnamed1655(); |
| 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 checkUnnamed521(o.items); | 484 checkUnnamed1655(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 buildUnnamed522() { | 492 buildUnnamed1656() { |
| 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 checkUnnamed522(core.List<api.Autoscaler> o) { | 499 checkUnnamed1656(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 buildUnnamed523() { | 526 buildUnnamed1657() { |
| 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 checkUnnamed523(core.List<api.AutoscalersScopedListWarningData> o) { | 533 checkUnnamed1657(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 = buildUnnamed523(); | 545 o.data = buildUnnamed1657(); |
| 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 checkUnnamed523(o.data); | 556 checkUnnamed1657(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 = buildUnnamed522(); | 567 o.autoscalers = buildUnnamed1656(); |
| 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 checkUnnamed522(o.autoscalers); | 577 checkUnnamed1656(o.autoscalers); |
| 578 checkAutoscalersScopedListWarning(o.warning); | 578 checkAutoscalersScopedListWarning(o.warning); |
| 579 } | 579 } |
| 580 buildCounterAutoscalersScopedList--; | 580 buildCounterAutoscalersScopedList--; |
| 581 } | 581 } |
| 582 | 582 |
| 583 buildUnnamed524() { | 583 buildUnnamed1658() { |
| 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 checkUnnamed524(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 590 checkUnnamed1658(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 = buildUnnamed524(); | 603 o.customMetricUtilizations = buildUnnamed1658(); |
| 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 checkUnnamed524(o.customMetricUtilizations); | 617 checkUnnamed1658(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 buildUnnamed525() { | 717 buildUnnamed1659() { |
| 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 checkUnnamed525(core.List<api.Backend> o) { | 724 checkUnnamed1659(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 buildUnnamed526() { | 730 buildUnnamed1660() { |
| 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 checkUnnamed526(core.List<core.String> o) { | 737 checkUnnamed1660(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 = buildUnnamed525(); | 748 o.backends = buildUnnamed1659(); |
| 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 = buildUnnamed526(); | 752 o.healthChecks = buildUnnamed1660(); |
| 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 checkUnnamed525(o.backends); | 769 checkUnnamed1659(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 checkUnnamed526(o.healthChecks); | 773 checkUnnamed1660(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 buildUnnamed527() { | 786 buildUnnamed1661() { |
| 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 checkUnnamed527(core.List<api.HealthStatus> o) { | 793 checkUnnamed1661(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 = buildUnnamed527(); | 804 o.healthStatus = buildUnnamed1661(); |
| 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 checkUnnamed527(o.healthStatus); | 814 checkUnnamed1661(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 buildUnnamed528() { | 820 buildUnnamed1662() { |
| 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 checkUnnamed528(core.List<api.BackendService> o) { | 827 checkUnnamed1662(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 = buildUnnamed528(); | 839 o.items = buildUnnamed1662(); |
| 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 checkUnnamed528(o.items); | 852 checkUnnamed1662(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 buildUnnamed529() { | 887 buildUnnamed1663() { |
| 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 checkUnnamed529(core.List<core.String> o) { | 894 checkUnnamed1663(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 buildUnnamed530() { | 900 buildUnnamed1664() { |
| 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 checkUnnamed530(core.List<core.String> o) { | 907 checkUnnamed1664(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 = buildUnnamed529(); | 924 o.licenses = buildUnnamed1663(); |
| 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 = buildUnnamed530(); | 935 o.users = buildUnnamed1664(); |
| 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 checkUnnamed529(o.licenses); | 951 checkUnnamed1663(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 checkUnnamed530(o.users); | 962 checkUnnamed1664(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 buildUnnamed531() { | 968 buildUnnamed1665() { |
| 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 checkUnnamed531(core.Map<core.String, api.DisksScopedList> o) { | 975 checkUnnamed1665(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 = buildUnnamed531(); | 987 o.items = buildUnnamed1665(); |
| 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 checkUnnamed531(o.items); | 1000 checkUnnamed1665(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 buildUnnamed532() { | 1008 buildUnnamed1666() { |
| 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 checkUnnamed532(core.List<api.Disk> o) { | 1015 checkUnnamed1666(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 = buildUnnamed532(); | 1027 o.items = buildUnnamed1666(); |
| 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 checkUnnamed532(o.items); | 1040 checkUnnamed1666(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 buildUnnamed533() { | 1106 buildUnnamed1667() { |
| 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 checkUnnamed533(core.Map<core.String, api.DiskTypesScopedList> o) { | 1113 checkUnnamed1667(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 = buildUnnamed533(); | 1125 o.items = buildUnnamed1667(); |
| 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 checkUnnamed533(o.items); | 1138 checkUnnamed1667(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 buildUnnamed534() { | 1146 buildUnnamed1668() { |
| 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 checkUnnamed534(core.List<api.DiskType> o) { | 1153 checkUnnamed1668(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 = buildUnnamed534(); | 1165 o.items = buildUnnamed1668(); |
| 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 checkUnnamed534(o.items); | 1178 checkUnnamed1668(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 buildUnnamed535() { | 1186 buildUnnamed1669() { |
| 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 checkUnnamed535(core.List<api.DiskType> o) { | 1193 checkUnnamed1669(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 buildUnnamed536() { | 1220 buildUnnamed1670() { |
| 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 checkUnnamed536(core.List<api.DiskTypesScopedListWarningData> o) { | 1227 checkUnnamed1670(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 = buildUnnamed536(); | 1239 o.data = buildUnnamed1670(); |
| 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 checkUnnamed536(o.data); | 1250 checkUnnamed1670(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 = buildUnnamed535(); | 1261 o.diskTypes = buildUnnamed1669(); |
| 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 checkUnnamed535(o.diskTypes); | 1271 checkUnnamed1669(o.diskTypes); |
| 1272 checkDiskTypesScopedListWarning(o.warning); | 1272 checkDiskTypesScopedListWarning(o.warning); |
| 1273 } | 1273 } |
| 1274 buildCounterDiskTypesScopedList--; | 1274 buildCounterDiskTypesScopedList--; |
| 1275 } | 1275 } |
| 1276 | 1276 |
| 1277 buildUnnamed537() { | 1277 buildUnnamed1671() { |
| 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 checkUnnamed537(core.List<api.Disk> o) { | 1284 checkUnnamed1671(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 buildUnnamed538() { | 1311 buildUnnamed1672() { |
| 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 checkUnnamed538(core.List<api.DisksScopedListWarningData> o) { | 1318 checkUnnamed1672(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 = buildUnnamed538(); | 1330 o.data = buildUnnamed1672(); |
| 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 checkUnnamed538(o.data); | 1341 checkUnnamed1672(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 = buildUnnamed537(); | 1352 o.disks = buildUnnamed1671(); |
| 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 checkUnnamed537(o.disks); | 1362 checkUnnamed1671(o.disks); |
| 1363 checkDisksScopedListWarning(o.warning); | 1363 checkDisksScopedListWarning(o.warning); |
| 1364 } | 1364 } |
| 1365 buildCounterDisksScopedList--; | 1365 buildCounterDisksScopedList--; |
| 1366 } | 1366 } |
| 1367 | 1367 |
| 1368 buildUnnamed539() { | 1368 buildUnnamed1673() { |
| 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 checkUnnamed539(core.List<core.String> o) { | 1375 checkUnnamed1673(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 = buildUnnamed539(); | 1387 o.ports = buildUnnamed1673(); |
| 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 checkUnnamed539(o.ports); | 1397 checkUnnamed1673(o.ports); |
| 1398 } | 1398 } |
| 1399 buildCounterFirewallAllowed--; | 1399 buildCounterFirewallAllowed--; |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 buildUnnamed540() { | 1402 buildUnnamed1674() { |
| 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 checkUnnamed540(core.List<api.FirewallAllowed> o) { | 1409 checkUnnamed1674(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 buildUnnamed541() { | 1415 buildUnnamed1675() { |
| 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 checkUnnamed541(core.List<core.String> o) { | 1422 checkUnnamed1675(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 buildUnnamed542() { | 1428 buildUnnamed1676() { |
| 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 checkUnnamed542(core.List<core.String> o) { | 1435 checkUnnamed1676(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 buildUnnamed543() { | 1441 buildUnnamed1677() { |
| 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 checkUnnamed543(core.List<core.String> o) { | 1448 checkUnnamed1677(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 = buildUnnamed540(); | 1459 o.allowed = buildUnnamed1674(); |
| 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 = buildUnnamed541(); | 1467 o.sourceRanges = buildUnnamed1675(); |
| 1468 o.sourceTags = buildUnnamed542(); | 1468 o.sourceTags = buildUnnamed1676(); |
| 1469 o.targetTags = buildUnnamed543(); | 1469 o.targetTags = buildUnnamed1677(); |
| 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 checkUnnamed540(o.allowed); | 1478 checkUnnamed1674(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 checkUnnamed541(o.sourceRanges); | 1486 checkUnnamed1675(o.sourceRanges); |
| 1487 checkUnnamed542(o.sourceTags); | 1487 checkUnnamed1676(o.sourceTags); |
| 1488 checkUnnamed543(o.targetTags); | 1488 checkUnnamed1677(o.targetTags); |
| 1489 } | 1489 } |
| 1490 buildCounterFirewall--; | 1490 buildCounterFirewall--; |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 buildUnnamed544() { | 1493 buildUnnamed1678() { |
| 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 checkUnnamed544(core.List<api.Firewall> o) { | 1500 checkUnnamed1678(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 = buildUnnamed544(); | 1512 o.items = buildUnnamed1678(); |
| 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 checkUnnamed544(o.items); | 1525 checkUnnamed1678(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 buildUnnamed545() { | 1572 buildUnnamed1679() { |
| 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 checkUnnamed545(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1579 checkUnnamed1679(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 = buildUnnamed545(); | 1591 o.items = buildUnnamed1679(); |
| 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 checkUnnamed545(o.items); | 1604 checkUnnamed1679(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 buildUnnamed546() { | 1612 buildUnnamed1680() { |
| 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 checkUnnamed546(core.List<api.ForwardingRule> o) { | 1619 checkUnnamed1680(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 = buildUnnamed546(); | 1631 o.items = buildUnnamed1680(); |
| 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 checkUnnamed546(o.items); | 1644 checkUnnamed1680(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 buildUnnamed547() { | 1652 buildUnnamed1681() { |
| 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 checkUnnamed547(core.List<api.ForwardingRule> o) { | 1659 checkUnnamed1681(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 buildUnnamed548() { | 1686 buildUnnamed1682() { |
| 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 checkUnnamed548(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1693 checkUnnamed1682(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 = buildUnnamed548(); | 1705 o.data = buildUnnamed1682(); |
| 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 checkUnnamed548(o.data); | 1716 checkUnnamed1682(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 = buildUnnamed547(); | 1727 o.forwardingRules = buildUnnamed1681(); |
| 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 checkUnnamed547(o.forwardingRules); | 1737 checkUnnamed1681(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 buildUnnamed549() { | 1787 buildUnnamed1683() { |
| 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 checkUnnamed549(core.List<core.String> o) { | 1794 checkUnnamed1683(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 = buildUnnamed549(); | 1806 o.hosts = buildUnnamed1683(); |
| 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 checkUnnamed549(o.hosts); | 1817 checkUnnamed1683(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 buildUnnamed550() { | 1866 buildUnnamed1684() { |
| 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 checkUnnamed550(core.List<api.HttpHealthCheck> o) { | 1873 checkUnnamed1684(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 = buildUnnamed550(); | 1885 o.items = buildUnnamed1684(); |
| 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 checkUnnamed550(o.items); | 1898 checkUnnamed1684(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 buildUnnamed551() { | 1906 buildUnnamed1685() { |
| 1907 var o = new core.List<core.String>(); | 1907 var o = new core.List<core.String>(); |
| 1908 o.add("foo"); | 1908 o.add("foo"); |
| 1909 o.add("foo"); | 1909 o.add("foo"); |
| 1910 return o; | 1910 return o; |
| 1911 } | 1911 } |
| 1912 | 1912 |
| 1913 checkUnnamed551(core.List<core.String> o) { | 1913 checkUnnamed1685(core.List<core.String> o) { |
| 1914 unittest.expect(o, unittest.hasLength(2)); | 1914 unittest.expect(o, unittest.hasLength(2)); |
| 1915 unittest.expect(o[0], unittest.equals('foo')); | 1915 unittest.expect(o[0], unittest.equals('foo')); |
| 1916 unittest.expect(o[1], unittest.equals('foo')); | 1916 unittest.expect(o[1], unittest.equals('foo')); |
| 1917 } | 1917 } |
| 1918 | 1918 |
| 1919 core.int buildCounterImageRawDisk = 0; | 1919 core.int buildCounterImageRawDisk = 0; |
| 1920 buildImageRawDisk() { | 1920 buildImageRawDisk() { |
| 1921 var o = new api.ImageRawDisk(); | 1921 var o = new api.ImageRawDisk(); |
| 1922 buildCounterImageRawDisk++; | 1922 buildCounterImageRawDisk++; |
| 1923 if (buildCounterImageRawDisk < 3) { | 1923 if (buildCounterImageRawDisk < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1944 var o = new api.Image(); | 1944 var o = new api.Image(); |
| 1945 buildCounterImage++; | 1945 buildCounterImage++; |
| 1946 if (buildCounterImage < 3) { | 1946 if (buildCounterImage < 3) { |
| 1947 o.archiveSizeBytes = "foo"; | 1947 o.archiveSizeBytes = "foo"; |
| 1948 o.creationTimestamp = "foo"; | 1948 o.creationTimestamp = "foo"; |
| 1949 o.deprecated = buildDeprecationStatus(); | 1949 o.deprecated = buildDeprecationStatus(); |
| 1950 o.description = "foo"; | 1950 o.description = "foo"; |
| 1951 o.diskSizeGb = "foo"; | 1951 o.diskSizeGb = "foo"; |
| 1952 o.id = "foo"; | 1952 o.id = "foo"; |
| 1953 o.kind = "foo"; | 1953 o.kind = "foo"; |
| 1954 o.licenses = buildUnnamed551(); | 1954 o.licenses = buildUnnamed1685(); |
| 1955 o.name = "foo"; | 1955 o.name = "foo"; |
| 1956 o.rawDisk = buildImageRawDisk(); | 1956 o.rawDisk = buildImageRawDisk(); |
| 1957 o.selfLink = "foo"; | 1957 o.selfLink = "foo"; |
| 1958 o.sourceDisk = "foo"; | 1958 o.sourceDisk = "foo"; |
| 1959 o.sourceDiskId = "foo"; | 1959 o.sourceDiskId = "foo"; |
| 1960 o.sourceType = "foo"; | 1960 o.sourceType = "foo"; |
| 1961 o.status = "foo"; | 1961 o.status = "foo"; |
| 1962 } | 1962 } |
| 1963 buildCounterImage--; | 1963 buildCounterImage--; |
| 1964 return o; | 1964 return o; |
| 1965 } | 1965 } |
| 1966 | 1966 |
| 1967 checkImage(api.Image o) { | 1967 checkImage(api.Image o) { |
| 1968 buildCounterImage++; | 1968 buildCounterImage++; |
| 1969 if (buildCounterImage < 3) { | 1969 if (buildCounterImage < 3) { |
| 1970 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 1970 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 1971 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1971 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1972 checkDeprecationStatus(o.deprecated); | 1972 checkDeprecationStatus(o.deprecated); |
| 1973 unittest.expect(o.description, unittest.equals('foo')); | 1973 unittest.expect(o.description, unittest.equals('foo')); |
| 1974 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 1974 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 1975 unittest.expect(o.id, unittest.equals('foo')); | 1975 unittest.expect(o.id, unittest.equals('foo')); |
| 1976 unittest.expect(o.kind, unittest.equals('foo')); | 1976 unittest.expect(o.kind, unittest.equals('foo')); |
| 1977 checkUnnamed551(o.licenses); | 1977 checkUnnamed1685(o.licenses); |
| 1978 unittest.expect(o.name, unittest.equals('foo')); | 1978 unittest.expect(o.name, unittest.equals('foo')); |
| 1979 checkImageRawDisk(o.rawDisk); | 1979 checkImageRawDisk(o.rawDisk); |
| 1980 unittest.expect(o.selfLink, unittest.equals('foo')); | 1980 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1981 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 1981 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 1982 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 1982 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 1983 unittest.expect(o.sourceType, unittest.equals('foo')); | 1983 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 1984 unittest.expect(o.status, unittest.equals('foo')); | 1984 unittest.expect(o.status, unittest.equals('foo')); |
| 1985 } | 1985 } |
| 1986 buildCounterImage--; | 1986 buildCounterImage--; |
| 1987 } | 1987 } |
| 1988 | 1988 |
| 1989 buildUnnamed552() { | 1989 buildUnnamed1686() { |
| 1990 var o = new core.List<api.Image>(); | 1990 var o = new core.List<api.Image>(); |
| 1991 o.add(buildImage()); | 1991 o.add(buildImage()); |
| 1992 o.add(buildImage()); | 1992 o.add(buildImage()); |
| 1993 return o; | 1993 return o; |
| 1994 } | 1994 } |
| 1995 | 1995 |
| 1996 checkUnnamed552(core.List<api.Image> o) { | 1996 checkUnnamed1686(core.List<api.Image> o) { |
| 1997 unittest.expect(o, unittest.hasLength(2)); | 1997 unittest.expect(o, unittest.hasLength(2)); |
| 1998 checkImage(o[0]); | 1998 checkImage(o[0]); |
| 1999 checkImage(o[1]); | 1999 checkImage(o[1]); |
| 2000 } | 2000 } |
| 2001 | 2001 |
| 2002 core.int buildCounterImageList = 0; | 2002 core.int buildCounterImageList = 0; |
| 2003 buildImageList() { | 2003 buildImageList() { |
| 2004 var o = new api.ImageList(); | 2004 var o = new api.ImageList(); |
| 2005 buildCounterImageList++; | 2005 buildCounterImageList++; |
| 2006 if (buildCounterImageList < 3) { | 2006 if (buildCounterImageList < 3) { |
| 2007 o.id = "foo"; | 2007 o.id = "foo"; |
| 2008 o.items = buildUnnamed552(); | 2008 o.items = buildUnnamed1686(); |
| 2009 o.kind = "foo"; | 2009 o.kind = "foo"; |
| 2010 o.nextPageToken = "foo"; | 2010 o.nextPageToken = "foo"; |
| 2011 o.selfLink = "foo"; | 2011 o.selfLink = "foo"; |
| 2012 } | 2012 } |
| 2013 buildCounterImageList--; | 2013 buildCounterImageList--; |
| 2014 return o; | 2014 return o; |
| 2015 } | 2015 } |
| 2016 | 2016 |
| 2017 checkImageList(api.ImageList o) { | 2017 checkImageList(api.ImageList o) { |
| 2018 buildCounterImageList++; | 2018 buildCounterImageList++; |
| 2019 if (buildCounterImageList < 3) { | 2019 if (buildCounterImageList < 3) { |
| 2020 unittest.expect(o.id, unittest.equals('foo')); | 2020 unittest.expect(o.id, unittest.equals('foo')); |
| 2021 checkUnnamed552(o.items); | 2021 checkUnnamed1686(o.items); |
| 2022 unittest.expect(o.kind, unittest.equals('foo')); | 2022 unittest.expect(o.kind, unittest.equals('foo')); |
| 2023 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2023 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2024 unittest.expect(o.selfLink, unittest.equals('foo')); | 2024 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2025 } | 2025 } |
| 2026 buildCounterImageList--; | 2026 buildCounterImageList--; |
| 2027 } | 2027 } |
| 2028 | 2028 |
| 2029 buildUnnamed553() { | 2029 buildUnnamed1687() { |
| 2030 var o = new core.List<api.AttachedDisk>(); | 2030 var o = new core.List<api.AttachedDisk>(); |
| 2031 o.add(buildAttachedDisk()); | 2031 o.add(buildAttachedDisk()); |
| 2032 o.add(buildAttachedDisk()); | 2032 o.add(buildAttachedDisk()); |
| 2033 return o; | 2033 return o; |
| 2034 } | 2034 } |
| 2035 | 2035 |
| 2036 checkUnnamed553(core.List<api.AttachedDisk> o) { | 2036 checkUnnamed1687(core.List<api.AttachedDisk> o) { |
| 2037 unittest.expect(o, unittest.hasLength(2)); | 2037 unittest.expect(o, unittest.hasLength(2)); |
| 2038 checkAttachedDisk(o[0]); | 2038 checkAttachedDisk(o[0]); |
| 2039 checkAttachedDisk(o[1]); | 2039 checkAttachedDisk(o[1]); |
| 2040 } | 2040 } |
| 2041 | 2041 |
| 2042 buildUnnamed554() { | 2042 buildUnnamed1688() { |
| 2043 var o = new core.List<api.NetworkInterface>(); | 2043 var o = new core.List<api.NetworkInterface>(); |
| 2044 o.add(buildNetworkInterface()); | 2044 o.add(buildNetworkInterface()); |
| 2045 o.add(buildNetworkInterface()); | 2045 o.add(buildNetworkInterface()); |
| 2046 return o; | 2046 return o; |
| 2047 } | 2047 } |
| 2048 | 2048 |
| 2049 checkUnnamed554(core.List<api.NetworkInterface> o) { | 2049 checkUnnamed1688(core.List<api.NetworkInterface> o) { |
| 2050 unittest.expect(o, unittest.hasLength(2)); | 2050 unittest.expect(o, unittest.hasLength(2)); |
| 2051 checkNetworkInterface(o[0]); | 2051 checkNetworkInterface(o[0]); |
| 2052 checkNetworkInterface(o[1]); | 2052 checkNetworkInterface(o[1]); |
| 2053 } | 2053 } |
| 2054 | 2054 |
| 2055 buildUnnamed555() { | 2055 buildUnnamed1689() { |
| 2056 var o = new core.List<api.ServiceAccount>(); | 2056 var o = new core.List<api.ServiceAccount>(); |
| 2057 o.add(buildServiceAccount()); | 2057 o.add(buildServiceAccount()); |
| 2058 o.add(buildServiceAccount()); | 2058 o.add(buildServiceAccount()); |
| 2059 return o; | 2059 return o; |
| 2060 } | 2060 } |
| 2061 | 2061 |
| 2062 checkUnnamed555(core.List<api.ServiceAccount> o) { | 2062 checkUnnamed1689(core.List<api.ServiceAccount> o) { |
| 2063 unittest.expect(o, unittest.hasLength(2)); | 2063 unittest.expect(o, unittest.hasLength(2)); |
| 2064 checkServiceAccount(o[0]); | 2064 checkServiceAccount(o[0]); |
| 2065 checkServiceAccount(o[1]); | 2065 checkServiceAccount(o[1]); |
| 2066 } | 2066 } |
| 2067 | 2067 |
| 2068 core.int buildCounterInstance = 0; | 2068 core.int buildCounterInstance = 0; |
| 2069 buildInstance() { | 2069 buildInstance() { |
| 2070 var o = new api.Instance(); | 2070 var o = new api.Instance(); |
| 2071 buildCounterInstance++; | 2071 buildCounterInstance++; |
| 2072 if (buildCounterInstance < 3) { | 2072 if (buildCounterInstance < 3) { |
| 2073 o.canIpForward = true; | 2073 o.canIpForward = true; |
| 2074 o.cpuPlatform = "foo"; | 2074 o.cpuPlatform = "foo"; |
| 2075 o.creationTimestamp = "foo"; | 2075 o.creationTimestamp = "foo"; |
| 2076 o.description = "foo"; | 2076 o.description = "foo"; |
| 2077 o.disks = buildUnnamed553(); | 2077 o.disks = buildUnnamed1687(); |
| 2078 o.id = "foo"; | 2078 o.id = "foo"; |
| 2079 o.kind = "foo"; | 2079 o.kind = "foo"; |
| 2080 o.machineType = "foo"; | 2080 o.machineType = "foo"; |
| 2081 o.metadata = buildMetadata(); | 2081 o.metadata = buildMetadata(); |
| 2082 o.name = "foo"; | 2082 o.name = "foo"; |
| 2083 o.networkInterfaces = buildUnnamed554(); | 2083 o.networkInterfaces = buildUnnamed1688(); |
| 2084 o.scheduling = buildScheduling(); | 2084 o.scheduling = buildScheduling(); |
| 2085 o.selfLink = "foo"; | 2085 o.selfLink = "foo"; |
| 2086 o.serviceAccounts = buildUnnamed555(); | 2086 o.serviceAccounts = buildUnnamed1689(); |
| 2087 o.status = "foo"; | 2087 o.status = "foo"; |
| 2088 o.statusMessage = "foo"; | 2088 o.statusMessage = "foo"; |
| 2089 o.tags = buildTags(); | 2089 o.tags = buildTags(); |
| 2090 o.zone = "foo"; | 2090 o.zone = "foo"; |
| 2091 } | 2091 } |
| 2092 buildCounterInstance--; | 2092 buildCounterInstance--; |
| 2093 return o; | 2093 return o; |
| 2094 } | 2094 } |
| 2095 | 2095 |
| 2096 checkInstance(api.Instance o) { | 2096 checkInstance(api.Instance o) { |
| 2097 buildCounterInstance++; | 2097 buildCounterInstance++; |
| 2098 if (buildCounterInstance < 3) { | 2098 if (buildCounterInstance < 3) { |
| 2099 unittest.expect(o.canIpForward, unittest.isTrue); | 2099 unittest.expect(o.canIpForward, unittest.isTrue); |
| 2100 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 2100 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 2101 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2101 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2102 unittest.expect(o.description, unittest.equals('foo')); | 2102 unittest.expect(o.description, unittest.equals('foo')); |
| 2103 checkUnnamed553(o.disks); | 2103 checkUnnamed1687(o.disks); |
| 2104 unittest.expect(o.id, unittest.equals('foo')); | 2104 unittest.expect(o.id, unittest.equals('foo')); |
| 2105 unittest.expect(o.kind, unittest.equals('foo')); | 2105 unittest.expect(o.kind, unittest.equals('foo')); |
| 2106 unittest.expect(o.machineType, unittest.equals('foo')); | 2106 unittest.expect(o.machineType, unittest.equals('foo')); |
| 2107 checkMetadata(o.metadata); | 2107 checkMetadata(o.metadata); |
| 2108 unittest.expect(o.name, unittest.equals('foo')); | 2108 unittest.expect(o.name, unittest.equals('foo')); |
| 2109 checkUnnamed554(o.networkInterfaces); | 2109 checkUnnamed1688(o.networkInterfaces); |
| 2110 checkScheduling(o.scheduling); | 2110 checkScheduling(o.scheduling); |
| 2111 unittest.expect(o.selfLink, unittest.equals('foo')); | 2111 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2112 checkUnnamed555(o.serviceAccounts); | 2112 checkUnnamed1689(o.serviceAccounts); |
| 2113 unittest.expect(o.status, unittest.equals('foo')); | 2113 unittest.expect(o.status, unittest.equals('foo')); |
| 2114 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2114 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2115 checkTags(o.tags); | 2115 checkTags(o.tags); |
| 2116 unittest.expect(o.zone, unittest.equals('foo')); | 2116 unittest.expect(o.zone, unittest.equals('foo')); |
| 2117 } | 2117 } |
| 2118 buildCounterInstance--; | 2118 buildCounterInstance--; |
| 2119 } | 2119 } |
| 2120 | 2120 |
| 2121 buildUnnamed556() { | 2121 buildUnnamed1690() { |
| 2122 var o = new core.Map<core.String, api.InstancesScopedList>(); | 2122 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 2123 o["x"] = buildInstancesScopedList(); | 2123 o["x"] = buildInstancesScopedList(); |
| 2124 o["y"] = buildInstancesScopedList(); | 2124 o["y"] = buildInstancesScopedList(); |
| 2125 return o; | 2125 return o; |
| 2126 } | 2126 } |
| 2127 | 2127 |
| 2128 checkUnnamed556(core.Map<core.String, api.InstancesScopedList> o) { | 2128 checkUnnamed1690(core.Map<core.String, api.InstancesScopedList> o) { |
| 2129 unittest.expect(o, unittest.hasLength(2)); | 2129 unittest.expect(o, unittest.hasLength(2)); |
| 2130 checkInstancesScopedList(o["x"]); | 2130 checkInstancesScopedList(o["x"]); |
| 2131 checkInstancesScopedList(o["y"]); | 2131 checkInstancesScopedList(o["y"]); |
| 2132 } | 2132 } |
| 2133 | 2133 |
| 2134 core.int buildCounterInstanceAggregatedList = 0; | 2134 core.int buildCounterInstanceAggregatedList = 0; |
| 2135 buildInstanceAggregatedList() { | 2135 buildInstanceAggregatedList() { |
| 2136 var o = new api.InstanceAggregatedList(); | 2136 var o = new api.InstanceAggregatedList(); |
| 2137 buildCounterInstanceAggregatedList++; | 2137 buildCounterInstanceAggregatedList++; |
| 2138 if (buildCounterInstanceAggregatedList < 3) { | 2138 if (buildCounterInstanceAggregatedList < 3) { |
| 2139 o.id = "foo"; | 2139 o.id = "foo"; |
| 2140 o.items = buildUnnamed556(); | 2140 o.items = buildUnnamed1690(); |
| 2141 o.kind = "foo"; | 2141 o.kind = "foo"; |
| 2142 o.nextPageToken = "foo"; | 2142 o.nextPageToken = "foo"; |
| 2143 o.selfLink = "foo"; | 2143 o.selfLink = "foo"; |
| 2144 } | 2144 } |
| 2145 buildCounterInstanceAggregatedList--; | 2145 buildCounterInstanceAggregatedList--; |
| 2146 return o; | 2146 return o; |
| 2147 } | 2147 } |
| 2148 | 2148 |
| 2149 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 2149 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 2150 buildCounterInstanceAggregatedList++; | 2150 buildCounterInstanceAggregatedList++; |
| 2151 if (buildCounterInstanceAggregatedList < 3) { | 2151 if (buildCounterInstanceAggregatedList < 3) { |
| 2152 unittest.expect(o.id, unittest.equals('foo')); | 2152 unittest.expect(o.id, unittest.equals('foo')); |
| 2153 checkUnnamed556(o.items); | 2153 checkUnnamed1690(o.items); |
| 2154 unittest.expect(o.kind, unittest.equals('foo')); | 2154 unittest.expect(o.kind, unittest.equals('foo')); |
| 2155 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2155 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2156 unittest.expect(o.selfLink, unittest.equals('foo')); | 2156 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2157 } | 2157 } |
| 2158 buildCounterInstanceAggregatedList--; | 2158 buildCounterInstanceAggregatedList--; |
| 2159 } | 2159 } |
| 2160 | 2160 |
| 2161 buildUnnamed557() { | 2161 buildUnnamed1691() { |
| 2162 var o = new core.List<api.NamedPort>(); | 2162 var o = new core.List<api.NamedPort>(); |
| 2163 o.add(buildNamedPort()); | 2163 o.add(buildNamedPort()); |
| 2164 o.add(buildNamedPort()); | 2164 o.add(buildNamedPort()); |
| 2165 return o; | 2165 return o; |
| 2166 } | 2166 } |
| 2167 | 2167 |
| 2168 checkUnnamed557(core.List<api.NamedPort> o) { | 2168 checkUnnamed1691(core.List<api.NamedPort> o) { |
| 2169 unittest.expect(o, unittest.hasLength(2)); | 2169 unittest.expect(o, unittest.hasLength(2)); |
| 2170 checkNamedPort(o[0]); | 2170 checkNamedPort(o[0]); |
| 2171 checkNamedPort(o[1]); | 2171 checkNamedPort(o[1]); |
| 2172 } | 2172 } |
| 2173 | 2173 |
| 2174 core.int buildCounterInstanceGroup = 0; | 2174 core.int buildCounterInstanceGroup = 0; |
| 2175 buildInstanceGroup() { | 2175 buildInstanceGroup() { |
| 2176 var o = new api.InstanceGroup(); | 2176 var o = new api.InstanceGroup(); |
| 2177 buildCounterInstanceGroup++; | 2177 buildCounterInstanceGroup++; |
| 2178 if (buildCounterInstanceGroup < 3) { | 2178 if (buildCounterInstanceGroup < 3) { |
| 2179 o.creationTimestamp = "foo"; | 2179 o.creationTimestamp = "foo"; |
| 2180 o.description = "foo"; | 2180 o.description = "foo"; |
| 2181 o.fingerprint = "foo"; | 2181 o.fingerprint = "foo"; |
| 2182 o.id = "foo"; | 2182 o.id = "foo"; |
| 2183 o.kind = "foo"; | 2183 o.kind = "foo"; |
| 2184 o.name = "foo"; | 2184 o.name = "foo"; |
| 2185 o.namedPorts = buildUnnamed557(); | 2185 o.namedPorts = buildUnnamed1691(); |
| 2186 o.network = "foo"; | 2186 o.network = "foo"; |
| 2187 o.selfLink = "foo"; | 2187 o.selfLink = "foo"; |
| 2188 o.size = 42; | 2188 o.size = 42; |
| 2189 o.zone = "foo"; | 2189 o.zone = "foo"; |
| 2190 } | 2190 } |
| 2191 buildCounterInstanceGroup--; | 2191 buildCounterInstanceGroup--; |
| 2192 return o; | 2192 return o; |
| 2193 } | 2193 } |
| 2194 | 2194 |
| 2195 checkInstanceGroup(api.InstanceGroup o) { | 2195 checkInstanceGroup(api.InstanceGroup o) { |
| 2196 buildCounterInstanceGroup++; | 2196 buildCounterInstanceGroup++; |
| 2197 if (buildCounterInstanceGroup < 3) { | 2197 if (buildCounterInstanceGroup < 3) { |
| 2198 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2198 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2199 unittest.expect(o.description, unittest.equals('foo')); | 2199 unittest.expect(o.description, unittest.equals('foo')); |
| 2200 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2200 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2201 unittest.expect(o.id, unittest.equals('foo')); | 2201 unittest.expect(o.id, unittest.equals('foo')); |
| 2202 unittest.expect(o.kind, unittest.equals('foo')); | 2202 unittest.expect(o.kind, unittest.equals('foo')); |
| 2203 unittest.expect(o.name, unittest.equals('foo')); | 2203 unittest.expect(o.name, unittest.equals('foo')); |
| 2204 checkUnnamed557(o.namedPorts); | 2204 checkUnnamed1691(o.namedPorts); |
| 2205 unittest.expect(o.network, unittest.equals('foo')); | 2205 unittest.expect(o.network, unittest.equals('foo')); |
| 2206 unittest.expect(o.selfLink, unittest.equals('foo')); | 2206 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2207 unittest.expect(o.size, unittest.equals(42)); | 2207 unittest.expect(o.size, unittest.equals(42)); |
| 2208 unittest.expect(o.zone, unittest.equals('foo')); | 2208 unittest.expect(o.zone, unittest.equals('foo')); |
| 2209 } | 2209 } |
| 2210 buildCounterInstanceGroup--; | 2210 buildCounterInstanceGroup--; |
| 2211 } | 2211 } |
| 2212 | 2212 |
| 2213 buildUnnamed558() { | 2213 buildUnnamed1692() { |
| 2214 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 2214 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 2215 o["x"] = buildInstanceGroupsScopedList(); | 2215 o["x"] = buildInstanceGroupsScopedList(); |
| 2216 o["y"] = buildInstanceGroupsScopedList(); | 2216 o["y"] = buildInstanceGroupsScopedList(); |
| 2217 return o; | 2217 return o; |
| 2218 } | 2218 } |
| 2219 | 2219 |
| 2220 checkUnnamed558(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 2220 checkUnnamed1692(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 2221 unittest.expect(o, unittest.hasLength(2)); | 2221 unittest.expect(o, unittest.hasLength(2)); |
| 2222 checkInstanceGroupsScopedList(o["x"]); | 2222 checkInstanceGroupsScopedList(o["x"]); |
| 2223 checkInstanceGroupsScopedList(o["y"]); | 2223 checkInstanceGroupsScopedList(o["y"]); |
| 2224 } | 2224 } |
| 2225 | 2225 |
| 2226 core.int buildCounterInstanceGroupAggregatedList = 0; | 2226 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 2227 buildInstanceGroupAggregatedList() { | 2227 buildInstanceGroupAggregatedList() { |
| 2228 var o = new api.InstanceGroupAggregatedList(); | 2228 var o = new api.InstanceGroupAggregatedList(); |
| 2229 buildCounterInstanceGroupAggregatedList++; | 2229 buildCounterInstanceGroupAggregatedList++; |
| 2230 if (buildCounterInstanceGroupAggregatedList < 3) { | 2230 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2231 o.id = "foo"; | 2231 o.id = "foo"; |
| 2232 o.items = buildUnnamed558(); | 2232 o.items = buildUnnamed1692(); |
| 2233 o.kind = "foo"; | 2233 o.kind = "foo"; |
| 2234 o.nextPageToken = "foo"; | 2234 o.nextPageToken = "foo"; |
| 2235 o.selfLink = "foo"; | 2235 o.selfLink = "foo"; |
| 2236 } | 2236 } |
| 2237 buildCounterInstanceGroupAggregatedList--; | 2237 buildCounterInstanceGroupAggregatedList--; |
| 2238 return o; | 2238 return o; |
| 2239 } | 2239 } |
| 2240 | 2240 |
| 2241 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 2241 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 2242 buildCounterInstanceGroupAggregatedList++; | 2242 buildCounterInstanceGroupAggregatedList++; |
| 2243 if (buildCounterInstanceGroupAggregatedList < 3) { | 2243 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2244 unittest.expect(o.id, unittest.equals('foo')); | 2244 unittest.expect(o.id, unittest.equals('foo')); |
| 2245 checkUnnamed558(o.items); | 2245 checkUnnamed1692(o.items); |
| 2246 unittest.expect(o.kind, unittest.equals('foo')); | 2246 unittest.expect(o.kind, unittest.equals('foo')); |
| 2247 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2247 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2248 unittest.expect(o.selfLink, unittest.equals('foo')); | 2248 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2249 } | 2249 } |
| 2250 buildCounterInstanceGroupAggregatedList--; | 2250 buildCounterInstanceGroupAggregatedList--; |
| 2251 } | 2251 } |
| 2252 | 2252 |
| 2253 buildUnnamed559() { | 2253 buildUnnamed1693() { |
| 2254 var o = new core.List<api.InstanceGroup>(); | 2254 var o = new core.List<api.InstanceGroup>(); |
| 2255 o.add(buildInstanceGroup()); | 2255 o.add(buildInstanceGroup()); |
| 2256 o.add(buildInstanceGroup()); | 2256 o.add(buildInstanceGroup()); |
| 2257 return o; | 2257 return o; |
| 2258 } | 2258 } |
| 2259 | 2259 |
| 2260 checkUnnamed559(core.List<api.InstanceGroup> o) { | 2260 checkUnnamed1693(core.List<api.InstanceGroup> o) { |
| 2261 unittest.expect(o, unittest.hasLength(2)); | 2261 unittest.expect(o, unittest.hasLength(2)); |
| 2262 checkInstanceGroup(o[0]); | 2262 checkInstanceGroup(o[0]); |
| 2263 checkInstanceGroup(o[1]); | 2263 checkInstanceGroup(o[1]); |
| 2264 } | 2264 } |
| 2265 | 2265 |
| 2266 core.int buildCounterInstanceGroupList = 0; | 2266 core.int buildCounterInstanceGroupList = 0; |
| 2267 buildInstanceGroupList() { | 2267 buildInstanceGroupList() { |
| 2268 var o = new api.InstanceGroupList(); | 2268 var o = new api.InstanceGroupList(); |
| 2269 buildCounterInstanceGroupList++; | 2269 buildCounterInstanceGroupList++; |
| 2270 if (buildCounterInstanceGroupList < 3) { | 2270 if (buildCounterInstanceGroupList < 3) { |
| 2271 o.id = "foo"; | 2271 o.id = "foo"; |
| 2272 o.items = buildUnnamed559(); | 2272 o.items = buildUnnamed1693(); |
| 2273 o.kind = "foo"; | 2273 o.kind = "foo"; |
| 2274 o.nextPageToken = "foo"; | 2274 o.nextPageToken = "foo"; |
| 2275 o.selfLink = "foo"; | 2275 o.selfLink = "foo"; |
| 2276 } | 2276 } |
| 2277 buildCounterInstanceGroupList--; | 2277 buildCounterInstanceGroupList--; |
| 2278 return o; | 2278 return o; |
| 2279 } | 2279 } |
| 2280 | 2280 |
| 2281 checkInstanceGroupList(api.InstanceGroupList o) { | 2281 checkInstanceGroupList(api.InstanceGroupList o) { |
| 2282 buildCounterInstanceGroupList++; | 2282 buildCounterInstanceGroupList++; |
| 2283 if (buildCounterInstanceGroupList < 3) { | 2283 if (buildCounterInstanceGroupList < 3) { |
| 2284 unittest.expect(o.id, unittest.equals('foo')); | 2284 unittest.expect(o.id, unittest.equals('foo')); |
| 2285 checkUnnamed559(o.items); | 2285 checkUnnamed1693(o.items); |
| 2286 unittest.expect(o.kind, unittest.equals('foo')); | 2286 unittest.expect(o.kind, unittest.equals('foo')); |
| 2287 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2287 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2288 unittest.expect(o.selfLink, unittest.equals('foo')); | 2288 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2289 } | 2289 } |
| 2290 buildCounterInstanceGroupList--; | 2290 buildCounterInstanceGroupList--; |
| 2291 } | 2291 } |
| 2292 | 2292 |
| 2293 buildUnnamed560() { | 2293 buildUnnamed1694() { |
| 2294 var o = new core.List<api.InstanceGroupManagerAutoHealingPolicy>(); | 2294 var o = new core.List<api.InstanceGroupManagerAutoHealingPolicy>(); |
| 2295 o.add(buildInstanceGroupManagerAutoHealingPolicy()); | 2295 o.add(buildInstanceGroupManagerAutoHealingPolicy()); |
| 2296 o.add(buildInstanceGroupManagerAutoHealingPolicy()); | 2296 o.add(buildInstanceGroupManagerAutoHealingPolicy()); |
| 2297 return o; | 2297 return o; |
| 2298 } | 2298 } |
| 2299 | 2299 |
| 2300 checkUnnamed560(core.List<api.InstanceGroupManagerAutoHealingPolicy> o) { | 2300 checkUnnamed1694(core.List<api.InstanceGroupManagerAutoHealingPolicy> o) { |
| 2301 unittest.expect(o, unittest.hasLength(2)); | 2301 unittest.expect(o, unittest.hasLength(2)); |
| 2302 checkInstanceGroupManagerAutoHealingPolicy(o[0]); | 2302 checkInstanceGroupManagerAutoHealingPolicy(o[0]); |
| 2303 checkInstanceGroupManagerAutoHealingPolicy(o[1]); | 2303 checkInstanceGroupManagerAutoHealingPolicy(o[1]); |
| 2304 } | 2304 } |
| 2305 | 2305 |
| 2306 buildUnnamed561() { | 2306 buildUnnamed1695() { |
| 2307 var o = new core.List<core.String>(); | 2307 var o = new core.List<core.String>(); |
| 2308 o.add("foo"); | 2308 o.add("foo"); |
| 2309 o.add("foo"); | 2309 o.add("foo"); |
| 2310 return o; | 2310 return o; |
| 2311 } | 2311 } |
| 2312 | 2312 |
| 2313 checkUnnamed561(core.List<core.String> o) { | 2313 checkUnnamed1695(core.List<core.String> o) { |
| 2314 unittest.expect(o, unittest.hasLength(2)); | 2314 unittest.expect(o, unittest.hasLength(2)); |
| 2315 unittest.expect(o[0], unittest.equals('foo')); | 2315 unittest.expect(o[0], unittest.equals('foo')); |
| 2316 unittest.expect(o[1], unittest.equals('foo')); | 2316 unittest.expect(o[1], unittest.equals('foo')); |
| 2317 } | 2317 } |
| 2318 | 2318 |
| 2319 core.int buildCounterInstanceGroupManager = 0; | 2319 core.int buildCounterInstanceGroupManager = 0; |
| 2320 buildInstanceGroupManager() { | 2320 buildInstanceGroupManager() { |
| 2321 var o = new api.InstanceGroupManager(); | 2321 var o = new api.InstanceGroupManager(); |
| 2322 buildCounterInstanceGroupManager++; | 2322 buildCounterInstanceGroupManager++; |
| 2323 if (buildCounterInstanceGroupManager < 3) { | 2323 if (buildCounterInstanceGroupManager < 3) { |
| 2324 o.autoHealingPolicies = buildUnnamed560(); | 2324 o.autoHealingPolicies = buildUnnamed1694(); |
| 2325 o.baseInstanceName = "foo"; | 2325 o.baseInstanceName = "foo"; |
| 2326 o.creationTimestamp = "foo"; | 2326 o.creationTimestamp = "foo"; |
| 2327 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 2327 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 2328 o.description = "foo"; | 2328 o.description = "foo"; |
| 2329 o.fingerprint = "foo"; | 2329 o.fingerprint = "foo"; |
| 2330 o.id = "foo"; | 2330 o.id = "foo"; |
| 2331 o.instanceGroup = "foo"; | 2331 o.instanceGroup = "foo"; |
| 2332 o.instanceTemplate = "foo"; | 2332 o.instanceTemplate = "foo"; |
| 2333 o.kind = "foo"; | 2333 o.kind = "foo"; |
| 2334 o.name = "foo"; | 2334 o.name = "foo"; |
| 2335 o.selfLink = "foo"; | 2335 o.selfLink = "foo"; |
| 2336 o.targetPools = buildUnnamed561(); | 2336 o.targetPools = buildUnnamed1695(); |
| 2337 o.targetSize = 42; | 2337 o.targetSize = 42; |
| 2338 o.zone = "foo"; | 2338 o.zone = "foo"; |
| 2339 } | 2339 } |
| 2340 buildCounterInstanceGroupManager--; | 2340 buildCounterInstanceGroupManager--; |
| 2341 return o; | 2341 return o; |
| 2342 } | 2342 } |
| 2343 | 2343 |
| 2344 checkInstanceGroupManager(api.InstanceGroupManager o) { | 2344 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 2345 buildCounterInstanceGroupManager++; | 2345 buildCounterInstanceGroupManager++; |
| 2346 if (buildCounterInstanceGroupManager < 3) { | 2346 if (buildCounterInstanceGroupManager < 3) { |
| 2347 checkUnnamed560(o.autoHealingPolicies); | 2347 checkUnnamed1694(o.autoHealingPolicies); |
| 2348 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 2348 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 2349 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2349 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2350 checkInstanceGroupManagerActionsSummary(o.currentActions); | 2350 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 2351 unittest.expect(o.description, unittest.equals('foo')); | 2351 unittest.expect(o.description, unittest.equals('foo')); |
| 2352 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2352 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2353 unittest.expect(o.id, unittest.equals('foo')); | 2353 unittest.expect(o.id, unittest.equals('foo')); |
| 2354 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 2354 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 2355 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2355 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2356 unittest.expect(o.kind, unittest.equals('foo')); | 2356 unittest.expect(o.kind, unittest.equals('foo')); |
| 2357 unittest.expect(o.name, unittest.equals('foo')); | 2357 unittest.expect(o.name, unittest.equals('foo')); |
| 2358 unittest.expect(o.selfLink, unittest.equals('foo')); | 2358 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2359 checkUnnamed561(o.targetPools); | 2359 checkUnnamed1695(o.targetPools); |
| 2360 unittest.expect(o.targetSize, unittest.equals(42)); | 2360 unittest.expect(o.targetSize, unittest.equals(42)); |
| 2361 unittest.expect(o.zone, unittest.equals('foo')); | 2361 unittest.expect(o.zone, unittest.equals('foo')); |
| 2362 } | 2362 } |
| 2363 buildCounterInstanceGroupManager--; | 2363 buildCounterInstanceGroupManager--; |
| 2364 } | 2364 } |
| 2365 | 2365 |
| 2366 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 2366 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 2367 buildInstanceGroupManagerActionsSummary() { | 2367 buildInstanceGroupManagerActionsSummary() { |
| 2368 var o = new api.InstanceGroupManagerActionsSummary(); | 2368 var o = new api.InstanceGroupManagerActionsSummary(); |
| 2369 buildCounterInstanceGroupManagerActionsSummary++; | 2369 buildCounterInstanceGroupManagerActionsSummary++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 2387 unittest.expect(o.creating, unittest.equals(42)); | 2387 unittest.expect(o.creating, unittest.equals(42)); |
| 2388 unittest.expect(o.deleting, unittest.equals(42)); | 2388 unittest.expect(o.deleting, unittest.equals(42)); |
| 2389 unittest.expect(o.none, unittest.equals(42)); | 2389 unittest.expect(o.none, unittest.equals(42)); |
| 2390 unittest.expect(o.recreating, unittest.equals(42)); | 2390 unittest.expect(o.recreating, unittest.equals(42)); |
| 2391 unittest.expect(o.refreshing, unittest.equals(42)); | 2391 unittest.expect(o.refreshing, unittest.equals(42)); |
| 2392 unittest.expect(o.restarting, unittest.equals(42)); | 2392 unittest.expect(o.restarting, unittest.equals(42)); |
| 2393 } | 2393 } |
| 2394 buildCounterInstanceGroupManagerActionsSummary--; | 2394 buildCounterInstanceGroupManagerActionsSummary--; |
| 2395 } | 2395 } |
| 2396 | 2396 |
| 2397 buildUnnamed562() { | 2397 buildUnnamed1696() { |
| 2398 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 2398 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 2399 o["x"] = buildInstanceGroupManagersScopedList(); | 2399 o["x"] = buildInstanceGroupManagersScopedList(); |
| 2400 o["y"] = buildInstanceGroupManagersScopedList(); | 2400 o["y"] = buildInstanceGroupManagersScopedList(); |
| 2401 return o; | 2401 return o; |
| 2402 } | 2402 } |
| 2403 | 2403 |
| 2404 checkUnnamed562(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 2404 checkUnnamed1696(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 2405 unittest.expect(o, unittest.hasLength(2)); | 2405 unittest.expect(o, unittest.hasLength(2)); |
| 2406 checkInstanceGroupManagersScopedList(o["x"]); | 2406 checkInstanceGroupManagersScopedList(o["x"]); |
| 2407 checkInstanceGroupManagersScopedList(o["y"]); | 2407 checkInstanceGroupManagersScopedList(o["y"]); |
| 2408 } | 2408 } |
| 2409 | 2409 |
| 2410 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 2410 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 2411 buildInstanceGroupManagerAggregatedList() { | 2411 buildInstanceGroupManagerAggregatedList() { |
| 2412 var o = new api.InstanceGroupManagerAggregatedList(); | 2412 var o = new api.InstanceGroupManagerAggregatedList(); |
| 2413 buildCounterInstanceGroupManagerAggregatedList++; | 2413 buildCounterInstanceGroupManagerAggregatedList++; |
| 2414 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2414 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2415 o.id = "foo"; | 2415 o.id = "foo"; |
| 2416 o.items = buildUnnamed562(); | 2416 o.items = buildUnnamed1696(); |
| 2417 o.kind = "foo"; | 2417 o.kind = "foo"; |
| 2418 o.nextPageToken = "foo"; | 2418 o.nextPageToken = "foo"; |
| 2419 o.selfLink = "foo"; | 2419 o.selfLink = "foo"; |
| 2420 } | 2420 } |
| 2421 buildCounterInstanceGroupManagerAggregatedList--; | 2421 buildCounterInstanceGroupManagerAggregatedList--; |
| 2422 return o; | 2422 return o; |
| 2423 } | 2423 } |
| 2424 | 2424 |
| 2425 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 2425 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 2426 buildCounterInstanceGroupManagerAggregatedList++; | 2426 buildCounterInstanceGroupManagerAggregatedList++; |
| 2427 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2427 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2428 unittest.expect(o.id, unittest.equals('foo')); | 2428 unittest.expect(o.id, unittest.equals('foo')); |
| 2429 checkUnnamed562(o.items); | 2429 checkUnnamed1696(o.items); |
| 2430 unittest.expect(o.kind, unittest.equals('foo')); | 2430 unittest.expect(o.kind, unittest.equals('foo')); |
| 2431 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2431 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2432 unittest.expect(o.selfLink, unittest.equals('foo')); | 2432 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2433 } | 2433 } |
| 2434 buildCounterInstanceGroupManagerAggregatedList--; | 2434 buildCounterInstanceGroupManagerAggregatedList--; |
| 2435 } | 2435 } |
| 2436 | 2436 |
| 2437 core.int buildCounterInstanceGroupManagerAutoHealingPolicy = 0; | 2437 core.int buildCounterInstanceGroupManagerAutoHealingPolicy = 0; |
| 2438 buildInstanceGroupManagerAutoHealingPolicy() { | 2438 buildInstanceGroupManagerAutoHealingPolicy() { |
| 2439 var o = new api.InstanceGroupManagerAutoHealingPolicy(); | 2439 var o = new api.InstanceGroupManagerAutoHealingPolicy(); |
| 2440 buildCounterInstanceGroupManagerAutoHealingPolicy++; | 2440 buildCounterInstanceGroupManagerAutoHealingPolicy++; |
| 2441 if (buildCounterInstanceGroupManagerAutoHealingPolicy < 3) { | 2441 if (buildCounterInstanceGroupManagerAutoHealingPolicy < 3) { |
| 2442 o.actionType = "foo"; | 2442 o.actionType = "foo"; |
| 2443 o.healthCheck = "foo"; | 2443 o.healthCheck = "foo"; |
| 2444 } | 2444 } |
| 2445 buildCounterInstanceGroupManagerAutoHealingPolicy--; | 2445 buildCounterInstanceGroupManagerAutoHealingPolicy--; |
| 2446 return o; | 2446 return o; |
| 2447 } | 2447 } |
| 2448 | 2448 |
| 2449 checkInstanceGroupManagerAutoHealingPolicy(api.InstanceGroupManagerAutoHealingPo
licy o) { | 2449 checkInstanceGroupManagerAutoHealingPolicy(api.InstanceGroupManagerAutoHealingPo
licy o) { |
| 2450 buildCounterInstanceGroupManagerAutoHealingPolicy++; | 2450 buildCounterInstanceGroupManagerAutoHealingPolicy++; |
| 2451 if (buildCounterInstanceGroupManagerAutoHealingPolicy < 3) { | 2451 if (buildCounterInstanceGroupManagerAutoHealingPolicy < 3) { |
| 2452 unittest.expect(o.actionType, unittest.equals('foo')); | 2452 unittest.expect(o.actionType, unittest.equals('foo')); |
| 2453 unittest.expect(o.healthCheck, unittest.equals('foo')); | 2453 unittest.expect(o.healthCheck, unittest.equals('foo')); |
| 2454 } | 2454 } |
| 2455 buildCounterInstanceGroupManagerAutoHealingPolicy--; | 2455 buildCounterInstanceGroupManagerAutoHealingPolicy--; |
| 2456 } | 2456 } |
| 2457 | 2457 |
| 2458 buildUnnamed563() { | 2458 buildUnnamed1697() { |
| 2459 var o = new core.List<api.InstanceGroupManager>(); | 2459 var o = new core.List<api.InstanceGroupManager>(); |
| 2460 o.add(buildInstanceGroupManager()); | 2460 o.add(buildInstanceGroupManager()); |
| 2461 o.add(buildInstanceGroupManager()); | 2461 o.add(buildInstanceGroupManager()); |
| 2462 return o; | 2462 return o; |
| 2463 } | 2463 } |
| 2464 | 2464 |
| 2465 checkUnnamed563(core.List<api.InstanceGroupManager> o) { | 2465 checkUnnamed1697(core.List<api.InstanceGroupManager> o) { |
| 2466 unittest.expect(o, unittest.hasLength(2)); | 2466 unittest.expect(o, unittest.hasLength(2)); |
| 2467 checkInstanceGroupManager(o[0]); | 2467 checkInstanceGroupManager(o[0]); |
| 2468 checkInstanceGroupManager(o[1]); | 2468 checkInstanceGroupManager(o[1]); |
| 2469 } | 2469 } |
| 2470 | 2470 |
| 2471 core.int buildCounterInstanceGroupManagerList = 0; | 2471 core.int buildCounterInstanceGroupManagerList = 0; |
| 2472 buildInstanceGroupManagerList() { | 2472 buildInstanceGroupManagerList() { |
| 2473 var o = new api.InstanceGroupManagerList(); | 2473 var o = new api.InstanceGroupManagerList(); |
| 2474 buildCounterInstanceGroupManagerList++; | 2474 buildCounterInstanceGroupManagerList++; |
| 2475 if (buildCounterInstanceGroupManagerList < 3) { | 2475 if (buildCounterInstanceGroupManagerList < 3) { |
| 2476 o.id = "foo"; | 2476 o.id = "foo"; |
| 2477 o.items = buildUnnamed563(); | 2477 o.items = buildUnnamed1697(); |
| 2478 o.kind = "foo"; | 2478 o.kind = "foo"; |
| 2479 o.nextPageToken = "foo"; | 2479 o.nextPageToken = "foo"; |
| 2480 o.selfLink = "foo"; | 2480 o.selfLink = "foo"; |
| 2481 } | 2481 } |
| 2482 buildCounterInstanceGroupManagerList--; | 2482 buildCounterInstanceGroupManagerList--; |
| 2483 return o; | 2483 return o; |
| 2484 } | 2484 } |
| 2485 | 2485 |
| 2486 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 2486 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 2487 buildCounterInstanceGroupManagerList++; | 2487 buildCounterInstanceGroupManagerList++; |
| 2488 if (buildCounterInstanceGroupManagerList < 3) { | 2488 if (buildCounterInstanceGroupManagerList < 3) { |
| 2489 unittest.expect(o.id, unittest.equals('foo')); | 2489 unittest.expect(o.id, unittest.equals('foo')); |
| 2490 checkUnnamed563(o.items); | 2490 checkUnnamed1697(o.items); |
| 2491 unittest.expect(o.kind, unittest.equals('foo')); | 2491 unittest.expect(o.kind, unittest.equals('foo')); |
| 2492 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2492 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2493 unittest.expect(o.selfLink, unittest.equals('foo')); | 2493 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2494 } | 2494 } |
| 2495 buildCounterInstanceGroupManagerList--; | 2495 buildCounterInstanceGroupManagerList--; |
| 2496 } | 2496 } |
| 2497 | 2497 |
| 2498 buildUnnamed564() { | 2498 buildUnnamed1698() { |
| 2499 var o = new core.List<core.String>(); | 2499 var o = new core.List<core.String>(); |
| 2500 o.add("foo"); | 2500 o.add("foo"); |
| 2501 o.add("foo"); | 2501 o.add("foo"); |
| 2502 return o; | 2502 return o; |
| 2503 } | 2503 } |
| 2504 | 2504 |
| 2505 checkUnnamed564(core.List<core.String> o) { | 2505 checkUnnamed1698(core.List<core.String> o) { |
| 2506 unittest.expect(o, unittest.hasLength(2)); | 2506 unittest.expect(o, unittest.hasLength(2)); |
| 2507 unittest.expect(o[0], unittest.equals('foo')); | 2507 unittest.expect(o[0], unittest.equals('foo')); |
| 2508 unittest.expect(o[1], unittest.equals('foo')); | 2508 unittest.expect(o[1], unittest.equals('foo')); |
| 2509 } | 2509 } |
| 2510 | 2510 |
| 2511 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 2511 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 2512 buildInstanceGroupManagersAbandonInstancesRequest() { | 2512 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 2513 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 2513 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 2514 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2514 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2515 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2515 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2516 o.instances = buildUnnamed564(); | 2516 o.instances = buildUnnamed1698(); |
| 2517 } | 2517 } |
| 2518 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2518 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2519 return o; | 2519 return o; |
| 2520 } | 2520 } |
| 2521 | 2521 |
| 2522 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 2522 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 2523 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2523 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2524 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2524 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2525 checkUnnamed564(o.instances); | 2525 checkUnnamed1698(o.instances); |
| 2526 } | 2526 } |
| 2527 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2527 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2528 } | 2528 } |
| 2529 | 2529 |
| 2530 buildUnnamed565() { | 2530 buildUnnamed1699() { |
| 2531 var o = new core.List<core.String>(); | 2531 var o = new core.List<core.String>(); |
| 2532 o.add("foo"); | 2532 o.add("foo"); |
| 2533 o.add("foo"); | 2533 o.add("foo"); |
| 2534 return o; | 2534 return o; |
| 2535 } | 2535 } |
| 2536 | 2536 |
| 2537 checkUnnamed565(core.List<core.String> o) { | 2537 checkUnnamed1699(core.List<core.String> o) { |
| 2538 unittest.expect(o, unittest.hasLength(2)); | 2538 unittest.expect(o, unittest.hasLength(2)); |
| 2539 unittest.expect(o[0], unittest.equals('foo')); | 2539 unittest.expect(o[0], unittest.equals('foo')); |
| 2540 unittest.expect(o[1], unittest.equals('foo')); | 2540 unittest.expect(o[1], unittest.equals('foo')); |
| 2541 } | 2541 } |
| 2542 | 2542 |
| 2543 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 2543 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 2544 buildInstanceGroupManagersDeleteInstancesRequest() { | 2544 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 2545 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 2545 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 2546 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2546 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2547 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2547 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2548 o.instances = buildUnnamed565(); | 2548 o.instances = buildUnnamed1699(); |
| 2549 } | 2549 } |
| 2550 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2550 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2551 return o; | 2551 return o; |
| 2552 } | 2552 } |
| 2553 | 2553 |
| 2554 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 2554 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 2555 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2555 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2556 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2556 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2557 checkUnnamed565(o.instances); | 2557 checkUnnamed1699(o.instances); |
| 2558 } | 2558 } |
| 2559 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2559 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2560 } | 2560 } |
| 2561 | 2561 |
| 2562 buildUnnamed566() { | 2562 buildUnnamed1700() { |
| 2563 var o = new core.List<api.ManagedInstance>(); | 2563 var o = new core.List<api.ManagedInstance>(); |
| 2564 o.add(buildManagedInstance()); | 2564 o.add(buildManagedInstance()); |
| 2565 o.add(buildManagedInstance()); | 2565 o.add(buildManagedInstance()); |
| 2566 return o; | 2566 return o; |
| 2567 } | 2567 } |
| 2568 | 2568 |
| 2569 checkUnnamed566(core.List<api.ManagedInstance> o) { | 2569 checkUnnamed1700(core.List<api.ManagedInstance> o) { |
| 2570 unittest.expect(o, unittest.hasLength(2)); | 2570 unittest.expect(o, unittest.hasLength(2)); |
| 2571 checkManagedInstance(o[0]); | 2571 checkManagedInstance(o[0]); |
| 2572 checkManagedInstance(o[1]); | 2572 checkManagedInstance(o[1]); |
| 2573 } | 2573 } |
| 2574 | 2574 |
| 2575 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 2575 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 2576 buildInstanceGroupManagersListManagedInstancesResponse() { | 2576 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 2577 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 2577 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 2578 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2578 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2579 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2579 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2580 o.managedInstances = buildUnnamed566(); | 2580 o.managedInstances = buildUnnamed1700(); |
| 2581 } | 2581 } |
| 2582 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2582 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2583 return o; | 2583 return o; |
| 2584 } | 2584 } |
| 2585 | 2585 |
| 2586 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 2586 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 2587 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2587 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2588 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2588 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2589 checkUnnamed566(o.managedInstances); | 2589 checkUnnamed1700(o.managedInstances); |
| 2590 } | 2590 } |
| 2591 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2591 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2592 } | 2592 } |
| 2593 | 2593 |
| 2594 buildUnnamed567() { | 2594 buildUnnamed1701() { |
| 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 checkUnnamed567(core.List<core.String> o) { | 2601 checkUnnamed1701(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 buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 2607 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 2608 buildInstanceGroupManagersRecreateInstancesRequest() { | 2608 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 2609 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 2609 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 2610 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2610 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2611 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2611 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2612 o.instances = buildUnnamed567(); | 2612 o.instances = buildUnnamed1701(); |
| 2613 } | 2613 } |
| 2614 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2614 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2615 return o; | 2615 return o; |
| 2616 } | 2616 } |
| 2617 | 2617 |
| 2618 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 2618 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 2619 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2619 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2620 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2620 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2621 checkUnnamed567(o.instances); | 2621 checkUnnamed1701(o.instances); |
| 2622 } | 2622 } |
| 2623 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2623 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2624 } | 2624 } |
| 2625 | 2625 |
| 2626 buildUnnamed568() { | 2626 buildUnnamed1702() { |
| 2627 var o = new core.List<api.InstanceGroupManager>(); | 2627 var o = new core.List<api.InstanceGroupManager>(); |
| 2628 o.add(buildInstanceGroupManager()); | 2628 o.add(buildInstanceGroupManager()); |
| 2629 o.add(buildInstanceGroupManager()); | 2629 o.add(buildInstanceGroupManager()); |
| 2630 return o; | 2630 return o; |
| 2631 } | 2631 } |
| 2632 | 2632 |
| 2633 checkUnnamed568(core.List<api.InstanceGroupManager> o) { | 2633 checkUnnamed1702(core.List<api.InstanceGroupManager> o) { |
| 2634 unittest.expect(o, unittest.hasLength(2)); | 2634 unittest.expect(o, unittest.hasLength(2)); |
| 2635 checkInstanceGroupManager(o[0]); | 2635 checkInstanceGroupManager(o[0]); |
| 2636 checkInstanceGroupManager(o[1]); | 2636 checkInstanceGroupManager(o[1]); |
| 2637 } | 2637 } |
| 2638 | 2638 |
| 2639 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 2639 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 2640 buildInstanceGroupManagersScopedListWarningData() { | 2640 buildInstanceGroupManagersScopedListWarningData() { |
| 2641 var o = new api.InstanceGroupManagersScopedListWarningData(); | 2641 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 2642 buildCounterInstanceGroupManagersScopedListWarningData++; | 2642 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2643 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2643 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2644 o.key = "foo"; | 2644 o.key = "foo"; |
| 2645 o.value = "foo"; | 2645 o.value = "foo"; |
| 2646 } | 2646 } |
| 2647 buildCounterInstanceGroupManagersScopedListWarningData--; | 2647 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2648 return o; | 2648 return o; |
| 2649 } | 2649 } |
| 2650 | 2650 |
| 2651 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 2651 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 2652 buildCounterInstanceGroupManagersScopedListWarningData++; | 2652 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2653 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2653 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2654 unittest.expect(o.key, unittest.equals('foo')); | 2654 unittest.expect(o.key, unittest.equals('foo')); |
| 2655 unittest.expect(o.value, unittest.equals('foo')); | 2655 unittest.expect(o.value, unittest.equals('foo')); |
| 2656 } | 2656 } |
| 2657 buildCounterInstanceGroupManagersScopedListWarningData--; | 2657 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2658 } | 2658 } |
| 2659 | 2659 |
| 2660 buildUnnamed569() { | 2660 buildUnnamed1703() { |
| 2661 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 2661 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 2662 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2662 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2663 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2663 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2664 return o; | 2664 return o; |
| 2665 } | 2665 } |
| 2666 | 2666 |
| 2667 checkUnnamed569(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 2667 checkUnnamed1703(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 2668 unittest.expect(o, unittest.hasLength(2)); | 2668 unittest.expect(o, unittest.hasLength(2)); |
| 2669 checkInstanceGroupManagersScopedListWarningData(o[0]); | 2669 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 2670 checkInstanceGroupManagersScopedListWarningData(o[1]); | 2670 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 2671 } | 2671 } |
| 2672 | 2672 |
| 2673 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 2673 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 2674 buildInstanceGroupManagersScopedListWarning() { | 2674 buildInstanceGroupManagersScopedListWarning() { |
| 2675 var o = new api.InstanceGroupManagersScopedListWarning(); | 2675 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 2676 buildCounterInstanceGroupManagersScopedListWarning++; | 2676 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2677 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2677 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2678 o.code = "foo"; | 2678 o.code = "foo"; |
| 2679 o.data = buildUnnamed569(); | 2679 o.data = buildUnnamed1703(); |
| 2680 o.message = "foo"; | 2680 o.message = "foo"; |
| 2681 } | 2681 } |
| 2682 buildCounterInstanceGroupManagersScopedListWarning--; | 2682 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2683 return o; | 2683 return o; |
| 2684 } | 2684 } |
| 2685 | 2685 |
| 2686 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 2686 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 2687 buildCounterInstanceGroupManagersScopedListWarning++; | 2687 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2688 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2688 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2689 unittest.expect(o.code, unittest.equals('foo')); | 2689 unittest.expect(o.code, unittest.equals('foo')); |
| 2690 checkUnnamed569(o.data); | 2690 checkUnnamed1703(o.data); |
| 2691 unittest.expect(o.message, unittest.equals('foo')); | 2691 unittest.expect(o.message, unittest.equals('foo')); |
| 2692 } | 2692 } |
| 2693 buildCounterInstanceGroupManagersScopedListWarning--; | 2693 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2694 } | 2694 } |
| 2695 | 2695 |
| 2696 core.int buildCounterInstanceGroupManagersScopedList = 0; | 2696 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 2697 buildInstanceGroupManagersScopedList() { | 2697 buildInstanceGroupManagersScopedList() { |
| 2698 var o = new api.InstanceGroupManagersScopedList(); | 2698 var o = new api.InstanceGroupManagersScopedList(); |
| 2699 buildCounterInstanceGroupManagersScopedList++; | 2699 buildCounterInstanceGroupManagersScopedList++; |
| 2700 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2700 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2701 o.instanceGroupManagers = buildUnnamed568(); | 2701 o.instanceGroupManagers = buildUnnamed1702(); |
| 2702 o.warning = buildInstanceGroupManagersScopedListWarning(); | 2702 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 2703 } | 2703 } |
| 2704 buildCounterInstanceGroupManagersScopedList--; | 2704 buildCounterInstanceGroupManagersScopedList--; |
| 2705 return o; | 2705 return o; |
| 2706 } | 2706 } |
| 2707 | 2707 |
| 2708 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 2708 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 2709 buildCounterInstanceGroupManagersScopedList++; | 2709 buildCounterInstanceGroupManagersScopedList++; |
| 2710 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2710 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2711 checkUnnamed568(o.instanceGroupManagers); | 2711 checkUnnamed1702(o.instanceGroupManagers); |
| 2712 checkInstanceGroupManagersScopedListWarning(o.warning); | 2712 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 2713 } | 2713 } |
| 2714 buildCounterInstanceGroupManagersScopedList--; | 2714 buildCounterInstanceGroupManagersScopedList--; |
| 2715 } | 2715 } |
| 2716 | 2716 |
| 2717 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 2717 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 2718 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 2718 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 2719 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 2719 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 2720 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2720 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2721 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2721 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2722 o.instanceTemplate = "foo"; | 2722 o.instanceTemplate = "foo"; |
| 2723 } | 2723 } |
| 2724 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2724 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 2728 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 2729 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2729 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2730 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2730 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2731 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2731 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2732 } | 2732 } |
| 2733 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2733 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2734 } | 2734 } |
| 2735 | 2735 |
| 2736 buildUnnamed570() { | 2736 buildUnnamed1704() { |
| 2737 var o = new core.List<core.String>(); | 2737 var o = new core.List<core.String>(); |
| 2738 o.add("foo"); | 2738 o.add("foo"); |
| 2739 o.add("foo"); | 2739 o.add("foo"); |
| 2740 return o; | 2740 return o; |
| 2741 } | 2741 } |
| 2742 | 2742 |
| 2743 checkUnnamed570(core.List<core.String> o) { | 2743 checkUnnamed1704(core.List<core.String> o) { |
| 2744 unittest.expect(o, unittest.hasLength(2)); | 2744 unittest.expect(o, unittest.hasLength(2)); |
| 2745 unittest.expect(o[0], unittest.equals('foo')); | 2745 unittest.expect(o[0], unittest.equals('foo')); |
| 2746 unittest.expect(o[1], unittest.equals('foo')); | 2746 unittest.expect(o[1], unittest.equals('foo')); |
| 2747 } | 2747 } |
| 2748 | 2748 |
| 2749 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 2749 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 2750 buildInstanceGroupManagersSetTargetPoolsRequest() { | 2750 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 2751 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 2751 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 2752 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2752 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2753 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2753 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2754 o.fingerprint = "foo"; | 2754 o.fingerprint = "foo"; |
| 2755 o.targetPools = buildUnnamed570(); | 2755 o.targetPools = buildUnnamed1704(); |
| 2756 } | 2756 } |
| 2757 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2757 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2758 return o; | 2758 return o; |
| 2759 } | 2759 } |
| 2760 | 2760 |
| 2761 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 2761 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 2762 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2762 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2763 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2763 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2764 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2764 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2765 checkUnnamed570(o.targetPools); | 2765 checkUnnamed1704(o.targetPools); |
| 2766 } | 2766 } |
| 2767 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2767 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2768 } | 2768 } |
| 2769 | 2769 |
| 2770 buildUnnamed571() { | 2770 buildUnnamed1705() { |
| 2771 var o = new core.List<api.InstanceReference>(); | 2771 var o = new core.List<api.InstanceReference>(); |
| 2772 o.add(buildInstanceReference()); | 2772 o.add(buildInstanceReference()); |
| 2773 o.add(buildInstanceReference()); | 2773 o.add(buildInstanceReference()); |
| 2774 return o; | 2774 return o; |
| 2775 } | 2775 } |
| 2776 | 2776 |
| 2777 checkUnnamed571(core.List<api.InstanceReference> o) { | 2777 checkUnnamed1705(core.List<api.InstanceReference> o) { |
| 2778 unittest.expect(o, unittest.hasLength(2)); | 2778 unittest.expect(o, unittest.hasLength(2)); |
| 2779 checkInstanceReference(o[0]); | 2779 checkInstanceReference(o[0]); |
| 2780 checkInstanceReference(o[1]); | 2780 checkInstanceReference(o[1]); |
| 2781 } | 2781 } |
| 2782 | 2782 |
| 2783 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 2783 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 2784 buildInstanceGroupsAddInstancesRequest() { | 2784 buildInstanceGroupsAddInstancesRequest() { |
| 2785 var o = new api.InstanceGroupsAddInstancesRequest(); | 2785 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 2786 buildCounterInstanceGroupsAddInstancesRequest++; | 2786 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2787 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2787 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2788 o.instances = buildUnnamed571(); | 2788 o.instances = buildUnnamed1705(); |
| 2789 } | 2789 } |
| 2790 buildCounterInstanceGroupsAddInstancesRequest--; | 2790 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2791 return o; | 2791 return o; |
| 2792 } | 2792 } |
| 2793 | 2793 |
| 2794 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 2794 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 2795 buildCounterInstanceGroupsAddInstancesRequest++; | 2795 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2796 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2796 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2797 checkUnnamed571(o.instances); | 2797 checkUnnamed1705(o.instances); |
| 2798 } | 2798 } |
| 2799 buildCounterInstanceGroupsAddInstancesRequest--; | 2799 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2800 } | 2800 } |
| 2801 | 2801 |
| 2802 buildUnnamed572() { | 2802 buildUnnamed1706() { |
| 2803 var o = new core.List<api.InstanceWithNamedPorts>(); | 2803 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 2804 o.add(buildInstanceWithNamedPorts()); | 2804 o.add(buildInstanceWithNamedPorts()); |
| 2805 o.add(buildInstanceWithNamedPorts()); | 2805 o.add(buildInstanceWithNamedPorts()); |
| 2806 return o; | 2806 return o; |
| 2807 } | 2807 } |
| 2808 | 2808 |
| 2809 checkUnnamed572(core.List<api.InstanceWithNamedPorts> o) { | 2809 checkUnnamed1706(core.List<api.InstanceWithNamedPorts> o) { |
| 2810 unittest.expect(o, unittest.hasLength(2)); | 2810 unittest.expect(o, unittest.hasLength(2)); |
| 2811 checkInstanceWithNamedPorts(o[0]); | 2811 checkInstanceWithNamedPorts(o[0]); |
| 2812 checkInstanceWithNamedPorts(o[1]); | 2812 checkInstanceWithNamedPorts(o[1]); |
| 2813 } | 2813 } |
| 2814 | 2814 |
| 2815 core.int buildCounterInstanceGroupsListInstances = 0; | 2815 core.int buildCounterInstanceGroupsListInstances = 0; |
| 2816 buildInstanceGroupsListInstances() { | 2816 buildInstanceGroupsListInstances() { |
| 2817 var o = new api.InstanceGroupsListInstances(); | 2817 var o = new api.InstanceGroupsListInstances(); |
| 2818 buildCounterInstanceGroupsListInstances++; | 2818 buildCounterInstanceGroupsListInstances++; |
| 2819 if (buildCounterInstanceGroupsListInstances < 3) { | 2819 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2820 o.id = "foo"; | 2820 o.id = "foo"; |
| 2821 o.items = buildUnnamed572(); | 2821 o.items = buildUnnamed1706(); |
| 2822 o.kind = "foo"; | 2822 o.kind = "foo"; |
| 2823 o.nextPageToken = "foo"; | 2823 o.nextPageToken = "foo"; |
| 2824 o.selfLink = "foo"; | 2824 o.selfLink = "foo"; |
| 2825 } | 2825 } |
| 2826 buildCounterInstanceGroupsListInstances--; | 2826 buildCounterInstanceGroupsListInstances--; |
| 2827 return o; | 2827 return o; |
| 2828 } | 2828 } |
| 2829 | 2829 |
| 2830 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 2830 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 2831 buildCounterInstanceGroupsListInstances++; | 2831 buildCounterInstanceGroupsListInstances++; |
| 2832 if (buildCounterInstanceGroupsListInstances < 3) { | 2832 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2833 unittest.expect(o.id, unittest.equals('foo')); | 2833 unittest.expect(o.id, unittest.equals('foo')); |
| 2834 checkUnnamed572(o.items); | 2834 checkUnnamed1706(o.items); |
| 2835 unittest.expect(o.kind, unittest.equals('foo')); | 2835 unittest.expect(o.kind, unittest.equals('foo')); |
| 2836 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2836 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2837 unittest.expect(o.selfLink, unittest.equals('foo')); | 2837 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2838 } | 2838 } |
| 2839 buildCounterInstanceGroupsListInstances--; | 2839 buildCounterInstanceGroupsListInstances--; |
| 2840 } | 2840 } |
| 2841 | 2841 |
| 2842 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 2842 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 2843 buildInstanceGroupsListInstancesRequest() { | 2843 buildInstanceGroupsListInstancesRequest() { |
| 2844 var o = new api.InstanceGroupsListInstancesRequest(); | 2844 var o = new api.InstanceGroupsListInstancesRequest(); |
| 2845 buildCounterInstanceGroupsListInstancesRequest++; | 2845 buildCounterInstanceGroupsListInstancesRequest++; |
| 2846 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 2846 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 2847 o.instanceState = "foo"; | 2847 o.instanceState = "foo"; |
| 2848 o.portName = "foo"; | |
| 2849 } | 2848 } |
| 2850 buildCounterInstanceGroupsListInstancesRequest--; | 2849 buildCounterInstanceGroupsListInstancesRequest--; |
| 2851 return o; | 2850 return o; |
| 2852 } | 2851 } |
| 2853 | 2852 |
| 2854 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 2853 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 2855 buildCounterInstanceGroupsListInstancesRequest++; | 2854 buildCounterInstanceGroupsListInstancesRequest++; |
| 2856 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 2855 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 2857 unittest.expect(o.instanceState, unittest.equals('foo')); | 2856 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 2858 unittest.expect(o.portName, unittest.equals('foo')); | |
| 2859 } | 2857 } |
| 2860 buildCounterInstanceGroupsListInstancesRequest--; | 2858 buildCounterInstanceGroupsListInstancesRequest--; |
| 2861 } | 2859 } |
| 2862 | 2860 |
| 2863 buildUnnamed573() { | 2861 buildUnnamed1707() { |
| 2864 var o = new core.List<api.InstanceReference>(); | 2862 var o = new core.List<api.InstanceReference>(); |
| 2865 o.add(buildInstanceReference()); | 2863 o.add(buildInstanceReference()); |
| 2866 o.add(buildInstanceReference()); | 2864 o.add(buildInstanceReference()); |
| 2867 return o; | 2865 return o; |
| 2868 } | 2866 } |
| 2869 | 2867 |
| 2870 checkUnnamed573(core.List<api.InstanceReference> o) { | 2868 checkUnnamed1707(core.List<api.InstanceReference> o) { |
| 2871 unittest.expect(o, unittest.hasLength(2)); | 2869 unittest.expect(o, unittest.hasLength(2)); |
| 2872 checkInstanceReference(o[0]); | 2870 checkInstanceReference(o[0]); |
| 2873 checkInstanceReference(o[1]); | 2871 checkInstanceReference(o[1]); |
| 2874 } | 2872 } |
| 2875 | 2873 |
| 2876 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 2874 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 2877 buildInstanceGroupsRemoveInstancesRequest() { | 2875 buildInstanceGroupsRemoveInstancesRequest() { |
| 2878 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 2876 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 2879 buildCounterInstanceGroupsRemoveInstancesRequest++; | 2877 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 2880 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 2878 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 2881 o.instances = buildUnnamed573(); | 2879 o.instances = buildUnnamed1707(); |
| 2882 } | 2880 } |
| 2883 buildCounterInstanceGroupsRemoveInstancesRequest--; | 2881 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 2884 return o; | 2882 return o; |
| 2885 } | 2883 } |
| 2886 | 2884 |
| 2887 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 2885 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 2888 buildCounterInstanceGroupsRemoveInstancesRequest++; | 2886 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 2889 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 2887 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 2890 checkUnnamed573(o.instances); | 2888 checkUnnamed1707(o.instances); |
| 2891 } | 2889 } |
| 2892 buildCounterInstanceGroupsRemoveInstancesRequest--; | 2890 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 2893 } | 2891 } |
| 2894 | 2892 |
| 2895 buildUnnamed574() { | 2893 buildUnnamed1708() { |
| 2896 var o = new core.List<api.InstanceGroup>(); | 2894 var o = new core.List<api.InstanceGroup>(); |
| 2897 o.add(buildInstanceGroup()); | 2895 o.add(buildInstanceGroup()); |
| 2898 o.add(buildInstanceGroup()); | 2896 o.add(buildInstanceGroup()); |
| 2899 return o; | 2897 return o; |
| 2900 } | 2898 } |
| 2901 | 2899 |
| 2902 checkUnnamed574(core.List<api.InstanceGroup> o) { | 2900 checkUnnamed1708(core.List<api.InstanceGroup> o) { |
| 2903 unittest.expect(o, unittest.hasLength(2)); | 2901 unittest.expect(o, unittest.hasLength(2)); |
| 2904 checkInstanceGroup(o[0]); | 2902 checkInstanceGroup(o[0]); |
| 2905 checkInstanceGroup(o[1]); | 2903 checkInstanceGroup(o[1]); |
| 2906 } | 2904 } |
| 2907 | 2905 |
| 2908 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 2906 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 2909 buildInstanceGroupsScopedListWarningData() { | 2907 buildInstanceGroupsScopedListWarningData() { |
| 2910 var o = new api.InstanceGroupsScopedListWarningData(); | 2908 var o = new api.InstanceGroupsScopedListWarningData(); |
| 2911 buildCounterInstanceGroupsScopedListWarningData++; | 2909 buildCounterInstanceGroupsScopedListWarningData++; |
| 2912 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 2910 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 2913 o.key = "foo"; | 2911 o.key = "foo"; |
| 2914 o.value = "foo"; | 2912 o.value = "foo"; |
| 2915 } | 2913 } |
| 2916 buildCounterInstanceGroupsScopedListWarningData--; | 2914 buildCounterInstanceGroupsScopedListWarningData--; |
| 2917 return o; | 2915 return o; |
| 2918 } | 2916 } |
| 2919 | 2917 |
| 2920 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 2918 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 2921 buildCounterInstanceGroupsScopedListWarningData++; | 2919 buildCounterInstanceGroupsScopedListWarningData++; |
| 2922 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 2920 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 2923 unittest.expect(o.key, unittest.equals('foo')); | 2921 unittest.expect(o.key, unittest.equals('foo')); |
| 2924 unittest.expect(o.value, unittest.equals('foo')); | 2922 unittest.expect(o.value, unittest.equals('foo')); |
| 2925 } | 2923 } |
| 2926 buildCounterInstanceGroupsScopedListWarningData--; | 2924 buildCounterInstanceGroupsScopedListWarningData--; |
| 2927 } | 2925 } |
| 2928 | 2926 |
| 2929 buildUnnamed575() { | 2927 buildUnnamed1709() { |
| 2930 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 2928 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 2931 o.add(buildInstanceGroupsScopedListWarningData()); | 2929 o.add(buildInstanceGroupsScopedListWarningData()); |
| 2932 o.add(buildInstanceGroupsScopedListWarningData()); | 2930 o.add(buildInstanceGroupsScopedListWarningData()); |
| 2933 return o; | 2931 return o; |
| 2934 } | 2932 } |
| 2935 | 2933 |
| 2936 checkUnnamed575(core.List<api.InstanceGroupsScopedListWarningData> o) { | 2934 checkUnnamed1709(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 2937 unittest.expect(o, unittest.hasLength(2)); | 2935 unittest.expect(o, unittest.hasLength(2)); |
| 2938 checkInstanceGroupsScopedListWarningData(o[0]); | 2936 checkInstanceGroupsScopedListWarningData(o[0]); |
| 2939 checkInstanceGroupsScopedListWarningData(o[1]); | 2937 checkInstanceGroupsScopedListWarningData(o[1]); |
| 2940 } | 2938 } |
| 2941 | 2939 |
| 2942 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 2940 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 2943 buildInstanceGroupsScopedListWarning() { | 2941 buildInstanceGroupsScopedListWarning() { |
| 2944 var o = new api.InstanceGroupsScopedListWarning(); | 2942 var o = new api.InstanceGroupsScopedListWarning(); |
| 2945 buildCounterInstanceGroupsScopedListWarning++; | 2943 buildCounterInstanceGroupsScopedListWarning++; |
| 2946 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 2944 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 2947 o.code = "foo"; | 2945 o.code = "foo"; |
| 2948 o.data = buildUnnamed575(); | 2946 o.data = buildUnnamed1709(); |
| 2949 o.message = "foo"; | 2947 o.message = "foo"; |
| 2950 } | 2948 } |
| 2951 buildCounterInstanceGroupsScopedListWarning--; | 2949 buildCounterInstanceGroupsScopedListWarning--; |
| 2952 return o; | 2950 return o; |
| 2953 } | 2951 } |
| 2954 | 2952 |
| 2955 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 2953 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 2956 buildCounterInstanceGroupsScopedListWarning++; | 2954 buildCounterInstanceGroupsScopedListWarning++; |
| 2957 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 2955 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 2958 unittest.expect(o.code, unittest.equals('foo')); | 2956 unittest.expect(o.code, unittest.equals('foo')); |
| 2959 checkUnnamed575(o.data); | 2957 checkUnnamed1709(o.data); |
| 2960 unittest.expect(o.message, unittest.equals('foo')); | 2958 unittest.expect(o.message, unittest.equals('foo')); |
| 2961 } | 2959 } |
| 2962 buildCounterInstanceGroupsScopedListWarning--; | 2960 buildCounterInstanceGroupsScopedListWarning--; |
| 2963 } | 2961 } |
| 2964 | 2962 |
| 2965 core.int buildCounterInstanceGroupsScopedList = 0; | 2963 core.int buildCounterInstanceGroupsScopedList = 0; |
| 2966 buildInstanceGroupsScopedList() { | 2964 buildInstanceGroupsScopedList() { |
| 2967 var o = new api.InstanceGroupsScopedList(); | 2965 var o = new api.InstanceGroupsScopedList(); |
| 2968 buildCounterInstanceGroupsScopedList++; | 2966 buildCounterInstanceGroupsScopedList++; |
| 2969 if (buildCounterInstanceGroupsScopedList < 3) { | 2967 if (buildCounterInstanceGroupsScopedList < 3) { |
| 2970 o.instanceGroups = buildUnnamed574(); | 2968 o.instanceGroups = buildUnnamed1708(); |
| 2971 o.warning = buildInstanceGroupsScopedListWarning(); | 2969 o.warning = buildInstanceGroupsScopedListWarning(); |
| 2972 } | 2970 } |
| 2973 buildCounterInstanceGroupsScopedList--; | 2971 buildCounterInstanceGroupsScopedList--; |
| 2974 return o; | 2972 return o; |
| 2975 } | 2973 } |
| 2976 | 2974 |
| 2977 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 2975 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 2978 buildCounterInstanceGroupsScopedList++; | 2976 buildCounterInstanceGroupsScopedList++; |
| 2979 if (buildCounterInstanceGroupsScopedList < 3) { | 2977 if (buildCounterInstanceGroupsScopedList < 3) { |
| 2980 checkUnnamed574(o.instanceGroups); | 2978 checkUnnamed1708(o.instanceGroups); |
| 2981 checkInstanceGroupsScopedListWarning(o.warning); | 2979 checkInstanceGroupsScopedListWarning(o.warning); |
| 2982 } | 2980 } |
| 2983 buildCounterInstanceGroupsScopedList--; | 2981 buildCounterInstanceGroupsScopedList--; |
| 2984 } | 2982 } |
| 2985 | 2983 |
| 2986 buildUnnamed576() { | 2984 buildUnnamed1710() { |
| 2987 var o = new core.List<api.NamedPort>(); | 2985 var o = new core.List<api.NamedPort>(); |
| 2988 o.add(buildNamedPort()); | 2986 o.add(buildNamedPort()); |
| 2989 o.add(buildNamedPort()); | 2987 o.add(buildNamedPort()); |
| 2990 return o; | 2988 return o; |
| 2991 } | 2989 } |
| 2992 | 2990 |
| 2993 checkUnnamed576(core.List<api.NamedPort> o) { | 2991 checkUnnamed1710(core.List<api.NamedPort> o) { |
| 2994 unittest.expect(o, unittest.hasLength(2)); | 2992 unittest.expect(o, unittest.hasLength(2)); |
| 2995 checkNamedPort(o[0]); | 2993 checkNamedPort(o[0]); |
| 2996 checkNamedPort(o[1]); | 2994 checkNamedPort(o[1]); |
| 2997 } | 2995 } |
| 2998 | 2996 |
| 2999 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 2997 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 3000 buildInstanceGroupsSetNamedPortsRequest() { | 2998 buildInstanceGroupsSetNamedPortsRequest() { |
| 3001 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 2999 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 3002 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3000 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3003 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3001 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3004 o.fingerprint = "foo"; | 3002 o.fingerprint = "foo"; |
| 3005 o.namedPorts = buildUnnamed576(); | 3003 o.namedPorts = buildUnnamed1710(); |
| 3006 } | 3004 } |
| 3007 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3005 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3008 return o; | 3006 return o; |
| 3009 } | 3007 } |
| 3010 | 3008 |
| 3011 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 3009 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 3012 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3010 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3013 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3011 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3014 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3012 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3015 checkUnnamed576(o.namedPorts); | 3013 checkUnnamed1710(o.namedPorts); |
| 3016 } | 3014 } |
| 3017 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3015 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3018 } | 3016 } |
| 3019 | 3017 |
| 3020 buildUnnamed577() { | 3018 buildUnnamed1711() { |
| 3021 var o = new core.List<api.Instance>(); | 3019 var o = new core.List<api.Instance>(); |
| 3022 o.add(buildInstance()); | 3020 o.add(buildInstance()); |
| 3023 o.add(buildInstance()); | 3021 o.add(buildInstance()); |
| 3024 return o; | 3022 return o; |
| 3025 } | 3023 } |
| 3026 | 3024 |
| 3027 checkUnnamed577(core.List<api.Instance> o) { | 3025 checkUnnamed1711(core.List<api.Instance> o) { |
| 3028 unittest.expect(o, unittest.hasLength(2)); | 3026 unittest.expect(o, unittest.hasLength(2)); |
| 3029 checkInstance(o[0]); | 3027 checkInstance(o[0]); |
| 3030 checkInstance(o[1]); | 3028 checkInstance(o[1]); |
| 3031 } | 3029 } |
| 3032 | 3030 |
| 3033 core.int buildCounterInstanceList = 0; | 3031 core.int buildCounterInstanceList = 0; |
| 3034 buildInstanceList() { | 3032 buildInstanceList() { |
| 3035 var o = new api.InstanceList(); | 3033 var o = new api.InstanceList(); |
| 3036 buildCounterInstanceList++; | 3034 buildCounterInstanceList++; |
| 3037 if (buildCounterInstanceList < 3) { | 3035 if (buildCounterInstanceList < 3) { |
| 3038 o.id = "foo"; | 3036 o.id = "foo"; |
| 3039 o.items = buildUnnamed577(); | 3037 o.items = buildUnnamed1711(); |
| 3040 o.kind = "foo"; | 3038 o.kind = "foo"; |
| 3041 o.nextPageToken = "foo"; | 3039 o.nextPageToken = "foo"; |
| 3042 o.selfLink = "foo"; | 3040 o.selfLink = "foo"; |
| 3043 } | 3041 } |
| 3044 buildCounterInstanceList--; | 3042 buildCounterInstanceList--; |
| 3045 return o; | 3043 return o; |
| 3046 } | 3044 } |
| 3047 | 3045 |
| 3048 checkInstanceList(api.InstanceList o) { | 3046 checkInstanceList(api.InstanceList o) { |
| 3049 buildCounterInstanceList++; | 3047 buildCounterInstanceList++; |
| 3050 if (buildCounterInstanceList < 3) { | 3048 if (buildCounterInstanceList < 3) { |
| 3051 unittest.expect(o.id, unittest.equals('foo')); | 3049 unittest.expect(o.id, unittest.equals('foo')); |
| 3052 checkUnnamed577(o.items); | 3050 checkUnnamed1711(o.items); |
| 3053 unittest.expect(o.kind, unittest.equals('foo')); | 3051 unittest.expect(o.kind, unittest.equals('foo')); |
| 3054 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3052 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3055 unittest.expect(o.selfLink, unittest.equals('foo')); | 3053 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3056 } | 3054 } |
| 3057 buildCounterInstanceList--; | 3055 buildCounterInstanceList--; |
| 3058 } | 3056 } |
| 3059 | 3057 |
| 3060 core.int buildCounterInstanceMoveRequest = 0; | 3058 core.int buildCounterInstanceMoveRequest = 0; |
| 3061 buildInstanceMoveRequest() { | 3059 buildInstanceMoveRequest() { |
| 3062 var o = new api.InstanceMoveRequest(); | 3060 var o = new api.InstanceMoveRequest(); |
| 3063 buildCounterInstanceMoveRequest++; | 3061 buildCounterInstanceMoveRequest++; |
| 3064 if (buildCounterInstanceMoveRequest < 3) { | 3062 if (buildCounterInstanceMoveRequest < 3) { |
| 3065 o.destinationZone = "foo"; | 3063 o.destinationZone = "foo"; |
| 3066 o.targetInstance = "foo"; | 3064 o.targetInstance = "foo"; |
| 3067 } | 3065 } |
| 3068 buildCounterInstanceMoveRequest--; | 3066 buildCounterInstanceMoveRequest--; |
| 3069 return o; | 3067 return o; |
| 3070 } | 3068 } |
| 3071 | 3069 |
| 3072 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 3070 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 3073 buildCounterInstanceMoveRequest++; | 3071 buildCounterInstanceMoveRequest++; |
| 3074 if (buildCounterInstanceMoveRequest < 3) { | 3072 if (buildCounterInstanceMoveRequest < 3) { |
| 3075 unittest.expect(o.destinationZone, unittest.equals('foo')); | 3073 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 3076 unittest.expect(o.targetInstance, unittest.equals('foo')); | 3074 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 3077 } | 3075 } |
| 3078 buildCounterInstanceMoveRequest--; | 3076 buildCounterInstanceMoveRequest--; |
| 3079 } | 3077 } |
| 3080 | 3078 |
| 3081 buildUnnamed578() { | 3079 buildUnnamed1712() { |
| 3082 var o = new core.List<api.AttachedDisk>(); | 3080 var o = new core.List<api.AttachedDisk>(); |
| 3083 o.add(buildAttachedDisk()); | 3081 o.add(buildAttachedDisk()); |
| 3084 o.add(buildAttachedDisk()); | 3082 o.add(buildAttachedDisk()); |
| 3085 return o; | 3083 return o; |
| 3086 } | 3084 } |
| 3087 | 3085 |
| 3088 checkUnnamed578(core.List<api.AttachedDisk> o) { | 3086 checkUnnamed1712(core.List<api.AttachedDisk> o) { |
| 3089 unittest.expect(o, unittest.hasLength(2)); | 3087 unittest.expect(o, unittest.hasLength(2)); |
| 3090 checkAttachedDisk(o[0]); | 3088 checkAttachedDisk(o[0]); |
| 3091 checkAttachedDisk(o[1]); | 3089 checkAttachedDisk(o[1]); |
| 3092 } | 3090 } |
| 3093 | 3091 |
| 3094 buildUnnamed579() { | 3092 buildUnnamed1713() { |
| 3095 var o = new core.List<api.NetworkInterface>(); | 3093 var o = new core.List<api.NetworkInterface>(); |
| 3096 o.add(buildNetworkInterface()); | 3094 o.add(buildNetworkInterface()); |
| 3097 o.add(buildNetworkInterface()); | 3095 o.add(buildNetworkInterface()); |
| 3098 return o; | 3096 return o; |
| 3099 } | 3097 } |
| 3100 | 3098 |
| 3101 checkUnnamed579(core.List<api.NetworkInterface> o) { | 3099 checkUnnamed1713(core.List<api.NetworkInterface> o) { |
| 3102 unittest.expect(o, unittest.hasLength(2)); | 3100 unittest.expect(o, unittest.hasLength(2)); |
| 3103 checkNetworkInterface(o[0]); | 3101 checkNetworkInterface(o[0]); |
| 3104 checkNetworkInterface(o[1]); | 3102 checkNetworkInterface(o[1]); |
| 3105 } | 3103 } |
| 3106 | 3104 |
| 3107 buildUnnamed580() { | 3105 buildUnnamed1714() { |
| 3108 var o = new core.List<api.ServiceAccount>(); | 3106 var o = new core.List<api.ServiceAccount>(); |
| 3109 o.add(buildServiceAccount()); | 3107 o.add(buildServiceAccount()); |
| 3110 o.add(buildServiceAccount()); | 3108 o.add(buildServiceAccount()); |
| 3111 return o; | 3109 return o; |
| 3112 } | 3110 } |
| 3113 | 3111 |
| 3114 checkUnnamed580(core.List<api.ServiceAccount> o) { | 3112 checkUnnamed1714(core.List<api.ServiceAccount> o) { |
| 3115 unittest.expect(o, unittest.hasLength(2)); | 3113 unittest.expect(o, unittest.hasLength(2)); |
| 3116 checkServiceAccount(o[0]); | 3114 checkServiceAccount(o[0]); |
| 3117 checkServiceAccount(o[1]); | 3115 checkServiceAccount(o[1]); |
| 3118 } | 3116 } |
| 3119 | 3117 |
| 3120 core.int buildCounterInstanceProperties = 0; | 3118 core.int buildCounterInstanceProperties = 0; |
| 3121 buildInstanceProperties() { | 3119 buildInstanceProperties() { |
| 3122 var o = new api.InstanceProperties(); | 3120 var o = new api.InstanceProperties(); |
| 3123 buildCounterInstanceProperties++; | 3121 buildCounterInstanceProperties++; |
| 3124 if (buildCounterInstanceProperties < 3) { | 3122 if (buildCounterInstanceProperties < 3) { |
| 3125 o.canIpForward = true; | 3123 o.canIpForward = true; |
| 3126 o.description = "foo"; | 3124 o.description = "foo"; |
| 3127 o.disks = buildUnnamed578(); | 3125 o.disks = buildUnnamed1712(); |
| 3128 o.machineType = "foo"; | 3126 o.machineType = "foo"; |
| 3129 o.metadata = buildMetadata(); | 3127 o.metadata = buildMetadata(); |
| 3130 o.networkInterfaces = buildUnnamed579(); | 3128 o.networkInterfaces = buildUnnamed1713(); |
| 3131 o.scheduling = buildScheduling(); | 3129 o.scheduling = buildScheduling(); |
| 3132 o.serviceAccounts = buildUnnamed580(); | 3130 o.serviceAccounts = buildUnnamed1714(); |
| 3133 o.tags = buildTags(); | 3131 o.tags = buildTags(); |
| 3134 } | 3132 } |
| 3135 buildCounterInstanceProperties--; | 3133 buildCounterInstanceProperties--; |
| 3136 return o; | 3134 return o; |
| 3137 } | 3135 } |
| 3138 | 3136 |
| 3139 checkInstanceProperties(api.InstanceProperties o) { | 3137 checkInstanceProperties(api.InstanceProperties o) { |
| 3140 buildCounterInstanceProperties++; | 3138 buildCounterInstanceProperties++; |
| 3141 if (buildCounterInstanceProperties < 3) { | 3139 if (buildCounterInstanceProperties < 3) { |
| 3142 unittest.expect(o.canIpForward, unittest.isTrue); | 3140 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3143 unittest.expect(o.description, unittest.equals('foo')); | 3141 unittest.expect(o.description, unittest.equals('foo')); |
| 3144 checkUnnamed578(o.disks); | 3142 checkUnnamed1712(o.disks); |
| 3145 unittest.expect(o.machineType, unittest.equals('foo')); | 3143 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3146 checkMetadata(o.metadata); | 3144 checkMetadata(o.metadata); |
| 3147 checkUnnamed579(o.networkInterfaces); | 3145 checkUnnamed1713(o.networkInterfaces); |
| 3148 checkScheduling(o.scheduling); | 3146 checkScheduling(o.scheduling); |
| 3149 checkUnnamed580(o.serviceAccounts); | 3147 checkUnnamed1714(o.serviceAccounts); |
| 3150 checkTags(o.tags); | 3148 checkTags(o.tags); |
| 3151 } | 3149 } |
| 3152 buildCounterInstanceProperties--; | 3150 buildCounterInstanceProperties--; |
| 3153 } | 3151 } |
| 3154 | 3152 |
| 3155 core.int buildCounterInstanceReference = 0; | 3153 core.int buildCounterInstanceReference = 0; |
| 3156 buildInstanceReference() { | 3154 buildInstanceReference() { |
| 3157 var o = new api.InstanceReference(); | 3155 var o = new api.InstanceReference(); |
| 3158 buildCounterInstanceReference++; | 3156 buildCounterInstanceReference++; |
| 3159 if (buildCounterInstanceReference < 3) { | 3157 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3195 unittest.expect(o.description, unittest.equals('foo')); | 3193 unittest.expect(o.description, unittest.equals('foo')); |
| 3196 unittest.expect(o.id, unittest.equals('foo')); | 3194 unittest.expect(o.id, unittest.equals('foo')); |
| 3197 unittest.expect(o.kind, unittest.equals('foo')); | 3195 unittest.expect(o.kind, unittest.equals('foo')); |
| 3198 unittest.expect(o.name, unittest.equals('foo')); | 3196 unittest.expect(o.name, unittest.equals('foo')); |
| 3199 checkInstanceProperties(o.properties); | 3197 checkInstanceProperties(o.properties); |
| 3200 unittest.expect(o.selfLink, unittest.equals('foo')); | 3198 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3201 } | 3199 } |
| 3202 buildCounterInstanceTemplate--; | 3200 buildCounterInstanceTemplate--; |
| 3203 } | 3201 } |
| 3204 | 3202 |
| 3205 buildUnnamed581() { | 3203 buildUnnamed1715() { |
| 3206 var o = new core.List<api.InstanceTemplate>(); | 3204 var o = new core.List<api.InstanceTemplate>(); |
| 3207 o.add(buildInstanceTemplate()); | 3205 o.add(buildInstanceTemplate()); |
| 3208 o.add(buildInstanceTemplate()); | 3206 o.add(buildInstanceTemplate()); |
| 3209 return o; | 3207 return o; |
| 3210 } | 3208 } |
| 3211 | 3209 |
| 3212 checkUnnamed581(core.List<api.InstanceTemplate> o) { | 3210 checkUnnamed1715(core.List<api.InstanceTemplate> o) { |
| 3213 unittest.expect(o, unittest.hasLength(2)); | 3211 unittest.expect(o, unittest.hasLength(2)); |
| 3214 checkInstanceTemplate(o[0]); | 3212 checkInstanceTemplate(o[0]); |
| 3215 checkInstanceTemplate(o[1]); | 3213 checkInstanceTemplate(o[1]); |
| 3216 } | 3214 } |
| 3217 | 3215 |
| 3218 core.int buildCounterInstanceTemplateList = 0; | 3216 core.int buildCounterInstanceTemplateList = 0; |
| 3219 buildInstanceTemplateList() { | 3217 buildInstanceTemplateList() { |
| 3220 var o = new api.InstanceTemplateList(); | 3218 var o = new api.InstanceTemplateList(); |
| 3221 buildCounterInstanceTemplateList++; | 3219 buildCounterInstanceTemplateList++; |
| 3222 if (buildCounterInstanceTemplateList < 3) { | 3220 if (buildCounterInstanceTemplateList < 3) { |
| 3223 o.id = "foo"; | 3221 o.id = "foo"; |
| 3224 o.items = buildUnnamed581(); | 3222 o.items = buildUnnamed1715(); |
| 3225 o.kind = "foo"; | 3223 o.kind = "foo"; |
| 3226 o.nextPageToken = "foo"; | 3224 o.nextPageToken = "foo"; |
| 3227 o.selfLink = "foo"; | 3225 o.selfLink = "foo"; |
| 3228 } | 3226 } |
| 3229 buildCounterInstanceTemplateList--; | 3227 buildCounterInstanceTemplateList--; |
| 3230 return o; | 3228 return o; |
| 3231 } | 3229 } |
| 3232 | 3230 |
| 3233 checkInstanceTemplateList(api.InstanceTemplateList o) { | 3231 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 3234 buildCounterInstanceTemplateList++; | 3232 buildCounterInstanceTemplateList++; |
| 3235 if (buildCounterInstanceTemplateList < 3) { | 3233 if (buildCounterInstanceTemplateList < 3) { |
| 3236 unittest.expect(o.id, unittest.equals('foo')); | 3234 unittest.expect(o.id, unittest.equals('foo')); |
| 3237 checkUnnamed581(o.items); | 3235 checkUnnamed1715(o.items); |
| 3238 unittest.expect(o.kind, unittest.equals('foo')); | 3236 unittest.expect(o.kind, unittest.equals('foo')); |
| 3239 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3237 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3240 unittest.expect(o.selfLink, unittest.equals('foo')); | 3238 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3241 } | 3239 } |
| 3242 buildCounterInstanceTemplateList--; | 3240 buildCounterInstanceTemplateList--; |
| 3243 } | 3241 } |
| 3244 | 3242 |
| 3245 buildUnnamed582() { | 3243 buildUnnamed1716() { |
| 3246 var o = new core.List<api.NamedPort>(); | 3244 var o = new core.List<api.NamedPort>(); |
| 3247 o.add(buildNamedPort()); | 3245 o.add(buildNamedPort()); |
| 3248 o.add(buildNamedPort()); | 3246 o.add(buildNamedPort()); |
| 3249 return o; | 3247 return o; |
| 3250 } | 3248 } |
| 3251 | 3249 |
| 3252 checkUnnamed582(core.List<api.NamedPort> o) { | 3250 checkUnnamed1716(core.List<api.NamedPort> o) { |
| 3253 unittest.expect(o, unittest.hasLength(2)); | 3251 unittest.expect(o, unittest.hasLength(2)); |
| 3254 checkNamedPort(o[0]); | 3252 checkNamedPort(o[0]); |
| 3255 checkNamedPort(o[1]); | 3253 checkNamedPort(o[1]); |
| 3256 } | 3254 } |
| 3257 | 3255 |
| 3258 core.int buildCounterInstanceWithNamedPorts = 0; | 3256 core.int buildCounterInstanceWithNamedPorts = 0; |
| 3259 buildInstanceWithNamedPorts() { | 3257 buildInstanceWithNamedPorts() { |
| 3260 var o = new api.InstanceWithNamedPorts(); | 3258 var o = new api.InstanceWithNamedPorts(); |
| 3261 buildCounterInstanceWithNamedPorts++; | 3259 buildCounterInstanceWithNamedPorts++; |
| 3262 if (buildCounterInstanceWithNamedPorts < 3) { | 3260 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3263 o.instance = "foo"; | 3261 o.instance = "foo"; |
| 3264 o.namedPorts = buildUnnamed582(); | 3262 o.namedPorts = buildUnnamed1716(); |
| 3265 o.status = "foo"; | 3263 o.status = "foo"; |
| 3266 } | 3264 } |
| 3267 buildCounterInstanceWithNamedPorts--; | 3265 buildCounterInstanceWithNamedPorts--; |
| 3268 return o; | 3266 return o; |
| 3269 } | 3267 } |
| 3270 | 3268 |
| 3271 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 3269 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 3272 buildCounterInstanceWithNamedPorts++; | 3270 buildCounterInstanceWithNamedPorts++; |
| 3273 if (buildCounterInstanceWithNamedPorts < 3) { | 3271 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3274 unittest.expect(o.instance, unittest.equals('foo')); | 3272 unittest.expect(o.instance, unittest.equals('foo')); |
| 3275 checkUnnamed582(o.namedPorts); | 3273 checkUnnamed1716(o.namedPorts); |
| 3276 unittest.expect(o.status, unittest.equals('foo')); | 3274 unittest.expect(o.status, unittest.equals('foo')); |
| 3277 } | 3275 } |
| 3278 buildCounterInstanceWithNamedPorts--; | 3276 buildCounterInstanceWithNamedPorts--; |
| 3279 } | 3277 } |
| 3280 | 3278 |
| 3281 buildUnnamed583() { | 3279 buildUnnamed1717() { |
| 3282 var o = new core.List<api.Instance>(); | 3280 var o = new core.List<api.Instance>(); |
| 3283 o.add(buildInstance()); | 3281 o.add(buildInstance()); |
| 3284 o.add(buildInstance()); | 3282 o.add(buildInstance()); |
| 3285 return o; | 3283 return o; |
| 3286 } | 3284 } |
| 3287 | 3285 |
| 3288 checkUnnamed583(core.List<api.Instance> o) { | 3286 checkUnnamed1717(core.List<api.Instance> o) { |
| 3289 unittest.expect(o, unittest.hasLength(2)); | 3287 unittest.expect(o, unittest.hasLength(2)); |
| 3290 checkInstance(o[0]); | 3288 checkInstance(o[0]); |
| 3291 checkInstance(o[1]); | 3289 checkInstance(o[1]); |
| 3292 } | 3290 } |
| 3293 | 3291 |
| 3294 core.int buildCounterInstancesScopedListWarningData = 0; | 3292 core.int buildCounterInstancesScopedListWarningData = 0; |
| 3295 buildInstancesScopedListWarningData() { | 3293 buildInstancesScopedListWarningData() { |
| 3296 var o = new api.InstancesScopedListWarningData(); | 3294 var o = new api.InstancesScopedListWarningData(); |
| 3297 buildCounterInstancesScopedListWarningData++; | 3295 buildCounterInstancesScopedListWarningData++; |
| 3298 if (buildCounterInstancesScopedListWarningData < 3) { | 3296 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3299 o.key = "foo"; | 3297 o.key = "foo"; |
| 3300 o.value = "foo"; | 3298 o.value = "foo"; |
| 3301 } | 3299 } |
| 3302 buildCounterInstancesScopedListWarningData--; | 3300 buildCounterInstancesScopedListWarningData--; |
| 3303 return o; | 3301 return o; |
| 3304 } | 3302 } |
| 3305 | 3303 |
| 3306 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 3304 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 3307 buildCounterInstancesScopedListWarningData++; | 3305 buildCounterInstancesScopedListWarningData++; |
| 3308 if (buildCounterInstancesScopedListWarningData < 3) { | 3306 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3309 unittest.expect(o.key, unittest.equals('foo')); | 3307 unittest.expect(o.key, unittest.equals('foo')); |
| 3310 unittest.expect(o.value, unittest.equals('foo')); | 3308 unittest.expect(o.value, unittest.equals('foo')); |
| 3311 } | 3309 } |
| 3312 buildCounterInstancesScopedListWarningData--; | 3310 buildCounterInstancesScopedListWarningData--; |
| 3313 } | 3311 } |
| 3314 | 3312 |
| 3315 buildUnnamed584() { | 3313 buildUnnamed1718() { |
| 3316 var o = new core.List<api.InstancesScopedListWarningData>(); | 3314 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 3317 o.add(buildInstancesScopedListWarningData()); | 3315 o.add(buildInstancesScopedListWarningData()); |
| 3318 o.add(buildInstancesScopedListWarningData()); | 3316 o.add(buildInstancesScopedListWarningData()); |
| 3319 return o; | 3317 return o; |
| 3320 } | 3318 } |
| 3321 | 3319 |
| 3322 checkUnnamed584(core.List<api.InstancesScopedListWarningData> o) { | 3320 checkUnnamed1718(core.List<api.InstancesScopedListWarningData> o) { |
| 3323 unittest.expect(o, unittest.hasLength(2)); | 3321 unittest.expect(o, unittest.hasLength(2)); |
| 3324 checkInstancesScopedListWarningData(o[0]); | 3322 checkInstancesScopedListWarningData(o[0]); |
| 3325 checkInstancesScopedListWarningData(o[1]); | 3323 checkInstancesScopedListWarningData(o[1]); |
| 3326 } | 3324 } |
| 3327 | 3325 |
| 3328 core.int buildCounterInstancesScopedListWarning = 0; | 3326 core.int buildCounterInstancesScopedListWarning = 0; |
| 3329 buildInstancesScopedListWarning() { | 3327 buildInstancesScopedListWarning() { |
| 3330 var o = new api.InstancesScopedListWarning(); | 3328 var o = new api.InstancesScopedListWarning(); |
| 3331 buildCounterInstancesScopedListWarning++; | 3329 buildCounterInstancesScopedListWarning++; |
| 3332 if (buildCounterInstancesScopedListWarning < 3) { | 3330 if (buildCounterInstancesScopedListWarning < 3) { |
| 3333 o.code = "foo"; | 3331 o.code = "foo"; |
| 3334 o.data = buildUnnamed584(); | 3332 o.data = buildUnnamed1718(); |
| 3335 o.message = "foo"; | 3333 o.message = "foo"; |
| 3336 } | 3334 } |
| 3337 buildCounterInstancesScopedListWarning--; | 3335 buildCounterInstancesScopedListWarning--; |
| 3338 return o; | 3336 return o; |
| 3339 } | 3337 } |
| 3340 | 3338 |
| 3341 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 3339 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 3342 buildCounterInstancesScopedListWarning++; | 3340 buildCounterInstancesScopedListWarning++; |
| 3343 if (buildCounterInstancesScopedListWarning < 3) { | 3341 if (buildCounterInstancesScopedListWarning < 3) { |
| 3344 unittest.expect(o.code, unittest.equals('foo')); | 3342 unittest.expect(o.code, unittest.equals('foo')); |
| 3345 checkUnnamed584(o.data); | 3343 checkUnnamed1718(o.data); |
| 3346 unittest.expect(o.message, unittest.equals('foo')); | 3344 unittest.expect(o.message, unittest.equals('foo')); |
| 3347 } | 3345 } |
| 3348 buildCounterInstancesScopedListWarning--; | 3346 buildCounterInstancesScopedListWarning--; |
| 3349 } | 3347 } |
| 3350 | 3348 |
| 3351 core.int buildCounterInstancesScopedList = 0; | 3349 core.int buildCounterInstancesScopedList = 0; |
| 3352 buildInstancesScopedList() { | 3350 buildInstancesScopedList() { |
| 3353 var o = new api.InstancesScopedList(); | 3351 var o = new api.InstancesScopedList(); |
| 3354 buildCounterInstancesScopedList++; | 3352 buildCounterInstancesScopedList++; |
| 3355 if (buildCounterInstancesScopedList < 3) { | 3353 if (buildCounterInstancesScopedList < 3) { |
| 3356 o.instances = buildUnnamed583(); | 3354 o.instances = buildUnnamed1717(); |
| 3357 o.warning = buildInstancesScopedListWarning(); | 3355 o.warning = buildInstancesScopedListWarning(); |
| 3358 } | 3356 } |
| 3359 buildCounterInstancesScopedList--; | 3357 buildCounterInstancesScopedList--; |
| 3360 return o; | 3358 return o; |
| 3361 } | 3359 } |
| 3362 | 3360 |
| 3363 checkInstancesScopedList(api.InstancesScopedList o) { | 3361 checkInstancesScopedList(api.InstancesScopedList o) { |
| 3364 buildCounterInstancesScopedList++; | 3362 buildCounterInstancesScopedList++; |
| 3365 if (buildCounterInstancesScopedList < 3) { | 3363 if (buildCounterInstancesScopedList < 3) { |
| 3366 checkUnnamed583(o.instances); | 3364 checkUnnamed1717(o.instances); |
| 3367 checkInstancesScopedListWarning(o.warning); | 3365 checkInstancesScopedListWarning(o.warning); |
| 3368 } | 3366 } |
| 3369 buildCounterInstancesScopedList--; | 3367 buildCounterInstancesScopedList--; |
| 3370 } | 3368 } |
| 3371 | 3369 |
| 3372 core.int buildCounterLicense = 0; | 3370 core.int buildCounterLicense = 0; |
| 3373 buildLicense() { | 3371 buildLicense() { |
| 3374 var o = new api.License(); | 3372 var o = new api.License(); |
| 3375 buildCounterLicense++; | 3373 buildCounterLicense++; |
| 3376 if (buildCounterLicense < 3) { | 3374 if (buildCounterLicense < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 3406 } | 3404 } |
| 3407 | 3405 |
| 3408 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 3406 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 3409 buildCounterMachineTypeScratchDisks++; | 3407 buildCounterMachineTypeScratchDisks++; |
| 3410 if (buildCounterMachineTypeScratchDisks < 3) { | 3408 if (buildCounterMachineTypeScratchDisks < 3) { |
| 3411 unittest.expect(o.diskGb, unittest.equals(42)); | 3409 unittest.expect(o.diskGb, unittest.equals(42)); |
| 3412 } | 3410 } |
| 3413 buildCounterMachineTypeScratchDisks--; | 3411 buildCounterMachineTypeScratchDisks--; |
| 3414 } | 3412 } |
| 3415 | 3413 |
| 3416 buildUnnamed585() { | 3414 buildUnnamed1719() { |
| 3417 var o = new core.List<api.MachineTypeScratchDisks>(); | 3415 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 3418 o.add(buildMachineTypeScratchDisks()); | 3416 o.add(buildMachineTypeScratchDisks()); |
| 3419 o.add(buildMachineTypeScratchDisks()); | 3417 o.add(buildMachineTypeScratchDisks()); |
| 3420 return o; | 3418 return o; |
| 3421 } | 3419 } |
| 3422 | 3420 |
| 3423 checkUnnamed585(core.List<api.MachineTypeScratchDisks> o) { | 3421 checkUnnamed1719(core.List<api.MachineTypeScratchDisks> o) { |
| 3424 unittest.expect(o, unittest.hasLength(2)); | 3422 unittest.expect(o, unittest.hasLength(2)); |
| 3425 checkMachineTypeScratchDisks(o[0]); | 3423 checkMachineTypeScratchDisks(o[0]); |
| 3426 checkMachineTypeScratchDisks(o[1]); | 3424 checkMachineTypeScratchDisks(o[1]); |
| 3427 } | 3425 } |
| 3428 | 3426 |
| 3429 core.int buildCounterMachineType = 0; | 3427 core.int buildCounterMachineType = 0; |
| 3430 buildMachineType() { | 3428 buildMachineType() { |
| 3431 var o = new api.MachineType(); | 3429 var o = new api.MachineType(); |
| 3432 buildCounterMachineType++; | 3430 buildCounterMachineType++; |
| 3433 if (buildCounterMachineType < 3) { | 3431 if (buildCounterMachineType < 3) { |
| 3434 o.creationTimestamp = "foo"; | 3432 o.creationTimestamp = "foo"; |
| 3435 o.deprecated = buildDeprecationStatus(); | 3433 o.deprecated = buildDeprecationStatus(); |
| 3436 o.description = "foo"; | 3434 o.description = "foo"; |
| 3437 o.guestCpus = 42; | 3435 o.guestCpus = 42; |
| 3438 o.id = "foo"; | 3436 o.id = "foo"; |
| 3439 o.imageSpaceGb = 42; | 3437 o.imageSpaceGb = 42; |
| 3440 o.kind = "foo"; | 3438 o.kind = "foo"; |
| 3441 o.maximumPersistentDisks = 42; | 3439 o.maximumPersistentDisks = 42; |
| 3442 o.maximumPersistentDisksSizeGb = "foo"; | 3440 o.maximumPersistentDisksSizeGb = "foo"; |
| 3443 o.memoryMb = 42; | 3441 o.memoryMb = 42; |
| 3444 o.name = "foo"; | 3442 o.name = "foo"; |
| 3445 o.scratchDisks = buildUnnamed585(); | 3443 o.scratchDisks = buildUnnamed1719(); |
| 3446 o.selfLink = "foo"; | 3444 o.selfLink = "foo"; |
| 3447 o.zone = "foo"; | 3445 o.zone = "foo"; |
| 3448 } | 3446 } |
| 3449 buildCounterMachineType--; | 3447 buildCounterMachineType--; |
| 3450 return o; | 3448 return o; |
| 3451 } | 3449 } |
| 3452 | 3450 |
| 3453 checkMachineType(api.MachineType o) { | 3451 checkMachineType(api.MachineType o) { |
| 3454 buildCounterMachineType++; | 3452 buildCounterMachineType++; |
| 3455 if (buildCounterMachineType < 3) { | 3453 if (buildCounterMachineType < 3) { |
| 3456 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3454 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3457 checkDeprecationStatus(o.deprecated); | 3455 checkDeprecationStatus(o.deprecated); |
| 3458 unittest.expect(o.description, unittest.equals('foo')); | 3456 unittest.expect(o.description, unittest.equals('foo')); |
| 3459 unittest.expect(o.guestCpus, unittest.equals(42)); | 3457 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 3460 unittest.expect(o.id, unittest.equals('foo')); | 3458 unittest.expect(o.id, unittest.equals('foo')); |
| 3461 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 3459 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 3462 unittest.expect(o.kind, unittest.equals('foo')); | 3460 unittest.expect(o.kind, unittest.equals('foo')); |
| 3463 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 3461 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 3464 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 3462 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 3465 unittest.expect(o.memoryMb, unittest.equals(42)); | 3463 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 3466 unittest.expect(o.name, unittest.equals('foo')); | 3464 unittest.expect(o.name, unittest.equals('foo')); |
| 3467 checkUnnamed585(o.scratchDisks); | 3465 checkUnnamed1719(o.scratchDisks); |
| 3468 unittest.expect(o.selfLink, unittest.equals('foo')); | 3466 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3469 unittest.expect(o.zone, unittest.equals('foo')); | 3467 unittest.expect(o.zone, unittest.equals('foo')); |
| 3470 } | 3468 } |
| 3471 buildCounterMachineType--; | 3469 buildCounterMachineType--; |
| 3472 } | 3470 } |
| 3473 | 3471 |
| 3474 buildUnnamed586() { | 3472 buildUnnamed1720() { |
| 3475 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 3473 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 3476 o["x"] = buildMachineTypesScopedList(); | 3474 o["x"] = buildMachineTypesScopedList(); |
| 3477 o["y"] = buildMachineTypesScopedList(); | 3475 o["y"] = buildMachineTypesScopedList(); |
| 3478 return o; | 3476 return o; |
| 3479 } | 3477 } |
| 3480 | 3478 |
| 3481 checkUnnamed586(core.Map<core.String, api.MachineTypesScopedList> o) { | 3479 checkUnnamed1720(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 3482 unittest.expect(o, unittest.hasLength(2)); | 3480 unittest.expect(o, unittest.hasLength(2)); |
| 3483 checkMachineTypesScopedList(o["x"]); | 3481 checkMachineTypesScopedList(o["x"]); |
| 3484 checkMachineTypesScopedList(o["y"]); | 3482 checkMachineTypesScopedList(o["y"]); |
| 3485 } | 3483 } |
| 3486 | 3484 |
| 3487 core.int buildCounterMachineTypeAggregatedList = 0; | 3485 core.int buildCounterMachineTypeAggregatedList = 0; |
| 3488 buildMachineTypeAggregatedList() { | 3486 buildMachineTypeAggregatedList() { |
| 3489 var o = new api.MachineTypeAggregatedList(); | 3487 var o = new api.MachineTypeAggregatedList(); |
| 3490 buildCounterMachineTypeAggregatedList++; | 3488 buildCounterMachineTypeAggregatedList++; |
| 3491 if (buildCounterMachineTypeAggregatedList < 3) { | 3489 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3492 o.id = "foo"; | 3490 o.id = "foo"; |
| 3493 o.items = buildUnnamed586(); | 3491 o.items = buildUnnamed1720(); |
| 3494 o.kind = "foo"; | 3492 o.kind = "foo"; |
| 3495 o.nextPageToken = "foo"; | 3493 o.nextPageToken = "foo"; |
| 3496 o.selfLink = "foo"; | 3494 o.selfLink = "foo"; |
| 3497 } | 3495 } |
| 3498 buildCounterMachineTypeAggregatedList--; | 3496 buildCounterMachineTypeAggregatedList--; |
| 3499 return o; | 3497 return o; |
| 3500 } | 3498 } |
| 3501 | 3499 |
| 3502 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 3500 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 3503 buildCounterMachineTypeAggregatedList++; | 3501 buildCounterMachineTypeAggregatedList++; |
| 3504 if (buildCounterMachineTypeAggregatedList < 3) { | 3502 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3505 unittest.expect(o.id, unittest.equals('foo')); | 3503 unittest.expect(o.id, unittest.equals('foo')); |
| 3506 checkUnnamed586(o.items); | 3504 checkUnnamed1720(o.items); |
| 3507 unittest.expect(o.kind, unittest.equals('foo')); | 3505 unittest.expect(o.kind, unittest.equals('foo')); |
| 3508 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3506 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3509 unittest.expect(o.selfLink, unittest.equals('foo')); | 3507 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3510 } | 3508 } |
| 3511 buildCounterMachineTypeAggregatedList--; | 3509 buildCounterMachineTypeAggregatedList--; |
| 3512 } | 3510 } |
| 3513 | 3511 |
| 3514 buildUnnamed587() { | 3512 buildUnnamed1721() { |
| 3515 var o = new core.List<api.MachineType>(); | 3513 var o = new core.List<api.MachineType>(); |
| 3516 o.add(buildMachineType()); | 3514 o.add(buildMachineType()); |
| 3517 o.add(buildMachineType()); | 3515 o.add(buildMachineType()); |
| 3518 return o; | 3516 return o; |
| 3519 } | 3517 } |
| 3520 | 3518 |
| 3521 checkUnnamed587(core.List<api.MachineType> o) { | 3519 checkUnnamed1721(core.List<api.MachineType> o) { |
| 3522 unittest.expect(o, unittest.hasLength(2)); | 3520 unittest.expect(o, unittest.hasLength(2)); |
| 3523 checkMachineType(o[0]); | 3521 checkMachineType(o[0]); |
| 3524 checkMachineType(o[1]); | 3522 checkMachineType(o[1]); |
| 3525 } | 3523 } |
| 3526 | 3524 |
| 3527 core.int buildCounterMachineTypeList = 0; | 3525 core.int buildCounterMachineTypeList = 0; |
| 3528 buildMachineTypeList() { | 3526 buildMachineTypeList() { |
| 3529 var o = new api.MachineTypeList(); | 3527 var o = new api.MachineTypeList(); |
| 3530 buildCounterMachineTypeList++; | 3528 buildCounterMachineTypeList++; |
| 3531 if (buildCounterMachineTypeList < 3) { | 3529 if (buildCounterMachineTypeList < 3) { |
| 3532 o.id = "foo"; | 3530 o.id = "foo"; |
| 3533 o.items = buildUnnamed587(); | 3531 o.items = buildUnnamed1721(); |
| 3534 o.kind = "foo"; | 3532 o.kind = "foo"; |
| 3535 o.nextPageToken = "foo"; | 3533 o.nextPageToken = "foo"; |
| 3536 o.selfLink = "foo"; | 3534 o.selfLink = "foo"; |
| 3537 } | 3535 } |
| 3538 buildCounterMachineTypeList--; | 3536 buildCounterMachineTypeList--; |
| 3539 return o; | 3537 return o; |
| 3540 } | 3538 } |
| 3541 | 3539 |
| 3542 checkMachineTypeList(api.MachineTypeList o) { | 3540 checkMachineTypeList(api.MachineTypeList o) { |
| 3543 buildCounterMachineTypeList++; | 3541 buildCounterMachineTypeList++; |
| 3544 if (buildCounterMachineTypeList < 3) { | 3542 if (buildCounterMachineTypeList < 3) { |
| 3545 unittest.expect(o.id, unittest.equals('foo')); | 3543 unittest.expect(o.id, unittest.equals('foo')); |
| 3546 checkUnnamed587(o.items); | 3544 checkUnnamed1721(o.items); |
| 3547 unittest.expect(o.kind, unittest.equals('foo')); | 3545 unittest.expect(o.kind, unittest.equals('foo')); |
| 3548 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3546 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3549 unittest.expect(o.selfLink, unittest.equals('foo')); | 3547 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3550 } | 3548 } |
| 3551 buildCounterMachineTypeList--; | 3549 buildCounterMachineTypeList--; |
| 3552 } | 3550 } |
| 3553 | 3551 |
| 3554 buildUnnamed588() { | 3552 buildUnnamed1722() { |
| 3555 var o = new core.List<api.MachineType>(); | 3553 var o = new core.List<api.MachineType>(); |
| 3556 o.add(buildMachineType()); | 3554 o.add(buildMachineType()); |
| 3557 o.add(buildMachineType()); | 3555 o.add(buildMachineType()); |
| 3558 return o; | 3556 return o; |
| 3559 } | 3557 } |
| 3560 | 3558 |
| 3561 checkUnnamed588(core.List<api.MachineType> o) { | 3559 checkUnnamed1722(core.List<api.MachineType> o) { |
| 3562 unittest.expect(o, unittest.hasLength(2)); | 3560 unittest.expect(o, unittest.hasLength(2)); |
| 3563 checkMachineType(o[0]); | 3561 checkMachineType(o[0]); |
| 3564 checkMachineType(o[1]); | 3562 checkMachineType(o[1]); |
| 3565 } | 3563 } |
| 3566 | 3564 |
| 3567 core.int buildCounterMachineTypesScopedListWarningData = 0; | 3565 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 3568 buildMachineTypesScopedListWarningData() { | 3566 buildMachineTypesScopedListWarningData() { |
| 3569 var o = new api.MachineTypesScopedListWarningData(); | 3567 var o = new api.MachineTypesScopedListWarningData(); |
| 3570 buildCounterMachineTypesScopedListWarningData++; | 3568 buildCounterMachineTypesScopedListWarningData++; |
| 3571 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3569 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3572 o.key = "foo"; | 3570 o.key = "foo"; |
| 3573 o.value = "foo"; | 3571 o.value = "foo"; |
| 3574 } | 3572 } |
| 3575 buildCounterMachineTypesScopedListWarningData--; | 3573 buildCounterMachineTypesScopedListWarningData--; |
| 3576 return o; | 3574 return o; |
| 3577 } | 3575 } |
| 3578 | 3576 |
| 3579 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 3577 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 3580 buildCounterMachineTypesScopedListWarningData++; | 3578 buildCounterMachineTypesScopedListWarningData++; |
| 3581 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3579 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3582 unittest.expect(o.key, unittest.equals('foo')); | 3580 unittest.expect(o.key, unittest.equals('foo')); |
| 3583 unittest.expect(o.value, unittest.equals('foo')); | 3581 unittest.expect(o.value, unittest.equals('foo')); |
| 3584 } | 3582 } |
| 3585 buildCounterMachineTypesScopedListWarningData--; | 3583 buildCounterMachineTypesScopedListWarningData--; |
| 3586 } | 3584 } |
| 3587 | 3585 |
| 3588 buildUnnamed589() { | 3586 buildUnnamed1723() { |
| 3589 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 3587 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 3590 o.add(buildMachineTypesScopedListWarningData()); | 3588 o.add(buildMachineTypesScopedListWarningData()); |
| 3591 o.add(buildMachineTypesScopedListWarningData()); | 3589 o.add(buildMachineTypesScopedListWarningData()); |
| 3592 return o; | 3590 return o; |
| 3593 } | 3591 } |
| 3594 | 3592 |
| 3595 checkUnnamed589(core.List<api.MachineTypesScopedListWarningData> o) { | 3593 checkUnnamed1723(core.List<api.MachineTypesScopedListWarningData> o) { |
| 3596 unittest.expect(o, unittest.hasLength(2)); | 3594 unittest.expect(o, unittest.hasLength(2)); |
| 3597 checkMachineTypesScopedListWarningData(o[0]); | 3595 checkMachineTypesScopedListWarningData(o[0]); |
| 3598 checkMachineTypesScopedListWarningData(o[1]); | 3596 checkMachineTypesScopedListWarningData(o[1]); |
| 3599 } | 3597 } |
| 3600 | 3598 |
| 3601 core.int buildCounterMachineTypesScopedListWarning = 0; | 3599 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 3602 buildMachineTypesScopedListWarning() { | 3600 buildMachineTypesScopedListWarning() { |
| 3603 var o = new api.MachineTypesScopedListWarning(); | 3601 var o = new api.MachineTypesScopedListWarning(); |
| 3604 buildCounterMachineTypesScopedListWarning++; | 3602 buildCounterMachineTypesScopedListWarning++; |
| 3605 if (buildCounterMachineTypesScopedListWarning < 3) { | 3603 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3606 o.code = "foo"; | 3604 o.code = "foo"; |
| 3607 o.data = buildUnnamed589(); | 3605 o.data = buildUnnamed1723(); |
| 3608 o.message = "foo"; | 3606 o.message = "foo"; |
| 3609 } | 3607 } |
| 3610 buildCounterMachineTypesScopedListWarning--; | 3608 buildCounterMachineTypesScopedListWarning--; |
| 3611 return o; | 3609 return o; |
| 3612 } | 3610 } |
| 3613 | 3611 |
| 3614 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 3612 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 3615 buildCounterMachineTypesScopedListWarning++; | 3613 buildCounterMachineTypesScopedListWarning++; |
| 3616 if (buildCounterMachineTypesScopedListWarning < 3) { | 3614 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3617 unittest.expect(o.code, unittest.equals('foo')); | 3615 unittest.expect(o.code, unittest.equals('foo')); |
| 3618 checkUnnamed589(o.data); | 3616 checkUnnamed1723(o.data); |
| 3619 unittest.expect(o.message, unittest.equals('foo')); | 3617 unittest.expect(o.message, unittest.equals('foo')); |
| 3620 } | 3618 } |
| 3621 buildCounterMachineTypesScopedListWarning--; | 3619 buildCounterMachineTypesScopedListWarning--; |
| 3622 } | 3620 } |
| 3623 | 3621 |
| 3624 core.int buildCounterMachineTypesScopedList = 0; | 3622 core.int buildCounterMachineTypesScopedList = 0; |
| 3625 buildMachineTypesScopedList() { | 3623 buildMachineTypesScopedList() { |
| 3626 var o = new api.MachineTypesScopedList(); | 3624 var o = new api.MachineTypesScopedList(); |
| 3627 buildCounterMachineTypesScopedList++; | 3625 buildCounterMachineTypesScopedList++; |
| 3628 if (buildCounterMachineTypesScopedList < 3) { | 3626 if (buildCounterMachineTypesScopedList < 3) { |
| 3629 o.machineTypes = buildUnnamed588(); | 3627 o.machineTypes = buildUnnamed1722(); |
| 3630 o.warning = buildMachineTypesScopedListWarning(); | 3628 o.warning = buildMachineTypesScopedListWarning(); |
| 3631 } | 3629 } |
| 3632 buildCounterMachineTypesScopedList--; | 3630 buildCounterMachineTypesScopedList--; |
| 3633 return o; | 3631 return o; |
| 3634 } | 3632 } |
| 3635 | 3633 |
| 3636 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 3634 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 3637 buildCounterMachineTypesScopedList++; | 3635 buildCounterMachineTypesScopedList++; |
| 3638 if (buildCounterMachineTypesScopedList < 3) { | 3636 if (buildCounterMachineTypesScopedList < 3) { |
| 3639 checkUnnamed588(o.machineTypes); | 3637 checkUnnamed1722(o.machineTypes); |
| 3640 checkMachineTypesScopedListWarning(o.warning); | 3638 checkMachineTypesScopedListWarning(o.warning); |
| 3641 } | 3639 } |
| 3642 buildCounterMachineTypesScopedList--; | 3640 buildCounterMachineTypesScopedList--; |
| 3643 } | 3641 } |
| 3644 | 3642 |
| 3645 core.int buildCounterManagedInstance = 0; | 3643 core.int buildCounterManagedInstance = 0; |
| 3646 buildManagedInstance() { | 3644 buildManagedInstance() { |
| 3647 var o = new api.ManagedInstance(); | 3645 var o = new api.ManagedInstance(); |
| 3648 buildCounterManagedInstance++; | 3646 buildCounterManagedInstance++; |
| 3649 if (buildCounterManagedInstance < 3) { | 3647 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3685 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 3683 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 3686 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 3684 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 3687 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 3685 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 3688 unittest.expect(o.code, unittest.equals('foo')); | 3686 unittest.expect(o.code, unittest.equals('foo')); |
| 3689 unittest.expect(o.location, unittest.equals('foo')); | 3687 unittest.expect(o.location, unittest.equals('foo')); |
| 3690 unittest.expect(o.message, unittest.equals('foo')); | 3688 unittest.expect(o.message, unittest.equals('foo')); |
| 3691 } | 3689 } |
| 3692 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 3690 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 3693 } | 3691 } |
| 3694 | 3692 |
| 3695 buildUnnamed590() { | 3693 buildUnnamed1724() { |
| 3696 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 3694 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 3697 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3695 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3698 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3696 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3699 return o; | 3697 return o; |
| 3700 } | 3698 } |
| 3701 | 3699 |
| 3702 checkUnnamed590(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 3700 checkUnnamed1724(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 3703 unittest.expect(o, unittest.hasLength(2)); | 3701 unittest.expect(o, unittest.hasLength(2)); |
| 3704 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 3702 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 3705 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 3703 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 3706 } | 3704 } |
| 3707 | 3705 |
| 3708 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 3706 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 3709 buildManagedInstanceLastAttemptErrors() { | 3707 buildManagedInstanceLastAttemptErrors() { |
| 3710 var o = new api.ManagedInstanceLastAttemptErrors(); | 3708 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 3711 buildCounterManagedInstanceLastAttemptErrors++; | 3709 buildCounterManagedInstanceLastAttemptErrors++; |
| 3712 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3710 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3713 o.errors = buildUnnamed590(); | 3711 o.errors = buildUnnamed1724(); |
| 3714 } | 3712 } |
| 3715 buildCounterManagedInstanceLastAttemptErrors--; | 3713 buildCounterManagedInstanceLastAttemptErrors--; |
| 3716 return o; | 3714 return o; |
| 3717 } | 3715 } |
| 3718 | 3716 |
| 3719 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 3717 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 3720 buildCounterManagedInstanceLastAttemptErrors++; | 3718 buildCounterManagedInstanceLastAttemptErrors++; |
| 3721 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3719 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3722 checkUnnamed590(o.errors); | 3720 checkUnnamed1724(o.errors); |
| 3723 } | 3721 } |
| 3724 buildCounterManagedInstanceLastAttemptErrors--; | 3722 buildCounterManagedInstanceLastAttemptErrors--; |
| 3725 } | 3723 } |
| 3726 | 3724 |
| 3727 core.int buildCounterManagedInstanceLastAttempt = 0; | 3725 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 3728 buildManagedInstanceLastAttempt() { | 3726 buildManagedInstanceLastAttempt() { |
| 3729 var o = new api.ManagedInstanceLastAttempt(); | 3727 var o = new api.ManagedInstanceLastAttempt(); |
| 3730 buildCounterManagedInstanceLastAttempt++; | 3728 buildCounterManagedInstanceLastAttempt++; |
| 3731 if (buildCounterManagedInstanceLastAttempt < 3) { | 3729 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 3732 o.errors = buildManagedInstanceLastAttemptErrors(); | 3730 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3757 | 3755 |
| 3758 checkMetadataItems(api.MetadataItems o) { | 3756 checkMetadataItems(api.MetadataItems o) { |
| 3759 buildCounterMetadataItems++; | 3757 buildCounterMetadataItems++; |
| 3760 if (buildCounterMetadataItems < 3) { | 3758 if (buildCounterMetadataItems < 3) { |
| 3761 unittest.expect(o.key, unittest.equals('foo')); | 3759 unittest.expect(o.key, unittest.equals('foo')); |
| 3762 unittest.expect(o.value, unittest.equals('foo')); | 3760 unittest.expect(o.value, unittest.equals('foo')); |
| 3763 } | 3761 } |
| 3764 buildCounterMetadataItems--; | 3762 buildCounterMetadataItems--; |
| 3765 } | 3763 } |
| 3766 | 3764 |
| 3767 buildUnnamed591() { | 3765 buildUnnamed1725() { |
| 3768 var o = new core.List<api.MetadataItems>(); | 3766 var o = new core.List<api.MetadataItems>(); |
| 3769 o.add(buildMetadataItems()); | 3767 o.add(buildMetadataItems()); |
| 3770 o.add(buildMetadataItems()); | 3768 o.add(buildMetadataItems()); |
| 3771 return o; | 3769 return o; |
| 3772 } | 3770 } |
| 3773 | 3771 |
| 3774 checkUnnamed591(core.List<api.MetadataItems> o) { | 3772 checkUnnamed1725(core.List<api.MetadataItems> o) { |
| 3775 unittest.expect(o, unittest.hasLength(2)); | 3773 unittest.expect(o, unittest.hasLength(2)); |
| 3776 checkMetadataItems(o[0]); | 3774 checkMetadataItems(o[0]); |
| 3777 checkMetadataItems(o[1]); | 3775 checkMetadataItems(o[1]); |
| 3778 } | 3776 } |
| 3779 | 3777 |
| 3780 core.int buildCounterMetadata = 0; | 3778 core.int buildCounterMetadata = 0; |
| 3781 buildMetadata() { | 3779 buildMetadata() { |
| 3782 var o = new api.Metadata(); | 3780 var o = new api.Metadata(); |
| 3783 buildCounterMetadata++; | 3781 buildCounterMetadata++; |
| 3784 if (buildCounterMetadata < 3) { | 3782 if (buildCounterMetadata < 3) { |
| 3785 o.fingerprint = "foo"; | 3783 o.fingerprint = "foo"; |
| 3786 o.items = buildUnnamed591(); | 3784 o.items = buildUnnamed1725(); |
| 3787 o.kind = "foo"; | 3785 o.kind = "foo"; |
| 3788 } | 3786 } |
| 3789 buildCounterMetadata--; | 3787 buildCounterMetadata--; |
| 3790 return o; | 3788 return o; |
| 3791 } | 3789 } |
| 3792 | 3790 |
| 3793 checkMetadata(api.Metadata o) { | 3791 checkMetadata(api.Metadata o) { |
| 3794 buildCounterMetadata++; | 3792 buildCounterMetadata++; |
| 3795 if (buildCounterMetadata < 3) { | 3793 if (buildCounterMetadata < 3) { |
| 3796 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3794 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3797 checkUnnamed591(o.items); | 3795 checkUnnamed1725(o.items); |
| 3798 unittest.expect(o.kind, unittest.equals('foo')); | 3796 unittest.expect(o.kind, unittest.equals('foo')); |
| 3799 } | 3797 } |
| 3800 buildCounterMetadata--; | 3798 buildCounterMetadata--; |
| 3801 } | 3799 } |
| 3802 | 3800 |
| 3803 core.int buildCounterNamedPort = 0; | 3801 core.int buildCounterNamedPort = 0; |
| 3804 buildNamedPort() { | 3802 buildNamedPort() { |
| 3805 var o = new api.NamedPort(); | 3803 var o = new api.NamedPort(); |
| 3806 buildCounterNamedPort++; | 3804 buildCounterNamedPort++; |
| 3807 if (buildCounterNamedPort < 3) { | 3805 if (buildCounterNamedPort < 3) { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3847 unittest.expect(o.description, unittest.equals('foo')); | 3845 unittest.expect(o.description, unittest.equals('foo')); |
| 3848 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 3846 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 3849 unittest.expect(o.id, unittest.equals('foo')); | 3847 unittest.expect(o.id, unittest.equals('foo')); |
| 3850 unittest.expect(o.kind, unittest.equals('foo')); | 3848 unittest.expect(o.kind, unittest.equals('foo')); |
| 3851 unittest.expect(o.name, unittest.equals('foo')); | 3849 unittest.expect(o.name, unittest.equals('foo')); |
| 3852 unittest.expect(o.selfLink, unittest.equals('foo')); | 3850 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3853 } | 3851 } |
| 3854 buildCounterNetwork--; | 3852 buildCounterNetwork--; |
| 3855 } | 3853 } |
| 3856 | 3854 |
| 3857 buildUnnamed592() { | 3855 buildUnnamed1726() { |
| 3858 var o = new core.List<api.AccessConfig>(); | 3856 var o = new core.List<api.AccessConfig>(); |
| 3859 o.add(buildAccessConfig()); | 3857 o.add(buildAccessConfig()); |
| 3860 o.add(buildAccessConfig()); | 3858 o.add(buildAccessConfig()); |
| 3861 return o; | 3859 return o; |
| 3862 } | 3860 } |
| 3863 | 3861 |
| 3864 checkUnnamed592(core.List<api.AccessConfig> o) { | 3862 checkUnnamed1726(core.List<api.AccessConfig> o) { |
| 3865 unittest.expect(o, unittest.hasLength(2)); | 3863 unittest.expect(o, unittest.hasLength(2)); |
| 3866 checkAccessConfig(o[0]); | 3864 checkAccessConfig(o[0]); |
| 3867 checkAccessConfig(o[1]); | 3865 checkAccessConfig(o[1]); |
| 3868 } | 3866 } |
| 3869 | 3867 |
| 3870 core.int buildCounterNetworkInterface = 0; | 3868 core.int buildCounterNetworkInterface = 0; |
| 3871 buildNetworkInterface() { | 3869 buildNetworkInterface() { |
| 3872 var o = new api.NetworkInterface(); | 3870 var o = new api.NetworkInterface(); |
| 3873 buildCounterNetworkInterface++; | 3871 buildCounterNetworkInterface++; |
| 3874 if (buildCounterNetworkInterface < 3) { | 3872 if (buildCounterNetworkInterface < 3) { |
| 3875 o.accessConfigs = buildUnnamed592(); | 3873 o.accessConfigs = buildUnnamed1726(); |
| 3876 o.name = "foo"; | 3874 o.name = "foo"; |
| 3877 o.network = "foo"; | 3875 o.network = "foo"; |
| 3878 o.networkIP = "foo"; | 3876 o.networkIP = "foo"; |
| 3879 } | 3877 } |
| 3880 buildCounterNetworkInterface--; | 3878 buildCounterNetworkInterface--; |
| 3881 return o; | 3879 return o; |
| 3882 } | 3880 } |
| 3883 | 3881 |
| 3884 checkNetworkInterface(api.NetworkInterface o) { | 3882 checkNetworkInterface(api.NetworkInterface o) { |
| 3885 buildCounterNetworkInterface++; | 3883 buildCounterNetworkInterface++; |
| 3886 if (buildCounterNetworkInterface < 3) { | 3884 if (buildCounterNetworkInterface < 3) { |
| 3887 checkUnnamed592(o.accessConfigs); | 3885 checkUnnamed1726(o.accessConfigs); |
| 3888 unittest.expect(o.name, unittest.equals('foo')); | 3886 unittest.expect(o.name, unittest.equals('foo')); |
| 3889 unittest.expect(o.network, unittest.equals('foo')); | 3887 unittest.expect(o.network, unittest.equals('foo')); |
| 3890 unittest.expect(o.networkIP, unittest.equals('foo')); | 3888 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 3891 } | 3889 } |
| 3892 buildCounterNetworkInterface--; | 3890 buildCounterNetworkInterface--; |
| 3893 } | 3891 } |
| 3894 | 3892 |
| 3895 buildUnnamed593() { | 3893 buildUnnamed1727() { |
| 3896 var o = new core.List<api.Network>(); | 3894 var o = new core.List<api.Network>(); |
| 3897 o.add(buildNetwork()); | 3895 o.add(buildNetwork()); |
| 3898 o.add(buildNetwork()); | 3896 o.add(buildNetwork()); |
| 3899 return o; | 3897 return o; |
| 3900 } | 3898 } |
| 3901 | 3899 |
| 3902 checkUnnamed593(core.List<api.Network> o) { | 3900 checkUnnamed1727(core.List<api.Network> o) { |
| 3903 unittest.expect(o, unittest.hasLength(2)); | 3901 unittest.expect(o, unittest.hasLength(2)); |
| 3904 checkNetwork(o[0]); | 3902 checkNetwork(o[0]); |
| 3905 checkNetwork(o[1]); | 3903 checkNetwork(o[1]); |
| 3906 } | 3904 } |
| 3907 | 3905 |
| 3908 core.int buildCounterNetworkList = 0; | 3906 core.int buildCounterNetworkList = 0; |
| 3909 buildNetworkList() { | 3907 buildNetworkList() { |
| 3910 var o = new api.NetworkList(); | 3908 var o = new api.NetworkList(); |
| 3911 buildCounterNetworkList++; | 3909 buildCounterNetworkList++; |
| 3912 if (buildCounterNetworkList < 3) { | 3910 if (buildCounterNetworkList < 3) { |
| 3913 o.id = "foo"; | 3911 o.id = "foo"; |
| 3914 o.items = buildUnnamed593(); | 3912 o.items = buildUnnamed1727(); |
| 3915 o.kind = "foo"; | 3913 o.kind = "foo"; |
| 3916 o.nextPageToken = "foo"; | 3914 o.nextPageToken = "foo"; |
| 3917 o.selfLink = "foo"; | 3915 o.selfLink = "foo"; |
| 3918 } | 3916 } |
| 3919 buildCounterNetworkList--; | 3917 buildCounterNetworkList--; |
| 3920 return o; | 3918 return o; |
| 3921 } | 3919 } |
| 3922 | 3920 |
| 3923 checkNetworkList(api.NetworkList o) { | 3921 checkNetworkList(api.NetworkList o) { |
| 3924 buildCounterNetworkList++; | 3922 buildCounterNetworkList++; |
| 3925 if (buildCounterNetworkList < 3) { | 3923 if (buildCounterNetworkList < 3) { |
| 3926 unittest.expect(o.id, unittest.equals('foo')); | 3924 unittest.expect(o.id, unittest.equals('foo')); |
| 3927 checkUnnamed593(o.items); | 3925 checkUnnamed1727(o.items); |
| 3928 unittest.expect(o.kind, unittest.equals('foo')); | 3926 unittest.expect(o.kind, unittest.equals('foo')); |
| 3929 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3927 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3930 unittest.expect(o.selfLink, unittest.equals('foo')); | 3928 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3931 } | 3929 } |
| 3932 buildCounterNetworkList--; | 3930 buildCounterNetworkList--; |
| 3933 } | 3931 } |
| 3934 | 3932 |
| 3935 core.int buildCounterOperationErrorErrors = 0; | 3933 core.int buildCounterOperationErrorErrors = 0; |
| 3936 buildOperationErrorErrors() { | 3934 buildOperationErrorErrors() { |
| 3937 var o = new api.OperationErrorErrors(); | 3935 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 3948 checkOperationErrorErrors(api.OperationErrorErrors o) { | 3946 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 3949 buildCounterOperationErrorErrors++; | 3947 buildCounterOperationErrorErrors++; |
| 3950 if (buildCounterOperationErrorErrors < 3) { | 3948 if (buildCounterOperationErrorErrors < 3) { |
| 3951 unittest.expect(o.code, unittest.equals('foo')); | 3949 unittest.expect(o.code, unittest.equals('foo')); |
| 3952 unittest.expect(o.location, unittest.equals('foo')); | 3950 unittest.expect(o.location, unittest.equals('foo')); |
| 3953 unittest.expect(o.message, unittest.equals('foo')); | 3951 unittest.expect(o.message, unittest.equals('foo')); |
| 3954 } | 3952 } |
| 3955 buildCounterOperationErrorErrors--; | 3953 buildCounterOperationErrorErrors--; |
| 3956 } | 3954 } |
| 3957 | 3955 |
| 3958 buildUnnamed594() { | 3956 buildUnnamed1728() { |
| 3959 var o = new core.List<api.OperationErrorErrors>(); | 3957 var o = new core.List<api.OperationErrorErrors>(); |
| 3960 o.add(buildOperationErrorErrors()); | 3958 o.add(buildOperationErrorErrors()); |
| 3961 o.add(buildOperationErrorErrors()); | 3959 o.add(buildOperationErrorErrors()); |
| 3962 return o; | 3960 return o; |
| 3963 } | 3961 } |
| 3964 | 3962 |
| 3965 checkUnnamed594(core.List<api.OperationErrorErrors> o) { | 3963 checkUnnamed1728(core.List<api.OperationErrorErrors> o) { |
| 3966 unittest.expect(o, unittest.hasLength(2)); | 3964 unittest.expect(o, unittest.hasLength(2)); |
| 3967 checkOperationErrorErrors(o[0]); | 3965 checkOperationErrorErrors(o[0]); |
| 3968 checkOperationErrorErrors(o[1]); | 3966 checkOperationErrorErrors(o[1]); |
| 3969 } | 3967 } |
| 3970 | 3968 |
| 3971 core.int buildCounterOperationError = 0; | 3969 core.int buildCounterOperationError = 0; |
| 3972 buildOperationError() { | 3970 buildOperationError() { |
| 3973 var o = new api.OperationError(); | 3971 var o = new api.OperationError(); |
| 3974 buildCounterOperationError++; | 3972 buildCounterOperationError++; |
| 3975 if (buildCounterOperationError < 3) { | 3973 if (buildCounterOperationError < 3) { |
| 3976 o.errors = buildUnnamed594(); | 3974 o.errors = buildUnnamed1728(); |
| 3977 } | 3975 } |
| 3978 buildCounterOperationError--; | 3976 buildCounterOperationError--; |
| 3979 return o; | 3977 return o; |
| 3980 } | 3978 } |
| 3981 | 3979 |
| 3982 checkOperationError(api.OperationError o) { | 3980 checkOperationError(api.OperationError o) { |
| 3983 buildCounterOperationError++; | 3981 buildCounterOperationError++; |
| 3984 if (buildCounterOperationError < 3) { | 3982 if (buildCounterOperationError < 3) { |
| 3985 checkUnnamed594(o.errors); | 3983 checkUnnamed1728(o.errors); |
| 3986 } | 3984 } |
| 3987 buildCounterOperationError--; | 3985 buildCounterOperationError--; |
| 3988 } | 3986 } |
| 3989 | 3987 |
| 3990 core.int buildCounterOperationWarningsData = 0; | 3988 core.int buildCounterOperationWarningsData = 0; |
| 3991 buildOperationWarningsData() { | 3989 buildOperationWarningsData() { |
| 3992 var o = new api.OperationWarningsData(); | 3990 var o = new api.OperationWarningsData(); |
| 3993 buildCounterOperationWarningsData++; | 3991 buildCounterOperationWarningsData++; |
| 3994 if (buildCounterOperationWarningsData < 3) { | 3992 if (buildCounterOperationWarningsData < 3) { |
| 3995 o.key = "foo"; | 3993 o.key = "foo"; |
| 3996 o.value = "foo"; | 3994 o.value = "foo"; |
| 3997 } | 3995 } |
| 3998 buildCounterOperationWarningsData--; | 3996 buildCounterOperationWarningsData--; |
| 3999 return o; | 3997 return o; |
| 4000 } | 3998 } |
| 4001 | 3999 |
| 4002 checkOperationWarningsData(api.OperationWarningsData o) { | 4000 checkOperationWarningsData(api.OperationWarningsData o) { |
| 4003 buildCounterOperationWarningsData++; | 4001 buildCounterOperationWarningsData++; |
| 4004 if (buildCounterOperationWarningsData < 3) { | 4002 if (buildCounterOperationWarningsData < 3) { |
| 4005 unittest.expect(o.key, unittest.equals('foo')); | 4003 unittest.expect(o.key, unittest.equals('foo')); |
| 4006 unittest.expect(o.value, unittest.equals('foo')); | 4004 unittest.expect(o.value, unittest.equals('foo')); |
| 4007 } | 4005 } |
| 4008 buildCounterOperationWarningsData--; | 4006 buildCounterOperationWarningsData--; |
| 4009 } | 4007 } |
| 4010 | 4008 |
| 4011 buildUnnamed595() { | 4009 buildUnnamed1729() { |
| 4012 var o = new core.List<api.OperationWarningsData>(); | 4010 var o = new core.List<api.OperationWarningsData>(); |
| 4013 o.add(buildOperationWarningsData()); | 4011 o.add(buildOperationWarningsData()); |
| 4014 o.add(buildOperationWarningsData()); | 4012 o.add(buildOperationWarningsData()); |
| 4015 return o; | 4013 return o; |
| 4016 } | 4014 } |
| 4017 | 4015 |
| 4018 checkUnnamed595(core.List<api.OperationWarningsData> o) { | 4016 checkUnnamed1729(core.List<api.OperationWarningsData> o) { |
| 4019 unittest.expect(o, unittest.hasLength(2)); | 4017 unittest.expect(o, unittest.hasLength(2)); |
| 4020 checkOperationWarningsData(o[0]); | 4018 checkOperationWarningsData(o[0]); |
| 4021 checkOperationWarningsData(o[1]); | 4019 checkOperationWarningsData(o[1]); |
| 4022 } | 4020 } |
| 4023 | 4021 |
| 4024 core.int buildCounterOperationWarnings = 0; | 4022 core.int buildCounterOperationWarnings = 0; |
| 4025 buildOperationWarnings() { | 4023 buildOperationWarnings() { |
| 4026 var o = new api.OperationWarnings(); | 4024 var o = new api.OperationWarnings(); |
| 4027 buildCounterOperationWarnings++; | 4025 buildCounterOperationWarnings++; |
| 4028 if (buildCounterOperationWarnings < 3) { | 4026 if (buildCounterOperationWarnings < 3) { |
| 4029 o.code = "foo"; | 4027 o.code = "foo"; |
| 4030 o.data = buildUnnamed595(); | 4028 o.data = buildUnnamed1729(); |
| 4031 o.message = "foo"; | 4029 o.message = "foo"; |
| 4032 } | 4030 } |
| 4033 buildCounterOperationWarnings--; | 4031 buildCounterOperationWarnings--; |
| 4034 return o; | 4032 return o; |
| 4035 } | 4033 } |
| 4036 | 4034 |
| 4037 checkOperationWarnings(api.OperationWarnings o) { | 4035 checkOperationWarnings(api.OperationWarnings o) { |
| 4038 buildCounterOperationWarnings++; | 4036 buildCounterOperationWarnings++; |
| 4039 if (buildCounterOperationWarnings < 3) { | 4037 if (buildCounterOperationWarnings < 3) { |
| 4040 unittest.expect(o.code, unittest.equals('foo')); | 4038 unittest.expect(o.code, unittest.equals('foo')); |
| 4041 checkUnnamed595(o.data); | 4039 checkUnnamed1729(o.data); |
| 4042 unittest.expect(o.message, unittest.equals('foo')); | 4040 unittest.expect(o.message, unittest.equals('foo')); |
| 4043 } | 4041 } |
| 4044 buildCounterOperationWarnings--; | 4042 buildCounterOperationWarnings--; |
| 4045 } | 4043 } |
| 4046 | 4044 |
| 4047 buildUnnamed596() { | 4045 buildUnnamed1730() { |
| 4048 var o = new core.List<api.OperationWarnings>(); | 4046 var o = new core.List<api.OperationWarnings>(); |
| 4049 o.add(buildOperationWarnings()); | 4047 o.add(buildOperationWarnings()); |
| 4050 o.add(buildOperationWarnings()); | 4048 o.add(buildOperationWarnings()); |
| 4051 return o; | 4049 return o; |
| 4052 } | 4050 } |
| 4053 | 4051 |
| 4054 checkUnnamed596(core.List<api.OperationWarnings> o) { | 4052 checkUnnamed1730(core.List<api.OperationWarnings> o) { |
| 4055 unittest.expect(o, unittest.hasLength(2)); | 4053 unittest.expect(o, unittest.hasLength(2)); |
| 4056 checkOperationWarnings(o[0]); | 4054 checkOperationWarnings(o[0]); |
| 4057 checkOperationWarnings(o[1]); | 4055 checkOperationWarnings(o[1]); |
| 4058 } | 4056 } |
| 4059 | 4057 |
| 4060 core.int buildCounterOperation = 0; | 4058 core.int buildCounterOperation = 0; |
| 4061 buildOperation() { | 4059 buildOperation() { |
| 4062 var o = new api.Operation(); | 4060 var o = new api.Operation(); |
| 4063 buildCounterOperation++; | 4061 buildCounterOperation++; |
| 4064 if (buildCounterOperation < 3) { | 4062 if (buildCounterOperation < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4075 o.operationType = "foo"; | 4073 o.operationType = "foo"; |
| 4076 o.progress = 42; | 4074 o.progress = 42; |
| 4077 o.region = "foo"; | 4075 o.region = "foo"; |
| 4078 o.selfLink = "foo"; | 4076 o.selfLink = "foo"; |
| 4079 o.startTime = "foo"; | 4077 o.startTime = "foo"; |
| 4080 o.status = "foo"; | 4078 o.status = "foo"; |
| 4081 o.statusMessage = "foo"; | 4079 o.statusMessage = "foo"; |
| 4082 o.targetId = "foo"; | 4080 o.targetId = "foo"; |
| 4083 o.targetLink = "foo"; | 4081 o.targetLink = "foo"; |
| 4084 o.user = "foo"; | 4082 o.user = "foo"; |
| 4085 o.warnings = buildUnnamed596(); | 4083 o.warnings = buildUnnamed1730(); |
| 4086 o.zone = "foo"; | 4084 o.zone = "foo"; |
| 4087 } | 4085 } |
| 4088 buildCounterOperation--; | 4086 buildCounterOperation--; |
| 4089 return o; | 4087 return o; |
| 4090 } | 4088 } |
| 4091 | 4089 |
| 4092 checkOperation(api.Operation o) { | 4090 checkOperation(api.Operation o) { |
| 4093 buildCounterOperation++; | 4091 buildCounterOperation++; |
| 4094 if (buildCounterOperation < 3) { | 4092 if (buildCounterOperation < 3) { |
| 4095 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 4093 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| 4096 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4094 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4097 unittest.expect(o.endTime, unittest.equals('foo')); | 4095 unittest.expect(o.endTime, unittest.equals('foo')); |
| 4098 checkOperationError(o.error); | 4096 checkOperationError(o.error); |
| 4099 unittest.expect(o.httpErrorMessage, unittest.equals('foo')); | 4097 unittest.expect(o.httpErrorMessage, unittest.equals('foo')); |
| 4100 unittest.expect(o.httpErrorStatusCode, unittest.equals(42)); | 4098 unittest.expect(o.httpErrorStatusCode, unittest.equals(42)); |
| 4101 unittest.expect(o.id, unittest.equals('foo')); | 4099 unittest.expect(o.id, unittest.equals('foo')); |
| 4102 unittest.expect(o.insertTime, unittest.equals('foo')); | 4100 unittest.expect(o.insertTime, unittest.equals('foo')); |
| 4103 unittest.expect(o.kind, unittest.equals('foo')); | 4101 unittest.expect(o.kind, unittest.equals('foo')); |
| 4104 unittest.expect(o.name, unittest.equals('foo')); | 4102 unittest.expect(o.name, unittest.equals('foo')); |
| 4105 unittest.expect(o.operationType, unittest.equals('foo')); | 4103 unittest.expect(o.operationType, unittest.equals('foo')); |
| 4106 unittest.expect(o.progress, unittest.equals(42)); | 4104 unittest.expect(o.progress, unittest.equals(42)); |
| 4107 unittest.expect(o.region, unittest.equals('foo')); | 4105 unittest.expect(o.region, unittest.equals('foo')); |
| 4108 unittest.expect(o.selfLink, unittest.equals('foo')); | 4106 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4109 unittest.expect(o.startTime, unittest.equals('foo')); | 4107 unittest.expect(o.startTime, unittest.equals('foo')); |
| 4110 unittest.expect(o.status, unittest.equals('foo')); | 4108 unittest.expect(o.status, unittest.equals('foo')); |
| 4111 unittest.expect(o.statusMessage, unittest.equals('foo')); | 4109 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 4112 unittest.expect(o.targetId, unittest.equals('foo')); | 4110 unittest.expect(o.targetId, unittest.equals('foo')); |
| 4113 unittest.expect(o.targetLink, unittest.equals('foo')); | 4111 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 4114 unittest.expect(o.user, unittest.equals('foo')); | 4112 unittest.expect(o.user, unittest.equals('foo')); |
| 4115 checkUnnamed596(o.warnings); | 4113 checkUnnamed1730(o.warnings); |
| 4116 unittest.expect(o.zone, unittest.equals('foo')); | 4114 unittest.expect(o.zone, unittest.equals('foo')); |
| 4117 } | 4115 } |
| 4118 buildCounterOperation--; | 4116 buildCounterOperation--; |
| 4119 } | 4117 } |
| 4120 | 4118 |
| 4121 buildUnnamed597() { | 4119 buildUnnamed1731() { |
| 4122 var o = new core.Map<core.String, api.OperationsScopedList>(); | 4120 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 4123 o["x"] = buildOperationsScopedList(); | 4121 o["x"] = buildOperationsScopedList(); |
| 4124 o["y"] = buildOperationsScopedList(); | 4122 o["y"] = buildOperationsScopedList(); |
| 4125 return o; | 4123 return o; |
| 4126 } | 4124 } |
| 4127 | 4125 |
| 4128 checkUnnamed597(core.Map<core.String, api.OperationsScopedList> o) { | 4126 checkUnnamed1731(core.Map<core.String, api.OperationsScopedList> o) { |
| 4129 unittest.expect(o, unittest.hasLength(2)); | 4127 unittest.expect(o, unittest.hasLength(2)); |
| 4130 checkOperationsScopedList(o["x"]); | 4128 checkOperationsScopedList(o["x"]); |
| 4131 checkOperationsScopedList(o["y"]); | 4129 checkOperationsScopedList(o["y"]); |
| 4132 } | 4130 } |
| 4133 | 4131 |
| 4134 core.int buildCounterOperationAggregatedList = 0; | 4132 core.int buildCounterOperationAggregatedList = 0; |
| 4135 buildOperationAggregatedList() { | 4133 buildOperationAggregatedList() { |
| 4136 var o = new api.OperationAggregatedList(); | 4134 var o = new api.OperationAggregatedList(); |
| 4137 buildCounterOperationAggregatedList++; | 4135 buildCounterOperationAggregatedList++; |
| 4138 if (buildCounterOperationAggregatedList < 3) { | 4136 if (buildCounterOperationAggregatedList < 3) { |
| 4139 o.id = "foo"; | 4137 o.id = "foo"; |
| 4140 o.items = buildUnnamed597(); | 4138 o.items = buildUnnamed1731(); |
| 4141 o.kind = "foo"; | 4139 o.kind = "foo"; |
| 4142 o.nextPageToken = "foo"; | 4140 o.nextPageToken = "foo"; |
| 4143 o.selfLink = "foo"; | 4141 o.selfLink = "foo"; |
| 4144 } | 4142 } |
| 4145 buildCounterOperationAggregatedList--; | 4143 buildCounterOperationAggregatedList--; |
| 4146 return o; | 4144 return o; |
| 4147 } | 4145 } |
| 4148 | 4146 |
| 4149 checkOperationAggregatedList(api.OperationAggregatedList o) { | 4147 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 4150 buildCounterOperationAggregatedList++; | 4148 buildCounterOperationAggregatedList++; |
| 4151 if (buildCounterOperationAggregatedList < 3) { | 4149 if (buildCounterOperationAggregatedList < 3) { |
| 4152 unittest.expect(o.id, unittest.equals('foo')); | 4150 unittest.expect(o.id, unittest.equals('foo')); |
| 4153 checkUnnamed597(o.items); | 4151 checkUnnamed1731(o.items); |
| 4154 unittest.expect(o.kind, unittest.equals('foo')); | 4152 unittest.expect(o.kind, unittest.equals('foo')); |
| 4155 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4153 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4156 unittest.expect(o.selfLink, unittest.equals('foo')); | 4154 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4157 } | 4155 } |
| 4158 buildCounterOperationAggregatedList--; | 4156 buildCounterOperationAggregatedList--; |
| 4159 } | 4157 } |
| 4160 | 4158 |
| 4161 buildUnnamed598() { | 4159 buildUnnamed1732() { |
| 4162 var o = new core.List<api.Operation>(); | 4160 var o = new core.List<api.Operation>(); |
| 4163 o.add(buildOperation()); | 4161 o.add(buildOperation()); |
| 4164 o.add(buildOperation()); | 4162 o.add(buildOperation()); |
| 4165 return o; | 4163 return o; |
| 4166 } | 4164 } |
| 4167 | 4165 |
| 4168 checkUnnamed598(core.List<api.Operation> o) { | 4166 checkUnnamed1732(core.List<api.Operation> o) { |
| 4169 unittest.expect(o, unittest.hasLength(2)); | 4167 unittest.expect(o, unittest.hasLength(2)); |
| 4170 checkOperation(o[0]); | 4168 checkOperation(o[0]); |
| 4171 checkOperation(o[1]); | 4169 checkOperation(o[1]); |
| 4172 } | 4170 } |
| 4173 | 4171 |
| 4174 core.int buildCounterOperationList = 0; | 4172 core.int buildCounterOperationList = 0; |
| 4175 buildOperationList() { | 4173 buildOperationList() { |
| 4176 var o = new api.OperationList(); | 4174 var o = new api.OperationList(); |
| 4177 buildCounterOperationList++; | 4175 buildCounterOperationList++; |
| 4178 if (buildCounterOperationList < 3) { | 4176 if (buildCounterOperationList < 3) { |
| 4179 o.id = "foo"; | 4177 o.id = "foo"; |
| 4180 o.items = buildUnnamed598(); | 4178 o.items = buildUnnamed1732(); |
| 4181 o.kind = "foo"; | 4179 o.kind = "foo"; |
| 4182 o.nextPageToken = "foo"; | 4180 o.nextPageToken = "foo"; |
| 4183 o.selfLink = "foo"; | 4181 o.selfLink = "foo"; |
| 4184 } | 4182 } |
| 4185 buildCounterOperationList--; | 4183 buildCounterOperationList--; |
| 4186 return o; | 4184 return o; |
| 4187 } | 4185 } |
| 4188 | 4186 |
| 4189 checkOperationList(api.OperationList o) { | 4187 checkOperationList(api.OperationList o) { |
| 4190 buildCounterOperationList++; | 4188 buildCounterOperationList++; |
| 4191 if (buildCounterOperationList < 3) { | 4189 if (buildCounterOperationList < 3) { |
| 4192 unittest.expect(o.id, unittest.equals('foo')); | 4190 unittest.expect(o.id, unittest.equals('foo')); |
| 4193 checkUnnamed598(o.items); | 4191 checkUnnamed1732(o.items); |
| 4194 unittest.expect(o.kind, unittest.equals('foo')); | 4192 unittest.expect(o.kind, unittest.equals('foo')); |
| 4195 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4193 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4196 unittest.expect(o.selfLink, unittest.equals('foo')); | 4194 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4197 } | 4195 } |
| 4198 buildCounterOperationList--; | 4196 buildCounterOperationList--; |
| 4199 } | 4197 } |
| 4200 | 4198 |
| 4201 buildUnnamed599() { | 4199 buildUnnamed1733() { |
| 4202 var o = new core.List<api.Operation>(); | 4200 var o = new core.List<api.Operation>(); |
| 4203 o.add(buildOperation()); | 4201 o.add(buildOperation()); |
| 4204 o.add(buildOperation()); | 4202 o.add(buildOperation()); |
| 4205 return o; | 4203 return o; |
| 4206 } | 4204 } |
| 4207 | 4205 |
| 4208 checkUnnamed599(core.List<api.Operation> o) { | 4206 checkUnnamed1733(core.List<api.Operation> o) { |
| 4209 unittest.expect(o, unittest.hasLength(2)); | 4207 unittest.expect(o, unittest.hasLength(2)); |
| 4210 checkOperation(o[0]); | 4208 checkOperation(o[0]); |
| 4211 checkOperation(o[1]); | 4209 checkOperation(o[1]); |
| 4212 } | 4210 } |
| 4213 | 4211 |
| 4214 core.int buildCounterOperationsScopedListWarningData = 0; | 4212 core.int buildCounterOperationsScopedListWarningData = 0; |
| 4215 buildOperationsScopedListWarningData() { | 4213 buildOperationsScopedListWarningData() { |
| 4216 var o = new api.OperationsScopedListWarningData(); | 4214 var o = new api.OperationsScopedListWarningData(); |
| 4217 buildCounterOperationsScopedListWarningData++; | 4215 buildCounterOperationsScopedListWarningData++; |
| 4218 if (buildCounterOperationsScopedListWarningData < 3) { | 4216 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4219 o.key = "foo"; | 4217 o.key = "foo"; |
| 4220 o.value = "foo"; | 4218 o.value = "foo"; |
| 4221 } | 4219 } |
| 4222 buildCounterOperationsScopedListWarningData--; | 4220 buildCounterOperationsScopedListWarningData--; |
| 4223 return o; | 4221 return o; |
| 4224 } | 4222 } |
| 4225 | 4223 |
| 4226 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 4224 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 4227 buildCounterOperationsScopedListWarningData++; | 4225 buildCounterOperationsScopedListWarningData++; |
| 4228 if (buildCounterOperationsScopedListWarningData < 3) { | 4226 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4229 unittest.expect(o.key, unittest.equals('foo')); | 4227 unittest.expect(o.key, unittest.equals('foo')); |
| 4230 unittest.expect(o.value, unittest.equals('foo')); | 4228 unittest.expect(o.value, unittest.equals('foo')); |
| 4231 } | 4229 } |
| 4232 buildCounterOperationsScopedListWarningData--; | 4230 buildCounterOperationsScopedListWarningData--; |
| 4233 } | 4231 } |
| 4234 | 4232 |
| 4235 buildUnnamed600() { | 4233 buildUnnamed1734() { |
| 4236 var o = new core.List<api.OperationsScopedListWarningData>(); | 4234 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 4237 o.add(buildOperationsScopedListWarningData()); | 4235 o.add(buildOperationsScopedListWarningData()); |
| 4238 o.add(buildOperationsScopedListWarningData()); | 4236 o.add(buildOperationsScopedListWarningData()); |
| 4239 return o; | 4237 return o; |
| 4240 } | 4238 } |
| 4241 | 4239 |
| 4242 checkUnnamed600(core.List<api.OperationsScopedListWarningData> o) { | 4240 checkUnnamed1734(core.List<api.OperationsScopedListWarningData> o) { |
| 4243 unittest.expect(o, unittest.hasLength(2)); | 4241 unittest.expect(o, unittest.hasLength(2)); |
| 4244 checkOperationsScopedListWarningData(o[0]); | 4242 checkOperationsScopedListWarningData(o[0]); |
| 4245 checkOperationsScopedListWarningData(o[1]); | 4243 checkOperationsScopedListWarningData(o[1]); |
| 4246 } | 4244 } |
| 4247 | 4245 |
| 4248 core.int buildCounterOperationsScopedListWarning = 0; | 4246 core.int buildCounterOperationsScopedListWarning = 0; |
| 4249 buildOperationsScopedListWarning() { | 4247 buildOperationsScopedListWarning() { |
| 4250 var o = new api.OperationsScopedListWarning(); | 4248 var o = new api.OperationsScopedListWarning(); |
| 4251 buildCounterOperationsScopedListWarning++; | 4249 buildCounterOperationsScopedListWarning++; |
| 4252 if (buildCounterOperationsScopedListWarning < 3) { | 4250 if (buildCounterOperationsScopedListWarning < 3) { |
| 4253 o.code = "foo"; | 4251 o.code = "foo"; |
| 4254 o.data = buildUnnamed600(); | 4252 o.data = buildUnnamed1734(); |
| 4255 o.message = "foo"; | 4253 o.message = "foo"; |
| 4256 } | 4254 } |
| 4257 buildCounterOperationsScopedListWarning--; | 4255 buildCounterOperationsScopedListWarning--; |
| 4258 return o; | 4256 return o; |
| 4259 } | 4257 } |
| 4260 | 4258 |
| 4261 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 4259 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 4262 buildCounterOperationsScopedListWarning++; | 4260 buildCounterOperationsScopedListWarning++; |
| 4263 if (buildCounterOperationsScopedListWarning < 3) { | 4261 if (buildCounterOperationsScopedListWarning < 3) { |
| 4264 unittest.expect(o.code, unittest.equals('foo')); | 4262 unittest.expect(o.code, unittest.equals('foo')); |
| 4265 checkUnnamed600(o.data); | 4263 checkUnnamed1734(o.data); |
| 4266 unittest.expect(o.message, unittest.equals('foo')); | 4264 unittest.expect(o.message, unittest.equals('foo')); |
| 4267 } | 4265 } |
| 4268 buildCounterOperationsScopedListWarning--; | 4266 buildCounterOperationsScopedListWarning--; |
| 4269 } | 4267 } |
| 4270 | 4268 |
| 4271 core.int buildCounterOperationsScopedList = 0; | 4269 core.int buildCounterOperationsScopedList = 0; |
| 4272 buildOperationsScopedList() { | 4270 buildOperationsScopedList() { |
| 4273 var o = new api.OperationsScopedList(); | 4271 var o = new api.OperationsScopedList(); |
| 4274 buildCounterOperationsScopedList++; | 4272 buildCounterOperationsScopedList++; |
| 4275 if (buildCounterOperationsScopedList < 3) { | 4273 if (buildCounterOperationsScopedList < 3) { |
| 4276 o.operations = buildUnnamed599(); | 4274 o.operations = buildUnnamed1733(); |
| 4277 o.warning = buildOperationsScopedListWarning(); | 4275 o.warning = buildOperationsScopedListWarning(); |
| 4278 } | 4276 } |
| 4279 buildCounterOperationsScopedList--; | 4277 buildCounterOperationsScopedList--; |
| 4280 return o; | 4278 return o; |
| 4281 } | 4279 } |
| 4282 | 4280 |
| 4283 checkOperationsScopedList(api.OperationsScopedList o) { | 4281 checkOperationsScopedList(api.OperationsScopedList o) { |
| 4284 buildCounterOperationsScopedList++; | 4282 buildCounterOperationsScopedList++; |
| 4285 if (buildCounterOperationsScopedList < 3) { | 4283 if (buildCounterOperationsScopedList < 3) { |
| 4286 checkUnnamed599(o.operations); | 4284 checkUnnamed1733(o.operations); |
| 4287 checkOperationsScopedListWarning(o.warning); | 4285 checkOperationsScopedListWarning(o.warning); |
| 4288 } | 4286 } |
| 4289 buildCounterOperationsScopedList--; | 4287 buildCounterOperationsScopedList--; |
| 4290 } | 4288 } |
| 4291 | 4289 |
| 4292 buildUnnamed601() { | 4290 buildUnnamed1735() { |
| 4293 var o = new core.List<api.PathRule>(); | 4291 var o = new core.List<api.PathRule>(); |
| 4294 o.add(buildPathRule()); | 4292 o.add(buildPathRule()); |
| 4295 o.add(buildPathRule()); | 4293 o.add(buildPathRule()); |
| 4296 return o; | 4294 return o; |
| 4297 } | 4295 } |
| 4298 | 4296 |
| 4299 checkUnnamed601(core.List<api.PathRule> o) { | 4297 checkUnnamed1735(core.List<api.PathRule> o) { |
| 4300 unittest.expect(o, unittest.hasLength(2)); | 4298 unittest.expect(o, unittest.hasLength(2)); |
| 4301 checkPathRule(o[0]); | 4299 checkPathRule(o[0]); |
| 4302 checkPathRule(o[1]); | 4300 checkPathRule(o[1]); |
| 4303 } | 4301 } |
| 4304 | 4302 |
| 4305 core.int buildCounterPathMatcher = 0; | 4303 core.int buildCounterPathMatcher = 0; |
| 4306 buildPathMatcher() { | 4304 buildPathMatcher() { |
| 4307 var o = new api.PathMatcher(); | 4305 var o = new api.PathMatcher(); |
| 4308 buildCounterPathMatcher++; | 4306 buildCounterPathMatcher++; |
| 4309 if (buildCounterPathMatcher < 3) { | 4307 if (buildCounterPathMatcher < 3) { |
| 4310 o.defaultService = "foo"; | 4308 o.defaultService = "foo"; |
| 4311 o.description = "foo"; | 4309 o.description = "foo"; |
| 4312 o.name = "foo"; | 4310 o.name = "foo"; |
| 4313 o.pathRules = buildUnnamed601(); | 4311 o.pathRules = buildUnnamed1735(); |
| 4314 } | 4312 } |
| 4315 buildCounterPathMatcher--; | 4313 buildCounterPathMatcher--; |
| 4316 return o; | 4314 return o; |
| 4317 } | 4315 } |
| 4318 | 4316 |
| 4319 checkPathMatcher(api.PathMatcher o) { | 4317 checkPathMatcher(api.PathMatcher o) { |
| 4320 buildCounterPathMatcher++; | 4318 buildCounterPathMatcher++; |
| 4321 if (buildCounterPathMatcher < 3) { | 4319 if (buildCounterPathMatcher < 3) { |
| 4322 unittest.expect(o.defaultService, unittest.equals('foo')); | 4320 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4323 unittest.expect(o.description, unittest.equals('foo')); | 4321 unittest.expect(o.description, unittest.equals('foo')); |
| 4324 unittest.expect(o.name, unittest.equals('foo')); | 4322 unittest.expect(o.name, unittest.equals('foo')); |
| 4325 checkUnnamed601(o.pathRules); | 4323 checkUnnamed1735(o.pathRules); |
| 4326 } | 4324 } |
| 4327 buildCounterPathMatcher--; | 4325 buildCounterPathMatcher--; |
| 4328 } | 4326 } |
| 4329 | 4327 |
| 4330 buildUnnamed602() { | 4328 buildUnnamed1736() { |
| 4331 var o = new core.List<core.String>(); | 4329 var o = new core.List<core.String>(); |
| 4332 o.add("foo"); | 4330 o.add("foo"); |
| 4333 o.add("foo"); | 4331 o.add("foo"); |
| 4334 return o; | 4332 return o; |
| 4335 } | 4333 } |
| 4336 | 4334 |
| 4337 checkUnnamed602(core.List<core.String> o) { | 4335 checkUnnamed1736(core.List<core.String> o) { |
| 4338 unittest.expect(o, unittest.hasLength(2)); | 4336 unittest.expect(o, unittest.hasLength(2)); |
| 4339 unittest.expect(o[0], unittest.equals('foo')); | 4337 unittest.expect(o[0], unittest.equals('foo')); |
| 4340 unittest.expect(o[1], unittest.equals('foo')); | 4338 unittest.expect(o[1], unittest.equals('foo')); |
| 4341 } | 4339 } |
| 4342 | 4340 |
| 4343 core.int buildCounterPathRule = 0; | 4341 core.int buildCounterPathRule = 0; |
| 4344 buildPathRule() { | 4342 buildPathRule() { |
| 4345 var o = new api.PathRule(); | 4343 var o = new api.PathRule(); |
| 4346 buildCounterPathRule++; | 4344 buildCounterPathRule++; |
| 4347 if (buildCounterPathRule < 3) { | 4345 if (buildCounterPathRule < 3) { |
| 4348 o.paths = buildUnnamed602(); | 4346 o.paths = buildUnnamed1736(); |
| 4349 o.service = "foo"; | 4347 o.service = "foo"; |
| 4350 } | 4348 } |
| 4351 buildCounterPathRule--; | 4349 buildCounterPathRule--; |
| 4352 return o; | 4350 return o; |
| 4353 } | 4351 } |
| 4354 | 4352 |
| 4355 checkPathRule(api.PathRule o) { | 4353 checkPathRule(api.PathRule o) { |
| 4356 buildCounterPathRule++; | 4354 buildCounterPathRule++; |
| 4357 if (buildCounterPathRule < 3) { | 4355 if (buildCounterPathRule < 3) { |
| 4358 checkUnnamed602(o.paths); | 4356 checkUnnamed1736(o.paths); |
| 4359 unittest.expect(o.service, unittest.equals('foo')); | 4357 unittest.expect(o.service, unittest.equals('foo')); |
| 4360 } | 4358 } |
| 4361 buildCounterPathRule--; | 4359 buildCounterPathRule--; |
| 4362 } | 4360 } |
| 4363 | 4361 |
| 4364 buildUnnamed603() { | 4362 buildUnnamed1737() { |
| 4363 var o = new core.List<core.String>(); |
| 4364 o.add("foo"); |
| 4365 o.add("foo"); |
| 4366 return o; |
| 4367 } |
| 4368 |
| 4369 checkUnnamed1737(core.List<core.String> o) { |
| 4370 unittest.expect(o, unittest.hasLength(2)); |
| 4371 unittest.expect(o[0], unittest.equals('foo')); |
| 4372 unittest.expect(o[1], unittest.equals('foo')); |
| 4373 } |
| 4374 |
| 4375 buildUnnamed1738() { |
| 4365 var o = new core.List<api.Quota>(); | 4376 var o = new core.List<api.Quota>(); |
| 4366 o.add(buildQuota()); | 4377 o.add(buildQuota()); |
| 4367 o.add(buildQuota()); | 4378 o.add(buildQuota()); |
| 4368 return o; | 4379 return o; |
| 4369 } | 4380 } |
| 4370 | 4381 |
| 4371 checkUnnamed603(core.List<api.Quota> o) { | 4382 checkUnnamed1738(core.List<api.Quota> o) { |
| 4372 unittest.expect(o, unittest.hasLength(2)); | 4383 unittest.expect(o, unittest.hasLength(2)); |
| 4373 checkQuota(o[0]); | 4384 checkQuota(o[0]); |
| 4374 checkQuota(o[1]); | 4385 checkQuota(o[1]); |
| 4375 } | 4386 } |
| 4376 | 4387 |
| 4377 core.int buildCounterProject = 0; | 4388 core.int buildCounterProject = 0; |
| 4378 buildProject() { | 4389 buildProject() { |
| 4379 var o = new api.Project(); | 4390 var o = new api.Project(); |
| 4380 buildCounterProject++; | 4391 buildCounterProject++; |
| 4381 if (buildCounterProject < 3) { | 4392 if (buildCounterProject < 3) { |
| 4382 o.commonInstanceMetadata = buildMetadata(); | 4393 o.commonInstanceMetadata = buildMetadata(); |
| 4383 o.creationTimestamp = "foo"; | 4394 o.creationTimestamp = "foo"; |
| 4384 o.description = "foo"; | 4395 o.description = "foo"; |
| 4396 o.enabledFeatures = buildUnnamed1737(); |
| 4385 o.id = "foo"; | 4397 o.id = "foo"; |
| 4386 o.kind = "foo"; | 4398 o.kind = "foo"; |
| 4387 o.name = "foo"; | 4399 o.name = "foo"; |
| 4388 o.quotas = buildUnnamed603(); | 4400 o.quotas = buildUnnamed1738(); |
| 4389 o.selfLink = "foo"; | 4401 o.selfLink = "foo"; |
| 4390 o.usageExportLocation = buildUsageExportLocation(); | 4402 o.usageExportLocation = buildUsageExportLocation(); |
| 4391 } | 4403 } |
| 4392 buildCounterProject--; | 4404 buildCounterProject--; |
| 4393 return o; | 4405 return o; |
| 4394 } | 4406 } |
| 4395 | 4407 |
| 4396 checkProject(api.Project o) { | 4408 checkProject(api.Project o) { |
| 4397 buildCounterProject++; | 4409 buildCounterProject++; |
| 4398 if (buildCounterProject < 3) { | 4410 if (buildCounterProject < 3) { |
| 4399 checkMetadata(o.commonInstanceMetadata); | 4411 checkMetadata(o.commonInstanceMetadata); |
| 4400 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4412 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4401 unittest.expect(o.description, unittest.equals('foo')); | 4413 unittest.expect(o.description, unittest.equals('foo')); |
| 4414 checkUnnamed1737(o.enabledFeatures); |
| 4402 unittest.expect(o.id, unittest.equals('foo')); | 4415 unittest.expect(o.id, unittest.equals('foo')); |
| 4403 unittest.expect(o.kind, unittest.equals('foo')); | 4416 unittest.expect(o.kind, unittest.equals('foo')); |
| 4404 unittest.expect(o.name, unittest.equals('foo')); | 4417 unittest.expect(o.name, unittest.equals('foo')); |
| 4405 checkUnnamed603(o.quotas); | 4418 checkUnnamed1738(o.quotas); |
| 4406 unittest.expect(o.selfLink, unittest.equals('foo')); | 4419 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4407 checkUsageExportLocation(o.usageExportLocation); | 4420 checkUsageExportLocation(o.usageExportLocation); |
| 4408 } | 4421 } |
| 4409 buildCounterProject--; | 4422 buildCounterProject--; |
| 4410 } | 4423 } |
| 4411 | 4424 |
| 4412 core.int buildCounterQuota = 0; | 4425 core.int buildCounterQuota = 0; |
| 4413 buildQuota() { | 4426 buildQuota() { |
| 4414 var o = new api.Quota(); | 4427 var o = new api.Quota(); |
| 4415 buildCounterQuota++; | 4428 buildCounterQuota++; |
| 4416 if (buildCounterQuota < 3) { | 4429 if (buildCounterQuota < 3) { |
| 4417 o.limit = 42.0; | 4430 o.limit = 42.0; |
| 4418 o.metric = "foo"; | 4431 o.metric = "foo"; |
| 4419 o.usage = 42.0; | 4432 o.usage = 42.0; |
| 4420 } | 4433 } |
| 4421 buildCounterQuota--; | 4434 buildCounterQuota--; |
| 4422 return o; | 4435 return o; |
| 4423 } | 4436 } |
| 4424 | 4437 |
| 4425 checkQuota(api.Quota o) { | 4438 checkQuota(api.Quota o) { |
| 4426 buildCounterQuota++; | 4439 buildCounterQuota++; |
| 4427 if (buildCounterQuota < 3) { | 4440 if (buildCounterQuota < 3) { |
| 4428 unittest.expect(o.limit, unittest.equals(42.0)); | 4441 unittest.expect(o.limit, unittest.equals(42.0)); |
| 4429 unittest.expect(o.metric, unittest.equals('foo')); | 4442 unittest.expect(o.metric, unittest.equals('foo')); |
| 4430 unittest.expect(o.usage, unittest.equals(42.0)); | 4443 unittest.expect(o.usage, unittest.equals(42.0)); |
| 4431 } | 4444 } |
| 4432 buildCounterQuota--; | 4445 buildCounterQuota--; |
| 4433 } | 4446 } |
| 4434 | 4447 |
| 4435 buildUnnamed604() { | 4448 buildUnnamed1739() { |
| 4436 var o = new core.List<api.Quota>(); | 4449 var o = new core.List<api.Quota>(); |
| 4437 o.add(buildQuota()); | 4450 o.add(buildQuota()); |
| 4438 o.add(buildQuota()); | 4451 o.add(buildQuota()); |
| 4439 return o; | 4452 return o; |
| 4440 } | 4453 } |
| 4441 | 4454 |
| 4442 checkUnnamed604(core.List<api.Quota> o) { | 4455 checkUnnamed1739(core.List<api.Quota> o) { |
| 4443 unittest.expect(o, unittest.hasLength(2)); | 4456 unittest.expect(o, unittest.hasLength(2)); |
| 4444 checkQuota(o[0]); | 4457 checkQuota(o[0]); |
| 4445 checkQuota(o[1]); | 4458 checkQuota(o[1]); |
| 4446 } | 4459 } |
| 4447 | 4460 |
| 4448 buildUnnamed605() { | 4461 buildUnnamed1740() { |
| 4449 var o = new core.List<core.String>(); | 4462 var o = new core.List<core.String>(); |
| 4450 o.add("foo"); | 4463 o.add("foo"); |
| 4451 o.add("foo"); | 4464 o.add("foo"); |
| 4452 return o; | 4465 return o; |
| 4453 } | 4466 } |
| 4454 | 4467 |
| 4455 checkUnnamed605(core.List<core.String> o) { | 4468 checkUnnamed1740(core.List<core.String> o) { |
| 4456 unittest.expect(o, unittest.hasLength(2)); | 4469 unittest.expect(o, unittest.hasLength(2)); |
| 4457 unittest.expect(o[0], unittest.equals('foo')); | 4470 unittest.expect(o[0], unittest.equals('foo')); |
| 4458 unittest.expect(o[1], unittest.equals('foo')); | 4471 unittest.expect(o[1], unittest.equals('foo')); |
| 4459 } | 4472 } |
| 4460 | 4473 |
| 4461 core.int buildCounterRegion = 0; | 4474 core.int buildCounterRegion = 0; |
| 4462 buildRegion() { | 4475 buildRegion() { |
| 4463 var o = new api.Region(); | 4476 var o = new api.Region(); |
| 4464 buildCounterRegion++; | 4477 buildCounterRegion++; |
| 4465 if (buildCounterRegion < 3) { | 4478 if (buildCounterRegion < 3) { |
| 4466 o.creationTimestamp = "foo"; | 4479 o.creationTimestamp = "foo"; |
| 4467 o.deprecated = buildDeprecationStatus(); | 4480 o.deprecated = buildDeprecationStatus(); |
| 4468 o.description = "foo"; | 4481 o.description = "foo"; |
| 4469 o.id = "foo"; | 4482 o.id = "foo"; |
| 4470 o.kind = "foo"; | 4483 o.kind = "foo"; |
| 4471 o.name = "foo"; | 4484 o.name = "foo"; |
| 4472 o.quotas = buildUnnamed604(); | 4485 o.quotas = buildUnnamed1739(); |
| 4473 o.selfLink = "foo"; | 4486 o.selfLink = "foo"; |
| 4474 o.status = "foo"; | 4487 o.status = "foo"; |
| 4475 o.zones = buildUnnamed605(); | 4488 o.zones = buildUnnamed1740(); |
| 4476 } | 4489 } |
| 4477 buildCounterRegion--; | 4490 buildCounterRegion--; |
| 4478 return o; | 4491 return o; |
| 4479 } | 4492 } |
| 4480 | 4493 |
| 4481 checkRegion(api.Region o) { | 4494 checkRegion(api.Region o) { |
| 4482 buildCounterRegion++; | 4495 buildCounterRegion++; |
| 4483 if (buildCounterRegion < 3) { | 4496 if (buildCounterRegion < 3) { |
| 4484 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4497 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4485 checkDeprecationStatus(o.deprecated); | 4498 checkDeprecationStatus(o.deprecated); |
| 4486 unittest.expect(o.description, unittest.equals('foo')); | 4499 unittest.expect(o.description, unittest.equals('foo')); |
| 4487 unittest.expect(o.id, unittest.equals('foo')); | 4500 unittest.expect(o.id, unittest.equals('foo')); |
| 4488 unittest.expect(o.kind, unittest.equals('foo')); | 4501 unittest.expect(o.kind, unittest.equals('foo')); |
| 4489 unittest.expect(o.name, unittest.equals('foo')); | 4502 unittest.expect(o.name, unittest.equals('foo')); |
| 4490 checkUnnamed604(o.quotas); | 4503 checkUnnamed1739(o.quotas); |
| 4491 unittest.expect(o.selfLink, unittest.equals('foo')); | 4504 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4492 unittest.expect(o.status, unittest.equals('foo')); | 4505 unittest.expect(o.status, unittest.equals('foo')); |
| 4493 checkUnnamed605(o.zones); | 4506 checkUnnamed1740(o.zones); |
| 4494 } | 4507 } |
| 4495 buildCounterRegion--; | 4508 buildCounterRegion--; |
| 4496 } | 4509 } |
| 4497 | 4510 |
| 4498 buildUnnamed606() { | 4511 buildUnnamed1741() { |
| 4499 var o = new core.List<api.Region>(); | 4512 var o = new core.List<api.Region>(); |
| 4500 o.add(buildRegion()); | 4513 o.add(buildRegion()); |
| 4501 o.add(buildRegion()); | 4514 o.add(buildRegion()); |
| 4502 return o; | 4515 return o; |
| 4503 } | 4516 } |
| 4504 | 4517 |
| 4505 checkUnnamed606(core.List<api.Region> o) { | 4518 checkUnnamed1741(core.List<api.Region> o) { |
| 4506 unittest.expect(o, unittest.hasLength(2)); | 4519 unittest.expect(o, unittest.hasLength(2)); |
| 4507 checkRegion(o[0]); | 4520 checkRegion(o[0]); |
| 4508 checkRegion(o[1]); | 4521 checkRegion(o[1]); |
| 4509 } | 4522 } |
| 4510 | 4523 |
| 4511 core.int buildCounterRegionList = 0; | 4524 core.int buildCounterRegionList = 0; |
| 4512 buildRegionList() { | 4525 buildRegionList() { |
| 4513 var o = new api.RegionList(); | 4526 var o = new api.RegionList(); |
| 4514 buildCounterRegionList++; | 4527 buildCounterRegionList++; |
| 4515 if (buildCounterRegionList < 3) { | 4528 if (buildCounterRegionList < 3) { |
| 4516 o.id = "foo"; | 4529 o.id = "foo"; |
| 4517 o.items = buildUnnamed606(); | 4530 o.items = buildUnnamed1741(); |
| 4518 o.kind = "foo"; | 4531 o.kind = "foo"; |
| 4519 o.nextPageToken = "foo"; | 4532 o.nextPageToken = "foo"; |
| 4520 o.selfLink = "foo"; | 4533 o.selfLink = "foo"; |
| 4521 } | 4534 } |
| 4522 buildCounterRegionList--; | 4535 buildCounterRegionList--; |
| 4523 return o; | 4536 return o; |
| 4524 } | 4537 } |
| 4525 | 4538 |
| 4526 checkRegionList(api.RegionList o) { | 4539 checkRegionList(api.RegionList o) { |
| 4527 buildCounterRegionList++; | 4540 buildCounterRegionList++; |
| 4528 if (buildCounterRegionList < 3) { | 4541 if (buildCounterRegionList < 3) { |
| 4529 unittest.expect(o.id, unittest.equals('foo')); | 4542 unittest.expect(o.id, unittest.equals('foo')); |
| 4530 checkUnnamed606(o.items); | 4543 checkUnnamed1741(o.items); |
| 4531 unittest.expect(o.kind, unittest.equals('foo')); | 4544 unittest.expect(o.kind, unittest.equals('foo')); |
| 4532 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4545 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4533 unittest.expect(o.selfLink, unittest.equals('foo')); | 4546 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4534 } | 4547 } |
| 4535 buildCounterRegionList--; | 4548 buildCounterRegionList--; |
| 4536 } | 4549 } |
| 4537 | 4550 |
| 4538 core.int buildCounterResourceGroupReference = 0; | 4551 core.int buildCounterResourceGroupReference = 0; |
| 4539 buildResourceGroupReference() { | 4552 buildResourceGroupReference() { |
| 4540 var o = new api.ResourceGroupReference(); | 4553 var o = new api.ResourceGroupReference(); |
| 4541 buildCounterResourceGroupReference++; | 4554 buildCounterResourceGroupReference++; |
| 4542 if (buildCounterResourceGroupReference < 3) { | 4555 if (buildCounterResourceGroupReference < 3) { |
| 4543 o.group = "foo"; | 4556 o.group = "foo"; |
| 4544 } | 4557 } |
| 4545 buildCounterResourceGroupReference--; | 4558 buildCounterResourceGroupReference--; |
| 4546 return o; | 4559 return o; |
| 4547 } | 4560 } |
| 4548 | 4561 |
| 4549 checkResourceGroupReference(api.ResourceGroupReference o) { | 4562 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 4550 buildCounterResourceGroupReference++; | 4563 buildCounterResourceGroupReference++; |
| 4551 if (buildCounterResourceGroupReference < 3) { | 4564 if (buildCounterResourceGroupReference < 3) { |
| 4552 unittest.expect(o.group, unittest.equals('foo')); | 4565 unittest.expect(o.group, unittest.equals('foo')); |
| 4553 } | 4566 } |
| 4554 buildCounterResourceGroupReference--; | 4567 buildCounterResourceGroupReference--; |
| 4555 } | 4568 } |
| 4556 | 4569 |
| 4557 buildUnnamed607() { | 4570 buildUnnamed1742() { |
| 4558 var o = new core.List<core.String>(); | 4571 var o = new core.List<core.String>(); |
| 4559 o.add("foo"); | 4572 o.add("foo"); |
| 4560 o.add("foo"); | 4573 o.add("foo"); |
| 4561 return o; | 4574 return o; |
| 4562 } | 4575 } |
| 4563 | 4576 |
| 4564 checkUnnamed607(core.List<core.String> o) { | 4577 checkUnnamed1742(core.List<core.String> o) { |
| 4565 unittest.expect(o, unittest.hasLength(2)); | 4578 unittest.expect(o, unittest.hasLength(2)); |
| 4566 unittest.expect(o[0], unittest.equals('foo')); | 4579 unittest.expect(o[0], unittest.equals('foo')); |
| 4567 unittest.expect(o[1], unittest.equals('foo')); | 4580 unittest.expect(o[1], unittest.equals('foo')); |
| 4568 } | 4581 } |
| 4569 | 4582 |
| 4570 core.int buildCounterRouteWarningsData = 0; | 4583 core.int buildCounterRouteWarningsData = 0; |
| 4571 buildRouteWarningsData() { | 4584 buildRouteWarningsData() { |
| 4572 var o = new api.RouteWarningsData(); | 4585 var o = new api.RouteWarningsData(); |
| 4573 buildCounterRouteWarningsData++; | 4586 buildCounterRouteWarningsData++; |
| 4574 if (buildCounterRouteWarningsData < 3) { | 4587 if (buildCounterRouteWarningsData < 3) { |
| 4575 o.key = "foo"; | 4588 o.key = "foo"; |
| 4576 o.value = "foo"; | 4589 o.value = "foo"; |
| 4577 } | 4590 } |
| 4578 buildCounterRouteWarningsData--; | 4591 buildCounterRouteWarningsData--; |
| 4579 return o; | 4592 return o; |
| 4580 } | 4593 } |
| 4581 | 4594 |
| 4582 checkRouteWarningsData(api.RouteWarningsData o) { | 4595 checkRouteWarningsData(api.RouteWarningsData o) { |
| 4583 buildCounterRouteWarningsData++; | 4596 buildCounterRouteWarningsData++; |
| 4584 if (buildCounterRouteWarningsData < 3) { | 4597 if (buildCounterRouteWarningsData < 3) { |
| 4585 unittest.expect(o.key, unittest.equals('foo')); | 4598 unittest.expect(o.key, unittest.equals('foo')); |
| 4586 unittest.expect(o.value, unittest.equals('foo')); | 4599 unittest.expect(o.value, unittest.equals('foo')); |
| 4587 } | 4600 } |
| 4588 buildCounterRouteWarningsData--; | 4601 buildCounterRouteWarningsData--; |
| 4589 } | 4602 } |
| 4590 | 4603 |
| 4591 buildUnnamed608() { | 4604 buildUnnamed1743() { |
| 4592 var o = new core.List<api.RouteWarningsData>(); | 4605 var o = new core.List<api.RouteWarningsData>(); |
| 4593 o.add(buildRouteWarningsData()); | 4606 o.add(buildRouteWarningsData()); |
| 4594 o.add(buildRouteWarningsData()); | 4607 o.add(buildRouteWarningsData()); |
| 4595 return o; | 4608 return o; |
| 4596 } | 4609 } |
| 4597 | 4610 |
| 4598 checkUnnamed608(core.List<api.RouteWarningsData> o) { | 4611 checkUnnamed1743(core.List<api.RouteWarningsData> o) { |
| 4599 unittest.expect(o, unittest.hasLength(2)); | 4612 unittest.expect(o, unittest.hasLength(2)); |
| 4600 checkRouteWarningsData(o[0]); | 4613 checkRouteWarningsData(o[0]); |
| 4601 checkRouteWarningsData(o[1]); | 4614 checkRouteWarningsData(o[1]); |
| 4602 } | 4615 } |
| 4603 | 4616 |
| 4604 core.int buildCounterRouteWarnings = 0; | 4617 core.int buildCounterRouteWarnings = 0; |
| 4605 buildRouteWarnings() { | 4618 buildRouteWarnings() { |
| 4606 var o = new api.RouteWarnings(); | 4619 var o = new api.RouteWarnings(); |
| 4607 buildCounterRouteWarnings++; | 4620 buildCounterRouteWarnings++; |
| 4608 if (buildCounterRouteWarnings < 3) { | 4621 if (buildCounterRouteWarnings < 3) { |
| 4609 o.code = "foo"; | 4622 o.code = "foo"; |
| 4610 o.data = buildUnnamed608(); | 4623 o.data = buildUnnamed1743(); |
| 4611 o.message = "foo"; | 4624 o.message = "foo"; |
| 4612 } | 4625 } |
| 4613 buildCounterRouteWarnings--; | 4626 buildCounterRouteWarnings--; |
| 4614 return o; | 4627 return o; |
| 4615 } | 4628 } |
| 4616 | 4629 |
| 4617 checkRouteWarnings(api.RouteWarnings o) { | 4630 checkRouteWarnings(api.RouteWarnings o) { |
| 4618 buildCounterRouteWarnings++; | 4631 buildCounterRouteWarnings++; |
| 4619 if (buildCounterRouteWarnings < 3) { | 4632 if (buildCounterRouteWarnings < 3) { |
| 4620 unittest.expect(o.code, unittest.equals('foo')); | 4633 unittest.expect(o.code, unittest.equals('foo')); |
| 4621 checkUnnamed608(o.data); | 4634 checkUnnamed1743(o.data); |
| 4622 unittest.expect(o.message, unittest.equals('foo')); | 4635 unittest.expect(o.message, unittest.equals('foo')); |
| 4623 } | 4636 } |
| 4624 buildCounterRouteWarnings--; | 4637 buildCounterRouteWarnings--; |
| 4625 } | 4638 } |
| 4626 | 4639 |
| 4627 buildUnnamed609() { | 4640 buildUnnamed1744() { |
| 4628 var o = new core.List<api.RouteWarnings>(); | 4641 var o = new core.List<api.RouteWarnings>(); |
| 4629 o.add(buildRouteWarnings()); | 4642 o.add(buildRouteWarnings()); |
| 4630 o.add(buildRouteWarnings()); | 4643 o.add(buildRouteWarnings()); |
| 4631 return o; | 4644 return o; |
| 4632 } | 4645 } |
| 4633 | 4646 |
| 4634 checkUnnamed609(core.List<api.RouteWarnings> o) { | 4647 checkUnnamed1744(core.List<api.RouteWarnings> o) { |
| 4635 unittest.expect(o, unittest.hasLength(2)); | 4648 unittest.expect(o, unittest.hasLength(2)); |
| 4636 checkRouteWarnings(o[0]); | 4649 checkRouteWarnings(o[0]); |
| 4637 checkRouteWarnings(o[1]); | 4650 checkRouteWarnings(o[1]); |
| 4638 } | 4651 } |
| 4639 | 4652 |
| 4640 core.int buildCounterRoute = 0; | 4653 core.int buildCounterRoute = 0; |
| 4641 buildRoute() { | 4654 buildRoute() { |
| 4642 var o = new api.Route(); | 4655 var o = new api.Route(); |
| 4643 buildCounterRoute++; | 4656 buildCounterRoute++; |
| 4644 if (buildCounterRoute < 3) { | 4657 if (buildCounterRoute < 3) { |
| 4645 o.creationTimestamp = "foo"; | 4658 o.creationTimestamp = "foo"; |
| 4646 o.description = "foo"; | 4659 o.description = "foo"; |
| 4647 o.destRange = "foo"; | 4660 o.destRange = "foo"; |
| 4648 o.id = "foo"; | 4661 o.id = "foo"; |
| 4649 o.kind = "foo"; | 4662 o.kind = "foo"; |
| 4650 o.name = "foo"; | 4663 o.name = "foo"; |
| 4651 o.network = "foo"; | 4664 o.network = "foo"; |
| 4652 o.nextHopGateway = "foo"; | 4665 o.nextHopGateway = "foo"; |
| 4653 o.nextHopInstance = "foo"; | 4666 o.nextHopInstance = "foo"; |
| 4654 o.nextHopIp = "foo"; | 4667 o.nextHopIp = "foo"; |
| 4655 o.nextHopNetwork = "foo"; | 4668 o.nextHopNetwork = "foo"; |
| 4656 o.nextHopVpnTunnel = "foo"; | 4669 o.nextHopVpnTunnel = "foo"; |
| 4657 o.priority = 42; | 4670 o.priority = 42; |
| 4658 o.selfLink = "foo"; | 4671 o.selfLink = "foo"; |
| 4659 o.tags = buildUnnamed607(); | 4672 o.tags = buildUnnamed1742(); |
| 4660 o.warnings = buildUnnamed609(); | 4673 o.warnings = buildUnnamed1744(); |
| 4661 } | 4674 } |
| 4662 buildCounterRoute--; | 4675 buildCounterRoute--; |
| 4663 return o; | 4676 return o; |
| 4664 } | 4677 } |
| 4665 | 4678 |
| 4666 checkRoute(api.Route o) { | 4679 checkRoute(api.Route o) { |
| 4667 buildCounterRoute++; | 4680 buildCounterRoute++; |
| 4668 if (buildCounterRoute < 3) { | 4681 if (buildCounterRoute < 3) { |
| 4669 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4682 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4670 unittest.expect(o.description, unittest.equals('foo')); | 4683 unittest.expect(o.description, unittest.equals('foo')); |
| 4671 unittest.expect(o.destRange, unittest.equals('foo')); | 4684 unittest.expect(o.destRange, unittest.equals('foo')); |
| 4672 unittest.expect(o.id, unittest.equals('foo')); | 4685 unittest.expect(o.id, unittest.equals('foo')); |
| 4673 unittest.expect(o.kind, unittest.equals('foo')); | 4686 unittest.expect(o.kind, unittest.equals('foo')); |
| 4674 unittest.expect(o.name, unittest.equals('foo')); | 4687 unittest.expect(o.name, unittest.equals('foo')); |
| 4675 unittest.expect(o.network, unittest.equals('foo')); | 4688 unittest.expect(o.network, unittest.equals('foo')); |
| 4676 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 4689 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 4677 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 4690 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 4678 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 4691 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 4679 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 4692 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 4680 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 4693 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 4681 unittest.expect(o.priority, unittest.equals(42)); | 4694 unittest.expect(o.priority, unittest.equals(42)); |
| 4682 unittest.expect(o.selfLink, unittest.equals('foo')); | 4695 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4683 checkUnnamed607(o.tags); | 4696 checkUnnamed1742(o.tags); |
| 4684 checkUnnamed609(o.warnings); | 4697 checkUnnamed1744(o.warnings); |
| 4685 } | 4698 } |
| 4686 buildCounterRoute--; | 4699 buildCounterRoute--; |
| 4687 } | 4700 } |
| 4688 | 4701 |
| 4689 buildUnnamed610() { | 4702 buildUnnamed1745() { |
| 4690 var o = new core.List<api.Route>(); | 4703 var o = new core.List<api.Route>(); |
| 4691 o.add(buildRoute()); | 4704 o.add(buildRoute()); |
| 4692 o.add(buildRoute()); | 4705 o.add(buildRoute()); |
| 4693 return o; | 4706 return o; |
| 4694 } | 4707 } |
| 4695 | 4708 |
| 4696 checkUnnamed610(core.List<api.Route> o) { | 4709 checkUnnamed1745(core.List<api.Route> o) { |
| 4697 unittest.expect(o, unittest.hasLength(2)); | 4710 unittest.expect(o, unittest.hasLength(2)); |
| 4698 checkRoute(o[0]); | 4711 checkRoute(o[0]); |
| 4699 checkRoute(o[1]); | 4712 checkRoute(o[1]); |
| 4700 } | 4713 } |
| 4701 | 4714 |
| 4702 core.int buildCounterRouteList = 0; | 4715 core.int buildCounterRouteList = 0; |
| 4703 buildRouteList() { | 4716 buildRouteList() { |
| 4704 var o = new api.RouteList(); | 4717 var o = new api.RouteList(); |
| 4705 buildCounterRouteList++; | 4718 buildCounterRouteList++; |
| 4706 if (buildCounterRouteList < 3) { | 4719 if (buildCounterRouteList < 3) { |
| 4707 o.id = "foo"; | 4720 o.id = "foo"; |
| 4708 o.items = buildUnnamed610(); | 4721 o.items = buildUnnamed1745(); |
| 4709 o.kind = "foo"; | 4722 o.kind = "foo"; |
| 4710 o.nextPageToken = "foo"; | 4723 o.nextPageToken = "foo"; |
| 4711 o.selfLink = "foo"; | 4724 o.selfLink = "foo"; |
| 4712 } | 4725 } |
| 4713 buildCounterRouteList--; | 4726 buildCounterRouteList--; |
| 4714 return o; | 4727 return o; |
| 4715 } | 4728 } |
| 4716 | 4729 |
| 4717 checkRouteList(api.RouteList o) { | 4730 checkRouteList(api.RouteList o) { |
| 4718 buildCounterRouteList++; | 4731 buildCounterRouteList++; |
| 4719 if (buildCounterRouteList < 3) { | 4732 if (buildCounterRouteList < 3) { |
| 4720 unittest.expect(o.id, unittest.equals('foo')); | 4733 unittest.expect(o.id, unittest.equals('foo')); |
| 4721 checkUnnamed610(o.items); | 4734 checkUnnamed1745(o.items); |
| 4722 unittest.expect(o.kind, unittest.equals('foo')); | 4735 unittest.expect(o.kind, unittest.equals('foo')); |
| 4723 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4736 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4724 unittest.expect(o.selfLink, unittest.equals('foo')); | 4737 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4725 } | 4738 } |
| 4726 buildCounterRouteList--; | 4739 buildCounterRouteList--; |
| 4727 } | 4740 } |
| 4728 | 4741 |
| 4729 core.int buildCounterScheduling = 0; | 4742 core.int buildCounterScheduling = 0; |
| 4730 buildScheduling() { | 4743 buildScheduling() { |
| 4731 var o = new api.Scheduling(); | 4744 var o = new api.Scheduling(); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4765 checkSerialPortOutput(api.SerialPortOutput o) { | 4778 checkSerialPortOutput(api.SerialPortOutput o) { |
| 4766 buildCounterSerialPortOutput++; | 4779 buildCounterSerialPortOutput++; |
| 4767 if (buildCounterSerialPortOutput < 3) { | 4780 if (buildCounterSerialPortOutput < 3) { |
| 4768 unittest.expect(o.contents, unittest.equals('foo')); | 4781 unittest.expect(o.contents, unittest.equals('foo')); |
| 4769 unittest.expect(o.kind, unittest.equals('foo')); | 4782 unittest.expect(o.kind, unittest.equals('foo')); |
| 4770 unittest.expect(o.selfLink, unittest.equals('foo')); | 4783 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4771 } | 4784 } |
| 4772 buildCounterSerialPortOutput--; | 4785 buildCounterSerialPortOutput--; |
| 4773 } | 4786 } |
| 4774 | 4787 |
| 4775 buildUnnamed611() { | 4788 buildUnnamed1746() { |
| 4776 var o = new core.List<core.String>(); | 4789 var o = new core.List<core.String>(); |
| 4777 o.add("foo"); | 4790 o.add("foo"); |
| 4778 o.add("foo"); | 4791 o.add("foo"); |
| 4779 return o; | 4792 return o; |
| 4780 } | 4793 } |
| 4781 | 4794 |
| 4782 checkUnnamed611(core.List<core.String> o) { | 4795 checkUnnamed1746(core.List<core.String> o) { |
| 4783 unittest.expect(o, unittest.hasLength(2)); | 4796 unittest.expect(o, unittest.hasLength(2)); |
| 4784 unittest.expect(o[0], unittest.equals('foo')); | 4797 unittest.expect(o[0], unittest.equals('foo')); |
| 4785 unittest.expect(o[1], unittest.equals('foo')); | 4798 unittest.expect(o[1], unittest.equals('foo')); |
| 4786 } | 4799 } |
| 4787 | 4800 |
| 4788 core.int buildCounterServiceAccount = 0; | 4801 core.int buildCounterServiceAccount = 0; |
| 4789 buildServiceAccount() { | 4802 buildServiceAccount() { |
| 4790 var o = new api.ServiceAccount(); | 4803 var o = new api.ServiceAccount(); |
| 4791 buildCounterServiceAccount++; | 4804 buildCounterServiceAccount++; |
| 4792 if (buildCounterServiceAccount < 3) { | 4805 if (buildCounterServiceAccount < 3) { |
| 4793 o.email = "foo"; | 4806 o.email = "foo"; |
| 4794 o.scopes = buildUnnamed611(); | 4807 o.scopes = buildUnnamed1746(); |
| 4795 } | 4808 } |
| 4796 buildCounterServiceAccount--; | 4809 buildCounterServiceAccount--; |
| 4797 return o; | 4810 return o; |
| 4798 } | 4811 } |
| 4799 | 4812 |
| 4800 checkServiceAccount(api.ServiceAccount o) { | 4813 checkServiceAccount(api.ServiceAccount o) { |
| 4801 buildCounterServiceAccount++; | 4814 buildCounterServiceAccount++; |
| 4802 if (buildCounterServiceAccount < 3) { | 4815 if (buildCounterServiceAccount < 3) { |
| 4803 unittest.expect(o.email, unittest.equals('foo')); | 4816 unittest.expect(o.email, unittest.equals('foo')); |
| 4804 checkUnnamed611(o.scopes); | 4817 checkUnnamed1746(o.scopes); |
| 4805 } | 4818 } |
| 4806 buildCounterServiceAccount--; | 4819 buildCounterServiceAccount--; |
| 4807 } | 4820 } |
| 4808 | 4821 |
| 4809 buildUnnamed612() { | 4822 buildUnnamed1747() { |
| 4810 var o = new core.List<core.String>(); | 4823 var o = new core.List<core.String>(); |
| 4811 o.add("foo"); | 4824 o.add("foo"); |
| 4812 o.add("foo"); | 4825 o.add("foo"); |
| 4813 return o; | 4826 return o; |
| 4814 } | 4827 } |
| 4815 | 4828 |
| 4816 checkUnnamed612(core.List<core.String> o) { | 4829 checkUnnamed1747(core.List<core.String> o) { |
| 4817 unittest.expect(o, unittest.hasLength(2)); | 4830 unittest.expect(o, unittest.hasLength(2)); |
| 4818 unittest.expect(o[0], unittest.equals('foo')); | 4831 unittest.expect(o[0], unittest.equals('foo')); |
| 4819 unittest.expect(o[1], unittest.equals('foo')); | 4832 unittest.expect(o[1], unittest.equals('foo')); |
| 4820 } | 4833 } |
| 4821 | 4834 |
| 4822 core.int buildCounterSnapshot = 0; | 4835 core.int buildCounterSnapshot = 0; |
| 4823 buildSnapshot() { | 4836 buildSnapshot() { |
| 4824 var o = new api.Snapshot(); | 4837 var o = new api.Snapshot(); |
| 4825 buildCounterSnapshot++; | 4838 buildCounterSnapshot++; |
| 4826 if (buildCounterSnapshot < 3) { | 4839 if (buildCounterSnapshot < 3) { |
| 4827 o.creationTimestamp = "foo"; | 4840 o.creationTimestamp = "foo"; |
| 4828 o.description = "foo"; | 4841 o.description = "foo"; |
| 4829 o.diskSizeGb = "foo"; | 4842 o.diskSizeGb = "foo"; |
| 4830 o.id = "foo"; | 4843 o.id = "foo"; |
| 4831 o.kind = "foo"; | 4844 o.kind = "foo"; |
| 4832 o.licenses = buildUnnamed612(); | 4845 o.licenses = buildUnnamed1747(); |
| 4833 o.name = "foo"; | 4846 o.name = "foo"; |
| 4834 o.selfLink = "foo"; | 4847 o.selfLink = "foo"; |
| 4835 o.sourceDisk = "foo"; | 4848 o.sourceDisk = "foo"; |
| 4836 o.sourceDiskId = "foo"; | 4849 o.sourceDiskId = "foo"; |
| 4837 o.status = "foo"; | 4850 o.status = "foo"; |
| 4838 o.storageBytes = "foo"; | 4851 o.storageBytes = "foo"; |
| 4839 o.storageBytesStatus = "foo"; | 4852 o.storageBytesStatus = "foo"; |
| 4840 } | 4853 } |
| 4841 buildCounterSnapshot--; | 4854 buildCounterSnapshot--; |
| 4842 return o; | 4855 return o; |
| 4843 } | 4856 } |
| 4844 | 4857 |
| 4845 checkSnapshot(api.Snapshot o) { | 4858 checkSnapshot(api.Snapshot o) { |
| 4846 buildCounterSnapshot++; | 4859 buildCounterSnapshot++; |
| 4847 if (buildCounterSnapshot < 3) { | 4860 if (buildCounterSnapshot < 3) { |
| 4848 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4861 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4849 unittest.expect(o.description, unittest.equals('foo')); | 4862 unittest.expect(o.description, unittest.equals('foo')); |
| 4850 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 4863 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 4851 unittest.expect(o.id, unittest.equals('foo')); | 4864 unittest.expect(o.id, unittest.equals('foo')); |
| 4852 unittest.expect(o.kind, unittest.equals('foo')); | 4865 unittest.expect(o.kind, unittest.equals('foo')); |
| 4853 checkUnnamed612(o.licenses); | 4866 checkUnnamed1747(o.licenses); |
| 4854 unittest.expect(o.name, unittest.equals('foo')); | 4867 unittest.expect(o.name, unittest.equals('foo')); |
| 4855 unittest.expect(o.selfLink, unittest.equals('foo')); | 4868 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4856 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 4869 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 4857 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 4870 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 4858 unittest.expect(o.status, unittest.equals('foo')); | 4871 unittest.expect(o.status, unittest.equals('foo')); |
| 4859 unittest.expect(o.storageBytes, unittest.equals('foo')); | 4872 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 4860 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 4873 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 4861 } | 4874 } |
| 4862 buildCounterSnapshot--; | 4875 buildCounterSnapshot--; |
| 4863 } | 4876 } |
| 4864 | 4877 |
| 4865 buildUnnamed613() { | 4878 buildUnnamed1748() { |
| 4866 var o = new core.List<api.Snapshot>(); | 4879 var o = new core.List<api.Snapshot>(); |
| 4867 o.add(buildSnapshot()); | 4880 o.add(buildSnapshot()); |
| 4868 o.add(buildSnapshot()); | 4881 o.add(buildSnapshot()); |
| 4869 return o; | 4882 return o; |
| 4870 } | 4883 } |
| 4871 | 4884 |
| 4872 checkUnnamed613(core.List<api.Snapshot> o) { | 4885 checkUnnamed1748(core.List<api.Snapshot> o) { |
| 4873 unittest.expect(o, unittest.hasLength(2)); | 4886 unittest.expect(o, unittest.hasLength(2)); |
| 4874 checkSnapshot(o[0]); | 4887 checkSnapshot(o[0]); |
| 4875 checkSnapshot(o[1]); | 4888 checkSnapshot(o[1]); |
| 4876 } | 4889 } |
| 4877 | 4890 |
| 4878 core.int buildCounterSnapshotList = 0; | 4891 core.int buildCounterSnapshotList = 0; |
| 4879 buildSnapshotList() { | 4892 buildSnapshotList() { |
| 4880 var o = new api.SnapshotList(); | 4893 var o = new api.SnapshotList(); |
| 4881 buildCounterSnapshotList++; | 4894 buildCounterSnapshotList++; |
| 4882 if (buildCounterSnapshotList < 3) { | 4895 if (buildCounterSnapshotList < 3) { |
| 4883 o.id = "foo"; | 4896 o.id = "foo"; |
| 4884 o.items = buildUnnamed613(); | 4897 o.items = buildUnnamed1748(); |
| 4885 o.kind = "foo"; | 4898 o.kind = "foo"; |
| 4886 o.nextPageToken = "foo"; | 4899 o.nextPageToken = "foo"; |
| 4887 o.selfLink = "foo"; | 4900 o.selfLink = "foo"; |
| 4888 } | 4901 } |
| 4889 buildCounterSnapshotList--; | 4902 buildCounterSnapshotList--; |
| 4890 return o; | 4903 return o; |
| 4891 } | 4904 } |
| 4892 | 4905 |
| 4893 checkSnapshotList(api.SnapshotList o) { | 4906 checkSnapshotList(api.SnapshotList o) { |
| 4894 buildCounterSnapshotList++; | 4907 buildCounterSnapshotList++; |
| 4895 if (buildCounterSnapshotList < 3) { | 4908 if (buildCounterSnapshotList < 3) { |
| 4896 unittest.expect(o.id, unittest.equals('foo')); | 4909 unittest.expect(o.id, unittest.equals('foo')); |
| 4897 checkUnnamed613(o.items); | 4910 checkUnnamed1748(o.items); |
| 4898 unittest.expect(o.kind, unittest.equals('foo')); | 4911 unittest.expect(o.kind, unittest.equals('foo')); |
| 4899 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4912 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4900 unittest.expect(o.selfLink, unittest.equals('foo')); | 4913 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4901 } | 4914 } |
| 4902 buildCounterSnapshotList--; | 4915 buildCounterSnapshotList--; |
| 4903 } | 4916 } |
| 4904 | 4917 |
| 4905 buildUnnamed614() { | 4918 buildUnnamed1749() { |
| 4906 var o = new core.List<core.String>(); | 4919 var o = new core.List<core.String>(); |
| 4907 o.add("foo"); | 4920 o.add("foo"); |
| 4908 o.add("foo"); | 4921 o.add("foo"); |
| 4909 return o; | 4922 return o; |
| 4910 } | 4923 } |
| 4911 | 4924 |
| 4912 checkUnnamed614(core.List<core.String> o) { | 4925 checkUnnamed1749(core.List<core.String> o) { |
| 4913 unittest.expect(o, unittest.hasLength(2)); | 4926 unittest.expect(o, unittest.hasLength(2)); |
| 4914 unittest.expect(o[0], unittest.equals('foo')); | 4927 unittest.expect(o[0], unittest.equals('foo')); |
| 4915 unittest.expect(o[1], unittest.equals('foo')); | 4928 unittest.expect(o[1], unittest.equals('foo')); |
| 4916 } | 4929 } |
| 4917 | 4930 |
| 4918 core.int buildCounterTags = 0; | 4931 core.int buildCounterTags = 0; |
| 4919 buildTags() { | 4932 buildTags() { |
| 4920 var o = new api.Tags(); | 4933 var o = new api.Tags(); |
| 4921 buildCounterTags++; | 4934 buildCounterTags++; |
| 4922 if (buildCounterTags < 3) { | 4935 if (buildCounterTags < 3) { |
| 4923 o.fingerprint = "foo"; | 4936 o.fingerprint = "foo"; |
| 4924 o.items = buildUnnamed614(); | 4937 o.items = buildUnnamed1749(); |
| 4925 } | 4938 } |
| 4926 buildCounterTags--; | 4939 buildCounterTags--; |
| 4927 return o; | 4940 return o; |
| 4928 } | 4941 } |
| 4929 | 4942 |
| 4930 checkTags(api.Tags o) { | 4943 checkTags(api.Tags o) { |
| 4931 buildCounterTags++; | 4944 buildCounterTags++; |
| 4932 if (buildCounterTags < 3) { | 4945 if (buildCounterTags < 3) { |
| 4933 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4946 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4934 checkUnnamed614(o.items); | 4947 checkUnnamed1749(o.items); |
| 4935 } | 4948 } |
| 4936 buildCounterTags--; | 4949 buildCounterTags--; |
| 4937 } | 4950 } |
| 4938 | 4951 |
| 4939 core.int buildCounterTargetHttpProxy = 0; | 4952 core.int buildCounterTargetHttpProxy = 0; |
| 4940 buildTargetHttpProxy() { | 4953 buildTargetHttpProxy() { |
| 4941 var o = new api.TargetHttpProxy(); | 4954 var o = new api.TargetHttpProxy(); |
| 4942 buildCounterTargetHttpProxy++; | 4955 buildCounterTargetHttpProxy++; |
| 4943 if (buildCounterTargetHttpProxy < 3) { | 4956 if (buildCounterTargetHttpProxy < 3) { |
| 4944 o.creationTimestamp = "foo"; | 4957 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 4960 unittest.expect(o.description, unittest.equals('foo')); | 4973 unittest.expect(o.description, unittest.equals('foo')); |
| 4961 unittest.expect(o.id, unittest.equals('foo')); | 4974 unittest.expect(o.id, unittest.equals('foo')); |
| 4962 unittest.expect(o.kind, unittest.equals('foo')); | 4975 unittest.expect(o.kind, unittest.equals('foo')); |
| 4963 unittest.expect(o.name, unittest.equals('foo')); | 4976 unittest.expect(o.name, unittest.equals('foo')); |
| 4964 unittest.expect(o.selfLink, unittest.equals('foo')); | 4977 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4965 unittest.expect(o.urlMap, unittest.equals('foo')); | 4978 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 4966 } | 4979 } |
| 4967 buildCounterTargetHttpProxy--; | 4980 buildCounterTargetHttpProxy--; |
| 4968 } | 4981 } |
| 4969 | 4982 |
| 4970 buildUnnamed615() { | 4983 buildUnnamed1750() { |
| 4971 var o = new core.List<api.TargetHttpProxy>(); | 4984 var o = new core.List<api.TargetHttpProxy>(); |
| 4972 o.add(buildTargetHttpProxy()); | 4985 o.add(buildTargetHttpProxy()); |
| 4973 o.add(buildTargetHttpProxy()); | 4986 o.add(buildTargetHttpProxy()); |
| 4974 return o; | 4987 return o; |
| 4975 } | 4988 } |
| 4976 | 4989 |
| 4977 checkUnnamed615(core.List<api.TargetHttpProxy> o) { | 4990 checkUnnamed1750(core.List<api.TargetHttpProxy> o) { |
| 4978 unittest.expect(o, unittest.hasLength(2)); | 4991 unittest.expect(o, unittest.hasLength(2)); |
| 4979 checkTargetHttpProxy(o[0]); | 4992 checkTargetHttpProxy(o[0]); |
| 4980 checkTargetHttpProxy(o[1]); | 4993 checkTargetHttpProxy(o[1]); |
| 4981 } | 4994 } |
| 4982 | 4995 |
| 4983 core.int buildCounterTargetHttpProxyList = 0; | 4996 core.int buildCounterTargetHttpProxyList = 0; |
| 4984 buildTargetHttpProxyList() { | 4997 buildTargetHttpProxyList() { |
| 4985 var o = new api.TargetHttpProxyList(); | 4998 var o = new api.TargetHttpProxyList(); |
| 4986 buildCounterTargetHttpProxyList++; | 4999 buildCounterTargetHttpProxyList++; |
| 4987 if (buildCounterTargetHttpProxyList < 3) { | 5000 if (buildCounterTargetHttpProxyList < 3) { |
| 4988 o.id = "foo"; | 5001 o.id = "foo"; |
| 4989 o.items = buildUnnamed615(); | 5002 o.items = buildUnnamed1750(); |
| 4990 o.kind = "foo"; | 5003 o.kind = "foo"; |
| 4991 o.nextPageToken = "foo"; | 5004 o.nextPageToken = "foo"; |
| 4992 o.selfLink = "foo"; | 5005 o.selfLink = "foo"; |
| 4993 } | 5006 } |
| 4994 buildCounterTargetHttpProxyList--; | 5007 buildCounterTargetHttpProxyList--; |
| 4995 return o; | 5008 return o; |
| 4996 } | 5009 } |
| 4997 | 5010 |
| 4998 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 5011 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 4999 buildCounterTargetHttpProxyList++; | 5012 buildCounterTargetHttpProxyList++; |
| 5000 if (buildCounterTargetHttpProxyList < 3) { | 5013 if (buildCounterTargetHttpProxyList < 3) { |
| 5001 unittest.expect(o.id, unittest.equals('foo')); | 5014 unittest.expect(o.id, unittest.equals('foo')); |
| 5002 checkUnnamed615(o.items); | 5015 checkUnnamed1750(o.items); |
| 5003 unittest.expect(o.kind, unittest.equals('foo')); | 5016 unittest.expect(o.kind, unittest.equals('foo')); |
| 5004 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5017 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5005 unittest.expect(o.selfLink, unittest.equals('foo')); | 5018 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5006 } | 5019 } |
| 5007 buildCounterTargetHttpProxyList--; | 5020 buildCounterTargetHttpProxyList--; |
| 5008 } | 5021 } |
| 5009 | 5022 |
| 5010 core.int buildCounterTargetInstance = 0; | 5023 core.int buildCounterTargetInstance = 0; |
| 5011 buildTargetInstance() { | 5024 buildTargetInstance() { |
| 5012 var o = new api.TargetInstance(); | 5025 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5035 unittest.expect(o.instance, unittest.equals('foo')); | 5048 unittest.expect(o.instance, unittest.equals('foo')); |
| 5036 unittest.expect(o.kind, unittest.equals('foo')); | 5049 unittest.expect(o.kind, unittest.equals('foo')); |
| 5037 unittest.expect(o.name, unittest.equals('foo')); | 5050 unittest.expect(o.name, unittest.equals('foo')); |
| 5038 unittest.expect(o.natPolicy, unittest.equals('foo')); | 5051 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 5039 unittest.expect(o.selfLink, unittest.equals('foo')); | 5052 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5040 unittest.expect(o.zone, unittest.equals('foo')); | 5053 unittest.expect(o.zone, unittest.equals('foo')); |
| 5041 } | 5054 } |
| 5042 buildCounterTargetInstance--; | 5055 buildCounterTargetInstance--; |
| 5043 } | 5056 } |
| 5044 | 5057 |
| 5045 buildUnnamed616() { | 5058 buildUnnamed1751() { |
| 5046 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 5059 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 5047 o["x"] = buildTargetInstancesScopedList(); | 5060 o["x"] = buildTargetInstancesScopedList(); |
| 5048 o["y"] = buildTargetInstancesScopedList(); | 5061 o["y"] = buildTargetInstancesScopedList(); |
| 5049 return o; | 5062 return o; |
| 5050 } | 5063 } |
| 5051 | 5064 |
| 5052 checkUnnamed616(core.Map<core.String, api.TargetInstancesScopedList> o) { | 5065 checkUnnamed1751(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 5053 unittest.expect(o, unittest.hasLength(2)); | 5066 unittest.expect(o, unittest.hasLength(2)); |
| 5054 checkTargetInstancesScopedList(o["x"]); | 5067 checkTargetInstancesScopedList(o["x"]); |
| 5055 checkTargetInstancesScopedList(o["y"]); | 5068 checkTargetInstancesScopedList(o["y"]); |
| 5056 } | 5069 } |
| 5057 | 5070 |
| 5058 core.int buildCounterTargetInstanceAggregatedList = 0; | 5071 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 5059 buildTargetInstanceAggregatedList() { | 5072 buildTargetInstanceAggregatedList() { |
| 5060 var o = new api.TargetInstanceAggregatedList(); | 5073 var o = new api.TargetInstanceAggregatedList(); |
| 5061 buildCounterTargetInstanceAggregatedList++; | 5074 buildCounterTargetInstanceAggregatedList++; |
| 5062 if (buildCounterTargetInstanceAggregatedList < 3) { | 5075 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 5063 o.id = "foo"; | 5076 o.id = "foo"; |
| 5064 o.items = buildUnnamed616(); | 5077 o.items = buildUnnamed1751(); |
| 5065 o.kind = "foo"; | 5078 o.kind = "foo"; |
| 5066 o.nextPageToken = "foo"; | 5079 o.nextPageToken = "foo"; |
| 5067 o.selfLink = "foo"; | 5080 o.selfLink = "foo"; |
| 5068 } | 5081 } |
| 5069 buildCounterTargetInstanceAggregatedList--; | 5082 buildCounterTargetInstanceAggregatedList--; |
| 5070 return o; | 5083 return o; |
| 5071 } | 5084 } |
| 5072 | 5085 |
| 5073 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 5086 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 5074 buildCounterTargetInstanceAggregatedList++; | 5087 buildCounterTargetInstanceAggregatedList++; |
| 5075 if (buildCounterTargetInstanceAggregatedList < 3) { | 5088 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 5076 unittest.expect(o.id, unittest.equals('foo')); | 5089 unittest.expect(o.id, unittest.equals('foo')); |
| 5077 checkUnnamed616(o.items); | 5090 checkUnnamed1751(o.items); |
| 5078 unittest.expect(o.kind, unittest.equals('foo')); | 5091 unittest.expect(o.kind, unittest.equals('foo')); |
| 5079 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5092 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5080 unittest.expect(o.selfLink, unittest.equals('foo')); | 5093 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5081 } | 5094 } |
| 5082 buildCounterTargetInstanceAggregatedList--; | 5095 buildCounterTargetInstanceAggregatedList--; |
| 5083 } | 5096 } |
| 5084 | 5097 |
| 5085 buildUnnamed617() { | 5098 buildUnnamed1752() { |
| 5086 var o = new core.List<api.TargetInstance>(); | 5099 var o = new core.List<api.TargetInstance>(); |
| 5087 o.add(buildTargetInstance()); | 5100 o.add(buildTargetInstance()); |
| 5088 o.add(buildTargetInstance()); | 5101 o.add(buildTargetInstance()); |
| 5089 return o; | 5102 return o; |
| 5090 } | 5103 } |
| 5091 | 5104 |
| 5092 checkUnnamed617(core.List<api.TargetInstance> o) { | 5105 checkUnnamed1752(core.List<api.TargetInstance> o) { |
| 5093 unittest.expect(o, unittest.hasLength(2)); | 5106 unittest.expect(o, unittest.hasLength(2)); |
| 5094 checkTargetInstance(o[0]); | 5107 checkTargetInstance(o[0]); |
| 5095 checkTargetInstance(o[1]); | 5108 checkTargetInstance(o[1]); |
| 5096 } | 5109 } |
| 5097 | 5110 |
| 5098 core.int buildCounterTargetInstanceList = 0; | 5111 core.int buildCounterTargetInstanceList = 0; |
| 5099 buildTargetInstanceList() { | 5112 buildTargetInstanceList() { |
| 5100 var o = new api.TargetInstanceList(); | 5113 var o = new api.TargetInstanceList(); |
| 5101 buildCounterTargetInstanceList++; | 5114 buildCounterTargetInstanceList++; |
| 5102 if (buildCounterTargetInstanceList < 3) { | 5115 if (buildCounterTargetInstanceList < 3) { |
| 5103 o.id = "foo"; | 5116 o.id = "foo"; |
| 5104 o.items = buildUnnamed617(); | 5117 o.items = buildUnnamed1752(); |
| 5105 o.kind = "foo"; | 5118 o.kind = "foo"; |
| 5106 o.nextPageToken = "foo"; | 5119 o.nextPageToken = "foo"; |
| 5107 o.selfLink = "foo"; | 5120 o.selfLink = "foo"; |
| 5108 } | 5121 } |
| 5109 buildCounterTargetInstanceList--; | 5122 buildCounterTargetInstanceList--; |
| 5110 return o; | 5123 return o; |
| 5111 } | 5124 } |
| 5112 | 5125 |
| 5113 checkTargetInstanceList(api.TargetInstanceList o) { | 5126 checkTargetInstanceList(api.TargetInstanceList o) { |
| 5114 buildCounterTargetInstanceList++; | 5127 buildCounterTargetInstanceList++; |
| 5115 if (buildCounterTargetInstanceList < 3) { | 5128 if (buildCounterTargetInstanceList < 3) { |
| 5116 unittest.expect(o.id, unittest.equals('foo')); | 5129 unittest.expect(o.id, unittest.equals('foo')); |
| 5117 checkUnnamed617(o.items); | 5130 checkUnnamed1752(o.items); |
| 5118 unittest.expect(o.kind, unittest.equals('foo')); | 5131 unittest.expect(o.kind, unittest.equals('foo')); |
| 5119 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5132 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5120 unittest.expect(o.selfLink, unittest.equals('foo')); | 5133 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5121 } | 5134 } |
| 5122 buildCounterTargetInstanceList--; | 5135 buildCounterTargetInstanceList--; |
| 5123 } | 5136 } |
| 5124 | 5137 |
| 5125 buildUnnamed618() { | 5138 buildUnnamed1753() { |
| 5126 var o = new core.List<api.TargetInstance>(); | 5139 var o = new core.List<api.TargetInstance>(); |
| 5127 o.add(buildTargetInstance()); | 5140 o.add(buildTargetInstance()); |
| 5128 o.add(buildTargetInstance()); | 5141 o.add(buildTargetInstance()); |
| 5129 return o; | 5142 return o; |
| 5130 } | 5143 } |
| 5131 | 5144 |
| 5132 checkUnnamed618(core.List<api.TargetInstance> o) { | 5145 checkUnnamed1753(core.List<api.TargetInstance> o) { |
| 5133 unittest.expect(o, unittest.hasLength(2)); | 5146 unittest.expect(o, unittest.hasLength(2)); |
| 5134 checkTargetInstance(o[0]); | 5147 checkTargetInstance(o[0]); |
| 5135 checkTargetInstance(o[1]); | 5148 checkTargetInstance(o[1]); |
| 5136 } | 5149 } |
| 5137 | 5150 |
| 5138 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 5151 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 5139 buildTargetInstancesScopedListWarningData() { | 5152 buildTargetInstancesScopedListWarningData() { |
| 5140 var o = new api.TargetInstancesScopedListWarningData(); | 5153 var o = new api.TargetInstancesScopedListWarningData(); |
| 5141 buildCounterTargetInstancesScopedListWarningData++; | 5154 buildCounterTargetInstancesScopedListWarningData++; |
| 5142 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 5155 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 5143 o.key = "foo"; | 5156 o.key = "foo"; |
| 5144 o.value = "foo"; | 5157 o.value = "foo"; |
| 5145 } | 5158 } |
| 5146 buildCounterTargetInstancesScopedListWarningData--; | 5159 buildCounterTargetInstancesScopedListWarningData--; |
| 5147 return o; | 5160 return o; |
| 5148 } | 5161 } |
| 5149 | 5162 |
| 5150 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 5163 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 5151 buildCounterTargetInstancesScopedListWarningData++; | 5164 buildCounterTargetInstancesScopedListWarningData++; |
| 5152 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 5165 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 5153 unittest.expect(o.key, unittest.equals('foo')); | 5166 unittest.expect(o.key, unittest.equals('foo')); |
| 5154 unittest.expect(o.value, unittest.equals('foo')); | 5167 unittest.expect(o.value, unittest.equals('foo')); |
| 5155 } | 5168 } |
| 5156 buildCounterTargetInstancesScopedListWarningData--; | 5169 buildCounterTargetInstancesScopedListWarningData--; |
| 5157 } | 5170 } |
| 5158 | 5171 |
| 5159 buildUnnamed619() { | 5172 buildUnnamed1754() { |
| 5160 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 5173 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 5161 o.add(buildTargetInstancesScopedListWarningData()); | 5174 o.add(buildTargetInstancesScopedListWarningData()); |
| 5162 o.add(buildTargetInstancesScopedListWarningData()); | 5175 o.add(buildTargetInstancesScopedListWarningData()); |
| 5163 return o; | 5176 return o; |
| 5164 } | 5177 } |
| 5165 | 5178 |
| 5166 checkUnnamed619(core.List<api.TargetInstancesScopedListWarningData> o) { | 5179 checkUnnamed1754(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 5167 unittest.expect(o, unittest.hasLength(2)); | 5180 unittest.expect(o, unittest.hasLength(2)); |
| 5168 checkTargetInstancesScopedListWarningData(o[0]); | 5181 checkTargetInstancesScopedListWarningData(o[0]); |
| 5169 checkTargetInstancesScopedListWarningData(o[1]); | 5182 checkTargetInstancesScopedListWarningData(o[1]); |
| 5170 } | 5183 } |
| 5171 | 5184 |
| 5172 core.int buildCounterTargetInstancesScopedListWarning = 0; | 5185 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 5173 buildTargetInstancesScopedListWarning() { | 5186 buildTargetInstancesScopedListWarning() { |
| 5174 var o = new api.TargetInstancesScopedListWarning(); | 5187 var o = new api.TargetInstancesScopedListWarning(); |
| 5175 buildCounterTargetInstancesScopedListWarning++; | 5188 buildCounterTargetInstancesScopedListWarning++; |
| 5176 if (buildCounterTargetInstancesScopedListWarning < 3) { | 5189 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 5177 o.code = "foo"; | 5190 o.code = "foo"; |
| 5178 o.data = buildUnnamed619(); | 5191 o.data = buildUnnamed1754(); |
| 5179 o.message = "foo"; | 5192 o.message = "foo"; |
| 5180 } | 5193 } |
| 5181 buildCounterTargetInstancesScopedListWarning--; | 5194 buildCounterTargetInstancesScopedListWarning--; |
| 5182 return o; | 5195 return o; |
| 5183 } | 5196 } |
| 5184 | 5197 |
| 5185 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 5198 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 5186 buildCounterTargetInstancesScopedListWarning++; | 5199 buildCounterTargetInstancesScopedListWarning++; |
| 5187 if (buildCounterTargetInstancesScopedListWarning < 3) { | 5200 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 5188 unittest.expect(o.code, unittest.equals('foo')); | 5201 unittest.expect(o.code, unittest.equals('foo')); |
| 5189 checkUnnamed619(o.data); | 5202 checkUnnamed1754(o.data); |
| 5190 unittest.expect(o.message, unittest.equals('foo')); | 5203 unittest.expect(o.message, unittest.equals('foo')); |
| 5191 } | 5204 } |
| 5192 buildCounterTargetInstancesScopedListWarning--; | 5205 buildCounterTargetInstancesScopedListWarning--; |
| 5193 } | 5206 } |
| 5194 | 5207 |
| 5195 core.int buildCounterTargetInstancesScopedList = 0; | 5208 core.int buildCounterTargetInstancesScopedList = 0; |
| 5196 buildTargetInstancesScopedList() { | 5209 buildTargetInstancesScopedList() { |
| 5197 var o = new api.TargetInstancesScopedList(); | 5210 var o = new api.TargetInstancesScopedList(); |
| 5198 buildCounterTargetInstancesScopedList++; | 5211 buildCounterTargetInstancesScopedList++; |
| 5199 if (buildCounterTargetInstancesScopedList < 3) { | 5212 if (buildCounterTargetInstancesScopedList < 3) { |
| 5200 o.targetInstances = buildUnnamed618(); | 5213 o.targetInstances = buildUnnamed1753(); |
| 5201 o.warning = buildTargetInstancesScopedListWarning(); | 5214 o.warning = buildTargetInstancesScopedListWarning(); |
| 5202 } | 5215 } |
| 5203 buildCounterTargetInstancesScopedList--; | 5216 buildCounterTargetInstancesScopedList--; |
| 5204 return o; | 5217 return o; |
| 5205 } | 5218 } |
| 5206 | 5219 |
| 5207 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 5220 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 5208 buildCounterTargetInstancesScopedList++; | 5221 buildCounterTargetInstancesScopedList++; |
| 5209 if (buildCounterTargetInstancesScopedList < 3) { | 5222 if (buildCounterTargetInstancesScopedList < 3) { |
| 5210 checkUnnamed618(o.targetInstances); | 5223 checkUnnamed1753(o.targetInstances); |
| 5211 checkTargetInstancesScopedListWarning(o.warning); | 5224 checkTargetInstancesScopedListWarning(o.warning); |
| 5212 } | 5225 } |
| 5213 buildCounterTargetInstancesScopedList--; | 5226 buildCounterTargetInstancesScopedList--; |
| 5214 } | 5227 } |
| 5215 | 5228 |
| 5216 buildUnnamed620() { | 5229 buildUnnamed1755() { |
| 5217 var o = new core.List<core.String>(); | 5230 var o = new core.List<core.String>(); |
| 5218 o.add("foo"); | 5231 o.add("foo"); |
| 5219 o.add("foo"); | 5232 o.add("foo"); |
| 5220 return o; | 5233 return o; |
| 5221 } | 5234 } |
| 5222 | 5235 |
| 5223 checkUnnamed620(core.List<core.String> o) { | 5236 checkUnnamed1755(core.List<core.String> o) { |
| 5224 unittest.expect(o, unittest.hasLength(2)); | 5237 unittest.expect(o, unittest.hasLength(2)); |
| 5225 unittest.expect(o[0], unittest.equals('foo')); | 5238 unittest.expect(o[0], unittest.equals('foo')); |
| 5226 unittest.expect(o[1], unittest.equals('foo')); | 5239 unittest.expect(o[1], unittest.equals('foo')); |
| 5227 } | 5240 } |
| 5228 | 5241 |
| 5229 buildUnnamed621() { | 5242 buildUnnamed1756() { |
| 5230 var o = new core.List<core.String>(); | 5243 var o = new core.List<core.String>(); |
| 5231 o.add("foo"); | 5244 o.add("foo"); |
| 5232 o.add("foo"); | 5245 o.add("foo"); |
| 5233 return o; | 5246 return o; |
| 5234 } | 5247 } |
| 5235 | 5248 |
| 5236 checkUnnamed621(core.List<core.String> o) { | 5249 checkUnnamed1756(core.List<core.String> o) { |
| 5237 unittest.expect(o, unittest.hasLength(2)); | 5250 unittest.expect(o, unittest.hasLength(2)); |
| 5238 unittest.expect(o[0], unittest.equals('foo')); | 5251 unittest.expect(o[0], unittest.equals('foo')); |
| 5239 unittest.expect(o[1], unittest.equals('foo')); | 5252 unittest.expect(o[1], unittest.equals('foo')); |
| 5240 } | 5253 } |
| 5241 | 5254 |
| 5242 core.int buildCounterTargetPool = 0; | 5255 core.int buildCounterTargetPool = 0; |
| 5243 buildTargetPool() { | 5256 buildTargetPool() { |
| 5244 var o = new api.TargetPool(); | 5257 var o = new api.TargetPool(); |
| 5245 buildCounterTargetPool++; | 5258 buildCounterTargetPool++; |
| 5246 if (buildCounterTargetPool < 3) { | 5259 if (buildCounterTargetPool < 3) { |
| 5247 o.backupPool = "foo"; | 5260 o.backupPool = "foo"; |
| 5248 o.creationTimestamp = "foo"; | 5261 o.creationTimestamp = "foo"; |
| 5249 o.description = "foo"; | 5262 o.description = "foo"; |
| 5250 o.failoverRatio = 42.0; | 5263 o.failoverRatio = 42.0; |
| 5251 o.healthChecks = buildUnnamed620(); | 5264 o.healthChecks = buildUnnamed1755(); |
| 5252 o.id = "foo"; | 5265 o.id = "foo"; |
| 5253 o.instances = buildUnnamed621(); | 5266 o.instances = buildUnnamed1756(); |
| 5254 o.kind = "foo"; | 5267 o.kind = "foo"; |
| 5255 o.name = "foo"; | 5268 o.name = "foo"; |
| 5256 o.region = "foo"; | 5269 o.region = "foo"; |
| 5257 o.selfLink = "foo"; | 5270 o.selfLink = "foo"; |
| 5258 o.sessionAffinity = "foo"; | 5271 o.sessionAffinity = "foo"; |
| 5259 } | 5272 } |
| 5260 buildCounterTargetPool--; | 5273 buildCounterTargetPool--; |
| 5261 return o; | 5274 return o; |
| 5262 } | 5275 } |
| 5263 | 5276 |
| 5264 checkTargetPool(api.TargetPool o) { | 5277 checkTargetPool(api.TargetPool o) { |
| 5265 buildCounterTargetPool++; | 5278 buildCounterTargetPool++; |
| 5266 if (buildCounterTargetPool < 3) { | 5279 if (buildCounterTargetPool < 3) { |
| 5267 unittest.expect(o.backupPool, unittest.equals('foo')); | 5280 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 5268 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5281 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5269 unittest.expect(o.description, unittest.equals('foo')); | 5282 unittest.expect(o.description, unittest.equals('foo')); |
| 5270 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 5283 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 5271 checkUnnamed620(o.healthChecks); | 5284 checkUnnamed1755(o.healthChecks); |
| 5272 unittest.expect(o.id, unittest.equals('foo')); | 5285 unittest.expect(o.id, unittest.equals('foo')); |
| 5273 checkUnnamed621(o.instances); | 5286 checkUnnamed1756(o.instances); |
| 5274 unittest.expect(o.kind, unittest.equals('foo')); | 5287 unittest.expect(o.kind, unittest.equals('foo')); |
| 5275 unittest.expect(o.name, unittest.equals('foo')); | 5288 unittest.expect(o.name, unittest.equals('foo')); |
| 5276 unittest.expect(o.region, unittest.equals('foo')); | 5289 unittest.expect(o.region, unittest.equals('foo')); |
| 5277 unittest.expect(o.selfLink, unittest.equals('foo')); | 5290 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5278 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 5291 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 5279 } | 5292 } |
| 5280 buildCounterTargetPool--; | 5293 buildCounterTargetPool--; |
| 5281 } | 5294 } |
| 5282 | 5295 |
| 5283 buildUnnamed622() { | 5296 buildUnnamed1757() { |
| 5284 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 5297 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 5285 o["x"] = buildTargetPoolsScopedList(); | 5298 o["x"] = buildTargetPoolsScopedList(); |
| 5286 o["y"] = buildTargetPoolsScopedList(); | 5299 o["y"] = buildTargetPoolsScopedList(); |
| 5287 return o; | 5300 return o; |
| 5288 } | 5301 } |
| 5289 | 5302 |
| 5290 checkUnnamed622(core.Map<core.String, api.TargetPoolsScopedList> o) { | 5303 checkUnnamed1757(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 5291 unittest.expect(o, unittest.hasLength(2)); | 5304 unittest.expect(o, unittest.hasLength(2)); |
| 5292 checkTargetPoolsScopedList(o["x"]); | 5305 checkTargetPoolsScopedList(o["x"]); |
| 5293 checkTargetPoolsScopedList(o["y"]); | 5306 checkTargetPoolsScopedList(o["y"]); |
| 5294 } | 5307 } |
| 5295 | 5308 |
| 5296 core.int buildCounterTargetPoolAggregatedList = 0; | 5309 core.int buildCounterTargetPoolAggregatedList = 0; |
| 5297 buildTargetPoolAggregatedList() { | 5310 buildTargetPoolAggregatedList() { |
| 5298 var o = new api.TargetPoolAggregatedList(); | 5311 var o = new api.TargetPoolAggregatedList(); |
| 5299 buildCounterTargetPoolAggregatedList++; | 5312 buildCounterTargetPoolAggregatedList++; |
| 5300 if (buildCounterTargetPoolAggregatedList < 3) { | 5313 if (buildCounterTargetPoolAggregatedList < 3) { |
| 5301 o.id = "foo"; | 5314 o.id = "foo"; |
| 5302 o.items = buildUnnamed622(); | 5315 o.items = buildUnnamed1757(); |
| 5303 o.kind = "foo"; | 5316 o.kind = "foo"; |
| 5304 o.nextPageToken = "foo"; | 5317 o.nextPageToken = "foo"; |
| 5305 o.selfLink = "foo"; | 5318 o.selfLink = "foo"; |
| 5306 } | 5319 } |
| 5307 buildCounterTargetPoolAggregatedList--; | 5320 buildCounterTargetPoolAggregatedList--; |
| 5308 return o; | 5321 return o; |
| 5309 } | 5322 } |
| 5310 | 5323 |
| 5311 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 5324 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 5312 buildCounterTargetPoolAggregatedList++; | 5325 buildCounterTargetPoolAggregatedList++; |
| 5313 if (buildCounterTargetPoolAggregatedList < 3) { | 5326 if (buildCounterTargetPoolAggregatedList < 3) { |
| 5314 unittest.expect(o.id, unittest.equals('foo')); | 5327 unittest.expect(o.id, unittest.equals('foo')); |
| 5315 checkUnnamed622(o.items); | 5328 checkUnnamed1757(o.items); |
| 5316 unittest.expect(o.kind, unittest.equals('foo')); | 5329 unittest.expect(o.kind, unittest.equals('foo')); |
| 5317 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5330 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5318 unittest.expect(o.selfLink, unittest.equals('foo')); | 5331 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5319 } | 5332 } |
| 5320 buildCounterTargetPoolAggregatedList--; | 5333 buildCounterTargetPoolAggregatedList--; |
| 5321 } | 5334 } |
| 5322 | 5335 |
| 5323 buildUnnamed623() { | 5336 buildUnnamed1758() { |
| 5324 var o = new core.List<api.HealthStatus>(); | 5337 var o = new core.List<api.HealthStatus>(); |
| 5325 o.add(buildHealthStatus()); | 5338 o.add(buildHealthStatus()); |
| 5326 o.add(buildHealthStatus()); | 5339 o.add(buildHealthStatus()); |
| 5327 return o; | 5340 return o; |
| 5328 } | 5341 } |
| 5329 | 5342 |
| 5330 checkUnnamed623(core.List<api.HealthStatus> o) { | 5343 checkUnnamed1758(core.List<api.HealthStatus> o) { |
| 5331 unittest.expect(o, unittest.hasLength(2)); | 5344 unittest.expect(o, unittest.hasLength(2)); |
| 5332 checkHealthStatus(o[0]); | 5345 checkHealthStatus(o[0]); |
| 5333 checkHealthStatus(o[1]); | 5346 checkHealthStatus(o[1]); |
| 5334 } | 5347 } |
| 5335 | 5348 |
| 5336 core.int buildCounterTargetPoolInstanceHealth = 0; | 5349 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 5337 buildTargetPoolInstanceHealth() { | 5350 buildTargetPoolInstanceHealth() { |
| 5338 var o = new api.TargetPoolInstanceHealth(); | 5351 var o = new api.TargetPoolInstanceHealth(); |
| 5339 buildCounterTargetPoolInstanceHealth++; | 5352 buildCounterTargetPoolInstanceHealth++; |
| 5340 if (buildCounterTargetPoolInstanceHealth < 3) { | 5353 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 5341 o.healthStatus = buildUnnamed623(); | 5354 o.healthStatus = buildUnnamed1758(); |
| 5342 o.kind = "foo"; | 5355 o.kind = "foo"; |
| 5343 } | 5356 } |
| 5344 buildCounterTargetPoolInstanceHealth--; | 5357 buildCounterTargetPoolInstanceHealth--; |
| 5345 return o; | 5358 return o; |
| 5346 } | 5359 } |
| 5347 | 5360 |
| 5348 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 5361 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 5349 buildCounterTargetPoolInstanceHealth++; | 5362 buildCounterTargetPoolInstanceHealth++; |
| 5350 if (buildCounterTargetPoolInstanceHealth < 3) { | 5363 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 5351 checkUnnamed623(o.healthStatus); | 5364 checkUnnamed1758(o.healthStatus); |
| 5352 unittest.expect(o.kind, unittest.equals('foo')); | 5365 unittest.expect(o.kind, unittest.equals('foo')); |
| 5353 } | 5366 } |
| 5354 buildCounterTargetPoolInstanceHealth--; | 5367 buildCounterTargetPoolInstanceHealth--; |
| 5355 } | 5368 } |
| 5356 | 5369 |
| 5357 buildUnnamed624() { | 5370 buildUnnamed1759() { |
| 5358 var o = new core.List<api.TargetPool>(); | 5371 var o = new core.List<api.TargetPool>(); |
| 5359 o.add(buildTargetPool()); | 5372 o.add(buildTargetPool()); |
| 5360 o.add(buildTargetPool()); | 5373 o.add(buildTargetPool()); |
| 5361 return o; | 5374 return o; |
| 5362 } | 5375 } |
| 5363 | 5376 |
| 5364 checkUnnamed624(core.List<api.TargetPool> o) { | 5377 checkUnnamed1759(core.List<api.TargetPool> o) { |
| 5365 unittest.expect(o, unittest.hasLength(2)); | 5378 unittest.expect(o, unittest.hasLength(2)); |
| 5366 checkTargetPool(o[0]); | 5379 checkTargetPool(o[0]); |
| 5367 checkTargetPool(o[1]); | 5380 checkTargetPool(o[1]); |
| 5368 } | 5381 } |
| 5369 | 5382 |
| 5370 core.int buildCounterTargetPoolList = 0; | 5383 core.int buildCounterTargetPoolList = 0; |
| 5371 buildTargetPoolList() { | 5384 buildTargetPoolList() { |
| 5372 var o = new api.TargetPoolList(); | 5385 var o = new api.TargetPoolList(); |
| 5373 buildCounterTargetPoolList++; | 5386 buildCounterTargetPoolList++; |
| 5374 if (buildCounterTargetPoolList < 3) { | 5387 if (buildCounterTargetPoolList < 3) { |
| 5375 o.id = "foo"; | 5388 o.id = "foo"; |
| 5376 o.items = buildUnnamed624(); | 5389 o.items = buildUnnamed1759(); |
| 5377 o.kind = "foo"; | 5390 o.kind = "foo"; |
| 5378 o.nextPageToken = "foo"; | 5391 o.nextPageToken = "foo"; |
| 5379 o.selfLink = "foo"; | 5392 o.selfLink = "foo"; |
| 5380 } | 5393 } |
| 5381 buildCounterTargetPoolList--; | 5394 buildCounterTargetPoolList--; |
| 5382 return o; | 5395 return o; |
| 5383 } | 5396 } |
| 5384 | 5397 |
| 5385 checkTargetPoolList(api.TargetPoolList o) { | 5398 checkTargetPoolList(api.TargetPoolList o) { |
| 5386 buildCounterTargetPoolList++; | 5399 buildCounterTargetPoolList++; |
| 5387 if (buildCounterTargetPoolList < 3) { | 5400 if (buildCounterTargetPoolList < 3) { |
| 5388 unittest.expect(o.id, unittest.equals('foo')); | 5401 unittest.expect(o.id, unittest.equals('foo')); |
| 5389 checkUnnamed624(o.items); | 5402 checkUnnamed1759(o.items); |
| 5390 unittest.expect(o.kind, unittest.equals('foo')); | 5403 unittest.expect(o.kind, unittest.equals('foo')); |
| 5391 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5404 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5392 unittest.expect(o.selfLink, unittest.equals('foo')); | 5405 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5393 } | 5406 } |
| 5394 buildCounterTargetPoolList--; | 5407 buildCounterTargetPoolList--; |
| 5395 } | 5408 } |
| 5396 | 5409 |
| 5397 buildUnnamed625() { | 5410 buildUnnamed1760() { |
| 5398 var o = new core.List<api.HealthCheckReference>(); | 5411 var o = new core.List<api.HealthCheckReference>(); |
| 5399 o.add(buildHealthCheckReference()); | 5412 o.add(buildHealthCheckReference()); |
| 5400 o.add(buildHealthCheckReference()); | 5413 o.add(buildHealthCheckReference()); |
| 5401 return o; | 5414 return o; |
| 5402 } | 5415 } |
| 5403 | 5416 |
| 5404 checkUnnamed625(core.List<api.HealthCheckReference> o) { | 5417 checkUnnamed1760(core.List<api.HealthCheckReference> o) { |
| 5405 unittest.expect(o, unittest.hasLength(2)); | 5418 unittest.expect(o, unittest.hasLength(2)); |
| 5406 checkHealthCheckReference(o[0]); | 5419 checkHealthCheckReference(o[0]); |
| 5407 checkHealthCheckReference(o[1]); | 5420 checkHealthCheckReference(o[1]); |
| 5408 } | 5421 } |
| 5409 | 5422 |
| 5410 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 5423 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 5411 buildTargetPoolsAddHealthCheckRequest() { | 5424 buildTargetPoolsAddHealthCheckRequest() { |
| 5412 var o = new api.TargetPoolsAddHealthCheckRequest(); | 5425 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 5413 buildCounterTargetPoolsAddHealthCheckRequest++; | 5426 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 5414 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 5427 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 5415 o.healthChecks = buildUnnamed625(); | 5428 o.healthChecks = buildUnnamed1760(); |
| 5416 } | 5429 } |
| 5417 buildCounterTargetPoolsAddHealthCheckRequest--; | 5430 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 5418 return o; | 5431 return o; |
| 5419 } | 5432 } |
| 5420 | 5433 |
| 5421 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 5434 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 5422 buildCounterTargetPoolsAddHealthCheckRequest++; | 5435 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 5423 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 5436 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 5424 checkUnnamed625(o.healthChecks); | 5437 checkUnnamed1760(o.healthChecks); |
| 5425 } | 5438 } |
| 5426 buildCounterTargetPoolsAddHealthCheckRequest--; | 5439 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 5427 } | 5440 } |
| 5428 | 5441 |
| 5429 buildUnnamed626() { | 5442 buildUnnamed1761() { |
| 5430 var o = new core.List<api.InstanceReference>(); | 5443 var o = new core.List<api.InstanceReference>(); |
| 5431 o.add(buildInstanceReference()); | 5444 o.add(buildInstanceReference()); |
| 5432 o.add(buildInstanceReference()); | 5445 o.add(buildInstanceReference()); |
| 5433 return o; | 5446 return o; |
| 5434 } | 5447 } |
| 5435 | 5448 |
| 5436 checkUnnamed626(core.List<api.InstanceReference> o) { | 5449 checkUnnamed1761(core.List<api.InstanceReference> o) { |
| 5437 unittest.expect(o, unittest.hasLength(2)); | 5450 unittest.expect(o, unittest.hasLength(2)); |
| 5438 checkInstanceReference(o[0]); | 5451 checkInstanceReference(o[0]); |
| 5439 checkInstanceReference(o[1]); | 5452 checkInstanceReference(o[1]); |
| 5440 } | 5453 } |
| 5441 | 5454 |
| 5442 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 5455 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 5443 buildTargetPoolsAddInstanceRequest() { | 5456 buildTargetPoolsAddInstanceRequest() { |
| 5444 var o = new api.TargetPoolsAddInstanceRequest(); | 5457 var o = new api.TargetPoolsAddInstanceRequest(); |
| 5445 buildCounterTargetPoolsAddInstanceRequest++; | 5458 buildCounterTargetPoolsAddInstanceRequest++; |
| 5446 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 5459 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 5447 o.instances = buildUnnamed626(); | 5460 o.instances = buildUnnamed1761(); |
| 5448 } | 5461 } |
| 5449 buildCounterTargetPoolsAddInstanceRequest--; | 5462 buildCounterTargetPoolsAddInstanceRequest--; |
| 5450 return o; | 5463 return o; |
| 5451 } | 5464 } |
| 5452 | 5465 |
| 5453 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 5466 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 5454 buildCounterTargetPoolsAddInstanceRequest++; | 5467 buildCounterTargetPoolsAddInstanceRequest++; |
| 5455 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 5468 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 5456 checkUnnamed626(o.instances); | 5469 checkUnnamed1761(o.instances); |
| 5457 } | 5470 } |
| 5458 buildCounterTargetPoolsAddInstanceRequest--; | 5471 buildCounterTargetPoolsAddInstanceRequest--; |
| 5459 } | 5472 } |
| 5460 | 5473 |
| 5461 buildUnnamed627() { | 5474 buildUnnamed1762() { |
| 5462 var o = new core.List<api.HealthCheckReference>(); | 5475 var o = new core.List<api.HealthCheckReference>(); |
| 5463 o.add(buildHealthCheckReference()); | 5476 o.add(buildHealthCheckReference()); |
| 5464 o.add(buildHealthCheckReference()); | 5477 o.add(buildHealthCheckReference()); |
| 5465 return o; | 5478 return o; |
| 5466 } | 5479 } |
| 5467 | 5480 |
| 5468 checkUnnamed627(core.List<api.HealthCheckReference> o) { | 5481 checkUnnamed1762(core.List<api.HealthCheckReference> o) { |
| 5469 unittest.expect(o, unittest.hasLength(2)); | 5482 unittest.expect(o, unittest.hasLength(2)); |
| 5470 checkHealthCheckReference(o[0]); | 5483 checkHealthCheckReference(o[0]); |
| 5471 checkHealthCheckReference(o[1]); | 5484 checkHealthCheckReference(o[1]); |
| 5472 } | 5485 } |
| 5473 | 5486 |
| 5474 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 5487 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 5475 buildTargetPoolsRemoveHealthCheckRequest() { | 5488 buildTargetPoolsRemoveHealthCheckRequest() { |
| 5476 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 5489 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 5477 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 5490 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 5478 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 5491 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 5479 o.healthChecks = buildUnnamed627(); | 5492 o.healthChecks = buildUnnamed1762(); |
| 5480 } | 5493 } |
| 5481 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 5494 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 5482 return o; | 5495 return o; |
| 5483 } | 5496 } |
| 5484 | 5497 |
| 5485 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 5498 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 5486 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 5499 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 5487 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 5500 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 5488 checkUnnamed627(o.healthChecks); | 5501 checkUnnamed1762(o.healthChecks); |
| 5489 } | 5502 } |
| 5490 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 5503 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 5491 } | 5504 } |
| 5492 | 5505 |
| 5493 buildUnnamed628() { | 5506 buildUnnamed1763() { |
| 5494 var o = new core.List<api.InstanceReference>(); | 5507 var o = new core.List<api.InstanceReference>(); |
| 5495 o.add(buildInstanceReference()); | 5508 o.add(buildInstanceReference()); |
| 5496 o.add(buildInstanceReference()); | 5509 o.add(buildInstanceReference()); |
| 5497 return o; | 5510 return o; |
| 5498 } | 5511 } |
| 5499 | 5512 |
| 5500 checkUnnamed628(core.List<api.InstanceReference> o) { | 5513 checkUnnamed1763(core.List<api.InstanceReference> o) { |
| 5501 unittest.expect(o, unittest.hasLength(2)); | 5514 unittest.expect(o, unittest.hasLength(2)); |
| 5502 checkInstanceReference(o[0]); | 5515 checkInstanceReference(o[0]); |
| 5503 checkInstanceReference(o[1]); | 5516 checkInstanceReference(o[1]); |
| 5504 } | 5517 } |
| 5505 | 5518 |
| 5506 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 5519 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 5507 buildTargetPoolsRemoveInstanceRequest() { | 5520 buildTargetPoolsRemoveInstanceRequest() { |
| 5508 var o = new api.TargetPoolsRemoveInstanceRequest(); | 5521 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 5509 buildCounterTargetPoolsRemoveInstanceRequest++; | 5522 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 5510 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 5523 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 5511 o.instances = buildUnnamed628(); | 5524 o.instances = buildUnnamed1763(); |
| 5512 } | 5525 } |
| 5513 buildCounterTargetPoolsRemoveInstanceRequest--; | 5526 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 5514 return o; | 5527 return o; |
| 5515 } | 5528 } |
| 5516 | 5529 |
| 5517 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 5530 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 5518 buildCounterTargetPoolsRemoveInstanceRequest++; | 5531 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 5519 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 5532 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 5520 checkUnnamed628(o.instances); | 5533 checkUnnamed1763(o.instances); |
| 5521 } | 5534 } |
| 5522 buildCounterTargetPoolsRemoveInstanceRequest--; | 5535 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 5523 } | 5536 } |
| 5524 | 5537 |
| 5525 buildUnnamed629() { | 5538 buildUnnamed1764() { |
| 5526 var o = new core.List<api.TargetPool>(); | 5539 var o = new core.List<api.TargetPool>(); |
| 5527 o.add(buildTargetPool()); | 5540 o.add(buildTargetPool()); |
| 5528 o.add(buildTargetPool()); | 5541 o.add(buildTargetPool()); |
| 5529 return o; | 5542 return o; |
| 5530 } | 5543 } |
| 5531 | 5544 |
| 5532 checkUnnamed629(core.List<api.TargetPool> o) { | 5545 checkUnnamed1764(core.List<api.TargetPool> o) { |
| 5533 unittest.expect(o, unittest.hasLength(2)); | 5546 unittest.expect(o, unittest.hasLength(2)); |
| 5534 checkTargetPool(o[0]); | 5547 checkTargetPool(o[0]); |
| 5535 checkTargetPool(o[1]); | 5548 checkTargetPool(o[1]); |
| 5536 } | 5549 } |
| 5537 | 5550 |
| 5538 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 5551 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 5539 buildTargetPoolsScopedListWarningData() { | 5552 buildTargetPoolsScopedListWarningData() { |
| 5540 var o = new api.TargetPoolsScopedListWarningData(); | 5553 var o = new api.TargetPoolsScopedListWarningData(); |
| 5541 buildCounterTargetPoolsScopedListWarningData++; | 5554 buildCounterTargetPoolsScopedListWarningData++; |
| 5542 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 5555 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 5543 o.key = "foo"; | 5556 o.key = "foo"; |
| 5544 o.value = "foo"; | 5557 o.value = "foo"; |
| 5545 } | 5558 } |
| 5546 buildCounterTargetPoolsScopedListWarningData--; | 5559 buildCounterTargetPoolsScopedListWarningData--; |
| 5547 return o; | 5560 return o; |
| 5548 } | 5561 } |
| 5549 | 5562 |
| 5550 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 5563 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 5551 buildCounterTargetPoolsScopedListWarningData++; | 5564 buildCounterTargetPoolsScopedListWarningData++; |
| 5552 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 5565 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 5553 unittest.expect(o.key, unittest.equals('foo')); | 5566 unittest.expect(o.key, unittest.equals('foo')); |
| 5554 unittest.expect(o.value, unittest.equals('foo')); | 5567 unittest.expect(o.value, unittest.equals('foo')); |
| 5555 } | 5568 } |
| 5556 buildCounterTargetPoolsScopedListWarningData--; | 5569 buildCounterTargetPoolsScopedListWarningData--; |
| 5557 } | 5570 } |
| 5558 | 5571 |
| 5559 buildUnnamed630() { | 5572 buildUnnamed1765() { |
| 5560 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 5573 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 5561 o.add(buildTargetPoolsScopedListWarningData()); | 5574 o.add(buildTargetPoolsScopedListWarningData()); |
| 5562 o.add(buildTargetPoolsScopedListWarningData()); | 5575 o.add(buildTargetPoolsScopedListWarningData()); |
| 5563 return o; | 5576 return o; |
| 5564 } | 5577 } |
| 5565 | 5578 |
| 5566 checkUnnamed630(core.List<api.TargetPoolsScopedListWarningData> o) { | 5579 checkUnnamed1765(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 5567 unittest.expect(o, unittest.hasLength(2)); | 5580 unittest.expect(o, unittest.hasLength(2)); |
| 5568 checkTargetPoolsScopedListWarningData(o[0]); | 5581 checkTargetPoolsScopedListWarningData(o[0]); |
| 5569 checkTargetPoolsScopedListWarningData(o[1]); | 5582 checkTargetPoolsScopedListWarningData(o[1]); |
| 5570 } | 5583 } |
| 5571 | 5584 |
| 5572 core.int buildCounterTargetPoolsScopedListWarning = 0; | 5585 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 5573 buildTargetPoolsScopedListWarning() { | 5586 buildTargetPoolsScopedListWarning() { |
| 5574 var o = new api.TargetPoolsScopedListWarning(); | 5587 var o = new api.TargetPoolsScopedListWarning(); |
| 5575 buildCounterTargetPoolsScopedListWarning++; | 5588 buildCounterTargetPoolsScopedListWarning++; |
| 5576 if (buildCounterTargetPoolsScopedListWarning < 3) { | 5589 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 5577 o.code = "foo"; | 5590 o.code = "foo"; |
| 5578 o.data = buildUnnamed630(); | 5591 o.data = buildUnnamed1765(); |
| 5579 o.message = "foo"; | 5592 o.message = "foo"; |
| 5580 } | 5593 } |
| 5581 buildCounterTargetPoolsScopedListWarning--; | 5594 buildCounterTargetPoolsScopedListWarning--; |
| 5582 return o; | 5595 return o; |
| 5583 } | 5596 } |
| 5584 | 5597 |
| 5585 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 5598 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 5586 buildCounterTargetPoolsScopedListWarning++; | 5599 buildCounterTargetPoolsScopedListWarning++; |
| 5587 if (buildCounterTargetPoolsScopedListWarning < 3) { | 5600 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 5588 unittest.expect(o.code, unittest.equals('foo')); | 5601 unittest.expect(o.code, unittest.equals('foo')); |
| 5589 checkUnnamed630(o.data); | 5602 checkUnnamed1765(o.data); |
| 5590 unittest.expect(o.message, unittest.equals('foo')); | 5603 unittest.expect(o.message, unittest.equals('foo')); |
| 5591 } | 5604 } |
| 5592 buildCounterTargetPoolsScopedListWarning--; | 5605 buildCounterTargetPoolsScopedListWarning--; |
| 5593 } | 5606 } |
| 5594 | 5607 |
| 5595 core.int buildCounterTargetPoolsScopedList = 0; | 5608 core.int buildCounterTargetPoolsScopedList = 0; |
| 5596 buildTargetPoolsScopedList() { | 5609 buildTargetPoolsScopedList() { |
| 5597 var o = new api.TargetPoolsScopedList(); | 5610 var o = new api.TargetPoolsScopedList(); |
| 5598 buildCounterTargetPoolsScopedList++; | 5611 buildCounterTargetPoolsScopedList++; |
| 5599 if (buildCounterTargetPoolsScopedList < 3) { | 5612 if (buildCounterTargetPoolsScopedList < 3) { |
| 5600 o.targetPools = buildUnnamed629(); | 5613 o.targetPools = buildUnnamed1764(); |
| 5601 o.warning = buildTargetPoolsScopedListWarning(); | 5614 o.warning = buildTargetPoolsScopedListWarning(); |
| 5602 } | 5615 } |
| 5603 buildCounterTargetPoolsScopedList--; | 5616 buildCounterTargetPoolsScopedList--; |
| 5604 return o; | 5617 return o; |
| 5605 } | 5618 } |
| 5606 | 5619 |
| 5607 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 5620 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 5608 buildCounterTargetPoolsScopedList++; | 5621 buildCounterTargetPoolsScopedList++; |
| 5609 if (buildCounterTargetPoolsScopedList < 3) { | 5622 if (buildCounterTargetPoolsScopedList < 3) { |
| 5610 checkUnnamed629(o.targetPools); | 5623 checkUnnamed1764(o.targetPools); |
| 5611 checkTargetPoolsScopedListWarning(o.warning); | 5624 checkTargetPoolsScopedListWarning(o.warning); |
| 5612 } | 5625 } |
| 5613 buildCounterTargetPoolsScopedList--; | 5626 buildCounterTargetPoolsScopedList--; |
| 5614 } | 5627 } |
| 5615 | 5628 |
| 5616 core.int buildCounterTargetReference = 0; | 5629 core.int buildCounterTargetReference = 0; |
| 5617 buildTargetReference() { | 5630 buildTargetReference() { |
| 5618 var o = new api.TargetReference(); | 5631 var o = new api.TargetReference(); |
| 5619 buildCounterTargetReference++; | 5632 buildCounterTargetReference++; |
| 5620 if (buildCounterTargetReference < 3) { | 5633 if (buildCounterTargetReference < 3) { |
| 5621 o.target = "foo"; | 5634 o.target = "foo"; |
| 5622 } | 5635 } |
| 5623 buildCounterTargetReference--; | 5636 buildCounterTargetReference--; |
| 5624 return o; | 5637 return o; |
| 5625 } | 5638 } |
| 5626 | 5639 |
| 5627 checkTargetReference(api.TargetReference o) { | 5640 checkTargetReference(api.TargetReference o) { |
| 5628 buildCounterTargetReference++; | 5641 buildCounterTargetReference++; |
| 5629 if (buildCounterTargetReference < 3) { | 5642 if (buildCounterTargetReference < 3) { |
| 5630 unittest.expect(o.target, unittest.equals('foo')); | 5643 unittest.expect(o.target, unittest.equals('foo')); |
| 5631 } | 5644 } |
| 5632 buildCounterTargetReference--; | 5645 buildCounterTargetReference--; |
| 5633 } | 5646 } |
| 5634 | 5647 |
| 5635 buildUnnamed631() { | 5648 buildUnnamed1766() { |
| 5636 var o = new core.List<core.String>(); | 5649 var o = new core.List<core.String>(); |
| 5637 o.add("foo"); | 5650 o.add("foo"); |
| 5638 o.add("foo"); | 5651 o.add("foo"); |
| 5639 return o; | 5652 return o; |
| 5640 } | 5653 } |
| 5641 | 5654 |
| 5642 checkUnnamed631(core.List<core.String> o) { | 5655 checkUnnamed1766(core.List<core.String> o) { |
| 5643 unittest.expect(o, unittest.hasLength(2)); | 5656 unittest.expect(o, unittest.hasLength(2)); |
| 5644 unittest.expect(o[0], unittest.equals('foo')); | 5657 unittest.expect(o[0], unittest.equals('foo')); |
| 5645 unittest.expect(o[1], unittest.equals('foo')); | 5658 unittest.expect(o[1], unittest.equals('foo')); |
| 5646 } | 5659 } |
| 5647 | 5660 |
| 5648 buildUnnamed632() { | 5661 buildUnnamed1767() { |
| 5649 var o = new core.List<core.String>(); | 5662 var o = new core.List<core.String>(); |
| 5650 o.add("foo"); | 5663 o.add("foo"); |
| 5651 o.add("foo"); | 5664 o.add("foo"); |
| 5652 return o; | 5665 return o; |
| 5653 } | 5666 } |
| 5654 | 5667 |
| 5655 checkUnnamed632(core.List<core.String> o) { | 5668 checkUnnamed1767(core.List<core.String> o) { |
| 5656 unittest.expect(o, unittest.hasLength(2)); | 5669 unittest.expect(o, unittest.hasLength(2)); |
| 5657 unittest.expect(o[0], unittest.equals('foo')); | 5670 unittest.expect(o[0], unittest.equals('foo')); |
| 5658 unittest.expect(o[1], unittest.equals('foo')); | 5671 unittest.expect(o[1], unittest.equals('foo')); |
| 5659 } | 5672 } |
| 5660 | 5673 |
| 5661 core.int buildCounterTargetVpnGateway = 0; | 5674 core.int buildCounterTargetVpnGateway = 0; |
| 5662 buildTargetVpnGateway() { | 5675 buildTargetVpnGateway() { |
| 5663 var o = new api.TargetVpnGateway(); | 5676 var o = new api.TargetVpnGateway(); |
| 5664 buildCounterTargetVpnGateway++; | 5677 buildCounterTargetVpnGateway++; |
| 5665 if (buildCounterTargetVpnGateway < 3) { | 5678 if (buildCounterTargetVpnGateway < 3) { |
| 5666 o.creationTimestamp = "foo"; | 5679 o.creationTimestamp = "foo"; |
| 5667 o.description = "foo"; | 5680 o.description = "foo"; |
| 5668 o.forwardingRules = buildUnnamed631(); | 5681 o.forwardingRules = buildUnnamed1766(); |
| 5669 o.id = "foo"; | 5682 o.id = "foo"; |
| 5670 o.kind = "foo"; | 5683 o.kind = "foo"; |
| 5671 o.name = "foo"; | 5684 o.name = "foo"; |
| 5672 o.network = "foo"; | 5685 o.network = "foo"; |
| 5673 o.region = "foo"; | 5686 o.region = "foo"; |
| 5674 o.selfLink = "foo"; | 5687 o.selfLink = "foo"; |
| 5675 o.status = "foo"; | 5688 o.status = "foo"; |
| 5676 o.tunnels = buildUnnamed632(); | 5689 o.tunnels = buildUnnamed1767(); |
| 5677 } | 5690 } |
| 5678 buildCounterTargetVpnGateway--; | 5691 buildCounterTargetVpnGateway--; |
| 5679 return o; | 5692 return o; |
| 5680 } | 5693 } |
| 5681 | 5694 |
| 5682 checkTargetVpnGateway(api.TargetVpnGateway o) { | 5695 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 5683 buildCounterTargetVpnGateway++; | 5696 buildCounterTargetVpnGateway++; |
| 5684 if (buildCounterTargetVpnGateway < 3) { | 5697 if (buildCounterTargetVpnGateway < 3) { |
| 5685 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5698 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5686 unittest.expect(o.description, unittest.equals('foo')); | 5699 unittest.expect(o.description, unittest.equals('foo')); |
| 5687 checkUnnamed631(o.forwardingRules); | 5700 checkUnnamed1766(o.forwardingRules); |
| 5688 unittest.expect(o.id, unittest.equals('foo')); | 5701 unittest.expect(o.id, unittest.equals('foo')); |
| 5689 unittest.expect(o.kind, unittest.equals('foo')); | 5702 unittest.expect(o.kind, unittest.equals('foo')); |
| 5690 unittest.expect(o.name, unittest.equals('foo')); | 5703 unittest.expect(o.name, unittest.equals('foo')); |
| 5691 unittest.expect(o.network, unittest.equals('foo')); | 5704 unittest.expect(o.network, unittest.equals('foo')); |
| 5692 unittest.expect(o.region, unittest.equals('foo')); | 5705 unittest.expect(o.region, unittest.equals('foo')); |
| 5693 unittest.expect(o.selfLink, unittest.equals('foo')); | 5706 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5694 unittest.expect(o.status, unittest.equals('foo')); | 5707 unittest.expect(o.status, unittest.equals('foo')); |
| 5695 checkUnnamed632(o.tunnels); | 5708 checkUnnamed1767(o.tunnels); |
| 5696 } | 5709 } |
| 5697 buildCounterTargetVpnGateway--; | 5710 buildCounterTargetVpnGateway--; |
| 5698 } | 5711 } |
| 5699 | 5712 |
| 5700 buildUnnamed633() { | 5713 buildUnnamed1768() { |
| 5701 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 5714 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 5702 o["x"] = buildTargetVpnGatewaysScopedList(); | 5715 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 5703 o["y"] = buildTargetVpnGatewaysScopedList(); | 5716 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 5704 return o; | 5717 return o; |
| 5705 } | 5718 } |
| 5706 | 5719 |
| 5707 checkUnnamed633(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 5720 checkUnnamed1768(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 5708 unittest.expect(o, unittest.hasLength(2)); | 5721 unittest.expect(o, unittest.hasLength(2)); |
| 5709 checkTargetVpnGatewaysScopedList(o["x"]); | 5722 checkTargetVpnGatewaysScopedList(o["x"]); |
| 5710 checkTargetVpnGatewaysScopedList(o["y"]); | 5723 checkTargetVpnGatewaysScopedList(o["y"]); |
| 5711 } | 5724 } |
| 5712 | 5725 |
| 5713 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 5726 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 5714 buildTargetVpnGatewayAggregatedList() { | 5727 buildTargetVpnGatewayAggregatedList() { |
| 5715 var o = new api.TargetVpnGatewayAggregatedList(); | 5728 var o = new api.TargetVpnGatewayAggregatedList(); |
| 5716 buildCounterTargetVpnGatewayAggregatedList++; | 5729 buildCounterTargetVpnGatewayAggregatedList++; |
| 5717 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 5730 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 5718 o.id = "foo"; | 5731 o.id = "foo"; |
| 5719 o.items = buildUnnamed633(); | 5732 o.items = buildUnnamed1768(); |
| 5720 o.kind = "foo"; | 5733 o.kind = "foo"; |
| 5721 o.nextPageToken = "foo"; | 5734 o.nextPageToken = "foo"; |
| 5722 o.selfLink = "foo"; | 5735 o.selfLink = "foo"; |
| 5723 } | 5736 } |
| 5724 buildCounterTargetVpnGatewayAggregatedList--; | 5737 buildCounterTargetVpnGatewayAggregatedList--; |
| 5725 return o; | 5738 return o; |
| 5726 } | 5739 } |
| 5727 | 5740 |
| 5728 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 5741 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 5729 buildCounterTargetVpnGatewayAggregatedList++; | 5742 buildCounterTargetVpnGatewayAggregatedList++; |
| 5730 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 5743 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 5731 unittest.expect(o.id, unittest.equals('foo')); | 5744 unittest.expect(o.id, unittest.equals('foo')); |
| 5732 checkUnnamed633(o.items); | 5745 checkUnnamed1768(o.items); |
| 5733 unittest.expect(o.kind, unittest.equals('foo')); | 5746 unittest.expect(o.kind, unittest.equals('foo')); |
| 5734 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5747 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5735 unittest.expect(o.selfLink, unittest.equals('foo')); | 5748 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5736 } | 5749 } |
| 5737 buildCounterTargetVpnGatewayAggregatedList--; | 5750 buildCounterTargetVpnGatewayAggregatedList--; |
| 5738 } | 5751 } |
| 5739 | 5752 |
| 5740 buildUnnamed634() { | 5753 buildUnnamed1769() { |
| 5741 var o = new core.List<api.TargetVpnGateway>(); | 5754 var o = new core.List<api.TargetVpnGateway>(); |
| 5742 o.add(buildTargetVpnGateway()); | 5755 o.add(buildTargetVpnGateway()); |
| 5743 o.add(buildTargetVpnGateway()); | 5756 o.add(buildTargetVpnGateway()); |
| 5744 return o; | 5757 return o; |
| 5745 } | 5758 } |
| 5746 | 5759 |
| 5747 checkUnnamed634(core.List<api.TargetVpnGateway> o) { | 5760 checkUnnamed1769(core.List<api.TargetVpnGateway> o) { |
| 5748 unittest.expect(o, unittest.hasLength(2)); | 5761 unittest.expect(o, unittest.hasLength(2)); |
| 5749 checkTargetVpnGateway(o[0]); | 5762 checkTargetVpnGateway(o[0]); |
| 5750 checkTargetVpnGateway(o[1]); | 5763 checkTargetVpnGateway(o[1]); |
| 5751 } | 5764 } |
| 5752 | 5765 |
| 5753 core.int buildCounterTargetVpnGatewayList = 0; | 5766 core.int buildCounterTargetVpnGatewayList = 0; |
| 5754 buildTargetVpnGatewayList() { | 5767 buildTargetVpnGatewayList() { |
| 5755 var o = new api.TargetVpnGatewayList(); | 5768 var o = new api.TargetVpnGatewayList(); |
| 5756 buildCounterTargetVpnGatewayList++; | 5769 buildCounterTargetVpnGatewayList++; |
| 5757 if (buildCounterTargetVpnGatewayList < 3) { | 5770 if (buildCounterTargetVpnGatewayList < 3) { |
| 5758 o.id = "foo"; | 5771 o.id = "foo"; |
| 5759 o.items = buildUnnamed634(); | 5772 o.items = buildUnnamed1769(); |
| 5760 o.kind = "foo"; | 5773 o.kind = "foo"; |
| 5761 o.nextPageToken = "foo"; | 5774 o.nextPageToken = "foo"; |
| 5762 o.selfLink = "foo"; | 5775 o.selfLink = "foo"; |
| 5763 } | 5776 } |
| 5764 buildCounterTargetVpnGatewayList--; | 5777 buildCounterTargetVpnGatewayList--; |
| 5765 return o; | 5778 return o; |
| 5766 } | 5779 } |
| 5767 | 5780 |
| 5768 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 5781 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 5769 buildCounterTargetVpnGatewayList++; | 5782 buildCounterTargetVpnGatewayList++; |
| 5770 if (buildCounterTargetVpnGatewayList < 3) { | 5783 if (buildCounterTargetVpnGatewayList < 3) { |
| 5771 unittest.expect(o.id, unittest.equals('foo')); | 5784 unittest.expect(o.id, unittest.equals('foo')); |
| 5772 checkUnnamed634(o.items); | 5785 checkUnnamed1769(o.items); |
| 5773 unittest.expect(o.kind, unittest.equals('foo')); | 5786 unittest.expect(o.kind, unittest.equals('foo')); |
| 5774 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5787 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5775 unittest.expect(o.selfLink, unittest.equals('foo')); | 5788 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5776 } | 5789 } |
| 5777 buildCounterTargetVpnGatewayList--; | 5790 buildCounterTargetVpnGatewayList--; |
| 5778 } | 5791 } |
| 5779 | 5792 |
| 5780 buildUnnamed635() { | 5793 buildUnnamed1770() { |
| 5781 var o = new core.List<api.TargetVpnGateway>(); | 5794 var o = new core.List<api.TargetVpnGateway>(); |
| 5782 o.add(buildTargetVpnGateway()); | 5795 o.add(buildTargetVpnGateway()); |
| 5783 o.add(buildTargetVpnGateway()); | 5796 o.add(buildTargetVpnGateway()); |
| 5784 return o; | 5797 return o; |
| 5785 } | 5798 } |
| 5786 | 5799 |
| 5787 checkUnnamed635(core.List<api.TargetVpnGateway> o) { | 5800 checkUnnamed1770(core.List<api.TargetVpnGateway> o) { |
| 5788 unittest.expect(o, unittest.hasLength(2)); | 5801 unittest.expect(o, unittest.hasLength(2)); |
| 5789 checkTargetVpnGateway(o[0]); | 5802 checkTargetVpnGateway(o[0]); |
| 5790 checkTargetVpnGateway(o[1]); | 5803 checkTargetVpnGateway(o[1]); |
| 5791 } | 5804 } |
| 5792 | 5805 |
| 5793 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 5806 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 5794 buildTargetVpnGatewaysScopedListWarningData() { | 5807 buildTargetVpnGatewaysScopedListWarningData() { |
| 5795 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 5808 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 5796 buildCounterTargetVpnGatewaysScopedListWarningData++; | 5809 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 5797 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 5810 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 5798 o.key = "foo"; | 5811 o.key = "foo"; |
| 5799 o.value = "foo"; | 5812 o.value = "foo"; |
| 5800 } | 5813 } |
| 5801 buildCounterTargetVpnGatewaysScopedListWarningData--; | 5814 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 5802 return o; | 5815 return o; |
| 5803 } | 5816 } |
| 5804 | 5817 |
| 5805 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 5818 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 5806 buildCounterTargetVpnGatewaysScopedListWarningData++; | 5819 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 5807 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 5820 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 5808 unittest.expect(o.key, unittest.equals('foo')); | 5821 unittest.expect(o.key, unittest.equals('foo')); |
| 5809 unittest.expect(o.value, unittest.equals('foo')); | 5822 unittest.expect(o.value, unittest.equals('foo')); |
| 5810 } | 5823 } |
| 5811 buildCounterTargetVpnGatewaysScopedListWarningData--; | 5824 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 5812 } | 5825 } |
| 5813 | 5826 |
| 5814 buildUnnamed636() { | 5827 buildUnnamed1771() { |
| 5815 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 5828 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 5816 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 5829 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 5817 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 5830 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 5818 return o; | 5831 return o; |
| 5819 } | 5832 } |
| 5820 | 5833 |
| 5821 checkUnnamed636(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 5834 checkUnnamed1771(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 5822 unittest.expect(o, unittest.hasLength(2)); | 5835 unittest.expect(o, unittest.hasLength(2)); |
| 5823 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 5836 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 5824 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 5837 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 5825 } | 5838 } |
| 5826 | 5839 |
| 5827 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 5840 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 5828 buildTargetVpnGatewaysScopedListWarning() { | 5841 buildTargetVpnGatewaysScopedListWarning() { |
| 5829 var o = new api.TargetVpnGatewaysScopedListWarning(); | 5842 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 5830 buildCounterTargetVpnGatewaysScopedListWarning++; | 5843 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 5831 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 5844 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 5832 o.code = "foo"; | 5845 o.code = "foo"; |
| 5833 o.data = buildUnnamed636(); | 5846 o.data = buildUnnamed1771(); |
| 5834 o.message = "foo"; | 5847 o.message = "foo"; |
| 5835 } | 5848 } |
| 5836 buildCounterTargetVpnGatewaysScopedListWarning--; | 5849 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 5837 return o; | 5850 return o; |
| 5838 } | 5851 } |
| 5839 | 5852 |
| 5840 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 5853 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 5841 buildCounterTargetVpnGatewaysScopedListWarning++; | 5854 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 5842 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 5855 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 5843 unittest.expect(o.code, unittest.equals('foo')); | 5856 unittest.expect(o.code, unittest.equals('foo')); |
| 5844 checkUnnamed636(o.data); | 5857 checkUnnamed1771(o.data); |
| 5845 unittest.expect(o.message, unittest.equals('foo')); | 5858 unittest.expect(o.message, unittest.equals('foo')); |
| 5846 } | 5859 } |
| 5847 buildCounterTargetVpnGatewaysScopedListWarning--; | 5860 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 5848 } | 5861 } |
| 5849 | 5862 |
| 5850 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 5863 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 5851 buildTargetVpnGatewaysScopedList() { | 5864 buildTargetVpnGatewaysScopedList() { |
| 5852 var o = new api.TargetVpnGatewaysScopedList(); | 5865 var o = new api.TargetVpnGatewaysScopedList(); |
| 5853 buildCounterTargetVpnGatewaysScopedList++; | 5866 buildCounterTargetVpnGatewaysScopedList++; |
| 5854 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 5867 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 5855 o.targetVpnGateways = buildUnnamed635(); | 5868 o.targetVpnGateways = buildUnnamed1770(); |
| 5856 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 5869 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 5857 } | 5870 } |
| 5858 buildCounterTargetVpnGatewaysScopedList--; | 5871 buildCounterTargetVpnGatewaysScopedList--; |
| 5859 return o; | 5872 return o; |
| 5860 } | 5873 } |
| 5861 | 5874 |
| 5862 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 5875 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 5863 buildCounterTargetVpnGatewaysScopedList++; | 5876 buildCounterTargetVpnGatewaysScopedList++; |
| 5864 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 5877 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 5865 checkUnnamed635(o.targetVpnGateways); | 5878 checkUnnamed1770(o.targetVpnGateways); |
| 5866 checkTargetVpnGatewaysScopedListWarning(o.warning); | 5879 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 5867 } | 5880 } |
| 5868 buildCounterTargetVpnGatewaysScopedList--; | 5881 buildCounterTargetVpnGatewaysScopedList--; |
| 5869 } | 5882 } |
| 5870 | 5883 |
| 5871 core.int buildCounterTestFailure = 0; | 5884 core.int buildCounterTestFailure = 0; |
| 5872 buildTestFailure() { | 5885 buildTestFailure() { |
| 5873 var o = new api.TestFailure(); | 5886 var o = new api.TestFailure(); |
| 5874 buildCounterTestFailure++; | 5887 buildCounterTestFailure++; |
| 5875 if (buildCounterTestFailure < 3) { | 5888 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5886 buildCounterTestFailure++; | 5899 buildCounterTestFailure++; |
| 5887 if (buildCounterTestFailure < 3) { | 5900 if (buildCounterTestFailure < 3) { |
| 5888 unittest.expect(o.actualService, unittest.equals('foo')); | 5901 unittest.expect(o.actualService, unittest.equals('foo')); |
| 5889 unittest.expect(o.expectedService, unittest.equals('foo')); | 5902 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 5890 unittest.expect(o.host, unittest.equals('foo')); | 5903 unittest.expect(o.host, unittest.equals('foo')); |
| 5891 unittest.expect(o.path, unittest.equals('foo')); | 5904 unittest.expect(o.path, unittest.equals('foo')); |
| 5892 } | 5905 } |
| 5893 buildCounterTestFailure--; | 5906 buildCounterTestFailure--; |
| 5894 } | 5907 } |
| 5895 | 5908 |
| 5896 buildUnnamed637() { | 5909 buildUnnamed1772() { |
| 5897 var o = new core.List<api.HostRule>(); | 5910 var o = new core.List<api.HostRule>(); |
| 5898 o.add(buildHostRule()); | 5911 o.add(buildHostRule()); |
| 5899 o.add(buildHostRule()); | 5912 o.add(buildHostRule()); |
| 5900 return o; | 5913 return o; |
| 5901 } | 5914 } |
| 5902 | 5915 |
| 5903 checkUnnamed637(core.List<api.HostRule> o) { | 5916 checkUnnamed1772(core.List<api.HostRule> o) { |
| 5904 unittest.expect(o, unittest.hasLength(2)); | 5917 unittest.expect(o, unittest.hasLength(2)); |
| 5905 checkHostRule(o[0]); | 5918 checkHostRule(o[0]); |
| 5906 checkHostRule(o[1]); | 5919 checkHostRule(o[1]); |
| 5907 } | 5920 } |
| 5908 | 5921 |
| 5909 buildUnnamed638() { | 5922 buildUnnamed1773() { |
| 5910 var o = new core.List<api.PathMatcher>(); | 5923 var o = new core.List<api.PathMatcher>(); |
| 5911 o.add(buildPathMatcher()); | 5924 o.add(buildPathMatcher()); |
| 5912 o.add(buildPathMatcher()); | 5925 o.add(buildPathMatcher()); |
| 5913 return o; | 5926 return o; |
| 5914 } | 5927 } |
| 5915 | 5928 |
| 5916 checkUnnamed638(core.List<api.PathMatcher> o) { | 5929 checkUnnamed1773(core.List<api.PathMatcher> o) { |
| 5917 unittest.expect(o, unittest.hasLength(2)); | 5930 unittest.expect(o, unittest.hasLength(2)); |
| 5918 checkPathMatcher(o[0]); | 5931 checkPathMatcher(o[0]); |
| 5919 checkPathMatcher(o[1]); | 5932 checkPathMatcher(o[1]); |
| 5920 } | 5933 } |
| 5921 | 5934 |
| 5922 buildUnnamed639() { | 5935 buildUnnamed1774() { |
| 5923 var o = new core.List<api.UrlMapTest>(); | 5936 var o = new core.List<api.UrlMapTest>(); |
| 5924 o.add(buildUrlMapTest()); | 5937 o.add(buildUrlMapTest()); |
| 5925 o.add(buildUrlMapTest()); | 5938 o.add(buildUrlMapTest()); |
| 5926 return o; | 5939 return o; |
| 5927 } | 5940 } |
| 5928 | 5941 |
| 5929 checkUnnamed639(core.List<api.UrlMapTest> o) { | 5942 checkUnnamed1774(core.List<api.UrlMapTest> o) { |
| 5930 unittest.expect(o, unittest.hasLength(2)); | 5943 unittest.expect(o, unittest.hasLength(2)); |
| 5931 checkUrlMapTest(o[0]); | 5944 checkUrlMapTest(o[0]); |
| 5932 checkUrlMapTest(o[1]); | 5945 checkUrlMapTest(o[1]); |
| 5933 } | 5946 } |
| 5934 | 5947 |
| 5935 core.int buildCounterUrlMap = 0; | 5948 core.int buildCounterUrlMap = 0; |
| 5936 buildUrlMap() { | 5949 buildUrlMap() { |
| 5937 var o = new api.UrlMap(); | 5950 var o = new api.UrlMap(); |
| 5938 buildCounterUrlMap++; | 5951 buildCounterUrlMap++; |
| 5939 if (buildCounterUrlMap < 3) { | 5952 if (buildCounterUrlMap < 3) { |
| 5940 o.creationTimestamp = "foo"; | 5953 o.creationTimestamp = "foo"; |
| 5941 o.defaultService = "foo"; | 5954 o.defaultService = "foo"; |
| 5942 o.description = "foo"; | 5955 o.description = "foo"; |
| 5943 o.fingerprint = "foo"; | 5956 o.fingerprint = "foo"; |
| 5944 o.hostRules = buildUnnamed637(); | 5957 o.hostRules = buildUnnamed1772(); |
| 5945 o.id = "foo"; | 5958 o.id = "foo"; |
| 5946 o.kind = "foo"; | 5959 o.kind = "foo"; |
| 5947 o.name = "foo"; | 5960 o.name = "foo"; |
| 5948 o.pathMatchers = buildUnnamed638(); | 5961 o.pathMatchers = buildUnnamed1773(); |
| 5949 o.selfLink = "foo"; | 5962 o.selfLink = "foo"; |
| 5950 o.tests = buildUnnamed639(); | 5963 o.tests = buildUnnamed1774(); |
| 5951 } | 5964 } |
| 5952 buildCounterUrlMap--; | 5965 buildCounterUrlMap--; |
| 5953 return o; | 5966 return o; |
| 5954 } | 5967 } |
| 5955 | 5968 |
| 5956 checkUrlMap(api.UrlMap o) { | 5969 checkUrlMap(api.UrlMap o) { |
| 5957 buildCounterUrlMap++; | 5970 buildCounterUrlMap++; |
| 5958 if (buildCounterUrlMap < 3) { | 5971 if (buildCounterUrlMap < 3) { |
| 5959 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5972 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5960 unittest.expect(o.defaultService, unittest.equals('foo')); | 5973 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 5961 unittest.expect(o.description, unittest.equals('foo')); | 5974 unittest.expect(o.description, unittest.equals('foo')); |
| 5962 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5975 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5963 checkUnnamed637(o.hostRules); | 5976 checkUnnamed1772(o.hostRules); |
| 5964 unittest.expect(o.id, unittest.equals('foo')); | 5977 unittest.expect(o.id, unittest.equals('foo')); |
| 5965 unittest.expect(o.kind, unittest.equals('foo')); | 5978 unittest.expect(o.kind, unittest.equals('foo')); |
| 5966 unittest.expect(o.name, unittest.equals('foo')); | 5979 unittest.expect(o.name, unittest.equals('foo')); |
| 5967 checkUnnamed638(o.pathMatchers); | 5980 checkUnnamed1773(o.pathMatchers); |
| 5968 unittest.expect(o.selfLink, unittest.equals('foo')); | 5981 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5969 checkUnnamed639(o.tests); | 5982 checkUnnamed1774(o.tests); |
| 5970 } | 5983 } |
| 5971 buildCounterUrlMap--; | 5984 buildCounterUrlMap--; |
| 5972 } | 5985 } |
| 5973 | 5986 |
| 5974 buildUnnamed640() { | 5987 buildUnnamed1775() { |
| 5975 var o = new core.List<api.UrlMap>(); | 5988 var o = new core.List<api.UrlMap>(); |
| 5976 o.add(buildUrlMap()); | 5989 o.add(buildUrlMap()); |
| 5977 o.add(buildUrlMap()); | 5990 o.add(buildUrlMap()); |
| 5978 return o; | 5991 return o; |
| 5979 } | 5992 } |
| 5980 | 5993 |
| 5981 checkUnnamed640(core.List<api.UrlMap> o) { | 5994 checkUnnamed1775(core.List<api.UrlMap> o) { |
| 5982 unittest.expect(o, unittest.hasLength(2)); | 5995 unittest.expect(o, unittest.hasLength(2)); |
| 5983 checkUrlMap(o[0]); | 5996 checkUrlMap(o[0]); |
| 5984 checkUrlMap(o[1]); | 5997 checkUrlMap(o[1]); |
| 5985 } | 5998 } |
| 5986 | 5999 |
| 5987 core.int buildCounterUrlMapList = 0; | 6000 core.int buildCounterUrlMapList = 0; |
| 5988 buildUrlMapList() { | 6001 buildUrlMapList() { |
| 5989 var o = new api.UrlMapList(); | 6002 var o = new api.UrlMapList(); |
| 5990 buildCounterUrlMapList++; | 6003 buildCounterUrlMapList++; |
| 5991 if (buildCounterUrlMapList < 3) { | 6004 if (buildCounterUrlMapList < 3) { |
| 5992 o.id = "foo"; | 6005 o.id = "foo"; |
| 5993 o.items = buildUnnamed640(); | 6006 o.items = buildUnnamed1775(); |
| 5994 o.kind = "foo"; | 6007 o.kind = "foo"; |
| 5995 o.nextPageToken = "foo"; | 6008 o.nextPageToken = "foo"; |
| 5996 o.selfLink = "foo"; | 6009 o.selfLink = "foo"; |
| 5997 } | 6010 } |
| 5998 buildCounterUrlMapList--; | 6011 buildCounterUrlMapList--; |
| 5999 return o; | 6012 return o; |
| 6000 } | 6013 } |
| 6001 | 6014 |
| 6002 checkUrlMapList(api.UrlMapList o) { | 6015 checkUrlMapList(api.UrlMapList o) { |
| 6003 buildCounterUrlMapList++; | 6016 buildCounterUrlMapList++; |
| 6004 if (buildCounterUrlMapList < 3) { | 6017 if (buildCounterUrlMapList < 3) { |
| 6005 unittest.expect(o.id, unittest.equals('foo')); | 6018 unittest.expect(o.id, unittest.equals('foo')); |
| 6006 checkUnnamed640(o.items); | 6019 checkUnnamed1775(o.items); |
| 6007 unittest.expect(o.kind, unittest.equals('foo')); | 6020 unittest.expect(o.kind, unittest.equals('foo')); |
| 6008 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6021 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6009 unittest.expect(o.selfLink, unittest.equals('foo')); | 6022 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6010 } | 6023 } |
| 6011 buildCounterUrlMapList--; | 6024 buildCounterUrlMapList--; |
| 6012 } | 6025 } |
| 6013 | 6026 |
| 6014 core.int buildCounterUrlMapReference = 0; | 6027 core.int buildCounterUrlMapReference = 0; |
| 6015 buildUrlMapReference() { | 6028 buildUrlMapReference() { |
| 6016 var o = new api.UrlMapReference(); | 6029 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6048 buildCounterUrlMapTest++; | 6061 buildCounterUrlMapTest++; |
| 6049 if (buildCounterUrlMapTest < 3) { | 6062 if (buildCounterUrlMapTest < 3) { |
| 6050 unittest.expect(o.description, unittest.equals('foo')); | 6063 unittest.expect(o.description, unittest.equals('foo')); |
| 6051 unittest.expect(o.host, unittest.equals('foo')); | 6064 unittest.expect(o.host, unittest.equals('foo')); |
| 6052 unittest.expect(o.path, unittest.equals('foo')); | 6065 unittest.expect(o.path, unittest.equals('foo')); |
| 6053 unittest.expect(o.service, unittest.equals('foo')); | 6066 unittest.expect(o.service, unittest.equals('foo')); |
| 6054 } | 6067 } |
| 6055 buildCounterUrlMapTest--; | 6068 buildCounterUrlMapTest--; |
| 6056 } | 6069 } |
| 6057 | 6070 |
| 6058 buildUnnamed641() { | 6071 buildUnnamed1776() { |
| 6059 var o = new core.List<core.String>(); | 6072 var o = new core.List<core.String>(); |
| 6060 o.add("foo"); | 6073 o.add("foo"); |
| 6061 o.add("foo"); | 6074 o.add("foo"); |
| 6062 return o; | 6075 return o; |
| 6063 } | 6076 } |
| 6064 | 6077 |
| 6065 checkUnnamed641(core.List<core.String> o) { | 6078 checkUnnamed1776(core.List<core.String> o) { |
| 6066 unittest.expect(o, unittest.hasLength(2)); | 6079 unittest.expect(o, unittest.hasLength(2)); |
| 6067 unittest.expect(o[0], unittest.equals('foo')); | 6080 unittest.expect(o[0], unittest.equals('foo')); |
| 6068 unittest.expect(o[1], unittest.equals('foo')); | 6081 unittest.expect(o[1], unittest.equals('foo')); |
| 6069 } | 6082 } |
| 6070 | 6083 |
| 6071 buildUnnamed642() { | 6084 buildUnnamed1777() { |
| 6072 var o = new core.List<api.TestFailure>(); | 6085 var o = new core.List<api.TestFailure>(); |
| 6073 o.add(buildTestFailure()); | 6086 o.add(buildTestFailure()); |
| 6074 o.add(buildTestFailure()); | 6087 o.add(buildTestFailure()); |
| 6075 return o; | 6088 return o; |
| 6076 } | 6089 } |
| 6077 | 6090 |
| 6078 checkUnnamed642(core.List<api.TestFailure> o) { | 6091 checkUnnamed1777(core.List<api.TestFailure> o) { |
| 6079 unittest.expect(o, unittest.hasLength(2)); | 6092 unittest.expect(o, unittest.hasLength(2)); |
| 6080 checkTestFailure(o[0]); | 6093 checkTestFailure(o[0]); |
| 6081 checkTestFailure(o[1]); | 6094 checkTestFailure(o[1]); |
| 6082 } | 6095 } |
| 6083 | 6096 |
| 6084 core.int buildCounterUrlMapValidationResult = 0; | 6097 core.int buildCounterUrlMapValidationResult = 0; |
| 6085 buildUrlMapValidationResult() { | 6098 buildUrlMapValidationResult() { |
| 6086 var o = new api.UrlMapValidationResult(); | 6099 var o = new api.UrlMapValidationResult(); |
| 6087 buildCounterUrlMapValidationResult++; | 6100 buildCounterUrlMapValidationResult++; |
| 6088 if (buildCounterUrlMapValidationResult < 3) { | 6101 if (buildCounterUrlMapValidationResult < 3) { |
| 6089 o.loadErrors = buildUnnamed641(); | 6102 o.loadErrors = buildUnnamed1776(); |
| 6090 o.loadSucceeded = true; | 6103 o.loadSucceeded = true; |
| 6091 o.testFailures = buildUnnamed642(); | 6104 o.testFailures = buildUnnamed1777(); |
| 6092 o.testPassed = true; | 6105 o.testPassed = true; |
| 6093 } | 6106 } |
| 6094 buildCounterUrlMapValidationResult--; | 6107 buildCounterUrlMapValidationResult--; |
| 6095 return o; | 6108 return o; |
| 6096 } | 6109 } |
| 6097 | 6110 |
| 6098 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 6111 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 6099 buildCounterUrlMapValidationResult++; | 6112 buildCounterUrlMapValidationResult++; |
| 6100 if (buildCounterUrlMapValidationResult < 3) { | 6113 if (buildCounterUrlMapValidationResult < 3) { |
| 6101 checkUnnamed641(o.loadErrors); | 6114 checkUnnamed1776(o.loadErrors); |
| 6102 unittest.expect(o.loadSucceeded, unittest.isTrue); | 6115 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 6103 checkUnnamed642(o.testFailures); | 6116 checkUnnamed1777(o.testFailures); |
| 6104 unittest.expect(o.testPassed, unittest.isTrue); | 6117 unittest.expect(o.testPassed, unittest.isTrue); |
| 6105 } | 6118 } |
| 6106 buildCounterUrlMapValidationResult--; | 6119 buildCounterUrlMapValidationResult--; |
| 6107 } | 6120 } |
| 6108 | 6121 |
| 6109 core.int buildCounterUrlMapsValidateRequest = 0; | 6122 core.int buildCounterUrlMapsValidateRequest = 0; |
| 6110 buildUrlMapsValidateRequest() { | 6123 buildUrlMapsValidateRequest() { |
| 6111 var o = new api.UrlMapsValidateRequest(); | 6124 var o = new api.UrlMapsValidateRequest(); |
| 6112 buildCounterUrlMapsValidateRequest++; | 6125 buildCounterUrlMapsValidateRequest++; |
| 6113 if (buildCounterUrlMapsValidateRequest < 3) { | 6126 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6203 unittest.expect(o.region, unittest.equals('foo')); | 6216 unittest.expect(o.region, unittest.equals('foo')); |
| 6204 unittest.expect(o.selfLink, unittest.equals('foo')); | 6217 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6205 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 6218 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 6206 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 6219 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 6207 unittest.expect(o.status, unittest.equals('foo')); | 6220 unittest.expect(o.status, unittest.equals('foo')); |
| 6208 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 6221 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 6209 } | 6222 } |
| 6210 buildCounterVpnTunnel--; | 6223 buildCounterVpnTunnel--; |
| 6211 } | 6224 } |
| 6212 | 6225 |
| 6213 buildUnnamed643() { | 6226 buildUnnamed1778() { |
| 6214 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 6227 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 6215 o["x"] = buildVpnTunnelsScopedList(); | 6228 o["x"] = buildVpnTunnelsScopedList(); |
| 6216 o["y"] = buildVpnTunnelsScopedList(); | 6229 o["y"] = buildVpnTunnelsScopedList(); |
| 6217 return o; | 6230 return o; |
| 6218 } | 6231 } |
| 6219 | 6232 |
| 6220 checkUnnamed643(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 6233 checkUnnamed1778(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 6221 unittest.expect(o, unittest.hasLength(2)); | 6234 unittest.expect(o, unittest.hasLength(2)); |
| 6222 checkVpnTunnelsScopedList(o["x"]); | 6235 checkVpnTunnelsScopedList(o["x"]); |
| 6223 checkVpnTunnelsScopedList(o["y"]); | 6236 checkVpnTunnelsScopedList(o["y"]); |
| 6224 } | 6237 } |
| 6225 | 6238 |
| 6226 core.int buildCounterVpnTunnelAggregatedList = 0; | 6239 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 6227 buildVpnTunnelAggregatedList() { | 6240 buildVpnTunnelAggregatedList() { |
| 6228 var o = new api.VpnTunnelAggregatedList(); | 6241 var o = new api.VpnTunnelAggregatedList(); |
| 6229 buildCounterVpnTunnelAggregatedList++; | 6242 buildCounterVpnTunnelAggregatedList++; |
| 6230 if (buildCounterVpnTunnelAggregatedList < 3) { | 6243 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 6231 o.id = "foo"; | 6244 o.id = "foo"; |
| 6232 o.items = buildUnnamed643(); | 6245 o.items = buildUnnamed1778(); |
| 6233 o.kind = "foo"; | 6246 o.kind = "foo"; |
| 6234 o.nextPageToken = "foo"; | 6247 o.nextPageToken = "foo"; |
| 6235 o.selfLink = "foo"; | 6248 o.selfLink = "foo"; |
| 6236 } | 6249 } |
| 6237 buildCounterVpnTunnelAggregatedList--; | 6250 buildCounterVpnTunnelAggregatedList--; |
| 6238 return o; | 6251 return o; |
| 6239 } | 6252 } |
| 6240 | 6253 |
| 6241 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 6254 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 6242 buildCounterVpnTunnelAggregatedList++; | 6255 buildCounterVpnTunnelAggregatedList++; |
| 6243 if (buildCounterVpnTunnelAggregatedList < 3) { | 6256 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 6244 unittest.expect(o.id, unittest.equals('foo')); | 6257 unittest.expect(o.id, unittest.equals('foo')); |
| 6245 checkUnnamed643(o.items); | 6258 checkUnnamed1778(o.items); |
| 6246 unittest.expect(o.kind, unittest.equals('foo')); | 6259 unittest.expect(o.kind, unittest.equals('foo')); |
| 6247 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6260 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6248 unittest.expect(o.selfLink, unittest.equals('foo')); | 6261 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6249 } | 6262 } |
| 6250 buildCounterVpnTunnelAggregatedList--; | 6263 buildCounterVpnTunnelAggregatedList--; |
| 6251 } | 6264 } |
| 6252 | 6265 |
| 6253 buildUnnamed644() { | 6266 buildUnnamed1779() { |
| 6254 var o = new core.List<api.VpnTunnel>(); | 6267 var o = new core.List<api.VpnTunnel>(); |
| 6255 o.add(buildVpnTunnel()); | 6268 o.add(buildVpnTunnel()); |
| 6256 o.add(buildVpnTunnel()); | 6269 o.add(buildVpnTunnel()); |
| 6257 return o; | 6270 return o; |
| 6258 } | 6271 } |
| 6259 | 6272 |
| 6260 checkUnnamed644(core.List<api.VpnTunnel> o) { | 6273 checkUnnamed1779(core.List<api.VpnTunnel> o) { |
| 6261 unittest.expect(o, unittest.hasLength(2)); | 6274 unittest.expect(o, unittest.hasLength(2)); |
| 6262 checkVpnTunnel(o[0]); | 6275 checkVpnTunnel(o[0]); |
| 6263 checkVpnTunnel(o[1]); | 6276 checkVpnTunnel(o[1]); |
| 6264 } | 6277 } |
| 6265 | 6278 |
| 6266 core.int buildCounterVpnTunnelList = 0; | 6279 core.int buildCounterVpnTunnelList = 0; |
| 6267 buildVpnTunnelList() { | 6280 buildVpnTunnelList() { |
| 6268 var o = new api.VpnTunnelList(); | 6281 var o = new api.VpnTunnelList(); |
| 6269 buildCounterVpnTunnelList++; | 6282 buildCounterVpnTunnelList++; |
| 6270 if (buildCounterVpnTunnelList < 3) { | 6283 if (buildCounterVpnTunnelList < 3) { |
| 6271 o.id = "foo"; | 6284 o.id = "foo"; |
| 6272 o.items = buildUnnamed644(); | 6285 o.items = buildUnnamed1779(); |
| 6273 o.kind = "foo"; | 6286 o.kind = "foo"; |
| 6274 o.nextPageToken = "foo"; | 6287 o.nextPageToken = "foo"; |
| 6275 o.selfLink = "foo"; | 6288 o.selfLink = "foo"; |
| 6276 } | 6289 } |
| 6277 buildCounterVpnTunnelList--; | 6290 buildCounterVpnTunnelList--; |
| 6278 return o; | 6291 return o; |
| 6279 } | 6292 } |
| 6280 | 6293 |
| 6281 checkVpnTunnelList(api.VpnTunnelList o) { | 6294 checkVpnTunnelList(api.VpnTunnelList o) { |
| 6282 buildCounterVpnTunnelList++; | 6295 buildCounterVpnTunnelList++; |
| 6283 if (buildCounterVpnTunnelList < 3) { | 6296 if (buildCounterVpnTunnelList < 3) { |
| 6284 unittest.expect(o.id, unittest.equals('foo')); | 6297 unittest.expect(o.id, unittest.equals('foo')); |
| 6285 checkUnnamed644(o.items); | 6298 checkUnnamed1779(o.items); |
| 6286 unittest.expect(o.kind, unittest.equals('foo')); | 6299 unittest.expect(o.kind, unittest.equals('foo')); |
| 6287 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6300 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6288 unittest.expect(o.selfLink, unittest.equals('foo')); | 6301 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6289 } | 6302 } |
| 6290 buildCounterVpnTunnelList--; | 6303 buildCounterVpnTunnelList--; |
| 6291 } | 6304 } |
| 6292 | 6305 |
| 6293 buildUnnamed645() { | 6306 buildUnnamed1780() { |
| 6294 var o = new core.List<api.VpnTunnel>(); | 6307 var o = new core.List<api.VpnTunnel>(); |
| 6295 o.add(buildVpnTunnel()); | 6308 o.add(buildVpnTunnel()); |
| 6296 o.add(buildVpnTunnel()); | 6309 o.add(buildVpnTunnel()); |
| 6297 return o; | 6310 return o; |
| 6298 } | 6311 } |
| 6299 | 6312 |
| 6300 checkUnnamed645(core.List<api.VpnTunnel> o) { | 6313 checkUnnamed1780(core.List<api.VpnTunnel> o) { |
| 6301 unittest.expect(o, unittest.hasLength(2)); | 6314 unittest.expect(o, unittest.hasLength(2)); |
| 6302 checkVpnTunnel(o[0]); | 6315 checkVpnTunnel(o[0]); |
| 6303 checkVpnTunnel(o[1]); | 6316 checkVpnTunnel(o[1]); |
| 6304 } | 6317 } |
| 6305 | 6318 |
| 6306 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 6319 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 6307 buildVpnTunnelsScopedListWarningData() { | 6320 buildVpnTunnelsScopedListWarningData() { |
| 6308 var o = new api.VpnTunnelsScopedListWarningData(); | 6321 var o = new api.VpnTunnelsScopedListWarningData(); |
| 6309 buildCounterVpnTunnelsScopedListWarningData++; | 6322 buildCounterVpnTunnelsScopedListWarningData++; |
| 6310 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 6323 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 6311 o.key = "foo"; | 6324 o.key = "foo"; |
| 6312 o.value = "foo"; | 6325 o.value = "foo"; |
| 6313 } | 6326 } |
| 6314 buildCounterVpnTunnelsScopedListWarningData--; | 6327 buildCounterVpnTunnelsScopedListWarningData--; |
| 6315 return o; | 6328 return o; |
| 6316 } | 6329 } |
| 6317 | 6330 |
| 6318 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 6331 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 6319 buildCounterVpnTunnelsScopedListWarningData++; | 6332 buildCounterVpnTunnelsScopedListWarningData++; |
| 6320 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 6333 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 6321 unittest.expect(o.key, unittest.equals('foo')); | 6334 unittest.expect(o.key, unittest.equals('foo')); |
| 6322 unittest.expect(o.value, unittest.equals('foo')); | 6335 unittest.expect(o.value, unittest.equals('foo')); |
| 6323 } | 6336 } |
| 6324 buildCounterVpnTunnelsScopedListWarningData--; | 6337 buildCounterVpnTunnelsScopedListWarningData--; |
| 6325 } | 6338 } |
| 6326 | 6339 |
| 6327 buildUnnamed646() { | 6340 buildUnnamed1781() { |
| 6328 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 6341 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 6329 o.add(buildVpnTunnelsScopedListWarningData()); | 6342 o.add(buildVpnTunnelsScopedListWarningData()); |
| 6330 o.add(buildVpnTunnelsScopedListWarningData()); | 6343 o.add(buildVpnTunnelsScopedListWarningData()); |
| 6331 return o; | 6344 return o; |
| 6332 } | 6345 } |
| 6333 | 6346 |
| 6334 checkUnnamed646(core.List<api.VpnTunnelsScopedListWarningData> o) { | 6347 checkUnnamed1781(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 6335 unittest.expect(o, unittest.hasLength(2)); | 6348 unittest.expect(o, unittest.hasLength(2)); |
| 6336 checkVpnTunnelsScopedListWarningData(o[0]); | 6349 checkVpnTunnelsScopedListWarningData(o[0]); |
| 6337 checkVpnTunnelsScopedListWarningData(o[1]); | 6350 checkVpnTunnelsScopedListWarningData(o[1]); |
| 6338 } | 6351 } |
| 6339 | 6352 |
| 6340 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 6353 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 6341 buildVpnTunnelsScopedListWarning() { | 6354 buildVpnTunnelsScopedListWarning() { |
| 6342 var o = new api.VpnTunnelsScopedListWarning(); | 6355 var o = new api.VpnTunnelsScopedListWarning(); |
| 6343 buildCounterVpnTunnelsScopedListWarning++; | 6356 buildCounterVpnTunnelsScopedListWarning++; |
| 6344 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 6357 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 6345 o.code = "foo"; | 6358 o.code = "foo"; |
| 6346 o.data = buildUnnamed646(); | 6359 o.data = buildUnnamed1781(); |
| 6347 o.message = "foo"; | 6360 o.message = "foo"; |
| 6348 } | 6361 } |
| 6349 buildCounterVpnTunnelsScopedListWarning--; | 6362 buildCounterVpnTunnelsScopedListWarning--; |
| 6350 return o; | 6363 return o; |
| 6351 } | 6364 } |
| 6352 | 6365 |
| 6353 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 6366 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 6354 buildCounterVpnTunnelsScopedListWarning++; | 6367 buildCounterVpnTunnelsScopedListWarning++; |
| 6355 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 6368 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 6356 unittest.expect(o.code, unittest.equals('foo')); | 6369 unittest.expect(o.code, unittest.equals('foo')); |
| 6357 checkUnnamed646(o.data); | 6370 checkUnnamed1781(o.data); |
| 6358 unittest.expect(o.message, unittest.equals('foo')); | 6371 unittest.expect(o.message, unittest.equals('foo')); |
| 6359 } | 6372 } |
| 6360 buildCounterVpnTunnelsScopedListWarning--; | 6373 buildCounterVpnTunnelsScopedListWarning--; |
| 6361 } | 6374 } |
| 6362 | 6375 |
| 6363 core.int buildCounterVpnTunnelsScopedList = 0; | 6376 core.int buildCounterVpnTunnelsScopedList = 0; |
| 6364 buildVpnTunnelsScopedList() { | 6377 buildVpnTunnelsScopedList() { |
| 6365 var o = new api.VpnTunnelsScopedList(); | 6378 var o = new api.VpnTunnelsScopedList(); |
| 6366 buildCounterVpnTunnelsScopedList++; | 6379 buildCounterVpnTunnelsScopedList++; |
| 6367 if (buildCounterVpnTunnelsScopedList < 3) { | 6380 if (buildCounterVpnTunnelsScopedList < 3) { |
| 6368 o.vpnTunnels = buildUnnamed645(); | 6381 o.vpnTunnels = buildUnnamed1780(); |
| 6369 o.warning = buildVpnTunnelsScopedListWarning(); | 6382 o.warning = buildVpnTunnelsScopedListWarning(); |
| 6370 } | 6383 } |
| 6371 buildCounterVpnTunnelsScopedList--; | 6384 buildCounterVpnTunnelsScopedList--; |
| 6372 return o; | 6385 return o; |
| 6373 } | 6386 } |
| 6374 | 6387 |
| 6375 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 6388 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 6376 buildCounterVpnTunnelsScopedList++; | 6389 buildCounterVpnTunnelsScopedList++; |
| 6377 if (buildCounterVpnTunnelsScopedList < 3) { | 6390 if (buildCounterVpnTunnelsScopedList < 3) { |
| 6378 checkUnnamed645(o.vpnTunnels); | 6391 checkUnnamed1780(o.vpnTunnels); |
| 6379 checkVpnTunnelsScopedListWarning(o.warning); | 6392 checkVpnTunnelsScopedListWarning(o.warning); |
| 6380 } | 6393 } |
| 6381 buildCounterVpnTunnelsScopedList--; | 6394 buildCounterVpnTunnelsScopedList--; |
| 6382 } | 6395 } |
| 6383 | 6396 |
| 6384 core.int buildCounterZoneMaintenanceWindows = 0; | 6397 core.int buildCounterZoneMaintenanceWindows = 0; |
| 6385 buildZoneMaintenanceWindows() { | 6398 buildZoneMaintenanceWindows() { |
| 6386 var o = new api.ZoneMaintenanceWindows(); | 6399 var o = new api.ZoneMaintenanceWindows(); |
| 6387 buildCounterZoneMaintenanceWindows++; | 6400 buildCounterZoneMaintenanceWindows++; |
| 6388 if (buildCounterZoneMaintenanceWindows < 3) { | 6401 if (buildCounterZoneMaintenanceWindows < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6399 buildCounterZoneMaintenanceWindows++; | 6412 buildCounterZoneMaintenanceWindows++; |
| 6400 if (buildCounterZoneMaintenanceWindows < 3) { | 6413 if (buildCounterZoneMaintenanceWindows < 3) { |
| 6401 unittest.expect(o.beginTime, unittest.equals('foo')); | 6414 unittest.expect(o.beginTime, unittest.equals('foo')); |
| 6402 unittest.expect(o.description, unittest.equals('foo')); | 6415 unittest.expect(o.description, unittest.equals('foo')); |
| 6403 unittest.expect(o.endTime, unittest.equals('foo')); | 6416 unittest.expect(o.endTime, unittest.equals('foo')); |
| 6404 unittest.expect(o.name, unittest.equals('foo')); | 6417 unittest.expect(o.name, unittest.equals('foo')); |
| 6405 } | 6418 } |
| 6406 buildCounterZoneMaintenanceWindows--; | 6419 buildCounterZoneMaintenanceWindows--; |
| 6407 } | 6420 } |
| 6408 | 6421 |
| 6409 buildUnnamed647() { | 6422 buildUnnamed1782() { |
| 6410 var o = new core.List<api.ZoneMaintenanceWindows>(); | 6423 var o = new core.List<api.ZoneMaintenanceWindows>(); |
| 6411 o.add(buildZoneMaintenanceWindows()); | 6424 o.add(buildZoneMaintenanceWindows()); |
| 6412 o.add(buildZoneMaintenanceWindows()); | 6425 o.add(buildZoneMaintenanceWindows()); |
| 6413 return o; | 6426 return o; |
| 6414 } | 6427 } |
| 6415 | 6428 |
| 6416 checkUnnamed647(core.List<api.ZoneMaintenanceWindows> o) { | 6429 checkUnnamed1782(core.List<api.ZoneMaintenanceWindows> o) { |
| 6417 unittest.expect(o, unittest.hasLength(2)); | 6430 unittest.expect(o, unittest.hasLength(2)); |
| 6418 checkZoneMaintenanceWindows(o[0]); | 6431 checkZoneMaintenanceWindows(o[0]); |
| 6419 checkZoneMaintenanceWindows(o[1]); | 6432 checkZoneMaintenanceWindows(o[1]); |
| 6420 } | 6433 } |
| 6421 | 6434 |
| 6422 core.int buildCounterZone = 0; | 6435 core.int buildCounterZone = 0; |
| 6423 buildZone() { | 6436 buildZone() { |
| 6424 var o = new api.Zone(); | 6437 var o = new api.Zone(); |
| 6425 buildCounterZone++; | 6438 buildCounterZone++; |
| 6426 if (buildCounterZone < 3) { | 6439 if (buildCounterZone < 3) { |
| 6427 o.creationTimestamp = "foo"; | 6440 o.creationTimestamp = "foo"; |
| 6428 o.deprecated = buildDeprecationStatus(); | 6441 o.deprecated = buildDeprecationStatus(); |
| 6429 o.description = "foo"; | 6442 o.description = "foo"; |
| 6430 o.id = "foo"; | 6443 o.id = "foo"; |
| 6431 o.kind = "foo"; | 6444 o.kind = "foo"; |
| 6432 o.maintenanceWindows = buildUnnamed647(); | 6445 o.maintenanceWindows = buildUnnamed1782(); |
| 6433 o.name = "foo"; | 6446 o.name = "foo"; |
| 6434 o.region = "foo"; | 6447 o.region = "foo"; |
| 6435 o.selfLink = "foo"; | 6448 o.selfLink = "foo"; |
| 6436 o.status = "foo"; | 6449 o.status = "foo"; |
| 6437 } | 6450 } |
| 6438 buildCounterZone--; | 6451 buildCounterZone--; |
| 6439 return o; | 6452 return o; |
| 6440 } | 6453 } |
| 6441 | 6454 |
| 6442 checkZone(api.Zone o) { | 6455 checkZone(api.Zone o) { |
| 6443 buildCounterZone++; | 6456 buildCounterZone++; |
| 6444 if (buildCounterZone < 3) { | 6457 if (buildCounterZone < 3) { |
| 6445 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6458 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6446 checkDeprecationStatus(o.deprecated); | 6459 checkDeprecationStatus(o.deprecated); |
| 6447 unittest.expect(o.description, unittest.equals('foo')); | 6460 unittest.expect(o.description, unittest.equals('foo')); |
| 6448 unittest.expect(o.id, unittest.equals('foo')); | 6461 unittest.expect(o.id, unittest.equals('foo')); |
| 6449 unittest.expect(o.kind, unittest.equals('foo')); | 6462 unittest.expect(o.kind, unittest.equals('foo')); |
| 6450 checkUnnamed647(o.maintenanceWindows); | 6463 checkUnnamed1782(o.maintenanceWindows); |
| 6451 unittest.expect(o.name, unittest.equals('foo')); | 6464 unittest.expect(o.name, unittest.equals('foo')); |
| 6452 unittest.expect(o.region, unittest.equals('foo')); | 6465 unittest.expect(o.region, unittest.equals('foo')); |
| 6453 unittest.expect(o.selfLink, unittest.equals('foo')); | 6466 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6454 unittest.expect(o.status, unittest.equals('foo')); | 6467 unittest.expect(o.status, unittest.equals('foo')); |
| 6455 } | 6468 } |
| 6456 buildCounterZone--; | 6469 buildCounterZone--; |
| 6457 } | 6470 } |
| 6458 | 6471 |
| 6459 buildUnnamed648() { | 6472 buildUnnamed1783() { |
| 6460 var o = new core.List<api.Zone>(); | 6473 var o = new core.List<api.Zone>(); |
| 6461 o.add(buildZone()); | 6474 o.add(buildZone()); |
| 6462 o.add(buildZone()); | 6475 o.add(buildZone()); |
| 6463 return o; | 6476 return o; |
| 6464 } | 6477 } |
| 6465 | 6478 |
| 6466 checkUnnamed648(core.List<api.Zone> o) { | 6479 checkUnnamed1783(core.List<api.Zone> o) { |
| 6467 unittest.expect(o, unittest.hasLength(2)); | 6480 unittest.expect(o, unittest.hasLength(2)); |
| 6468 checkZone(o[0]); | 6481 checkZone(o[0]); |
| 6469 checkZone(o[1]); | 6482 checkZone(o[1]); |
| 6470 } | 6483 } |
| 6471 | 6484 |
| 6472 core.int buildCounterZoneList = 0; | 6485 core.int buildCounterZoneList = 0; |
| 6473 buildZoneList() { | 6486 buildZoneList() { |
| 6474 var o = new api.ZoneList(); | 6487 var o = new api.ZoneList(); |
| 6475 buildCounterZoneList++; | 6488 buildCounterZoneList++; |
| 6476 if (buildCounterZoneList < 3) { | 6489 if (buildCounterZoneList < 3) { |
| 6477 o.id = "foo"; | 6490 o.id = "foo"; |
| 6478 o.items = buildUnnamed648(); | 6491 o.items = buildUnnamed1783(); |
| 6479 o.kind = "foo"; | 6492 o.kind = "foo"; |
| 6480 o.nextPageToken = "foo"; | 6493 o.nextPageToken = "foo"; |
| 6481 o.selfLink = "foo"; | 6494 o.selfLink = "foo"; |
| 6482 } | 6495 } |
| 6483 buildCounterZoneList--; | 6496 buildCounterZoneList--; |
| 6484 return o; | 6497 return o; |
| 6485 } | 6498 } |
| 6486 | 6499 |
| 6487 checkZoneList(api.ZoneList o) { | 6500 checkZoneList(api.ZoneList o) { |
| 6488 buildCounterZoneList++; | 6501 buildCounterZoneList++; |
| 6489 if (buildCounterZoneList < 3) { | 6502 if (buildCounterZoneList < 3) { |
| 6490 unittest.expect(o.id, unittest.equals('foo')); | 6503 unittest.expect(o.id, unittest.equals('foo')); |
| 6491 checkUnnamed648(o.items); | 6504 checkUnnamed1783(o.items); |
| 6492 unittest.expect(o.kind, unittest.equals('foo')); | 6505 unittest.expect(o.kind, unittest.equals('foo')); |
| 6493 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6506 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6494 unittest.expect(o.selfLink, unittest.equals('foo')); | 6507 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6495 } | 6508 } |
| 6496 buildCounterZoneList--; | 6509 buildCounterZoneList--; |
| 6497 } | 6510 } |
| 6498 | 6511 |
| 6499 | 6512 |
| 6500 main() { | 6513 main() { |
| 6501 unittest.group("obj-schema-AccessConfig", () { | 6514 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 9775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16277 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { | 16290 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { |
| 16278 checkZoneList(response); | 16291 checkZoneList(response); |
| 16279 }))); | 16292 }))); |
| 16280 }); | 16293 }); |
| 16281 | 16294 |
| 16282 }); | 16295 }); |
| 16283 | 16296 |
| 16284 | 16297 |
| 16285 } | 16298 } |
| 16286 | 16299 |
| OLD | NEW |