| 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 buildUnnamed722() { | 79 buildUnnamed2425() { |
| 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 checkUnnamed722(core.List<core.String> o) { | 86 checkUnnamed2425(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 = buildUnnamed722(); | 106 o.users = buildUnnamed2425(); |
| 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 checkUnnamed722(o.users); | 124 checkUnnamed2425(o.users); |
| 125 } | 125 } |
| 126 buildCounterAddress--; | 126 buildCounterAddress--; |
| 127 } | 127 } |
| 128 | 128 |
| 129 buildUnnamed723() { | 129 buildUnnamed2426() { |
| 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 checkUnnamed723(core.Map<core.String, api.AddressesScopedList> o) { | 136 checkUnnamed2426(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 = buildUnnamed723(); | 148 o.items = buildUnnamed2426(); |
| 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 checkUnnamed723(o.items); | 161 checkUnnamed2426(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 buildUnnamed724() { | 169 buildUnnamed2427() { |
| 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 checkUnnamed724(core.List<api.Address> o) { | 176 checkUnnamed2427(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 = buildUnnamed724(); | 188 o.items = buildUnnamed2427(); |
| 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 checkUnnamed724(o.items); | 201 checkUnnamed2427(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 buildUnnamed725() { | 209 buildUnnamed2428() { |
| 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 checkUnnamed725(core.List<api.Address> o) { | 216 checkUnnamed2428(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 buildUnnamed726() { | 243 buildUnnamed2429() { |
| 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 checkUnnamed726(core.List<api.AddressesScopedListWarningData> o) { | 250 checkUnnamed2429(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 = buildUnnamed726(); | 262 o.data = buildUnnamed2429(); |
| 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 checkUnnamed726(o.data); | 273 checkUnnamed2429(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 = buildUnnamed725(); | 284 o.addresses = buildUnnamed2428(); |
| 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 checkUnnamed725(o.addresses); | 294 checkUnnamed2428(o.addresses); |
| 295 checkAddressesScopedListWarning(o.warning); | 295 checkAddressesScopedListWarning(o.warning); |
| 296 } | 296 } |
| 297 buildCounterAddressesScopedList--; | 297 buildCounterAddressesScopedList--; |
| 298 } | 298 } |
| 299 | 299 |
| 300 buildUnnamed727() { | 300 buildUnnamed2430() { |
| 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 checkUnnamed727(core.List<core.String> o) { | 307 checkUnnamed2430(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.diskEncryptionKey = buildCustomerEncryptionKey(); | 321 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 322 o.index = 42; | 322 o.index = 42; |
| 323 o.initializeParams = buildAttachedDiskInitializeParams(); | 323 o.initializeParams = buildAttachedDiskInitializeParams(); |
| 324 o.interface = "foo"; | 324 o.interface = "foo"; |
| 325 o.kind = "foo"; | 325 o.kind = "foo"; |
| 326 o.licenses = buildUnnamed727(); | 326 o.licenses = buildUnnamed2430(); |
| 327 o.mode = "foo"; | 327 o.mode = "foo"; |
| 328 o.source = "foo"; | 328 o.source = "foo"; |
| 329 o.type = "foo"; | 329 o.type = "foo"; |
| 330 } | 330 } |
| 331 buildCounterAttachedDisk--; | 331 buildCounterAttachedDisk--; |
| 332 return o; | 332 return o; |
| 333 } | 333 } |
| 334 | 334 |
| 335 checkAttachedDisk(api.AttachedDisk o) { | 335 checkAttachedDisk(api.AttachedDisk o) { |
| 336 buildCounterAttachedDisk++; | 336 buildCounterAttachedDisk++; |
| 337 if (buildCounterAttachedDisk < 3) { | 337 if (buildCounterAttachedDisk < 3) { |
| 338 unittest.expect(o.autoDelete, unittest.isTrue); | 338 unittest.expect(o.autoDelete, unittest.isTrue); |
| 339 unittest.expect(o.boot, unittest.isTrue); | 339 unittest.expect(o.boot, unittest.isTrue); |
| 340 unittest.expect(o.deviceName, unittest.equals('foo')); | 340 unittest.expect(o.deviceName, unittest.equals('foo')); |
| 341 checkCustomerEncryptionKey(o.diskEncryptionKey); | 341 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 342 unittest.expect(o.index, unittest.equals(42)); | 342 unittest.expect(o.index, unittest.equals(42)); |
| 343 checkAttachedDiskInitializeParams(o.initializeParams); | 343 checkAttachedDiskInitializeParams(o.initializeParams); |
| 344 unittest.expect(o.interface, unittest.equals('foo')); | 344 unittest.expect(o.interface, unittest.equals('foo')); |
| 345 unittest.expect(o.kind, unittest.equals('foo')); | 345 unittest.expect(o.kind, unittest.equals('foo')); |
| 346 checkUnnamed727(o.licenses); | 346 checkUnnamed2430(o.licenses); |
| 347 unittest.expect(o.mode, unittest.equals('foo')); | 347 unittest.expect(o.mode, unittest.equals('foo')); |
| 348 unittest.expect(o.source, unittest.equals('foo')); | 348 unittest.expect(o.source, unittest.equals('foo')); |
| 349 unittest.expect(o.type, unittest.equals('foo')); | 349 unittest.expect(o.type, unittest.equals('foo')); |
| 350 } | 350 } |
| 351 buildCounterAttachedDisk--; | 351 buildCounterAttachedDisk--; |
| 352 } | 352 } |
| 353 | 353 |
| 354 core.int buildCounterAttachedDiskInitializeParams = 0; | 354 core.int buildCounterAttachedDiskInitializeParams = 0; |
| 355 buildAttachedDiskInitializeParams() { | 355 buildAttachedDiskInitializeParams() { |
| 356 var o = new api.AttachedDiskInitializeParams(); | 356 var o = new api.AttachedDiskInitializeParams(); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 unittest.expect(o.id, unittest.equals('foo')); | 406 unittest.expect(o.id, unittest.equals('foo')); |
| 407 unittest.expect(o.kind, unittest.equals('foo')); | 407 unittest.expect(o.kind, unittest.equals('foo')); |
| 408 unittest.expect(o.name, unittest.equals('foo')); | 408 unittest.expect(o.name, unittest.equals('foo')); |
| 409 unittest.expect(o.selfLink, unittest.equals('foo')); | 409 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 410 unittest.expect(o.target, unittest.equals('foo')); | 410 unittest.expect(o.target, unittest.equals('foo')); |
| 411 unittest.expect(o.zone, unittest.equals('foo')); | 411 unittest.expect(o.zone, unittest.equals('foo')); |
| 412 } | 412 } |
| 413 buildCounterAutoscaler--; | 413 buildCounterAutoscaler--; |
| 414 } | 414 } |
| 415 | 415 |
| 416 buildUnnamed728() { | 416 buildUnnamed2431() { |
| 417 var o = new core.Map<core.String, api.AutoscalersScopedList>(); | 417 var o = new core.Map<core.String, api.AutoscalersScopedList>(); |
| 418 o["x"] = buildAutoscalersScopedList(); | 418 o["x"] = buildAutoscalersScopedList(); |
| 419 o["y"] = buildAutoscalersScopedList(); | 419 o["y"] = buildAutoscalersScopedList(); |
| 420 return o; | 420 return o; |
| 421 } | 421 } |
| 422 | 422 |
| 423 checkUnnamed728(core.Map<core.String, api.AutoscalersScopedList> o) { | 423 checkUnnamed2431(core.Map<core.String, api.AutoscalersScopedList> o) { |
| 424 unittest.expect(o, unittest.hasLength(2)); | 424 unittest.expect(o, unittest.hasLength(2)); |
| 425 checkAutoscalersScopedList(o["x"]); | 425 checkAutoscalersScopedList(o["x"]); |
| 426 checkAutoscalersScopedList(o["y"]); | 426 checkAutoscalersScopedList(o["y"]); |
| 427 } | 427 } |
| 428 | 428 |
| 429 core.int buildCounterAutoscalerAggregatedList = 0; | 429 core.int buildCounterAutoscalerAggregatedList = 0; |
| 430 buildAutoscalerAggregatedList() { | 430 buildAutoscalerAggregatedList() { |
| 431 var o = new api.AutoscalerAggregatedList(); | 431 var o = new api.AutoscalerAggregatedList(); |
| 432 buildCounterAutoscalerAggregatedList++; | 432 buildCounterAutoscalerAggregatedList++; |
| 433 if (buildCounterAutoscalerAggregatedList < 3) { | 433 if (buildCounterAutoscalerAggregatedList < 3) { |
| 434 o.id = "foo"; | 434 o.id = "foo"; |
| 435 o.items = buildUnnamed728(); | 435 o.items = buildUnnamed2431(); |
| 436 o.kind = "foo"; | 436 o.kind = "foo"; |
| 437 o.nextPageToken = "foo"; | 437 o.nextPageToken = "foo"; |
| 438 o.selfLink = "foo"; | 438 o.selfLink = "foo"; |
| 439 } | 439 } |
| 440 buildCounterAutoscalerAggregatedList--; | 440 buildCounterAutoscalerAggregatedList--; |
| 441 return o; | 441 return o; |
| 442 } | 442 } |
| 443 | 443 |
| 444 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { | 444 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { |
| 445 buildCounterAutoscalerAggregatedList++; | 445 buildCounterAutoscalerAggregatedList++; |
| 446 if (buildCounterAutoscalerAggregatedList < 3) { | 446 if (buildCounterAutoscalerAggregatedList < 3) { |
| 447 unittest.expect(o.id, unittest.equals('foo')); | 447 unittest.expect(o.id, unittest.equals('foo')); |
| 448 checkUnnamed728(o.items); | 448 checkUnnamed2431(o.items); |
| 449 unittest.expect(o.kind, unittest.equals('foo')); | 449 unittest.expect(o.kind, unittest.equals('foo')); |
| 450 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 450 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 451 unittest.expect(o.selfLink, unittest.equals('foo')); | 451 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 452 } | 452 } |
| 453 buildCounterAutoscalerAggregatedList--; | 453 buildCounterAutoscalerAggregatedList--; |
| 454 } | 454 } |
| 455 | 455 |
| 456 buildUnnamed729() { | 456 buildUnnamed2432() { |
| 457 var o = new core.List<api.Autoscaler>(); | 457 var o = new core.List<api.Autoscaler>(); |
| 458 o.add(buildAutoscaler()); | 458 o.add(buildAutoscaler()); |
| 459 o.add(buildAutoscaler()); | 459 o.add(buildAutoscaler()); |
| 460 return o; | 460 return o; |
| 461 } | 461 } |
| 462 | 462 |
| 463 checkUnnamed729(core.List<api.Autoscaler> o) { | 463 checkUnnamed2432(core.List<api.Autoscaler> o) { |
| 464 unittest.expect(o, unittest.hasLength(2)); | 464 unittest.expect(o, unittest.hasLength(2)); |
| 465 checkAutoscaler(o[0]); | 465 checkAutoscaler(o[0]); |
| 466 checkAutoscaler(o[1]); | 466 checkAutoscaler(o[1]); |
| 467 } | 467 } |
| 468 | 468 |
| 469 core.int buildCounterAutoscalerList = 0; | 469 core.int buildCounterAutoscalerList = 0; |
| 470 buildAutoscalerList() { | 470 buildAutoscalerList() { |
| 471 var o = new api.AutoscalerList(); | 471 var o = new api.AutoscalerList(); |
| 472 buildCounterAutoscalerList++; | 472 buildCounterAutoscalerList++; |
| 473 if (buildCounterAutoscalerList < 3) { | 473 if (buildCounterAutoscalerList < 3) { |
| 474 o.id = "foo"; | 474 o.id = "foo"; |
| 475 o.items = buildUnnamed729(); | 475 o.items = buildUnnamed2432(); |
| 476 o.kind = "foo"; | 476 o.kind = "foo"; |
| 477 o.nextPageToken = "foo"; | 477 o.nextPageToken = "foo"; |
| 478 o.selfLink = "foo"; | 478 o.selfLink = "foo"; |
| 479 } | 479 } |
| 480 buildCounterAutoscalerList--; | 480 buildCounterAutoscalerList--; |
| 481 return o; | 481 return o; |
| 482 } | 482 } |
| 483 | 483 |
| 484 checkAutoscalerList(api.AutoscalerList o) { | 484 checkAutoscalerList(api.AutoscalerList o) { |
| 485 buildCounterAutoscalerList++; | 485 buildCounterAutoscalerList++; |
| 486 if (buildCounterAutoscalerList < 3) { | 486 if (buildCounterAutoscalerList < 3) { |
| 487 unittest.expect(o.id, unittest.equals('foo')); | 487 unittest.expect(o.id, unittest.equals('foo')); |
| 488 checkUnnamed729(o.items); | 488 checkUnnamed2432(o.items); |
| 489 unittest.expect(o.kind, unittest.equals('foo')); | 489 unittest.expect(o.kind, unittest.equals('foo')); |
| 490 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 490 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 491 unittest.expect(o.selfLink, unittest.equals('foo')); | 491 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 492 } | 492 } |
| 493 buildCounterAutoscalerList--; | 493 buildCounterAutoscalerList--; |
| 494 } | 494 } |
| 495 | 495 |
| 496 buildUnnamed730() { | 496 buildUnnamed2433() { |
| 497 var o = new core.List<api.Autoscaler>(); | 497 var o = new core.List<api.Autoscaler>(); |
| 498 o.add(buildAutoscaler()); | 498 o.add(buildAutoscaler()); |
| 499 o.add(buildAutoscaler()); | 499 o.add(buildAutoscaler()); |
| 500 return o; | 500 return o; |
| 501 } | 501 } |
| 502 | 502 |
| 503 checkUnnamed730(core.List<api.Autoscaler> o) { | 503 checkUnnamed2433(core.List<api.Autoscaler> o) { |
| 504 unittest.expect(o, unittest.hasLength(2)); | 504 unittest.expect(o, unittest.hasLength(2)); |
| 505 checkAutoscaler(o[0]); | 505 checkAutoscaler(o[0]); |
| 506 checkAutoscaler(o[1]); | 506 checkAutoscaler(o[1]); |
| 507 } | 507 } |
| 508 | 508 |
| 509 core.int buildCounterAutoscalersScopedListWarningData = 0; | 509 core.int buildCounterAutoscalersScopedListWarningData = 0; |
| 510 buildAutoscalersScopedListWarningData() { | 510 buildAutoscalersScopedListWarningData() { |
| 511 var o = new api.AutoscalersScopedListWarningData(); | 511 var o = new api.AutoscalersScopedListWarningData(); |
| 512 buildCounterAutoscalersScopedListWarningData++; | 512 buildCounterAutoscalersScopedListWarningData++; |
| 513 if (buildCounterAutoscalersScopedListWarningData < 3) { | 513 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 514 o.key = "foo"; | 514 o.key = "foo"; |
| 515 o.value = "foo"; | 515 o.value = "foo"; |
| 516 } | 516 } |
| 517 buildCounterAutoscalersScopedListWarningData--; | 517 buildCounterAutoscalersScopedListWarningData--; |
| 518 return o; | 518 return o; |
| 519 } | 519 } |
| 520 | 520 |
| 521 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { | 521 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { |
| 522 buildCounterAutoscalersScopedListWarningData++; | 522 buildCounterAutoscalersScopedListWarningData++; |
| 523 if (buildCounterAutoscalersScopedListWarningData < 3) { | 523 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 524 unittest.expect(o.key, unittest.equals('foo')); | 524 unittest.expect(o.key, unittest.equals('foo')); |
| 525 unittest.expect(o.value, unittest.equals('foo')); | 525 unittest.expect(o.value, unittest.equals('foo')); |
| 526 } | 526 } |
| 527 buildCounterAutoscalersScopedListWarningData--; | 527 buildCounterAutoscalersScopedListWarningData--; |
| 528 } | 528 } |
| 529 | 529 |
| 530 buildUnnamed731() { | 530 buildUnnamed2434() { |
| 531 var o = new core.List<api.AutoscalersScopedListWarningData>(); | 531 var o = new core.List<api.AutoscalersScopedListWarningData>(); |
| 532 o.add(buildAutoscalersScopedListWarningData()); | 532 o.add(buildAutoscalersScopedListWarningData()); |
| 533 o.add(buildAutoscalersScopedListWarningData()); | 533 o.add(buildAutoscalersScopedListWarningData()); |
| 534 return o; | 534 return o; |
| 535 } | 535 } |
| 536 | 536 |
| 537 checkUnnamed731(core.List<api.AutoscalersScopedListWarningData> o) { | 537 checkUnnamed2434(core.List<api.AutoscalersScopedListWarningData> o) { |
| 538 unittest.expect(o, unittest.hasLength(2)); | 538 unittest.expect(o, unittest.hasLength(2)); |
| 539 checkAutoscalersScopedListWarningData(o[0]); | 539 checkAutoscalersScopedListWarningData(o[0]); |
| 540 checkAutoscalersScopedListWarningData(o[1]); | 540 checkAutoscalersScopedListWarningData(o[1]); |
| 541 } | 541 } |
| 542 | 542 |
| 543 core.int buildCounterAutoscalersScopedListWarning = 0; | 543 core.int buildCounterAutoscalersScopedListWarning = 0; |
| 544 buildAutoscalersScopedListWarning() { | 544 buildAutoscalersScopedListWarning() { |
| 545 var o = new api.AutoscalersScopedListWarning(); | 545 var o = new api.AutoscalersScopedListWarning(); |
| 546 buildCounterAutoscalersScopedListWarning++; | 546 buildCounterAutoscalersScopedListWarning++; |
| 547 if (buildCounterAutoscalersScopedListWarning < 3) { | 547 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 548 o.code = "foo"; | 548 o.code = "foo"; |
| 549 o.data = buildUnnamed731(); | 549 o.data = buildUnnamed2434(); |
| 550 o.message = "foo"; | 550 o.message = "foo"; |
| 551 } | 551 } |
| 552 buildCounterAutoscalersScopedListWarning--; | 552 buildCounterAutoscalersScopedListWarning--; |
| 553 return o; | 553 return o; |
| 554 } | 554 } |
| 555 | 555 |
| 556 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { | 556 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { |
| 557 buildCounterAutoscalersScopedListWarning++; | 557 buildCounterAutoscalersScopedListWarning++; |
| 558 if (buildCounterAutoscalersScopedListWarning < 3) { | 558 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 559 unittest.expect(o.code, unittest.equals('foo')); | 559 unittest.expect(o.code, unittest.equals('foo')); |
| 560 checkUnnamed731(o.data); | 560 checkUnnamed2434(o.data); |
| 561 unittest.expect(o.message, unittest.equals('foo')); | 561 unittest.expect(o.message, unittest.equals('foo')); |
| 562 } | 562 } |
| 563 buildCounterAutoscalersScopedListWarning--; | 563 buildCounterAutoscalersScopedListWarning--; |
| 564 } | 564 } |
| 565 | 565 |
| 566 core.int buildCounterAutoscalersScopedList = 0; | 566 core.int buildCounterAutoscalersScopedList = 0; |
| 567 buildAutoscalersScopedList() { | 567 buildAutoscalersScopedList() { |
| 568 var o = new api.AutoscalersScopedList(); | 568 var o = new api.AutoscalersScopedList(); |
| 569 buildCounterAutoscalersScopedList++; | 569 buildCounterAutoscalersScopedList++; |
| 570 if (buildCounterAutoscalersScopedList < 3) { | 570 if (buildCounterAutoscalersScopedList < 3) { |
| 571 o.autoscalers = buildUnnamed730(); | 571 o.autoscalers = buildUnnamed2433(); |
| 572 o.warning = buildAutoscalersScopedListWarning(); | 572 o.warning = buildAutoscalersScopedListWarning(); |
| 573 } | 573 } |
| 574 buildCounterAutoscalersScopedList--; | 574 buildCounterAutoscalersScopedList--; |
| 575 return o; | 575 return o; |
| 576 } | 576 } |
| 577 | 577 |
| 578 checkAutoscalersScopedList(api.AutoscalersScopedList o) { | 578 checkAutoscalersScopedList(api.AutoscalersScopedList o) { |
| 579 buildCounterAutoscalersScopedList++; | 579 buildCounterAutoscalersScopedList++; |
| 580 if (buildCounterAutoscalersScopedList < 3) { | 580 if (buildCounterAutoscalersScopedList < 3) { |
| 581 checkUnnamed730(o.autoscalers); | 581 checkUnnamed2433(o.autoscalers); |
| 582 checkAutoscalersScopedListWarning(o.warning); | 582 checkAutoscalersScopedListWarning(o.warning); |
| 583 } | 583 } |
| 584 buildCounterAutoscalersScopedList--; | 584 buildCounterAutoscalersScopedList--; |
| 585 } | 585 } |
| 586 | 586 |
| 587 buildUnnamed732() { | 587 buildUnnamed2435() { |
| 588 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); | 588 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); |
| 589 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 589 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 590 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 590 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 591 return o; | 591 return o; |
| 592 } | 592 } |
| 593 | 593 |
| 594 checkUnnamed732(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 594 checkUnnamed2435(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { |
| 595 unittest.expect(o, unittest.hasLength(2)); | 595 unittest.expect(o, unittest.hasLength(2)); |
| 596 checkAutoscalingPolicyCustomMetricUtilization(o[0]); | 596 checkAutoscalingPolicyCustomMetricUtilization(o[0]); |
| 597 checkAutoscalingPolicyCustomMetricUtilization(o[1]); | 597 checkAutoscalingPolicyCustomMetricUtilization(o[1]); |
| 598 } | 598 } |
| 599 | 599 |
| 600 core.int buildCounterAutoscalingPolicy = 0; | 600 core.int buildCounterAutoscalingPolicy = 0; |
| 601 buildAutoscalingPolicy() { | 601 buildAutoscalingPolicy() { |
| 602 var o = new api.AutoscalingPolicy(); | 602 var o = new api.AutoscalingPolicy(); |
| 603 buildCounterAutoscalingPolicy++; | 603 buildCounterAutoscalingPolicy++; |
| 604 if (buildCounterAutoscalingPolicy < 3) { | 604 if (buildCounterAutoscalingPolicy < 3) { |
| 605 o.coolDownPeriodSec = 42; | 605 o.coolDownPeriodSec = 42; |
| 606 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); | 606 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); |
| 607 o.customMetricUtilizations = buildUnnamed732(); | 607 o.customMetricUtilizations = buildUnnamed2435(); |
| 608 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); | 608 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); |
| 609 o.maxNumReplicas = 42; | 609 o.maxNumReplicas = 42; |
| 610 o.minNumReplicas = 42; | 610 o.minNumReplicas = 42; |
| 611 } | 611 } |
| 612 buildCounterAutoscalingPolicy--; | 612 buildCounterAutoscalingPolicy--; |
| 613 return o; | 613 return o; |
| 614 } | 614 } |
| 615 | 615 |
| 616 checkAutoscalingPolicy(api.AutoscalingPolicy o) { | 616 checkAutoscalingPolicy(api.AutoscalingPolicy o) { |
| 617 buildCounterAutoscalingPolicy++; | 617 buildCounterAutoscalingPolicy++; |
| 618 if (buildCounterAutoscalingPolicy < 3) { | 618 if (buildCounterAutoscalingPolicy < 3) { |
| 619 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); | 619 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); |
| 620 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); | 620 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); |
| 621 checkUnnamed732(o.customMetricUtilizations); | 621 checkUnnamed2435(o.customMetricUtilizations); |
| 622 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); | 622 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); |
| 623 unittest.expect(o.maxNumReplicas, unittest.equals(42)); | 623 unittest.expect(o.maxNumReplicas, unittest.equals(42)); |
| 624 unittest.expect(o.minNumReplicas, unittest.equals(42)); | 624 unittest.expect(o.minNumReplicas, unittest.equals(42)); |
| 625 } | 625 } |
| 626 buildCounterAutoscalingPolicy--; | 626 buildCounterAutoscalingPolicy--; |
| 627 } | 627 } |
| 628 | 628 |
| 629 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; | 629 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; |
| 630 buildAutoscalingPolicyCpuUtilization() { | 630 buildAutoscalingPolicyCpuUtilization() { |
| 631 var o = new api.AutoscalingPolicyCpuUtilization(); | 631 var o = new api.AutoscalingPolicyCpuUtilization(); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 unittest.expect(o.capacityScaler, unittest.equals(42.0)); | 711 unittest.expect(o.capacityScaler, unittest.equals(42.0)); |
| 712 unittest.expect(o.description, unittest.equals('foo')); | 712 unittest.expect(o.description, unittest.equals('foo')); |
| 713 unittest.expect(o.group, unittest.equals('foo')); | 713 unittest.expect(o.group, unittest.equals('foo')); |
| 714 unittest.expect(o.maxRate, unittest.equals(42)); | 714 unittest.expect(o.maxRate, unittest.equals(42)); |
| 715 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); | 715 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); |
| 716 unittest.expect(o.maxUtilization, unittest.equals(42.0)); | 716 unittest.expect(o.maxUtilization, unittest.equals(42.0)); |
| 717 } | 717 } |
| 718 buildCounterBackend--; | 718 buildCounterBackend--; |
| 719 } | 719 } |
| 720 | 720 |
| 721 buildUnnamed733() { | 721 buildUnnamed2436() { |
| 722 var o = new core.List<api.Backend>(); | 722 var o = new core.List<api.Backend>(); |
| 723 o.add(buildBackend()); | 723 o.add(buildBackend()); |
| 724 o.add(buildBackend()); | 724 o.add(buildBackend()); |
| 725 return o; | 725 return o; |
| 726 } | 726 } |
| 727 | 727 |
| 728 checkUnnamed733(core.List<api.Backend> o) { | 728 checkUnnamed2436(core.List<api.Backend> o) { |
| 729 unittest.expect(o, unittest.hasLength(2)); | 729 unittest.expect(o, unittest.hasLength(2)); |
| 730 checkBackend(o[0]); | 730 checkBackend(o[0]); |
| 731 checkBackend(o[1]); | 731 checkBackend(o[1]); |
| 732 } | 732 } |
| 733 | 733 |
| 734 buildUnnamed734() { | 734 buildUnnamed2437() { |
| 735 var o = new core.List<core.String>(); | 735 var o = new core.List<core.String>(); |
| 736 o.add("foo"); | 736 o.add("foo"); |
| 737 o.add("foo"); | 737 o.add("foo"); |
| 738 return o; | 738 return o; |
| 739 } | 739 } |
| 740 | 740 |
| 741 checkUnnamed734(core.List<core.String> o) { | 741 checkUnnamed2437(core.List<core.String> o) { |
| 742 unittest.expect(o, unittest.hasLength(2)); | 742 unittest.expect(o, unittest.hasLength(2)); |
| 743 unittest.expect(o[0], unittest.equals('foo')); | 743 unittest.expect(o[0], unittest.equals('foo')); |
| 744 unittest.expect(o[1], unittest.equals('foo')); | 744 unittest.expect(o[1], unittest.equals('foo')); |
| 745 } | 745 } |
| 746 | 746 |
| 747 core.int buildCounterBackendService = 0; | 747 core.int buildCounterBackendService = 0; |
| 748 buildBackendService() { | 748 buildBackendService() { |
| 749 var o = new api.BackendService(); | 749 var o = new api.BackendService(); |
| 750 buildCounterBackendService++; | 750 buildCounterBackendService++; |
| 751 if (buildCounterBackendService < 3) { | 751 if (buildCounterBackendService < 3) { |
| 752 o.affinityCookieTtlSec = 42; | 752 o.affinityCookieTtlSec = 42; |
| 753 o.backends = buildUnnamed733(); | 753 o.backends = buildUnnamed2436(); |
| 754 o.creationTimestamp = "foo"; | 754 o.creationTimestamp = "foo"; |
| 755 o.description = "foo"; | 755 o.description = "foo"; |
| 756 o.enableCDN = true; | 756 o.enableCDN = true; |
| 757 o.fingerprint = "foo"; | 757 o.fingerprint = "foo"; |
| 758 o.healthChecks = buildUnnamed734(); | 758 o.healthChecks = buildUnnamed2437(); |
| 759 o.id = "foo"; | 759 o.id = "foo"; |
| 760 o.kind = "foo"; | 760 o.kind = "foo"; |
| 761 o.name = "foo"; | 761 o.name = "foo"; |
| 762 o.port = 42; | 762 o.port = 42; |
| 763 o.portName = "foo"; | 763 o.portName = "foo"; |
| 764 o.protocol = "foo"; | 764 o.protocol = "foo"; |
| 765 o.region = "foo"; | 765 o.region = "foo"; |
| 766 o.selfLink = "foo"; | 766 o.selfLink = "foo"; |
| 767 o.sessionAffinity = "foo"; | 767 o.sessionAffinity = "foo"; |
| 768 o.timeoutSec = 42; | 768 o.timeoutSec = 42; |
| 769 } | 769 } |
| 770 buildCounterBackendService--; | 770 buildCounterBackendService--; |
| 771 return o; | 771 return o; |
| 772 } | 772 } |
| 773 | 773 |
| 774 checkBackendService(api.BackendService o) { | 774 checkBackendService(api.BackendService o) { |
| 775 buildCounterBackendService++; | 775 buildCounterBackendService++; |
| 776 if (buildCounterBackendService < 3) { | 776 if (buildCounterBackendService < 3) { |
| 777 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); | 777 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); |
| 778 checkUnnamed733(o.backends); | 778 checkUnnamed2436(o.backends); |
| 779 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 779 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 780 unittest.expect(o.description, unittest.equals('foo')); | 780 unittest.expect(o.description, unittest.equals('foo')); |
| 781 unittest.expect(o.enableCDN, unittest.isTrue); | 781 unittest.expect(o.enableCDN, unittest.isTrue); |
| 782 unittest.expect(o.fingerprint, unittest.equals('foo')); | 782 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 783 checkUnnamed734(o.healthChecks); | 783 checkUnnamed2437(o.healthChecks); |
| 784 unittest.expect(o.id, unittest.equals('foo')); | 784 unittest.expect(o.id, unittest.equals('foo')); |
| 785 unittest.expect(o.kind, unittest.equals('foo')); | 785 unittest.expect(o.kind, unittest.equals('foo')); |
| 786 unittest.expect(o.name, unittest.equals('foo')); | 786 unittest.expect(o.name, unittest.equals('foo')); |
| 787 unittest.expect(o.port, unittest.equals(42)); | 787 unittest.expect(o.port, unittest.equals(42)); |
| 788 unittest.expect(o.portName, unittest.equals('foo')); | 788 unittest.expect(o.portName, unittest.equals('foo')); |
| 789 unittest.expect(o.protocol, unittest.equals('foo')); | 789 unittest.expect(o.protocol, unittest.equals('foo')); |
| 790 unittest.expect(o.region, unittest.equals('foo')); | 790 unittest.expect(o.region, unittest.equals('foo')); |
| 791 unittest.expect(o.selfLink, unittest.equals('foo')); | 791 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 792 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 792 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 793 unittest.expect(o.timeoutSec, unittest.equals(42)); | 793 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 794 } | 794 } |
| 795 buildCounterBackendService--; | 795 buildCounterBackendService--; |
| 796 } | 796 } |
| 797 | 797 |
| 798 buildUnnamed735() { | 798 buildUnnamed2438() { |
| 799 var o = new core.List<api.HealthStatus>(); | 799 var o = new core.List<api.HealthStatus>(); |
| 800 o.add(buildHealthStatus()); | 800 o.add(buildHealthStatus()); |
| 801 o.add(buildHealthStatus()); | 801 o.add(buildHealthStatus()); |
| 802 return o; | 802 return o; |
| 803 } | 803 } |
| 804 | 804 |
| 805 checkUnnamed735(core.List<api.HealthStatus> o) { | 805 checkUnnamed2438(core.List<api.HealthStatus> o) { |
| 806 unittest.expect(o, unittest.hasLength(2)); | 806 unittest.expect(o, unittest.hasLength(2)); |
| 807 checkHealthStatus(o[0]); | 807 checkHealthStatus(o[0]); |
| 808 checkHealthStatus(o[1]); | 808 checkHealthStatus(o[1]); |
| 809 } | 809 } |
| 810 | 810 |
| 811 core.int buildCounterBackendServiceGroupHealth = 0; | 811 core.int buildCounterBackendServiceGroupHealth = 0; |
| 812 buildBackendServiceGroupHealth() { | 812 buildBackendServiceGroupHealth() { |
| 813 var o = new api.BackendServiceGroupHealth(); | 813 var o = new api.BackendServiceGroupHealth(); |
| 814 buildCounterBackendServiceGroupHealth++; | 814 buildCounterBackendServiceGroupHealth++; |
| 815 if (buildCounterBackendServiceGroupHealth < 3) { | 815 if (buildCounterBackendServiceGroupHealth < 3) { |
| 816 o.healthStatus = buildUnnamed735(); | 816 o.healthStatus = buildUnnamed2438(); |
| 817 o.kind = "foo"; | 817 o.kind = "foo"; |
| 818 } | 818 } |
| 819 buildCounterBackendServiceGroupHealth--; | 819 buildCounterBackendServiceGroupHealth--; |
| 820 return o; | 820 return o; |
| 821 } | 821 } |
| 822 | 822 |
| 823 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 823 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 824 buildCounterBackendServiceGroupHealth++; | 824 buildCounterBackendServiceGroupHealth++; |
| 825 if (buildCounterBackendServiceGroupHealth < 3) { | 825 if (buildCounterBackendServiceGroupHealth < 3) { |
| 826 checkUnnamed735(o.healthStatus); | 826 checkUnnamed2438(o.healthStatus); |
| 827 unittest.expect(o.kind, unittest.equals('foo')); | 827 unittest.expect(o.kind, unittest.equals('foo')); |
| 828 } | 828 } |
| 829 buildCounterBackendServiceGroupHealth--; | 829 buildCounterBackendServiceGroupHealth--; |
| 830 } | 830 } |
| 831 | 831 |
| 832 buildUnnamed736() { | 832 buildUnnamed2439() { |
| 833 var o = new core.List<api.BackendService>(); | 833 var o = new core.List<api.BackendService>(); |
| 834 o.add(buildBackendService()); | 834 o.add(buildBackendService()); |
| 835 o.add(buildBackendService()); | 835 o.add(buildBackendService()); |
| 836 return o; | 836 return o; |
| 837 } | 837 } |
| 838 | 838 |
| 839 checkUnnamed736(core.List<api.BackendService> o) { | 839 checkUnnamed2439(core.List<api.BackendService> o) { |
| 840 unittest.expect(o, unittest.hasLength(2)); | 840 unittest.expect(o, unittest.hasLength(2)); |
| 841 checkBackendService(o[0]); | 841 checkBackendService(o[0]); |
| 842 checkBackendService(o[1]); | 842 checkBackendService(o[1]); |
| 843 } | 843 } |
| 844 | 844 |
| 845 core.int buildCounterBackendServiceList = 0; | 845 core.int buildCounterBackendServiceList = 0; |
| 846 buildBackendServiceList() { | 846 buildBackendServiceList() { |
| 847 var o = new api.BackendServiceList(); | 847 var o = new api.BackendServiceList(); |
| 848 buildCounterBackendServiceList++; | 848 buildCounterBackendServiceList++; |
| 849 if (buildCounterBackendServiceList < 3) { | 849 if (buildCounterBackendServiceList < 3) { |
| 850 o.id = "foo"; | 850 o.id = "foo"; |
| 851 o.items = buildUnnamed736(); | 851 o.items = buildUnnamed2439(); |
| 852 o.kind = "foo"; | 852 o.kind = "foo"; |
| 853 o.nextPageToken = "foo"; | 853 o.nextPageToken = "foo"; |
| 854 o.selfLink = "foo"; | 854 o.selfLink = "foo"; |
| 855 } | 855 } |
| 856 buildCounterBackendServiceList--; | 856 buildCounterBackendServiceList--; |
| 857 return o; | 857 return o; |
| 858 } | 858 } |
| 859 | 859 |
| 860 checkBackendServiceList(api.BackendServiceList o) { | 860 checkBackendServiceList(api.BackendServiceList o) { |
| 861 buildCounterBackendServiceList++; | 861 buildCounterBackendServiceList++; |
| 862 if (buildCounterBackendServiceList < 3) { | 862 if (buildCounterBackendServiceList < 3) { |
| 863 unittest.expect(o.id, unittest.equals('foo')); | 863 unittest.expect(o.id, unittest.equals('foo')); |
| 864 checkUnnamed736(o.items); | 864 checkUnnamed2439(o.items); |
| 865 unittest.expect(o.kind, unittest.equals('foo')); | 865 unittest.expect(o.kind, unittest.equals('foo')); |
| 866 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 866 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 867 unittest.expect(o.selfLink, unittest.equals('foo')); | 867 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 868 } | 868 } |
| 869 buildCounterBackendServiceList--; | 869 buildCounterBackendServiceList--; |
| 870 } | 870 } |
| 871 | 871 |
| 872 core.int buildCounterCacheInvalidationRule = 0; | 872 core.int buildCounterCacheInvalidationRule = 0; |
| 873 buildCacheInvalidationRule() { | 873 buildCacheInvalidationRule() { |
| 874 var o = new api.CacheInvalidationRule(); | 874 var o = new api.CacheInvalidationRule(); |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 if (buildCounterDeprecationStatus < 3) { | 950 if (buildCounterDeprecationStatus < 3) { |
| 951 unittest.expect(o.deleted, unittest.equals('foo')); | 951 unittest.expect(o.deleted, unittest.equals('foo')); |
| 952 unittest.expect(o.deprecated, unittest.equals('foo')); | 952 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 953 unittest.expect(o.obsolete, unittest.equals('foo')); | 953 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 954 unittest.expect(o.replacement, unittest.equals('foo')); | 954 unittest.expect(o.replacement, unittest.equals('foo')); |
| 955 unittest.expect(o.state, unittest.equals('foo')); | 955 unittest.expect(o.state, unittest.equals('foo')); |
| 956 } | 956 } |
| 957 buildCounterDeprecationStatus--; | 957 buildCounterDeprecationStatus--; |
| 958 } | 958 } |
| 959 | 959 |
| 960 buildUnnamed737() { | 960 buildUnnamed2440() { |
| 961 var o = new core.List<core.String>(); | 961 var o = new core.List<core.String>(); |
| 962 o.add("foo"); | 962 o.add("foo"); |
| 963 o.add("foo"); | 963 o.add("foo"); |
| 964 return o; | 964 return o; |
| 965 } | 965 } |
| 966 | 966 |
| 967 checkUnnamed737(core.List<core.String> o) { | 967 checkUnnamed2440(core.List<core.String> o) { |
| 968 unittest.expect(o, unittest.hasLength(2)); | 968 unittest.expect(o, unittest.hasLength(2)); |
| 969 unittest.expect(o[0], unittest.equals('foo')); | 969 unittest.expect(o[0], unittest.equals('foo')); |
| 970 unittest.expect(o[1], unittest.equals('foo')); | 970 unittest.expect(o[1], unittest.equals('foo')); |
| 971 } | 971 } |
| 972 | 972 |
| 973 buildUnnamed738() { | 973 buildUnnamed2441() { |
| 974 var o = new core.List<core.String>(); | 974 var o = new core.List<core.String>(); |
| 975 o.add("foo"); | 975 o.add("foo"); |
| 976 o.add("foo"); | 976 o.add("foo"); |
| 977 return o; | 977 return o; |
| 978 } | 978 } |
| 979 | 979 |
| 980 checkUnnamed738(core.List<core.String> o) { | 980 checkUnnamed2441(core.List<core.String> o) { |
| 981 unittest.expect(o, unittest.hasLength(2)); | 981 unittest.expect(o, unittest.hasLength(2)); |
| 982 unittest.expect(o[0], unittest.equals('foo')); | 982 unittest.expect(o[0], unittest.equals('foo')); |
| 983 unittest.expect(o[1], unittest.equals('foo')); | 983 unittest.expect(o[1], unittest.equals('foo')); |
| 984 } | 984 } |
| 985 | 985 |
| 986 core.int buildCounterDisk = 0; | 986 core.int buildCounterDisk = 0; |
| 987 buildDisk() { | 987 buildDisk() { |
| 988 var o = new api.Disk(); | 988 var o = new api.Disk(); |
| 989 buildCounterDisk++; | 989 buildCounterDisk++; |
| 990 if (buildCounterDisk < 3) { | 990 if (buildCounterDisk < 3) { |
| 991 o.creationTimestamp = "foo"; | 991 o.creationTimestamp = "foo"; |
| 992 o.description = "foo"; | 992 o.description = "foo"; |
| 993 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 993 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 994 o.id = "foo"; | 994 o.id = "foo"; |
| 995 o.kind = "foo"; | 995 o.kind = "foo"; |
| 996 o.lastAttachTimestamp = "foo"; | 996 o.lastAttachTimestamp = "foo"; |
| 997 o.lastDetachTimestamp = "foo"; | 997 o.lastDetachTimestamp = "foo"; |
| 998 o.licenses = buildUnnamed737(); | 998 o.licenses = buildUnnamed2440(); |
| 999 o.name = "foo"; | 999 o.name = "foo"; |
| 1000 o.options = "foo"; | 1000 o.options = "foo"; |
| 1001 o.selfLink = "foo"; | 1001 o.selfLink = "foo"; |
| 1002 o.sizeGb = "foo"; | 1002 o.sizeGb = "foo"; |
| 1003 o.sourceImage = "foo"; | 1003 o.sourceImage = "foo"; |
| 1004 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); | 1004 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); |
| 1005 o.sourceImageId = "foo"; | 1005 o.sourceImageId = "foo"; |
| 1006 o.sourceSnapshot = "foo"; | 1006 o.sourceSnapshot = "foo"; |
| 1007 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); | 1007 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 1008 o.sourceSnapshotId = "foo"; | 1008 o.sourceSnapshotId = "foo"; |
| 1009 o.status = "foo"; | 1009 o.status = "foo"; |
| 1010 o.type = "foo"; | 1010 o.type = "foo"; |
| 1011 o.users = buildUnnamed738(); | 1011 o.users = buildUnnamed2441(); |
| 1012 o.zone = "foo"; | 1012 o.zone = "foo"; |
| 1013 } | 1013 } |
| 1014 buildCounterDisk--; | 1014 buildCounterDisk--; |
| 1015 return o; | 1015 return o; |
| 1016 } | 1016 } |
| 1017 | 1017 |
| 1018 checkDisk(api.Disk o) { | 1018 checkDisk(api.Disk o) { |
| 1019 buildCounterDisk++; | 1019 buildCounterDisk++; |
| 1020 if (buildCounterDisk < 3) { | 1020 if (buildCounterDisk < 3) { |
| 1021 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1021 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1022 unittest.expect(o.description, unittest.equals('foo')); | 1022 unittest.expect(o.description, unittest.equals('foo')); |
| 1023 checkCustomerEncryptionKey(o.diskEncryptionKey); | 1023 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 1024 unittest.expect(o.id, unittest.equals('foo')); | 1024 unittest.expect(o.id, unittest.equals('foo')); |
| 1025 unittest.expect(o.kind, unittest.equals('foo')); | 1025 unittest.expect(o.kind, unittest.equals('foo')); |
| 1026 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); | 1026 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); |
| 1027 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); | 1027 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); |
| 1028 checkUnnamed737(o.licenses); | 1028 checkUnnamed2440(o.licenses); |
| 1029 unittest.expect(o.name, unittest.equals('foo')); | 1029 unittest.expect(o.name, unittest.equals('foo')); |
| 1030 unittest.expect(o.options, unittest.equals('foo')); | 1030 unittest.expect(o.options, unittest.equals('foo')); |
| 1031 unittest.expect(o.selfLink, unittest.equals('foo')); | 1031 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1032 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1032 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1033 unittest.expect(o.sourceImage, unittest.equals('foo')); | 1033 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 1034 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); | 1034 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); |
| 1035 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 1035 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 1036 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 1036 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 1037 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); | 1037 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); |
| 1038 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 1038 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 1039 unittest.expect(o.status, unittest.equals('foo')); | 1039 unittest.expect(o.status, unittest.equals('foo')); |
| 1040 unittest.expect(o.type, unittest.equals('foo')); | 1040 unittest.expect(o.type, unittest.equals('foo')); |
| 1041 checkUnnamed738(o.users); | 1041 checkUnnamed2441(o.users); |
| 1042 unittest.expect(o.zone, unittest.equals('foo')); | 1042 unittest.expect(o.zone, unittest.equals('foo')); |
| 1043 } | 1043 } |
| 1044 buildCounterDisk--; | 1044 buildCounterDisk--; |
| 1045 } | 1045 } |
| 1046 | 1046 |
| 1047 buildUnnamed739() { | 1047 buildUnnamed2442() { |
| 1048 var o = new core.Map<core.String, api.DisksScopedList>(); | 1048 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 1049 o["x"] = buildDisksScopedList(); | 1049 o["x"] = buildDisksScopedList(); |
| 1050 o["y"] = buildDisksScopedList(); | 1050 o["y"] = buildDisksScopedList(); |
| 1051 return o; | 1051 return o; |
| 1052 } | 1052 } |
| 1053 | 1053 |
| 1054 checkUnnamed739(core.Map<core.String, api.DisksScopedList> o) { | 1054 checkUnnamed2442(core.Map<core.String, api.DisksScopedList> o) { |
| 1055 unittest.expect(o, unittest.hasLength(2)); | 1055 unittest.expect(o, unittest.hasLength(2)); |
| 1056 checkDisksScopedList(o["x"]); | 1056 checkDisksScopedList(o["x"]); |
| 1057 checkDisksScopedList(o["y"]); | 1057 checkDisksScopedList(o["y"]); |
| 1058 } | 1058 } |
| 1059 | 1059 |
| 1060 core.int buildCounterDiskAggregatedList = 0; | 1060 core.int buildCounterDiskAggregatedList = 0; |
| 1061 buildDiskAggregatedList() { | 1061 buildDiskAggregatedList() { |
| 1062 var o = new api.DiskAggregatedList(); | 1062 var o = new api.DiskAggregatedList(); |
| 1063 buildCounterDiskAggregatedList++; | 1063 buildCounterDiskAggregatedList++; |
| 1064 if (buildCounterDiskAggregatedList < 3) { | 1064 if (buildCounterDiskAggregatedList < 3) { |
| 1065 o.id = "foo"; | 1065 o.id = "foo"; |
| 1066 o.items = buildUnnamed739(); | 1066 o.items = buildUnnamed2442(); |
| 1067 o.kind = "foo"; | 1067 o.kind = "foo"; |
| 1068 o.nextPageToken = "foo"; | 1068 o.nextPageToken = "foo"; |
| 1069 o.selfLink = "foo"; | 1069 o.selfLink = "foo"; |
| 1070 } | 1070 } |
| 1071 buildCounterDiskAggregatedList--; | 1071 buildCounterDiskAggregatedList--; |
| 1072 return o; | 1072 return o; |
| 1073 } | 1073 } |
| 1074 | 1074 |
| 1075 checkDiskAggregatedList(api.DiskAggregatedList o) { | 1075 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 1076 buildCounterDiskAggregatedList++; | 1076 buildCounterDiskAggregatedList++; |
| 1077 if (buildCounterDiskAggregatedList < 3) { | 1077 if (buildCounterDiskAggregatedList < 3) { |
| 1078 unittest.expect(o.id, unittest.equals('foo')); | 1078 unittest.expect(o.id, unittest.equals('foo')); |
| 1079 checkUnnamed739(o.items); | 1079 checkUnnamed2442(o.items); |
| 1080 unittest.expect(o.kind, unittest.equals('foo')); | 1080 unittest.expect(o.kind, unittest.equals('foo')); |
| 1081 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1081 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1082 unittest.expect(o.selfLink, unittest.equals('foo')); | 1082 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1083 } | 1083 } |
| 1084 buildCounterDiskAggregatedList--; | 1084 buildCounterDiskAggregatedList--; |
| 1085 } | 1085 } |
| 1086 | 1086 |
| 1087 buildUnnamed740() { | 1087 buildUnnamed2443() { |
| 1088 var o = new core.List<api.Disk>(); | 1088 var o = new core.List<api.Disk>(); |
| 1089 o.add(buildDisk()); | 1089 o.add(buildDisk()); |
| 1090 o.add(buildDisk()); | 1090 o.add(buildDisk()); |
| 1091 return o; | 1091 return o; |
| 1092 } | 1092 } |
| 1093 | 1093 |
| 1094 checkUnnamed740(core.List<api.Disk> o) { | 1094 checkUnnamed2443(core.List<api.Disk> o) { |
| 1095 unittest.expect(o, unittest.hasLength(2)); | 1095 unittest.expect(o, unittest.hasLength(2)); |
| 1096 checkDisk(o[0]); | 1096 checkDisk(o[0]); |
| 1097 checkDisk(o[1]); | 1097 checkDisk(o[1]); |
| 1098 } | 1098 } |
| 1099 | 1099 |
| 1100 core.int buildCounterDiskList = 0; | 1100 core.int buildCounterDiskList = 0; |
| 1101 buildDiskList() { | 1101 buildDiskList() { |
| 1102 var o = new api.DiskList(); | 1102 var o = new api.DiskList(); |
| 1103 buildCounterDiskList++; | 1103 buildCounterDiskList++; |
| 1104 if (buildCounterDiskList < 3) { | 1104 if (buildCounterDiskList < 3) { |
| 1105 o.id = "foo"; | 1105 o.id = "foo"; |
| 1106 o.items = buildUnnamed740(); | 1106 o.items = buildUnnamed2443(); |
| 1107 o.kind = "foo"; | 1107 o.kind = "foo"; |
| 1108 o.nextPageToken = "foo"; | 1108 o.nextPageToken = "foo"; |
| 1109 o.selfLink = "foo"; | 1109 o.selfLink = "foo"; |
| 1110 } | 1110 } |
| 1111 buildCounterDiskList--; | 1111 buildCounterDiskList--; |
| 1112 return o; | 1112 return o; |
| 1113 } | 1113 } |
| 1114 | 1114 |
| 1115 checkDiskList(api.DiskList o) { | 1115 checkDiskList(api.DiskList o) { |
| 1116 buildCounterDiskList++; | 1116 buildCounterDiskList++; |
| 1117 if (buildCounterDiskList < 3) { | 1117 if (buildCounterDiskList < 3) { |
| 1118 unittest.expect(o.id, unittest.equals('foo')); | 1118 unittest.expect(o.id, unittest.equals('foo')); |
| 1119 checkUnnamed740(o.items); | 1119 checkUnnamed2443(o.items); |
| 1120 unittest.expect(o.kind, unittest.equals('foo')); | 1120 unittest.expect(o.kind, unittest.equals('foo')); |
| 1121 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1121 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1122 unittest.expect(o.selfLink, unittest.equals('foo')); | 1122 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1123 } | 1123 } |
| 1124 buildCounterDiskList--; | 1124 buildCounterDiskList--; |
| 1125 } | 1125 } |
| 1126 | 1126 |
| 1127 core.int buildCounterDiskMoveRequest = 0; | 1127 core.int buildCounterDiskMoveRequest = 0; |
| 1128 buildDiskMoveRequest() { | 1128 buildDiskMoveRequest() { |
| 1129 var o = new api.DiskMoveRequest(); | 1129 var o = new api.DiskMoveRequest(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1175 unittest.expect(o.id, unittest.equals('foo')); | 1175 unittest.expect(o.id, unittest.equals('foo')); |
| 1176 unittest.expect(o.kind, unittest.equals('foo')); | 1176 unittest.expect(o.kind, unittest.equals('foo')); |
| 1177 unittest.expect(o.name, unittest.equals('foo')); | 1177 unittest.expect(o.name, unittest.equals('foo')); |
| 1178 unittest.expect(o.selfLink, unittest.equals('foo')); | 1178 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1179 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 1179 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 1180 unittest.expect(o.zone, unittest.equals('foo')); | 1180 unittest.expect(o.zone, unittest.equals('foo')); |
| 1181 } | 1181 } |
| 1182 buildCounterDiskType--; | 1182 buildCounterDiskType--; |
| 1183 } | 1183 } |
| 1184 | 1184 |
| 1185 buildUnnamed741() { | 1185 buildUnnamed2444() { |
| 1186 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 1186 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 1187 o["x"] = buildDiskTypesScopedList(); | 1187 o["x"] = buildDiskTypesScopedList(); |
| 1188 o["y"] = buildDiskTypesScopedList(); | 1188 o["y"] = buildDiskTypesScopedList(); |
| 1189 return o; | 1189 return o; |
| 1190 } | 1190 } |
| 1191 | 1191 |
| 1192 checkUnnamed741(core.Map<core.String, api.DiskTypesScopedList> o) { | 1192 checkUnnamed2444(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 1193 unittest.expect(o, unittest.hasLength(2)); | 1193 unittest.expect(o, unittest.hasLength(2)); |
| 1194 checkDiskTypesScopedList(o["x"]); | 1194 checkDiskTypesScopedList(o["x"]); |
| 1195 checkDiskTypesScopedList(o["y"]); | 1195 checkDiskTypesScopedList(o["y"]); |
| 1196 } | 1196 } |
| 1197 | 1197 |
| 1198 core.int buildCounterDiskTypeAggregatedList = 0; | 1198 core.int buildCounterDiskTypeAggregatedList = 0; |
| 1199 buildDiskTypeAggregatedList() { | 1199 buildDiskTypeAggregatedList() { |
| 1200 var o = new api.DiskTypeAggregatedList(); | 1200 var o = new api.DiskTypeAggregatedList(); |
| 1201 buildCounterDiskTypeAggregatedList++; | 1201 buildCounterDiskTypeAggregatedList++; |
| 1202 if (buildCounterDiskTypeAggregatedList < 3) { | 1202 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1203 o.id = "foo"; | 1203 o.id = "foo"; |
| 1204 o.items = buildUnnamed741(); | 1204 o.items = buildUnnamed2444(); |
| 1205 o.kind = "foo"; | 1205 o.kind = "foo"; |
| 1206 o.nextPageToken = "foo"; | 1206 o.nextPageToken = "foo"; |
| 1207 o.selfLink = "foo"; | 1207 o.selfLink = "foo"; |
| 1208 } | 1208 } |
| 1209 buildCounterDiskTypeAggregatedList--; | 1209 buildCounterDiskTypeAggregatedList--; |
| 1210 return o; | 1210 return o; |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 1213 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 1214 buildCounterDiskTypeAggregatedList++; | 1214 buildCounterDiskTypeAggregatedList++; |
| 1215 if (buildCounterDiskTypeAggregatedList < 3) { | 1215 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1216 unittest.expect(o.id, unittest.equals('foo')); | 1216 unittest.expect(o.id, unittest.equals('foo')); |
| 1217 checkUnnamed741(o.items); | 1217 checkUnnamed2444(o.items); |
| 1218 unittest.expect(o.kind, unittest.equals('foo')); | 1218 unittest.expect(o.kind, unittest.equals('foo')); |
| 1219 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1219 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1220 unittest.expect(o.selfLink, unittest.equals('foo')); | 1220 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1221 } | 1221 } |
| 1222 buildCounterDiskTypeAggregatedList--; | 1222 buildCounterDiskTypeAggregatedList--; |
| 1223 } | 1223 } |
| 1224 | 1224 |
| 1225 buildUnnamed742() { | 1225 buildUnnamed2445() { |
| 1226 var o = new core.List<api.DiskType>(); | 1226 var o = new core.List<api.DiskType>(); |
| 1227 o.add(buildDiskType()); | 1227 o.add(buildDiskType()); |
| 1228 o.add(buildDiskType()); | 1228 o.add(buildDiskType()); |
| 1229 return o; | 1229 return o; |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 checkUnnamed742(core.List<api.DiskType> o) { | 1232 checkUnnamed2445(core.List<api.DiskType> o) { |
| 1233 unittest.expect(o, unittest.hasLength(2)); | 1233 unittest.expect(o, unittest.hasLength(2)); |
| 1234 checkDiskType(o[0]); | 1234 checkDiskType(o[0]); |
| 1235 checkDiskType(o[1]); | 1235 checkDiskType(o[1]); |
| 1236 } | 1236 } |
| 1237 | 1237 |
| 1238 core.int buildCounterDiskTypeList = 0; | 1238 core.int buildCounterDiskTypeList = 0; |
| 1239 buildDiskTypeList() { | 1239 buildDiskTypeList() { |
| 1240 var o = new api.DiskTypeList(); | 1240 var o = new api.DiskTypeList(); |
| 1241 buildCounterDiskTypeList++; | 1241 buildCounterDiskTypeList++; |
| 1242 if (buildCounterDiskTypeList < 3) { | 1242 if (buildCounterDiskTypeList < 3) { |
| 1243 o.id = "foo"; | 1243 o.id = "foo"; |
| 1244 o.items = buildUnnamed742(); | 1244 o.items = buildUnnamed2445(); |
| 1245 o.kind = "foo"; | 1245 o.kind = "foo"; |
| 1246 o.nextPageToken = "foo"; | 1246 o.nextPageToken = "foo"; |
| 1247 o.selfLink = "foo"; | 1247 o.selfLink = "foo"; |
| 1248 } | 1248 } |
| 1249 buildCounterDiskTypeList--; | 1249 buildCounterDiskTypeList--; |
| 1250 return o; | 1250 return o; |
| 1251 } | 1251 } |
| 1252 | 1252 |
| 1253 checkDiskTypeList(api.DiskTypeList o) { | 1253 checkDiskTypeList(api.DiskTypeList o) { |
| 1254 buildCounterDiskTypeList++; | 1254 buildCounterDiskTypeList++; |
| 1255 if (buildCounterDiskTypeList < 3) { | 1255 if (buildCounterDiskTypeList < 3) { |
| 1256 unittest.expect(o.id, unittest.equals('foo')); | 1256 unittest.expect(o.id, unittest.equals('foo')); |
| 1257 checkUnnamed742(o.items); | 1257 checkUnnamed2445(o.items); |
| 1258 unittest.expect(o.kind, unittest.equals('foo')); | 1258 unittest.expect(o.kind, unittest.equals('foo')); |
| 1259 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1259 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1260 unittest.expect(o.selfLink, unittest.equals('foo')); | 1260 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1261 } | 1261 } |
| 1262 buildCounterDiskTypeList--; | 1262 buildCounterDiskTypeList--; |
| 1263 } | 1263 } |
| 1264 | 1264 |
| 1265 buildUnnamed743() { | 1265 buildUnnamed2446() { |
| 1266 var o = new core.List<api.DiskType>(); | 1266 var o = new core.List<api.DiskType>(); |
| 1267 o.add(buildDiskType()); | 1267 o.add(buildDiskType()); |
| 1268 o.add(buildDiskType()); | 1268 o.add(buildDiskType()); |
| 1269 return o; | 1269 return o; |
| 1270 } | 1270 } |
| 1271 | 1271 |
| 1272 checkUnnamed743(core.List<api.DiskType> o) { | 1272 checkUnnamed2446(core.List<api.DiskType> o) { |
| 1273 unittest.expect(o, unittest.hasLength(2)); | 1273 unittest.expect(o, unittest.hasLength(2)); |
| 1274 checkDiskType(o[0]); | 1274 checkDiskType(o[0]); |
| 1275 checkDiskType(o[1]); | 1275 checkDiskType(o[1]); |
| 1276 } | 1276 } |
| 1277 | 1277 |
| 1278 core.int buildCounterDiskTypesScopedListWarningData = 0; | 1278 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 1279 buildDiskTypesScopedListWarningData() { | 1279 buildDiskTypesScopedListWarningData() { |
| 1280 var o = new api.DiskTypesScopedListWarningData(); | 1280 var o = new api.DiskTypesScopedListWarningData(); |
| 1281 buildCounterDiskTypesScopedListWarningData++; | 1281 buildCounterDiskTypesScopedListWarningData++; |
| 1282 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1282 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1283 o.key = "foo"; | 1283 o.key = "foo"; |
| 1284 o.value = "foo"; | 1284 o.value = "foo"; |
| 1285 } | 1285 } |
| 1286 buildCounterDiskTypesScopedListWarningData--; | 1286 buildCounterDiskTypesScopedListWarningData--; |
| 1287 return o; | 1287 return o; |
| 1288 } | 1288 } |
| 1289 | 1289 |
| 1290 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 1290 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 1291 buildCounterDiskTypesScopedListWarningData++; | 1291 buildCounterDiskTypesScopedListWarningData++; |
| 1292 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1292 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1293 unittest.expect(o.key, unittest.equals('foo')); | 1293 unittest.expect(o.key, unittest.equals('foo')); |
| 1294 unittest.expect(o.value, unittest.equals('foo')); | 1294 unittest.expect(o.value, unittest.equals('foo')); |
| 1295 } | 1295 } |
| 1296 buildCounterDiskTypesScopedListWarningData--; | 1296 buildCounterDiskTypesScopedListWarningData--; |
| 1297 } | 1297 } |
| 1298 | 1298 |
| 1299 buildUnnamed744() { | 1299 buildUnnamed2447() { |
| 1300 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 1300 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 1301 o.add(buildDiskTypesScopedListWarningData()); | 1301 o.add(buildDiskTypesScopedListWarningData()); |
| 1302 o.add(buildDiskTypesScopedListWarningData()); | 1302 o.add(buildDiskTypesScopedListWarningData()); |
| 1303 return o; | 1303 return o; |
| 1304 } | 1304 } |
| 1305 | 1305 |
| 1306 checkUnnamed744(core.List<api.DiskTypesScopedListWarningData> o) { | 1306 checkUnnamed2447(core.List<api.DiskTypesScopedListWarningData> o) { |
| 1307 unittest.expect(o, unittest.hasLength(2)); | 1307 unittest.expect(o, unittest.hasLength(2)); |
| 1308 checkDiskTypesScopedListWarningData(o[0]); | 1308 checkDiskTypesScopedListWarningData(o[0]); |
| 1309 checkDiskTypesScopedListWarningData(o[1]); | 1309 checkDiskTypesScopedListWarningData(o[1]); |
| 1310 } | 1310 } |
| 1311 | 1311 |
| 1312 core.int buildCounterDiskTypesScopedListWarning = 0; | 1312 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 1313 buildDiskTypesScopedListWarning() { | 1313 buildDiskTypesScopedListWarning() { |
| 1314 var o = new api.DiskTypesScopedListWarning(); | 1314 var o = new api.DiskTypesScopedListWarning(); |
| 1315 buildCounterDiskTypesScopedListWarning++; | 1315 buildCounterDiskTypesScopedListWarning++; |
| 1316 if (buildCounterDiskTypesScopedListWarning < 3) { | 1316 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1317 o.code = "foo"; | 1317 o.code = "foo"; |
| 1318 o.data = buildUnnamed744(); | 1318 o.data = buildUnnamed2447(); |
| 1319 o.message = "foo"; | 1319 o.message = "foo"; |
| 1320 } | 1320 } |
| 1321 buildCounterDiskTypesScopedListWarning--; | 1321 buildCounterDiskTypesScopedListWarning--; |
| 1322 return o; | 1322 return o; |
| 1323 } | 1323 } |
| 1324 | 1324 |
| 1325 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 1325 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 1326 buildCounterDiskTypesScopedListWarning++; | 1326 buildCounterDiskTypesScopedListWarning++; |
| 1327 if (buildCounterDiskTypesScopedListWarning < 3) { | 1327 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1328 unittest.expect(o.code, unittest.equals('foo')); | 1328 unittest.expect(o.code, unittest.equals('foo')); |
| 1329 checkUnnamed744(o.data); | 1329 checkUnnamed2447(o.data); |
| 1330 unittest.expect(o.message, unittest.equals('foo')); | 1330 unittest.expect(o.message, unittest.equals('foo')); |
| 1331 } | 1331 } |
| 1332 buildCounterDiskTypesScopedListWarning--; | 1332 buildCounterDiskTypesScopedListWarning--; |
| 1333 } | 1333 } |
| 1334 | 1334 |
| 1335 core.int buildCounterDiskTypesScopedList = 0; | 1335 core.int buildCounterDiskTypesScopedList = 0; |
| 1336 buildDiskTypesScopedList() { | 1336 buildDiskTypesScopedList() { |
| 1337 var o = new api.DiskTypesScopedList(); | 1337 var o = new api.DiskTypesScopedList(); |
| 1338 buildCounterDiskTypesScopedList++; | 1338 buildCounterDiskTypesScopedList++; |
| 1339 if (buildCounterDiskTypesScopedList < 3) { | 1339 if (buildCounterDiskTypesScopedList < 3) { |
| 1340 o.diskTypes = buildUnnamed743(); | 1340 o.diskTypes = buildUnnamed2446(); |
| 1341 o.warning = buildDiskTypesScopedListWarning(); | 1341 o.warning = buildDiskTypesScopedListWarning(); |
| 1342 } | 1342 } |
| 1343 buildCounterDiskTypesScopedList--; | 1343 buildCounterDiskTypesScopedList--; |
| 1344 return o; | 1344 return o; |
| 1345 } | 1345 } |
| 1346 | 1346 |
| 1347 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 1347 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 1348 buildCounterDiskTypesScopedList++; | 1348 buildCounterDiskTypesScopedList++; |
| 1349 if (buildCounterDiskTypesScopedList < 3) { | 1349 if (buildCounterDiskTypesScopedList < 3) { |
| 1350 checkUnnamed743(o.diskTypes); | 1350 checkUnnamed2446(o.diskTypes); |
| 1351 checkDiskTypesScopedListWarning(o.warning); | 1351 checkDiskTypesScopedListWarning(o.warning); |
| 1352 } | 1352 } |
| 1353 buildCounterDiskTypesScopedList--; | 1353 buildCounterDiskTypesScopedList--; |
| 1354 } | 1354 } |
| 1355 | 1355 |
| 1356 core.int buildCounterDisksResizeRequest = 0; | 1356 core.int buildCounterDisksResizeRequest = 0; |
| 1357 buildDisksResizeRequest() { | 1357 buildDisksResizeRequest() { |
| 1358 var o = new api.DisksResizeRequest(); | 1358 var o = new api.DisksResizeRequest(); |
| 1359 buildCounterDisksResizeRequest++; | 1359 buildCounterDisksResizeRequest++; |
| 1360 if (buildCounterDisksResizeRequest < 3) { | 1360 if (buildCounterDisksResizeRequest < 3) { |
| 1361 o.sizeGb = "foo"; | 1361 o.sizeGb = "foo"; |
| 1362 } | 1362 } |
| 1363 buildCounterDisksResizeRequest--; | 1363 buildCounterDisksResizeRequest--; |
| 1364 return o; | 1364 return o; |
| 1365 } | 1365 } |
| 1366 | 1366 |
| 1367 checkDisksResizeRequest(api.DisksResizeRequest o) { | 1367 checkDisksResizeRequest(api.DisksResizeRequest o) { |
| 1368 buildCounterDisksResizeRequest++; | 1368 buildCounterDisksResizeRequest++; |
| 1369 if (buildCounterDisksResizeRequest < 3) { | 1369 if (buildCounterDisksResizeRequest < 3) { |
| 1370 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1370 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1371 } | 1371 } |
| 1372 buildCounterDisksResizeRequest--; | 1372 buildCounterDisksResizeRequest--; |
| 1373 } | 1373 } |
| 1374 | 1374 |
| 1375 buildUnnamed745() { | 1375 buildUnnamed2448() { |
| 1376 var o = new core.List<api.Disk>(); | 1376 var o = new core.List<api.Disk>(); |
| 1377 o.add(buildDisk()); | 1377 o.add(buildDisk()); |
| 1378 o.add(buildDisk()); | 1378 o.add(buildDisk()); |
| 1379 return o; | 1379 return o; |
| 1380 } | 1380 } |
| 1381 | 1381 |
| 1382 checkUnnamed745(core.List<api.Disk> o) { | 1382 checkUnnamed2448(core.List<api.Disk> o) { |
| 1383 unittest.expect(o, unittest.hasLength(2)); | 1383 unittest.expect(o, unittest.hasLength(2)); |
| 1384 checkDisk(o[0]); | 1384 checkDisk(o[0]); |
| 1385 checkDisk(o[1]); | 1385 checkDisk(o[1]); |
| 1386 } | 1386 } |
| 1387 | 1387 |
| 1388 core.int buildCounterDisksScopedListWarningData = 0; | 1388 core.int buildCounterDisksScopedListWarningData = 0; |
| 1389 buildDisksScopedListWarningData() { | 1389 buildDisksScopedListWarningData() { |
| 1390 var o = new api.DisksScopedListWarningData(); | 1390 var o = new api.DisksScopedListWarningData(); |
| 1391 buildCounterDisksScopedListWarningData++; | 1391 buildCounterDisksScopedListWarningData++; |
| 1392 if (buildCounterDisksScopedListWarningData < 3) { | 1392 if (buildCounterDisksScopedListWarningData < 3) { |
| 1393 o.key = "foo"; | 1393 o.key = "foo"; |
| 1394 o.value = "foo"; | 1394 o.value = "foo"; |
| 1395 } | 1395 } |
| 1396 buildCounterDisksScopedListWarningData--; | 1396 buildCounterDisksScopedListWarningData--; |
| 1397 return o; | 1397 return o; |
| 1398 } | 1398 } |
| 1399 | 1399 |
| 1400 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 1400 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 1401 buildCounterDisksScopedListWarningData++; | 1401 buildCounterDisksScopedListWarningData++; |
| 1402 if (buildCounterDisksScopedListWarningData < 3) { | 1402 if (buildCounterDisksScopedListWarningData < 3) { |
| 1403 unittest.expect(o.key, unittest.equals('foo')); | 1403 unittest.expect(o.key, unittest.equals('foo')); |
| 1404 unittest.expect(o.value, unittest.equals('foo')); | 1404 unittest.expect(o.value, unittest.equals('foo')); |
| 1405 } | 1405 } |
| 1406 buildCounterDisksScopedListWarningData--; | 1406 buildCounterDisksScopedListWarningData--; |
| 1407 } | 1407 } |
| 1408 | 1408 |
| 1409 buildUnnamed746() { | 1409 buildUnnamed2449() { |
| 1410 var o = new core.List<api.DisksScopedListWarningData>(); | 1410 var o = new core.List<api.DisksScopedListWarningData>(); |
| 1411 o.add(buildDisksScopedListWarningData()); | 1411 o.add(buildDisksScopedListWarningData()); |
| 1412 o.add(buildDisksScopedListWarningData()); | 1412 o.add(buildDisksScopedListWarningData()); |
| 1413 return o; | 1413 return o; |
| 1414 } | 1414 } |
| 1415 | 1415 |
| 1416 checkUnnamed746(core.List<api.DisksScopedListWarningData> o) { | 1416 checkUnnamed2449(core.List<api.DisksScopedListWarningData> o) { |
| 1417 unittest.expect(o, unittest.hasLength(2)); | 1417 unittest.expect(o, unittest.hasLength(2)); |
| 1418 checkDisksScopedListWarningData(o[0]); | 1418 checkDisksScopedListWarningData(o[0]); |
| 1419 checkDisksScopedListWarningData(o[1]); | 1419 checkDisksScopedListWarningData(o[1]); |
| 1420 } | 1420 } |
| 1421 | 1421 |
| 1422 core.int buildCounterDisksScopedListWarning = 0; | 1422 core.int buildCounterDisksScopedListWarning = 0; |
| 1423 buildDisksScopedListWarning() { | 1423 buildDisksScopedListWarning() { |
| 1424 var o = new api.DisksScopedListWarning(); | 1424 var o = new api.DisksScopedListWarning(); |
| 1425 buildCounterDisksScopedListWarning++; | 1425 buildCounterDisksScopedListWarning++; |
| 1426 if (buildCounterDisksScopedListWarning < 3) { | 1426 if (buildCounterDisksScopedListWarning < 3) { |
| 1427 o.code = "foo"; | 1427 o.code = "foo"; |
| 1428 o.data = buildUnnamed746(); | 1428 o.data = buildUnnamed2449(); |
| 1429 o.message = "foo"; | 1429 o.message = "foo"; |
| 1430 } | 1430 } |
| 1431 buildCounterDisksScopedListWarning--; | 1431 buildCounterDisksScopedListWarning--; |
| 1432 return o; | 1432 return o; |
| 1433 } | 1433 } |
| 1434 | 1434 |
| 1435 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 1435 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 1436 buildCounterDisksScopedListWarning++; | 1436 buildCounterDisksScopedListWarning++; |
| 1437 if (buildCounterDisksScopedListWarning < 3) { | 1437 if (buildCounterDisksScopedListWarning < 3) { |
| 1438 unittest.expect(o.code, unittest.equals('foo')); | 1438 unittest.expect(o.code, unittest.equals('foo')); |
| 1439 checkUnnamed746(o.data); | 1439 checkUnnamed2449(o.data); |
| 1440 unittest.expect(o.message, unittest.equals('foo')); | 1440 unittest.expect(o.message, unittest.equals('foo')); |
| 1441 } | 1441 } |
| 1442 buildCounterDisksScopedListWarning--; | 1442 buildCounterDisksScopedListWarning--; |
| 1443 } | 1443 } |
| 1444 | 1444 |
| 1445 core.int buildCounterDisksScopedList = 0; | 1445 core.int buildCounterDisksScopedList = 0; |
| 1446 buildDisksScopedList() { | 1446 buildDisksScopedList() { |
| 1447 var o = new api.DisksScopedList(); | 1447 var o = new api.DisksScopedList(); |
| 1448 buildCounterDisksScopedList++; | 1448 buildCounterDisksScopedList++; |
| 1449 if (buildCounterDisksScopedList < 3) { | 1449 if (buildCounterDisksScopedList < 3) { |
| 1450 o.disks = buildUnnamed745(); | 1450 o.disks = buildUnnamed2448(); |
| 1451 o.warning = buildDisksScopedListWarning(); | 1451 o.warning = buildDisksScopedListWarning(); |
| 1452 } | 1452 } |
| 1453 buildCounterDisksScopedList--; | 1453 buildCounterDisksScopedList--; |
| 1454 return o; | 1454 return o; |
| 1455 } | 1455 } |
| 1456 | 1456 |
| 1457 checkDisksScopedList(api.DisksScopedList o) { | 1457 checkDisksScopedList(api.DisksScopedList o) { |
| 1458 buildCounterDisksScopedList++; | 1458 buildCounterDisksScopedList++; |
| 1459 if (buildCounterDisksScopedList < 3) { | 1459 if (buildCounterDisksScopedList < 3) { |
| 1460 checkUnnamed745(o.disks); | 1460 checkUnnamed2448(o.disks); |
| 1461 checkDisksScopedListWarning(o.warning); | 1461 checkDisksScopedListWarning(o.warning); |
| 1462 } | 1462 } |
| 1463 buildCounterDisksScopedList--; | 1463 buildCounterDisksScopedList--; |
| 1464 } | 1464 } |
| 1465 | 1465 |
| 1466 buildUnnamed747() { | 1466 buildUnnamed2450() { |
| 1467 var o = new core.List<core.String>(); | 1467 var o = new core.List<core.String>(); |
| 1468 o.add("foo"); | 1468 o.add("foo"); |
| 1469 o.add("foo"); | 1469 o.add("foo"); |
| 1470 return o; | 1470 return o; |
| 1471 } | 1471 } |
| 1472 | 1472 |
| 1473 checkUnnamed747(core.List<core.String> o) { | 1473 checkUnnamed2450(core.List<core.String> o) { |
| 1474 unittest.expect(o, unittest.hasLength(2)); | 1474 unittest.expect(o, unittest.hasLength(2)); |
| 1475 unittest.expect(o[0], unittest.equals('foo')); | 1475 unittest.expect(o[0], unittest.equals('foo')); |
| 1476 unittest.expect(o[1], unittest.equals('foo')); | 1476 unittest.expect(o[1], unittest.equals('foo')); |
| 1477 } | 1477 } |
| 1478 | 1478 |
| 1479 core.int buildCounterFirewallAllowed = 0; | 1479 core.int buildCounterFirewallAllowed = 0; |
| 1480 buildFirewallAllowed() { | 1480 buildFirewallAllowed() { |
| 1481 var o = new api.FirewallAllowed(); | 1481 var o = new api.FirewallAllowed(); |
| 1482 buildCounterFirewallAllowed++; | 1482 buildCounterFirewallAllowed++; |
| 1483 if (buildCounterFirewallAllowed < 3) { | 1483 if (buildCounterFirewallAllowed < 3) { |
| 1484 o.IPProtocol = "foo"; | 1484 o.IPProtocol = "foo"; |
| 1485 o.ports = buildUnnamed747(); | 1485 o.ports = buildUnnamed2450(); |
| 1486 } | 1486 } |
| 1487 buildCounterFirewallAllowed--; | 1487 buildCounterFirewallAllowed--; |
| 1488 return o; | 1488 return o; |
| 1489 } | 1489 } |
| 1490 | 1490 |
| 1491 checkFirewallAllowed(api.FirewallAllowed o) { | 1491 checkFirewallAllowed(api.FirewallAllowed o) { |
| 1492 buildCounterFirewallAllowed++; | 1492 buildCounterFirewallAllowed++; |
| 1493 if (buildCounterFirewallAllowed < 3) { | 1493 if (buildCounterFirewallAllowed < 3) { |
| 1494 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1494 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1495 checkUnnamed747(o.ports); | 1495 checkUnnamed2450(o.ports); |
| 1496 } | 1496 } |
| 1497 buildCounterFirewallAllowed--; | 1497 buildCounterFirewallAllowed--; |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 buildUnnamed748() { | 1500 buildUnnamed2451() { |
| 1501 var o = new core.List<api.FirewallAllowed>(); | 1501 var o = new core.List<api.FirewallAllowed>(); |
| 1502 o.add(buildFirewallAllowed()); | 1502 o.add(buildFirewallAllowed()); |
| 1503 o.add(buildFirewallAllowed()); | 1503 o.add(buildFirewallAllowed()); |
| 1504 return o; | 1504 return o; |
| 1505 } | 1505 } |
| 1506 | 1506 |
| 1507 checkUnnamed748(core.List<api.FirewallAllowed> o) { | 1507 checkUnnamed2451(core.List<api.FirewallAllowed> o) { |
| 1508 unittest.expect(o, unittest.hasLength(2)); | 1508 unittest.expect(o, unittest.hasLength(2)); |
| 1509 checkFirewallAllowed(o[0]); | 1509 checkFirewallAllowed(o[0]); |
| 1510 checkFirewallAllowed(o[1]); | 1510 checkFirewallAllowed(o[1]); |
| 1511 } | 1511 } |
| 1512 | 1512 |
| 1513 buildUnnamed749() { | 1513 buildUnnamed2452() { |
| 1514 var o = new core.List<core.String>(); | 1514 var o = new core.List<core.String>(); |
| 1515 o.add("foo"); | 1515 o.add("foo"); |
| 1516 o.add("foo"); | 1516 o.add("foo"); |
| 1517 return o; | 1517 return o; |
| 1518 } | 1518 } |
| 1519 | 1519 |
| 1520 checkUnnamed749(core.List<core.String> o) { | 1520 checkUnnamed2452(core.List<core.String> o) { |
| 1521 unittest.expect(o, unittest.hasLength(2)); | 1521 unittest.expect(o, unittest.hasLength(2)); |
| 1522 unittest.expect(o[0], unittest.equals('foo')); | 1522 unittest.expect(o[0], unittest.equals('foo')); |
| 1523 unittest.expect(o[1], unittest.equals('foo')); | 1523 unittest.expect(o[1], unittest.equals('foo')); |
| 1524 } | 1524 } |
| 1525 | 1525 |
| 1526 buildUnnamed750() { | 1526 buildUnnamed2453() { |
| 1527 var o = new core.List<core.String>(); | 1527 var o = new core.List<core.String>(); |
| 1528 o.add("foo"); | 1528 o.add("foo"); |
| 1529 o.add("foo"); | 1529 o.add("foo"); |
| 1530 return o; | 1530 return o; |
| 1531 } | 1531 } |
| 1532 | 1532 |
| 1533 checkUnnamed750(core.List<core.String> o) { | 1533 checkUnnamed2453(core.List<core.String> o) { |
| 1534 unittest.expect(o, unittest.hasLength(2)); | 1534 unittest.expect(o, unittest.hasLength(2)); |
| 1535 unittest.expect(o[0], unittest.equals('foo')); | 1535 unittest.expect(o[0], unittest.equals('foo')); |
| 1536 unittest.expect(o[1], unittest.equals('foo')); | 1536 unittest.expect(o[1], unittest.equals('foo')); |
| 1537 } | 1537 } |
| 1538 | 1538 |
| 1539 buildUnnamed751() { | 1539 buildUnnamed2454() { |
| 1540 var o = new core.List<core.String>(); | 1540 var o = new core.List<core.String>(); |
| 1541 o.add("foo"); | 1541 o.add("foo"); |
| 1542 o.add("foo"); | 1542 o.add("foo"); |
| 1543 return o; | 1543 return o; |
| 1544 } | 1544 } |
| 1545 | 1545 |
| 1546 checkUnnamed751(core.List<core.String> o) { | 1546 checkUnnamed2454(core.List<core.String> o) { |
| 1547 unittest.expect(o, unittest.hasLength(2)); | 1547 unittest.expect(o, unittest.hasLength(2)); |
| 1548 unittest.expect(o[0], unittest.equals('foo')); | 1548 unittest.expect(o[0], unittest.equals('foo')); |
| 1549 unittest.expect(o[1], unittest.equals('foo')); | 1549 unittest.expect(o[1], unittest.equals('foo')); |
| 1550 } | 1550 } |
| 1551 | 1551 |
| 1552 core.int buildCounterFirewall = 0; | 1552 core.int buildCounterFirewall = 0; |
| 1553 buildFirewall() { | 1553 buildFirewall() { |
| 1554 var o = new api.Firewall(); | 1554 var o = new api.Firewall(); |
| 1555 buildCounterFirewall++; | 1555 buildCounterFirewall++; |
| 1556 if (buildCounterFirewall < 3) { | 1556 if (buildCounterFirewall < 3) { |
| 1557 o.allowed = buildUnnamed748(); | 1557 o.allowed = buildUnnamed2451(); |
| 1558 o.creationTimestamp = "foo"; | 1558 o.creationTimestamp = "foo"; |
| 1559 o.description = "foo"; | 1559 o.description = "foo"; |
| 1560 o.id = "foo"; | 1560 o.id = "foo"; |
| 1561 o.kind = "foo"; | 1561 o.kind = "foo"; |
| 1562 o.name = "foo"; | 1562 o.name = "foo"; |
| 1563 o.network = "foo"; | 1563 o.network = "foo"; |
| 1564 o.selfLink = "foo"; | 1564 o.selfLink = "foo"; |
| 1565 o.sourceRanges = buildUnnamed749(); | 1565 o.sourceRanges = buildUnnamed2452(); |
| 1566 o.sourceTags = buildUnnamed750(); | 1566 o.sourceTags = buildUnnamed2453(); |
| 1567 o.targetTags = buildUnnamed751(); | 1567 o.targetTags = buildUnnamed2454(); |
| 1568 } | 1568 } |
| 1569 buildCounterFirewall--; | 1569 buildCounterFirewall--; |
| 1570 return o; | 1570 return o; |
| 1571 } | 1571 } |
| 1572 | 1572 |
| 1573 checkFirewall(api.Firewall o) { | 1573 checkFirewall(api.Firewall o) { |
| 1574 buildCounterFirewall++; | 1574 buildCounterFirewall++; |
| 1575 if (buildCounterFirewall < 3) { | 1575 if (buildCounterFirewall < 3) { |
| 1576 checkUnnamed748(o.allowed); | 1576 checkUnnamed2451(o.allowed); |
| 1577 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1577 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1578 unittest.expect(o.description, unittest.equals('foo')); | 1578 unittest.expect(o.description, unittest.equals('foo')); |
| 1579 unittest.expect(o.id, unittest.equals('foo')); | 1579 unittest.expect(o.id, unittest.equals('foo')); |
| 1580 unittest.expect(o.kind, unittest.equals('foo')); | 1580 unittest.expect(o.kind, unittest.equals('foo')); |
| 1581 unittest.expect(o.name, unittest.equals('foo')); | 1581 unittest.expect(o.name, unittest.equals('foo')); |
| 1582 unittest.expect(o.network, unittest.equals('foo')); | 1582 unittest.expect(o.network, unittest.equals('foo')); |
| 1583 unittest.expect(o.selfLink, unittest.equals('foo')); | 1583 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1584 checkUnnamed749(o.sourceRanges); | 1584 checkUnnamed2452(o.sourceRanges); |
| 1585 checkUnnamed750(o.sourceTags); | 1585 checkUnnamed2453(o.sourceTags); |
| 1586 checkUnnamed751(o.targetTags); | 1586 checkUnnamed2454(o.targetTags); |
| 1587 } | 1587 } |
| 1588 buildCounterFirewall--; | 1588 buildCounterFirewall--; |
| 1589 } | 1589 } |
| 1590 | 1590 |
| 1591 buildUnnamed752() { | 1591 buildUnnamed2455() { |
| 1592 var o = new core.List<api.Firewall>(); | 1592 var o = new core.List<api.Firewall>(); |
| 1593 o.add(buildFirewall()); | 1593 o.add(buildFirewall()); |
| 1594 o.add(buildFirewall()); | 1594 o.add(buildFirewall()); |
| 1595 return o; | 1595 return o; |
| 1596 } | 1596 } |
| 1597 | 1597 |
| 1598 checkUnnamed752(core.List<api.Firewall> o) { | 1598 checkUnnamed2455(core.List<api.Firewall> o) { |
| 1599 unittest.expect(o, unittest.hasLength(2)); | 1599 unittest.expect(o, unittest.hasLength(2)); |
| 1600 checkFirewall(o[0]); | 1600 checkFirewall(o[0]); |
| 1601 checkFirewall(o[1]); | 1601 checkFirewall(o[1]); |
| 1602 } | 1602 } |
| 1603 | 1603 |
| 1604 core.int buildCounterFirewallList = 0; | 1604 core.int buildCounterFirewallList = 0; |
| 1605 buildFirewallList() { | 1605 buildFirewallList() { |
| 1606 var o = new api.FirewallList(); | 1606 var o = new api.FirewallList(); |
| 1607 buildCounterFirewallList++; | 1607 buildCounterFirewallList++; |
| 1608 if (buildCounterFirewallList < 3) { | 1608 if (buildCounterFirewallList < 3) { |
| 1609 o.id = "foo"; | 1609 o.id = "foo"; |
| 1610 o.items = buildUnnamed752(); | 1610 o.items = buildUnnamed2455(); |
| 1611 o.kind = "foo"; | 1611 o.kind = "foo"; |
| 1612 o.nextPageToken = "foo"; | 1612 o.nextPageToken = "foo"; |
| 1613 o.selfLink = "foo"; | 1613 o.selfLink = "foo"; |
| 1614 } | 1614 } |
| 1615 buildCounterFirewallList--; | 1615 buildCounterFirewallList--; |
| 1616 return o; | 1616 return o; |
| 1617 } | 1617 } |
| 1618 | 1618 |
| 1619 checkFirewallList(api.FirewallList o) { | 1619 checkFirewallList(api.FirewallList o) { |
| 1620 buildCounterFirewallList++; | 1620 buildCounterFirewallList++; |
| 1621 if (buildCounterFirewallList < 3) { | 1621 if (buildCounterFirewallList < 3) { |
| 1622 unittest.expect(o.id, unittest.equals('foo')); | 1622 unittest.expect(o.id, unittest.equals('foo')); |
| 1623 checkUnnamed752(o.items); | 1623 checkUnnamed2455(o.items); |
| 1624 unittest.expect(o.kind, unittest.equals('foo')); | 1624 unittest.expect(o.kind, unittest.equals('foo')); |
| 1625 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1625 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1626 unittest.expect(o.selfLink, unittest.equals('foo')); | 1626 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1627 } | 1627 } |
| 1628 buildCounterFirewallList--; | 1628 buildCounterFirewallList--; |
| 1629 } | 1629 } |
| 1630 | 1630 |
| 1631 core.int buildCounterForwardingRule = 0; | 1631 core.int buildCounterForwardingRule = 0; |
| 1632 buildForwardingRule() { | 1632 buildForwardingRule() { |
| 1633 var o = new api.ForwardingRule(); | 1633 var o = new api.ForwardingRule(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1660 unittest.expect(o.kind, unittest.equals('foo')); | 1660 unittest.expect(o.kind, unittest.equals('foo')); |
| 1661 unittest.expect(o.name, unittest.equals('foo')); | 1661 unittest.expect(o.name, unittest.equals('foo')); |
| 1662 unittest.expect(o.portRange, unittest.equals('foo')); | 1662 unittest.expect(o.portRange, unittest.equals('foo')); |
| 1663 unittest.expect(o.region, unittest.equals('foo')); | 1663 unittest.expect(o.region, unittest.equals('foo')); |
| 1664 unittest.expect(o.selfLink, unittest.equals('foo')); | 1664 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1665 unittest.expect(o.target, unittest.equals('foo')); | 1665 unittest.expect(o.target, unittest.equals('foo')); |
| 1666 } | 1666 } |
| 1667 buildCounterForwardingRule--; | 1667 buildCounterForwardingRule--; |
| 1668 } | 1668 } |
| 1669 | 1669 |
| 1670 buildUnnamed753() { | 1670 buildUnnamed2456() { |
| 1671 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 1671 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 1672 o["x"] = buildForwardingRulesScopedList(); | 1672 o["x"] = buildForwardingRulesScopedList(); |
| 1673 o["y"] = buildForwardingRulesScopedList(); | 1673 o["y"] = buildForwardingRulesScopedList(); |
| 1674 return o; | 1674 return o; |
| 1675 } | 1675 } |
| 1676 | 1676 |
| 1677 checkUnnamed753(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1677 checkUnnamed2456(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 1678 unittest.expect(o, unittest.hasLength(2)); | 1678 unittest.expect(o, unittest.hasLength(2)); |
| 1679 checkForwardingRulesScopedList(o["x"]); | 1679 checkForwardingRulesScopedList(o["x"]); |
| 1680 checkForwardingRulesScopedList(o["y"]); | 1680 checkForwardingRulesScopedList(o["y"]); |
| 1681 } | 1681 } |
| 1682 | 1682 |
| 1683 core.int buildCounterForwardingRuleAggregatedList = 0; | 1683 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 1684 buildForwardingRuleAggregatedList() { | 1684 buildForwardingRuleAggregatedList() { |
| 1685 var o = new api.ForwardingRuleAggregatedList(); | 1685 var o = new api.ForwardingRuleAggregatedList(); |
| 1686 buildCounterForwardingRuleAggregatedList++; | 1686 buildCounterForwardingRuleAggregatedList++; |
| 1687 if (buildCounterForwardingRuleAggregatedList < 3) { | 1687 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1688 o.id = "foo"; | 1688 o.id = "foo"; |
| 1689 o.items = buildUnnamed753(); | 1689 o.items = buildUnnamed2456(); |
| 1690 o.kind = "foo"; | 1690 o.kind = "foo"; |
| 1691 o.nextPageToken = "foo"; | 1691 o.nextPageToken = "foo"; |
| 1692 o.selfLink = "foo"; | 1692 o.selfLink = "foo"; |
| 1693 } | 1693 } |
| 1694 buildCounterForwardingRuleAggregatedList--; | 1694 buildCounterForwardingRuleAggregatedList--; |
| 1695 return o; | 1695 return o; |
| 1696 } | 1696 } |
| 1697 | 1697 |
| 1698 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 1698 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 1699 buildCounterForwardingRuleAggregatedList++; | 1699 buildCounterForwardingRuleAggregatedList++; |
| 1700 if (buildCounterForwardingRuleAggregatedList < 3) { | 1700 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1701 unittest.expect(o.id, unittest.equals('foo')); | 1701 unittest.expect(o.id, unittest.equals('foo')); |
| 1702 checkUnnamed753(o.items); | 1702 checkUnnamed2456(o.items); |
| 1703 unittest.expect(o.kind, unittest.equals('foo')); | 1703 unittest.expect(o.kind, unittest.equals('foo')); |
| 1704 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1704 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1705 unittest.expect(o.selfLink, unittest.equals('foo')); | 1705 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1706 } | 1706 } |
| 1707 buildCounterForwardingRuleAggregatedList--; | 1707 buildCounterForwardingRuleAggregatedList--; |
| 1708 } | 1708 } |
| 1709 | 1709 |
| 1710 buildUnnamed754() { | 1710 buildUnnamed2457() { |
| 1711 var o = new core.List<api.ForwardingRule>(); | 1711 var o = new core.List<api.ForwardingRule>(); |
| 1712 o.add(buildForwardingRule()); | 1712 o.add(buildForwardingRule()); |
| 1713 o.add(buildForwardingRule()); | 1713 o.add(buildForwardingRule()); |
| 1714 return o; | 1714 return o; |
| 1715 } | 1715 } |
| 1716 | 1716 |
| 1717 checkUnnamed754(core.List<api.ForwardingRule> o) { | 1717 checkUnnamed2457(core.List<api.ForwardingRule> o) { |
| 1718 unittest.expect(o, unittest.hasLength(2)); | 1718 unittest.expect(o, unittest.hasLength(2)); |
| 1719 checkForwardingRule(o[0]); | 1719 checkForwardingRule(o[0]); |
| 1720 checkForwardingRule(o[1]); | 1720 checkForwardingRule(o[1]); |
| 1721 } | 1721 } |
| 1722 | 1722 |
| 1723 core.int buildCounterForwardingRuleList = 0; | 1723 core.int buildCounterForwardingRuleList = 0; |
| 1724 buildForwardingRuleList() { | 1724 buildForwardingRuleList() { |
| 1725 var o = new api.ForwardingRuleList(); | 1725 var o = new api.ForwardingRuleList(); |
| 1726 buildCounterForwardingRuleList++; | 1726 buildCounterForwardingRuleList++; |
| 1727 if (buildCounterForwardingRuleList < 3) { | 1727 if (buildCounterForwardingRuleList < 3) { |
| 1728 o.id = "foo"; | 1728 o.id = "foo"; |
| 1729 o.items = buildUnnamed754(); | 1729 o.items = buildUnnamed2457(); |
| 1730 o.kind = "foo"; | 1730 o.kind = "foo"; |
| 1731 o.nextPageToken = "foo"; | 1731 o.nextPageToken = "foo"; |
| 1732 o.selfLink = "foo"; | 1732 o.selfLink = "foo"; |
| 1733 } | 1733 } |
| 1734 buildCounterForwardingRuleList--; | 1734 buildCounterForwardingRuleList--; |
| 1735 return o; | 1735 return o; |
| 1736 } | 1736 } |
| 1737 | 1737 |
| 1738 checkForwardingRuleList(api.ForwardingRuleList o) { | 1738 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 1739 buildCounterForwardingRuleList++; | 1739 buildCounterForwardingRuleList++; |
| 1740 if (buildCounterForwardingRuleList < 3) { | 1740 if (buildCounterForwardingRuleList < 3) { |
| 1741 unittest.expect(o.id, unittest.equals('foo')); | 1741 unittest.expect(o.id, unittest.equals('foo')); |
| 1742 checkUnnamed754(o.items); | 1742 checkUnnamed2457(o.items); |
| 1743 unittest.expect(o.kind, unittest.equals('foo')); | 1743 unittest.expect(o.kind, unittest.equals('foo')); |
| 1744 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1744 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1745 unittest.expect(o.selfLink, unittest.equals('foo')); | 1745 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1746 } | 1746 } |
| 1747 buildCounterForwardingRuleList--; | 1747 buildCounterForwardingRuleList--; |
| 1748 } | 1748 } |
| 1749 | 1749 |
| 1750 buildUnnamed755() { | 1750 buildUnnamed2458() { |
| 1751 var o = new core.List<api.ForwardingRule>(); | 1751 var o = new core.List<api.ForwardingRule>(); |
| 1752 o.add(buildForwardingRule()); | 1752 o.add(buildForwardingRule()); |
| 1753 o.add(buildForwardingRule()); | 1753 o.add(buildForwardingRule()); |
| 1754 return o; | 1754 return o; |
| 1755 } | 1755 } |
| 1756 | 1756 |
| 1757 checkUnnamed755(core.List<api.ForwardingRule> o) { | 1757 checkUnnamed2458(core.List<api.ForwardingRule> o) { |
| 1758 unittest.expect(o, unittest.hasLength(2)); | 1758 unittest.expect(o, unittest.hasLength(2)); |
| 1759 checkForwardingRule(o[0]); | 1759 checkForwardingRule(o[0]); |
| 1760 checkForwardingRule(o[1]); | 1760 checkForwardingRule(o[1]); |
| 1761 } | 1761 } |
| 1762 | 1762 |
| 1763 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 1763 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 1764 buildForwardingRulesScopedListWarningData() { | 1764 buildForwardingRulesScopedListWarningData() { |
| 1765 var o = new api.ForwardingRulesScopedListWarningData(); | 1765 var o = new api.ForwardingRulesScopedListWarningData(); |
| 1766 buildCounterForwardingRulesScopedListWarningData++; | 1766 buildCounterForwardingRulesScopedListWarningData++; |
| 1767 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1767 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1768 o.key = "foo"; | 1768 o.key = "foo"; |
| 1769 o.value = "foo"; | 1769 o.value = "foo"; |
| 1770 } | 1770 } |
| 1771 buildCounterForwardingRulesScopedListWarningData--; | 1771 buildCounterForwardingRulesScopedListWarningData--; |
| 1772 return o; | 1772 return o; |
| 1773 } | 1773 } |
| 1774 | 1774 |
| 1775 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 1775 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 1776 buildCounterForwardingRulesScopedListWarningData++; | 1776 buildCounterForwardingRulesScopedListWarningData++; |
| 1777 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1777 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1778 unittest.expect(o.key, unittest.equals('foo')); | 1778 unittest.expect(o.key, unittest.equals('foo')); |
| 1779 unittest.expect(o.value, unittest.equals('foo')); | 1779 unittest.expect(o.value, unittest.equals('foo')); |
| 1780 } | 1780 } |
| 1781 buildCounterForwardingRulesScopedListWarningData--; | 1781 buildCounterForwardingRulesScopedListWarningData--; |
| 1782 } | 1782 } |
| 1783 | 1783 |
| 1784 buildUnnamed756() { | 1784 buildUnnamed2459() { |
| 1785 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 1785 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 1786 o.add(buildForwardingRulesScopedListWarningData()); | 1786 o.add(buildForwardingRulesScopedListWarningData()); |
| 1787 o.add(buildForwardingRulesScopedListWarningData()); | 1787 o.add(buildForwardingRulesScopedListWarningData()); |
| 1788 return o; | 1788 return o; |
| 1789 } | 1789 } |
| 1790 | 1790 |
| 1791 checkUnnamed756(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1791 checkUnnamed2459(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 1792 unittest.expect(o, unittest.hasLength(2)); | 1792 unittest.expect(o, unittest.hasLength(2)); |
| 1793 checkForwardingRulesScopedListWarningData(o[0]); | 1793 checkForwardingRulesScopedListWarningData(o[0]); |
| 1794 checkForwardingRulesScopedListWarningData(o[1]); | 1794 checkForwardingRulesScopedListWarningData(o[1]); |
| 1795 } | 1795 } |
| 1796 | 1796 |
| 1797 core.int buildCounterForwardingRulesScopedListWarning = 0; | 1797 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 1798 buildForwardingRulesScopedListWarning() { | 1798 buildForwardingRulesScopedListWarning() { |
| 1799 var o = new api.ForwardingRulesScopedListWarning(); | 1799 var o = new api.ForwardingRulesScopedListWarning(); |
| 1800 buildCounterForwardingRulesScopedListWarning++; | 1800 buildCounterForwardingRulesScopedListWarning++; |
| 1801 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1801 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1802 o.code = "foo"; | 1802 o.code = "foo"; |
| 1803 o.data = buildUnnamed756(); | 1803 o.data = buildUnnamed2459(); |
| 1804 o.message = "foo"; | 1804 o.message = "foo"; |
| 1805 } | 1805 } |
| 1806 buildCounterForwardingRulesScopedListWarning--; | 1806 buildCounterForwardingRulesScopedListWarning--; |
| 1807 return o; | 1807 return o; |
| 1808 } | 1808 } |
| 1809 | 1809 |
| 1810 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 1810 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 1811 buildCounterForwardingRulesScopedListWarning++; | 1811 buildCounterForwardingRulesScopedListWarning++; |
| 1812 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1812 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1813 unittest.expect(o.code, unittest.equals('foo')); | 1813 unittest.expect(o.code, unittest.equals('foo')); |
| 1814 checkUnnamed756(o.data); | 1814 checkUnnamed2459(o.data); |
| 1815 unittest.expect(o.message, unittest.equals('foo')); | 1815 unittest.expect(o.message, unittest.equals('foo')); |
| 1816 } | 1816 } |
| 1817 buildCounterForwardingRulesScopedListWarning--; | 1817 buildCounterForwardingRulesScopedListWarning--; |
| 1818 } | 1818 } |
| 1819 | 1819 |
| 1820 core.int buildCounterForwardingRulesScopedList = 0; | 1820 core.int buildCounterForwardingRulesScopedList = 0; |
| 1821 buildForwardingRulesScopedList() { | 1821 buildForwardingRulesScopedList() { |
| 1822 var o = new api.ForwardingRulesScopedList(); | 1822 var o = new api.ForwardingRulesScopedList(); |
| 1823 buildCounterForwardingRulesScopedList++; | 1823 buildCounterForwardingRulesScopedList++; |
| 1824 if (buildCounterForwardingRulesScopedList < 3) { | 1824 if (buildCounterForwardingRulesScopedList < 3) { |
| 1825 o.forwardingRules = buildUnnamed755(); | 1825 o.forwardingRules = buildUnnamed2458(); |
| 1826 o.warning = buildForwardingRulesScopedListWarning(); | 1826 o.warning = buildForwardingRulesScopedListWarning(); |
| 1827 } | 1827 } |
| 1828 buildCounterForwardingRulesScopedList--; | 1828 buildCounterForwardingRulesScopedList--; |
| 1829 return o; | 1829 return o; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 1832 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 1833 buildCounterForwardingRulesScopedList++; | 1833 buildCounterForwardingRulesScopedList++; |
| 1834 if (buildCounterForwardingRulesScopedList < 3) { | 1834 if (buildCounterForwardingRulesScopedList < 3) { |
| 1835 checkUnnamed755(o.forwardingRules); | 1835 checkUnnamed2458(o.forwardingRules); |
| 1836 checkForwardingRulesScopedListWarning(o.warning); | 1836 checkForwardingRulesScopedListWarning(o.warning); |
| 1837 } | 1837 } |
| 1838 buildCounterForwardingRulesScopedList--; | 1838 buildCounterForwardingRulesScopedList--; |
| 1839 } | 1839 } |
| 1840 | 1840 |
| 1841 core.int buildCounterHealthCheckReference = 0; | 1841 core.int buildCounterHealthCheckReference = 0; |
| 1842 buildHealthCheckReference() { | 1842 buildHealthCheckReference() { |
| 1843 var o = new api.HealthCheckReference(); | 1843 var o = new api.HealthCheckReference(); |
| 1844 buildCounterHealthCheckReference++; | 1844 buildCounterHealthCheckReference++; |
| 1845 if (buildCounterHealthCheckReference < 3) { | 1845 if (buildCounterHealthCheckReference < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1875 buildCounterHealthStatus++; | 1875 buildCounterHealthStatus++; |
| 1876 if (buildCounterHealthStatus < 3) { | 1876 if (buildCounterHealthStatus < 3) { |
| 1877 unittest.expect(o.healthState, unittest.equals('foo')); | 1877 unittest.expect(o.healthState, unittest.equals('foo')); |
| 1878 unittest.expect(o.instance, unittest.equals('foo')); | 1878 unittest.expect(o.instance, unittest.equals('foo')); |
| 1879 unittest.expect(o.ipAddress, unittest.equals('foo')); | 1879 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 1880 unittest.expect(o.port, unittest.equals(42)); | 1880 unittest.expect(o.port, unittest.equals(42)); |
| 1881 } | 1881 } |
| 1882 buildCounterHealthStatus--; | 1882 buildCounterHealthStatus--; |
| 1883 } | 1883 } |
| 1884 | 1884 |
| 1885 buildUnnamed757() { | 1885 buildUnnamed2460() { |
| 1886 var o = new core.List<core.String>(); | 1886 var o = new core.List<core.String>(); |
| 1887 o.add("foo"); | 1887 o.add("foo"); |
| 1888 o.add("foo"); | 1888 o.add("foo"); |
| 1889 return o; | 1889 return o; |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 checkUnnamed757(core.List<core.String> o) { | 1892 checkUnnamed2460(core.List<core.String> o) { |
| 1893 unittest.expect(o, unittest.hasLength(2)); | 1893 unittest.expect(o, unittest.hasLength(2)); |
| 1894 unittest.expect(o[0], unittest.equals('foo')); | 1894 unittest.expect(o[0], unittest.equals('foo')); |
| 1895 unittest.expect(o[1], unittest.equals('foo')); | 1895 unittest.expect(o[1], unittest.equals('foo')); |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 core.int buildCounterHostRule = 0; | 1898 core.int buildCounterHostRule = 0; |
| 1899 buildHostRule() { | 1899 buildHostRule() { |
| 1900 var o = new api.HostRule(); | 1900 var o = new api.HostRule(); |
| 1901 buildCounterHostRule++; | 1901 buildCounterHostRule++; |
| 1902 if (buildCounterHostRule < 3) { | 1902 if (buildCounterHostRule < 3) { |
| 1903 o.description = "foo"; | 1903 o.description = "foo"; |
| 1904 o.hosts = buildUnnamed757(); | 1904 o.hosts = buildUnnamed2460(); |
| 1905 o.pathMatcher = "foo"; | 1905 o.pathMatcher = "foo"; |
| 1906 } | 1906 } |
| 1907 buildCounterHostRule--; | 1907 buildCounterHostRule--; |
| 1908 return o; | 1908 return o; |
| 1909 } | 1909 } |
| 1910 | 1910 |
| 1911 checkHostRule(api.HostRule o) { | 1911 checkHostRule(api.HostRule o) { |
| 1912 buildCounterHostRule++; | 1912 buildCounterHostRule++; |
| 1913 if (buildCounterHostRule < 3) { | 1913 if (buildCounterHostRule < 3) { |
| 1914 unittest.expect(o.description, unittest.equals('foo')); | 1914 unittest.expect(o.description, unittest.equals('foo')); |
| 1915 checkUnnamed757(o.hosts); | 1915 checkUnnamed2460(o.hosts); |
| 1916 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 1916 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 1917 } | 1917 } |
| 1918 buildCounterHostRule--; | 1918 buildCounterHostRule--; |
| 1919 } | 1919 } |
| 1920 | 1920 |
| 1921 core.int buildCounterHttpHealthCheck = 0; | 1921 core.int buildCounterHttpHealthCheck = 0; |
| 1922 buildHttpHealthCheck() { | 1922 buildHttpHealthCheck() { |
| 1923 var o = new api.HttpHealthCheck(); | 1923 var o = new api.HttpHealthCheck(); |
| 1924 buildCounterHttpHealthCheck++; | 1924 buildCounterHttpHealthCheck++; |
| 1925 if (buildCounterHttpHealthCheck < 3) { | 1925 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1954 unittest.expect(o.name, unittest.equals('foo')); | 1954 unittest.expect(o.name, unittest.equals('foo')); |
| 1955 unittest.expect(o.port, unittest.equals(42)); | 1955 unittest.expect(o.port, unittest.equals(42)); |
| 1956 unittest.expect(o.requestPath, unittest.equals('foo')); | 1956 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 1957 unittest.expect(o.selfLink, unittest.equals('foo')); | 1957 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1958 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1958 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1959 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 1959 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 1960 } | 1960 } |
| 1961 buildCounterHttpHealthCheck--; | 1961 buildCounterHttpHealthCheck--; |
| 1962 } | 1962 } |
| 1963 | 1963 |
| 1964 buildUnnamed758() { | 1964 buildUnnamed2461() { |
| 1965 var o = new core.List<api.HttpHealthCheck>(); | 1965 var o = new core.List<api.HttpHealthCheck>(); |
| 1966 o.add(buildHttpHealthCheck()); | 1966 o.add(buildHttpHealthCheck()); |
| 1967 o.add(buildHttpHealthCheck()); | 1967 o.add(buildHttpHealthCheck()); |
| 1968 return o; | 1968 return o; |
| 1969 } | 1969 } |
| 1970 | 1970 |
| 1971 checkUnnamed758(core.List<api.HttpHealthCheck> o) { | 1971 checkUnnamed2461(core.List<api.HttpHealthCheck> o) { |
| 1972 unittest.expect(o, unittest.hasLength(2)); | 1972 unittest.expect(o, unittest.hasLength(2)); |
| 1973 checkHttpHealthCheck(o[0]); | 1973 checkHttpHealthCheck(o[0]); |
| 1974 checkHttpHealthCheck(o[1]); | 1974 checkHttpHealthCheck(o[1]); |
| 1975 } | 1975 } |
| 1976 | 1976 |
| 1977 core.int buildCounterHttpHealthCheckList = 0; | 1977 core.int buildCounterHttpHealthCheckList = 0; |
| 1978 buildHttpHealthCheckList() { | 1978 buildHttpHealthCheckList() { |
| 1979 var o = new api.HttpHealthCheckList(); | 1979 var o = new api.HttpHealthCheckList(); |
| 1980 buildCounterHttpHealthCheckList++; | 1980 buildCounterHttpHealthCheckList++; |
| 1981 if (buildCounterHttpHealthCheckList < 3) { | 1981 if (buildCounterHttpHealthCheckList < 3) { |
| 1982 o.id = "foo"; | 1982 o.id = "foo"; |
| 1983 o.items = buildUnnamed758(); | 1983 o.items = buildUnnamed2461(); |
| 1984 o.kind = "foo"; | 1984 o.kind = "foo"; |
| 1985 o.nextPageToken = "foo"; | 1985 o.nextPageToken = "foo"; |
| 1986 o.selfLink = "foo"; | 1986 o.selfLink = "foo"; |
| 1987 } | 1987 } |
| 1988 buildCounterHttpHealthCheckList--; | 1988 buildCounterHttpHealthCheckList--; |
| 1989 return o; | 1989 return o; |
| 1990 } | 1990 } |
| 1991 | 1991 |
| 1992 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 1992 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 1993 buildCounterHttpHealthCheckList++; | 1993 buildCounterHttpHealthCheckList++; |
| 1994 if (buildCounterHttpHealthCheckList < 3) { | 1994 if (buildCounterHttpHealthCheckList < 3) { |
| 1995 unittest.expect(o.id, unittest.equals('foo')); | 1995 unittest.expect(o.id, unittest.equals('foo')); |
| 1996 checkUnnamed758(o.items); | 1996 checkUnnamed2461(o.items); |
| 1997 unittest.expect(o.kind, unittest.equals('foo')); | 1997 unittest.expect(o.kind, unittest.equals('foo')); |
| 1998 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1998 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1999 unittest.expect(o.selfLink, unittest.equals('foo')); | 1999 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2000 } | 2000 } |
| 2001 buildCounterHttpHealthCheckList--; | 2001 buildCounterHttpHealthCheckList--; |
| 2002 } | 2002 } |
| 2003 | 2003 |
| 2004 core.int buildCounterHttpsHealthCheck = 0; | 2004 core.int buildCounterHttpsHealthCheck = 0; |
| 2005 buildHttpsHealthCheck() { | 2005 buildHttpsHealthCheck() { |
| 2006 var o = new api.HttpsHealthCheck(); | 2006 var o = new api.HttpsHealthCheck(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 2037 unittest.expect(o.name, unittest.equals('foo')); | 2037 unittest.expect(o.name, unittest.equals('foo')); |
| 2038 unittest.expect(o.port, unittest.equals(42)); | 2038 unittest.expect(o.port, unittest.equals(42)); |
| 2039 unittest.expect(o.requestPath, unittest.equals('foo')); | 2039 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 2040 unittest.expect(o.selfLink, unittest.equals('foo')); | 2040 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2041 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2041 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2042 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2042 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2043 } | 2043 } |
| 2044 buildCounterHttpsHealthCheck--; | 2044 buildCounterHttpsHealthCheck--; |
| 2045 } | 2045 } |
| 2046 | 2046 |
| 2047 buildUnnamed759() { | 2047 buildUnnamed2462() { |
| 2048 var o = new core.List<api.HttpsHealthCheck>(); | 2048 var o = new core.List<api.HttpsHealthCheck>(); |
| 2049 o.add(buildHttpsHealthCheck()); | 2049 o.add(buildHttpsHealthCheck()); |
| 2050 o.add(buildHttpsHealthCheck()); | 2050 o.add(buildHttpsHealthCheck()); |
| 2051 return o; | 2051 return o; |
| 2052 } | 2052 } |
| 2053 | 2053 |
| 2054 checkUnnamed759(core.List<api.HttpsHealthCheck> o) { | 2054 checkUnnamed2462(core.List<api.HttpsHealthCheck> o) { |
| 2055 unittest.expect(o, unittest.hasLength(2)); | 2055 unittest.expect(o, unittest.hasLength(2)); |
| 2056 checkHttpsHealthCheck(o[0]); | 2056 checkHttpsHealthCheck(o[0]); |
| 2057 checkHttpsHealthCheck(o[1]); | 2057 checkHttpsHealthCheck(o[1]); |
| 2058 } | 2058 } |
| 2059 | 2059 |
| 2060 core.int buildCounterHttpsHealthCheckList = 0; | 2060 core.int buildCounterHttpsHealthCheckList = 0; |
| 2061 buildHttpsHealthCheckList() { | 2061 buildHttpsHealthCheckList() { |
| 2062 var o = new api.HttpsHealthCheckList(); | 2062 var o = new api.HttpsHealthCheckList(); |
| 2063 buildCounterHttpsHealthCheckList++; | 2063 buildCounterHttpsHealthCheckList++; |
| 2064 if (buildCounterHttpsHealthCheckList < 3) { | 2064 if (buildCounterHttpsHealthCheckList < 3) { |
| 2065 o.id = "foo"; | 2065 o.id = "foo"; |
| 2066 o.items = buildUnnamed759(); | 2066 o.items = buildUnnamed2462(); |
| 2067 o.kind = "foo"; | 2067 o.kind = "foo"; |
| 2068 o.nextPageToken = "foo"; | 2068 o.nextPageToken = "foo"; |
| 2069 o.selfLink = "foo"; | 2069 o.selfLink = "foo"; |
| 2070 } | 2070 } |
| 2071 buildCounterHttpsHealthCheckList--; | 2071 buildCounterHttpsHealthCheckList--; |
| 2072 return o; | 2072 return o; |
| 2073 } | 2073 } |
| 2074 | 2074 |
| 2075 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { | 2075 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { |
| 2076 buildCounterHttpsHealthCheckList++; | 2076 buildCounterHttpsHealthCheckList++; |
| 2077 if (buildCounterHttpsHealthCheckList < 3) { | 2077 if (buildCounterHttpsHealthCheckList < 3) { |
| 2078 unittest.expect(o.id, unittest.equals('foo')); | 2078 unittest.expect(o.id, unittest.equals('foo')); |
| 2079 checkUnnamed759(o.items); | 2079 checkUnnamed2462(o.items); |
| 2080 unittest.expect(o.kind, unittest.equals('foo')); | 2080 unittest.expect(o.kind, unittest.equals('foo')); |
| 2081 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2081 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2082 unittest.expect(o.selfLink, unittest.equals('foo')); | 2082 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2083 } | 2083 } |
| 2084 buildCounterHttpsHealthCheckList--; | 2084 buildCounterHttpsHealthCheckList--; |
| 2085 } | 2085 } |
| 2086 | 2086 |
| 2087 buildUnnamed760() { | 2087 buildUnnamed2463() { |
| 2088 var o = new core.List<core.String>(); | 2088 var o = new core.List<core.String>(); |
| 2089 o.add("foo"); | 2089 o.add("foo"); |
| 2090 o.add("foo"); | 2090 o.add("foo"); |
| 2091 return o; | 2091 return o; |
| 2092 } | 2092 } |
| 2093 | 2093 |
| 2094 checkUnnamed760(core.List<core.String> o) { | 2094 checkUnnamed2463(core.List<core.String> o) { |
| 2095 unittest.expect(o, unittest.hasLength(2)); | 2095 unittest.expect(o, unittest.hasLength(2)); |
| 2096 unittest.expect(o[0], unittest.equals('foo')); | 2096 unittest.expect(o[0], unittest.equals('foo')); |
| 2097 unittest.expect(o[1], unittest.equals('foo')); | 2097 unittest.expect(o[1], unittest.equals('foo')); |
| 2098 } | 2098 } |
| 2099 | 2099 |
| 2100 core.int buildCounterImageRawDisk = 0; | 2100 core.int buildCounterImageRawDisk = 0; |
| 2101 buildImageRawDisk() { | 2101 buildImageRawDisk() { |
| 2102 var o = new api.ImageRawDisk(); | 2102 var o = new api.ImageRawDisk(); |
| 2103 buildCounterImageRawDisk++; | 2103 buildCounterImageRawDisk++; |
| 2104 if (buildCounterImageRawDisk < 3) { | 2104 if (buildCounterImageRawDisk < 3) { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 2127 if (buildCounterImage < 3) { | 2127 if (buildCounterImage < 3) { |
| 2128 o.archiveSizeBytes = "foo"; | 2128 o.archiveSizeBytes = "foo"; |
| 2129 o.creationTimestamp = "foo"; | 2129 o.creationTimestamp = "foo"; |
| 2130 o.deprecated = buildDeprecationStatus(); | 2130 o.deprecated = buildDeprecationStatus(); |
| 2131 o.description = "foo"; | 2131 o.description = "foo"; |
| 2132 o.diskSizeGb = "foo"; | 2132 o.diskSizeGb = "foo"; |
| 2133 o.family = "foo"; | 2133 o.family = "foo"; |
| 2134 o.id = "foo"; | 2134 o.id = "foo"; |
| 2135 o.imageEncryptionKey = buildCustomerEncryptionKey(); | 2135 o.imageEncryptionKey = buildCustomerEncryptionKey(); |
| 2136 o.kind = "foo"; | 2136 o.kind = "foo"; |
| 2137 o.licenses = buildUnnamed760(); | 2137 o.licenses = buildUnnamed2463(); |
| 2138 o.name = "foo"; | 2138 o.name = "foo"; |
| 2139 o.rawDisk = buildImageRawDisk(); | 2139 o.rawDisk = buildImageRawDisk(); |
| 2140 o.selfLink = "foo"; | 2140 o.selfLink = "foo"; |
| 2141 o.sourceDisk = "foo"; | 2141 o.sourceDisk = "foo"; |
| 2142 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 2142 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 2143 o.sourceDiskId = "foo"; | 2143 o.sourceDiskId = "foo"; |
| 2144 o.sourceType = "foo"; | 2144 o.sourceType = "foo"; |
| 2145 o.status = "foo"; | 2145 o.status = "foo"; |
| 2146 } | 2146 } |
| 2147 buildCounterImage--; | 2147 buildCounterImage--; |
| 2148 return o; | 2148 return o; |
| 2149 } | 2149 } |
| 2150 | 2150 |
| 2151 checkImage(api.Image o) { | 2151 checkImage(api.Image o) { |
| 2152 buildCounterImage++; | 2152 buildCounterImage++; |
| 2153 if (buildCounterImage < 3) { | 2153 if (buildCounterImage < 3) { |
| 2154 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 2154 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 2155 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2155 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2156 checkDeprecationStatus(o.deprecated); | 2156 checkDeprecationStatus(o.deprecated); |
| 2157 unittest.expect(o.description, unittest.equals('foo')); | 2157 unittest.expect(o.description, unittest.equals('foo')); |
| 2158 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 2158 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 2159 unittest.expect(o.family, unittest.equals('foo')); | 2159 unittest.expect(o.family, unittest.equals('foo')); |
| 2160 unittest.expect(o.id, unittest.equals('foo')); | 2160 unittest.expect(o.id, unittest.equals('foo')); |
| 2161 checkCustomerEncryptionKey(o.imageEncryptionKey); | 2161 checkCustomerEncryptionKey(o.imageEncryptionKey); |
| 2162 unittest.expect(o.kind, unittest.equals('foo')); | 2162 unittest.expect(o.kind, unittest.equals('foo')); |
| 2163 checkUnnamed760(o.licenses); | 2163 checkUnnamed2463(o.licenses); |
| 2164 unittest.expect(o.name, unittest.equals('foo')); | 2164 unittest.expect(o.name, unittest.equals('foo')); |
| 2165 checkImageRawDisk(o.rawDisk); | 2165 checkImageRawDisk(o.rawDisk); |
| 2166 unittest.expect(o.selfLink, unittest.equals('foo')); | 2166 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2167 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 2167 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 2168 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 2168 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 2169 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 2169 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 2170 unittest.expect(o.sourceType, unittest.equals('foo')); | 2170 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 2171 unittest.expect(o.status, unittest.equals('foo')); | 2171 unittest.expect(o.status, unittest.equals('foo')); |
| 2172 } | 2172 } |
| 2173 buildCounterImage--; | 2173 buildCounterImage--; |
| 2174 } | 2174 } |
| 2175 | 2175 |
| 2176 buildUnnamed761() { | 2176 buildUnnamed2464() { |
| 2177 var o = new core.List<api.Image>(); | 2177 var o = new core.List<api.Image>(); |
| 2178 o.add(buildImage()); | 2178 o.add(buildImage()); |
| 2179 o.add(buildImage()); | 2179 o.add(buildImage()); |
| 2180 return o; | 2180 return o; |
| 2181 } | 2181 } |
| 2182 | 2182 |
| 2183 checkUnnamed761(core.List<api.Image> o) { | 2183 checkUnnamed2464(core.List<api.Image> o) { |
| 2184 unittest.expect(o, unittest.hasLength(2)); | 2184 unittest.expect(o, unittest.hasLength(2)); |
| 2185 checkImage(o[0]); | 2185 checkImage(o[0]); |
| 2186 checkImage(o[1]); | 2186 checkImage(o[1]); |
| 2187 } | 2187 } |
| 2188 | 2188 |
| 2189 core.int buildCounterImageList = 0; | 2189 core.int buildCounterImageList = 0; |
| 2190 buildImageList() { | 2190 buildImageList() { |
| 2191 var o = new api.ImageList(); | 2191 var o = new api.ImageList(); |
| 2192 buildCounterImageList++; | 2192 buildCounterImageList++; |
| 2193 if (buildCounterImageList < 3) { | 2193 if (buildCounterImageList < 3) { |
| 2194 o.id = "foo"; | 2194 o.id = "foo"; |
| 2195 o.items = buildUnnamed761(); | 2195 o.items = buildUnnamed2464(); |
| 2196 o.kind = "foo"; | 2196 o.kind = "foo"; |
| 2197 o.nextPageToken = "foo"; | 2197 o.nextPageToken = "foo"; |
| 2198 o.selfLink = "foo"; | 2198 o.selfLink = "foo"; |
| 2199 } | 2199 } |
| 2200 buildCounterImageList--; | 2200 buildCounterImageList--; |
| 2201 return o; | 2201 return o; |
| 2202 } | 2202 } |
| 2203 | 2203 |
| 2204 checkImageList(api.ImageList o) { | 2204 checkImageList(api.ImageList o) { |
| 2205 buildCounterImageList++; | 2205 buildCounterImageList++; |
| 2206 if (buildCounterImageList < 3) { | 2206 if (buildCounterImageList < 3) { |
| 2207 unittest.expect(o.id, unittest.equals('foo')); | 2207 unittest.expect(o.id, unittest.equals('foo')); |
| 2208 checkUnnamed761(o.items); | 2208 checkUnnamed2464(o.items); |
| 2209 unittest.expect(o.kind, unittest.equals('foo')); | 2209 unittest.expect(o.kind, unittest.equals('foo')); |
| 2210 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2210 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2211 unittest.expect(o.selfLink, unittest.equals('foo')); | 2211 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2212 } | 2212 } |
| 2213 buildCounterImageList--; | 2213 buildCounterImageList--; |
| 2214 } | 2214 } |
| 2215 | 2215 |
| 2216 buildUnnamed762() { | 2216 buildUnnamed2465() { |
| 2217 var o = new core.List<api.AttachedDisk>(); | 2217 var o = new core.List<api.AttachedDisk>(); |
| 2218 o.add(buildAttachedDisk()); | 2218 o.add(buildAttachedDisk()); |
| 2219 o.add(buildAttachedDisk()); | 2219 o.add(buildAttachedDisk()); |
| 2220 return o; | 2220 return o; |
| 2221 } | 2221 } |
| 2222 | 2222 |
| 2223 checkUnnamed762(core.List<api.AttachedDisk> o) { | 2223 checkUnnamed2465(core.List<api.AttachedDisk> o) { |
| 2224 unittest.expect(o, unittest.hasLength(2)); | 2224 unittest.expect(o, unittest.hasLength(2)); |
| 2225 checkAttachedDisk(o[0]); | 2225 checkAttachedDisk(o[0]); |
| 2226 checkAttachedDisk(o[1]); | 2226 checkAttachedDisk(o[1]); |
| 2227 } | 2227 } |
| 2228 | 2228 |
| 2229 buildUnnamed763() { | 2229 buildUnnamed2466() { |
| 2230 var o = new core.List<api.NetworkInterface>(); | 2230 var o = new core.List<api.NetworkInterface>(); |
| 2231 o.add(buildNetworkInterface()); | 2231 o.add(buildNetworkInterface()); |
| 2232 o.add(buildNetworkInterface()); | 2232 o.add(buildNetworkInterface()); |
| 2233 return o; | 2233 return o; |
| 2234 } | 2234 } |
| 2235 | 2235 |
| 2236 checkUnnamed763(core.List<api.NetworkInterface> o) { | 2236 checkUnnamed2466(core.List<api.NetworkInterface> o) { |
| 2237 unittest.expect(o, unittest.hasLength(2)); | 2237 unittest.expect(o, unittest.hasLength(2)); |
| 2238 checkNetworkInterface(o[0]); | 2238 checkNetworkInterface(o[0]); |
| 2239 checkNetworkInterface(o[1]); | 2239 checkNetworkInterface(o[1]); |
| 2240 } | 2240 } |
| 2241 | 2241 |
| 2242 buildUnnamed764() { | 2242 buildUnnamed2467() { |
| 2243 var o = new core.List<api.ServiceAccount>(); | 2243 var o = new core.List<api.ServiceAccount>(); |
| 2244 o.add(buildServiceAccount()); | 2244 o.add(buildServiceAccount()); |
| 2245 o.add(buildServiceAccount()); | 2245 o.add(buildServiceAccount()); |
| 2246 return o; | 2246 return o; |
| 2247 } | 2247 } |
| 2248 | 2248 |
| 2249 checkUnnamed764(core.List<api.ServiceAccount> o) { | 2249 checkUnnamed2467(core.List<api.ServiceAccount> o) { |
| 2250 unittest.expect(o, unittest.hasLength(2)); | 2250 unittest.expect(o, unittest.hasLength(2)); |
| 2251 checkServiceAccount(o[0]); | 2251 checkServiceAccount(o[0]); |
| 2252 checkServiceAccount(o[1]); | 2252 checkServiceAccount(o[1]); |
| 2253 } | 2253 } |
| 2254 | 2254 |
| 2255 core.int buildCounterInstance = 0; | 2255 core.int buildCounterInstance = 0; |
| 2256 buildInstance() { | 2256 buildInstance() { |
| 2257 var o = new api.Instance(); | 2257 var o = new api.Instance(); |
| 2258 buildCounterInstance++; | 2258 buildCounterInstance++; |
| 2259 if (buildCounterInstance < 3) { | 2259 if (buildCounterInstance < 3) { |
| 2260 o.canIpForward = true; | 2260 o.canIpForward = true; |
| 2261 o.cpuPlatform = "foo"; | 2261 o.cpuPlatform = "foo"; |
| 2262 o.creationTimestamp = "foo"; | 2262 o.creationTimestamp = "foo"; |
| 2263 o.description = "foo"; | 2263 o.description = "foo"; |
| 2264 o.disks = buildUnnamed762(); | 2264 o.disks = buildUnnamed2465(); |
| 2265 o.id = "foo"; | 2265 o.id = "foo"; |
| 2266 o.kind = "foo"; | 2266 o.kind = "foo"; |
| 2267 o.machineType = "foo"; | 2267 o.machineType = "foo"; |
| 2268 o.metadata = buildMetadata(); | 2268 o.metadata = buildMetadata(); |
| 2269 o.name = "foo"; | 2269 o.name = "foo"; |
| 2270 o.networkInterfaces = buildUnnamed763(); | 2270 o.networkInterfaces = buildUnnamed2466(); |
| 2271 o.scheduling = buildScheduling(); | 2271 o.scheduling = buildScheduling(); |
| 2272 o.selfLink = "foo"; | 2272 o.selfLink = "foo"; |
| 2273 o.serviceAccounts = buildUnnamed764(); | 2273 o.serviceAccounts = buildUnnamed2467(); |
| 2274 o.status = "foo"; | 2274 o.status = "foo"; |
| 2275 o.statusMessage = "foo"; | 2275 o.statusMessage = "foo"; |
| 2276 o.tags = buildTags(); | 2276 o.tags = buildTags(); |
| 2277 o.zone = "foo"; | 2277 o.zone = "foo"; |
| 2278 } | 2278 } |
| 2279 buildCounterInstance--; | 2279 buildCounterInstance--; |
| 2280 return o; | 2280 return o; |
| 2281 } | 2281 } |
| 2282 | 2282 |
| 2283 checkInstance(api.Instance o) { | 2283 checkInstance(api.Instance o) { |
| 2284 buildCounterInstance++; | 2284 buildCounterInstance++; |
| 2285 if (buildCounterInstance < 3) { | 2285 if (buildCounterInstance < 3) { |
| 2286 unittest.expect(o.canIpForward, unittest.isTrue); | 2286 unittest.expect(o.canIpForward, unittest.isTrue); |
| 2287 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 2287 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 2288 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2288 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2289 unittest.expect(o.description, unittest.equals('foo')); | 2289 unittest.expect(o.description, unittest.equals('foo')); |
| 2290 checkUnnamed762(o.disks); | 2290 checkUnnamed2465(o.disks); |
| 2291 unittest.expect(o.id, unittest.equals('foo')); | 2291 unittest.expect(o.id, unittest.equals('foo')); |
| 2292 unittest.expect(o.kind, unittest.equals('foo')); | 2292 unittest.expect(o.kind, unittest.equals('foo')); |
| 2293 unittest.expect(o.machineType, unittest.equals('foo')); | 2293 unittest.expect(o.machineType, unittest.equals('foo')); |
| 2294 checkMetadata(o.metadata); | 2294 checkMetadata(o.metadata); |
| 2295 unittest.expect(o.name, unittest.equals('foo')); | 2295 unittest.expect(o.name, unittest.equals('foo')); |
| 2296 checkUnnamed763(o.networkInterfaces); | 2296 checkUnnamed2466(o.networkInterfaces); |
| 2297 checkScheduling(o.scheduling); | 2297 checkScheduling(o.scheduling); |
| 2298 unittest.expect(o.selfLink, unittest.equals('foo')); | 2298 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2299 checkUnnamed764(o.serviceAccounts); | 2299 checkUnnamed2467(o.serviceAccounts); |
| 2300 unittest.expect(o.status, unittest.equals('foo')); | 2300 unittest.expect(o.status, unittest.equals('foo')); |
| 2301 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2301 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2302 checkTags(o.tags); | 2302 checkTags(o.tags); |
| 2303 unittest.expect(o.zone, unittest.equals('foo')); | 2303 unittest.expect(o.zone, unittest.equals('foo')); |
| 2304 } | 2304 } |
| 2305 buildCounterInstance--; | 2305 buildCounterInstance--; |
| 2306 } | 2306 } |
| 2307 | 2307 |
| 2308 buildUnnamed765() { | 2308 buildUnnamed2468() { |
| 2309 var o = new core.Map<core.String, api.InstancesScopedList>(); | 2309 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 2310 o["x"] = buildInstancesScopedList(); | 2310 o["x"] = buildInstancesScopedList(); |
| 2311 o["y"] = buildInstancesScopedList(); | 2311 o["y"] = buildInstancesScopedList(); |
| 2312 return o; | 2312 return o; |
| 2313 } | 2313 } |
| 2314 | 2314 |
| 2315 checkUnnamed765(core.Map<core.String, api.InstancesScopedList> o) { | 2315 checkUnnamed2468(core.Map<core.String, api.InstancesScopedList> o) { |
| 2316 unittest.expect(o, unittest.hasLength(2)); | 2316 unittest.expect(o, unittest.hasLength(2)); |
| 2317 checkInstancesScopedList(o["x"]); | 2317 checkInstancesScopedList(o["x"]); |
| 2318 checkInstancesScopedList(o["y"]); | 2318 checkInstancesScopedList(o["y"]); |
| 2319 } | 2319 } |
| 2320 | 2320 |
| 2321 core.int buildCounterInstanceAggregatedList = 0; | 2321 core.int buildCounterInstanceAggregatedList = 0; |
| 2322 buildInstanceAggregatedList() { | 2322 buildInstanceAggregatedList() { |
| 2323 var o = new api.InstanceAggregatedList(); | 2323 var o = new api.InstanceAggregatedList(); |
| 2324 buildCounterInstanceAggregatedList++; | 2324 buildCounterInstanceAggregatedList++; |
| 2325 if (buildCounterInstanceAggregatedList < 3) { | 2325 if (buildCounterInstanceAggregatedList < 3) { |
| 2326 o.id = "foo"; | 2326 o.id = "foo"; |
| 2327 o.items = buildUnnamed765(); | 2327 o.items = buildUnnamed2468(); |
| 2328 o.kind = "foo"; | 2328 o.kind = "foo"; |
| 2329 o.nextPageToken = "foo"; | 2329 o.nextPageToken = "foo"; |
| 2330 o.selfLink = "foo"; | 2330 o.selfLink = "foo"; |
| 2331 } | 2331 } |
| 2332 buildCounterInstanceAggregatedList--; | 2332 buildCounterInstanceAggregatedList--; |
| 2333 return o; | 2333 return o; |
| 2334 } | 2334 } |
| 2335 | 2335 |
| 2336 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 2336 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 2337 buildCounterInstanceAggregatedList++; | 2337 buildCounterInstanceAggregatedList++; |
| 2338 if (buildCounterInstanceAggregatedList < 3) { | 2338 if (buildCounterInstanceAggregatedList < 3) { |
| 2339 unittest.expect(o.id, unittest.equals('foo')); | 2339 unittest.expect(o.id, unittest.equals('foo')); |
| 2340 checkUnnamed765(o.items); | 2340 checkUnnamed2468(o.items); |
| 2341 unittest.expect(o.kind, unittest.equals('foo')); | 2341 unittest.expect(o.kind, unittest.equals('foo')); |
| 2342 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2342 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2343 unittest.expect(o.selfLink, unittest.equals('foo')); | 2343 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2344 } | 2344 } |
| 2345 buildCounterInstanceAggregatedList--; | 2345 buildCounterInstanceAggregatedList--; |
| 2346 } | 2346 } |
| 2347 | 2347 |
| 2348 buildUnnamed766() { | 2348 buildUnnamed2469() { |
| 2349 var o = new core.List<api.NamedPort>(); | 2349 var o = new core.List<api.NamedPort>(); |
| 2350 o.add(buildNamedPort()); | 2350 o.add(buildNamedPort()); |
| 2351 o.add(buildNamedPort()); | 2351 o.add(buildNamedPort()); |
| 2352 return o; | 2352 return o; |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 checkUnnamed766(core.List<api.NamedPort> o) { | 2355 checkUnnamed2469(core.List<api.NamedPort> o) { |
| 2356 unittest.expect(o, unittest.hasLength(2)); | 2356 unittest.expect(o, unittest.hasLength(2)); |
| 2357 checkNamedPort(o[0]); | 2357 checkNamedPort(o[0]); |
| 2358 checkNamedPort(o[1]); | 2358 checkNamedPort(o[1]); |
| 2359 } | 2359 } |
| 2360 | 2360 |
| 2361 core.int buildCounterInstanceGroup = 0; | 2361 core.int buildCounterInstanceGroup = 0; |
| 2362 buildInstanceGroup() { | 2362 buildInstanceGroup() { |
| 2363 var o = new api.InstanceGroup(); | 2363 var o = new api.InstanceGroup(); |
| 2364 buildCounterInstanceGroup++; | 2364 buildCounterInstanceGroup++; |
| 2365 if (buildCounterInstanceGroup < 3) { | 2365 if (buildCounterInstanceGroup < 3) { |
| 2366 o.creationTimestamp = "foo"; | 2366 o.creationTimestamp = "foo"; |
| 2367 o.description = "foo"; | 2367 o.description = "foo"; |
| 2368 o.fingerprint = "foo"; | 2368 o.fingerprint = "foo"; |
| 2369 o.id = "foo"; | 2369 o.id = "foo"; |
| 2370 o.kind = "foo"; | 2370 o.kind = "foo"; |
| 2371 o.name = "foo"; | 2371 o.name = "foo"; |
| 2372 o.namedPorts = buildUnnamed766(); | 2372 o.namedPorts = buildUnnamed2469(); |
| 2373 o.network = "foo"; | 2373 o.network = "foo"; |
| 2374 o.selfLink = "foo"; | 2374 o.selfLink = "foo"; |
| 2375 o.size = 42; | 2375 o.size = 42; |
| 2376 o.subnetwork = "foo"; | 2376 o.subnetwork = "foo"; |
| 2377 o.zone = "foo"; | 2377 o.zone = "foo"; |
| 2378 } | 2378 } |
| 2379 buildCounterInstanceGroup--; | 2379 buildCounterInstanceGroup--; |
| 2380 return o; | 2380 return o; |
| 2381 } | 2381 } |
| 2382 | 2382 |
| 2383 checkInstanceGroup(api.InstanceGroup o) { | 2383 checkInstanceGroup(api.InstanceGroup o) { |
| 2384 buildCounterInstanceGroup++; | 2384 buildCounterInstanceGroup++; |
| 2385 if (buildCounterInstanceGroup < 3) { | 2385 if (buildCounterInstanceGroup < 3) { |
| 2386 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2386 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2387 unittest.expect(o.description, unittest.equals('foo')); | 2387 unittest.expect(o.description, unittest.equals('foo')); |
| 2388 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2388 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2389 unittest.expect(o.id, unittest.equals('foo')); | 2389 unittest.expect(o.id, unittest.equals('foo')); |
| 2390 unittest.expect(o.kind, unittest.equals('foo')); | 2390 unittest.expect(o.kind, unittest.equals('foo')); |
| 2391 unittest.expect(o.name, unittest.equals('foo')); | 2391 unittest.expect(o.name, unittest.equals('foo')); |
| 2392 checkUnnamed766(o.namedPorts); | 2392 checkUnnamed2469(o.namedPorts); |
| 2393 unittest.expect(o.network, unittest.equals('foo')); | 2393 unittest.expect(o.network, unittest.equals('foo')); |
| 2394 unittest.expect(o.selfLink, unittest.equals('foo')); | 2394 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2395 unittest.expect(o.size, unittest.equals(42)); | 2395 unittest.expect(o.size, unittest.equals(42)); |
| 2396 unittest.expect(o.subnetwork, unittest.equals('foo')); | 2396 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 2397 unittest.expect(o.zone, unittest.equals('foo')); | 2397 unittest.expect(o.zone, unittest.equals('foo')); |
| 2398 } | 2398 } |
| 2399 buildCounterInstanceGroup--; | 2399 buildCounterInstanceGroup--; |
| 2400 } | 2400 } |
| 2401 | 2401 |
| 2402 buildUnnamed767() { | 2402 buildUnnamed2470() { |
| 2403 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 2403 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 2404 o["x"] = buildInstanceGroupsScopedList(); | 2404 o["x"] = buildInstanceGroupsScopedList(); |
| 2405 o["y"] = buildInstanceGroupsScopedList(); | 2405 o["y"] = buildInstanceGroupsScopedList(); |
| 2406 return o; | 2406 return o; |
| 2407 } | 2407 } |
| 2408 | 2408 |
| 2409 checkUnnamed767(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 2409 checkUnnamed2470(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 2410 unittest.expect(o, unittest.hasLength(2)); | 2410 unittest.expect(o, unittest.hasLength(2)); |
| 2411 checkInstanceGroupsScopedList(o["x"]); | 2411 checkInstanceGroupsScopedList(o["x"]); |
| 2412 checkInstanceGroupsScopedList(o["y"]); | 2412 checkInstanceGroupsScopedList(o["y"]); |
| 2413 } | 2413 } |
| 2414 | 2414 |
| 2415 core.int buildCounterInstanceGroupAggregatedList = 0; | 2415 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 2416 buildInstanceGroupAggregatedList() { | 2416 buildInstanceGroupAggregatedList() { |
| 2417 var o = new api.InstanceGroupAggregatedList(); | 2417 var o = new api.InstanceGroupAggregatedList(); |
| 2418 buildCounterInstanceGroupAggregatedList++; | 2418 buildCounterInstanceGroupAggregatedList++; |
| 2419 if (buildCounterInstanceGroupAggregatedList < 3) { | 2419 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2420 o.id = "foo"; | 2420 o.id = "foo"; |
| 2421 o.items = buildUnnamed767(); | 2421 o.items = buildUnnamed2470(); |
| 2422 o.kind = "foo"; | 2422 o.kind = "foo"; |
| 2423 o.nextPageToken = "foo"; | 2423 o.nextPageToken = "foo"; |
| 2424 o.selfLink = "foo"; | 2424 o.selfLink = "foo"; |
| 2425 } | 2425 } |
| 2426 buildCounterInstanceGroupAggregatedList--; | 2426 buildCounterInstanceGroupAggregatedList--; |
| 2427 return o; | 2427 return o; |
| 2428 } | 2428 } |
| 2429 | 2429 |
| 2430 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 2430 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 2431 buildCounterInstanceGroupAggregatedList++; | 2431 buildCounterInstanceGroupAggregatedList++; |
| 2432 if (buildCounterInstanceGroupAggregatedList < 3) { | 2432 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2433 unittest.expect(o.id, unittest.equals('foo')); | 2433 unittest.expect(o.id, unittest.equals('foo')); |
| 2434 checkUnnamed767(o.items); | 2434 checkUnnamed2470(o.items); |
| 2435 unittest.expect(o.kind, unittest.equals('foo')); | 2435 unittest.expect(o.kind, unittest.equals('foo')); |
| 2436 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2436 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2437 unittest.expect(o.selfLink, unittest.equals('foo')); | 2437 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2438 } | 2438 } |
| 2439 buildCounterInstanceGroupAggregatedList--; | 2439 buildCounterInstanceGroupAggregatedList--; |
| 2440 } | 2440 } |
| 2441 | 2441 |
| 2442 buildUnnamed768() { | 2442 buildUnnamed2471() { |
| 2443 var o = new core.List<api.InstanceGroup>(); | 2443 var o = new core.List<api.InstanceGroup>(); |
| 2444 o.add(buildInstanceGroup()); | 2444 o.add(buildInstanceGroup()); |
| 2445 o.add(buildInstanceGroup()); | 2445 o.add(buildInstanceGroup()); |
| 2446 return o; | 2446 return o; |
| 2447 } | 2447 } |
| 2448 | 2448 |
| 2449 checkUnnamed768(core.List<api.InstanceGroup> o) { | 2449 checkUnnamed2471(core.List<api.InstanceGroup> o) { |
| 2450 unittest.expect(o, unittest.hasLength(2)); | 2450 unittest.expect(o, unittest.hasLength(2)); |
| 2451 checkInstanceGroup(o[0]); | 2451 checkInstanceGroup(o[0]); |
| 2452 checkInstanceGroup(o[1]); | 2452 checkInstanceGroup(o[1]); |
| 2453 } | 2453 } |
| 2454 | 2454 |
| 2455 core.int buildCounterInstanceGroupList = 0; | 2455 core.int buildCounterInstanceGroupList = 0; |
| 2456 buildInstanceGroupList() { | 2456 buildInstanceGroupList() { |
| 2457 var o = new api.InstanceGroupList(); | 2457 var o = new api.InstanceGroupList(); |
| 2458 buildCounterInstanceGroupList++; | 2458 buildCounterInstanceGroupList++; |
| 2459 if (buildCounterInstanceGroupList < 3) { | 2459 if (buildCounterInstanceGroupList < 3) { |
| 2460 o.id = "foo"; | 2460 o.id = "foo"; |
| 2461 o.items = buildUnnamed768(); | 2461 o.items = buildUnnamed2471(); |
| 2462 o.kind = "foo"; | 2462 o.kind = "foo"; |
| 2463 o.nextPageToken = "foo"; | 2463 o.nextPageToken = "foo"; |
| 2464 o.selfLink = "foo"; | 2464 o.selfLink = "foo"; |
| 2465 } | 2465 } |
| 2466 buildCounterInstanceGroupList--; | 2466 buildCounterInstanceGroupList--; |
| 2467 return o; | 2467 return o; |
| 2468 } | 2468 } |
| 2469 | 2469 |
| 2470 checkInstanceGroupList(api.InstanceGroupList o) { | 2470 checkInstanceGroupList(api.InstanceGroupList o) { |
| 2471 buildCounterInstanceGroupList++; | 2471 buildCounterInstanceGroupList++; |
| 2472 if (buildCounterInstanceGroupList < 3) { | 2472 if (buildCounterInstanceGroupList < 3) { |
| 2473 unittest.expect(o.id, unittest.equals('foo')); | 2473 unittest.expect(o.id, unittest.equals('foo')); |
| 2474 checkUnnamed768(o.items); | 2474 checkUnnamed2471(o.items); |
| 2475 unittest.expect(o.kind, unittest.equals('foo')); | 2475 unittest.expect(o.kind, unittest.equals('foo')); |
| 2476 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2476 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2477 unittest.expect(o.selfLink, unittest.equals('foo')); | 2477 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2478 } | 2478 } |
| 2479 buildCounterInstanceGroupList--; | 2479 buildCounterInstanceGroupList--; |
| 2480 } | 2480 } |
| 2481 | 2481 |
| 2482 buildUnnamed769() { | 2482 buildUnnamed2472() { |
| 2483 var o = new core.List<api.NamedPort>(); | 2483 var o = new core.List<api.NamedPort>(); |
| 2484 o.add(buildNamedPort()); | 2484 o.add(buildNamedPort()); |
| 2485 o.add(buildNamedPort()); | 2485 o.add(buildNamedPort()); |
| 2486 return o; | 2486 return o; |
| 2487 } | 2487 } |
| 2488 | 2488 |
| 2489 checkUnnamed769(core.List<api.NamedPort> o) { | 2489 checkUnnamed2472(core.List<api.NamedPort> o) { |
| 2490 unittest.expect(o, unittest.hasLength(2)); | 2490 unittest.expect(o, unittest.hasLength(2)); |
| 2491 checkNamedPort(o[0]); | 2491 checkNamedPort(o[0]); |
| 2492 checkNamedPort(o[1]); | 2492 checkNamedPort(o[1]); |
| 2493 } | 2493 } |
| 2494 | 2494 |
| 2495 buildUnnamed770() { | 2495 buildUnnamed2473() { |
| 2496 var o = new core.List<core.String>(); | 2496 var o = new core.List<core.String>(); |
| 2497 o.add("foo"); | 2497 o.add("foo"); |
| 2498 o.add("foo"); | 2498 o.add("foo"); |
| 2499 return o; | 2499 return o; |
| 2500 } | 2500 } |
| 2501 | 2501 |
| 2502 checkUnnamed770(core.List<core.String> o) { | 2502 checkUnnamed2473(core.List<core.String> o) { |
| 2503 unittest.expect(o, unittest.hasLength(2)); | 2503 unittest.expect(o, unittest.hasLength(2)); |
| 2504 unittest.expect(o[0], unittest.equals('foo')); | 2504 unittest.expect(o[0], unittest.equals('foo')); |
| 2505 unittest.expect(o[1], unittest.equals('foo')); | 2505 unittest.expect(o[1], unittest.equals('foo')); |
| 2506 } | 2506 } |
| 2507 | 2507 |
| 2508 core.int buildCounterInstanceGroupManager = 0; | 2508 core.int buildCounterInstanceGroupManager = 0; |
| 2509 buildInstanceGroupManager() { | 2509 buildInstanceGroupManager() { |
| 2510 var o = new api.InstanceGroupManager(); | 2510 var o = new api.InstanceGroupManager(); |
| 2511 buildCounterInstanceGroupManager++; | 2511 buildCounterInstanceGroupManager++; |
| 2512 if (buildCounterInstanceGroupManager < 3) { | 2512 if (buildCounterInstanceGroupManager < 3) { |
| 2513 o.baseInstanceName = "foo"; | 2513 o.baseInstanceName = "foo"; |
| 2514 o.creationTimestamp = "foo"; | 2514 o.creationTimestamp = "foo"; |
| 2515 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 2515 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 2516 o.description = "foo"; | 2516 o.description = "foo"; |
| 2517 o.fingerprint = "foo"; | 2517 o.fingerprint = "foo"; |
| 2518 o.id = "foo"; | 2518 o.id = "foo"; |
| 2519 o.instanceGroup = "foo"; | 2519 o.instanceGroup = "foo"; |
| 2520 o.instanceTemplate = "foo"; | 2520 o.instanceTemplate = "foo"; |
| 2521 o.kind = "foo"; | 2521 o.kind = "foo"; |
| 2522 o.name = "foo"; | 2522 o.name = "foo"; |
| 2523 o.namedPorts = buildUnnamed769(); | 2523 o.namedPorts = buildUnnamed2472(); |
| 2524 o.selfLink = "foo"; | 2524 o.selfLink = "foo"; |
| 2525 o.targetPools = buildUnnamed770(); | 2525 o.targetPools = buildUnnamed2473(); |
| 2526 o.targetSize = 42; | 2526 o.targetSize = 42; |
| 2527 o.zone = "foo"; | 2527 o.zone = "foo"; |
| 2528 } | 2528 } |
| 2529 buildCounterInstanceGroupManager--; | 2529 buildCounterInstanceGroupManager--; |
| 2530 return o; | 2530 return o; |
| 2531 } | 2531 } |
| 2532 | 2532 |
| 2533 checkInstanceGroupManager(api.InstanceGroupManager o) { | 2533 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 2534 buildCounterInstanceGroupManager++; | 2534 buildCounterInstanceGroupManager++; |
| 2535 if (buildCounterInstanceGroupManager < 3) { | 2535 if (buildCounterInstanceGroupManager < 3) { |
| 2536 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 2536 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 2537 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2537 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2538 checkInstanceGroupManagerActionsSummary(o.currentActions); | 2538 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 2539 unittest.expect(o.description, unittest.equals('foo')); | 2539 unittest.expect(o.description, unittest.equals('foo')); |
| 2540 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2540 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2541 unittest.expect(o.id, unittest.equals('foo')); | 2541 unittest.expect(o.id, unittest.equals('foo')); |
| 2542 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 2542 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 2543 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2543 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2544 unittest.expect(o.kind, unittest.equals('foo')); | 2544 unittest.expect(o.kind, unittest.equals('foo')); |
| 2545 unittest.expect(o.name, unittest.equals('foo')); | 2545 unittest.expect(o.name, unittest.equals('foo')); |
| 2546 checkUnnamed769(o.namedPorts); | 2546 checkUnnamed2472(o.namedPorts); |
| 2547 unittest.expect(o.selfLink, unittest.equals('foo')); | 2547 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2548 checkUnnamed770(o.targetPools); | 2548 checkUnnamed2473(o.targetPools); |
| 2549 unittest.expect(o.targetSize, unittest.equals(42)); | 2549 unittest.expect(o.targetSize, unittest.equals(42)); |
| 2550 unittest.expect(o.zone, unittest.equals('foo')); | 2550 unittest.expect(o.zone, unittest.equals('foo')); |
| 2551 } | 2551 } |
| 2552 buildCounterInstanceGroupManager--; | 2552 buildCounterInstanceGroupManager--; |
| 2553 } | 2553 } |
| 2554 | 2554 |
| 2555 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 2555 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 2556 buildInstanceGroupManagerActionsSummary() { | 2556 buildInstanceGroupManagerActionsSummary() { |
| 2557 var o = new api.InstanceGroupManagerActionsSummary(); | 2557 var o = new api.InstanceGroupManagerActionsSummary(); |
| 2558 buildCounterInstanceGroupManagerActionsSummary++; | 2558 buildCounterInstanceGroupManagerActionsSummary++; |
| 2559 if (buildCounterInstanceGroupManagerActionsSummary < 3) { | 2559 if (buildCounterInstanceGroupManagerActionsSummary < 3) { |
| 2560 o.abandoning = 42; | 2560 o.abandoning = 42; |
| 2561 o.creating = 42; | 2561 o.creating = 42; |
| 2562 o.creatingWithoutRetries = 42; |
| 2562 o.deleting = 42; | 2563 o.deleting = 42; |
| 2563 o.none = 42; | 2564 o.none = 42; |
| 2564 o.recreating = 42; | 2565 o.recreating = 42; |
| 2565 o.refreshing = 42; | 2566 o.refreshing = 42; |
| 2566 o.restarting = 42; | 2567 o.restarting = 42; |
| 2567 } | 2568 } |
| 2568 buildCounterInstanceGroupManagerActionsSummary--; | 2569 buildCounterInstanceGroupManagerActionsSummary--; |
| 2569 return o; | 2570 return o; |
| 2570 } | 2571 } |
| 2571 | 2572 |
| 2572 checkInstanceGroupManagerActionsSummary(api.InstanceGroupManagerActionsSummary o
) { | 2573 checkInstanceGroupManagerActionsSummary(api.InstanceGroupManagerActionsSummary o
) { |
| 2573 buildCounterInstanceGroupManagerActionsSummary++; | 2574 buildCounterInstanceGroupManagerActionsSummary++; |
| 2574 if (buildCounterInstanceGroupManagerActionsSummary < 3) { | 2575 if (buildCounterInstanceGroupManagerActionsSummary < 3) { |
| 2575 unittest.expect(o.abandoning, unittest.equals(42)); | 2576 unittest.expect(o.abandoning, unittest.equals(42)); |
| 2576 unittest.expect(o.creating, unittest.equals(42)); | 2577 unittest.expect(o.creating, unittest.equals(42)); |
| 2578 unittest.expect(o.creatingWithoutRetries, unittest.equals(42)); |
| 2577 unittest.expect(o.deleting, unittest.equals(42)); | 2579 unittest.expect(o.deleting, unittest.equals(42)); |
| 2578 unittest.expect(o.none, unittest.equals(42)); | 2580 unittest.expect(o.none, unittest.equals(42)); |
| 2579 unittest.expect(o.recreating, unittest.equals(42)); | 2581 unittest.expect(o.recreating, unittest.equals(42)); |
| 2580 unittest.expect(o.refreshing, unittest.equals(42)); | 2582 unittest.expect(o.refreshing, unittest.equals(42)); |
| 2581 unittest.expect(o.restarting, unittest.equals(42)); | 2583 unittest.expect(o.restarting, unittest.equals(42)); |
| 2582 } | 2584 } |
| 2583 buildCounterInstanceGroupManagerActionsSummary--; | 2585 buildCounterInstanceGroupManagerActionsSummary--; |
| 2584 } | 2586 } |
| 2585 | 2587 |
| 2586 buildUnnamed771() { | 2588 buildUnnamed2474() { |
| 2587 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 2589 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 2588 o["x"] = buildInstanceGroupManagersScopedList(); | 2590 o["x"] = buildInstanceGroupManagersScopedList(); |
| 2589 o["y"] = buildInstanceGroupManagersScopedList(); | 2591 o["y"] = buildInstanceGroupManagersScopedList(); |
| 2590 return o; | 2592 return o; |
| 2591 } | 2593 } |
| 2592 | 2594 |
| 2593 checkUnnamed771(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 2595 checkUnnamed2474(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 2594 unittest.expect(o, unittest.hasLength(2)); | 2596 unittest.expect(o, unittest.hasLength(2)); |
| 2595 checkInstanceGroupManagersScopedList(o["x"]); | 2597 checkInstanceGroupManagersScopedList(o["x"]); |
| 2596 checkInstanceGroupManagersScopedList(o["y"]); | 2598 checkInstanceGroupManagersScopedList(o["y"]); |
| 2597 } | 2599 } |
| 2598 | 2600 |
| 2599 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 2601 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 2600 buildInstanceGroupManagerAggregatedList() { | 2602 buildInstanceGroupManagerAggregatedList() { |
| 2601 var o = new api.InstanceGroupManagerAggregatedList(); | 2603 var o = new api.InstanceGroupManagerAggregatedList(); |
| 2602 buildCounterInstanceGroupManagerAggregatedList++; | 2604 buildCounterInstanceGroupManagerAggregatedList++; |
| 2603 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2605 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2604 o.id = "foo"; | 2606 o.id = "foo"; |
| 2605 o.items = buildUnnamed771(); | 2607 o.items = buildUnnamed2474(); |
| 2606 o.kind = "foo"; | 2608 o.kind = "foo"; |
| 2607 o.nextPageToken = "foo"; | 2609 o.nextPageToken = "foo"; |
| 2608 o.selfLink = "foo"; | 2610 o.selfLink = "foo"; |
| 2609 } | 2611 } |
| 2610 buildCounterInstanceGroupManagerAggregatedList--; | 2612 buildCounterInstanceGroupManagerAggregatedList--; |
| 2611 return o; | 2613 return o; |
| 2612 } | 2614 } |
| 2613 | 2615 |
| 2614 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 2616 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 2615 buildCounterInstanceGroupManagerAggregatedList++; | 2617 buildCounterInstanceGroupManagerAggregatedList++; |
| 2616 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2618 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2617 unittest.expect(o.id, unittest.equals('foo')); | 2619 unittest.expect(o.id, unittest.equals('foo')); |
| 2618 checkUnnamed771(o.items); | 2620 checkUnnamed2474(o.items); |
| 2619 unittest.expect(o.kind, unittest.equals('foo')); | 2621 unittest.expect(o.kind, unittest.equals('foo')); |
| 2620 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2622 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2621 unittest.expect(o.selfLink, unittest.equals('foo')); | 2623 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2622 } | 2624 } |
| 2623 buildCounterInstanceGroupManagerAggregatedList--; | 2625 buildCounterInstanceGroupManagerAggregatedList--; |
| 2624 } | 2626 } |
| 2625 | 2627 |
| 2626 buildUnnamed772() { | 2628 buildUnnamed2475() { |
| 2627 var o = new core.List<api.InstanceGroupManager>(); | 2629 var o = new core.List<api.InstanceGroupManager>(); |
| 2628 o.add(buildInstanceGroupManager()); | 2630 o.add(buildInstanceGroupManager()); |
| 2629 o.add(buildInstanceGroupManager()); | 2631 o.add(buildInstanceGroupManager()); |
| 2630 return o; | 2632 return o; |
| 2631 } | 2633 } |
| 2632 | 2634 |
| 2633 checkUnnamed772(core.List<api.InstanceGroupManager> o) { | 2635 checkUnnamed2475(core.List<api.InstanceGroupManager> o) { |
| 2634 unittest.expect(o, unittest.hasLength(2)); | 2636 unittest.expect(o, unittest.hasLength(2)); |
| 2635 checkInstanceGroupManager(o[0]); | 2637 checkInstanceGroupManager(o[0]); |
| 2636 checkInstanceGroupManager(o[1]); | 2638 checkInstanceGroupManager(o[1]); |
| 2637 } | 2639 } |
| 2638 | 2640 |
| 2639 core.int buildCounterInstanceGroupManagerList = 0; | 2641 core.int buildCounterInstanceGroupManagerList = 0; |
| 2640 buildInstanceGroupManagerList() { | 2642 buildInstanceGroupManagerList() { |
| 2641 var o = new api.InstanceGroupManagerList(); | 2643 var o = new api.InstanceGroupManagerList(); |
| 2642 buildCounterInstanceGroupManagerList++; | 2644 buildCounterInstanceGroupManagerList++; |
| 2643 if (buildCounterInstanceGroupManagerList < 3) { | 2645 if (buildCounterInstanceGroupManagerList < 3) { |
| 2644 o.id = "foo"; | 2646 o.id = "foo"; |
| 2645 o.items = buildUnnamed772(); | 2647 o.items = buildUnnamed2475(); |
| 2646 o.kind = "foo"; | 2648 o.kind = "foo"; |
| 2647 o.nextPageToken = "foo"; | 2649 o.nextPageToken = "foo"; |
| 2648 o.selfLink = "foo"; | 2650 o.selfLink = "foo"; |
| 2649 } | 2651 } |
| 2650 buildCounterInstanceGroupManagerList--; | 2652 buildCounterInstanceGroupManagerList--; |
| 2651 return o; | 2653 return o; |
| 2652 } | 2654 } |
| 2653 | 2655 |
| 2654 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 2656 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 2655 buildCounterInstanceGroupManagerList++; | 2657 buildCounterInstanceGroupManagerList++; |
| 2656 if (buildCounterInstanceGroupManagerList < 3) { | 2658 if (buildCounterInstanceGroupManagerList < 3) { |
| 2657 unittest.expect(o.id, unittest.equals('foo')); | 2659 unittest.expect(o.id, unittest.equals('foo')); |
| 2658 checkUnnamed772(o.items); | 2660 checkUnnamed2475(o.items); |
| 2659 unittest.expect(o.kind, unittest.equals('foo')); | 2661 unittest.expect(o.kind, unittest.equals('foo')); |
| 2660 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2662 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2661 unittest.expect(o.selfLink, unittest.equals('foo')); | 2663 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2662 } | 2664 } |
| 2663 buildCounterInstanceGroupManagerList--; | 2665 buildCounterInstanceGroupManagerList--; |
| 2664 } | 2666 } |
| 2665 | 2667 |
| 2666 buildUnnamed773() { | 2668 buildUnnamed2476() { |
| 2667 var o = new core.List<core.String>(); | 2669 var o = new core.List<core.String>(); |
| 2668 o.add("foo"); | 2670 o.add("foo"); |
| 2669 o.add("foo"); | 2671 o.add("foo"); |
| 2670 return o; | 2672 return o; |
| 2671 } | 2673 } |
| 2672 | 2674 |
| 2673 checkUnnamed773(core.List<core.String> o) { | 2675 checkUnnamed2476(core.List<core.String> o) { |
| 2674 unittest.expect(o, unittest.hasLength(2)); | 2676 unittest.expect(o, unittest.hasLength(2)); |
| 2675 unittest.expect(o[0], unittest.equals('foo')); | 2677 unittest.expect(o[0], unittest.equals('foo')); |
| 2676 unittest.expect(o[1], unittest.equals('foo')); | 2678 unittest.expect(o[1], unittest.equals('foo')); |
| 2677 } | 2679 } |
| 2678 | 2680 |
| 2679 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 2681 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 2680 buildInstanceGroupManagersAbandonInstancesRequest() { | 2682 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 2681 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 2683 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 2682 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2684 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2683 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2685 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2684 o.instances = buildUnnamed773(); | 2686 o.instances = buildUnnamed2476(); |
| 2685 } | 2687 } |
| 2686 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2688 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2687 return o; | 2689 return o; |
| 2688 } | 2690 } |
| 2689 | 2691 |
| 2690 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 2692 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 2691 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2693 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2692 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2694 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2693 checkUnnamed773(o.instances); | 2695 checkUnnamed2476(o.instances); |
| 2694 } | 2696 } |
| 2695 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2697 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2696 } | 2698 } |
| 2697 | 2699 |
| 2698 buildUnnamed774() { | 2700 buildUnnamed2477() { |
| 2699 var o = new core.List<core.String>(); | 2701 var o = new core.List<core.String>(); |
| 2700 o.add("foo"); | 2702 o.add("foo"); |
| 2701 o.add("foo"); | 2703 o.add("foo"); |
| 2702 return o; | 2704 return o; |
| 2703 } | 2705 } |
| 2704 | 2706 |
| 2705 checkUnnamed774(core.List<core.String> o) { | 2707 checkUnnamed2477(core.List<core.String> o) { |
| 2706 unittest.expect(o, unittest.hasLength(2)); | 2708 unittest.expect(o, unittest.hasLength(2)); |
| 2707 unittest.expect(o[0], unittest.equals('foo')); | 2709 unittest.expect(o[0], unittest.equals('foo')); |
| 2708 unittest.expect(o[1], unittest.equals('foo')); | 2710 unittest.expect(o[1], unittest.equals('foo')); |
| 2709 } | 2711 } |
| 2710 | 2712 |
| 2711 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 2713 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 2712 buildInstanceGroupManagersDeleteInstancesRequest() { | 2714 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 2713 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 2715 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 2714 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2716 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2715 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2717 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2716 o.instances = buildUnnamed774(); | 2718 o.instances = buildUnnamed2477(); |
| 2717 } | 2719 } |
| 2718 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2720 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2719 return o; | 2721 return o; |
| 2720 } | 2722 } |
| 2721 | 2723 |
| 2722 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 2724 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 2723 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2725 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2724 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2726 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2725 checkUnnamed774(o.instances); | 2727 checkUnnamed2477(o.instances); |
| 2726 } | 2728 } |
| 2727 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2729 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2728 } | 2730 } |
| 2729 | 2731 |
| 2730 buildUnnamed775() { | 2732 buildUnnamed2478() { |
| 2731 var o = new core.List<api.ManagedInstance>(); | 2733 var o = new core.List<api.ManagedInstance>(); |
| 2732 o.add(buildManagedInstance()); | 2734 o.add(buildManagedInstance()); |
| 2733 o.add(buildManagedInstance()); | 2735 o.add(buildManagedInstance()); |
| 2734 return o; | 2736 return o; |
| 2735 } | 2737 } |
| 2736 | 2738 |
| 2737 checkUnnamed775(core.List<api.ManagedInstance> o) { | 2739 checkUnnamed2478(core.List<api.ManagedInstance> o) { |
| 2738 unittest.expect(o, unittest.hasLength(2)); | 2740 unittest.expect(o, unittest.hasLength(2)); |
| 2739 checkManagedInstance(o[0]); | 2741 checkManagedInstance(o[0]); |
| 2740 checkManagedInstance(o[1]); | 2742 checkManagedInstance(o[1]); |
| 2741 } | 2743 } |
| 2742 | 2744 |
| 2743 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 2745 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 2744 buildInstanceGroupManagersListManagedInstancesResponse() { | 2746 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 2745 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 2747 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 2746 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2748 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2747 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2749 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2748 o.managedInstances = buildUnnamed775(); | 2750 o.managedInstances = buildUnnamed2478(); |
| 2749 } | 2751 } |
| 2750 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2752 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2751 return o; | 2753 return o; |
| 2752 } | 2754 } |
| 2753 | 2755 |
| 2754 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 2756 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 2755 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2757 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2756 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2758 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2757 checkUnnamed775(o.managedInstances); | 2759 checkUnnamed2478(o.managedInstances); |
| 2758 } | 2760 } |
| 2759 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2761 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2760 } | 2762 } |
| 2761 | 2763 |
| 2762 buildUnnamed776() { | 2764 buildUnnamed2479() { |
| 2763 var o = new core.List<core.String>(); | 2765 var o = new core.List<core.String>(); |
| 2764 o.add("foo"); | 2766 o.add("foo"); |
| 2765 o.add("foo"); | 2767 o.add("foo"); |
| 2766 return o; | 2768 return o; |
| 2767 } | 2769 } |
| 2768 | 2770 |
| 2769 checkUnnamed776(core.List<core.String> o) { | 2771 checkUnnamed2479(core.List<core.String> o) { |
| 2770 unittest.expect(o, unittest.hasLength(2)); | 2772 unittest.expect(o, unittest.hasLength(2)); |
| 2771 unittest.expect(o[0], unittest.equals('foo')); | 2773 unittest.expect(o[0], unittest.equals('foo')); |
| 2772 unittest.expect(o[1], unittest.equals('foo')); | 2774 unittest.expect(o[1], unittest.equals('foo')); |
| 2773 } | 2775 } |
| 2774 | 2776 |
| 2775 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 2777 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 2776 buildInstanceGroupManagersRecreateInstancesRequest() { | 2778 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 2777 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 2779 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 2778 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2780 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2779 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2781 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2780 o.instances = buildUnnamed776(); | 2782 o.instances = buildUnnamed2479(); |
| 2781 } | 2783 } |
| 2782 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2784 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2783 return o; | 2785 return o; |
| 2784 } | 2786 } |
| 2785 | 2787 |
| 2786 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 2788 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 2787 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2789 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2788 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2790 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2789 checkUnnamed776(o.instances); | 2791 checkUnnamed2479(o.instances); |
| 2790 } | 2792 } |
| 2791 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2793 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2792 } | 2794 } |
| 2793 | 2795 |
| 2794 buildUnnamed777() { | 2796 buildUnnamed2480() { |
| 2795 var o = new core.List<api.InstanceGroupManager>(); | 2797 var o = new core.List<api.InstanceGroupManager>(); |
| 2796 o.add(buildInstanceGroupManager()); | 2798 o.add(buildInstanceGroupManager()); |
| 2797 o.add(buildInstanceGroupManager()); | 2799 o.add(buildInstanceGroupManager()); |
| 2798 return o; | 2800 return o; |
| 2799 } | 2801 } |
| 2800 | 2802 |
| 2801 checkUnnamed777(core.List<api.InstanceGroupManager> o) { | 2803 checkUnnamed2480(core.List<api.InstanceGroupManager> o) { |
| 2802 unittest.expect(o, unittest.hasLength(2)); | 2804 unittest.expect(o, unittest.hasLength(2)); |
| 2803 checkInstanceGroupManager(o[0]); | 2805 checkInstanceGroupManager(o[0]); |
| 2804 checkInstanceGroupManager(o[1]); | 2806 checkInstanceGroupManager(o[1]); |
| 2805 } | 2807 } |
| 2806 | 2808 |
| 2807 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 2809 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 2808 buildInstanceGroupManagersScopedListWarningData() { | 2810 buildInstanceGroupManagersScopedListWarningData() { |
| 2809 var o = new api.InstanceGroupManagersScopedListWarningData(); | 2811 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 2810 buildCounterInstanceGroupManagersScopedListWarningData++; | 2812 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2811 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2813 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2812 o.key = "foo"; | 2814 o.key = "foo"; |
| 2813 o.value = "foo"; | 2815 o.value = "foo"; |
| 2814 } | 2816 } |
| 2815 buildCounterInstanceGroupManagersScopedListWarningData--; | 2817 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2816 return o; | 2818 return o; |
| 2817 } | 2819 } |
| 2818 | 2820 |
| 2819 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 2821 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 2820 buildCounterInstanceGroupManagersScopedListWarningData++; | 2822 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2821 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2823 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2822 unittest.expect(o.key, unittest.equals('foo')); | 2824 unittest.expect(o.key, unittest.equals('foo')); |
| 2823 unittest.expect(o.value, unittest.equals('foo')); | 2825 unittest.expect(o.value, unittest.equals('foo')); |
| 2824 } | 2826 } |
| 2825 buildCounterInstanceGroupManagersScopedListWarningData--; | 2827 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2826 } | 2828 } |
| 2827 | 2829 |
| 2828 buildUnnamed778() { | 2830 buildUnnamed2481() { |
| 2829 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 2831 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 2830 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2832 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2831 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2833 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2832 return o; | 2834 return o; |
| 2833 } | 2835 } |
| 2834 | 2836 |
| 2835 checkUnnamed778(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 2837 checkUnnamed2481(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 2836 unittest.expect(o, unittest.hasLength(2)); | 2838 unittest.expect(o, unittest.hasLength(2)); |
| 2837 checkInstanceGroupManagersScopedListWarningData(o[0]); | 2839 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 2838 checkInstanceGroupManagersScopedListWarningData(o[1]); | 2840 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 2839 } | 2841 } |
| 2840 | 2842 |
| 2841 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 2843 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 2842 buildInstanceGroupManagersScopedListWarning() { | 2844 buildInstanceGroupManagersScopedListWarning() { |
| 2843 var o = new api.InstanceGroupManagersScopedListWarning(); | 2845 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 2844 buildCounterInstanceGroupManagersScopedListWarning++; | 2846 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2845 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2847 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2846 o.code = "foo"; | 2848 o.code = "foo"; |
| 2847 o.data = buildUnnamed778(); | 2849 o.data = buildUnnamed2481(); |
| 2848 o.message = "foo"; | 2850 o.message = "foo"; |
| 2849 } | 2851 } |
| 2850 buildCounterInstanceGroupManagersScopedListWarning--; | 2852 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2851 return o; | 2853 return o; |
| 2852 } | 2854 } |
| 2853 | 2855 |
| 2854 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 2856 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 2855 buildCounterInstanceGroupManagersScopedListWarning++; | 2857 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2856 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2858 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2857 unittest.expect(o.code, unittest.equals('foo')); | 2859 unittest.expect(o.code, unittest.equals('foo')); |
| 2858 checkUnnamed778(o.data); | 2860 checkUnnamed2481(o.data); |
| 2859 unittest.expect(o.message, unittest.equals('foo')); | 2861 unittest.expect(o.message, unittest.equals('foo')); |
| 2860 } | 2862 } |
| 2861 buildCounterInstanceGroupManagersScopedListWarning--; | 2863 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2862 } | 2864 } |
| 2863 | 2865 |
| 2864 core.int buildCounterInstanceGroupManagersScopedList = 0; | 2866 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 2865 buildInstanceGroupManagersScopedList() { | 2867 buildInstanceGroupManagersScopedList() { |
| 2866 var o = new api.InstanceGroupManagersScopedList(); | 2868 var o = new api.InstanceGroupManagersScopedList(); |
| 2867 buildCounterInstanceGroupManagersScopedList++; | 2869 buildCounterInstanceGroupManagersScopedList++; |
| 2868 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2870 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2869 o.instanceGroupManagers = buildUnnamed777(); | 2871 o.instanceGroupManagers = buildUnnamed2480(); |
| 2870 o.warning = buildInstanceGroupManagersScopedListWarning(); | 2872 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 2871 } | 2873 } |
| 2872 buildCounterInstanceGroupManagersScopedList--; | 2874 buildCounterInstanceGroupManagersScopedList--; |
| 2873 return o; | 2875 return o; |
| 2874 } | 2876 } |
| 2875 | 2877 |
| 2876 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 2878 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 2877 buildCounterInstanceGroupManagersScopedList++; | 2879 buildCounterInstanceGroupManagersScopedList++; |
| 2878 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2880 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2879 checkUnnamed777(o.instanceGroupManagers); | 2881 checkUnnamed2480(o.instanceGroupManagers); |
| 2880 checkInstanceGroupManagersScopedListWarning(o.warning); | 2882 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 2881 } | 2883 } |
| 2882 buildCounterInstanceGroupManagersScopedList--; | 2884 buildCounterInstanceGroupManagersScopedList--; |
| 2883 } | 2885 } |
| 2884 | 2886 |
| 2885 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 2887 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 2886 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 2888 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 2887 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 2889 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 2888 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2890 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2889 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2891 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2890 o.instanceTemplate = "foo"; | 2892 o.instanceTemplate = "foo"; |
| 2891 } | 2893 } |
| 2892 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2894 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2893 return o; | 2895 return o; |
| 2894 } | 2896 } |
| 2895 | 2897 |
| 2896 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 2898 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 2897 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2899 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2898 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2900 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2899 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2901 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2900 } | 2902 } |
| 2901 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2903 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2902 } | 2904 } |
| 2903 | 2905 |
| 2904 buildUnnamed779() { | 2906 buildUnnamed2482() { |
| 2905 var o = new core.List<core.String>(); | 2907 var o = new core.List<core.String>(); |
| 2906 o.add("foo"); | 2908 o.add("foo"); |
| 2907 o.add("foo"); | 2909 o.add("foo"); |
| 2908 return o; | 2910 return o; |
| 2909 } | 2911 } |
| 2910 | 2912 |
| 2911 checkUnnamed779(core.List<core.String> o) { | 2913 checkUnnamed2482(core.List<core.String> o) { |
| 2912 unittest.expect(o, unittest.hasLength(2)); | 2914 unittest.expect(o, unittest.hasLength(2)); |
| 2913 unittest.expect(o[0], unittest.equals('foo')); | 2915 unittest.expect(o[0], unittest.equals('foo')); |
| 2914 unittest.expect(o[1], unittest.equals('foo')); | 2916 unittest.expect(o[1], unittest.equals('foo')); |
| 2915 } | 2917 } |
| 2916 | 2918 |
| 2917 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 2919 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 2918 buildInstanceGroupManagersSetTargetPoolsRequest() { | 2920 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 2919 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 2921 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 2920 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2922 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2921 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2923 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2922 o.fingerprint = "foo"; | 2924 o.fingerprint = "foo"; |
| 2923 o.targetPools = buildUnnamed779(); | 2925 o.targetPools = buildUnnamed2482(); |
| 2924 } | 2926 } |
| 2925 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2927 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2926 return o; | 2928 return o; |
| 2927 } | 2929 } |
| 2928 | 2930 |
| 2929 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 2931 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 2930 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2932 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2931 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2933 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2932 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2934 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2933 checkUnnamed779(o.targetPools); | 2935 checkUnnamed2482(o.targetPools); |
| 2934 } | 2936 } |
| 2935 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2937 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2936 } | 2938 } |
| 2937 | 2939 |
| 2938 buildUnnamed780() { | 2940 buildUnnamed2483() { |
| 2939 var o = new core.List<api.InstanceReference>(); | 2941 var o = new core.List<api.InstanceReference>(); |
| 2940 o.add(buildInstanceReference()); | 2942 o.add(buildInstanceReference()); |
| 2941 o.add(buildInstanceReference()); | 2943 o.add(buildInstanceReference()); |
| 2942 return o; | 2944 return o; |
| 2943 } | 2945 } |
| 2944 | 2946 |
| 2945 checkUnnamed780(core.List<api.InstanceReference> o) { | 2947 checkUnnamed2483(core.List<api.InstanceReference> o) { |
| 2946 unittest.expect(o, unittest.hasLength(2)); | 2948 unittest.expect(o, unittest.hasLength(2)); |
| 2947 checkInstanceReference(o[0]); | 2949 checkInstanceReference(o[0]); |
| 2948 checkInstanceReference(o[1]); | 2950 checkInstanceReference(o[1]); |
| 2949 } | 2951 } |
| 2950 | 2952 |
| 2951 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 2953 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 2952 buildInstanceGroupsAddInstancesRequest() { | 2954 buildInstanceGroupsAddInstancesRequest() { |
| 2953 var o = new api.InstanceGroupsAddInstancesRequest(); | 2955 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 2954 buildCounterInstanceGroupsAddInstancesRequest++; | 2956 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2955 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2957 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2956 o.instances = buildUnnamed780(); | 2958 o.instances = buildUnnamed2483(); |
| 2957 } | 2959 } |
| 2958 buildCounterInstanceGroupsAddInstancesRequest--; | 2960 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2959 return o; | 2961 return o; |
| 2960 } | 2962 } |
| 2961 | 2963 |
| 2962 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 2964 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 2963 buildCounterInstanceGroupsAddInstancesRequest++; | 2965 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2964 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2966 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2965 checkUnnamed780(o.instances); | 2967 checkUnnamed2483(o.instances); |
| 2966 } | 2968 } |
| 2967 buildCounterInstanceGroupsAddInstancesRequest--; | 2969 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2968 } | 2970 } |
| 2969 | 2971 |
| 2970 buildUnnamed781() { | 2972 buildUnnamed2484() { |
| 2971 var o = new core.List<api.InstanceWithNamedPorts>(); | 2973 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 2972 o.add(buildInstanceWithNamedPorts()); | 2974 o.add(buildInstanceWithNamedPorts()); |
| 2973 o.add(buildInstanceWithNamedPorts()); | 2975 o.add(buildInstanceWithNamedPorts()); |
| 2974 return o; | 2976 return o; |
| 2975 } | 2977 } |
| 2976 | 2978 |
| 2977 checkUnnamed781(core.List<api.InstanceWithNamedPorts> o) { | 2979 checkUnnamed2484(core.List<api.InstanceWithNamedPorts> o) { |
| 2978 unittest.expect(o, unittest.hasLength(2)); | 2980 unittest.expect(o, unittest.hasLength(2)); |
| 2979 checkInstanceWithNamedPorts(o[0]); | 2981 checkInstanceWithNamedPorts(o[0]); |
| 2980 checkInstanceWithNamedPorts(o[1]); | 2982 checkInstanceWithNamedPorts(o[1]); |
| 2981 } | 2983 } |
| 2982 | 2984 |
| 2983 core.int buildCounterInstanceGroupsListInstances = 0; | 2985 core.int buildCounterInstanceGroupsListInstances = 0; |
| 2984 buildInstanceGroupsListInstances() { | 2986 buildInstanceGroupsListInstances() { |
| 2985 var o = new api.InstanceGroupsListInstances(); | 2987 var o = new api.InstanceGroupsListInstances(); |
| 2986 buildCounterInstanceGroupsListInstances++; | 2988 buildCounterInstanceGroupsListInstances++; |
| 2987 if (buildCounterInstanceGroupsListInstances < 3) { | 2989 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2988 o.id = "foo"; | 2990 o.id = "foo"; |
| 2989 o.items = buildUnnamed781(); | 2991 o.items = buildUnnamed2484(); |
| 2990 o.kind = "foo"; | 2992 o.kind = "foo"; |
| 2991 o.nextPageToken = "foo"; | 2993 o.nextPageToken = "foo"; |
| 2992 o.selfLink = "foo"; | 2994 o.selfLink = "foo"; |
| 2993 } | 2995 } |
| 2994 buildCounterInstanceGroupsListInstances--; | 2996 buildCounterInstanceGroupsListInstances--; |
| 2995 return o; | 2997 return o; |
| 2996 } | 2998 } |
| 2997 | 2999 |
| 2998 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 3000 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 2999 buildCounterInstanceGroupsListInstances++; | 3001 buildCounterInstanceGroupsListInstances++; |
| 3000 if (buildCounterInstanceGroupsListInstances < 3) { | 3002 if (buildCounterInstanceGroupsListInstances < 3) { |
| 3001 unittest.expect(o.id, unittest.equals('foo')); | 3003 unittest.expect(o.id, unittest.equals('foo')); |
| 3002 checkUnnamed781(o.items); | 3004 checkUnnamed2484(o.items); |
| 3003 unittest.expect(o.kind, unittest.equals('foo')); | 3005 unittest.expect(o.kind, unittest.equals('foo')); |
| 3004 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3006 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3005 unittest.expect(o.selfLink, unittest.equals('foo')); | 3007 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3006 } | 3008 } |
| 3007 buildCounterInstanceGroupsListInstances--; | 3009 buildCounterInstanceGroupsListInstances--; |
| 3008 } | 3010 } |
| 3009 | 3011 |
| 3010 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 3012 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 3011 buildInstanceGroupsListInstancesRequest() { | 3013 buildInstanceGroupsListInstancesRequest() { |
| 3012 var o = new api.InstanceGroupsListInstancesRequest(); | 3014 var o = new api.InstanceGroupsListInstancesRequest(); |
| 3013 buildCounterInstanceGroupsListInstancesRequest++; | 3015 buildCounterInstanceGroupsListInstancesRequest++; |
| 3014 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3016 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3015 o.instanceState = "foo"; | 3017 o.instanceState = "foo"; |
| 3016 } | 3018 } |
| 3017 buildCounterInstanceGroupsListInstancesRequest--; | 3019 buildCounterInstanceGroupsListInstancesRequest--; |
| 3018 return o; | 3020 return o; |
| 3019 } | 3021 } |
| 3020 | 3022 |
| 3021 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 3023 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 3022 buildCounterInstanceGroupsListInstancesRequest++; | 3024 buildCounterInstanceGroupsListInstancesRequest++; |
| 3023 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3025 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3024 unittest.expect(o.instanceState, unittest.equals('foo')); | 3026 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 3025 } | 3027 } |
| 3026 buildCounterInstanceGroupsListInstancesRequest--; | 3028 buildCounterInstanceGroupsListInstancesRequest--; |
| 3027 } | 3029 } |
| 3028 | 3030 |
| 3029 buildUnnamed782() { | 3031 buildUnnamed2485() { |
| 3030 var o = new core.List<api.InstanceReference>(); | 3032 var o = new core.List<api.InstanceReference>(); |
| 3031 o.add(buildInstanceReference()); | 3033 o.add(buildInstanceReference()); |
| 3032 o.add(buildInstanceReference()); | 3034 o.add(buildInstanceReference()); |
| 3033 return o; | 3035 return o; |
| 3034 } | 3036 } |
| 3035 | 3037 |
| 3036 checkUnnamed782(core.List<api.InstanceReference> o) { | 3038 checkUnnamed2485(core.List<api.InstanceReference> o) { |
| 3037 unittest.expect(o, unittest.hasLength(2)); | 3039 unittest.expect(o, unittest.hasLength(2)); |
| 3038 checkInstanceReference(o[0]); | 3040 checkInstanceReference(o[0]); |
| 3039 checkInstanceReference(o[1]); | 3041 checkInstanceReference(o[1]); |
| 3040 } | 3042 } |
| 3041 | 3043 |
| 3042 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 3044 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 3043 buildInstanceGroupsRemoveInstancesRequest() { | 3045 buildInstanceGroupsRemoveInstancesRequest() { |
| 3044 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 3046 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 3045 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3047 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3046 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3048 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3047 o.instances = buildUnnamed782(); | 3049 o.instances = buildUnnamed2485(); |
| 3048 } | 3050 } |
| 3049 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3051 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3050 return o; | 3052 return o; |
| 3051 } | 3053 } |
| 3052 | 3054 |
| 3053 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 3055 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 3054 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3056 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3055 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3057 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3056 checkUnnamed782(o.instances); | 3058 checkUnnamed2485(o.instances); |
| 3057 } | 3059 } |
| 3058 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3060 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3059 } | 3061 } |
| 3060 | 3062 |
| 3061 buildUnnamed783() { | 3063 buildUnnamed2486() { |
| 3062 var o = new core.List<api.InstanceGroup>(); | 3064 var o = new core.List<api.InstanceGroup>(); |
| 3063 o.add(buildInstanceGroup()); | 3065 o.add(buildInstanceGroup()); |
| 3064 o.add(buildInstanceGroup()); | 3066 o.add(buildInstanceGroup()); |
| 3065 return o; | 3067 return o; |
| 3066 } | 3068 } |
| 3067 | 3069 |
| 3068 checkUnnamed783(core.List<api.InstanceGroup> o) { | 3070 checkUnnamed2486(core.List<api.InstanceGroup> o) { |
| 3069 unittest.expect(o, unittest.hasLength(2)); | 3071 unittest.expect(o, unittest.hasLength(2)); |
| 3070 checkInstanceGroup(o[0]); | 3072 checkInstanceGroup(o[0]); |
| 3071 checkInstanceGroup(o[1]); | 3073 checkInstanceGroup(o[1]); |
| 3072 } | 3074 } |
| 3073 | 3075 |
| 3074 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 3076 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 3075 buildInstanceGroupsScopedListWarningData() { | 3077 buildInstanceGroupsScopedListWarningData() { |
| 3076 var o = new api.InstanceGroupsScopedListWarningData(); | 3078 var o = new api.InstanceGroupsScopedListWarningData(); |
| 3077 buildCounterInstanceGroupsScopedListWarningData++; | 3079 buildCounterInstanceGroupsScopedListWarningData++; |
| 3078 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3080 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3079 o.key = "foo"; | 3081 o.key = "foo"; |
| 3080 o.value = "foo"; | 3082 o.value = "foo"; |
| 3081 } | 3083 } |
| 3082 buildCounterInstanceGroupsScopedListWarningData--; | 3084 buildCounterInstanceGroupsScopedListWarningData--; |
| 3083 return o; | 3085 return o; |
| 3084 } | 3086 } |
| 3085 | 3087 |
| 3086 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 3088 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 3087 buildCounterInstanceGroupsScopedListWarningData++; | 3089 buildCounterInstanceGroupsScopedListWarningData++; |
| 3088 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3090 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3089 unittest.expect(o.key, unittest.equals('foo')); | 3091 unittest.expect(o.key, unittest.equals('foo')); |
| 3090 unittest.expect(o.value, unittest.equals('foo')); | 3092 unittest.expect(o.value, unittest.equals('foo')); |
| 3091 } | 3093 } |
| 3092 buildCounterInstanceGroupsScopedListWarningData--; | 3094 buildCounterInstanceGroupsScopedListWarningData--; |
| 3093 } | 3095 } |
| 3094 | 3096 |
| 3095 buildUnnamed784() { | 3097 buildUnnamed2487() { |
| 3096 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 3098 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 3097 o.add(buildInstanceGroupsScopedListWarningData()); | 3099 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3098 o.add(buildInstanceGroupsScopedListWarningData()); | 3100 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3099 return o; | 3101 return o; |
| 3100 } | 3102 } |
| 3101 | 3103 |
| 3102 checkUnnamed784(core.List<api.InstanceGroupsScopedListWarningData> o) { | 3104 checkUnnamed2487(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 3103 unittest.expect(o, unittest.hasLength(2)); | 3105 unittest.expect(o, unittest.hasLength(2)); |
| 3104 checkInstanceGroupsScopedListWarningData(o[0]); | 3106 checkInstanceGroupsScopedListWarningData(o[0]); |
| 3105 checkInstanceGroupsScopedListWarningData(o[1]); | 3107 checkInstanceGroupsScopedListWarningData(o[1]); |
| 3106 } | 3108 } |
| 3107 | 3109 |
| 3108 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 3110 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 3109 buildInstanceGroupsScopedListWarning() { | 3111 buildInstanceGroupsScopedListWarning() { |
| 3110 var o = new api.InstanceGroupsScopedListWarning(); | 3112 var o = new api.InstanceGroupsScopedListWarning(); |
| 3111 buildCounterInstanceGroupsScopedListWarning++; | 3113 buildCounterInstanceGroupsScopedListWarning++; |
| 3112 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3114 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3113 o.code = "foo"; | 3115 o.code = "foo"; |
| 3114 o.data = buildUnnamed784(); | 3116 o.data = buildUnnamed2487(); |
| 3115 o.message = "foo"; | 3117 o.message = "foo"; |
| 3116 } | 3118 } |
| 3117 buildCounterInstanceGroupsScopedListWarning--; | 3119 buildCounterInstanceGroupsScopedListWarning--; |
| 3118 return o; | 3120 return o; |
| 3119 } | 3121 } |
| 3120 | 3122 |
| 3121 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 3123 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 3122 buildCounterInstanceGroupsScopedListWarning++; | 3124 buildCounterInstanceGroupsScopedListWarning++; |
| 3123 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3125 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3124 unittest.expect(o.code, unittest.equals('foo')); | 3126 unittest.expect(o.code, unittest.equals('foo')); |
| 3125 checkUnnamed784(o.data); | 3127 checkUnnamed2487(o.data); |
| 3126 unittest.expect(o.message, unittest.equals('foo')); | 3128 unittest.expect(o.message, unittest.equals('foo')); |
| 3127 } | 3129 } |
| 3128 buildCounterInstanceGroupsScopedListWarning--; | 3130 buildCounterInstanceGroupsScopedListWarning--; |
| 3129 } | 3131 } |
| 3130 | 3132 |
| 3131 core.int buildCounterInstanceGroupsScopedList = 0; | 3133 core.int buildCounterInstanceGroupsScopedList = 0; |
| 3132 buildInstanceGroupsScopedList() { | 3134 buildInstanceGroupsScopedList() { |
| 3133 var o = new api.InstanceGroupsScopedList(); | 3135 var o = new api.InstanceGroupsScopedList(); |
| 3134 buildCounterInstanceGroupsScopedList++; | 3136 buildCounterInstanceGroupsScopedList++; |
| 3135 if (buildCounterInstanceGroupsScopedList < 3) { | 3137 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3136 o.instanceGroups = buildUnnamed783(); | 3138 o.instanceGroups = buildUnnamed2486(); |
| 3137 o.warning = buildInstanceGroupsScopedListWarning(); | 3139 o.warning = buildInstanceGroupsScopedListWarning(); |
| 3138 } | 3140 } |
| 3139 buildCounterInstanceGroupsScopedList--; | 3141 buildCounterInstanceGroupsScopedList--; |
| 3140 return o; | 3142 return o; |
| 3141 } | 3143 } |
| 3142 | 3144 |
| 3143 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 3145 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 3144 buildCounterInstanceGroupsScopedList++; | 3146 buildCounterInstanceGroupsScopedList++; |
| 3145 if (buildCounterInstanceGroupsScopedList < 3) { | 3147 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3146 checkUnnamed783(o.instanceGroups); | 3148 checkUnnamed2486(o.instanceGroups); |
| 3147 checkInstanceGroupsScopedListWarning(o.warning); | 3149 checkInstanceGroupsScopedListWarning(o.warning); |
| 3148 } | 3150 } |
| 3149 buildCounterInstanceGroupsScopedList--; | 3151 buildCounterInstanceGroupsScopedList--; |
| 3150 } | 3152 } |
| 3151 | 3153 |
| 3152 buildUnnamed785() { | 3154 buildUnnamed2488() { |
| 3153 var o = new core.List<api.NamedPort>(); | 3155 var o = new core.List<api.NamedPort>(); |
| 3154 o.add(buildNamedPort()); | 3156 o.add(buildNamedPort()); |
| 3155 o.add(buildNamedPort()); | 3157 o.add(buildNamedPort()); |
| 3156 return o; | 3158 return o; |
| 3157 } | 3159 } |
| 3158 | 3160 |
| 3159 checkUnnamed785(core.List<api.NamedPort> o) { | 3161 checkUnnamed2488(core.List<api.NamedPort> o) { |
| 3160 unittest.expect(o, unittest.hasLength(2)); | 3162 unittest.expect(o, unittest.hasLength(2)); |
| 3161 checkNamedPort(o[0]); | 3163 checkNamedPort(o[0]); |
| 3162 checkNamedPort(o[1]); | 3164 checkNamedPort(o[1]); |
| 3163 } | 3165 } |
| 3164 | 3166 |
| 3165 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 3167 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 3166 buildInstanceGroupsSetNamedPortsRequest() { | 3168 buildInstanceGroupsSetNamedPortsRequest() { |
| 3167 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 3169 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 3168 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3170 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3169 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3171 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3170 o.fingerprint = "foo"; | 3172 o.fingerprint = "foo"; |
| 3171 o.namedPorts = buildUnnamed785(); | 3173 o.namedPorts = buildUnnamed2488(); |
| 3172 } | 3174 } |
| 3173 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3175 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3174 return o; | 3176 return o; |
| 3175 } | 3177 } |
| 3176 | 3178 |
| 3177 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 3179 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 3178 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3180 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3179 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3181 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3180 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3182 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3181 checkUnnamed785(o.namedPorts); | 3183 checkUnnamed2488(o.namedPorts); |
| 3182 } | 3184 } |
| 3183 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3185 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3184 } | 3186 } |
| 3185 | 3187 |
| 3186 buildUnnamed786() { | 3188 buildUnnamed2489() { |
| 3187 var o = new core.List<api.Instance>(); | 3189 var o = new core.List<api.Instance>(); |
| 3188 o.add(buildInstance()); | 3190 o.add(buildInstance()); |
| 3189 o.add(buildInstance()); | 3191 o.add(buildInstance()); |
| 3190 return o; | 3192 return o; |
| 3191 } | 3193 } |
| 3192 | 3194 |
| 3193 checkUnnamed786(core.List<api.Instance> o) { | 3195 checkUnnamed2489(core.List<api.Instance> o) { |
| 3194 unittest.expect(o, unittest.hasLength(2)); | 3196 unittest.expect(o, unittest.hasLength(2)); |
| 3195 checkInstance(o[0]); | 3197 checkInstance(o[0]); |
| 3196 checkInstance(o[1]); | 3198 checkInstance(o[1]); |
| 3197 } | 3199 } |
| 3198 | 3200 |
| 3199 core.int buildCounterInstanceList = 0; | 3201 core.int buildCounterInstanceList = 0; |
| 3200 buildInstanceList() { | 3202 buildInstanceList() { |
| 3201 var o = new api.InstanceList(); | 3203 var o = new api.InstanceList(); |
| 3202 buildCounterInstanceList++; | 3204 buildCounterInstanceList++; |
| 3203 if (buildCounterInstanceList < 3) { | 3205 if (buildCounterInstanceList < 3) { |
| 3204 o.id = "foo"; | 3206 o.id = "foo"; |
| 3205 o.items = buildUnnamed786(); | 3207 o.items = buildUnnamed2489(); |
| 3206 o.kind = "foo"; | 3208 o.kind = "foo"; |
| 3207 o.nextPageToken = "foo"; | 3209 o.nextPageToken = "foo"; |
| 3208 o.selfLink = "foo"; | 3210 o.selfLink = "foo"; |
| 3209 } | 3211 } |
| 3210 buildCounterInstanceList--; | 3212 buildCounterInstanceList--; |
| 3211 return o; | 3213 return o; |
| 3212 } | 3214 } |
| 3213 | 3215 |
| 3214 checkInstanceList(api.InstanceList o) { | 3216 checkInstanceList(api.InstanceList o) { |
| 3215 buildCounterInstanceList++; | 3217 buildCounterInstanceList++; |
| 3216 if (buildCounterInstanceList < 3) { | 3218 if (buildCounterInstanceList < 3) { |
| 3217 unittest.expect(o.id, unittest.equals('foo')); | 3219 unittest.expect(o.id, unittest.equals('foo')); |
| 3218 checkUnnamed786(o.items); | 3220 checkUnnamed2489(o.items); |
| 3219 unittest.expect(o.kind, unittest.equals('foo')); | 3221 unittest.expect(o.kind, unittest.equals('foo')); |
| 3220 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3222 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3221 unittest.expect(o.selfLink, unittest.equals('foo')); | 3223 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3222 } | 3224 } |
| 3223 buildCounterInstanceList--; | 3225 buildCounterInstanceList--; |
| 3224 } | 3226 } |
| 3225 | 3227 |
| 3226 core.int buildCounterInstanceMoveRequest = 0; | 3228 core.int buildCounterInstanceMoveRequest = 0; |
| 3227 buildInstanceMoveRequest() { | 3229 buildInstanceMoveRequest() { |
| 3228 var o = new api.InstanceMoveRequest(); | 3230 var o = new api.InstanceMoveRequest(); |
| 3229 buildCounterInstanceMoveRequest++; | 3231 buildCounterInstanceMoveRequest++; |
| 3230 if (buildCounterInstanceMoveRequest < 3) { | 3232 if (buildCounterInstanceMoveRequest < 3) { |
| 3231 o.destinationZone = "foo"; | 3233 o.destinationZone = "foo"; |
| 3232 o.targetInstance = "foo"; | 3234 o.targetInstance = "foo"; |
| 3233 } | 3235 } |
| 3234 buildCounterInstanceMoveRequest--; | 3236 buildCounterInstanceMoveRequest--; |
| 3235 return o; | 3237 return o; |
| 3236 } | 3238 } |
| 3237 | 3239 |
| 3238 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 3240 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 3239 buildCounterInstanceMoveRequest++; | 3241 buildCounterInstanceMoveRequest++; |
| 3240 if (buildCounterInstanceMoveRequest < 3) { | 3242 if (buildCounterInstanceMoveRequest < 3) { |
| 3241 unittest.expect(o.destinationZone, unittest.equals('foo')); | 3243 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 3242 unittest.expect(o.targetInstance, unittest.equals('foo')); | 3244 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 3243 } | 3245 } |
| 3244 buildCounterInstanceMoveRequest--; | 3246 buildCounterInstanceMoveRequest--; |
| 3245 } | 3247 } |
| 3246 | 3248 |
| 3247 buildUnnamed787() { | 3249 buildUnnamed2490() { |
| 3248 var o = new core.List<api.AttachedDisk>(); | 3250 var o = new core.List<api.AttachedDisk>(); |
| 3249 o.add(buildAttachedDisk()); | 3251 o.add(buildAttachedDisk()); |
| 3250 o.add(buildAttachedDisk()); | 3252 o.add(buildAttachedDisk()); |
| 3251 return o; | 3253 return o; |
| 3252 } | 3254 } |
| 3253 | 3255 |
| 3254 checkUnnamed787(core.List<api.AttachedDisk> o) { | 3256 checkUnnamed2490(core.List<api.AttachedDisk> o) { |
| 3255 unittest.expect(o, unittest.hasLength(2)); | 3257 unittest.expect(o, unittest.hasLength(2)); |
| 3256 checkAttachedDisk(o[0]); | 3258 checkAttachedDisk(o[0]); |
| 3257 checkAttachedDisk(o[1]); | 3259 checkAttachedDisk(o[1]); |
| 3258 } | 3260 } |
| 3259 | 3261 |
| 3260 buildUnnamed788() { | 3262 buildUnnamed2491() { |
| 3261 var o = new core.List<api.NetworkInterface>(); | 3263 var o = new core.List<api.NetworkInterface>(); |
| 3262 o.add(buildNetworkInterface()); | 3264 o.add(buildNetworkInterface()); |
| 3263 o.add(buildNetworkInterface()); | 3265 o.add(buildNetworkInterface()); |
| 3264 return o; | 3266 return o; |
| 3265 } | 3267 } |
| 3266 | 3268 |
| 3267 checkUnnamed788(core.List<api.NetworkInterface> o) { | 3269 checkUnnamed2491(core.List<api.NetworkInterface> o) { |
| 3268 unittest.expect(o, unittest.hasLength(2)); | 3270 unittest.expect(o, unittest.hasLength(2)); |
| 3269 checkNetworkInterface(o[0]); | 3271 checkNetworkInterface(o[0]); |
| 3270 checkNetworkInterface(o[1]); | 3272 checkNetworkInterface(o[1]); |
| 3271 } | 3273 } |
| 3272 | 3274 |
| 3273 buildUnnamed789() { | 3275 buildUnnamed2492() { |
| 3274 var o = new core.List<api.ServiceAccount>(); | 3276 var o = new core.List<api.ServiceAccount>(); |
| 3275 o.add(buildServiceAccount()); | 3277 o.add(buildServiceAccount()); |
| 3276 o.add(buildServiceAccount()); | 3278 o.add(buildServiceAccount()); |
| 3277 return o; | 3279 return o; |
| 3278 } | 3280 } |
| 3279 | 3281 |
| 3280 checkUnnamed789(core.List<api.ServiceAccount> o) { | 3282 checkUnnamed2492(core.List<api.ServiceAccount> o) { |
| 3281 unittest.expect(o, unittest.hasLength(2)); | 3283 unittest.expect(o, unittest.hasLength(2)); |
| 3282 checkServiceAccount(o[0]); | 3284 checkServiceAccount(o[0]); |
| 3283 checkServiceAccount(o[1]); | 3285 checkServiceAccount(o[1]); |
| 3284 } | 3286 } |
| 3285 | 3287 |
| 3286 core.int buildCounterInstanceProperties = 0; | 3288 core.int buildCounterInstanceProperties = 0; |
| 3287 buildInstanceProperties() { | 3289 buildInstanceProperties() { |
| 3288 var o = new api.InstanceProperties(); | 3290 var o = new api.InstanceProperties(); |
| 3289 buildCounterInstanceProperties++; | 3291 buildCounterInstanceProperties++; |
| 3290 if (buildCounterInstanceProperties < 3) { | 3292 if (buildCounterInstanceProperties < 3) { |
| 3291 o.canIpForward = true; | 3293 o.canIpForward = true; |
| 3292 o.description = "foo"; | 3294 o.description = "foo"; |
| 3293 o.disks = buildUnnamed787(); | 3295 o.disks = buildUnnamed2490(); |
| 3294 o.machineType = "foo"; | 3296 o.machineType = "foo"; |
| 3295 o.metadata = buildMetadata(); | 3297 o.metadata = buildMetadata(); |
| 3296 o.networkInterfaces = buildUnnamed788(); | 3298 o.networkInterfaces = buildUnnamed2491(); |
| 3297 o.scheduling = buildScheduling(); | 3299 o.scheduling = buildScheduling(); |
| 3298 o.serviceAccounts = buildUnnamed789(); | 3300 o.serviceAccounts = buildUnnamed2492(); |
| 3299 o.tags = buildTags(); | 3301 o.tags = buildTags(); |
| 3300 } | 3302 } |
| 3301 buildCounterInstanceProperties--; | 3303 buildCounterInstanceProperties--; |
| 3302 return o; | 3304 return o; |
| 3303 } | 3305 } |
| 3304 | 3306 |
| 3305 checkInstanceProperties(api.InstanceProperties o) { | 3307 checkInstanceProperties(api.InstanceProperties o) { |
| 3306 buildCounterInstanceProperties++; | 3308 buildCounterInstanceProperties++; |
| 3307 if (buildCounterInstanceProperties < 3) { | 3309 if (buildCounterInstanceProperties < 3) { |
| 3308 unittest.expect(o.canIpForward, unittest.isTrue); | 3310 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3309 unittest.expect(o.description, unittest.equals('foo')); | 3311 unittest.expect(o.description, unittest.equals('foo')); |
| 3310 checkUnnamed787(o.disks); | 3312 checkUnnamed2490(o.disks); |
| 3311 unittest.expect(o.machineType, unittest.equals('foo')); | 3313 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3312 checkMetadata(o.metadata); | 3314 checkMetadata(o.metadata); |
| 3313 checkUnnamed788(o.networkInterfaces); | 3315 checkUnnamed2491(o.networkInterfaces); |
| 3314 checkScheduling(o.scheduling); | 3316 checkScheduling(o.scheduling); |
| 3315 checkUnnamed789(o.serviceAccounts); | 3317 checkUnnamed2492(o.serviceAccounts); |
| 3316 checkTags(o.tags); | 3318 checkTags(o.tags); |
| 3317 } | 3319 } |
| 3318 buildCounterInstanceProperties--; | 3320 buildCounterInstanceProperties--; |
| 3319 } | 3321 } |
| 3320 | 3322 |
| 3321 core.int buildCounterInstanceReference = 0; | 3323 core.int buildCounterInstanceReference = 0; |
| 3322 buildInstanceReference() { | 3324 buildInstanceReference() { |
| 3323 var o = new api.InstanceReference(); | 3325 var o = new api.InstanceReference(); |
| 3324 buildCounterInstanceReference++; | 3326 buildCounterInstanceReference++; |
| 3325 if (buildCounterInstanceReference < 3) { | 3327 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3361 unittest.expect(o.description, unittest.equals('foo')); | 3363 unittest.expect(o.description, unittest.equals('foo')); |
| 3362 unittest.expect(o.id, unittest.equals('foo')); | 3364 unittest.expect(o.id, unittest.equals('foo')); |
| 3363 unittest.expect(o.kind, unittest.equals('foo')); | 3365 unittest.expect(o.kind, unittest.equals('foo')); |
| 3364 unittest.expect(o.name, unittest.equals('foo')); | 3366 unittest.expect(o.name, unittest.equals('foo')); |
| 3365 checkInstanceProperties(o.properties); | 3367 checkInstanceProperties(o.properties); |
| 3366 unittest.expect(o.selfLink, unittest.equals('foo')); | 3368 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3367 } | 3369 } |
| 3368 buildCounterInstanceTemplate--; | 3370 buildCounterInstanceTemplate--; |
| 3369 } | 3371 } |
| 3370 | 3372 |
| 3371 buildUnnamed790() { | 3373 buildUnnamed2493() { |
| 3372 var o = new core.List<api.InstanceTemplate>(); | 3374 var o = new core.List<api.InstanceTemplate>(); |
| 3373 o.add(buildInstanceTemplate()); | 3375 o.add(buildInstanceTemplate()); |
| 3374 o.add(buildInstanceTemplate()); | 3376 o.add(buildInstanceTemplate()); |
| 3375 return o; | 3377 return o; |
| 3376 } | 3378 } |
| 3377 | 3379 |
| 3378 checkUnnamed790(core.List<api.InstanceTemplate> o) { | 3380 checkUnnamed2493(core.List<api.InstanceTemplate> o) { |
| 3379 unittest.expect(o, unittest.hasLength(2)); | 3381 unittest.expect(o, unittest.hasLength(2)); |
| 3380 checkInstanceTemplate(o[0]); | 3382 checkInstanceTemplate(o[0]); |
| 3381 checkInstanceTemplate(o[1]); | 3383 checkInstanceTemplate(o[1]); |
| 3382 } | 3384 } |
| 3383 | 3385 |
| 3384 core.int buildCounterInstanceTemplateList = 0; | 3386 core.int buildCounterInstanceTemplateList = 0; |
| 3385 buildInstanceTemplateList() { | 3387 buildInstanceTemplateList() { |
| 3386 var o = new api.InstanceTemplateList(); | 3388 var o = new api.InstanceTemplateList(); |
| 3387 buildCounterInstanceTemplateList++; | 3389 buildCounterInstanceTemplateList++; |
| 3388 if (buildCounterInstanceTemplateList < 3) { | 3390 if (buildCounterInstanceTemplateList < 3) { |
| 3389 o.id = "foo"; | 3391 o.id = "foo"; |
| 3390 o.items = buildUnnamed790(); | 3392 o.items = buildUnnamed2493(); |
| 3391 o.kind = "foo"; | 3393 o.kind = "foo"; |
| 3392 o.nextPageToken = "foo"; | 3394 o.nextPageToken = "foo"; |
| 3393 o.selfLink = "foo"; | 3395 o.selfLink = "foo"; |
| 3394 } | 3396 } |
| 3395 buildCounterInstanceTemplateList--; | 3397 buildCounterInstanceTemplateList--; |
| 3396 return o; | 3398 return o; |
| 3397 } | 3399 } |
| 3398 | 3400 |
| 3399 checkInstanceTemplateList(api.InstanceTemplateList o) { | 3401 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 3400 buildCounterInstanceTemplateList++; | 3402 buildCounterInstanceTemplateList++; |
| 3401 if (buildCounterInstanceTemplateList < 3) { | 3403 if (buildCounterInstanceTemplateList < 3) { |
| 3402 unittest.expect(o.id, unittest.equals('foo')); | 3404 unittest.expect(o.id, unittest.equals('foo')); |
| 3403 checkUnnamed790(o.items); | 3405 checkUnnamed2493(o.items); |
| 3404 unittest.expect(o.kind, unittest.equals('foo')); | 3406 unittest.expect(o.kind, unittest.equals('foo')); |
| 3405 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3407 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3406 unittest.expect(o.selfLink, unittest.equals('foo')); | 3408 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3407 } | 3409 } |
| 3408 buildCounterInstanceTemplateList--; | 3410 buildCounterInstanceTemplateList--; |
| 3409 } | 3411 } |
| 3410 | 3412 |
| 3411 buildUnnamed791() { | 3413 buildUnnamed2494() { |
| 3412 var o = new core.List<api.NamedPort>(); | 3414 var o = new core.List<api.NamedPort>(); |
| 3413 o.add(buildNamedPort()); | 3415 o.add(buildNamedPort()); |
| 3414 o.add(buildNamedPort()); | 3416 o.add(buildNamedPort()); |
| 3415 return o; | 3417 return o; |
| 3416 } | 3418 } |
| 3417 | 3419 |
| 3418 checkUnnamed791(core.List<api.NamedPort> o) { | 3420 checkUnnamed2494(core.List<api.NamedPort> o) { |
| 3419 unittest.expect(o, unittest.hasLength(2)); | 3421 unittest.expect(o, unittest.hasLength(2)); |
| 3420 checkNamedPort(o[0]); | 3422 checkNamedPort(o[0]); |
| 3421 checkNamedPort(o[1]); | 3423 checkNamedPort(o[1]); |
| 3422 } | 3424 } |
| 3423 | 3425 |
| 3424 core.int buildCounterInstanceWithNamedPorts = 0; | 3426 core.int buildCounterInstanceWithNamedPorts = 0; |
| 3425 buildInstanceWithNamedPorts() { | 3427 buildInstanceWithNamedPorts() { |
| 3426 var o = new api.InstanceWithNamedPorts(); | 3428 var o = new api.InstanceWithNamedPorts(); |
| 3427 buildCounterInstanceWithNamedPorts++; | 3429 buildCounterInstanceWithNamedPorts++; |
| 3428 if (buildCounterInstanceWithNamedPorts < 3) { | 3430 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3429 o.instance = "foo"; | 3431 o.instance = "foo"; |
| 3430 o.namedPorts = buildUnnamed791(); | 3432 o.namedPorts = buildUnnamed2494(); |
| 3431 o.status = "foo"; | 3433 o.status = "foo"; |
| 3432 } | 3434 } |
| 3433 buildCounterInstanceWithNamedPorts--; | 3435 buildCounterInstanceWithNamedPorts--; |
| 3434 return o; | 3436 return o; |
| 3435 } | 3437 } |
| 3436 | 3438 |
| 3437 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 3439 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 3438 buildCounterInstanceWithNamedPorts++; | 3440 buildCounterInstanceWithNamedPorts++; |
| 3439 if (buildCounterInstanceWithNamedPorts < 3) { | 3441 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3440 unittest.expect(o.instance, unittest.equals('foo')); | 3442 unittest.expect(o.instance, unittest.equals('foo')); |
| 3441 checkUnnamed791(o.namedPorts); | 3443 checkUnnamed2494(o.namedPorts); |
| 3442 unittest.expect(o.status, unittest.equals('foo')); | 3444 unittest.expect(o.status, unittest.equals('foo')); |
| 3443 } | 3445 } |
| 3444 buildCounterInstanceWithNamedPorts--; | 3446 buildCounterInstanceWithNamedPorts--; |
| 3445 } | 3447 } |
| 3446 | 3448 |
| 3447 buildUnnamed792() { | 3449 buildUnnamed2495() { |
| 3448 var o = new core.List<api.Instance>(); | 3450 var o = new core.List<api.Instance>(); |
| 3449 o.add(buildInstance()); | 3451 o.add(buildInstance()); |
| 3450 o.add(buildInstance()); | 3452 o.add(buildInstance()); |
| 3451 return o; | 3453 return o; |
| 3452 } | 3454 } |
| 3453 | 3455 |
| 3454 checkUnnamed792(core.List<api.Instance> o) { | 3456 checkUnnamed2495(core.List<api.Instance> o) { |
| 3455 unittest.expect(o, unittest.hasLength(2)); | 3457 unittest.expect(o, unittest.hasLength(2)); |
| 3456 checkInstance(o[0]); | 3458 checkInstance(o[0]); |
| 3457 checkInstance(o[1]); | 3459 checkInstance(o[1]); |
| 3458 } | 3460 } |
| 3459 | 3461 |
| 3460 core.int buildCounterInstancesScopedListWarningData = 0; | 3462 core.int buildCounterInstancesScopedListWarningData = 0; |
| 3461 buildInstancesScopedListWarningData() { | 3463 buildInstancesScopedListWarningData() { |
| 3462 var o = new api.InstancesScopedListWarningData(); | 3464 var o = new api.InstancesScopedListWarningData(); |
| 3463 buildCounterInstancesScopedListWarningData++; | 3465 buildCounterInstancesScopedListWarningData++; |
| 3464 if (buildCounterInstancesScopedListWarningData < 3) { | 3466 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3465 o.key = "foo"; | 3467 o.key = "foo"; |
| 3466 o.value = "foo"; | 3468 o.value = "foo"; |
| 3467 } | 3469 } |
| 3468 buildCounterInstancesScopedListWarningData--; | 3470 buildCounterInstancesScopedListWarningData--; |
| 3469 return o; | 3471 return o; |
| 3470 } | 3472 } |
| 3471 | 3473 |
| 3472 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 3474 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 3473 buildCounterInstancesScopedListWarningData++; | 3475 buildCounterInstancesScopedListWarningData++; |
| 3474 if (buildCounterInstancesScopedListWarningData < 3) { | 3476 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3475 unittest.expect(o.key, unittest.equals('foo')); | 3477 unittest.expect(o.key, unittest.equals('foo')); |
| 3476 unittest.expect(o.value, unittest.equals('foo')); | 3478 unittest.expect(o.value, unittest.equals('foo')); |
| 3477 } | 3479 } |
| 3478 buildCounterInstancesScopedListWarningData--; | 3480 buildCounterInstancesScopedListWarningData--; |
| 3479 } | 3481 } |
| 3480 | 3482 |
| 3481 buildUnnamed793() { | 3483 buildUnnamed2496() { |
| 3482 var o = new core.List<api.InstancesScopedListWarningData>(); | 3484 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 3483 o.add(buildInstancesScopedListWarningData()); | 3485 o.add(buildInstancesScopedListWarningData()); |
| 3484 o.add(buildInstancesScopedListWarningData()); | 3486 o.add(buildInstancesScopedListWarningData()); |
| 3485 return o; | 3487 return o; |
| 3486 } | 3488 } |
| 3487 | 3489 |
| 3488 checkUnnamed793(core.List<api.InstancesScopedListWarningData> o) { | 3490 checkUnnamed2496(core.List<api.InstancesScopedListWarningData> o) { |
| 3489 unittest.expect(o, unittest.hasLength(2)); | 3491 unittest.expect(o, unittest.hasLength(2)); |
| 3490 checkInstancesScopedListWarningData(o[0]); | 3492 checkInstancesScopedListWarningData(o[0]); |
| 3491 checkInstancesScopedListWarningData(o[1]); | 3493 checkInstancesScopedListWarningData(o[1]); |
| 3492 } | 3494 } |
| 3493 | 3495 |
| 3494 core.int buildCounterInstancesScopedListWarning = 0; | 3496 core.int buildCounterInstancesScopedListWarning = 0; |
| 3495 buildInstancesScopedListWarning() { | 3497 buildInstancesScopedListWarning() { |
| 3496 var o = new api.InstancesScopedListWarning(); | 3498 var o = new api.InstancesScopedListWarning(); |
| 3497 buildCounterInstancesScopedListWarning++; | 3499 buildCounterInstancesScopedListWarning++; |
| 3498 if (buildCounterInstancesScopedListWarning < 3) { | 3500 if (buildCounterInstancesScopedListWarning < 3) { |
| 3499 o.code = "foo"; | 3501 o.code = "foo"; |
| 3500 o.data = buildUnnamed793(); | 3502 o.data = buildUnnamed2496(); |
| 3501 o.message = "foo"; | 3503 o.message = "foo"; |
| 3502 } | 3504 } |
| 3503 buildCounterInstancesScopedListWarning--; | 3505 buildCounterInstancesScopedListWarning--; |
| 3504 return o; | 3506 return o; |
| 3505 } | 3507 } |
| 3506 | 3508 |
| 3507 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 3509 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 3508 buildCounterInstancesScopedListWarning++; | 3510 buildCounterInstancesScopedListWarning++; |
| 3509 if (buildCounterInstancesScopedListWarning < 3) { | 3511 if (buildCounterInstancesScopedListWarning < 3) { |
| 3510 unittest.expect(o.code, unittest.equals('foo')); | 3512 unittest.expect(o.code, unittest.equals('foo')); |
| 3511 checkUnnamed793(o.data); | 3513 checkUnnamed2496(o.data); |
| 3512 unittest.expect(o.message, unittest.equals('foo')); | 3514 unittest.expect(o.message, unittest.equals('foo')); |
| 3513 } | 3515 } |
| 3514 buildCounterInstancesScopedListWarning--; | 3516 buildCounterInstancesScopedListWarning--; |
| 3515 } | 3517 } |
| 3516 | 3518 |
| 3517 core.int buildCounterInstancesScopedList = 0; | 3519 core.int buildCounterInstancesScopedList = 0; |
| 3518 buildInstancesScopedList() { | 3520 buildInstancesScopedList() { |
| 3519 var o = new api.InstancesScopedList(); | 3521 var o = new api.InstancesScopedList(); |
| 3520 buildCounterInstancesScopedList++; | 3522 buildCounterInstancesScopedList++; |
| 3521 if (buildCounterInstancesScopedList < 3) { | 3523 if (buildCounterInstancesScopedList < 3) { |
| 3522 o.instances = buildUnnamed792(); | 3524 o.instances = buildUnnamed2495(); |
| 3523 o.warning = buildInstancesScopedListWarning(); | 3525 o.warning = buildInstancesScopedListWarning(); |
| 3524 } | 3526 } |
| 3525 buildCounterInstancesScopedList--; | 3527 buildCounterInstancesScopedList--; |
| 3526 return o; | 3528 return o; |
| 3527 } | 3529 } |
| 3528 | 3530 |
| 3529 checkInstancesScopedList(api.InstancesScopedList o) { | 3531 checkInstancesScopedList(api.InstancesScopedList o) { |
| 3530 buildCounterInstancesScopedList++; | 3532 buildCounterInstancesScopedList++; |
| 3531 if (buildCounterInstancesScopedList < 3) { | 3533 if (buildCounterInstancesScopedList < 3) { |
| 3532 checkUnnamed792(o.instances); | 3534 checkUnnamed2495(o.instances); |
| 3533 checkInstancesScopedListWarning(o.warning); | 3535 checkInstancesScopedListWarning(o.warning); |
| 3534 } | 3536 } |
| 3535 buildCounterInstancesScopedList--; | 3537 buildCounterInstancesScopedList--; |
| 3536 } | 3538 } |
| 3537 | 3539 |
| 3538 core.int buildCounterInstancesSetMachineTypeRequest = 0; | 3540 core.int buildCounterInstancesSetMachineTypeRequest = 0; |
| 3539 buildInstancesSetMachineTypeRequest() { | 3541 buildInstancesSetMachineTypeRequest() { |
| 3540 var o = new api.InstancesSetMachineTypeRequest(); | 3542 var o = new api.InstancesSetMachineTypeRequest(); |
| 3541 buildCounterInstancesSetMachineTypeRequest++; | 3543 buildCounterInstancesSetMachineTypeRequest++; |
| 3542 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3544 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3543 o.machineType = "foo"; | 3545 o.machineType = "foo"; |
| 3544 } | 3546 } |
| 3545 buildCounterInstancesSetMachineTypeRequest--; | 3547 buildCounterInstancesSetMachineTypeRequest--; |
| 3546 return o; | 3548 return o; |
| 3547 } | 3549 } |
| 3548 | 3550 |
| 3549 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { | 3551 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { |
| 3550 buildCounterInstancesSetMachineTypeRequest++; | 3552 buildCounterInstancesSetMachineTypeRequest++; |
| 3551 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3553 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3552 unittest.expect(o.machineType, unittest.equals('foo')); | 3554 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3553 } | 3555 } |
| 3554 buildCounterInstancesSetMachineTypeRequest--; | 3556 buildCounterInstancesSetMachineTypeRequest--; |
| 3555 } | 3557 } |
| 3556 | 3558 |
| 3557 buildUnnamed794() { | 3559 buildUnnamed2497() { |
| 3558 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); | 3560 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); |
| 3559 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3561 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3560 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3562 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3561 return o; | 3563 return o; |
| 3562 } | 3564 } |
| 3563 | 3565 |
| 3564 checkUnnamed794(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { | 3566 checkUnnamed2497(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { |
| 3565 unittest.expect(o, unittest.hasLength(2)); | 3567 unittest.expect(o, unittest.hasLength(2)); |
| 3566 checkCustomerEncryptionKeyProtectedDisk(o[0]); | 3568 checkCustomerEncryptionKeyProtectedDisk(o[0]); |
| 3567 checkCustomerEncryptionKeyProtectedDisk(o[1]); | 3569 checkCustomerEncryptionKeyProtectedDisk(o[1]); |
| 3568 } | 3570 } |
| 3569 | 3571 |
| 3570 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; | 3572 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; |
| 3571 buildInstancesStartWithEncryptionKeyRequest() { | 3573 buildInstancesStartWithEncryptionKeyRequest() { |
| 3572 var o = new api.InstancesStartWithEncryptionKeyRequest(); | 3574 var o = new api.InstancesStartWithEncryptionKeyRequest(); |
| 3573 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3575 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3574 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3576 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3575 o.disks = buildUnnamed794(); | 3577 o.disks = buildUnnamed2497(); |
| 3576 } | 3578 } |
| 3577 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3579 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3578 return o; | 3580 return o; |
| 3579 } | 3581 } |
| 3580 | 3582 |
| 3581 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { | 3583 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { |
| 3582 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3584 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3583 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3585 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3584 checkUnnamed794(o.disks); | 3586 checkUnnamed2497(o.disks); |
| 3585 } | 3587 } |
| 3586 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3588 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3587 } | 3589 } |
| 3588 | 3590 |
| 3589 core.int buildCounterLicense = 0; | 3591 core.int buildCounterLicense = 0; |
| 3590 buildLicense() { | 3592 buildLicense() { |
| 3591 var o = new api.License(); | 3593 var o = new api.License(); |
| 3592 buildCounterLicense++; | 3594 buildCounterLicense++; |
| 3593 if (buildCounterLicense < 3) { | 3595 if (buildCounterLicense < 3) { |
| 3594 o.chargesUseFee = true; | 3596 o.chargesUseFee = true; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 3623 } | 3625 } |
| 3624 | 3626 |
| 3625 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 3627 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 3626 buildCounterMachineTypeScratchDisks++; | 3628 buildCounterMachineTypeScratchDisks++; |
| 3627 if (buildCounterMachineTypeScratchDisks < 3) { | 3629 if (buildCounterMachineTypeScratchDisks < 3) { |
| 3628 unittest.expect(o.diskGb, unittest.equals(42)); | 3630 unittest.expect(o.diskGb, unittest.equals(42)); |
| 3629 } | 3631 } |
| 3630 buildCounterMachineTypeScratchDisks--; | 3632 buildCounterMachineTypeScratchDisks--; |
| 3631 } | 3633 } |
| 3632 | 3634 |
| 3633 buildUnnamed795() { | 3635 buildUnnamed2498() { |
| 3634 var o = new core.List<api.MachineTypeScratchDisks>(); | 3636 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 3635 o.add(buildMachineTypeScratchDisks()); | 3637 o.add(buildMachineTypeScratchDisks()); |
| 3636 o.add(buildMachineTypeScratchDisks()); | 3638 o.add(buildMachineTypeScratchDisks()); |
| 3637 return o; | 3639 return o; |
| 3638 } | 3640 } |
| 3639 | 3641 |
| 3640 checkUnnamed795(core.List<api.MachineTypeScratchDisks> o) { | 3642 checkUnnamed2498(core.List<api.MachineTypeScratchDisks> o) { |
| 3641 unittest.expect(o, unittest.hasLength(2)); | 3643 unittest.expect(o, unittest.hasLength(2)); |
| 3642 checkMachineTypeScratchDisks(o[0]); | 3644 checkMachineTypeScratchDisks(o[0]); |
| 3643 checkMachineTypeScratchDisks(o[1]); | 3645 checkMachineTypeScratchDisks(o[1]); |
| 3644 } | 3646 } |
| 3645 | 3647 |
| 3646 core.int buildCounterMachineType = 0; | 3648 core.int buildCounterMachineType = 0; |
| 3647 buildMachineType() { | 3649 buildMachineType() { |
| 3648 var o = new api.MachineType(); | 3650 var o = new api.MachineType(); |
| 3649 buildCounterMachineType++; | 3651 buildCounterMachineType++; |
| 3650 if (buildCounterMachineType < 3) { | 3652 if (buildCounterMachineType < 3) { |
| 3651 o.creationTimestamp = "foo"; | 3653 o.creationTimestamp = "foo"; |
| 3652 o.deprecated = buildDeprecationStatus(); | 3654 o.deprecated = buildDeprecationStatus(); |
| 3653 o.description = "foo"; | 3655 o.description = "foo"; |
| 3654 o.guestCpus = 42; | 3656 o.guestCpus = 42; |
| 3655 o.id = "foo"; | 3657 o.id = "foo"; |
| 3656 o.imageSpaceGb = 42; | 3658 o.imageSpaceGb = 42; |
| 3657 o.isSharedCpu = true; | 3659 o.isSharedCpu = true; |
| 3658 o.kind = "foo"; | 3660 o.kind = "foo"; |
| 3659 o.maximumPersistentDisks = 42; | 3661 o.maximumPersistentDisks = 42; |
| 3660 o.maximumPersistentDisksSizeGb = "foo"; | 3662 o.maximumPersistentDisksSizeGb = "foo"; |
| 3661 o.memoryMb = 42; | 3663 o.memoryMb = 42; |
| 3662 o.name = "foo"; | 3664 o.name = "foo"; |
| 3663 o.scratchDisks = buildUnnamed795(); | 3665 o.scratchDisks = buildUnnamed2498(); |
| 3664 o.selfLink = "foo"; | 3666 o.selfLink = "foo"; |
| 3665 o.zone = "foo"; | 3667 o.zone = "foo"; |
| 3666 } | 3668 } |
| 3667 buildCounterMachineType--; | 3669 buildCounterMachineType--; |
| 3668 return o; | 3670 return o; |
| 3669 } | 3671 } |
| 3670 | 3672 |
| 3671 checkMachineType(api.MachineType o) { | 3673 checkMachineType(api.MachineType o) { |
| 3672 buildCounterMachineType++; | 3674 buildCounterMachineType++; |
| 3673 if (buildCounterMachineType < 3) { | 3675 if (buildCounterMachineType < 3) { |
| 3674 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3676 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3675 checkDeprecationStatus(o.deprecated); | 3677 checkDeprecationStatus(o.deprecated); |
| 3676 unittest.expect(o.description, unittest.equals('foo')); | 3678 unittest.expect(o.description, unittest.equals('foo')); |
| 3677 unittest.expect(o.guestCpus, unittest.equals(42)); | 3679 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 3678 unittest.expect(o.id, unittest.equals('foo')); | 3680 unittest.expect(o.id, unittest.equals('foo')); |
| 3679 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 3681 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 3680 unittest.expect(o.isSharedCpu, unittest.isTrue); | 3682 unittest.expect(o.isSharedCpu, unittest.isTrue); |
| 3681 unittest.expect(o.kind, unittest.equals('foo')); | 3683 unittest.expect(o.kind, unittest.equals('foo')); |
| 3682 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 3684 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 3683 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 3685 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 3684 unittest.expect(o.memoryMb, unittest.equals(42)); | 3686 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 3685 unittest.expect(o.name, unittest.equals('foo')); | 3687 unittest.expect(o.name, unittest.equals('foo')); |
| 3686 checkUnnamed795(o.scratchDisks); | 3688 checkUnnamed2498(o.scratchDisks); |
| 3687 unittest.expect(o.selfLink, unittest.equals('foo')); | 3689 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3688 unittest.expect(o.zone, unittest.equals('foo')); | 3690 unittest.expect(o.zone, unittest.equals('foo')); |
| 3689 } | 3691 } |
| 3690 buildCounterMachineType--; | 3692 buildCounterMachineType--; |
| 3691 } | 3693 } |
| 3692 | 3694 |
| 3693 buildUnnamed796() { | 3695 buildUnnamed2499() { |
| 3694 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 3696 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 3695 o["x"] = buildMachineTypesScopedList(); | 3697 o["x"] = buildMachineTypesScopedList(); |
| 3696 o["y"] = buildMachineTypesScopedList(); | 3698 o["y"] = buildMachineTypesScopedList(); |
| 3697 return o; | 3699 return o; |
| 3698 } | 3700 } |
| 3699 | 3701 |
| 3700 checkUnnamed796(core.Map<core.String, api.MachineTypesScopedList> o) { | 3702 checkUnnamed2499(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 3701 unittest.expect(o, unittest.hasLength(2)); | 3703 unittest.expect(o, unittest.hasLength(2)); |
| 3702 checkMachineTypesScopedList(o["x"]); | 3704 checkMachineTypesScopedList(o["x"]); |
| 3703 checkMachineTypesScopedList(o["y"]); | 3705 checkMachineTypesScopedList(o["y"]); |
| 3704 } | 3706 } |
| 3705 | 3707 |
| 3706 core.int buildCounterMachineTypeAggregatedList = 0; | 3708 core.int buildCounterMachineTypeAggregatedList = 0; |
| 3707 buildMachineTypeAggregatedList() { | 3709 buildMachineTypeAggregatedList() { |
| 3708 var o = new api.MachineTypeAggregatedList(); | 3710 var o = new api.MachineTypeAggregatedList(); |
| 3709 buildCounterMachineTypeAggregatedList++; | 3711 buildCounterMachineTypeAggregatedList++; |
| 3710 if (buildCounterMachineTypeAggregatedList < 3) { | 3712 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3711 o.id = "foo"; | 3713 o.id = "foo"; |
| 3712 o.items = buildUnnamed796(); | 3714 o.items = buildUnnamed2499(); |
| 3713 o.kind = "foo"; | 3715 o.kind = "foo"; |
| 3714 o.nextPageToken = "foo"; | 3716 o.nextPageToken = "foo"; |
| 3715 o.selfLink = "foo"; | 3717 o.selfLink = "foo"; |
| 3716 } | 3718 } |
| 3717 buildCounterMachineTypeAggregatedList--; | 3719 buildCounterMachineTypeAggregatedList--; |
| 3718 return o; | 3720 return o; |
| 3719 } | 3721 } |
| 3720 | 3722 |
| 3721 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 3723 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 3722 buildCounterMachineTypeAggregatedList++; | 3724 buildCounterMachineTypeAggregatedList++; |
| 3723 if (buildCounterMachineTypeAggregatedList < 3) { | 3725 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3724 unittest.expect(o.id, unittest.equals('foo')); | 3726 unittest.expect(o.id, unittest.equals('foo')); |
| 3725 checkUnnamed796(o.items); | 3727 checkUnnamed2499(o.items); |
| 3726 unittest.expect(o.kind, unittest.equals('foo')); | 3728 unittest.expect(o.kind, unittest.equals('foo')); |
| 3727 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3729 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3728 unittest.expect(o.selfLink, unittest.equals('foo')); | 3730 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3729 } | 3731 } |
| 3730 buildCounterMachineTypeAggregatedList--; | 3732 buildCounterMachineTypeAggregatedList--; |
| 3731 } | 3733 } |
| 3732 | 3734 |
| 3733 buildUnnamed797() { | 3735 buildUnnamed2500() { |
| 3734 var o = new core.List<api.MachineType>(); | 3736 var o = new core.List<api.MachineType>(); |
| 3735 o.add(buildMachineType()); | 3737 o.add(buildMachineType()); |
| 3736 o.add(buildMachineType()); | 3738 o.add(buildMachineType()); |
| 3737 return o; | 3739 return o; |
| 3738 } | 3740 } |
| 3739 | 3741 |
| 3740 checkUnnamed797(core.List<api.MachineType> o) { | 3742 checkUnnamed2500(core.List<api.MachineType> o) { |
| 3741 unittest.expect(o, unittest.hasLength(2)); | 3743 unittest.expect(o, unittest.hasLength(2)); |
| 3742 checkMachineType(o[0]); | 3744 checkMachineType(o[0]); |
| 3743 checkMachineType(o[1]); | 3745 checkMachineType(o[1]); |
| 3744 } | 3746 } |
| 3745 | 3747 |
| 3746 core.int buildCounterMachineTypeList = 0; | 3748 core.int buildCounterMachineTypeList = 0; |
| 3747 buildMachineTypeList() { | 3749 buildMachineTypeList() { |
| 3748 var o = new api.MachineTypeList(); | 3750 var o = new api.MachineTypeList(); |
| 3749 buildCounterMachineTypeList++; | 3751 buildCounterMachineTypeList++; |
| 3750 if (buildCounterMachineTypeList < 3) { | 3752 if (buildCounterMachineTypeList < 3) { |
| 3751 o.id = "foo"; | 3753 o.id = "foo"; |
| 3752 o.items = buildUnnamed797(); | 3754 o.items = buildUnnamed2500(); |
| 3753 o.kind = "foo"; | 3755 o.kind = "foo"; |
| 3754 o.nextPageToken = "foo"; | 3756 o.nextPageToken = "foo"; |
| 3755 o.selfLink = "foo"; | 3757 o.selfLink = "foo"; |
| 3756 } | 3758 } |
| 3757 buildCounterMachineTypeList--; | 3759 buildCounterMachineTypeList--; |
| 3758 return o; | 3760 return o; |
| 3759 } | 3761 } |
| 3760 | 3762 |
| 3761 checkMachineTypeList(api.MachineTypeList o) { | 3763 checkMachineTypeList(api.MachineTypeList o) { |
| 3762 buildCounterMachineTypeList++; | 3764 buildCounterMachineTypeList++; |
| 3763 if (buildCounterMachineTypeList < 3) { | 3765 if (buildCounterMachineTypeList < 3) { |
| 3764 unittest.expect(o.id, unittest.equals('foo')); | 3766 unittest.expect(o.id, unittest.equals('foo')); |
| 3765 checkUnnamed797(o.items); | 3767 checkUnnamed2500(o.items); |
| 3766 unittest.expect(o.kind, unittest.equals('foo')); | 3768 unittest.expect(o.kind, unittest.equals('foo')); |
| 3767 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3769 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3768 unittest.expect(o.selfLink, unittest.equals('foo')); | 3770 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3769 } | 3771 } |
| 3770 buildCounterMachineTypeList--; | 3772 buildCounterMachineTypeList--; |
| 3771 } | 3773 } |
| 3772 | 3774 |
| 3773 buildUnnamed798() { | 3775 buildUnnamed2501() { |
| 3774 var o = new core.List<api.MachineType>(); | 3776 var o = new core.List<api.MachineType>(); |
| 3775 o.add(buildMachineType()); | 3777 o.add(buildMachineType()); |
| 3776 o.add(buildMachineType()); | 3778 o.add(buildMachineType()); |
| 3777 return o; | 3779 return o; |
| 3778 } | 3780 } |
| 3779 | 3781 |
| 3780 checkUnnamed798(core.List<api.MachineType> o) { | 3782 checkUnnamed2501(core.List<api.MachineType> o) { |
| 3781 unittest.expect(o, unittest.hasLength(2)); | 3783 unittest.expect(o, unittest.hasLength(2)); |
| 3782 checkMachineType(o[0]); | 3784 checkMachineType(o[0]); |
| 3783 checkMachineType(o[1]); | 3785 checkMachineType(o[1]); |
| 3784 } | 3786 } |
| 3785 | 3787 |
| 3786 core.int buildCounterMachineTypesScopedListWarningData = 0; | 3788 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 3787 buildMachineTypesScopedListWarningData() { | 3789 buildMachineTypesScopedListWarningData() { |
| 3788 var o = new api.MachineTypesScopedListWarningData(); | 3790 var o = new api.MachineTypesScopedListWarningData(); |
| 3789 buildCounterMachineTypesScopedListWarningData++; | 3791 buildCounterMachineTypesScopedListWarningData++; |
| 3790 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3792 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3791 o.key = "foo"; | 3793 o.key = "foo"; |
| 3792 o.value = "foo"; | 3794 o.value = "foo"; |
| 3793 } | 3795 } |
| 3794 buildCounterMachineTypesScopedListWarningData--; | 3796 buildCounterMachineTypesScopedListWarningData--; |
| 3795 return o; | 3797 return o; |
| 3796 } | 3798 } |
| 3797 | 3799 |
| 3798 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 3800 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 3799 buildCounterMachineTypesScopedListWarningData++; | 3801 buildCounterMachineTypesScopedListWarningData++; |
| 3800 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3802 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3801 unittest.expect(o.key, unittest.equals('foo')); | 3803 unittest.expect(o.key, unittest.equals('foo')); |
| 3802 unittest.expect(o.value, unittest.equals('foo')); | 3804 unittest.expect(o.value, unittest.equals('foo')); |
| 3803 } | 3805 } |
| 3804 buildCounterMachineTypesScopedListWarningData--; | 3806 buildCounterMachineTypesScopedListWarningData--; |
| 3805 } | 3807 } |
| 3806 | 3808 |
| 3807 buildUnnamed799() { | 3809 buildUnnamed2502() { |
| 3808 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 3810 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 3809 o.add(buildMachineTypesScopedListWarningData()); | 3811 o.add(buildMachineTypesScopedListWarningData()); |
| 3810 o.add(buildMachineTypesScopedListWarningData()); | 3812 o.add(buildMachineTypesScopedListWarningData()); |
| 3811 return o; | 3813 return o; |
| 3812 } | 3814 } |
| 3813 | 3815 |
| 3814 checkUnnamed799(core.List<api.MachineTypesScopedListWarningData> o) { | 3816 checkUnnamed2502(core.List<api.MachineTypesScopedListWarningData> o) { |
| 3815 unittest.expect(o, unittest.hasLength(2)); | 3817 unittest.expect(o, unittest.hasLength(2)); |
| 3816 checkMachineTypesScopedListWarningData(o[0]); | 3818 checkMachineTypesScopedListWarningData(o[0]); |
| 3817 checkMachineTypesScopedListWarningData(o[1]); | 3819 checkMachineTypesScopedListWarningData(o[1]); |
| 3818 } | 3820 } |
| 3819 | 3821 |
| 3820 core.int buildCounterMachineTypesScopedListWarning = 0; | 3822 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 3821 buildMachineTypesScopedListWarning() { | 3823 buildMachineTypesScopedListWarning() { |
| 3822 var o = new api.MachineTypesScopedListWarning(); | 3824 var o = new api.MachineTypesScopedListWarning(); |
| 3823 buildCounterMachineTypesScopedListWarning++; | 3825 buildCounterMachineTypesScopedListWarning++; |
| 3824 if (buildCounterMachineTypesScopedListWarning < 3) { | 3826 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3825 o.code = "foo"; | 3827 o.code = "foo"; |
| 3826 o.data = buildUnnamed799(); | 3828 o.data = buildUnnamed2502(); |
| 3827 o.message = "foo"; | 3829 o.message = "foo"; |
| 3828 } | 3830 } |
| 3829 buildCounterMachineTypesScopedListWarning--; | 3831 buildCounterMachineTypesScopedListWarning--; |
| 3830 return o; | 3832 return o; |
| 3831 } | 3833 } |
| 3832 | 3834 |
| 3833 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 3835 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 3834 buildCounterMachineTypesScopedListWarning++; | 3836 buildCounterMachineTypesScopedListWarning++; |
| 3835 if (buildCounterMachineTypesScopedListWarning < 3) { | 3837 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3836 unittest.expect(o.code, unittest.equals('foo')); | 3838 unittest.expect(o.code, unittest.equals('foo')); |
| 3837 checkUnnamed799(o.data); | 3839 checkUnnamed2502(o.data); |
| 3838 unittest.expect(o.message, unittest.equals('foo')); | 3840 unittest.expect(o.message, unittest.equals('foo')); |
| 3839 } | 3841 } |
| 3840 buildCounterMachineTypesScopedListWarning--; | 3842 buildCounterMachineTypesScopedListWarning--; |
| 3841 } | 3843 } |
| 3842 | 3844 |
| 3843 core.int buildCounterMachineTypesScopedList = 0; | 3845 core.int buildCounterMachineTypesScopedList = 0; |
| 3844 buildMachineTypesScopedList() { | 3846 buildMachineTypesScopedList() { |
| 3845 var o = new api.MachineTypesScopedList(); | 3847 var o = new api.MachineTypesScopedList(); |
| 3846 buildCounterMachineTypesScopedList++; | 3848 buildCounterMachineTypesScopedList++; |
| 3847 if (buildCounterMachineTypesScopedList < 3) { | 3849 if (buildCounterMachineTypesScopedList < 3) { |
| 3848 o.machineTypes = buildUnnamed798(); | 3850 o.machineTypes = buildUnnamed2501(); |
| 3849 o.warning = buildMachineTypesScopedListWarning(); | 3851 o.warning = buildMachineTypesScopedListWarning(); |
| 3850 } | 3852 } |
| 3851 buildCounterMachineTypesScopedList--; | 3853 buildCounterMachineTypesScopedList--; |
| 3852 return o; | 3854 return o; |
| 3853 } | 3855 } |
| 3854 | 3856 |
| 3855 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 3857 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 3856 buildCounterMachineTypesScopedList++; | 3858 buildCounterMachineTypesScopedList++; |
| 3857 if (buildCounterMachineTypesScopedList < 3) { | 3859 if (buildCounterMachineTypesScopedList < 3) { |
| 3858 checkUnnamed798(o.machineTypes); | 3860 checkUnnamed2501(o.machineTypes); |
| 3859 checkMachineTypesScopedListWarning(o.warning); | 3861 checkMachineTypesScopedListWarning(o.warning); |
| 3860 } | 3862 } |
| 3861 buildCounterMachineTypesScopedList--; | 3863 buildCounterMachineTypesScopedList--; |
| 3862 } | 3864 } |
| 3863 | 3865 |
| 3864 core.int buildCounterManagedInstance = 0; | 3866 core.int buildCounterManagedInstance = 0; |
| 3865 buildManagedInstance() { | 3867 buildManagedInstance() { |
| 3866 var o = new api.ManagedInstance(); | 3868 var o = new api.ManagedInstance(); |
| 3867 buildCounterManagedInstance++; | 3869 buildCounterManagedInstance++; |
| 3868 if (buildCounterManagedInstance < 3) { | 3870 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3904 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 3906 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 3905 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 3907 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 3906 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 3908 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 3907 unittest.expect(o.code, unittest.equals('foo')); | 3909 unittest.expect(o.code, unittest.equals('foo')); |
| 3908 unittest.expect(o.location, unittest.equals('foo')); | 3910 unittest.expect(o.location, unittest.equals('foo')); |
| 3909 unittest.expect(o.message, unittest.equals('foo')); | 3911 unittest.expect(o.message, unittest.equals('foo')); |
| 3910 } | 3912 } |
| 3911 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 3913 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 3912 } | 3914 } |
| 3913 | 3915 |
| 3914 buildUnnamed800() { | 3916 buildUnnamed2503() { |
| 3915 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 3917 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 3916 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3918 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3917 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3919 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3918 return o; | 3920 return o; |
| 3919 } | 3921 } |
| 3920 | 3922 |
| 3921 checkUnnamed800(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 3923 checkUnnamed2503(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 3922 unittest.expect(o, unittest.hasLength(2)); | 3924 unittest.expect(o, unittest.hasLength(2)); |
| 3923 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 3925 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 3924 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 3926 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 3925 } | 3927 } |
| 3926 | 3928 |
| 3927 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 3929 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 3928 buildManagedInstanceLastAttemptErrors() { | 3930 buildManagedInstanceLastAttemptErrors() { |
| 3929 var o = new api.ManagedInstanceLastAttemptErrors(); | 3931 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 3930 buildCounterManagedInstanceLastAttemptErrors++; | 3932 buildCounterManagedInstanceLastAttemptErrors++; |
| 3931 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3933 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3932 o.errors = buildUnnamed800(); | 3934 o.errors = buildUnnamed2503(); |
| 3933 } | 3935 } |
| 3934 buildCounterManagedInstanceLastAttemptErrors--; | 3936 buildCounterManagedInstanceLastAttemptErrors--; |
| 3935 return o; | 3937 return o; |
| 3936 } | 3938 } |
| 3937 | 3939 |
| 3938 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 3940 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 3939 buildCounterManagedInstanceLastAttemptErrors++; | 3941 buildCounterManagedInstanceLastAttemptErrors++; |
| 3940 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3942 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3941 checkUnnamed800(o.errors); | 3943 checkUnnamed2503(o.errors); |
| 3942 } | 3944 } |
| 3943 buildCounterManagedInstanceLastAttemptErrors--; | 3945 buildCounterManagedInstanceLastAttemptErrors--; |
| 3944 } | 3946 } |
| 3945 | 3947 |
| 3946 core.int buildCounterManagedInstanceLastAttempt = 0; | 3948 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 3947 buildManagedInstanceLastAttempt() { | 3949 buildManagedInstanceLastAttempt() { |
| 3948 var o = new api.ManagedInstanceLastAttempt(); | 3950 var o = new api.ManagedInstanceLastAttempt(); |
| 3949 buildCounterManagedInstanceLastAttempt++; | 3951 buildCounterManagedInstanceLastAttempt++; |
| 3950 if (buildCounterManagedInstanceLastAttempt < 3) { | 3952 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 3951 o.errors = buildManagedInstanceLastAttemptErrors(); | 3953 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3976 | 3978 |
| 3977 checkMetadataItems(api.MetadataItems o) { | 3979 checkMetadataItems(api.MetadataItems o) { |
| 3978 buildCounterMetadataItems++; | 3980 buildCounterMetadataItems++; |
| 3979 if (buildCounterMetadataItems < 3) { | 3981 if (buildCounterMetadataItems < 3) { |
| 3980 unittest.expect(o.key, unittest.equals('foo')); | 3982 unittest.expect(o.key, unittest.equals('foo')); |
| 3981 unittest.expect(o.value, unittest.equals('foo')); | 3983 unittest.expect(o.value, unittest.equals('foo')); |
| 3982 } | 3984 } |
| 3983 buildCounterMetadataItems--; | 3985 buildCounterMetadataItems--; |
| 3984 } | 3986 } |
| 3985 | 3987 |
| 3986 buildUnnamed801() { | 3988 buildUnnamed2504() { |
| 3987 var o = new core.List<api.MetadataItems>(); | 3989 var o = new core.List<api.MetadataItems>(); |
| 3988 o.add(buildMetadataItems()); | 3990 o.add(buildMetadataItems()); |
| 3989 o.add(buildMetadataItems()); | 3991 o.add(buildMetadataItems()); |
| 3990 return o; | 3992 return o; |
| 3991 } | 3993 } |
| 3992 | 3994 |
| 3993 checkUnnamed801(core.List<api.MetadataItems> o) { | 3995 checkUnnamed2504(core.List<api.MetadataItems> o) { |
| 3994 unittest.expect(o, unittest.hasLength(2)); | 3996 unittest.expect(o, unittest.hasLength(2)); |
| 3995 checkMetadataItems(o[0]); | 3997 checkMetadataItems(o[0]); |
| 3996 checkMetadataItems(o[1]); | 3998 checkMetadataItems(o[1]); |
| 3997 } | 3999 } |
| 3998 | 4000 |
| 3999 core.int buildCounterMetadata = 0; | 4001 core.int buildCounterMetadata = 0; |
| 4000 buildMetadata() { | 4002 buildMetadata() { |
| 4001 var o = new api.Metadata(); | 4003 var o = new api.Metadata(); |
| 4002 buildCounterMetadata++; | 4004 buildCounterMetadata++; |
| 4003 if (buildCounterMetadata < 3) { | 4005 if (buildCounterMetadata < 3) { |
| 4004 o.fingerprint = "foo"; | 4006 o.fingerprint = "foo"; |
| 4005 o.items = buildUnnamed801(); | 4007 o.items = buildUnnamed2504(); |
| 4006 o.kind = "foo"; | 4008 o.kind = "foo"; |
| 4007 } | 4009 } |
| 4008 buildCounterMetadata--; | 4010 buildCounterMetadata--; |
| 4009 return o; | 4011 return o; |
| 4010 } | 4012 } |
| 4011 | 4013 |
| 4012 checkMetadata(api.Metadata o) { | 4014 checkMetadata(api.Metadata o) { |
| 4013 buildCounterMetadata++; | 4015 buildCounterMetadata++; |
| 4014 if (buildCounterMetadata < 3) { | 4016 if (buildCounterMetadata < 3) { |
| 4015 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4017 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4016 checkUnnamed801(o.items); | 4018 checkUnnamed2504(o.items); |
| 4017 unittest.expect(o.kind, unittest.equals('foo')); | 4019 unittest.expect(o.kind, unittest.equals('foo')); |
| 4018 } | 4020 } |
| 4019 buildCounterMetadata--; | 4021 buildCounterMetadata--; |
| 4020 } | 4022 } |
| 4021 | 4023 |
| 4022 core.int buildCounterNamedPort = 0; | 4024 core.int buildCounterNamedPort = 0; |
| 4023 buildNamedPort() { | 4025 buildNamedPort() { |
| 4024 var o = new api.NamedPort(); | 4026 var o = new api.NamedPort(); |
| 4025 buildCounterNamedPort++; | 4027 buildCounterNamedPort++; |
| 4026 if (buildCounterNamedPort < 3) { | 4028 if (buildCounterNamedPort < 3) { |
| 4027 o.name = "foo"; | 4029 o.name = "foo"; |
| 4028 o.port = 42; | 4030 o.port = 42; |
| 4029 } | 4031 } |
| 4030 buildCounterNamedPort--; | 4032 buildCounterNamedPort--; |
| 4031 return o; | 4033 return o; |
| 4032 } | 4034 } |
| 4033 | 4035 |
| 4034 checkNamedPort(api.NamedPort o) { | 4036 checkNamedPort(api.NamedPort o) { |
| 4035 buildCounterNamedPort++; | 4037 buildCounterNamedPort++; |
| 4036 if (buildCounterNamedPort < 3) { | 4038 if (buildCounterNamedPort < 3) { |
| 4037 unittest.expect(o.name, unittest.equals('foo')); | 4039 unittest.expect(o.name, unittest.equals('foo')); |
| 4038 unittest.expect(o.port, unittest.equals(42)); | 4040 unittest.expect(o.port, unittest.equals(42)); |
| 4039 } | 4041 } |
| 4040 buildCounterNamedPort--; | 4042 buildCounterNamedPort--; |
| 4041 } | 4043 } |
| 4042 | 4044 |
| 4043 buildUnnamed802() { | 4045 buildUnnamed2505() { |
| 4044 var o = new core.List<core.String>(); | 4046 var o = new core.List<core.String>(); |
| 4045 o.add("foo"); | 4047 o.add("foo"); |
| 4046 o.add("foo"); | 4048 o.add("foo"); |
| 4047 return o; | 4049 return o; |
| 4048 } | 4050 } |
| 4049 | 4051 |
| 4050 checkUnnamed802(core.List<core.String> o) { | 4052 checkUnnamed2505(core.List<core.String> o) { |
| 4051 unittest.expect(o, unittest.hasLength(2)); | 4053 unittest.expect(o, unittest.hasLength(2)); |
| 4052 unittest.expect(o[0], unittest.equals('foo')); | 4054 unittest.expect(o[0], unittest.equals('foo')); |
| 4053 unittest.expect(o[1], unittest.equals('foo')); | 4055 unittest.expect(o[1], unittest.equals('foo')); |
| 4054 } | 4056 } |
| 4055 | 4057 |
| 4056 core.int buildCounterNetwork = 0; | 4058 core.int buildCounterNetwork = 0; |
| 4057 buildNetwork() { | 4059 buildNetwork() { |
| 4058 var o = new api.Network(); | 4060 var o = new api.Network(); |
| 4059 buildCounterNetwork++; | 4061 buildCounterNetwork++; |
| 4060 if (buildCounterNetwork < 3) { | 4062 if (buildCounterNetwork < 3) { |
| 4061 o.IPv4Range = "foo"; | 4063 o.IPv4Range = "foo"; |
| 4062 o.autoCreateSubnetworks = true; | 4064 o.autoCreateSubnetworks = true; |
| 4063 o.creationTimestamp = "foo"; | 4065 o.creationTimestamp = "foo"; |
| 4064 o.description = "foo"; | 4066 o.description = "foo"; |
| 4065 o.gatewayIPv4 = "foo"; | 4067 o.gatewayIPv4 = "foo"; |
| 4066 o.id = "foo"; | 4068 o.id = "foo"; |
| 4067 o.kind = "foo"; | 4069 o.kind = "foo"; |
| 4068 o.name = "foo"; | 4070 o.name = "foo"; |
| 4069 o.selfLink = "foo"; | 4071 o.selfLink = "foo"; |
| 4070 o.subnetworks = buildUnnamed802(); | 4072 o.subnetworks = buildUnnamed2505(); |
| 4071 } | 4073 } |
| 4072 buildCounterNetwork--; | 4074 buildCounterNetwork--; |
| 4073 return o; | 4075 return o; |
| 4074 } | 4076 } |
| 4075 | 4077 |
| 4076 checkNetwork(api.Network o) { | 4078 checkNetwork(api.Network o) { |
| 4077 buildCounterNetwork++; | 4079 buildCounterNetwork++; |
| 4078 if (buildCounterNetwork < 3) { | 4080 if (buildCounterNetwork < 3) { |
| 4079 unittest.expect(o.IPv4Range, unittest.equals('foo')); | 4081 unittest.expect(o.IPv4Range, unittest.equals('foo')); |
| 4080 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); | 4082 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); |
| 4081 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4083 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4082 unittest.expect(o.description, unittest.equals('foo')); | 4084 unittest.expect(o.description, unittest.equals('foo')); |
| 4083 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 4085 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 4084 unittest.expect(o.id, unittest.equals('foo')); | 4086 unittest.expect(o.id, unittest.equals('foo')); |
| 4085 unittest.expect(o.kind, unittest.equals('foo')); | 4087 unittest.expect(o.kind, unittest.equals('foo')); |
| 4086 unittest.expect(o.name, unittest.equals('foo')); | 4088 unittest.expect(o.name, unittest.equals('foo')); |
| 4087 unittest.expect(o.selfLink, unittest.equals('foo')); | 4089 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4088 checkUnnamed802(o.subnetworks); | 4090 checkUnnamed2505(o.subnetworks); |
| 4089 } | 4091 } |
| 4090 buildCounterNetwork--; | 4092 buildCounterNetwork--; |
| 4091 } | 4093 } |
| 4092 | 4094 |
| 4093 buildUnnamed803() { | 4095 buildUnnamed2506() { |
| 4094 var o = new core.List<api.AccessConfig>(); | 4096 var o = new core.List<api.AccessConfig>(); |
| 4095 o.add(buildAccessConfig()); | 4097 o.add(buildAccessConfig()); |
| 4096 o.add(buildAccessConfig()); | 4098 o.add(buildAccessConfig()); |
| 4097 return o; | 4099 return o; |
| 4098 } | 4100 } |
| 4099 | 4101 |
| 4100 checkUnnamed803(core.List<api.AccessConfig> o) { | 4102 checkUnnamed2506(core.List<api.AccessConfig> o) { |
| 4101 unittest.expect(o, unittest.hasLength(2)); | 4103 unittest.expect(o, unittest.hasLength(2)); |
| 4102 checkAccessConfig(o[0]); | 4104 checkAccessConfig(o[0]); |
| 4103 checkAccessConfig(o[1]); | 4105 checkAccessConfig(o[1]); |
| 4104 } | 4106 } |
| 4105 | 4107 |
| 4106 core.int buildCounterNetworkInterface = 0; | 4108 core.int buildCounterNetworkInterface = 0; |
| 4107 buildNetworkInterface() { | 4109 buildNetworkInterface() { |
| 4108 var o = new api.NetworkInterface(); | 4110 var o = new api.NetworkInterface(); |
| 4109 buildCounterNetworkInterface++; | 4111 buildCounterNetworkInterface++; |
| 4110 if (buildCounterNetworkInterface < 3) { | 4112 if (buildCounterNetworkInterface < 3) { |
| 4111 o.accessConfigs = buildUnnamed803(); | 4113 o.accessConfigs = buildUnnamed2506(); |
| 4112 o.name = "foo"; | 4114 o.name = "foo"; |
| 4113 o.network = "foo"; | 4115 o.network = "foo"; |
| 4114 o.networkIP = "foo"; | 4116 o.networkIP = "foo"; |
| 4115 o.subnetwork = "foo"; | 4117 o.subnetwork = "foo"; |
| 4116 } | 4118 } |
| 4117 buildCounterNetworkInterface--; | 4119 buildCounterNetworkInterface--; |
| 4118 return o; | 4120 return o; |
| 4119 } | 4121 } |
| 4120 | 4122 |
| 4121 checkNetworkInterface(api.NetworkInterface o) { | 4123 checkNetworkInterface(api.NetworkInterface o) { |
| 4122 buildCounterNetworkInterface++; | 4124 buildCounterNetworkInterface++; |
| 4123 if (buildCounterNetworkInterface < 3) { | 4125 if (buildCounterNetworkInterface < 3) { |
| 4124 checkUnnamed803(o.accessConfigs); | 4126 checkUnnamed2506(o.accessConfigs); |
| 4125 unittest.expect(o.name, unittest.equals('foo')); | 4127 unittest.expect(o.name, unittest.equals('foo')); |
| 4126 unittest.expect(o.network, unittest.equals('foo')); | 4128 unittest.expect(o.network, unittest.equals('foo')); |
| 4127 unittest.expect(o.networkIP, unittest.equals('foo')); | 4129 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 4128 unittest.expect(o.subnetwork, unittest.equals('foo')); | 4130 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 4129 } | 4131 } |
| 4130 buildCounterNetworkInterface--; | 4132 buildCounterNetworkInterface--; |
| 4131 } | 4133 } |
| 4132 | 4134 |
| 4133 buildUnnamed804() { | 4135 buildUnnamed2507() { |
| 4134 var o = new core.List<api.Network>(); | 4136 var o = new core.List<api.Network>(); |
| 4135 o.add(buildNetwork()); | 4137 o.add(buildNetwork()); |
| 4136 o.add(buildNetwork()); | 4138 o.add(buildNetwork()); |
| 4137 return o; | 4139 return o; |
| 4138 } | 4140 } |
| 4139 | 4141 |
| 4140 checkUnnamed804(core.List<api.Network> o) { | 4142 checkUnnamed2507(core.List<api.Network> o) { |
| 4141 unittest.expect(o, unittest.hasLength(2)); | 4143 unittest.expect(o, unittest.hasLength(2)); |
| 4142 checkNetwork(o[0]); | 4144 checkNetwork(o[0]); |
| 4143 checkNetwork(o[1]); | 4145 checkNetwork(o[1]); |
| 4144 } | 4146 } |
| 4145 | 4147 |
| 4146 core.int buildCounterNetworkList = 0; | 4148 core.int buildCounterNetworkList = 0; |
| 4147 buildNetworkList() { | 4149 buildNetworkList() { |
| 4148 var o = new api.NetworkList(); | 4150 var o = new api.NetworkList(); |
| 4149 buildCounterNetworkList++; | 4151 buildCounterNetworkList++; |
| 4150 if (buildCounterNetworkList < 3) { | 4152 if (buildCounterNetworkList < 3) { |
| 4151 o.id = "foo"; | 4153 o.id = "foo"; |
| 4152 o.items = buildUnnamed804(); | 4154 o.items = buildUnnamed2507(); |
| 4153 o.kind = "foo"; | 4155 o.kind = "foo"; |
| 4154 o.nextPageToken = "foo"; | 4156 o.nextPageToken = "foo"; |
| 4155 o.selfLink = "foo"; | 4157 o.selfLink = "foo"; |
| 4156 } | 4158 } |
| 4157 buildCounterNetworkList--; | 4159 buildCounterNetworkList--; |
| 4158 return o; | 4160 return o; |
| 4159 } | 4161 } |
| 4160 | 4162 |
| 4161 checkNetworkList(api.NetworkList o) { | 4163 checkNetworkList(api.NetworkList o) { |
| 4162 buildCounterNetworkList++; | 4164 buildCounterNetworkList++; |
| 4163 if (buildCounterNetworkList < 3) { | 4165 if (buildCounterNetworkList < 3) { |
| 4164 unittest.expect(o.id, unittest.equals('foo')); | 4166 unittest.expect(o.id, unittest.equals('foo')); |
| 4165 checkUnnamed804(o.items); | 4167 checkUnnamed2507(o.items); |
| 4166 unittest.expect(o.kind, unittest.equals('foo')); | 4168 unittest.expect(o.kind, unittest.equals('foo')); |
| 4167 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4169 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4168 unittest.expect(o.selfLink, unittest.equals('foo')); | 4170 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4169 } | 4171 } |
| 4170 buildCounterNetworkList--; | 4172 buildCounterNetworkList--; |
| 4171 } | 4173 } |
| 4172 | 4174 |
| 4173 core.int buildCounterOperationErrorErrors = 0; | 4175 core.int buildCounterOperationErrorErrors = 0; |
| 4174 buildOperationErrorErrors() { | 4176 buildOperationErrorErrors() { |
| 4175 var o = new api.OperationErrorErrors(); | 4177 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4186 checkOperationErrorErrors(api.OperationErrorErrors o) { | 4188 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 4187 buildCounterOperationErrorErrors++; | 4189 buildCounterOperationErrorErrors++; |
| 4188 if (buildCounterOperationErrorErrors < 3) { | 4190 if (buildCounterOperationErrorErrors < 3) { |
| 4189 unittest.expect(o.code, unittest.equals('foo')); | 4191 unittest.expect(o.code, unittest.equals('foo')); |
| 4190 unittest.expect(o.location, unittest.equals('foo')); | 4192 unittest.expect(o.location, unittest.equals('foo')); |
| 4191 unittest.expect(o.message, unittest.equals('foo')); | 4193 unittest.expect(o.message, unittest.equals('foo')); |
| 4192 } | 4194 } |
| 4193 buildCounterOperationErrorErrors--; | 4195 buildCounterOperationErrorErrors--; |
| 4194 } | 4196 } |
| 4195 | 4197 |
| 4196 buildUnnamed805() { | 4198 buildUnnamed2508() { |
| 4197 var o = new core.List<api.OperationErrorErrors>(); | 4199 var o = new core.List<api.OperationErrorErrors>(); |
| 4198 o.add(buildOperationErrorErrors()); | 4200 o.add(buildOperationErrorErrors()); |
| 4199 o.add(buildOperationErrorErrors()); | 4201 o.add(buildOperationErrorErrors()); |
| 4200 return o; | 4202 return o; |
| 4201 } | 4203 } |
| 4202 | 4204 |
| 4203 checkUnnamed805(core.List<api.OperationErrorErrors> o) { | 4205 checkUnnamed2508(core.List<api.OperationErrorErrors> o) { |
| 4204 unittest.expect(o, unittest.hasLength(2)); | 4206 unittest.expect(o, unittest.hasLength(2)); |
| 4205 checkOperationErrorErrors(o[0]); | 4207 checkOperationErrorErrors(o[0]); |
| 4206 checkOperationErrorErrors(o[1]); | 4208 checkOperationErrorErrors(o[1]); |
| 4207 } | 4209 } |
| 4208 | 4210 |
| 4209 core.int buildCounterOperationError = 0; | 4211 core.int buildCounterOperationError = 0; |
| 4210 buildOperationError() { | 4212 buildOperationError() { |
| 4211 var o = new api.OperationError(); | 4213 var o = new api.OperationError(); |
| 4212 buildCounterOperationError++; | 4214 buildCounterOperationError++; |
| 4213 if (buildCounterOperationError < 3) { | 4215 if (buildCounterOperationError < 3) { |
| 4214 o.errors = buildUnnamed805(); | 4216 o.errors = buildUnnamed2508(); |
| 4215 } | 4217 } |
| 4216 buildCounterOperationError--; | 4218 buildCounterOperationError--; |
| 4217 return o; | 4219 return o; |
| 4218 } | 4220 } |
| 4219 | 4221 |
| 4220 checkOperationError(api.OperationError o) { | 4222 checkOperationError(api.OperationError o) { |
| 4221 buildCounterOperationError++; | 4223 buildCounterOperationError++; |
| 4222 if (buildCounterOperationError < 3) { | 4224 if (buildCounterOperationError < 3) { |
| 4223 checkUnnamed805(o.errors); | 4225 checkUnnamed2508(o.errors); |
| 4224 } | 4226 } |
| 4225 buildCounterOperationError--; | 4227 buildCounterOperationError--; |
| 4226 } | 4228 } |
| 4227 | 4229 |
| 4228 core.int buildCounterOperationWarningsData = 0; | 4230 core.int buildCounterOperationWarningsData = 0; |
| 4229 buildOperationWarningsData() { | 4231 buildOperationWarningsData() { |
| 4230 var o = new api.OperationWarningsData(); | 4232 var o = new api.OperationWarningsData(); |
| 4231 buildCounterOperationWarningsData++; | 4233 buildCounterOperationWarningsData++; |
| 4232 if (buildCounterOperationWarningsData < 3) { | 4234 if (buildCounterOperationWarningsData < 3) { |
| 4233 o.key = "foo"; | 4235 o.key = "foo"; |
| 4234 o.value = "foo"; | 4236 o.value = "foo"; |
| 4235 } | 4237 } |
| 4236 buildCounterOperationWarningsData--; | 4238 buildCounterOperationWarningsData--; |
| 4237 return o; | 4239 return o; |
| 4238 } | 4240 } |
| 4239 | 4241 |
| 4240 checkOperationWarningsData(api.OperationWarningsData o) { | 4242 checkOperationWarningsData(api.OperationWarningsData o) { |
| 4241 buildCounterOperationWarningsData++; | 4243 buildCounterOperationWarningsData++; |
| 4242 if (buildCounterOperationWarningsData < 3) { | 4244 if (buildCounterOperationWarningsData < 3) { |
| 4243 unittest.expect(o.key, unittest.equals('foo')); | 4245 unittest.expect(o.key, unittest.equals('foo')); |
| 4244 unittest.expect(o.value, unittest.equals('foo')); | 4246 unittest.expect(o.value, unittest.equals('foo')); |
| 4245 } | 4247 } |
| 4246 buildCounterOperationWarningsData--; | 4248 buildCounterOperationWarningsData--; |
| 4247 } | 4249 } |
| 4248 | 4250 |
| 4249 buildUnnamed806() { | 4251 buildUnnamed2509() { |
| 4250 var o = new core.List<api.OperationWarningsData>(); | 4252 var o = new core.List<api.OperationWarningsData>(); |
| 4251 o.add(buildOperationWarningsData()); | 4253 o.add(buildOperationWarningsData()); |
| 4252 o.add(buildOperationWarningsData()); | 4254 o.add(buildOperationWarningsData()); |
| 4253 return o; | 4255 return o; |
| 4254 } | 4256 } |
| 4255 | 4257 |
| 4256 checkUnnamed806(core.List<api.OperationWarningsData> o) { | 4258 checkUnnamed2509(core.List<api.OperationWarningsData> o) { |
| 4257 unittest.expect(o, unittest.hasLength(2)); | 4259 unittest.expect(o, unittest.hasLength(2)); |
| 4258 checkOperationWarningsData(o[0]); | 4260 checkOperationWarningsData(o[0]); |
| 4259 checkOperationWarningsData(o[1]); | 4261 checkOperationWarningsData(o[1]); |
| 4260 } | 4262 } |
| 4261 | 4263 |
| 4262 core.int buildCounterOperationWarnings = 0; | 4264 core.int buildCounterOperationWarnings = 0; |
| 4263 buildOperationWarnings() { | 4265 buildOperationWarnings() { |
| 4264 var o = new api.OperationWarnings(); | 4266 var o = new api.OperationWarnings(); |
| 4265 buildCounterOperationWarnings++; | 4267 buildCounterOperationWarnings++; |
| 4266 if (buildCounterOperationWarnings < 3) { | 4268 if (buildCounterOperationWarnings < 3) { |
| 4267 o.code = "foo"; | 4269 o.code = "foo"; |
| 4268 o.data = buildUnnamed806(); | 4270 o.data = buildUnnamed2509(); |
| 4269 o.message = "foo"; | 4271 o.message = "foo"; |
| 4270 } | 4272 } |
| 4271 buildCounterOperationWarnings--; | 4273 buildCounterOperationWarnings--; |
| 4272 return o; | 4274 return o; |
| 4273 } | 4275 } |
| 4274 | 4276 |
| 4275 checkOperationWarnings(api.OperationWarnings o) { | 4277 checkOperationWarnings(api.OperationWarnings o) { |
| 4276 buildCounterOperationWarnings++; | 4278 buildCounterOperationWarnings++; |
| 4277 if (buildCounterOperationWarnings < 3) { | 4279 if (buildCounterOperationWarnings < 3) { |
| 4278 unittest.expect(o.code, unittest.equals('foo')); | 4280 unittest.expect(o.code, unittest.equals('foo')); |
| 4279 checkUnnamed806(o.data); | 4281 checkUnnamed2509(o.data); |
| 4280 unittest.expect(o.message, unittest.equals('foo')); | 4282 unittest.expect(o.message, unittest.equals('foo')); |
| 4281 } | 4283 } |
| 4282 buildCounterOperationWarnings--; | 4284 buildCounterOperationWarnings--; |
| 4283 } | 4285 } |
| 4284 | 4286 |
| 4285 buildUnnamed807() { | 4287 buildUnnamed2510() { |
| 4286 var o = new core.List<api.OperationWarnings>(); | 4288 var o = new core.List<api.OperationWarnings>(); |
| 4287 o.add(buildOperationWarnings()); | 4289 o.add(buildOperationWarnings()); |
| 4288 o.add(buildOperationWarnings()); | 4290 o.add(buildOperationWarnings()); |
| 4289 return o; | 4291 return o; |
| 4290 } | 4292 } |
| 4291 | 4293 |
| 4292 checkUnnamed807(core.List<api.OperationWarnings> o) { | 4294 checkUnnamed2510(core.List<api.OperationWarnings> o) { |
| 4293 unittest.expect(o, unittest.hasLength(2)); | 4295 unittest.expect(o, unittest.hasLength(2)); |
| 4294 checkOperationWarnings(o[0]); | 4296 checkOperationWarnings(o[0]); |
| 4295 checkOperationWarnings(o[1]); | 4297 checkOperationWarnings(o[1]); |
| 4296 } | 4298 } |
| 4297 | 4299 |
| 4298 core.int buildCounterOperation = 0; | 4300 core.int buildCounterOperation = 0; |
| 4299 buildOperation() { | 4301 buildOperation() { |
| 4300 var o = new api.Operation(); | 4302 var o = new api.Operation(); |
| 4301 buildCounterOperation++; | 4303 buildCounterOperation++; |
| 4302 if (buildCounterOperation < 3) { | 4304 if (buildCounterOperation < 3) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4314 o.operationType = "foo"; | 4316 o.operationType = "foo"; |
| 4315 o.progress = 42; | 4317 o.progress = 42; |
| 4316 o.region = "foo"; | 4318 o.region = "foo"; |
| 4317 o.selfLink = "foo"; | 4319 o.selfLink = "foo"; |
| 4318 o.startTime = "foo"; | 4320 o.startTime = "foo"; |
| 4319 o.status = "foo"; | 4321 o.status = "foo"; |
| 4320 o.statusMessage = "foo"; | 4322 o.statusMessage = "foo"; |
| 4321 o.targetId = "foo"; | 4323 o.targetId = "foo"; |
| 4322 o.targetLink = "foo"; | 4324 o.targetLink = "foo"; |
| 4323 o.user = "foo"; | 4325 o.user = "foo"; |
| 4324 o.warnings = buildUnnamed807(); | 4326 o.warnings = buildUnnamed2510(); |
| 4325 o.zone = "foo"; | 4327 o.zone = "foo"; |
| 4326 } | 4328 } |
| 4327 buildCounterOperation--; | 4329 buildCounterOperation--; |
| 4328 return o; | 4330 return o; |
| 4329 } | 4331 } |
| 4330 | 4332 |
| 4331 checkOperation(api.Operation o) { | 4333 checkOperation(api.Operation o) { |
| 4332 buildCounterOperation++; | 4334 buildCounterOperation++; |
| 4333 if (buildCounterOperation < 3) { | 4335 if (buildCounterOperation < 3) { |
| 4334 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 4336 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4345 unittest.expect(o.operationType, unittest.equals('foo')); | 4347 unittest.expect(o.operationType, unittest.equals('foo')); |
| 4346 unittest.expect(o.progress, unittest.equals(42)); | 4348 unittest.expect(o.progress, unittest.equals(42)); |
| 4347 unittest.expect(o.region, unittest.equals('foo')); | 4349 unittest.expect(o.region, unittest.equals('foo')); |
| 4348 unittest.expect(o.selfLink, unittest.equals('foo')); | 4350 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4349 unittest.expect(o.startTime, unittest.equals('foo')); | 4351 unittest.expect(o.startTime, unittest.equals('foo')); |
| 4350 unittest.expect(o.status, unittest.equals('foo')); | 4352 unittest.expect(o.status, unittest.equals('foo')); |
| 4351 unittest.expect(o.statusMessage, unittest.equals('foo')); | 4353 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 4352 unittest.expect(o.targetId, unittest.equals('foo')); | 4354 unittest.expect(o.targetId, unittest.equals('foo')); |
| 4353 unittest.expect(o.targetLink, unittest.equals('foo')); | 4355 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 4354 unittest.expect(o.user, unittest.equals('foo')); | 4356 unittest.expect(o.user, unittest.equals('foo')); |
| 4355 checkUnnamed807(o.warnings); | 4357 checkUnnamed2510(o.warnings); |
| 4356 unittest.expect(o.zone, unittest.equals('foo')); | 4358 unittest.expect(o.zone, unittest.equals('foo')); |
| 4357 } | 4359 } |
| 4358 buildCounterOperation--; | 4360 buildCounterOperation--; |
| 4359 } | 4361 } |
| 4360 | 4362 |
| 4361 buildUnnamed808() { | 4363 buildUnnamed2511() { |
| 4362 var o = new core.Map<core.String, api.OperationsScopedList>(); | 4364 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 4363 o["x"] = buildOperationsScopedList(); | 4365 o["x"] = buildOperationsScopedList(); |
| 4364 o["y"] = buildOperationsScopedList(); | 4366 o["y"] = buildOperationsScopedList(); |
| 4365 return o; | 4367 return o; |
| 4366 } | 4368 } |
| 4367 | 4369 |
| 4368 checkUnnamed808(core.Map<core.String, api.OperationsScopedList> o) { | 4370 checkUnnamed2511(core.Map<core.String, api.OperationsScopedList> o) { |
| 4369 unittest.expect(o, unittest.hasLength(2)); | 4371 unittest.expect(o, unittest.hasLength(2)); |
| 4370 checkOperationsScopedList(o["x"]); | 4372 checkOperationsScopedList(o["x"]); |
| 4371 checkOperationsScopedList(o["y"]); | 4373 checkOperationsScopedList(o["y"]); |
| 4372 } | 4374 } |
| 4373 | 4375 |
| 4374 core.int buildCounterOperationAggregatedList = 0; | 4376 core.int buildCounterOperationAggregatedList = 0; |
| 4375 buildOperationAggregatedList() { | 4377 buildOperationAggregatedList() { |
| 4376 var o = new api.OperationAggregatedList(); | 4378 var o = new api.OperationAggregatedList(); |
| 4377 buildCounterOperationAggregatedList++; | 4379 buildCounterOperationAggregatedList++; |
| 4378 if (buildCounterOperationAggregatedList < 3) { | 4380 if (buildCounterOperationAggregatedList < 3) { |
| 4379 o.id = "foo"; | 4381 o.id = "foo"; |
| 4380 o.items = buildUnnamed808(); | 4382 o.items = buildUnnamed2511(); |
| 4381 o.kind = "foo"; | 4383 o.kind = "foo"; |
| 4382 o.nextPageToken = "foo"; | 4384 o.nextPageToken = "foo"; |
| 4383 o.selfLink = "foo"; | 4385 o.selfLink = "foo"; |
| 4384 } | 4386 } |
| 4385 buildCounterOperationAggregatedList--; | 4387 buildCounterOperationAggregatedList--; |
| 4386 return o; | 4388 return o; |
| 4387 } | 4389 } |
| 4388 | 4390 |
| 4389 checkOperationAggregatedList(api.OperationAggregatedList o) { | 4391 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 4390 buildCounterOperationAggregatedList++; | 4392 buildCounterOperationAggregatedList++; |
| 4391 if (buildCounterOperationAggregatedList < 3) { | 4393 if (buildCounterOperationAggregatedList < 3) { |
| 4392 unittest.expect(o.id, unittest.equals('foo')); | 4394 unittest.expect(o.id, unittest.equals('foo')); |
| 4393 checkUnnamed808(o.items); | 4395 checkUnnamed2511(o.items); |
| 4394 unittest.expect(o.kind, unittest.equals('foo')); | 4396 unittest.expect(o.kind, unittest.equals('foo')); |
| 4395 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4397 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4396 unittest.expect(o.selfLink, unittest.equals('foo')); | 4398 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4397 } | 4399 } |
| 4398 buildCounterOperationAggregatedList--; | 4400 buildCounterOperationAggregatedList--; |
| 4399 } | 4401 } |
| 4400 | 4402 |
| 4401 buildUnnamed809() { | 4403 buildUnnamed2512() { |
| 4402 var o = new core.List<api.Operation>(); | 4404 var o = new core.List<api.Operation>(); |
| 4403 o.add(buildOperation()); | 4405 o.add(buildOperation()); |
| 4404 o.add(buildOperation()); | 4406 o.add(buildOperation()); |
| 4405 return o; | 4407 return o; |
| 4406 } | 4408 } |
| 4407 | 4409 |
| 4408 checkUnnamed809(core.List<api.Operation> o) { | 4410 checkUnnamed2512(core.List<api.Operation> o) { |
| 4409 unittest.expect(o, unittest.hasLength(2)); | 4411 unittest.expect(o, unittest.hasLength(2)); |
| 4410 checkOperation(o[0]); | 4412 checkOperation(o[0]); |
| 4411 checkOperation(o[1]); | 4413 checkOperation(o[1]); |
| 4412 } | 4414 } |
| 4413 | 4415 |
| 4414 core.int buildCounterOperationList = 0; | 4416 core.int buildCounterOperationList = 0; |
| 4415 buildOperationList() { | 4417 buildOperationList() { |
| 4416 var o = new api.OperationList(); | 4418 var o = new api.OperationList(); |
| 4417 buildCounterOperationList++; | 4419 buildCounterOperationList++; |
| 4418 if (buildCounterOperationList < 3) { | 4420 if (buildCounterOperationList < 3) { |
| 4419 o.id = "foo"; | 4421 o.id = "foo"; |
| 4420 o.items = buildUnnamed809(); | 4422 o.items = buildUnnamed2512(); |
| 4421 o.kind = "foo"; | 4423 o.kind = "foo"; |
| 4422 o.nextPageToken = "foo"; | 4424 o.nextPageToken = "foo"; |
| 4423 o.selfLink = "foo"; | 4425 o.selfLink = "foo"; |
| 4424 } | 4426 } |
| 4425 buildCounterOperationList--; | 4427 buildCounterOperationList--; |
| 4426 return o; | 4428 return o; |
| 4427 } | 4429 } |
| 4428 | 4430 |
| 4429 checkOperationList(api.OperationList o) { | 4431 checkOperationList(api.OperationList o) { |
| 4430 buildCounterOperationList++; | 4432 buildCounterOperationList++; |
| 4431 if (buildCounterOperationList < 3) { | 4433 if (buildCounterOperationList < 3) { |
| 4432 unittest.expect(o.id, unittest.equals('foo')); | 4434 unittest.expect(o.id, unittest.equals('foo')); |
| 4433 checkUnnamed809(o.items); | 4435 checkUnnamed2512(o.items); |
| 4434 unittest.expect(o.kind, unittest.equals('foo')); | 4436 unittest.expect(o.kind, unittest.equals('foo')); |
| 4435 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4437 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4436 unittest.expect(o.selfLink, unittest.equals('foo')); | 4438 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4437 } | 4439 } |
| 4438 buildCounterOperationList--; | 4440 buildCounterOperationList--; |
| 4439 } | 4441 } |
| 4440 | 4442 |
| 4441 buildUnnamed810() { | 4443 buildUnnamed2513() { |
| 4442 var o = new core.List<api.Operation>(); | 4444 var o = new core.List<api.Operation>(); |
| 4443 o.add(buildOperation()); | 4445 o.add(buildOperation()); |
| 4444 o.add(buildOperation()); | 4446 o.add(buildOperation()); |
| 4445 return o; | 4447 return o; |
| 4446 } | 4448 } |
| 4447 | 4449 |
| 4448 checkUnnamed810(core.List<api.Operation> o) { | 4450 checkUnnamed2513(core.List<api.Operation> o) { |
| 4449 unittest.expect(o, unittest.hasLength(2)); | 4451 unittest.expect(o, unittest.hasLength(2)); |
| 4450 checkOperation(o[0]); | 4452 checkOperation(o[0]); |
| 4451 checkOperation(o[1]); | 4453 checkOperation(o[1]); |
| 4452 } | 4454 } |
| 4453 | 4455 |
| 4454 core.int buildCounterOperationsScopedListWarningData = 0; | 4456 core.int buildCounterOperationsScopedListWarningData = 0; |
| 4455 buildOperationsScopedListWarningData() { | 4457 buildOperationsScopedListWarningData() { |
| 4456 var o = new api.OperationsScopedListWarningData(); | 4458 var o = new api.OperationsScopedListWarningData(); |
| 4457 buildCounterOperationsScopedListWarningData++; | 4459 buildCounterOperationsScopedListWarningData++; |
| 4458 if (buildCounterOperationsScopedListWarningData < 3) { | 4460 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4459 o.key = "foo"; | 4461 o.key = "foo"; |
| 4460 o.value = "foo"; | 4462 o.value = "foo"; |
| 4461 } | 4463 } |
| 4462 buildCounterOperationsScopedListWarningData--; | 4464 buildCounterOperationsScopedListWarningData--; |
| 4463 return o; | 4465 return o; |
| 4464 } | 4466 } |
| 4465 | 4467 |
| 4466 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 4468 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 4467 buildCounterOperationsScopedListWarningData++; | 4469 buildCounterOperationsScopedListWarningData++; |
| 4468 if (buildCounterOperationsScopedListWarningData < 3) { | 4470 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4469 unittest.expect(o.key, unittest.equals('foo')); | 4471 unittest.expect(o.key, unittest.equals('foo')); |
| 4470 unittest.expect(o.value, unittest.equals('foo')); | 4472 unittest.expect(o.value, unittest.equals('foo')); |
| 4471 } | 4473 } |
| 4472 buildCounterOperationsScopedListWarningData--; | 4474 buildCounterOperationsScopedListWarningData--; |
| 4473 } | 4475 } |
| 4474 | 4476 |
| 4475 buildUnnamed811() { | 4477 buildUnnamed2514() { |
| 4476 var o = new core.List<api.OperationsScopedListWarningData>(); | 4478 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 4477 o.add(buildOperationsScopedListWarningData()); | 4479 o.add(buildOperationsScopedListWarningData()); |
| 4478 o.add(buildOperationsScopedListWarningData()); | 4480 o.add(buildOperationsScopedListWarningData()); |
| 4479 return o; | 4481 return o; |
| 4480 } | 4482 } |
| 4481 | 4483 |
| 4482 checkUnnamed811(core.List<api.OperationsScopedListWarningData> o) { | 4484 checkUnnamed2514(core.List<api.OperationsScopedListWarningData> o) { |
| 4483 unittest.expect(o, unittest.hasLength(2)); | 4485 unittest.expect(o, unittest.hasLength(2)); |
| 4484 checkOperationsScopedListWarningData(o[0]); | 4486 checkOperationsScopedListWarningData(o[0]); |
| 4485 checkOperationsScopedListWarningData(o[1]); | 4487 checkOperationsScopedListWarningData(o[1]); |
| 4486 } | 4488 } |
| 4487 | 4489 |
| 4488 core.int buildCounterOperationsScopedListWarning = 0; | 4490 core.int buildCounterOperationsScopedListWarning = 0; |
| 4489 buildOperationsScopedListWarning() { | 4491 buildOperationsScopedListWarning() { |
| 4490 var o = new api.OperationsScopedListWarning(); | 4492 var o = new api.OperationsScopedListWarning(); |
| 4491 buildCounterOperationsScopedListWarning++; | 4493 buildCounterOperationsScopedListWarning++; |
| 4492 if (buildCounterOperationsScopedListWarning < 3) { | 4494 if (buildCounterOperationsScopedListWarning < 3) { |
| 4493 o.code = "foo"; | 4495 o.code = "foo"; |
| 4494 o.data = buildUnnamed811(); | 4496 o.data = buildUnnamed2514(); |
| 4495 o.message = "foo"; | 4497 o.message = "foo"; |
| 4496 } | 4498 } |
| 4497 buildCounterOperationsScopedListWarning--; | 4499 buildCounterOperationsScopedListWarning--; |
| 4498 return o; | 4500 return o; |
| 4499 } | 4501 } |
| 4500 | 4502 |
| 4501 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 4503 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 4502 buildCounterOperationsScopedListWarning++; | 4504 buildCounterOperationsScopedListWarning++; |
| 4503 if (buildCounterOperationsScopedListWarning < 3) { | 4505 if (buildCounterOperationsScopedListWarning < 3) { |
| 4504 unittest.expect(o.code, unittest.equals('foo')); | 4506 unittest.expect(o.code, unittest.equals('foo')); |
| 4505 checkUnnamed811(o.data); | 4507 checkUnnamed2514(o.data); |
| 4506 unittest.expect(o.message, unittest.equals('foo')); | 4508 unittest.expect(o.message, unittest.equals('foo')); |
| 4507 } | 4509 } |
| 4508 buildCounterOperationsScopedListWarning--; | 4510 buildCounterOperationsScopedListWarning--; |
| 4509 } | 4511 } |
| 4510 | 4512 |
| 4511 core.int buildCounterOperationsScopedList = 0; | 4513 core.int buildCounterOperationsScopedList = 0; |
| 4512 buildOperationsScopedList() { | 4514 buildOperationsScopedList() { |
| 4513 var o = new api.OperationsScopedList(); | 4515 var o = new api.OperationsScopedList(); |
| 4514 buildCounterOperationsScopedList++; | 4516 buildCounterOperationsScopedList++; |
| 4515 if (buildCounterOperationsScopedList < 3) { | 4517 if (buildCounterOperationsScopedList < 3) { |
| 4516 o.operations = buildUnnamed810(); | 4518 o.operations = buildUnnamed2513(); |
| 4517 o.warning = buildOperationsScopedListWarning(); | 4519 o.warning = buildOperationsScopedListWarning(); |
| 4518 } | 4520 } |
| 4519 buildCounterOperationsScopedList--; | 4521 buildCounterOperationsScopedList--; |
| 4520 return o; | 4522 return o; |
| 4521 } | 4523 } |
| 4522 | 4524 |
| 4523 checkOperationsScopedList(api.OperationsScopedList o) { | 4525 checkOperationsScopedList(api.OperationsScopedList o) { |
| 4524 buildCounterOperationsScopedList++; | 4526 buildCounterOperationsScopedList++; |
| 4525 if (buildCounterOperationsScopedList < 3) { | 4527 if (buildCounterOperationsScopedList < 3) { |
| 4526 checkUnnamed810(o.operations); | 4528 checkUnnamed2513(o.operations); |
| 4527 checkOperationsScopedListWarning(o.warning); | 4529 checkOperationsScopedListWarning(o.warning); |
| 4528 } | 4530 } |
| 4529 buildCounterOperationsScopedList--; | 4531 buildCounterOperationsScopedList--; |
| 4530 } | 4532 } |
| 4531 | 4533 |
| 4532 buildUnnamed812() { | 4534 buildUnnamed2515() { |
| 4533 var o = new core.List<api.PathRule>(); | 4535 var o = new core.List<api.PathRule>(); |
| 4534 o.add(buildPathRule()); | 4536 o.add(buildPathRule()); |
| 4535 o.add(buildPathRule()); | 4537 o.add(buildPathRule()); |
| 4536 return o; | 4538 return o; |
| 4537 } | 4539 } |
| 4538 | 4540 |
| 4539 checkUnnamed812(core.List<api.PathRule> o) { | 4541 checkUnnamed2515(core.List<api.PathRule> o) { |
| 4540 unittest.expect(o, unittest.hasLength(2)); | 4542 unittest.expect(o, unittest.hasLength(2)); |
| 4541 checkPathRule(o[0]); | 4543 checkPathRule(o[0]); |
| 4542 checkPathRule(o[1]); | 4544 checkPathRule(o[1]); |
| 4543 } | 4545 } |
| 4544 | 4546 |
| 4545 core.int buildCounterPathMatcher = 0; | 4547 core.int buildCounterPathMatcher = 0; |
| 4546 buildPathMatcher() { | 4548 buildPathMatcher() { |
| 4547 var o = new api.PathMatcher(); | 4549 var o = new api.PathMatcher(); |
| 4548 buildCounterPathMatcher++; | 4550 buildCounterPathMatcher++; |
| 4549 if (buildCounterPathMatcher < 3) { | 4551 if (buildCounterPathMatcher < 3) { |
| 4550 o.defaultService = "foo"; | 4552 o.defaultService = "foo"; |
| 4551 o.description = "foo"; | 4553 o.description = "foo"; |
| 4552 o.name = "foo"; | 4554 o.name = "foo"; |
| 4553 o.pathRules = buildUnnamed812(); | 4555 o.pathRules = buildUnnamed2515(); |
| 4554 } | 4556 } |
| 4555 buildCounterPathMatcher--; | 4557 buildCounterPathMatcher--; |
| 4556 return o; | 4558 return o; |
| 4557 } | 4559 } |
| 4558 | 4560 |
| 4559 checkPathMatcher(api.PathMatcher o) { | 4561 checkPathMatcher(api.PathMatcher o) { |
| 4560 buildCounterPathMatcher++; | 4562 buildCounterPathMatcher++; |
| 4561 if (buildCounterPathMatcher < 3) { | 4563 if (buildCounterPathMatcher < 3) { |
| 4562 unittest.expect(o.defaultService, unittest.equals('foo')); | 4564 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4563 unittest.expect(o.description, unittest.equals('foo')); | 4565 unittest.expect(o.description, unittest.equals('foo')); |
| 4564 unittest.expect(o.name, unittest.equals('foo')); | 4566 unittest.expect(o.name, unittest.equals('foo')); |
| 4565 checkUnnamed812(o.pathRules); | 4567 checkUnnamed2515(o.pathRules); |
| 4566 } | 4568 } |
| 4567 buildCounterPathMatcher--; | 4569 buildCounterPathMatcher--; |
| 4568 } | 4570 } |
| 4569 | 4571 |
| 4570 buildUnnamed813() { | 4572 buildUnnamed2516() { |
| 4571 var o = new core.List<core.String>(); | 4573 var o = new core.List<core.String>(); |
| 4572 o.add("foo"); | 4574 o.add("foo"); |
| 4573 o.add("foo"); | 4575 o.add("foo"); |
| 4574 return o; | 4576 return o; |
| 4575 } | 4577 } |
| 4576 | 4578 |
| 4577 checkUnnamed813(core.List<core.String> o) { | 4579 checkUnnamed2516(core.List<core.String> o) { |
| 4578 unittest.expect(o, unittest.hasLength(2)); | 4580 unittest.expect(o, unittest.hasLength(2)); |
| 4579 unittest.expect(o[0], unittest.equals('foo')); | 4581 unittest.expect(o[0], unittest.equals('foo')); |
| 4580 unittest.expect(o[1], unittest.equals('foo')); | 4582 unittest.expect(o[1], unittest.equals('foo')); |
| 4581 } | 4583 } |
| 4582 | 4584 |
| 4583 core.int buildCounterPathRule = 0; | 4585 core.int buildCounterPathRule = 0; |
| 4584 buildPathRule() { | 4586 buildPathRule() { |
| 4585 var o = new api.PathRule(); | 4587 var o = new api.PathRule(); |
| 4586 buildCounterPathRule++; | 4588 buildCounterPathRule++; |
| 4587 if (buildCounterPathRule < 3) { | 4589 if (buildCounterPathRule < 3) { |
| 4588 o.paths = buildUnnamed813(); | 4590 o.paths = buildUnnamed2516(); |
| 4589 o.service = "foo"; | 4591 o.service = "foo"; |
| 4590 } | 4592 } |
| 4591 buildCounterPathRule--; | 4593 buildCounterPathRule--; |
| 4592 return o; | 4594 return o; |
| 4593 } | 4595 } |
| 4594 | 4596 |
| 4595 checkPathRule(api.PathRule o) { | 4597 checkPathRule(api.PathRule o) { |
| 4596 buildCounterPathRule++; | 4598 buildCounterPathRule++; |
| 4597 if (buildCounterPathRule < 3) { | 4599 if (buildCounterPathRule < 3) { |
| 4598 checkUnnamed813(o.paths); | 4600 checkUnnamed2516(o.paths); |
| 4599 unittest.expect(o.service, unittest.equals('foo')); | 4601 unittest.expect(o.service, unittest.equals('foo')); |
| 4600 } | 4602 } |
| 4601 buildCounterPathRule--; | 4603 buildCounterPathRule--; |
| 4602 } | 4604 } |
| 4603 | 4605 |
| 4604 buildUnnamed814() { | 4606 buildUnnamed2517() { |
| 4605 var o = new core.List<core.String>(); | 4607 var o = new core.List<core.String>(); |
| 4606 o.add("foo"); | 4608 o.add("foo"); |
| 4607 o.add("foo"); | 4609 o.add("foo"); |
| 4608 return o; | 4610 return o; |
| 4609 } | 4611 } |
| 4610 | 4612 |
| 4611 checkUnnamed814(core.List<core.String> o) { | 4613 checkUnnamed2517(core.List<core.String> o) { |
| 4612 unittest.expect(o, unittest.hasLength(2)); | 4614 unittest.expect(o, unittest.hasLength(2)); |
| 4613 unittest.expect(o[0], unittest.equals('foo')); | 4615 unittest.expect(o[0], unittest.equals('foo')); |
| 4614 unittest.expect(o[1], unittest.equals('foo')); | 4616 unittest.expect(o[1], unittest.equals('foo')); |
| 4615 } | 4617 } |
| 4616 | 4618 |
| 4617 buildUnnamed815() { | 4619 buildUnnamed2518() { |
| 4618 var o = new core.List<api.Quota>(); | 4620 var o = new core.List<api.Quota>(); |
| 4619 o.add(buildQuota()); | 4621 o.add(buildQuota()); |
| 4620 o.add(buildQuota()); | 4622 o.add(buildQuota()); |
| 4621 return o; | 4623 return o; |
| 4622 } | 4624 } |
| 4623 | 4625 |
| 4624 checkUnnamed815(core.List<api.Quota> o) { | 4626 checkUnnamed2518(core.List<api.Quota> o) { |
| 4625 unittest.expect(o, unittest.hasLength(2)); | 4627 unittest.expect(o, unittest.hasLength(2)); |
| 4626 checkQuota(o[0]); | 4628 checkQuota(o[0]); |
| 4627 checkQuota(o[1]); | 4629 checkQuota(o[1]); |
| 4628 } | 4630 } |
| 4629 | 4631 |
| 4630 core.int buildCounterProject = 0; | 4632 core.int buildCounterProject = 0; |
| 4631 buildProject() { | 4633 buildProject() { |
| 4632 var o = new api.Project(); | 4634 var o = new api.Project(); |
| 4633 buildCounterProject++; | 4635 buildCounterProject++; |
| 4634 if (buildCounterProject < 3) { | 4636 if (buildCounterProject < 3) { |
| 4635 o.commonInstanceMetadata = buildMetadata(); | 4637 o.commonInstanceMetadata = buildMetadata(); |
| 4636 o.creationTimestamp = "foo"; | 4638 o.creationTimestamp = "foo"; |
| 4637 o.defaultServiceAccount = "foo"; | 4639 o.defaultServiceAccount = "foo"; |
| 4638 o.description = "foo"; | 4640 o.description = "foo"; |
| 4639 o.enabledFeatures = buildUnnamed814(); | 4641 o.enabledFeatures = buildUnnamed2517(); |
| 4640 o.id = "foo"; | 4642 o.id = "foo"; |
| 4641 o.kind = "foo"; | 4643 o.kind = "foo"; |
| 4642 o.name = "foo"; | 4644 o.name = "foo"; |
| 4643 o.quotas = buildUnnamed815(); | 4645 o.quotas = buildUnnamed2518(); |
| 4644 o.selfLink = "foo"; | 4646 o.selfLink = "foo"; |
| 4645 o.usageExportLocation = buildUsageExportLocation(); | 4647 o.usageExportLocation = buildUsageExportLocation(); |
| 4646 } | 4648 } |
| 4647 buildCounterProject--; | 4649 buildCounterProject--; |
| 4648 return o; | 4650 return o; |
| 4649 } | 4651 } |
| 4650 | 4652 |
| 4651 checkProject(api.Project o) { | 4653 checkProject(api.Project o) { |
| 4652 buildCounterProject++; | 4654 buildCounterProject++; |
| 4653 if (buildCounterProject < 3) { | 4655 if (buildCounterProject < 3) { |
| 4654 checkMetadata(o.commonInstanceMetadata); | 4656 checkMetadata(o.commonInstanceMetadata); |
| 4655 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4657 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4656 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); | 4658 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); |
| 4657 unittest.expect(o.description, unittest.equals('foo')); | 4659 unittest.expect(o.description, unittest.equals('foo')); |
| 4658 checkUnnamed814(o.enabledFeatures); | 4660 checkUnnamed2517(o.enabledFeatures); |
| 4659 unittest.expect(o.id, unittest.equals('foo')); | 4661 unittest.expect(o.id, unittest.equals('foo')); |
| 4660 unittest.expect(o.kind, unittest.equals('foo')); | 4662 unittest.expect(o.kind, unittest.equals('foo')); |
| 4661 unittest.expect(o.name, unittest.equals('foo')); | 4663 unittest.expect(o.name, unittest.equals('foo')); |
| 4662 checkUnnamed815(o.quotas); | 4664 checkUnnamed2518(o.quotas); |
| 4663 unittest.expect(o.selfLink, unittest.equals('foo')); | 4665 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4664 checkUsageExportLocation(o.usageExportLocation); | 4666 checkUsageExportLocation(o.usageExportLocation); |
| 4665 } | 4667 } |
| 4666 buildCounterProject--; | 4668 buildCounterProject--; |
| 4667 } | 4669 } |
| 4668 | 4670 |
| 4669 core.int buildCounterQuota = 0; | 4671 core.int buildCounterQuota = 0; |
| 4670 buildQuota() { | 4672 buildQuota() { |
| 4671 var o = new api.Quota(); | 4673 var o = new api.Quota(); |
| 4672 buildCounterQuota++; | 4674 buildCounterQuota++; |
| 4673 if (buildCounterQuota < 3) { | 4675 if (buildCounterQuota < 3) { |
| 4674 o.limit = 42.0; | 4676 o.limit = 42.0; |
| 4675 o.metric = "foo"; | 4677 o.metric = "foo"; |
| 4676 o.usage = 42.0; | 4678 o.usage = 42.0; |
| 4677 } | 4679 } |
| 4678 buildCounterQuota--; | 4680 buildCounterQuota--; |
| 4679 return o; | 4681 return o; |
| 4680 } | 4682 } |
| 4681 | 4683 |
| 4682 checkQuota(api.Quota o) { | 4684 checkQuota(api.Quota o) { |
| 4683 buildCounterQuota++; | 4685 buildCounterQuota++; |
| 4684 if (buildCounterQuota < 3) { | 4686 if (buildCounterQuota < 3) { |
| 4685 unittest.expect(o.limit, unittest.equals(42.0)); | 4687 unittest.expect(o.limit, unittest.equals(42.0)); |
| 4686 unittest.expect(o.metric, unittest.equals('foo')); | 4688 unittest.expect(o.metric, unittest.equals('foo')); |
| 4687 unittest.expect(o.usage, unittest.equals(42.0)); | 4689 unittest.expect(o.usage, unittest.equals(42.0)); |
| 4688 } | 4690 } |
| 4689 buildCounterQuota--; | 4691 buildCounterQuota--; |
| 4690 } | 4692 } |
| 4691 | 4693 |
| 4692 buildUnnamed816() { | 4694 buildUnnamed2519() { |
| 4693 var o = new core.List<api.Quota>(); | 4695 var o = new core.List<api.Quota>(); |
| 4694 o.add(buildQuota()); | 4696 o.add(buildQuota()); |
| 4695 o.add(buildQuota()); | 4697 o.add(buildQuota()); |
| 4696 return o; | 4698 return o; |
| 4697 } | 4699 } |
| 4698 | 4700 |
| 4699 checkUnnamed816(core.List<api.Quota> o) { | 4701 checkUnnamed2519(core.List<api.Quota> o) { |
| 4700 unittest.expect(o, unittest.hasLength(2)); | 4702 unittest.expect(o, unittest.hasLength(2)); |
| 4701 checkQuota(o[0]); | 4703 checkQuota(o[0]); |
| 4702 checkQuota(o[1]); | 4704 checkQuota(o[1]); |
| 4703 } | 4705 } |
| 4704 | 4706 |
| 4705 buildUnnamed817() { | 4707 buildUnnamed2520() { |
| 4706 var o = new core.List<core.String>(); | 4708 var o = new core.List<core.String>(); |
| 4707 o.add("foo"); | 4709 o.add("foo"); |
| 4708 o.add("foo"); | 4710 o.add("foo"); |
| 4709 return o; | 4711 return o; |
| 4710 } | 4712 } |
| 4711 | 4713 |
| 4712 checkUnnamed817(core.List<core.String> o) { | 4714 checkUnnamed2520(core.List<core.String> o) { |
| 4713 unittest.expect(o, unittest.hasLength(2)); | 4715 unittest.expect(o, unittest.hasLength(2)); |
| 4714 unittest.expect(o[0], unittest.equals('foo')); | 4716 unittest.expect(o[0], unittest.equals('foo')); |
| 4715 unittest.expect(o[1], unittest.equals('foo')); | 4717 unittest.expect(o[1], unittest.equals('foo')); |
| 4716 } | 4718 } |
| 4717 | 4719 |
| 4718 core.int buildCounterRegion = 0; | 4720 core.int buildCounterRegion = 0; |
| 4719 buildRegion() { | 4721 buildRegion() { |
| 4720 var o = new api.Region(); | 4722 var o = new api.Region(); |
| 4721 buildCounterRegion++; | 4723 buildCounterRegion++; |
| 4722 if (buildCounterRegion < 3) { | 4724 if (buildCounterRegion < 3) { |
| 4723 o.creationTimestamp = "foo"; | 4725 o.creationTimestamp = "foo"; |
| 4724 o.deprecated = buildDeprecationStatus(); | 4726 o.deprecated = buildDeprecationStatus(); |
| 4725 o.description = "foo"; | 4727 o.description = "foo"; |
| 4726 o.id = "foo"; | 4728 o.id = "foo"; |
| 4727 o.kind = "foo"; | 4729 o.kind = "foo"; |
| 4728 o.name = "foo"; | 4730 o.name = "foo"; |
| 4729 o.quotas = buildUnnamed816(); | 4731 o.quotas = buildUnnamed2519(); |
| 4730 o.selfLink = "foo"; | 4732 o.selfLink = "foo"; |
| 4731 o.status = "foo"; | 4733 o.status = "foo"; |
| 4732 o.zones = buildUnnamed817(); | 4734 o.zones = buildUnnamed2520(); |
| 4733 } | 4735 } |
| 4734 buildCounterRegion--; | 4736 buildCounterRegion--; |
| 4735 return o; | 4737 return o; |
| 4736 } | 4738 } |
| 4737 | 4739 |
| 4738 checkRegion(api.Region o) { | 4740 checkRegion(api.Region o) { |
| 4739 buildCounterRegion++; | 4741 buildCounterRegion++; |
| 4740 if (buildCounterRegion < 3) { | 4742 if (buildCounterRegion < 3) { |
| 4741 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4743 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4742 checkDeprecationStatus(o.deprecated); | 4744 checkDeprecationStatus(o.deprecated); |
| 4743 unittest.expect(o.description, unittest.equals('foo')); | 4745 unittest.expect(o.description, unittest.equals('foo')); |
| 4744 unittest.expect(o.id, unittest.equals('foo')); | 4746 unittest.expect(o.id, unittest.equals('foo')); |
| 4745 unittest.expect(o.kind, unittest.equals('foo')); | 4747 unittest.expect(o.kind, unittest.equals('foo')); |
| 4746 unittest.expect(o.name, unittest.equals('foo')); | 4748 unittest.expect(o.name, unittest.equals('foo')); |
| 4747 checkUnnamed816(o.quotas); | 4749 checkUnnamed2519(o.quotas); |
| 4748 unittest.expect(o.selfLink, unittest.equals('foo')); | 4750 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4749 unittest.expect(o.status, unittest.equals('foo')); | 4751 unittest.expect(o.status, unittest.equals('foo')); |
| 4750 checkUnnamed817(o.zones); | 4752 checkUnnamed2520(o.zones); |
| 4751 } | 4753 } |
| 4752 buildCounterRegion--; | 4754 buildCounterRegion--; |
| 4753 } | 4755 } |
| 4754 | 4756 |
| 4755 buildUnnamed818() { | 4757 buildUnnamed2521() { |
| 4756 var o = new core.List<api.Region>(); | 4758 var o = new core.List<api.Region>(); |
| 4757 o.add(buildRegion()); | 4759 o.add(buildRegion()); |
| 4758 o.add(buildRegion()); | 4760 o.add(buildRegion()); |
| 4759 return o; | 4761 return o; |
| 4760 } | 4762 } |
| 4761 | 4763 |
| 4762 checkUnnamed818(core.List<api.Region> o) { | 4764 checkUnnamed2521(core.List<api.Region> o) { |
| 4763 unittest.expect(o, unittest.hasLength(2)); | 4765 unittest.expect(o, unittest.hasLength(2)); |
| 4764 checkRegion(o[0]); | 4766 checkRegion(o[0]); |
| 4765 checkRegion(o[1]); | 4767 checkRegion(o[1]); |
| 4766 } | 4768 } |
| 4767 | 4769 |
| 4768 core.int buildCounterRegionList = 0; | 4770 core.int buildCounterRegionList = 0; |
| 4769 buildRegionList() { | 4771 buildRegionList() { |
| 4770 var o = new api.RegionList(); | 4772 var o = new api.RegionList(); |
| 4771 buildCounterRegionList++; | 4773 buildCounterRegionList++; |
| 4772 if (buildCounterRegionList < 3) { | 4774 if (buildCounterRegionList < 3) { |
| 4773 o.id = "foo"; | 4775 o.id = "foo"; |
| 4774 o.items = buildUnnamed818(); | 4776 o.items = buildUnnamed2521(); |
| 4775 o.kind = "foo"; | 4777 o.kind = "foo"; |
| 4776 o.nextPageToken = "foo"; | 4778 o.nextPageToken = "foo"; |
| 4777 o.selfLink = "foo"; | 4779 o.selfLink = "foo"; |
| 4778 } | 4780 } |
| 4779 buildCounterRegionList--; | 4781 buildCounterRegionList--; |
| 4780 return o; | 4782 return o; |
| 4781 } | 4783 } |
| 4782 | 4784 |
| 4783 checkRegionList(api.RegionList o) { | 4785 checkRegionList(api.RegionList o) { |
| 4784 buildCounterRegionList++; | 4786 buildCounterRegionList++; |
| 4785 if (buildCounterRegionList < 3) { | 4787 if (buildCounterRegionList < 3) { |
| 4786 unittest.expect(o.id, unittest.equals('foo')); | 4788 unittest.expect(o.id, unittest.equals('foo')); |
| 4787 checkUnnamed818(o.items); | 4789 checkUnnamed2521(o.items); |
| 4788 unittest.expect(o.kind, unittest.equals('foo')); | 4790 unittest.expect(o.kind, unittest.equals('foo')); |
| 4789 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4791 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4790 unittest.expect(o.selfLink, unittest.equals('foo')); | 4792 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4791 } | 4793 } |
| 4792 buildCounterRegionList--; | 4794 buildCounterRegionList--; |
| 4793 } | 4795 } |
| 4794 | 4796 |
| 4795 core.int buildCounterResourceGroupReference = 0; | 4797 core.int buildCounterResourceGroupReference = 0; |
| 4796 buildResourceGroupReference() { | 4798 buildResourceGroupReference() { |
| 4797 var o = new api.ResourceGroupReference(); | 4799 var o = new api.ResourceGroupReference(); |
| 4798 buildCounterResourceGroupReference++; | 4800 buildCounterResourceGroupReference++; |
| 4799 if (buildCounterResourceGroupReference < 3) { | 4801 if (buildCounterResourceGroupReference < 3) { |
| 4800 o.group = "foo"; | 4802 o.group = "foo"; |
| 4801 } | 4803 } |
| 4802 buildCounterResourceGroupReference--; | 4804 buildCounterResourceGroupReference--; |
| 4803 return o; | 4805 return o; |
| 4804 } | 4806 } |
| 4805 | 4807 |
| 4806 checkResourceGroupReference(api.ResourceGroupReference o) { | 4808 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 4807 buildCounterResourceGroupReference++; | 4809 buildCounterResourceGroupReference++; |
| 4808 if (buildCounterResourceGroupReference < 3) { | 4810 if (buildCounterResourceGroupReference < 3) { |
| 4809 unittest.expect(o.group, unittest.equals('foo')); | 4811 unittest.expect(o.group, unittest.equals('foo')); |
| 4810 } | 4812 } |
| 4811 buildCounterResourceGroupReference--; | 4813 buildCounterResourceGroupReference--; |
| 4812 } | 4814 } |
| 4813 | 4815 |
| 4814 buildUnnamed819() { | 4816 buildUnnamed2522() { |
| 4815 var o = new core.List<core.String>(); | 4817 var o = new core.List<core.String>(); |
| 4816 o.add("foo"); | 4818 o.add("foo"); |
| 4817 o.add("foo"); | 4819 o.add("foo"); |
| 4818 return o; | 4820 return o; |
| 4819 } | 4821 } |
| 4820 | 4822 |
| 4821 checkUnnamed819(core.List<core.String> o) { | 4823 checkUnnamed2522(core.List<core.String> o) { |
| 4822 unittest.expect(o, unittest.hasLength(2)); | 4824 unittest.expect(o, unittest.hasLength(2)); |
| 4823 unittest.expect(o[0], unittest.equals('foo')); | 4825 unittest.expect(o[0], unittest.equals('foo')); |
| 4824 unittest.expect(o[1], unittest.equals('foo')); | 4826 unittest.expect(o[1], unittest.equals('foo')); |
| 4825 } | 4827 } |
| 4826 | 4828 |
| 4827 core.int buildCounterRouteWarningsData = 0; | 4829 core.int buildCounterRouteWarningsData = 0; |
| 4828 buildRouteWarningsData() { | 4830 buildRouteWarningsData() { |
| 4829 var o = new api.RouteWarningsData(); | 4831 var o = new api.RouteWarningsData(); |
| 4830 buildCounterRouteWarningsData++; | 4832 buildCounterRouteWarningsData++; |
| 4831 if (buildCounterRouteWarningsData < 3) { | 4833 if (buildCounterRouteWarningsData < 3) { |
| 4832 o.key = "foo"; | 4834 o.key = "foo"; |
| 4833 o.value = "foo"; | 4835 o.value = "foo"; |
| 4834 } | 4836 } |
| 4835 buildCounterRouteWarningsData--; | 4837 buildCounterRouteWarningsData--; |
| 4836 return o; | 4838 return o; |
| 4837 } | 4839 } |
| 4838 | 4840 |
| 4839 checkRouteWarningsData(api.RouteWarningsData o) { | 4841 checkRouteWarningsData(api.RouteWarningsData o) { |
| 4840 buildCounterRouteWarningsData++; | 4842 buildCounterRouteWarningsData++; |
| 4841 if (buildCounterRouteWarningsData < 3) { | 4843 if (buildCounterRouteWarningsData < 3) { |
| 4842 unittest.expect(o.key, unittest.equals('foo')); | 4844 unittest.expect(o.key, unittest.equals('foo')); |
| 4843 unittest.expect(o.value, unittest.equals('foo')); | 4845 unittest.expect(o.value, unittest.equals('foo')); |
| 4844 } | 4846 } |
| 4845 buildCounterRouteWarningsData--; | 4847 buildCounterRouteWarningsData--; |
| 4846 } | 4848 } |
| 4847 | 4849 |
| 4848 buildUnnamed820() { | 4850 buildUnnamed2523() { |
| 4849 var o = new core.List<api.RouteWarningsData>(); | 4851 var o = new core.List<api.RouteWarningsData>(); |
| 4850 o.add(buildRouteWarningsData()); | 4852 o.add(buildRouteWarningsData()); |
| 4851 o.add(buildRouteWarningsData()); | 4853 o.add(buildRouteWarningsData()); |
| 4852 return o; | 4854 return o; |
| 4853 } | 4855 } |
| 4854 | 4856 |
| 4855 checkUnnamed820(core.List<api.RouteWarningsData> o) { | 4857 checkUnnamed2523(core.List<api.RouteWarningsData> o) { |
| 4856 unittest.expect(o, unittest.hasLength(2)); | 4858 unittest.expect(o, unittest.hasLength(2)); |
| 4857 checkRouteWarningsData(o[0]); | 4859 checkRouteWarningsData(o[0]); |
| 4858 checkRouteWarningsData(o[1]); | 4860 checkRouteWarningsData(o[1]); |
| 4859 } | 4861 } |
| 4860 | 4862 |
| 4861 core.int buildCounterRouteWarnings = 0; | 4863 core.int buildCounterRouteWarnings = 0; |
| 4862 buildRouteWarnings() { | 4864 buildRouteWarnings() { |
| 4863 var o = new api.RouteWarnings(); | 4865 var o = new api.RouteWarnings(); |
| 4864 buildCounterRouteWarnings++; | 4866 buildCounterRouteWarnings++; |
| 4865 if (buildCounterRouteWarnings < 3) { | 4867 if (buildCounterRouteWarnings < 3) { |
| 4866 o.code = "foo"; | 4868 o.code = "foo"; |
| 4867 o.data = buildUnnamed820(); | 4869 o.data = buildUnnamed2523(); |
| 4868 o.message = "foo"; | 4870 o.message = "foo"; |
| 4869 } | 4871 } |
| 4870 buildCounterRouteWarnings--; | 4872 buildCounterRouteWarnings--; |
| 4871 return o; | 4873 return o; |
| 4872 } | 4874 } |
| 4873 | 4875 |
| 4874 checkRouteWarnings(api.RouteWarnings o) { | 4876 checkRouteWarnings(api.RouteWarnings o) { |
| 4875 buildCounterRouteWarnings++; | 4877 buildCounterRouteWarnings++; |
| 4876 if (buildCounterRouteWarnings < 3) { | 4878 if (buildCounterRouteWarnings < 3) { |
| 4877 unittest.expect(o.code, unittest.equals('foo')); | 4879 unittest.expect(o.code, unittest.equals('foo')); |
| 4878 checkUnnamed820(o.data); | 4880 checkUnnamed2523(o.data); |
| 4879 unittest.expect(o.message, unittest.equals('foo')); | 4881 unittest.expect(o.message, unittest.equals('foo')); |
| 4880 } | 4882 } |
| 4881 buildCounterRouteWarnings--; | 4883 buildCounterRouteWarnings--; |
| 4882 } | 4884 } |
| 4883 | 4885 |
| 4884 buildUnnamed821() { | 4886 buildUnnamed2524() { |
| 4885 var o = new core.List<api.RouteWarnings>(); | 4887 var o = new core.List<api.RouteWarnings>(); |
| 4886 o.add(buildRouteWarnings()); | 4888 o.add(buildRouteWarnings()); |
| 4887 o.add(buildRouteWarnings()); | 4889 o.add(buildRouteWarnings()); |
| 4888 return o; | 4890 return o; |
| 4889 } | 4891 } |
| 4890 | 4892 |
| 4891 checkUnnamed821(core.List<api.RouteWarnings> o) { | 4893 checkUnnamed2524(core.List<api.RouteWarnings> o) { |
| 4892 unittest.expect(o, unittest.hasLength(2)); | 4894 unittest.expect(o, unittest.hasLength(2)); |
| 4893 checkRouteWarnings(o[0]); | 4895 checkRouteWarnings(o[0]); |
| 4894 checkRouteWarnings(o[1]); | 4896 checkRouteWarnings(o[1]); |
| 4895 } | 4897 } |
| 4896 | 4898 |
| 4897 core.int buildCounterRoute = 0; | 4899 core.int buildCounterRoute = 0; |
| 4898 buildRoute() { | 4900 buildRoute() { |
| 4899 var o = new api.Route(); | 4901 var o = new api.Route(); |
| 4900 buildCounterRoute++; | 4902 buildCounterRoute++; |
| 4901 if (buildCounterRoute < 3) { | 4903 if (buildCounterRoute < 3) { |
| 4902 o.creationTimestamp = "foo"; | 4904 o.creationTimestamp = "foo"; |
| 4903 o.description = "foo"; | 4905 o.description = "foo"; |
| 4904 o.destRange = "foo"; | 4906 o.destRange = "foo"; |
| 4905 o.id = "foo"; | 4907 o.id = "foo"; |
| 4906 o.kind = "foo"; | 4908 o.kind = "foo"; |
| 4907 o.name = "foo"; | 4909 o.name = "foo"; |
| 4908 o.network = "foo"; | 4910 o.network = "foo"; |
| 4909 o.nextHopGateway = "foo"; | 4911 o.nextHopGateway = "foo"; |
| 4910 o.nextHopInstance = "foo"; | 4912 o.nextHopInstance = "foo"; |
| 4911 o.nextHopIp = "foo"; | 4913 o.nextHopIp = "foo"; |
| 4912 o.nextHopNetwork = "foo"; | 4914 o.nextHopNetwork = "foo"; |
| 4913 o.nextHopVpnTunnel = "foo"; | 4915 o.nextHopVpnTunnel = "foo"; |
| 4914 o.priority = 42; | 4916 o.priority = 42; |
| 4915 o.selfLink = "foo"; | 4917 o.selfLink = "foo"; |
| 4916 o.tags = buildUnnamed819(); | 4918 o.tags = buildUnnamed2522(); |
| 4917 o.warnings = buildUnnamed821(); | 4919 o.warnings = buildUnnamed2524(); |
| 4918 } | 4920 } |
| 4919 buildCounterRoute--; | 4921 buildCounterRoute--; |
| 4920 return o; | 4922 return o; |
| 4921 } | 4923 } |
| 4922 | 4924 |
| 4923 checkRoute(api.Route o) { | 4925 checkRoute(api.Route o) { |
| 4924 buildCounterRoute++; | 4926 buildCounterRoute++; |
| 4925 if (buildCounterRoute < 3) { | 4927 if (buildCounterRoute < 3) { |
| 4926 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4928 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4927 unittest.expect(o.description, unittest.equals('foo')); | 4929 unittest.expect(o.description, unittest.equals('foo')); |
| 4928 unittest.expect(o.destRange, unittest.equals('foo')); | 4930 unittest.expect(o.destRange, unittest.equals('foo')); |
| 4929 unittest.expect(o.id, unittest.equals('foo')); | 4931 unittest.expect(o.id, unittest.equals('foo')); |
| 4930 unittest.expect(o.kind, unittest.equals('foo')); | 4932 unittest.expect(o.kind, unittest.equals('foo')); |
| 4931 unittest.expect(o.name, unittest.equals('foo')); | 4933 unittest.expect(o.name, unittest.equals('foo')); |
| 4932 unittest.expect(o.network, unittest.equals('foo')); | 4934 unittest.expect(o.network, unittest.equals('foo')); |
| 4933 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 4935 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 4934 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 4936 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 4935 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 4937 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 4936 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 4938 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 4937 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 4939 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 4938 unittest.expect(o.priority, unittest.equals(42)); | 4940 unittest.expect(o.priority, unittest.equals(42)); |
| 4939 unittest.expect(o.selfLink, unittest.equals('foo')); | 4941 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4940 checkUnnamed819(o.tags); | 4942 checkUnnamed2522(o.tags); |
| 4941 checkUnnamed821(o.warnings); | 4943 checkUnnamed2524(o.warnings); |
| 4942 } | 4944 } |
| 4943 buildCounterRoute--; | 4945 buildCounterRoute--; |
| 4944 } | 4946 } |
| 4945 | 4947 |
| 4946 buildUnnamed822() { | 4948 buildUnnamed2525() { |
| 4947 var o = new core.List<api.Route>(); | 4949 var o = new core.List<api.Route>(); |
| 4948 o.add(buildRoute()); | 4950 o.add(buildRoute()); |
| 4949 o.add(buildRoute()); | 4951 o.add(buildRoute()); |
| 4950 return o; | 4952 return o; |
| 4951 } | 4953 } |
| 4952 | 4954 |
| 4953 checkUnnamed822(core.List<api.Route> o) { | 4955 checkUnnamed2525(core.List<api.Route> o) { |
| 4954 unittest.expect(o, unittest.hasLength(2)); | 4956 unittest.expect(o, unittest.hasLength(2)); |
| 4955 checkRoute(o[0]); | 4957 checkRoute(o[0]); |
| 4956 checkRoute(o[1]); | 4958 checkRoute(o[1]); |
| 4957 } | 4959 } |
| 4958 | 4960 |
| 4959 core.int buildCounterRouteList = 0; | 4961 core.int buildCounterRouteList = 0; |
| 4960 buildRouteList() { | 4962 buildRouteList() { |
| 4961 var o = new api.RouteList(); | 4963 var o = new api.RouteList(); |
| 4962 buildCounterRouteList++; | 4964 buildCounterRouteList++; |
| 4963 if (buildCounterRouteList < 3) { | 4965 if (buildCounterRouteList < 3) { |
| 4964 o.id = "foo"; | 4966 o.id = "foo"; |
| 4965 o.items = buildUnnamed822(); | 4967 o.items = buildUnnamed2525(); |
| 4966 o.kind = "foo"; | 4968 o.kind = "foo"; |
| 4967 o.nextPageToken = "foo"; | 4969 o.nextPageToken = "foo"; |
| 4968 o.selfLink = "foo"; | 4970 o.selfLink = "foo"; |
| 4969 } | 4971 } |
| 4970 buildCounterRouteList--; | 4972 buildCounterRouteList--; |
| 4971 return o; | 4973 return o; |
| 4972 } | 4974 } |
| 4973 | 4975 |
| 4974 checkRouteList(api.RouteList o) { | 4976 checkRouteList(api.RouteList o) { |
| 4975 buildCounterRouteList++; | 4977 buildCounterRouteList++; |
| 4976 if (buildCounterRouteList < 3) { | 4978 if (buildCounterRouteList < 3) { |
| 4977 unittest.expect(o.id, unittest.equals('foo')); | 4979 unittest.expect(o.id, unittest.equals('foo')); |
| 4978 checkUnnamed822(o.items); | 4980 checkUnnamed2525(o.items); |
| 4979 unittest.expect(o.kind, unittest.equals('foo')); | 4981 unittest.expect(o.kind, unittest.equals('foo')); |
| 4980 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4982 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4981 unittest.expect(o.selfLink, unittest.equals('foo')); | 4983 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4982 } | 4984 } |
| 4983 buildCounterRouteList--; | 4985 buildCounterRouteList--; |
| 4984 } | 4986 } |
| 4985 | 4987 |
| 4986 buildUnnamed823() { | 4988 buildUnnamed2526() { |
| 4987 var o = new core.List<api.RouterBgpPeer>(); | 4989 var o = new core.List<api.RouterBgpPeer>(); |
| 4988 o.add(buildRouterBgpPeer()); | 4990 o.add(buildRouterBgpPeer()); |
| 4989 o.add(buildRouterBgpPeer()); | 4991 o.add(buildRouterBgpPeer()); |
| 4990 return o; | 4992 return o; |
| 4991 } | 4993 } |
| 4992 | 4994 |
| 4993 checkUnnamed823(core.List<api.RouterBgpPeer> o) { | 4995 checkUnnamed2526(core.List<api.RouterBgpPeer> o) { |
| 4994 unittest.expect(o, unittest.hasLength(2)); | 4996 unittest.expect(o, unittest.hasLength(2)); |
| 4995 checkRouterBgpPeer(o[0]); | 4997 checkRouterBgpPeer(o[0]); |
| 4996 checkRouterBgpPeer(o[1]); | 4998 checkRouterBgpPeer(o[1]); |
| 4997 } | 4999 } |
| 4998 | 5000 |
| 4999 buildUnnamed824() { | 5001 buildUnnamed2527() { |
| 5000 var o = new core.List<api.RouterInterface>(); | 5002 var o = new core.List<api.RouterInterface>(); |
| 5001 o.add(buildRouterInterface()); | 5003 o.add(buildRouterInterface()); |
| 5002 o.add(buildRouterInterface()); | 5004 o.add(buildRouterInterface()); |
| 5003 return o; | 5005 return o; |
| 5004 } | 5006 } |
| 5005 | 5007 |
| 5006 checkUnnamed824(core.List<api.RouterInterface> o) { | 5008 checkUnnamed2527(core.List<api.RouterInterface> o) { |
| 5007 unittest.expect(o, unittest.hasLength(2)); | 5009 unittest.expect(o, unittest.hasLength(2)); |
| 5008 checkRouterInterface(o[0]); | 5010 checkRouterInterface(o[0]); |
| 5009 checkRouterInterface(o[1]); | 5011 checkRouterInterface(o[1]); |
| 5010 } | 5012 } |
| 5011 | 5013 |
| 5012 core.int buildCounterRouter = 0; | 5014 core.int buildCounterRouter = 0; |
| 5013 buildRouter() { | 5015 buildRouter() { |
| 5014 var o = new api.Router(); | 5016 var o = new api.Router(); |
| 5015 buildCounterRouter++; | 5017 buildCounterRouter++; |
| 5016 if (buildCounterRouter < 3) { | 5018 if (buildCounterRouter < 3) { |
| 5017 o.bgp = buildRouterBgp(); | 5019 o.bgp = buildRouterBgp(); |
| 5018 o.bgpPeers = buildUnnamed823(); | 5020 o.bgpPeers = buildUnnamed2526(); |
| 5019 o.creationTimestamp = "foo"; | 5021 o.creationTimestamp = "foo"; |
| 5020 o.description = "foo"; | 5022 o.description = "foo"; |
| 5021 o.id = "foo"; | 5023 o.id = "foo"; |
| 5022 o.interfaces = buildUnnamed824(); | 5024 o.interfaces = buildUnnamed2527(); |
| 5023 o.kind = "foo"; | 5025 o.kind = "foo"; |
| 5024 o.name = "foo"; | 5026 o.name = "foo"; |
| 5025 o.network = "foo"; | 5027 o.network = "foo"; |
| 5026 o.region = "foo"; | 5028 o.region = "foo"; |
| 5027 o.selfLink = "foo"; | 5029 o.selfLink = "foo"; |
| 5028 } | 5030 } |
| 5029 buildCounterRouter--; | 5031 buildCounterRouter--; |
| 5030 return o; | 5032 return o; |
| 5031 } | 5033 } |
| 5032 | 5034 |
| 5033 checkRouter(api.Router o) { | 5035 checkRouter(api.Router o) { |
| 5034 buildCounterRouter++; | 5036 buildCounterRouter++; |
| 5035 if (buildCounterRouter < 3) { | 5037 if (buildCounterRouter < 3) { |
| 5036 checkRouterBgp(o.bgp); | 5038 checkRouterBgp(o.bgp); |
| 5037 checkUnnamed823(o.bgpPeers); | 5039 checkUnnamed2526(o.bgpPeers); |
| 5038 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5040 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5039 unittest.expect(o.description, unittest.equals('foo')); | 5041 unittest.expect(o.description, unittest.equals('foo')); |
| 5040 unittest.expect(o.id, unittest.equals('foo')); | 5042 unittest.expect(o.id, unittest.equals('foo')); |
| 5041 checkUnnamed824(o.interfaces); | 5043 checkUnnamed2527(o.interfaces); |
| 5042 unittest.expect(o.kind, unittest.equals('foo')); | 5044 unittest.expect(o.kind, unittest.equals('foo')); |
| 5043 unittest.expect(o.name, unittest.equals('foo')); | 5045 unittest.expect(o.name, unittest.equals('foo')); |
| 5044 unittest.expect(o.network, unittest.equals('foo')); | 5046 unittest.expect(o.network, unittest.equals('foo')); |
| 5045 unittest.expect(o.region, unittest.equals('foo')); | 5047 unittest.expect(o.region, unittest.equals('foo')); |
| 5046 unittest.expect(o.selfLink, unittest.equals('foo')); | 5048 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5047 } | 5049 } |
| 5048 buildCounterRouter--; | 5050 buildCounterRouter--; |
| 5049 } | 5051 } |
| 5050 | 5052 |
| 5051 buildUnnamed825() { | 5053 buildUnnamed2528() { |
| 5052 var o = new core.Map<core.String, api.RoutersScopedList>(); | 5054 var o = new core.Map<core.String, api.RoutersScopedList>(); |
| 5053 o["x"] = buildRoutersScopedList(); | 5055 o["x"] = buildRoutersScopedList(); |
| 5054 o["y"] = buildRoutersScopedList(); | 5056 o["y"] = buildRoutersScopedList(); |
| 5055 return o; | 5057 return o; |
| 5056 } | 5058 } |
| 5057 | 5059 |
| 5058 checkUnnamed825(core.Map<core.String, api.RoutersScopedList> o) { | 5060 checkUnnamed2528(core.Map<core.String, api.RoutersScopedList> o) { |
| 5059 unittest.expect(o, unittest.hasLength(2)); | 5061 unittest.expect(o, unittest.hasLength(2)); |
| 5060 checkRoutersScopedList(o["x"]); | 5062 checkRoutersScopedList(o["x"]); |
| 5061 checkRoutersScopedList(o["y"]); | 5063 checkRoutersScopedList(o["y"]); |
| 5062 } | 5064 } |
| 5063 | 5065 |
| 5064 core.int buildCounterRouterAggregatedList = 0; | 5066 core.int buildCounterRouterAggregatedList = 0; |
| 5065 buildRouterAggregatedList() { | 5067 buildRouterAggregatedList() { |
| 5066 var o = new api.RouterAggregatedList(); | 5068 var o = new api.RouterAggregatedList(); |
| 5067 buildCounterRouterAggregatedList++; | 5069 buildCounterRouterAggregatedList++; |
| 5068 if (buildCounterRouterAggregatedList < 3) { | 5070 if (buildCounterRouterAggregatedList < 3) { |
| 5069 o.id = "foo"; | 5071 o.id = "foo"; |
| 5070 o.items = buildUnnamed825(); | 5072 o.items = buildUnnamed2528(); |
| 5071 o.kind = "foo"; | 5073 o.kind = "foo"; |
| 5072 o.nextPageToken = "foo"; | 5074 o.nextPageToken = "foo"; |
| 5073 o.selfLink = "foo"; | 5075 o.selfLink = "foo"; |
| 5074 } | 5076 } |
| 5075 buildCounterRouterAggregatedList--; | 5077 buildCounterRouterAggregatedList--; |
| 5076 return o; | 5078 return o; |
| 5077 } | 5079 } |
| 5078 | 5080 |
| 5079 checkRouterAggregatedList(api.RouterAggregatedList o) { | 5081 checkRouterAggregatedList(api.RouterAggregatedList o) { |
| 5080 buildCounterRouterAggregatedList++; | 5082 buildCounterRouterAggregatedList++; |
| 5081 if (buildCounterRouterAggregatedList < 3) { | 5083 if (buildCounterRouterAggregatedList < 3) { |
| 5082 unittest.expect(o.id, unittest.equals('foo')); | 5084 unittest.expect(o.id, unittest.equals('foo')); |
| 5083 checkUnnamed825(o.items); | 5085 checkUnnamed2528(o.items); |
| 5084 unittest.expect(o.kind, unittest.equals('foo')); | 5086 unittest.expect(o.kind, unittest.equals('foo')); |
| 5085 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5087 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5086 unittest.expect(o.selfLink, unittest.equals('foo')); | 5088 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5087 } | 5089 } |
| 5088 buildCounterRouterAggregatedList--; | 5090 buildCounterRouterAggregatedList--; |
| 5089 } | 5091 } |
| 5090 | 5092 |
| 5091 core.int buildCounterRouterBgp = 0; | 5093 core.int buildCounterRouterBgp = 0; |
| 5092 buildRouterBgp() { | 5094 buildRouterBgp() { |
| 5093 var o = new api.RouterBgp(); | 5095 var o = new api.RouterBgp(); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5152 checkRouterInterface(api.RouterInterface o) { | 5154 checkRouterInterface(api.RouterInterface o) { |
| 5153 buildCounterRouterInterface++; | 5155 buildCounterRouterInterface++; |
| 5154 if (buildCounterRouterInterface < 3) { | 5156 if (buildCounterRouterInterface < 3) { |
| 5155 unittest.expect(o.ipRange, unittest.equals('foo')); | 5157 unittest.expect(o.ipRange, unittest.equals('foo')); |
| 5156 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 5158 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 5157 unittest.expect(o.name, unittest.equals('foo')); | 5159 unittest.expect(o.name, unittest.equals('foo')); |
| 5158 } | 5160 } |
| 5159 buildCounterRouterInterface--; | 5161 buildCounterRouterInterface--; |
| 5160 } | 5162 } |
| 5161 | 5163 |
| 5162 buildUnnamed826() { | 5164 buildUnnamed2529() { |
| 5163 var o = new core.List<api.Router>(); | 5165 var o = new core.List<api.Router>(); |
| 5164 o.add(buildRouter()); | 5166 o.add(buildRouter()); |
| 5165 o.add(buildRouter()); | 5167 o.add(buildRouter()); |
| 5166 return o; | 5168 return o; |
| 5167 } | 5169 } |
| 5168 | 5170 |
| 5169 checkUnnamed826(core.List<api.Router> o) { | 5171 checkUnnamed2529(core.List<api.Router> o) { |
| 5170 unittest.expect(o, unittest.hasLength(2)); | 5172 unittest.expect(o, unittest.hasLength(2)); |
| 5171 checkRouter(o[0]); | 5173 checkRouter(o[0]); |
| 5172 checkRouter(o[1]); | 5174 checkRouter(o[1]); |
| 5173 } | 5175 } |
| 5174 | 5176 |
| 5175 core.int buildCounterRouterList = 0; | 5177 core.int buildCounterRouterList = 0; |
| 5176 buildRouterList() { | 5178 buildRouterList() { |
| 5177 var o = new api.RouterList(); | 5179 var o = new api.RouterList(); |
| 5178 buildCounterRouterList++; | 5180 buildCounterRouterList++; |
| 5179 if (buildCounterRouterList < 3) { | 5181 if (buildCounterRouterList < 3) { |
| 5180 o.id = "foo"; | 5182 o.id = "foo"; |
| 5181 o.items = buildUnnamed826(); | 5183 o.items = buildUnnamed2529(); |
| 5182 o.kind = "foo"; | 5184 o.kind = "foo"; |
| 5183 o.nextPageToken = "foo"; | 5185 o.nextPageToken = "foo"; |
| 5184 o.selfLink = "foo"; | 5186 o.selfLink = "foo"; |
| 5185 } | 5187 } |
| 5186 buildCounterRouterList--; | 5188 buildCounterRouterList--; |
| 5187 return o; | 5189 return o; |
| 5188 } | 5190 } |
| 5189 | 5191 |
| 5190 checkRouterList(api.RouterList o) { | 5192 checkRouterList(api.RouterList o) { |
| 5191 buildCounterRouterList++; | 5193 buildCounterRouterList++; |
| 5192 if (buildCounterRouterList < 3) { | 5194 if (buildCounterRouterList < 3) { |
| 5193 unittest.expect(o.id, unittest.equals('foo')); | 5195 unittest.expect(o.id, unittest.equals('foo')); |
| 5194 checkUnnamed826(o.items); | 5196 checkUnnamed2529(o.items); |
| 5195 unittest.expect(o.kind, unittest.equals('foo')); | 5197 unittest.expect(o.kind, unittest.equals('foo')); |
| 5196 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5198 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5197 unittest.expect(o.selfLink, unittest.equals('foo')); | 5199 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5198 } | 5200 } |
| 5199 buildCounterRouterList--; | 5201 buildCounterRouterList--; |
| 5200 } | 5202 } |
| 5201 | 5203 |
| 5202 buildUnnamed827() { | 5204 buildUnnamed2530() { |
| 5203 var o = new core.List<api.Route>(); | 5205 var o = new core.List<api.Route>(); |
| 5204 o.add(buildRoute()); | 5206 o.add(buildRoute()); |
| 5205 o.add(buildRoute()); | 5207 o.add(buildRoute()); |
| 5206 return o; | 5208 return o; |
| 5207 } | 5209 } |
| 5208 | 5210 |
| 5209 checkUnnamed827(core.List<api.Route> o) { | 5211 checkUnnamed2530(core.List<api.Route> o) { |
| 5210 unittest.expect(o, unittest.hasLength(2)); | 5212 unittest.expect(o, unittest.hasLength(2)); |
| 5211 checkRoute(o[0]); | 5213 checkRoute(o[0]); |
| 5212 checkRoute(o[1]); | 5214 checkRoute(o[1]); |
| 5213 } | 5215 } |
| 5214 | 5216 |
| 5215 buildUnnamed828() { | 5217 buildUnnamed2531() { |
| 5216 var o = new core.List<api.RouterStatusBgpPeerStatus>(); | 5218 var o = new core.List<api.RouterStatusBgpPeerStatus>(); |
| 5217 o.add(buildRouterStatusBgpPeerStatus()); | 5219 o.add(buildRouterStatusBgpPeerStatus()); |
| 5218 o.add(buildRouterStatusBgpPeerStatus()); | 5220 o.add(buildRouterStatusBgpPeerStatus()); |
| 5219 return o; | 5221 return o; |
| 5220 } | 5222 } |
| 5221 | 5223 |
| 5222 checkUnnamed828(core.List<api.RouterStatusBgpPeerStatus> o) { | 5224 checkUnnamed2531(core.List<api.RouterStatusBgpPeerStatus> o) { |
| 5223 unittest.expect(o, unittest.hasLength(2)); | 5225 unittest.expect(o, unittest.hasLength(2)); |
| 5224 checkRouterStatusBgpPeerStatus(o[0]); | 5226 checkRouterStatusBgpPeerStatus(o[0]); |
| 5225 checkRouterStatusBgpPeerStatus(o[1]); | 5227 checkRouterStatusBgpPeerStatus(o[1]); |
| 5226 } | 5228 } |
| 5227 | 5229 |
| 5228 core.int buildCounterRouterStatus = 0; | 5230 core.int buildCounterRouterStatus = 0; |
| 5229 buildRouterStatus() { | 5231 buildRouterStatus() { |
| 5230 var o = new api.RouterStatus(); | 5232 var o = new api.RouterStatus(); |
| 5231 buildCounterRouterStatus++; | 5233 buildCounterRouterStatus++; |
| 5232 if (buildCounterRouterStatus < 3) { | 5234 if (buildCounterRouterStatus < 3) { |
| 5233 o.bestRoutes = buildUnnamed827(); | 5235 o.bestRoutes = buildUnnamed2530(); |
| 5234 o.bgpPeerStatus = buildUnnamed828(); | 5236 o.bgpPeerStatus = buildUnnamed2531(); |
| 5235 o.network = "foo"; | 5237 o.network = "foo"; |
| 5236 } | 5238 } |
| 5237 buildCounterRouterStatus--; | 5239 buildCounterRouterStatus--; |
| 5238 return o; | 5240 return o; |
| 5239 } | 5241 } |
| 5240 | 5242 |
| 5241 checkRouterStatus(api.RouterStatus o) { | 5243 checkRouterStatus(api.RouterStatus o) { |
| 5242 buildCounterRouterStatus++; | 5244 buildCounterRouterStatus++; |
| 5243 if (buildCounterRouterStatus < 3) { | 5245 if (buildCounterRouterStatus < 3) { |
| 5244 checkUnnamed827(o.bestRoutes); | 5246 checkUnnamed2530(o.bestRoutes); |
| 5245 checkUnnamed828(o.bgpPeerStatus); | 5247 checkUnnamed2531(o.bgpPeerStatus); |
| 5246 unittest.expect(o.network, unittest.equals('foo')); | 5248 unittest.expect(o.network, unittest.equals('foo')); |
| 5247 } | 5249 } |
| 5248 buildCounterRouterStatus--; | 5250 buildCounterRouterStatus--; |
| 5249 } | 5251 } |
| 5250 | 5252 |
| 5251 buildUnnamed829() { | 5253 buildUnnamed2532() { |
| 5252 var o = new core.List<api.Route>(); | 5254 var o = new core.List<api.Route>(); |
| 5253 o.add(buildRoute()); | 5255 o.add(buildRoute()); |
| 5254 o.add(buildRoute()); | 5256 o.add(buildRoute()); |
| 5255 return o; | 5257 return o; |
| 5256 } | 5258 } |
| 5257 | 5259 |
| 5258 checkUnnamed829(core.List<api.Route> o) { | 5260 checkUnnamed2532(core.List<api.Route> o) { |
| 5259 unittest.expect(o, unittest.hasLength(2)); | 5261 unittest.expect(o, unittest.hasLength(2)); |
| 5260 checkRoute(o[0]); | 5262 checkRoute(o[0]); |
| 5261 checkRoute(o[1]); | 5263 checkRoute(o[1]); |
| 5262 } | 5264 } |
| 5263 | 5265 |
| 5264 core.int buildCounterRouterStatusBgpPeerStatus = 0; | 5266 core.int buildCounterRouterStatusBgpPeerStatus = 0; |
| 5265 buildRouterStatusBgpPeerStatus() { | 5267 buildRouterStatusBgpPeerStatus() { |
| 5266 var o = new api.RouterStatusBgpPeerStatus(); | 5268 var o = new api.RouterStatusBgpPeerStatus(); |
| 5267 buildCounterRouterStatusBgpPeerStatus++; | 5269 buildCounterRouterStatusBgpPeerStatus++; |
| 5268 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 5270 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 5269 o.advertisedRoutes = buildUnnamed829(); | 5271 o.advertisedRoutes = buildUnnamed2532(); |
| 5270 o.ipAddress = "foo"; | 5272 o.ipAddress = "foo"; |
| 5271 o.linkedVpnTunnel = "foo"; | 5273 o.linkedVpnTunnel = "foo"; |
| 5272 o.name = "foo"; | 5274 o.name = "foo"; |
| 5273 o.numLearnedRoutes = 42; | 5275 o.numLearnedRoutes = 42; |
| 5274 o.peerIpAddress = "foo"; | 5276 o.peerIpAddress = "foo"; |
| 5275 o.state = "foo"; | 5277 o.state = "foo"; |
| 5276 o.status = "foo"; | 5278 o.status = "foo"; |
| 5277 o.uptime = "foo"; | 5279 o.uptime = "foo"; |
| 5278 o.uptimeSeconds = "foo"; | 5280 o.uptimeSeconds = "foo"; |
| 5279 } | 5281 } |
| 5280 buildCounterRouterStatusBgpPeerStatus--; | 5282 buildCounterRouterStatusBgpPeerStatus--; |
| 5281 return o; | 5283 return o; |
| 5282 } | 5284 } |
| 5283 | 5285 |
| 5284 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { | 5286 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { |
| 5285 buildCounterRouterStatusBgpPeerStatus++; | 5287 buildCounterRouterStatusBgpPeerStatus++; |
| 5286 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 5288 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 5287 checkUnnamed829(o.advertisedRoutes); | 5289 checkUnnamed2532(o.advertisedRoutes); |
| 5288 unittest.expect(o.ipAddress, unittest.equals('foo')); | 5290 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 5289 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 5291 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 5290 unittest.expect(o.name, unittest.equals('foo')); | 5292 unittest.expect(o.name, unittest.equals('foo')); |
| 5291 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); | 5293 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); |
| 5292 unittest.expect(o.peerIpAddress, unittest.equals('foo')); | 5294 unittest.expect(o.peerIpAddress, unittest.equals('foo')); |
| 5293 unittest.expect(o.state, unittest.equals('foo')); | 5295 unittest.expect(o.state, unittest.equals('foo')); |
| 5294 unittest.expect(o.status, unittest.equals('foo')); | 5296 unittest.expect(o.status, unittest.equals('foo')); |
| 5295 unittest.expect(o.uptime, unittest.equals('foo')); | 5297 unittest.expect(o.uptime, unittest.equals('foo')); |
| 5296 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); | 5298 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); |
| 5297 } | 5299 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5331 } | 5333 } |
| 5332 | 5334 |
| 5333 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { | 5335 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { |
| 5334 buildCounterRoutersPreviewResponse++; | 5336 buildCounterRoutersPreviewResponse++; |
| 5335 if (buildCounterRoutersPreviewResponse < 3) { | 5337 if (buildCounterRoutersPreviewResponse < 3) { |
| 5336 checkRouter(o.resource); | 5338 checkRouter(o.resource); |
| 5337 } | 5339 } |
| 5338 buildCounterRoutersPreviewResponse--; | 5340 buildCounterRoutersPreviewResponse--; |
| 5339 } | 5341 } |
| 5340 | 5342 |
| 5341 buildUnnamed830() { | 5343 buildUnnamed2533() { |
| 5342 var o = new core.List<api.Router>(); | 5344 var o = new core.List<api.Router>(); |
| 5343 o.add(buildRouter()); | 5345 o.add(buildRouter()); |
| 5344 o.add(buildRouter()); | 5346 o.add(buildRouter()); |
| 5345 return o; | 5347 return o; |
| 5346 } | 5348 } |
| 5347 | 5349 |
| 5348 checkUnnamed830(core.List<api.Router> o) { | 5350 checkUnnamed2533(core.List<api.Router> o) { |
| 5349 unittest.expect(o, unittest.hasLength(2)); | 5351 unittest.expect(o, unittest.hasLength(2)); |
| 5350 checkRouter(o[0]); | 5352 checkRouter(o[0]); |
| 5351 checkRouter(o[1]); | 5353 checkRouter(o[1]); |
| 5352 } | 5354 } |
| 5353 | 5355 |
| 5354 core.int buildCounterRoutersScopedListWarningData = 0; | 5356 core.int buildCounterRoutersScopedListWarningData = 0; |
| 5355 buildRoutersScopedListWarningData() { | 5357 buildRoutersScopedListWarningData() { |
| 5356 var o = new api.RoutersScopedListWarningData(); | 5358 var o = new api.RoutersScopedListWarningData(); |
| 5357 buildCounterRoutersScopedListWarningData++; | 5359 buildCounterRoutersScopedListWarningData++; |
| 5358 if (buildCounterRoutersScopedListWarningData < 3) { | 5360 if (buildCounterRoutersScopedListWarningData < 3) { |
| 5359 o.key = "foo"; | 5361 o.key = "foo"; |
| 5360 o.value = "foo"; | 5362 o.value = "foo"; |
| 5361 } | 5363 } |
| 5362 buildCounterRoutersScopedListWarningData--; | 5364 buildCounterRoutersScopedListWarningData--; |
| 5363 return o; | 5365 return o; |
| 5364 } | 5366 } |
| 5365 | 5367 |
| 5366 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { | 5368 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { |
| 5367 buildCounterRoutersScopedListWarningData++; | 5369 buildCounterRoutersScopedListWarningData++; |
| 5368 if (buildCounterRoutersScopedListWarningData < 3) { | 5370 if (buildCounterRoutersScopedListWarningData < 3) { |
| 5369 unittest.expect(o.key, unittest.equals('foo')); | 5371 unittest.expect(o.key, unittest.equals('foo')); |
| 5370 unittest.expect(o.value, unittest.equals('foo')); | 5372 unittest.expect(o.value, unittest.equals('foo')); |
| 5371 } | 5373 } |
| 5372 buildCounterRoutersScopedListWarningData--; | 5374 buildCounterRoutersScopedListWarningData--; |
| 5373 } | 5375 } |
| 5374 | 5376 |
| 5375 buildUnnamed831() { | 5377 buildUnnamed2534() { |
| 5376 var o = new core.List<api.RoutersScopedListWarningData>(); | 5378 var o = new core.List<api.RoutersScopedListWarningData>(); |
| 5377 o.add(buildRoutersScopedListWarningData()); | 5379 o.add(buildRoutersScopedListWarningData()); |
| 5378 o.add(buildRoutersScopedListWarningData()); | 5380 o.add(buildRoutersScopedListWarningData()); |
| 5379 return o; | 5381 return o; |
| 5380 } | 5382 } |
| 5381 | 5383 |
| 5382 checkUnnamed831(core.List<api.RoutersScopedListWarningData> o) { | 5384 checkUnnamed2534(core.List<api.RoutersScopedListWarningData> o) { |
| 5383 unittest.expect(o, unittest.hasLength(2)); | 5385 unittest.expect(o, unittest.hasLength(2)); |
| 5384 checkRoutersScopedListWarningData(o[0]); | 5386 checkRoutersScopedListWarningData(o[0]); |
| 5385 checkRoutersScopedListWarningData(o[1]); | 5387 checkRoutersScopedListWarningData(o[1]); |
| 5386 } | 5388 } |
| 5387 | 5389 |
| 5388 core.int buildCounterRoutersScopedListWarning = 0; | 5390 core.int buildCounterRoutersScopedListWarning = 0; |
| 5389 buildRoutersScopedListWarning() { | 5391 buildRoutersScopedListWarning() { |
| 5390 var o = new api.RoutersScopedListWarning(); | 5392 var o = new api.RoutersScopedListWarning(); |
| 5391 buildCounterRoutersScopedListWarning++; | 5393 buildCounterRoutersScopedListWarning++; |
| 5392 if (buildCounterRoutersScopedListWarning < 3) { | 5394 if (buildCounterRoutersScopedListWarning < 3) { |
| 5393 o.code = "foo"; | 5395 o.code = "foo"; |
| 5394 o.data = buildUnnamed831(); | 5396 o.data = buildUnnamed2534(); |
| 5395 o.message = "foo"; | 5397 o.message = "foo"; |
| 5396 } | 5398 } |
| 5397 buildCounterRoutersScopedListWarning--; | 5399 buildCounterRoutersScopedListWarning--; |
| 5398 return o; | 5400 return o; |
| 5399 } | 5401 } |
| 5400 | 5402 |
| 5401 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { | 5403 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { |
| 5402 buildCounterRoutersScopedListWarning++; | 5404 buildCounterRoutersScopedListWarning++; |
| 5403 if (buildCounterRoutersScopedListWarning < 3) { | 5405 if (buildCounterRoutersScopedListWarning < 3) { |
| 5404 unittest.expect(o.code, unittest.equals('foo')); | 5406 unittest.expect(o.code, unittest.equals('foo')); |
| 5405 checkUnnamed831(o.data); | 5407 checkUnnamed2534(o.data); |
| 5406 unittest.expect(o.message, unittest.equals('foo')); | 5408 unittest.expect(o.message, unittest.equals('foo')); |
| 5407 } | 5409 } |
| 5408 buildCounterRoutersScopedListWarning--; | 5410 buildCounterRoutersScopedListWarning--; |
| 5409 } | 5411 } |
| 5410 | 5412 |
| 5411 core.int buildCounterRoutersScopedList = 0; | 5413 core.int buildCounterRoutersScopedList = 0; |
| 5412 buildRoutersScopedList() { | 5414 buildRoutersScopedList() { |
| 5413 var o = new api.RoutersScopedList(); | 5415 var o = new api.RoutersScopedList(); |
| 5414 buildCounterRoutersScopedList++; | 5416 buildCounterRoutersScopedList++; |
| 5415 if (buildCounterRoutersScopedList < 3) { | 5417 if (buildCounterRoutersScopedList < 3) { |
| 5416 o.routers = buildUnnamed830(); | 5418 o.routers = buildUnnamed2533(); |
| 5417 o.warning = buildRoutersScopedListWarning(); | 5419 o.warning = buildRoutersScopedListWarning(); |
| 5418 } | 5420 } |
| 5419 buildCounterRoutersScopedList--; | 5421 buildCounterRoutersScopedList--; |
| 5420 return o; | 5422 return o; |
| 5421 } | 5423 } |
| 5422 | 5424 |
| 5423 checkRoutersScopedList(api.RoutersScopedList o) { | 5425 checkRoutersScopedList(api.RoutersScopedList o) { |
| 5424 buildCounterRoutersScopedList++; | 5426 buildCounterRoutersScopedList++; |
| 5425 if (buildCounterRoutersScopedList < 3) { | 5427 if (buildCounterRoutersScopedList < 3) { |
| 5426 checkUnnamed830(o.routers); | 5428 checkUnnamed2533(o.routers); |
| 5427 checkRoutersScopedListWarning(o.warning); | 5429 checkRoutersScopedListWarning(o.warning); |
| 5428 } | 5430 } |
| 5429 buildCounterRoutersScopedList--; | 5431 buildCounterRoutersScopedList--; |
| 5430 } | 5432 } |
| 5431 | 5433 |
| 5432 core.int buildCounterScheduling = 0; | 5434 core.int buildCounterScheduling = 0; |
| 5433 buildScheduling() { | 5435 buildScheduling() { |
| 5434 var o = new api.Scheduling(); | 5436 var o = new api.Scheduling(); |
| 5435 buildCounterScheduling++; | 5437 buildCounterScheduling++; |
| 5436 if (buildCounterScheduling < 3) { | 5438 if (buildCounterScheduling < 3) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5468 checkSerialPortOutput(api.SerialPortOutput o) { | 5470 checkSerialPortOutput(api.SerialPortOutput o) { |
| 5469 buildCounterSerialPortOutput++; | 5471 buildCounterSerialPortOutput++; |
| 5470 if (buildCounterSerialPortOutput < 3) { | 5472 if (buildCounterSerialPortOutput < 3) { |
| 5471 unittest.expect(o.contents, unittest.equals('foo')); | 5473 unittest.expect(o.contents, unittest.equals('foo')); |
| 5472 unittest.expect(o.kind, unittest.equals('foo')); | 5474 unittest.expect(o.kind, unittest.equals('foo')); |
| 5473 unittest.expect(o.selfLink, unittest.equals('foo')); | 5475 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5474 } | 5476 } |
| 5475 buildCounterSerialPortOutput--; | 5477 buildCounterSerialPortOutput--; |
| 5476 } | 5478 } |
| 5477 | 5479 |
| 5478 buildUnnamed832() { | 5480 buildUnnamed2535() { |
| 5479 var o = new core.List<core.String>(); | 5481 var o = new core.List<core.String>(); |
| 5480 o.add("foo"); | 5482 o.add("foo"); |
| 5481 o.add("foo"); | 5483 o.add("foo"); |
| 5482 return o; | 5484 return o; |
| 5483 } | 5485 } |
| 5484 | 5486 |
| 5485 checkUnnamed832(core.List<core.String> o) { | 5487 checkUnnamed2535(core.List<core.String> o) { |
| 5486 unittest.expect(o, unittest.hasLength(2)); | 5488 unittest.expect(o, unittest.hasLength(2)); |
| 5487 unittest.expect(o[0], unittest.equals('foo')); | 5489 unittest.expect(o[0], unittest.equals('foo')); |
| 5488 unittest.expect(o[1], unittest.equals('foo')); | 5490 unittest.expect(o[1], unittest.equals('foo')); |
| 5489 } | 5491 } |
| 5490 | 5492 |
| 5491 core.int buildCounterServiceAccount = 0; | 5493 core.int buildCounterServiceAccount = 0; |
| 5492 buildServiceAccount() { | 5494 buildServiceAccount() { |
| 5493 var o = new api.ServiceAccount(); | 5495 var o = new api.ServiceAccount(); |
| 5494 buildCounterServiceAccount++; | 5496 buildCounterServiceAccount++; |
| 5495 if (buildCounterServiceAccount < 3) { | 5497 if (buildCounterServiceAccount < 3) { |
| 5496 o.email = "foo"; | 5498 o.email = "foo"; |
| 5497 o.scopes = buildUnnamed832(); | 5499 o.scopes = buildUnnamed2535(); |
| 5498 } | 5500 } |
| 5499 buildCounterServiceAccount--; | 5501 buildCounterServiceAccount--; |
| 5500 return o; | 5502 return o; |
| 5501 } | 5503 } |
| 5502 | 5504 |
| 5503 checkServiceAccount(api.ServiceAccount o) { | 5505 checkServiceAccount(api.ServiceAccount o) { |
| 5504 buildCounterServiceAccount++; | 5506 buildCounterServiceAccount++; |
| 5505 if (buildCounterServiceAccount < 3) { | 5507 if (buildCounterServiceAccount < 3) { |
| 5506 unittest.expect(o.email, unittest.equals('foo')); | 5508 unittest.expect(o.email, unittest.equals('foo')); |
| 5507 checkUnnamed832(o.scopes); | 5509 checkUnnamed2535(o.scopes); |
| 5508 } | 5510 } |
| 5509 buildCounterServiceAccount--; | 5511 buildCounterServiceAccount--; |
| 5510 } | 5512 } |
| 5511 | 5513 |
| 5512 buildUnnamed833() { | 5514 buildUnnamed2536() { |
| 5513 var o = new core.List<core.String>(); | 5515 var o = new core.List<core.String>(); |
| 5514 o.add("foo"); | 5516 o.add("foo"); |
| 5515 o.add("foo"); | 5517 o.add("foo"); |
| 5516 return o; | 5518 return o; |
| 5517 } | 5519 } |
| 5518 | 5520 |
| 5519 checkUnnamed833(core.List<core.String> o) { | 5521 checkUnnamed2536(core.List<core.String> o) { |
| 5520 unittest.expect(o, unittest.hasLength(2)); | 5522 unittest.expect(o, unittest.hasLength(2)); |
| 5521 unittest.expect(o[0], unittest.equals('foo')); | 5523 unittest.expect(o[0], unittest.equals('foo')); |
| 5522 unittest.expect(o[1], unittest.equals('foo')); | 5524 unittest.expect(o[1], unittest.equals('foo')); |
| 5523 } | 5525 } |
| 5524 | 5526 |
| 5525 core.int buildCounterSnapshot = 0; | 5527 core.int buildCounterSnapshot = 0; |
| 5526 buildSnapshot() { | 5528 buildSnapshot() { |
| 5527 var o = new api.Snapshot(); | 5529 var o = new api.Snapshot(); |
| 5528 buildCounterSnapshot++; | 5530 buildCounterSnapshot++; |
| 5529 if (buildCounterSnapshot < 3) { | 5531 if (buildCounterSnapshot < 3) { |
| 5530 o.creationTimestamp = "foo"; | 5532 o.creationTimestamp = "foo"; |
| 5531 o.description = "foo"; | 5533 o.description = "foo"; |
| 5532 o.diskSizeGb = "foo"; | 5534 o.diskSizeGb = "foo"; |
| 5533 o.id = "foo"; | 5535 o.id = "foo"; |
| 5534 o.kind = "foo"; | 5536 o.kind = "foo"; |
| 5535 o.licenses = buildUnnamed833(); | 5537 o.licenses = buildUnnamed2536(); |
| 5536 o.name = "foo"; | 5538 o.name = "foo"; |
| 5537 o.selfLink = "foo"; | 5539 o.selfLink = "foo"; |
| 5538 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); | 5540 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 5539 o.sourceDisk = "foo"; | 5541 o.sourceDisk = "foo"; |
| 5540 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 5542 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 5541 o.sourceDiskId = "foo"; | 5543 o.sourceDiskId = "foo"; |
| 5542 o.status = "foo"; | 5544 o.status = "foo"; |
| 5543 o.storageBytes = "foo"; | 5545 o.storageBytes = "foo"; |
| 5544 o.storageBytesStatus = "foo"; | 5546 o.storageBytesStatus = "foo"; |
| 5545 } | 5547 } |
| 5546 buildCounterSnapshot--; | 5548 buildCounterSnapshot--; |
| 5547 return o; | 5549 return o; |
| 5548 } | 5550 } |
| 5549 | 5551 |
| 5550 checkSnapshot(api.Snapshot o) { | 5552 checkSnapshot(api.Snapshot o) { |
| 5551 buildCounterSnapshot++; | 5553 buildCounterSnapshot++; |
| 5552 if (buildCounterSnapshot < 3) { | 5554 if (buildCounterSnapshot < 3) { |
| 5553 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5555 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5554 unittest.expect(o.description, unittest.equals('foo')); | 5556 unittest.expect(o.description, unittest.equals('foo')); |
| 5555 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 5557 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 5556 unittest.expect(o.id, unittest.equals('foo')); | 5558 unittest.expect(o.id, unittest.equals('foo')); |
| 5557 unittest.expect(o.kind, unittest.equals('foo')); | 5559 unittest.expect(o.kind, unittest.equals('foo')); |
| 5558 checkUnnamed833(o.licenses); | 5560 checkUnnamed2536(o.licenses); |
| 5559 unittest.expect(o.name, unittest.equals('foo')); | 5561 unittest.expect(o.name, unittest.equals('foo')); |
| 5560 unittest.expect(o.selfLink, unittest.equals('foo')); | 5562 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5561 checkCustomerEncryptionKey(o.snapshotEncryptionKey); | 5563 checkCustomerEncryptionKey(o.snapshotEncryptionKey); |
| 5562 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 5564 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 5563 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 5565 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 5564 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 5566 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 5565 unittest.expect(o.status, unittest.equals('foo')); | 5567 unittest.expect(o.status, unittest.equals('foo')); |
| 5566 unittest.expect(o.storageBytes, unittest.equals('foo')); | 5568 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 5567 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 5569 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 5568 } | 5570 } |
| 5569 buildCounterSnapshot--; | 5571 buildCounterSnapshot--; |
| 5570 } | 5572 } |
| 5571 | 5573 |
| 5572 buildUnnamed834() { | 5574 buildUnnamed2537() { |
| 5573 var o = new core.List<api.Snapshot>(); | 5575 var o = new core.List<api.Snapshot>(); |
| 5574 o.add(buildSnapshot()); | 5576 o.add(buildSnapshot()); |
| 5575 o.add(buildSnapshot()); | 5577 o.add(buildSnapshot()); |
| 5576 return o; | 5578 return o; |
| 5577 } | 5579 } |
| 5578 | 5580 |
| 5579 checkUnnamed834(core.List<api.Snapshot> o) { | 5581 checkUnnamed2537(core.List<api.Snapshot> o) { |
| 5580 unittest.expect(o, unittest.hasLength(2)); | 5582 unittest.expect(o, unittest.hasLength(2)); |
| 5581 checkSnapshot(o[0]); | 5583 checkSnapshot(o[0]); |
| 5582 checkSnapshot(o[1]); | 5584 checkSnapshot(o[1]); |
| 5583 } | 5585 } |
| 5584 | 5586 |
| 5585 core.int buildCounterSnapshotList = 0; | 5587 core.int buildCounterSnapshotList = 0; |
| 5586 buildSnapshotList() { | 5588 buildSnapshotList() { |
| 5587 var o = new api.SnapshotList(); | 5589 var o = new api.SnapshotList(); |
| 5588 buildCounterSnapshotList++; | 5590 buildCounterSnapshotList++; |
| 5589 if (buildCounterSnapshotList < 3) { | 5591 if (buildCounterSnapshotList < 3) { |
| 5590 o.id = "foo"; | 5592 o.id = "foo"; |
| 5591 o.items = buildUnnamed834(); | 5593 o.items = buildUnnamed2537(); |
| 5592 o.kind = "foo"; | 5594 o.kind = "foo"; |
| 5593 o.nextPageToken = "foo"; | 5595 o.nextPageToken = "foo"; |
| 5594 o.selfLink = "foo"; | 5596 o.selfLink = "foo"; |
| 5595 } | 5597 } |
| 5596 buildCounterSnapshotList--; | 5598 buildCounterSnapshotList--; |
| 5597 return o; | 5599 return o; |
| 5598 } | 5600 } |
| 5599 | 5601 |
| 5600 checkSnapshotList(api.SnapshotList o) { | 5602 checkSnapshotList(api.SnapshotList o) { |
| 5601 buildCounterSnapshotList++; | 5603 buildCounterSnapshotList++; |
| 5602 if (buildCounterSnapshotList < 3) { | 5604 if (buildCounterSnapshotList < 3) { |
| 5603 unittest.expect(o.id, unittest.equals('foo')); | 5605 unittest.expect(o.id, unittest.equals('foo')); |
| 5604 checkUnnamed834(o.items); | 5606 checkUnnamed2537(o.items); |
| 5605 unittest.expect(o.kind, unittest.equals('foo')); | 5607 unittest.expect(o.kind, unittest.equals('foo')); |
| 5606 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5608 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5607 unittest.expect(o.selfLink, unittest.equals('foo')); | 5609 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5608 } | 5610 } |
| 5609 buildCounterSnapshotList--; | 5611 buildCounterSnapshotList--; |
| 5610 } | 5612 } |
| 5611 | 5613 |
| 5612 core.int buildCounterSslCertificate = 0; | 5614 core.int buildCounterSslCertificate = 0; |
| 5613 buildSslCertificate() { | 5615 buildSslCertificate() { |
| 5614 var o = new api.SslCertificate(); | 5616 var o = new api.SslCertificate(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 5635 unittest.expect(o.description, unittest.equals('foo')); | 5637 unittest.expect(o.description, unittest.equals('foo')); |
| 5636 unittest.expect(o.id, unittest.equals('foo')); | 5638 unittest.expect(o.id, unittest.equals('foo')); |
| 5637 unittest.expect(o.kind, unittest.equals('foo')); | 5639 unittest.expect(o.kind, unittest.equals('foo')); |
| 5638 unittest.expect(o.name, unittest.equals('foo')); | 5640 unittest.expect(o.name, unittest.equals('foo')); |
| 5639 unittest.expect(o.privateKey, unittest.equals('foo')); | 5641 unittest.expect(o.privateKey, unittest.equals('foo')); |
| 5640 unittest.expect(o.selfLink, unittest.equals('foo')); | 5642 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5641 } | 5643 } |
| 5642 buildCounterSslCertificate--; | 5644 buildCounterSslCertificate--; |
| 5643 } | 5645 } |
| 5644 | 5646 |
| 5645 buildUnnamed835() { | 5647 buildUnnamed2538() { |
| 5646 var o = new core.List<api.SslCertificate>(); | 5648 var o = new core.List<api.SslCertificate>(); |
| 5647 o.add(buildSslCertificate()); | 5649 o.add(buildSslCertificate()); |
| 5648 o.add(buildSslCertificate()); | 5650 o.add(buildSslCertificate()); |
| 5649 return o; | 5651 return o; |
| 5650 } | 5652 } |
| 5651 | 5653 |
| 5652 checkUnnamed835(core.List<api.SslCertificate> o) { | 5654 checkUnnamed2538(core.List<api.SslCertificate> o) { |
| 5653 unittest.expect(o, unittest.hasLength(2)); | 5655 unittest.expect(o, unittest.hasLength(2)); |
| 5654 checkSslCertificate(o[0]); | 5656 checkSslCertificate(o[0]); |
| 5655 checkSslCertificate(o[1]); | 5657 checkSslCertificate(o[1]); |
| 5656 } | 5658 } |
| 5657 | 5659 |
| 5658 core.int buildCounterSslCertificateList = 0; | 5660 core.int buildCounterSslCertificateList = 0; |
| 5659 buildSslCertificateList() { | 5661 buildSslCertificateList() { |
| 5660 var o = new api.SslCertificateList(); | 5662 var o = new api.SslCertificateList(); |
| 5661 buildCounterSslCertificateList++; | 5663 buildCounterSslCertificateList++; |
| 5662 if (buildCounterSslCertificateList < 3) { | 5664 if (buildCounterSslCertificateList < 3) { |
| 5663 o.id = "foo"; | 5665 o.id = "foo"; |
| 5664 o.items = buildUnnamed835(); | 5666 o.items = buildUnnamed2538(); |
| 5665 o.kind = "foo"; | 5667 o.kind = "foo"; |
| 5666 o.nextPageToken = "foo"; | 5668 o.nextPageToken = "foo"; |
| 5667 o.selfLink = "foo"; | 5669 o.selfLink = "foo"; |
| 5668 } | 5670 } |
| 5669 buildCounterSslCertificateList--; | 5671 buildCounterSslCertificateList--; |
| 5670 return o; | 5672 return o; |
| 5671 } | 5673 } |
| 5672 | 5674 |
| 5673 checkSslCertificateList(api.SslCertificateList o) { | 5675 checkSslCertificateList(api.SslCertificateList o) { |
| 5674 buildCounterSslCertificateList++; | 5676 buildCounterSslCertificateList++; |
| 5675 if (buildCounterSslCertificateList < 3) { | 5677 if (buildCounterSslCertificateList < 3) { |
| 5676 unittest.expect(o.id, unittest.equals('foo')); | 5678 unittest.expect(o.id, unittest.equals('foo')); |
| 5677 checkUnnamed835(o.items); | 5679 checkUnnamed2538(o.items); |
| 5678 unittest.expect(o.kind, unittest.equals('foo')); | 5680 unittest.expect(o.kind, unittest.equals('foo')); |
| 5679 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5681 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5680 unittest.expect(o.selfLink, unittest.equals('foo')); | 5682 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5681 } | 5683 } |
| 5682 buildCounterSslCertificateList--; | 5684 buildCounterSslCertificateList--; |
| 5683 } | 5685 } |
| 5684 | 5686 |
| 5685 core.int buildCounterSubnetwork = 0; | 5687 core.int buildCounterSubnetwork = 0; |
| 5686 buildSubnetwork() { | 5688 buildSubnetwork() { |
| 5687 var o = new api.Subnetwork(); | 5689 var o = new api.Subnetwork(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5712 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 5714 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 5713 unittest.expect(o.kind, unittest.equals('foo')); | 5715 unittest.expect(o.kind, unittest.equals('foo')); |
| 5714 unittest.expect(o.name, unittest.equals('foo')); | 5716 unittest.expect(o.name, unittest.equals('foo')); |
| 5715 unittest.expect(o.network, unittest.equals('foo')); | 5717 unittest.expect(o.network, unittest.equals('foo')); |
| 5716 unittest.expect(o.region, unittest.equals('foo')); | 5718 unittest.expect(o.region, unittest.equals('foo')); |
| 5717 unittest.expect(o.selfLink, unittest.equals('foo')); | 5719 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5718 } | 5720 } |
| 5719 buildCounterSubnetwork--; | 5721 buildCounterSubnetwork--; |
| 5720 } | 5722 } |
| 5721 | 5723 |
| 5722 buildUnnamed836() { | 5724 buildUnnamed2539() { |
| 5723 var o = new core.Map<core.String, api.SubnetworksScopedList>(); | 5725 var o = new core.Map<core.String, api.SubnetworksScopedList>(); |
| 5724 o["x"] = buildSubnetworksScopedList(); | 5726 o["x"] = buildSubnetworksScopedList(); |
| 5725 o["y"] = buildSubnetworksScopedList(); | 5727 o["y"] = buildSubnetworksScopedList(); |
| 5726 return o; | 5728 return o; |
| 5727 } | 5729 } |
| 5728 | 5730 |
| 5729 checkUnnamed836(core.Map<core.String, api.SubnetworksScopedList> o) { | 5731 checkUnnamed2539(core.Map<core.String, api.SubnetworksScopedList> o) { |
| 5730 unittest.expect(o, unittest.hasLength(2)); | 5732 unittest.expect(o, unittest.hasLength(2)); |
| 5731 checkSubnetworksScopedList(o["x"]); | 5733 checkSubnetworksScopedList(o["x"]); |
| 5732 checkSubnetworksScopedList(o["y"]); | 5734 checkSubnetworksScopedList(o["y"]); |
| 5733 } | 5735 } |
| 5734 | 5736 |
| 5735 core.int buildCounterSubnetworkAggregatedList = 0; | 5737 core.int buildCounterSubnetworkAggregatedList = 0; |
| 5736 buildSubnetworkAggregatedList() { | 5738 buildSubnetworkAggregatedList() { |
| 5737 var o = new api.SubnetworkAggregatedList(); | 5739 var o = new api.SubnetworkAggregatedList(); |
| 5738 buildCounterSubnetworkAggregatedList++; | 5740 buildCounterSubnetworkAggregatedList++; |
| 5739 if (buildCounterSubnetworkAggregatedList < 3) { | 5741 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5740 o.id = "foo"; | 5742 o.id = "foo"; |
| 5741 o.items = buildUnnamed836(); | 5743 o.items = buildUnnamed2539(); |
| 5742 o.kind = "foo"; | 5744 o.kind = "foo"; |
| 5743 o.nextPageToken = "foo"; | 5745 o.nextPageToken = "foo"; |
| 5744 o.selfLink = "foo"; | 5746 o.selfLink = "foo"; |
| 5745 } | 5747 } |
| 5746 buildCounterSubnetworkAggregatedList--; | 5748 buildCounterSubnetworkAggregatedList--; |
| 5747 return o; | 5749 return o; |
| 5748 } | 5750 } |
| 5749 | 5751 |
| 5750 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { | 5752 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { |
| 5751 buildCounterSubnetworkAggregatedList++; | 5753 buildCounterSubnetworkAggregatedList++; |
| 5752 if (buildCounterSubnetworkAggregatedList < 3) { | 5754 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5753 unittest.expect(o.id, unittest.equals('foo')); | 5755 unittest.expect(o.id, unittest.equals('foo')); |
| 5754 checkUnnamed836(o.items); | 5756 checkUnnamed2539(o.items); |
| 5755 unittest.expect(o.kind, unittest.equals('foo')); | 5757 unittest.expect(o.kind, unittest.equals('foo')); |
| 5756 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5758 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5757 unittest.expect(o.selfLink, unittest.equals('foo')); | 5759 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5758 } | 5760 } |
| 5759 buildCounterSubnetworkAggregatedList--; | 5761 buildCounterSubnetworkAggregatedList--; |
| 5760 } | 5762 } |
| 5761 | 5763 |
| 5762 buildUnnamed837() { | 5764 buildUnnamed2540() { |
| 5763 var o = new core.List<api.Subnetwork>(); | 5765 var o = new core.List<api.Subnetwork>(); |
| 5764 o.add(buildSubnetwork()); | 5766 o.add(buildSubnetwork()); |
| 5765 o.add(buildSubnetwork()); | 5767 o.add(buildSubnetwork()); |
| 5766 return o; | 5768 return o; |
| 5767 } | 5769 } |
| 5768 | 5770 |
| 5769 checkUnnamed837(core.List<api.Subnetwork> o) { | 5771 checkUnnamed2540(core.List<api.Subnetwork> o) { |
| 5770 unittest.expect(o, unittest.hasLength(2)); | 5772 unittest.expect(o, unittest.hasLength(2)); |
| 5771 checkSubnetwork(o[0]); | 5773 checkSubnetwork(o[0]); |
| 5772 checkSubnetwork(o[1]); | 5774 checkSubnetwork(o[1]); |
| 5773 } | 5775 } |
| 5774 | 5776 |
| 5775 core.int buildCounterSubnetworkList = 0; | 5777 core.int buildCounterSubnetworkList = 0; |
| 5776 buildSubnetworkList() { | 5778 buildSubnetworkList() { |
| 5777 var o = new api.SubnetworkList(); | 5779 var o = new api.SubnetworkList(); |
| 5778 buildCounterSubnetworkList++; | 5780 buildCounterSubnetworkList++; |
| 5779 if (buildCounterSubnetworkList < 3) { | 5781 if (buildCounterSubnetworkList < 3) { |
| 5780 o.id = "foo"; | 5782 o.id = "foo"; |
| 5781 o.items = buildUnnamed837(); | 5783 o.items = buildUnnamed2540(); |
| 5782 o.kind = "foo"; | 5784 o.kind = "foo"; |
| 5783 o.nextPageToken = "foo"; | 5785 o.nextPageToken = "foo"; |
| 5784 o.selfLink = "foo"; | 5786 o.selfLink = "foo"; |
| 5785 } | 5787 } |
| 5786 buildCounterSubnetworkList--; | 5788 buildCounterSubnetworkList--; |
| 5787 return o; | 5789 return o; |
| 5788 } | 5790 } |
| 5789 | 5791 |
| 5790 checkSubnetworkList(api.SubnetworkList o) { | 5792 checkSubnetworkList(api.SubnetworkList o) { |
| 5791 buildCounterSubnetworkList++; | 5793 buildCounterSubnetworkList++; |
| 5792 if (buildCounterSubnetworkList < 3) { | 5794 if (buildCounterSubnetworkList < 3) { |
| 5793 unittest.expect(o.id, unittest.equals('foo')); | 5795 unittest.expect(o.id, unittest.equals('foo')); |
| 5794 checkUnnamed837(o.items); | 5796 checkUnnamed2540(o.items); |
| 5795 unittest.expect(o.kind, unittest.equals('foo')); | 5797 unittest.expect(o.kind, unittest.equals('foo')); |
| 5796 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5798 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5797 unittest.expect(o.selfLink, unittest.equals('foo')); | 5799 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5798 } | 5800 } |
| 5799 buildCounterSubnetworkList--; | 5801 buildCounterSubnetworkList--; |
| 5800 } | 5802 } |
| 5801 | 5803 |
| 5802 buildUnnamed838() { | 5804 buildUnnamed2541() { |
| 5803 var o = new core.List<api.Subnetwork>(); | 5805 var o = new core.List<api.Subnetwork>(); |
| 5804 o.add(buildSubnetwork()); | 5806 o.add(buildSubnetwork()); |
| 5805 o.add(buildSubnetwork()); | 5807 o.add(buildSubnetwork()); |
| 5806 return o; | 5808 return o; |
| 5807 } | 5809 } |
| 5808 | 5810 |
| 5809 checkUnnamed838(core.List<api.Subnetwork> o) { | 5811 checkUnnamed2541(core.List<api.Subnetwork> o) { |
| 5810 unittest.expect(o, unittest.hasLength(2)); | 5812 unittest.expect(o, unittest.hasLength(2)); |
| 5811 checkSubnetwork(o[0]); | 5813 checkSubnetwork(o[0]); |
| 5812 checkSubnetwork(o[1]); | 5814 checkSubnetwork(o[1]); |
| 5813 } | 5815 } |
| 5814 | 5816 |
| 5815 core.int buildCounterSubnetworksScopedListWarningData = 0; | 5817 core.int buildCounterSubnetworksScopedListWarningData = 0; |
| 5816 buildSubnetworksScopedListWarningData() { | 5818 buildSubnetworksScopedListWarningData() { |
| 5817 var o = new api.SubnetworksScopedListWarningData(); | 5819 var o = new api.SubnetworksScopedListWarningData(); |
| 5818 buildCounterSubnetworksScopedListWarningData++; | 5820 buildCounterSubnetworksScopedListWarningData++; |
| 5819 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5821 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5820 o.key = "foo"; | 5822 o.key = "foo"; |
| 5821 o.value = "foo"; | 5823 o.value = "foo"; |
| 5822 } | 5824 } |
| 5823 buildCounterSubnetworksScopedListWarningData--; | 5825 buildCounterSubnetworksScopedListWarningData--; |
| 5824 return o; | 5826 return o; |
| 5825 } | 5827 } |
| 5826 | 5828 |
| 5827 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { | 5829 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { |
| 5828 buildCounterSubnetworksScopedListWarningData++; | 5830 buildCounterSubnetworksScopedListWarningData++; |
| 5829 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5831 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5830 unittest.expect(o.key, unittest.equals('foo')); | 5832 unittest.expect(o.key, unittest.equals('foo')); |
| 5831 unittest.expect(o.value, unittest.equals('foo')); | 5833 unittest.expect(o.value, unittest.equals('foo')); |
| 5832 } | 5834 } |
| 5833 buildCounterSubnetworksScopedListWarningData--; | 5835 buildCounterSubnetworksScopedListWarningData--; |
| 5834 } | 5836 } |
| 5835 | 5837 |
| 5836 buildUnnamed839() { | 5838 buildUnnamed2542() { |
| 5837 var o = new core.List<api.SubnetworksScopedListWarningData>(); | 5839 var o = new core.List<api.SubnetworksScopedListWarningData>(); |
| 5838 o.add(buildSubnetworksScopedListWarningData()); | 5840 o.add(buildSubnetworksScopedListWarningData()); |
| 5839 o.add(buildSubnetworksScopedListWarningData()); | 5841 o.add(buildSubnetworksScopedListWarningData()); |
| 5840 return o; | 5842 return o; |
| 5841 } | 5843 } |
| 5842 | 5844 |
| 5843 checkUnnamed839(core.List<api.SubnetworksScopedListWarningData> o) { | 5845 checkUnnamed2542(core.List<api.SubnetworksScopedListWarningData> o) { |
| 5844 unittest.expect(o, unittest.hasLength(2)); | 5846 unittest.expect(o, unittest.hasLength(2)); |
| 5845 checkSubnetworksScopedListWarningData(o[0]); | 5847 checkSubnetworksScopedListWarningData(o[0]); |
| 5846 checkSubnetworksScopedListWarningData(o[1]); | 5848 checkSubnetworksScopedListWarningData(o[1]); |
| 5847 } | 5849 } |
| 5848 | 5850 |
| 5849 core.int buildCounterSubnetworksScopedListWarning = 0; | 5851 core.int buildCounterSubnetworksScopedListWarning = 0; |
| 5850 buildSubnetworksScopedListWarning() { | 5852 buildSubnetworksScopedListWarning() { |
| 5851 var o = new api.SubnetworksScopedListWarning(); | 5853 var o = new api.SubnetworksScopedListWarning(); |
| 5852 buildCounterSubnetworksScopedListWarning++; | 5854 buildCounterSubnetworksScopedListWarning++; |
| 5853 if (buildCounterSubnetworksScopedListWarning < 3) { | 5855 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5854 o.code = "foo"; | 5856 o.code = "foo"; |
| 5855 o.data = buildUnnamed839(); | 5857 o.data = buildUnnamed2542(); |
| 5856 o.message = "foo"; | 5858 o.message = "foo"; |
| 5857 } | 5859 } |
| 5858 buildCounterSubnetworksScopedListWarning--; | 5860 buildCounterSubnetworksScopedListWarning--; |
| 5859 return o; | 5861 return o; |
| 5860 } | 5862 } |
| 5861 | 5863 |
| 5862 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { | 5864 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { |
| 5863 buildCounterSubnetworksScopedListWarning++; | 5865 buildCounterSubnetworksScopedListWarning++; |
| 5864 if (buildCounterSubnetworksScopedListWarning < 3) { | 5866 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5865 unittest.expect(o.code, unittest.equals('foo')); | 5867 unittest.expect(o.code, unittest.equals('foo')); |
| 5866 checkUnnamed839(o.data); | 5868 checkUnnamed2542(o.data); |
| 5867 unittest.expect(o.message, unittest.equals('foo')); | 5869 unittest.expect(o.message, unittest.equals('foo')); |
| 5868 } | 5870 } |
| 5869 buildCounterSubnetworksScopedListWarning--; | 5871 buildCounterSubnetworksScopedListWarning--; |
| 5870 } | 5872 } |
| 5871 | 5873 |
| 5872 core.int buildCounterSubnetworksScopedList = 0; | 5874 core.int buildCounterSubnetworksScopedList = 0; |
| 5873 buildSubnetworksScopedList() { | 5875 buildSubnetworksScopedList() { |
| 5874 var o = new api.SubnetworksScopedList(); | 5876 var o = new api.SubnetworksScopedList(); |
| 5875 buildCounterSubnetworksScopedList++; | 5877 buildCounterSubnetworksScopedList++; |
| 5876 if (buildCounterSubnetworksScopedList < 3) { | 5878 if (buildCounterSubnetworksScopedList < 3) { |
| 5877 o.subnetworks = buildUnnamed838(); | 5879 o.subnetworks = buildUnnamed2541(); |
| 5878 o.warning = buildSubnetworksScopedListWarning(); | 5880 o.warning = buildSubnetworksScopedListWarning(); |
| 5879 } | 5881 } |
| 5880 buildCounterSubnetworksScopedList--; | 5882 buildCounterSubnetworksScopedList--; |
| 5881 return o; | 5883 return o; |
| 5882 } | 5884 } |
| 5883 | 5885 |
| 5884 checkSubnetworksScopedList(api.SubnetworksScopedList o) { | 5886 checkSubnetworksScopedList(api.SubnetworksScopedList o) { |
| 5885 buildCounterSubnetworksScopedList++; | 5887 buildCounterSubnetworksScopedList++; |
| 5886 if (buildCounterSubnetworksScopedList < 3) { | 5888 if (buildCounterSubnetworksScopedList < 3) { |
| 5887 checkUnnamed838(o.subnetworks); | 5889 checkUnnamed2541(o.subnetworks); |
| 5888 checkSubnetworksScopedListWarning(o.warning); | 5890 checkSubnetworksScopedListWarning(o.warning); |
| 5889 } | 5891 } |
| 5890 buildCounterSubnetworksScopedList--; | 5892 buildCounterSubnetworksScopedList--; |
| 5891 } | 5893 } |
| 5892 | 5894 |
| 5893 buildUnnamed840() { | 5895 buildUnnamed2543() { |
| 5894 var o = new core.List<core.String>(); | 5896 var o = new core.List<core.String>(); |
| 5895 o.add("foo"); | 5897 o.add("foo"); |
| 5896 o.add("foo"); | 5898 o.add("foo"); |
| 5897 return o; | 5899 return o; |
| 5898 } | 5900 } |
| 5899 | 5901 |
| 5900 checkUnnamed840(core.List<core.String> o) { | 5902 checkUnnamed2543(core.List<core.String> o) { |
| 5901 unittest.expect(o, unittest.hasLength(2)); | 5903 unittest.expect(o, unittest.hasLength(2)); |
| 5902 unittest.expect(o[0], unittest.equals('foo')); | 5904 unittest.expect(o[0], unittest.equals('foo')); |
| 5903 unittest.expect(o[1], unittest.equals('foo')); | 5905 unittest.expect(o[1], unittest.equals('foo')); |
| 5904 } | 5906 } |
| 5905 | 5907 |
| 5906 core.int buildCounterTags = 0; | 5908 core.int buildCounterTags = 0; |
| 5907 buildTags() { | 5909 buildTags() { |
| 5908 var o = new api.Tags(); | 5910 var o = new api.Tags(); |
| 5909 buildCounterTags++; | 5911 buildCounterTags++; |
| 5910 if (buildCounterTags < 3) { | 5912 if (buildCounterTags < 3) { |
| 5911 o.fingerprint = "foo"; | 5913 o.fingerprint = "foo"; |
| 5912 o.items = buildUnnamed840(); | 5914 o.items = buildUnnamed2543(); |
| 5913 } | 5915 } |
| 5914 buildCounterTags--; | 5916 buildCounterTags--; |
| 5915 return o; | 5917 return o; |
| 5916 } | 5918 } |
| 5917 | 5919 |
| 5918 checkTags(api.Tags o) { | 5920 checkTags(api.Tags o) { |
| 5919 buildCounterTags++; | 5921 buildCounterTags++; |
| 5920 if (buildCounterTags < 3) { | 5922 if (buildCounterTags < 3) { |
| 5921 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5923 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5922 checkUnnamed840(o.items); | 5924 checkUnnamed2543(o.items); |
| 5923 } | 5925 } |
| 5924 buildCounterTags--; | 5926 buildCounterTags--; |
| 5925 } | 5927 } |
| 5926 | 5928 |
| 5927 core.int buildCounterTargetHttpProxy = 0; | 5929 core.int buildCounterTargetHttpProxy = 0; |
| 5928 buildTargetHttpProxy() { | 5930 buildTargetHttpProxy() { |
| 5929 var o = new api.TargetHttpProxy(); | 5931 var o = new api.TargetHttpProxy(); |
| 5930 buildCounterTargetHttpProxy++; | 5932 buildCounterTargetHttpProxy++; |
| 5931 if (buildCounterTargetHttpProxy < 3) { | 5933 if (buildCounterTargetHttpProxy < 3) { |
| 5932 o.creationTimestamp = "foo"; | 5934 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5948 unittest.expect(o.description, unittest.equals('foo')); | 5950 unittest.expect(o.description, unittest.equals('foo')); |
| 5949 unittest.expect(o.id, unittest.equals('foo')); | 5951 unittest.expect(o.id, unittest.equals('foo')); |
| 5950 unittest.expect(o.kind, unittest.equals('foo')); | 5952 unittest.expect(o.kind, unittest.equals('foo')); |
| 5951 unittest.expect(o.name, unittest.equals('foo')); | 5953 unittest.expect(o.name, unittest.equals('foo')); |
| 5952 unittest.expect(o.selfLink, unittest.equals('foo')); | 5954 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5953 unittest.expect(o.urlMap, unittest.equals('foo')); | 5955 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 5954 } | 5956 } |
| 5955 buildCounterTargetHttpProxy--; | 5957 buildCounterTargetHttpProxy--; |
| 5956 } | 5958 } |
| 5957 | 5959 |
| 5958 buildUnnamed841() { | 5960 buildUnnamed2544() { |
| 5959 var o = new core.List<api.TargetHttpProxy>(); | 5961 var o = new core.List<api.TargetHttpProxy>(); |
| 5960 o.add(buildTargetHttpProxy()); | 5962 o.add(buildTargetHttpProxy()); |
| 5961 o.add(buildTargetHttpProxy()); | 5963 o.add(buildTargetHttpProxy()); |
| 5962 return o; | 5964 return o; |
| 5963 } | 5965 } |
| 5964 | 5966 |
| 5965 checkUnnamed841(core.List<api.TargetHttpProxy> o) { | 5967 checkUnnamed2544(core.List<api.TargetHttpProxy> o) { |
| 5966 unittest.expect(o, unittest.hasLength(2)); | 5968 unittest.expect(o, unittest.hasLength(2)); |
| 5967 checkTargetHttpProxy(o[0]); | 5969 checkTargetHttpProxy(o[0]); |
| 5968 checkTargetHttpProxy(o[1]); | 5970 checkTargetHttpProxy(o[1]); |
| 5969 } | 5971 } |
| 5970 | 5972 |
| 5971 core.int buildCounterTargetHttpProxyList = 0; | 5973 core.int buildCounterTargetHttpProxyList = 0; |
| 5972 buildTargetHttpProxyList() { | 5974 buildTargetHttpProxyList() { |
| 5973 var o = new api.TargetHttpProxyList(); | 5975 var o = new api.TargetHttpProxyList(); |
| 5974 buildCounterTargetHttpProxyList++; | 5976 buildCounterTargetHttpProxyList++; |
| 5975 if (buildCounterTargetHttpProxyList < 3) { | 5977 if (buildCounterTargetHttpProxyList < 3) { |
| 5976 o.id = "foo"; | 5978 o.id = "foo"; |
| 5977 o.items = buildUnnamed841(); | 5979 o.items = buildUnnamed2544(); |
| 5978 o.kind = "foo"; | 5980 o.kind = "foo"; |
| 5979 o.nextPageToken = "foo"; | 5981 o.nextPageToken = "foo"; |
| 5980 o.selfLink = "foo"; | 5982 o.selfLink = "foo"; |
| 5981 } | 5983 } |
| 5982 buildCounterTargetHttpProxyList--; | 5984 buildCounterTargetHttpProxyList--; |
| 5983 return o; | 5985 return o; |
| 5984 } | 5986 } |
| 5985 | 5987 |
| 5986 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 5988 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 5987 buildCounterTargetHttpProxyList++; | 5989 buildCounterTargetHttpProxyList++; |
| 5988 if (buildCounterTargetHttpProxyList < 3) { | 5990 if (buildCounterTargetHttpProxyList < 3) { |
| 5989 unittest.expect(o.id, unittest.equals('foo')); | 5991 unittest.expect(o.id, unittest.equals('foo')); |
| 5990 checkUnnamed841(o.items); | 5992 checkUnnamed2544(o.items); |
| 5991 unittest.expect(o.kind, unittest.equals('foo')); | 5993 unittest.expect(o.kind, unittest.equals('foo')); |
| 5992 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5994 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5993 unittest.expect(o.selfLink, unittest.equals('foo')); | 5995 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5994 } | 5996 } |
| 5995 buildCounterTargetHttpProxyList--; | 5997 buildCounterTargetHttpProxyList--; |
| 5996 } | 5998 } |
| 5997 | 5999 |
| 5998 buildUnnamed842() { | 6000 buildUnnamed2545() { |
| 5999 var o = new core.List<core.String>(); | 6001 var o = new core.List<core.String>(); |
| 6000 o.add("foo"); | 6002 o.add("foo"); |
| 6001 o.add("foo"); | 6003 o.add("foo"); |
| 6002 return o; | 6004 return o; |
| 6003 } | 6005 } |
| 6004 | 6006 |
| 6005 checkUnnamed842(core.List<core.String> o) { | 6007 checkUnnamed2545(core.List<core.String> o) { |
| 6006 unittest.expect(o, unittest.hasLength(2)); | 6008 unittest.expect(o, unittest.hasLength(2)); |
| 6007 unittest.expect(o[0], unittest.equals('foo')); | 6009 unittest.expect(o[0], unittest.equals('foo')); |
| 6008 unittest.expect(o[1], unittest.equals('foo')); | 6010 unittest.expect(o[1], unittest.equals('foo')); |
| 6009 } | 6011 } |
| 6010 | 6012 |
| 6011 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; | 6013 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; |
| 6012 buildTargetHttpsProxiesSetSslCertificatesRequest() { | 6014 buildTargetHttpsProxiesSetSslCertificatesRequest() { |
| 6013 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); | 6015 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); |
| 6014 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 6016 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 6015 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 6017 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 6016 o.sslCertificates = buildUnnamed842(); | 6018 o.sslCertificates = buildUnnamed2545(); |
| 6017 } | 6019 } |
| 6018 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 6020 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 6019 return o; | 6021 return o; |
| 6020 } | 6022 } |
| 6021 | 6023 |
| 6022 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { | 6024 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { |
| 6023 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 6025 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 6024 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 6026 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 6025 checkUnnamed842(o.sslCertificates); | 6027 checkUnnamed2545(o.sslCertificates); |
| 6026 } | 6028 } |
| 6027 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 6029 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 6028 } | 6030 } |
| 6029 | 6031 |
| 6030 buildUnnamed843() { | 6032 buildUnnamed2546() { |
| 6031 var o = new core.List<core.String>(); | 6033 var o = new core.List<core.String>(); |
| 6032 o.add("foo"); | 6034 o.add("foo"); |
| 6033 o.add("foo"); | 6035 o.add("foo"); |
| 6034 return o; | 6036 return o; |
| 6035 } | 6037 } |
| 6036 | 6038 |
| 6037 checkUnnamed843(core.List<core.String> o) { | 6039 checkUnnamed2546(core.List<core.String> o) { |
| 6038 unittest.expect(o, unittest.hasLength(2)); | 6040 unittest.expect(o, unittest.hasLength(2)); |
| 6039 unittest.expect(o[0], unittest.equals('foo')); | 6041 unittest.expect(o[0], unittest.equals('foo')); |
| 6040 unittest.expect(o[1], unittest.equals('foo')); | 6042 unittest.expect(o[1], unittest.equals('foo')); |
| 6041 } | 6043 } |
| 6042 | 6044 |
| 6043 core.int buildCounterTargetHttpsProxy = 0; | 6045 core.int buildCounterTargetHttpsProxy = 0; |
| 6044 buildTargetHttpsProxy() { | 6046 buildTargetHttpsProxy() { |
| 6045 var o = new api.TargetHttpsProxy(); | 6047 var o = new api.TargetHttpsProxy(); |
| 6046 buildCounterTargetHttpsProxy++; | 6048 buildCounterTargetHttpsProxy++; |
| 6047 if (buildCounterTargetHttpsProxy < 3) { | 6049 if (buildCounterTargetHttpsProxy < 3) { |
| 6048 o.creationTimestamp = "foo"; | 6050 o.creationTimestamp = "foo"; |
| 6049 o.description = "foo"; | 6051 o.description = "foo"; |
| 6050 o.id = "foo"; | 6052 o.id = "foo"; |
| 6051 o.kind = "foo"; | 6053 o.kind = "foo"; |
| 6052 o.name = "foo"; | 6054 o.name = "foo"; |
| 6053 o.selfLink = "foo"; | 6055 o.selfLink = "foo"; |
| 6054 o.sslCertificates = buildUnnamed843(); | 6056 o.sslCertificates = buildUnnamed2546(); |
| 6055 o.urlMap = "foo"; | 6057 o.urlMap = "foo"; |
| 6056 } | 6058 } |
| 6057 buildCounterTargetHttpsProxy--; | 6059 buildCounterTargetHttpsProxy--; |
| 6058 return o; | 6060 return o; |
| 6059 } | 6061 } |
| 6060 | 6062 |
| 6061 checkTargetHttpsProxy(api.TargetHttpsProxy o) { | 6063 checkTargetHttpsProxy(api.TargetHttpsProxy o) { |
| 6062 buildCounterTargetHttpsProxy++; | 6064 buildCounterTargetHttpsProxy++; |
| 6063 if (buildCounterTargetHttpsProxy < 3) { | 6065 if (buildCounterTargetHttpsProxy < 3) { |
| 6064 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6066 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6065 unittest.expect(o.description, unittest.equals('foo')); | 6067 unittest.expect(o.description, unittest.equals('foo')); |
| 6066 unittest.expect(o.id, unittest.equals('foo')); | 6068 unittest.expect(o.id, unittest.equals('foo')); |
| 6067 unittest.expect(o.kind, unittest.equals('foo')); | 6069 unittest.expect(o.kind, unittest.equals('foo')); |
| 6068 unittest.expect(o.name, unittest.equals('foo')); | 6070 unittest.expect(o.name, unittest.equals('foo')); |
| 6069 unittest.expect(o.selfLink, unittest.equals('foo')); | 6071 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6070 checkUnnamed843(o.sslCertificates); | 6072 checkUnnamed2546(o.sslCertificates); |
| 6071 unittest.expect(o.urlMap, unittest.equals('foo')); | 6073 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 6072 } | 6074 } |
| 6073 buildCounterTargetHttpsProxy--; | 6075 buildCounterTargetHttpsProxy--; |
| 6074 } | 6076 } |
| 6075 | 6077 |
| 6076 buildUnnamed844() { | 6078 buildUnnamed2547() { |
| 6077 var o = new core.List<api.TargetHttpsProxy>(); | 6079 var o = new core.List<api.TargetHttpsProxy>(); |
| 6078 o.add(buildTargetHttpsProxy()); | 6080 o.add(buildTargetHttpsProxy()); |
| 6079 o.add(buildTargetHttpsProxy()); | 6081 o.add(buildTargetHttpsProxy()); |
| 6080 return o; | 6082 return o; |
| 6081 } | 6083 } |
| 6082 | 6084 |
| 6083 checkUnnamed844(core.List<api.TargetHttpsProxy> o) { | 6085 checkUnnamed2547(core.List<api.TargetHttpsProxy> o) { |
| 6084 unittest.expect(o, unittest.hasLength(2)); | 6086 unittest.expect(o, unittest.hasLength(2)); |
| 6085 checkTargetHttpsProxy(o[0]); | 6087 checkTargetHttpsProxy(o[0]); |
| 6086 checkTargetHttpsProxy(o[1]); | 6088 checkTargetHttpsProxy(o[1]); |
| 6087 } | 6089 } |
| 6088 | 6090 |
| 6089 core.int buildCounterTargetHttpsProxyList = 0; | 6091 core.int buildCounterTargetHttpsProxyList = 0; |
| 6090 buildTargetHttpsProxyList() { | 6092 buildTargetHttpsProxyList() { |
| 6091 var o = new api.TargetHttpsProxyList(); | 6093 var o = new api.TargetHttpsProxyList(); |
| 6092 buildCounterTargetHttpsProxyList++; | 6094 buildCounterTargetHttpsProxyList++; |
| 6093 if (buildCounterTargetHttpsProxyList < 3) { | 6095 if (buildCounterTargetHttpsProxyList < 3) { |
| 6094 o.id = "foo"; | 6096 o.id = "foo"; |
| 6095 o.items = buildUnnamed844(); | 6097 o.items = buildUnnamed2547(); |
| 6096 o.kind = "foo"; | 6098 o.kind = "foo"; |
| 6097 o.nextPageToken = "foo"; | 6099 o.nextPageToken = "foo"; |
| 6098 o.selfLink = "foo"; | 6100 o.selfLink = "foo"; |
| 6099 } | 6101 } |
| 6100 buildCounterTargetHttpsProxyList--; | 6102 buildCounterTargetHttpsProxyList--; |
| 6101 return o; | 6103 return o; |
| 6102 } | 6104 } |
| 6103 | 6105 |
| 6104 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { | 6106 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { |
| 6105 buildCounterTargetHttpsProxyList++; | 6107 buildCounterTargetHttpsProxyList++; |
| 6106 if (buildCounterTargetHttpsProxyList < 3) { | 6108 if (buildCounterTargetHttpsProxyList < 3) { |
| 6107 unittest.expect(o.id, unittest.equals('foo')); | 6109 unittest.expect(o.id, unittest.equals('foo')); |
| 6108 checkUnnamed844(o.items); | 6110 checkUnnamed2547(o.items); |
| 6109 unittest.expect(o.kind, unittest.equals('foo')); | 6111 unittest.expect(o.kind, unittest.equals('foo')); |
| 6110 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6112 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6111 unittest.expect(o.selfLink, unittest.equals('foo')); | 6113 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6112 } | 6114 } |
| 6113 buildCounterTargetHttpsProxyList--; | 6115 buildCounterTargetHttpsProxyList--; |
| 6114 } | 6116 } |
| 6115 | 6117 |
| 6116 core.int buildCounterTargetInstance = 0; | 6118 core.int buildCounterTargetInstance = 0; |
| 6117 buildTargetInstance() { | 6119 buildTargetInstance() { |
| 6118 var o = new api.TargetInstance(); | 6120 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6141 unittest.expect(o.instance, unittest.equals('foo')); | 6143 unittest.expect(o.instance, unittest.equals('foo')); |
| 6142 unittest.expect(o.kind, unittest.equals('foo')); | 6144 unittest.expect(o.kind, unittest.equals('foo')); |
| 6143 unittest.expect(o.name, unittest.equals('foo')); | 6145 unittest.expect(o.name, unittest.equals('foo')); |
| 6144 unittest.expect(o.natPolicy, unittest.equals('foo')); | 6146 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 6145 unittest.expect(o.selfLink, unittest.equals('foo')); | 6147 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6146 unittest.expect(o.zone, unittest.equals('foo')); | 6148 unittest.expect(o.zone, unittest.equals('foo')); |
| 6147 } | 6149 } |
| 6148 buildCounterTargetInstance--; | 6150 buildCounterTargetInstance--; |
| 6149 } | 6151 } |
| 6150 | 6152 |
| 6151 buildUnnamed845() { | 6153 buildUnnamed2548() { |
| 6152 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 6154 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 6153 o["x"] = buildTargetInstancesScopedList(); | 6155 o["x"] = buildTargetInstancesScopedList(); |
| 6154 o["y"] = buildTargetInstancesScopedList(); | 6156 o["y"] = buildTargetInstancesScopedList(); |
| 6155 return o; | 6157 return o; |
| 6156 } | 6158 } |
| 6157 | 6159 |
| 6158 checkUnnamed845(core.Map<core.String, api.TargetInstancesScopedList> o) { | 6160 checkUnnamed2548(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 6159 unittest.expect(o, unittest.hasLength(2)); | 6161 unittest.expect(o, unittest.hasLength(2)); |
| 6160 checkTargetInstancesScopedList(o["x"]); | 6162 checkTargetInstancesScopedList(o["x"]); |
| 6161 checkTargetInstancesScopedList(o["y"]); | 6163 checkTargetInstancesScopedList(o["y"]); |
| 6162 } | 6164 } |
| 6163 | 6165 |
| 6164 core.int buildCounterTargetInstanceAggregatedList = 0; | 6166 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 6165 buildTargetInstanceAggregatedList() { | 6167 buildTargetInstanceAggregatedList() { |
| 6166 var o = new api.TargetInstanceAggregatedList(); | 6168 var o = new api.TargetInstanceAggregatedList(); |
| 6167 buildCounterTargetInstanceAggregatedList++; | 6169 buildCounterTargetInstanceAggregatedList++; |
| 6168 if (buildCounterTargetInstanceAggregatedList < 3) { | 6170 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 6169 o.id = "foo"; | 6171 o.id = "foo"; |
| 6170 o.items = buildUnnamed845(); | 6172 o.items = buildUnnamed2548(); |
| 6171 o.kind = "foo"; | 6173 o.kind = "foo"; |
| 6172 o.nextPageToken = "foo"; | 6174 o.nextPageToken = "foo"; |
| 6173 o.selfLink = "foo"; | 6175 o.selfLink = "foo"; |
| 6174 } | 6176 } |
| 6175 buildCounterTargetInstanceAggregatedList--; | 6177 buildCounterTargetInstanceAggregatedList--; |
| 6176 return o; | 6178 return o; |
| 6177 } | 6179 } |
| 6178 | 6180 |
| 6179 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 6181 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 6180 buildCounterTargetInstanceAggregatedList++; | 6182 buildCounterTargetInstanceAggregatedList++; |
| 6181 if (buildCounterTargetInstanceAggregatedList < 3) { | 6183 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 6182 unittest.expect(o.id, unittest.equals('foo')); | 6184 unittest.expect(o.id, unittest.equals('foo')); |
| 6183 checkUnnamed845(o.items); | 6185 checkUnnamed2548(o.items); |
| 6184 unittest.expect(o.kind, unittest.equals('foo')); | 6186 unittest.expect(o.kind, unittest.equals('foo')); |
| 6185 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6187 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6186 unittest.expect(o.selfLink, unittest.equals('foo')); | 6188 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6187 } | 6189 } |
| 6188 buildCounterTargetInstanceAggregatedList--; | 6190 buildCounterTargetInstanceAggregatedList--; |
| 6189 } | 6191 } |
| 6190 | 6192 |
| 6191 buildUnnamed846() { | 6193 buildUnnamed2549() { |
| 6192 var o = new core.List<api.TargetInstance>(); | 6194 var o = new core.List<api.TargetInstance>(); |
| 6193 o.add(buildTargetInstance()); | 6195 o.add(buildTargetInstance()); |
| 6194 o.add(buildTargetInstance()); | 6196 o.add(buildTargetInstance()); |
| 6195 return o; | 6197 return o; |
| 6196 } | 6198 } |
| 6197 | 6199 |
| 6198 checkUnnamed846(core.List<api.TargetInstance> o) { | 6200 checkUnnamed2549(core.List<api.TargetInstance> o) { |
| 6199 unittest.expect(o, unittest.hasLength(2)); | 6201 unittest.expect(o, unittest.hasLength(2)); |
| 6200 checkTargetInstance(o[0]); | 6202 checkTargetInstance(o[0]); |
| 6201 checkTargetInstance(o[1]); | 6203 checkTargetInstance(o[1]); |
| 6202 } | 6204 } |
| 6203 | 6205 |
| 6204 core.int buildCounterTargetInstanceList = 0; | 6206 core.int buildCounterTargetInstanceList = 0; |
| 6205 buildTargetInstanceList() { | 6207 buildTargetInstanceList() { |
| 6206 var o = new api.TargetInstanceList(); | 6208 var o = new api.TargetInstanceList(); |
| 6207 buildCounterTargetInstanceList++; | 6209 buildCounterTargetInstanceList++; |
| 6208 if (buildCounterTargetInstanceList < 3) { | 6210 if (buildCounterTargetInstanceList < 3) { |
| 6209 o.id = "foo"; | 6211 o.id = "foo"; |
| 6210 o.items = buildUnnamed846(); | 6212 o.items = buildUnnamed2549(); |
| 6211 o.kind = "foo"; | 6213 o.kind = "foo"; |
| 6212 o.nextPageToken = "foo"; | 6214 o.nextPageToken = "foo"; |
| 6213 o.selfLink = "foo"; | 6215 o.selfLink = "foo"; |
| 6214 } | 6216 } |
| 6215 buildCounterTargetInstanceList--; | 6217 buildCounterTargetInstanceList--; |
| 6216 return o; | 6218 return o; |
| 6217 } | 6219 } |
| 6218 | 6220 |
| 6219 checkTargetInstanceList(api.TargetInstanceList o) { | 6221 checkTargetInstanceList(api.TargetInstanceList o) { |
| 6220 buildCounterTargetInstanceList++; | 6222 buildCounterTargetInstanceList++; |
| 6221 if (buildCounterTargetInstanceList < 3) { | 6223 if (buildCounterTargetInstanceList < 3) { |
| 6222 unittest.expect(o.id, unittest.equals('foo')); | 6224 unittest.expect(o.id, unittest.equals('foo')); |
| 6223 checkUnnamed846(o.items); | 6225 checkUnnamed2549(o.items); |
| 6224 unittest.expect(o.kind, unittest.equals('foo')); | 6226 unittest.expect(o.kind, unittest.equals('foo')); |
| 6225 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6227 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6226 unittest.expect(o.selfLink, unittest.equals('foo')); | 6228 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6227 } | 6229 } |
| 6228 buildCounterTargetInstanceList--; | 6230 buildCounterTargetInstanceList--; |
| 6229 } | 6231 } |
| 6230 | 6232 |
| 6231 buildUnnamed847() { | 6233 buildUnnamed2550() { |
| 6232 var o = new core.List<api.TargetInstance>(); | 6234 var o = new core.List<api.TargetInstance>(); |
| 6233 o.add(buildTargetInstance()); | 6235 o.add(buildTargetInstance()); |
| 6234 o.add(buildTargetInstance()); | 6236 o.add(buildTargetInstance()); |
| 6235 return o; | 6237 return o; |
| 6236 } | 6238 } |
| 6237 | 6239 |
| 6238 checkUnnamed847(core.List<api.TargetInstance> o) { | 6240 checkUnnamed2550(core.List<api.TargetInstance> o) { |
| 6239 unittest.expect(o, unittest.hasLength(2)); | 6241 unittest.expect(o, unittest.hasLength(2)); |
| 6240 checkTargetInstance(o[0]); | 6242 checkTargetInstance(o[0]); |
| 6241 checkTargetInstance(o[1]); | 6243 checkTargetInstance(o[1]); |
| 6242 } | 6244 } |
| 6243 | 6245 |
| 6244 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 6246 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 6245 buildTargetInstancesScopedListWarningData() { | 6247 buildTargetInstancesScopedListWarningData() { |
| 6246 var o = new api.TargetInstancesScopedListWarningData(); | 6248 var o = new api.TargetInstancesScopedListWarningData(); |
| 6247 buildCounterTargetInstancesScopedListWarningData++; | 6249 buildCounterTargetInstancesScopedListWarningData++; |
| 6248 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 6250 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 6249 o.key = "foo"; | 6251 o.key = "foo"; |
| 6250 o.value = "foo"; | 6252 o.value = "foo"; |
| 6251 } | 6253 } |
| 6252 buildCounterTargetInstancesScopedListWarningData--; | 6254 buildCounterTargetInstancesScopedListWarningData--; |
| 6253 return o; | 6255 return o; |
| 6254 } | 6256 } |
| 6255 | 6257 |
| 6256 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 6258 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 6257 buildCounterTargetInstancesScopedListWarningData++; | 6259 buildCounterTargetInstancesScopedListWarningData++; |
| 6258 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 6260 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 6259 unittest.expect(o.key, unittest.equals('foo')); | 6261 unittest.expect(o.key, unittest.equals('foo')); |
| 6260 unittest.expect(o.value, unittest.equals('foo')); | 6262 unittest.expect(o.value, unittest.equals('foo')); |
| 6261 } | 6263 } |
| 6262 buildCounterTargetInstancesScopedListWarningData--; | 6264 buildCounterTargetInstancesScopedListWarningData--; |
| 6263 } | 6265 } |
| 6264 | 6266 |
| 6265 buildUnnamed848() { | 6267 buildUnnamed2551() { |
| 6266 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 6268 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 6267 o.add(buildTargetInstancesScopedListWarningData()); | 6269 o.add(buildTargetInstancesScopedListWarningData()); |
| 6268 o.add(buildTargetInstancesScopedListWarningData()); | 6270 o.add(buildTargetInstancesScopedListWarningData()); |
| 6269 return o; | 6271 return o; |
| 6270 } | 6272 } |
| 6271 | 6273 |
| 6272 checkUnnamed848(core.List<api.TargetInstancesScopedListWarningData> o) { | 6274 checkUnnamed2551(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 6273 unittest.expect(o, unittest.hasLength(2)); | 6275 unittest.expect(o, unittest.hasLength(2)); |
| 6274 checkTargetInstancesScopedListWarningData(o[0]); | 6276 checkTargetInstancesScopedListWarningData(o[0]); |
| 6275 checkTargetInstancesScopedListWarningData(o[1]); | 6277 checkTargetInstancesScopedListWarningData(o[1]); |
| 6276 } | 6278 } |
| 6277 | 6279 |
| 6278 core.int buildCounterTargetInstancesScopedListWarning = 0; | 6280 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 6279 buildTargetInstancesScopedListWarning() { | 6281 buildTargetInstancesScopedListWarning() { |
| 6280 var o = new api.TargetInstancesScopedListWarning(); | 6282 var o = new api.TargetInstancesScopedListWarning(); |
| 6281 buildCounterTargetInstancesScopedListWarning++; | 6283 buildCounterTargetInstancesScopedListWarning++; |
| 6282 if (buildCounterTargetInstancesScopedListWarning < 3) { | 6284 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 6283 o.code = "foo"; | 6285 o.code = "foo"; |
| 6284 o.data = buildUnnamed848(); | 6286 o.data = buildUnnamed2551(); |
| 6285 o.message = "foo"; | 6287 o.message = "foo"; |
| 6286 } | 6288 } |
| 6287 buildCounterTargetInstancesScopedListWarning--; | 6289 buildCounterTargetInstancesScopedListWarning--; |
| 6288 return o; | 6290 return o; |
| 6289 } | 6291 } |
| 6290 | 6292 |
| 6291 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 6293 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 6292 buildCounterTargetInstancesScopedListWarning++; | 6294 buildCounterTargetInstancesScopedListWarning++; |
| 6293 if (buildCounterTargetInstancesScopedListWarning < 3) { | 6295 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 6294 unittest.expect(o.code, unittest.equals('foo')); | 6296 unittest.expect(o.code, unittest.equals('foo')); |
| 6295 checkUnnamed848(o.data); | 6297 checkUnnamed2551(o.data); |
| 6296 unittest.expect(o.message, unittest.equals('foo')); | 6298 unittest.expect(o.message, unittest.equals('foo')); |
| 6297 } | 6299 } |
| 6298 buildCounterTargetInstancesScopedListWarning--; | 6300 buildCounterTargetInstancesScopedListWarning--; |
| 6299 } | 6301 } |
| 6300 | 6302 |
| 6301 core.int buildCounterTargetInstancesScopedList = 0; | 6303 core.int buildCounterTargetInstancesScopedList = 0; |
| 6302 buildTargetInstancesScopedList() { | 6304 buildTargetInstancesScopedList() { |
| 6303 var o = new api.TargetInstancesScopedList(); | 6305 var o = new api.TargetInstancesScopedList(); |
| 6304 buildCounterTargetInstancesScopedList++; | 6306 buildCounterTargetInstancesScopedList++; |
| 6305 if (buildCounterTargetInstancesScopedList < 3) { | 6307 if (buildCounterTargetInstancesScopedList < 3) { |
| 6306 o.targetInstances = buildUnnamed847(); | 6308 o.targetInstances = buildUnnamed2550(); |
| 6307 o.warning = buildTargetInstancesScopedListWarning(); | 6309 o.warning = buildTargetInstancesScopedListWarning(); |
| 6308 } | 6310 } |
| 6309 buildCounterTargetInstancesScopedList--; | 6311 buildCounterTargetInstancesScopedList--; |
| 6310 return o; | 6312 return o; |
| 6311 } | 6313 } |
| 6312 | 6314 |
| 6313 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 6315 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 6314 buildCounterTargetInstancesScopedList++; | 6316 buildCounterTargetInstancesScopedList++; |
| 6315 if (buildCounterTargetInstancesScopedList < 3) { | 6317 if (buildCounterTargetInstancesScopedList < 3) { |
| 6316 checkUnnamed847(o.targetInstances); | 6318 checkUnnamed2550(o.targetInstances); |
| 6317 checkTargetInstancesScopedListWarning(o.warning); | 6319 checkTargetInstancesScopedListWarning(o.warning); |
| 6318 } | 6320 } |
| 6319 buildCounterTargetInstancesScopedList--; | 6321 buildCounterTargetInstancesScopedList--; |
| 6320 } | 6322 } |
| 6321 | 6323 |
| 6322 buildUnnamed849() { | 6324 buildUnnamed2552() { |
| 6323 var o = new core.List<core.String>(); | 6325 var o = new core.List<core.String>(); |
| 6324 o.add("foo"); | 6326 o.add("foo"); |
| 6325 o.add("foo"); | 6327 o.add("foo"); |
| 6326 return o; | 6328 return o; |
| 6327 } | 6329 } |
| 6328 | 6330 |
| 6329 checkUnnamed849(core.List<core.String> o) { | 6331 checkUnnamed2552(core.List<core.String> o) { |
| 6330 unittest.expect(o, unittest.hasLength(2)); | 6332 unittest.expect(o, unittest.hasLength(2)); |
| 6331 unittest.expect(o[0], unittest.equals('foo')); | 6333 unittest.expect(o[0], unittest.equals('foo')); |
| 6332 unittest.expect(o[1], unittest.equals('foo')); | 6334 unittest.expect(o[1], unittest.equals('foo')); |
| 6333 } | 6335 } |
| 6334 | 6336 |
| 6335 buildUnnamed850() { | 6337 buildUnnamed2553() { |
| 6336 var o = new core.List<core.String>(); | 6338 var o = new core.List<core.String>(); |
| 6337 o.add("foo"); | 6339 o.add("foo"); |
| 6338 o.add("foo"); | 6340 o.add("foo"); |
| 6339 return o; | 6341 return o; |
| 6340 } | 6342 } |
| 6341 | 6343 |
| 6342 checkUnnamed850(core.List<core.String> o) { | 6344 checkUnnamed2553(core.List<core.String> o) { |
| 6343 unittest.expect(o, unittest.hasLength(2)); | 6345 unittest.expect(o, unittest.hasLength(2)); |
| 6344 unittest.expect(o[0], unittest.equals('foo')); | 6346 unittest.expect(o[0], unittest.equals('foo')); |
| 6345 unittest.expect(o[1], unittest.equals('foo')); | 6347 unittest.expect(o[1], unittest.equals('foo')); |
| 6346 } | 6348 } |
| 6347 | 6349 |
| 6348 core.int buildCounterTargetPool = 0; | 6350 core.int buildCounterTargetPool = 0; |
| 6349 buildTargetPool() { | 6351 buildTargetPool() { |
| 6350 var o = new api.TargetPool(); | 6352 var o = new api.TargetPool(); |
| 6351 buildCounterTargetPool++; | 6353 buildCounterTargetPool++; |
| 6352 if (buildCounterTargetPool < 3) { | 6354 if (buildCounterTargetPool < 3) { |
| 6353 o.backupPool = "foo"; | 6355 o.backupPool = "foo"; |
| 6354 o.creationTimestamp = "foo"; | 6356 o.creationTimestamp = "foo"; |
| 6355 o.description = "foo"; | 6357 o.description = "foo"; |
| 6356 o.failoverRatio = 42.0; | 6358 o.failoverRatio = 42.0; |
| 6357 o.healthChecks = buildUnnamed849(); | 6359 o.healthChecks = buildUnnamed2552(); |
| 6358 o.id = "foo"; | 6360 o.id = "foo"; |
| 6359 o.instances = buildUnnamed850(); | 6361 o.instances = buildUnnamed2553(); |
| 6360 o.kind = "foo"; | 6362 o.kind = "foo"; |
| 6361 o.name = "foo"; | 6363 o.name = "foo"; |
| 6362 o.region = "foo"; | 6364 o.region = "foo"; |
| 6363 o.selfLink = "foo"; | 6365 o.selfLink = "foo"; |
| 6364 o.sessionAffinity = "foo"; | 6366 o.sessionAffinity = "foo"; |
| 6365 } | 6367 } |
| 6366 buildCounterTargetPool--; | 6368 buildCounterTargetPool--; |
| 6367 return o; | 6369 return o; |
| 6368 } | 6370 } |
| 6369 | 6371 |
| 6370 checkTargetPool(api.TargetPool o) { | 6372 checkTargetPool(api.TargetPool o) { |
| 6371 buildCounterTargetPool++; | 6373 buildCounterTargetPool++; |
| 6372 if (buildCounterTargetPool < 3) { | 6374 if (buildCounterTargetPool < 3) { |
| 6373 unittest.expect(o.backupPool, unittest.equals('foo')); | 6375 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 6374 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6376 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6375 unittest.expect(o.description, unittest.equals('foo')); | 6377 unittest.expect(o.description, unittest.equals('foo')); |
| 6376 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 6378 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 6377 checkUnnamed849(o.healthChecks); | 6379 checkUnnamed2552(o.healthChecks); |
| 6378 unittest.expect(o.id, unittest.equals('foo')); | 6380 unittest.expect(o.id, unittest.equals('foo')); |
| 6379 checkUnnamed850(o.instances); | 6381 checkUnnamed2553(o.instances); |
| 6380 unittest.expect(o.kind, unittest.equals('foo')); | 6382 unittest.expect(o.kind, unittest.equals('foo')); |
| 6381 unittest.expect(o.name, unittest.equals('foo')); | 6383 unittest.expect(o.name, unittest.equals('foo')); |
| 6382 unittest.expect(o.region, unittest.equals('foo')); | 6384 unittest.expect(o.region, unittest.equals('foo')); |
| 6383 unittest.expect(o.selfLink, unittest.equals('foo')); | 6385 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6384 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 6386 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 6385 } | 6387 } |
| 6386 buildCounterTargetPool--; | 6388 buildCounterTargetPool--; |
| 6387 } | 6389 } |
| 6388 | 6390 |
| 6389 buildUnnamed851() { | 6391 buildUnnamed2554() { |
| 6390 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 6392 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 6391 o["x"] = buildTargetPoolsScopedList(); | 6393 o["x"] = buildTargetPoolsScopedList(); |
| 6392 o["y"] = buildTargetPoolsScopedList(); | 6394 o["y"] = buildTargetPoolsScopedList(); |
| 6393 return o; | 6395 return o; |
| 6394 } | 6396 } |
| 6395 | 6397 |
| 6396 checkUnnamed851(core.Map<core.String, api.TargetPoolsScopedList> o) { | 6398 checkUnnamed2554(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 6397 unittest.expect(o, unittest.hasLength(2)); | 6399 unittest.expect(o, unittest.hasLength(2)); |
| 6398 checkTargetPoolsScopedList(o["x"]); | 6400 checkTargetPoolsScopedList(o["x"]); |
| 6399 checkTargetPoolsScopedList(o["y"]); | 6401 checkTargetPoolsScopedList(o["y"]); |
| 6400 } | 6402 } |
| 6401 | 6403 |
| 6402 core.int buildCounterTargetPoolAggregatedList = 0; | 6404 core.int buildCounterTargetPoolAggregatedList = 0; |
| 6403 buildTargetPoolAggregatedList() { | 6405 buildTargetPoolAggregatedList() { |
| 6404 var o = new api.TargetPoolAggregatedList(); | 6406 var o = new api.TargetPoolAggregatedList(); |
| 6405 buildCounterTargetPoolAggregatedList++; | 6407 buildCounterTargetPoolAggregatedList++; |
| 6406 if (buildCounterTargetPoolAggregatedList < 3) { | 6408 if (buildCounterTargetPoolAggregatedList < 3) { |
| 6407 o.id = "foo"; | 6409 o.id = "foo"; |
| 6408 o.items = buildUnnamed851(); | 6410 o.items = buildUnnamed2554(); |
| 6409 o.kind = "foo"; | 6411 o.kind = "foo"; |
| 6410 o.nextPageToken = "foo"; | 6412 o.nextPageToken = "foo"; |
| 6411 o.selfLink = "foo"; | 6413 o.selfLink = "foo"; |
| 6412 } | 6414 } |
| 6413 buildCounterTargetPoolAggregatedList--; | 6415 buildCounterTargetPoolAggregatedList--; |
| 6414 return o; | 6416 return o; |
| 6415 } | 6417 } |
| 6416 | 6418 |
| 6417 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 6419 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 6418 buildCounterTargetPoolAggregatedList++; | 6420 buildCounterTargetPoolAggregatedList++; |
| 6419 if (buildCounterTargetPoolAggregatedList < 3) { | 6421 if (buildCounterTargetPoolAggregatedList < 3) { |
| 6420 unittest.expect(o.id, unittest.equals('foo')); | 6422 unittest.expect(o.id, unittest.equals('foo')); |
| 6421 checkUnnamed851(o.items); | 6423 checkUnnamed2554(o.items); |
| 6422 unittest.expect(o.kind, unittest.equals('foo')); | 6424 unittest.expect(o.kind, unittest.equals('foo')); |
| 6423 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6425 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6424 unittest.expect(o.selfLink, unittest.equals('foo')); | 6426 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6425 } | 6427 } |
| 6426 buildCounterTargetPoolAggregatedList--; | 6428 buildCounterTargetPoolAggregatedList--; |
| 6427 } | 6429 } |
| 6428 | 6430 |
| 6429 buildUnnamed852() { | 6431 buildUnnamed2555() { |
| 6430 var o = new core.List<api.HealthStatus>(); | 6432 var o = new core.List<api.HealthStatus>(); |
| 6431 o.add(buildHealthStatus()); | 6433 o.add(buildHealthStatus()); |
| 6432 o.add(buildHealthStatus()); | 6434 o.add(buildHealthStatus()); |
| 6433 return o; | 6435 return o; |
| 6434 } | 6436 } |
| 6435 | 6437 |
| 6436 checkUnnamed852(core.List<api.HealthStatus> o) { | 6438 checkUnnamed2555(core.List<api.HealthStatus> o) { |
| 6437 unittest.expect(o, unittest.hasLength(2)); | 6439 unittest.expect(o, unittest.hasLength(2)); |
| 6438 checkHealthStatus(o[0]); | 6440 checkHealthStatus(o[0]); |
| 6439 checkHealthStatus(o[1]); | 6441 checkHealthStatus(o[1]); |
| 6440 } | 6442 } |
| 6441 | 6443 |
| 6442 core.int buildCounterTargetPoolInstanceHealth = 0; | 6444 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 6443 buildTargetPoolInstanceHealth() { | 6445 buildTargetPoolInstanceHealth() { |
| 6444 var o = new api.TargetPoolInstanceHealth(); | 6446 var o = new api.TargetPoolInstanceHealth(); |
| 6445 buildCounterTargetPoolInstanceHealth++; | 6447 buildCounterTargetPoolInstanceHealth++; |
| 6446 if (buildCounterTargetPoolInstanceHealth < 3) { | 6448 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 6447 o.healthStatus = buildUnnamed852(); | 6449 o.healthStatus = buildUnnamed2555(); |
| 6448 o.kind = "foo"; | 6450 o.kind = "foo"; |
| 6449 } | 6451 } |
| 6450 buildCounterTargetPoolInstanceHealth--; | 6452 buildCounterTargetPoolInstanceHealth--; |
| 6451 return o; | 6453 return o; |
| 6452 } | 6454 } |
| 6453 | 6455 |
| 6454 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 6456 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 6455 buildCounterTargetPoolInstanceHealth++; | 6457 buildCounterTargetPoolInstanceHealth++; |
| 6456 if (buildCounterTargetPoolInstanceHealth < 3) { | 6458 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 6457 checkUnnamed852(o.healthStatus); | 6459 checkUnnamed2555(o.healthStatus); |
| 6458 unittest.expect(o.kind, unittest.equals('foo')); | 6460 unittest.expect(o.kind, unittest.equals('foo')); |
| 6459 } | 6461 } |
| 6460 buildCounterTargetPoolInstanceHealth--; | 6462 buildCounterTargetPoolInstanceHealth--; |
| 6461 } | 6463 } |
| 6462 | 6464 |
| 6463 buildUnnamed853() { | 6465 buildUnnamed2556() { |
| 6464 var o = new core.List<api.TargetPool>(); | 6466 var o = new core.List<api.TargetPool>(); |
| 6465 o.add(buildTargetPool()); | 6467 o.add(buildTargetPool()); |
| 6466 o.add(buildTargetPool()); | 6468 o.add(buildTargetPool()); |
| 6467 return o; | 6469 return o; |
| 6468 } | 6470 } |
| 6469 | 6471 |
| 6470 checkUnnamed853(core.List<api.TargetPool> o) { | 6472 checkUnnamed2556(core.List<api.TargetPool> o) { |
| 6471 unittest.expect(o, unittest.hasLength(2)); | 6473 unittest.expect(o, unittest.hasLength(2)); |
| 6472 checkTargetPool(o[0]); | 6474 checkTargetPool(o[0]); |
| 6473 checkTargetPool(o[1]); | 6475 checkTargetPool(o[1]); |
| 6474 } | 6476 } |
| 6475 | 6477 |
| 6476 core.int buildCounterTargetPoolList = 0; | 6478 core.int buildCounterTargetPoolList = 0; |
| 6477 buildTargetPoolList() { | 6479 buildTargetPoolList() { |
| 6478 var o = new api.TargetPoolList(); | 6480 var o = new api.TargetPoolList(); |
| 6479 buildCounterTargetPoolList++; | 6481 buildCounterTargetPoolList++; |
| 6480 if (buildCounterTargetPoolList < 3) { | 6482 if (buildCounterTargetPoolList < 3) { |
| 6481 o.id = "foo"; | 6483 o.id = "foo"; |
| 6482 o.items = buildUnnamed853(); | 6484 o.items = buildUnnamed2556(); |
| 6483 o.kind = "foo"; | 6485 o.kind = "foo"; |
| 6484 o.nextPageToken = "foo"; | 6486 o.nextPageToken = "foo"; |
| 6485 o.selfLink = "foo"; | 6487 o.selfLink = "foo"; |
| 6486 } | 6488 } |
| 6487 buildCounterTargetPoolList--; | 6489 buildCounterTargetPoolList--; |
| 6488 return o; | 6490 return o; |
| 6489 } | 6491 } |
| 6490 | 6492 |
| 6491 checkTargetPoolList(api.TargetPoolList o) { | 6493 checkTargetPoolList(api.TargetPoolList o) { |
| 6492 buildCounterTargetPoolList++; | 6494 buildCounterTargetPoolList++; |
| 6493 if (buildCounterTargetPoolList < 3) { | 6495 if (buildCounterTargetPoolList < 3) { |
| 6494 unittest.expect(o.id, unittest.equals('foo')); | 6496 unittest.expect(o.id, unittest.equals('foo')); |
| 6495 checkUnnamed853(o.items); | 6497 checkUnnamed2556(o.items); |
| 6496 unittest.expect(o.kind, unittest.equals('foo')); | 6498 unittest.expect(o.kind, unittest.equals('foo')); |
| 6497 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6499 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6498 unittest.expect(o.selfLink, unittest.equals('foo')); | 6500 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6499 } | 6501 } |
| 6500 buildCounterTargetPoolList--; | 6502 buildCounterTargetPoolList--; |
| 6501 } | 6503 } |
| 6502 | 6504 |
| 6503 buildUnnamed854() { | 6505 buildUnnamed2557() { |
| 6504 var o = new core.List<api.HealthCheckReference>(); | 6506 var o = new core.List<api.HealthCheckReference>(); |
| 6505 o.add(buildHealthCheckReference()); | 6507 o.add(buildHealthCheckReference()); |
| 6506 o.add(buildHealthCheckReference()); | 6508 o.add(buildHealthCheckReference()); |
| 6507 return o; | 6509 return o; |
| 6508 } | 6510 } |
| 6509 | 6511 |
| 6510 checkUnnamed854(core.List<api.HealthCheckReference> o) { | 6512 checkUnnamed2557(core.List<api.HealthCheckReference> o) { |
| 6511 unittest.expect(o, unittest.hasLength(2)); | 6513 unittest.expect(o, unittest.hasLength(2)); |
| 6512 checkHealthCheckReference(o[0]); | 6514 checkHealthCheckReference(o[0]); |
| 6513 checkHealthCheckReference(o[1]); | 6515 checkHealthCheckReference(o[1]); |
| 6514 } | 6516 } |
| 6515 | 6517 |
| 6516 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 6518 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 6517 buildTargetPoolsAddHealthCheckRequest() { | 6519 buildTargetPoolsAddHealthCheckRequest() { |
| 6518 var o = new api.TargetPoolsAddHealthCheckRequest(); | 6520 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 6519 buildCounterTargetPoolsAddHealthCheckRequest++; | 6521 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 6520 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 6522 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 6521 o.healthChecks = buildUnnamed854(); | 6523 o.healthChecks = buildUnnamed2557(); |
| 6522 } | 6524 } |
| 6523 buildCounterTargetPoolsAddHealthCheckRequest--; | 6525 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 6524 return o; | 6526 return o; |
| 6525 } | 6527 } |
| 6526 | 6528 |
| 6527 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 6529 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 6528 buildCounterTargetPoolsAddHealthCheckRequest++; | 6530 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 6529 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 6531 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 6530 checkUnnamed854(o.healthChecks); | 6532 checkUnnamed2557(o.healthChecks); |
| 6531 } | 6533 } |
| 6532 buildCounterTargetPoolsAddHealthCheckRequest--; | 6534 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 6533 } | 6535 } |
| 6534 | 6536 |
| 6535 buildUnnamed855() { | 6537 buildUnnamed2558() { |
| 6536 var o = new core.List<api.InstanceReference>(); | 6538 var o = new core.List<api.InstanceReference>(); |
| 6537 o.add(buildInstanceReference()); | 6539 o.add(buildInstanceReference()); |
| 6538 o.add(buildInstanceReference()); | 6540 o.add(buildInstanceReference()); |
| 6539 return o; | 6541 return o; |
| 6540 } | 6542 } |
| 6541 | 6543 |
| 6542 checkUnnamed855(core.List<api.InstanceReference> o) { | 6544 checkUnnamed2558(core.List<api.InstanceReference> o) { |
| 6543 unittest.expect(o, unittest.hasLength(2)); | 6545 unittest.expect(o, unittest.hasLength(2)); |
| 6544 checkInstanceReference(o[0]); | 6546 checkInstanceReference(o[0]); |
| 6545 checkInstanceReference(o[1]); | 6547 checkInstanceReference(o[1]); |
| 6546 } | 6548 } |
| 6547 | 6549 |
| 6548 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 6550 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 6549 buildTargetPoolsAddInstanceRequest() { | 6551 buildTargetPoolsAddInstanceRequest() { |
| 6550 var o = new api.TargetPoolsAddInstanceRequest(); | 6552 var o = new api.TargetPoolsAddInstanceRequest(); |
| 6551 buildCounterTargetPoolsAddInstanceRequest++; | 6553 buildCounterTargetPoolsAddInstanceRequest++; |
| 6552 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 6554 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 6553 o.instances = buildUnnamed855(); | 6555 o.instances = buildUnnamed2558(); |
| 6554 } | 6556 } |
| 6555 buildCounterTargetPoolsAddInstanceRequest--; | 6557 buildCounterTargetPoolsAddInstanceRequest--; |
| 6556 return o; | 6558 return o; |
| 6557 } | 6559 } |
| 6558 | 6560 |
| 6559 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 6561 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 6560 buildCounterTargetPoolsAddInstanceRequest++; | 6562 buildCounterTargetPoolsAddInstanceRequest++; |
| 6561 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 6563 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 6562 checkUnnamed855(o.instances); | 6564 checkUnnamed2558(o.instances); |
| 6563 } | 6565 } |
| 6564 buildCounterTargetPoolsAddInstanceRequest--; | 6566 buildCounterTargetPoolsAddInstanceRequest--; |
| 6565 } | 6567 } |
| 6566 | 6568 |
| 6567 buildUnnamed856() { | 6569 buildUnnamed2559() { |
| 6568 var o = new core.List<api.HealthCheckReference>(); | 6570 var o = new core.List<api.HealthCheckReference>(); |
| 6569 o.add(buildHealthCheckReference()); | 6571 o.add(buildHealthCheckReference()); |
| 6570 o.add(buildHealthCheckReference()); | 6572 o.add(buildHealthCheckReference()); |
| 6571 return o; | 6573 return o; |
| 6572 } | 6574 } |
| 6573 | 6575 |
| 6574 checkUnnamed856(core.List<api.HealthCheckReference> o) { | 6576 checkUnnamed2559(core.List<api.HealthCheckReference> o) { |
| 6575 unittest.expect(o, unittest.hasLength(2)); | 6577 unittest.expect(o, unittest.hasLength(2)); |
| 6576 checkHealthCheckReference(o[0]); | 6578 checkHealthCheckReference(o[0]); |
| 6577 checkHealthCheckReference(o[1]); | 6579 checkHealthCheckReference(o[1]); |
| 6578 } | 6580 } |
| 6579 | 6581 |
| 6580 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 6582 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 6581 buildTargetPoolsRemoveHealthCheckRequest() { | 6583 buildTargetPoolsRemoveHealthCheckRequest() { |
| 6582 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 6584 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 6583 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 6585 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 6584 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 6586 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 6585 o.healthChecks = buildUnnamed856(); | 6587 o.healthChecks = buildUnnamed2559(); |
| 6586 } | 6588 } |
| 6587 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 6589 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 6588 return o; | 6590 return o; |
| 6589 } | 6591 } |
| 6590 | 6592 |
| 6591 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 6593 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 6592 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 6594 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 6593 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 6595 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 6594 checkUnnamed856(o.healthChecks); | 6596 checkUnnamed2559(o.healthChecks); |
| 6595 } | 6597 } |
| 6596 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 6598 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 6597 } | 6599 } |
| 6598 | 6600 |
| 6599 buildUnnamed857() { | 6601 buildUnnamed2560() { |
| 6600 var o = new core.List<api.InstanceReference>(); | 6602 var o = new core.List<api.InstanceReference>(); |
| 6601 o.add(buildInstanceReference()); | 6603 o.add(buildInstanceReference()); |
| 6602 o.add(buildInstanceReference()); | 6604 o.add(buildInstanceReference()); |
| 6603 return o; | 6605 return o; |
| 6604 } | 6606 } |
| 6605 | 6607 |
| 6606 checkUnnamed857(core.List<api.InstanceReference> o) { | 6608 checkUnnamed2560(core.List<api.InstanceReference> o) { |
| 6607 unittest.expect(o, unittest.hasLength(2)); | 6609 unittest.expect(o, unittest.hasLength(2)); |
| 6608 checkInstanceReference(o[0]); | 6610 checkInstanceReference(o[0]); |
| 6609 checkInstanceReference(o[1]); | 6611 checkInstanceReference(o[1]); |
| 6610 } | 6612 } |
| 6611 | 6613 |
| 6612 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 6614 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 6613 buildTargetPoolsRemoveInstanceRequest() { | 6615 buildTargetPoolsRemoveInstanceRequest() { |
| 6614 var o = new api.TargetPoolsRemoveInstanceRequest(); | 6616 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 6615 buildCounterTargetPoolsRemoveInstanceRequest++; | 6617 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6616 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6618 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6617 o.instances = buildUnnamed857(); | 6619 o.instances = buildUnnamed2560(); |
| 6618 } | 6620 } |
| 6619 buildCounterTargetPoolsRemoveInstanceRequest--; | 6621 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6620 return o; | 6622 return o; |
| 6621 } | 6623 } |
| 6622 | 6624 |
| 6623 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 6625 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 6624 buildCounterTargetPoolsRemoveInstanceRequest++; | 6626 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6625 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6627 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6626 checkUnnamed857(o.instances); | 6628 checkUnnamed2560(o.instances); |
| 6627 } | 6629 } |
| 6628 buildCounterTargetPoolsRemoveInstanceRequest--; | 6630 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6629 } | 6631 } |
| 6630 | 6632 |
| 6631 buildUnnamed858() { | 6633 buildUnnamed2561() { |
| 6632 var o = new core.List<api.TargetPool>(); | 6634 var o = new core.List<api.TargetPool>(); |
| 6633 o.add(buildTargetPool()); | 6635 o.add(buildTargetPool()); |
| 6634 o.add(buildTargetPool()); | 6636 o.add(buildTargetPool()); |
| 6635 return o; | 6637 return o; |
| 6636 } | 6638 } |
| 6637 | 6639 |
| 6638 checkUnnamed858(core.List<api.TargetPool> o) { | 6640 checkUnnamed2561(core.List<api.TargetPool> o) { |
| 6639 unittest.expect(o, unittest.hasLength(2)); | 6641 unittest.expect(o, unittest.hasLength(2)); |
| 6640 checkTargetPool(o[0]); | 6642 checkTargetPool(o[0]); |
| 6641 checkTargetPool(o[1]); | 6643 checkTargetPool(o[1]); |
| 6642 } | 6644 } |
| 6643 | 6645 |
| 6644 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 6646 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 6645 buildTargetPoolsScopedListWarningData() { | 6647 buildTargetPoolsScopedListWarningData() { |
| 6646 var o = new api.TargetPoolsScopedListWarningData(); | 6648 var o = new api.TargetPoolsScopedListWarningData(); |
| 6647 buildCounterTargetPoolsScopedListWarningData++; | 6649 buildCounterTargetPoolsScopedListWarningData++; |
| 6648 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6650 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6649 o.key = "foo"; | 6651 o.key = "foo"; |
| 6650 o.value = "foo"; | 6652 o.value = "foo"; |
| 6651 } | 6653 } |
| 6652 buildCounterTargetPoolsScopedListWarningData--; | 6654 buildCounterTargetPoolsScopedListWarningData--; |
| 6653 return o; | 6655 return o; |
| 6654 } | 6656 } |
| 6655 | 6657 |
| 6656 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 6658 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 6657 buildCounterTargetPoolsScopedListWarningData++; | 6659 buildCounterTargetPoolsScopedListWarningData++; |
| 6658 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6660 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6659 unittest.expect(o.key, unittest.equals('foo')); | 6661 unittest.expect(o.key, unittest.equals('foo')); |
| 6660 unittest.expect(o.value, unittest.equals('foo')); | 6662 unittest.expect(o.value, unittest.equals('foo')); |
| 6661 } | 6663 } |
| 6662 buildCounterTargetPoolsScopedListWarningData--; | 6664 buildCounterTargetPoolsScopedListWarningData--; |
| 6663 } | 6665 } |
| 6664 | 6666 |
| 6665 buildUnnamed859() { | 6667 buildUnnamed2562() { |
| 6666 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 6668 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 6667 o.add(buildTargetPoolsScopedListWarningData()); | 6669 o.add(buildTargetPoolsScopedListWarningData()); |
| 6668 o.add(buildTargetPoolsScopedListWarningData()); | 6670 o.add(buildTargetPoolsScopedListWarningData()); |
| 6669 return o; | 6671 return o; |
| 6670 } | 6672 } |
| 6671 | 6673 |
| 6672 checkUnnamed859(core.List<api.TargetPoolsScopedListWarningData> o) { | 6674 checkUnnamed2562(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 6673 unittest.expect(o, unittest.hasLength(2)); | 6675 unittest.expect(o, unittest.hasLength(2)); |
| 6674 checkTargetPoolsScopedListWarningData(o[0]); | 6676 checkTargetPoolsScopedListWarningData(o[0]); |
| 6675 checkTargetPoolsScopedListWarningData(o[1]); | 6677 checkTargetPoolsScopedListWarningData(o[1]); |
| 6676 } | 6678 } |
| 6677 | 6679 |
| 6678 core.int buildCounterTargetPoolsScopedListWarning = 0; | 6680 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 6679 buildTargetPoolsScopedListWarning() { | 6681 buildTargetPoolsScopedListWarning() { |
| 6680 var o = new api.TargetPoolsScopedListWarning(); | 6682 var o = new api.TargetPoolsScopedListWarning(); |
| 6681 buildCounterTargetPoolsScopedListWarning++; | 6683 buildCounterTargetPoolsScopedListWarning++; |
| 6682 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6684 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6683 o.code = "foo"; | 6685 o.code = "foo"; |
| 6684 o.data = buildUnnamed859(); | 6686 o.data = buildUnnamed2562(); |
| 6685 o.message = "foo"; | 6687 o.message = "foo"; |
| 6686 } | 6688 } |
| 6687 buildCounterTargetPoolsScopedListWarning--; | 6689 buildCounterTargetPoolsScopedListWarning--; |
| 6688 return o; | 6690 return o; |
| 6689 } | 6691 } |
| 6690 | 6692 |
| 6691 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 6693 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 6692 buildCounterTargetPoolsScopedListWarning++; | 6694 buildCounterTargetPoolsScopedListWarning++; |
| 6693 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6695 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6694 unittest.expect(o.code, unittest.equals('foo')); | 6696 unittest.expect(o.code, unittest.equals('foo')); |
| 6695 checkUnnamed859(o.data); | 6697 checkUnnamed2562(o.data); |
| 6696 unittest.expect(o.message, unittest.equals('foo')); | 6698 unittest.expect(o.message, unittest.equals('foo')); |
| 6697 } | 6699 } |
| 6698 buildCounterTargetPoolsScopedListWarning--; | 6700 buildCounterTargetPoolsScopedListWarning--; |
| 6699 } | 6701 } |
| 6700 | 6702 |
| 6701 core.int buildCounterTargetPoolsScopedList = 0; | 6703 core.int buildCounterTargetPoolsScopedList = 0; |
| 6702 buildTargetPoolsScopedList() { | 6704 buildTargetPoolsScopedList() { |
| 6703 var o = new api.TargetPoolsScopedList(); | 6705 var o = new api.TargetPoolsScopedList(); |
| 6704 buildCounterTargetPoolsScopedList++; | 6706 buildCounterTargetPoolsScopedList++; |
| 6705 if (buildCounterTargetPoolsScopedList < 3) { | 6707 if (buildCounterTargetPoolsScopedList < 3) { |
| 6706 o.targetPools = buildUnnamed858(); | 6708 o.targetPools = buildUnnamed2561(); |
| 6707 o.warning = buildTargetPoolsScopedListWarning(); | 6709 o.warning = buildTargetPoolsScopedListWarning(); |
| 6708 } | 6710 } |
| 6709 buildCounterTargetPoolsScopedList--; | 6711 buildCounterTargetPoolsScopedList--; |
| 6710 return o; | 6712 return o; |
| 6711 } | 6713 } |
| 6712 | 6714 |
| 6713 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 6715 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 6714 buildCounterTargetPoolsScopedList++; | 6716 buildCounterTargetPoolsScopedList++; |
| 6715 if (buildCounterTargetPoolsScopedList < 3) { | 6717 if (buildCounterTargetPoolsScopedList < 3) { |
| 6716 checkUnnamed858(o.targetPools); | 6718 checkUnnamed2561(o.targetPools); |
| 6717 checkTargetPoolsScopedListWarning(o.warning); | 6719 checkTargetPoolsScopedListWarning(o.warning); |
| 6718 } | 6720 } |
| 6719 buildCounterTargetPoolsScopedList--; | 6721 buildCounterTargetPoolsScopedList--; |
| 6720 } | 6722 } |
| 6721 | 6723 |
| 6722 core.int buildCounterTargetReference = 0; | 6724 core.int buildCounterTargetReference = 0; |
| 6723 buildTargetReference() { | 6725 buildTargetReference() { |
| 6724 var o = new api.TargetReference(); | 6726 var o = new api.TargetReference(); |
| 6725 buildCounterTargetReference++; | 6727 buildCounterTargetReference++; |
| 6726 if (buildCounterTargetReference < 3) { | 6728 if (buildCounterTargetReference < 3) { |
| 6727 o.target = "foo"; | 6729 o.target = "foo"; |
| 6728 } | 6730 } |
| 6729 buildCounterTargetReference--; | 6731 buildCounterTargetReference--; |
| 6730 return o; | 6732 return o; |
| 6731 } | 6733 } |
| 6732 | 6734 |
| 6733 checkTargetReference(api.TargetReference o) { | 6735 checkTargetReference(api.TargetReference o) { |
| 6734 buildCounterTargetReference++; | 6736 buildCounterTargetReference++; |
| 6735 if (buildCounterTargetReference < 3) { | 6737 if (buildCounterTargetReference < 3) { |
| 6736 unittest.expect(o.target, unittest.equals('foo')); | 6738 unittest.expect(o.target, unittest.equals('foo')); |
| 6737 } | 6739 } |
| 6738 buildCounterTargetReference--; | 6740 buildCounterTargetReference--; |
| 6739 } | 6741 } |
| 6740 | 6742 |
| 6741 buildUnnamed860() { | 6743 buildUnnamed2563() { |
| 6742 var o = new core.List<core.String>(); | 6744 var o = new core.List<core.String>(); |
| 6743 o.add("foo"); | 6745 o.add("foo"); |
| 6744 o.add("foo"); | 6746 o.add("foo"); |
| 6745 return o; | 6747 return o; |
| 6746 } | 6748 } |
| 6747 | 6749 |
| 6748 checkUnnamed860(core.List<core.String> o) { | 6750 checkUnnamed2563(core.List<core.String> o) { |
| 6749 unittest.expect(o, unittest.hasLength(2)); | 6751 unittest.expect(o, unittest.hasLength(2)); |
| 6750 unittest.expect(o[0], unittest.equals('foo')); | 6752 unittest.expect(o[0], unittest.equals('foo')); |
| 6751 unittest.expect(o[1], unittest.equals('foo')); | 6753 unittest.expect(o[1], unittest.equals('foo')); |
| 6752 } | 6754 } |
| 6753 | 6755 |
| 6754 buildUnnamed861() { | 6756 buildUnnamed2564() { |
| 6755 var o = new core.List<core.String>(); | 6757 var o = new core.List<core.String>(); |
| 6756 o.add("foo"); | 6758 o.add("foo"); |
| 6757 o.add("foo"); | 6759 o.add("foo"); |
| 6758 return o; | 6760 return o; |
| 6759 } | 6761 } |
| 6760 | 6762 |
| 6761 checkUnnamed861(core.List<core.String> o) { | 6763 checkUnnamed2564(core.List<core.String> o) { |
| 6762 unittest.expect(o, unittest.hasLength(2)); | 6764 unittest.expect(o, unittest.hasLength(2)); |
| 6763 unittest.expect(o[0], unittest.equals('foo')); | 6765 unittest.expect(o[0], unittest.equals('foo')); |
| 6764 unittest.expect(o[1], unittest.equals('foo')); | 6766 unittest.expect(o[1], unittest.equals('foo')); |
| 6765 } | 6767 } |
| 6766 | 6768 |
| 6767 core.int buildCounterTargetVpnGateway = 0; | 6769 core.int buildCounterTargetVpnGateway = 0; |
| 6768 buildTargetVpnGateway() { | 6770 buildTargetVpnGateway() { |
| 6769 var o = new api.TargetVpnGateway(); | 6771 var o = new api.TargetVpnGateway(); |
| 6770 buildCounterTargetVpnGateway++; | 6772 buildCounterTargetVpnGateway++; |
| 6771 if (buildCounterTargetVpnGateway < 3) { | 6773 if (buildCounterTargetVpnGateway < 3) { |
| 6772 o.creationTimestamp = "foo"; | 6774 o.creationTimestamp = "foo"; |
| 6773 o.description = "foo"; | 6775 o.description = "foo"; |
| 6774 o.forwardingRules = buildUnnamed860(); | 6776 o.forwardingRules = buildUnnamed2563(); |
| 6775 o.id = "foo"; | 6777 o.id = "foo"; |
| 6776 o.kind = "foo"; | 6778 o.kind = "foo"; |
| 6777 o.name = "foo"; | 6779 o.name = "foo"; |
| 6778 o.network = "foo"; | 6780 o.network = "foo"; |
| 6779 o.region = "foo"; | 6781 o.region = "foo"; |
| 6780 o.selfLink = "foo"; | 6782 o.selfLink = "foo"; |
| 6781 o.status = "foo"; | 6783 o.status = "foo"; |
| 6782 o.tunnels = buildUnnamed861(); | 6784 o.tunnels = buildUnnamed2564(); |
| 6783 } | 6785 } |
| 6784 buildCounterTargetVpnGateway--; | 6786 buildCounterTargetVpnGateway--; |
| 6785 return o; | 6787 return o; |
| 6786 } | 6788 } |
| 6787 | 6789 |
| 6788 checkTargetVpnGateway(api.TargetVpnGateway o) { | 6790 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 6789 buildCounterTargetVpnGateway++; | 6791 buildCounterTargetVpnGateway++; |
| 6790 if (buildCounterTargetVpnGateway < 3) { | 6792 if (buildCounterTargetVpnGateway < 3) { |
| 6791 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6793 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6792 unittest.expect(o.description, unittest.equals('foo')); | 6794 unittest.expect(o.description, unittest.equals('foo')); |
| 6793 checkUnnamed860(o.forwardingRules); | 6795 checkUnnamed2563(o.forwardingRules); |
| 6794 unittest.expect(o.id, unittest.equals('foo')); | 6796 unittest.expect(o.id, unittest.equals('foo')); |
| 6795 unittest.expect(o.kind, unittest.equals('foo')); | 6797 unittest.expect(o.kind, unittest.equals('foo')); |
| 6796 unittest.expect(o.name, unittest.equals('foo')); | 6798 unittest.expect(o.name, unittest.equals('foo')); |
| 6797 unittest.expect(o.network, unittest.equals('foo')); | 6799 unittest.expect(o.network, unittest.equals('foo')); |
| 6798 unittest.expect(o.region, unittest.equals('foo')); | 6800 unittest.expect(o.region, unittest.equals('foo')); |
| 6799 unittest.expect(o.selfLink, unittest.equals('foo')); | 6801 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6800 unittest.expect(o.status, unittest.equals('foo')); | 6802 unittest.expect(o.status, unittest.equals('foo')); |
| 6801 checkUnnamed861(o.tunnels); | 6803 checkUnnamed2564(o.tunnels); |
| 6802 } | 6804 } |
| 6803 buildCounterTargetVpnGateway--; | 6805 buildCounterTargetVpnGateway--; |
| 6804 } | 6806 } |
| 6805 | 6807 |
| 6806 buildUnnamed862() { | 6808 buildUnnamed2565() { |
| 6807 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 6809 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 6808 o["x"] = buildTargetVpnGatewaysScopedList(); | 6810 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 6809 o["y"] = buildTargetVpnGatewaysScopedList(); | 6811 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 6810 return o; | 6812 return o; |
| 6811 } | 6813 } |
| 6812 | 6814 |
| 6813 checkUnnamed862(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 6815 checkUnnamed2565(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 6814 unittest.expect(o, unittest.hasLength(2)); | 6816 unittest.expect(o, unittest.hasLength(2)); |
| 6815 checkTargetVpnGatewaysScopedList(o["x"]); | 6817 checkTargetVpnGatewaysScopedList(o["x"]); |
| 6816 checkTargetVpnGatewaysScopedList(o["y"]); | 6818 checkTargetVpnGatewaysScopedList(o["y"]); |
| 6817 } | 6819 } |
| 6818 | 6820 |
| 6819 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 6821 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 6820 buildTargetVpnGatewayAggregatedList() { | 6822 buildTargetVpnGatewayAggregatedList() { |
| 6821 var o = new api.TargetVpnGatewayAggregatedList(); | 6823 var o = new api.TargetVpnGatewayAggregatedList(); |
| 6822 buildCounterTargetVpnGatewayAggregatedList++; | 6824 buildCounterTargetVpnGatewayAggregatedList++; |
| 6823 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6825 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6824 o.id = "foo"; | 6826 o.id = "foo"; |
| 6825 o.items = buildUnnamed862(); | 6827 o.items = buildUnnamed2565(); |
| 6826 o.kind = "foo"; | 6828 o.kind = "foo"; |
| 6827 o.nextPageToken = "foo"; | 6829 o.nextPageToken = "foo"; |
| 6828 o.selfLink = "foo"; | 6830 o.selfLink = "foo"; |
| 6829 } | 6831 } |
| 6830 buildCounterTargetVpnGatewayAggregatedList--; | 6832 buildCounterTargetVpnGatewayAggregatedList--; |
| 6831 return o; | 6833 return o; |
| 6832 } | 6834 } |
| 6833 | 6835 |
| 6834 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 6836 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 6835 buildCounterTargetVpnGatewayAggregatedList++; | 6837 buildCounterTargetVpnGatewayAggregatedList++; |
| 6836 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6838 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6837 unittest.expect(o.id, unittest.equals('foo')); | 6839 unittest.expect(o.id, unittest.equals('foo')); |
| 6838 checkUnnamed862(o.items); | 6840 checkUnnamed2565(o.items); |
| 6839 unittest.expect(o.kind, unittest.equals('foo')); | 6841 unittest.expect(o.kind, unittest.equals('foo')); |
| 6840 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6842 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6841 unittest.expect(o.selfLink, unittest.equals('foo')); | 6843 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6842 } | 6844 } |
| 6843 buildCounterTargetVpnGatewayAggregatedList--; | 6845 buildCounterTargetVpnGatewayAggregatedList--; |
| 6844 } | 6846 } |
| 6845 | 6847 |
| 6846 buildUnnamed863() { | 6848 buildUnnamed2566() { |
| 6847 var o = new core.List<api.TargetVpnGateway>(); | 6849 var o = new core.List<api.TargetVpnGateway>(); |
| 6848 o.add(buildTargetVpnGateway()); | 6850 o.add(buildTargetVpnGateway()); |
| 6849 o.add(buildTargetVpnGateway()); | 6851 o.add(buildTargetVpnGateway()); |
| 6850 return o; | 6852 return o; |
| 6851 } | 6853 } |
| 6852 | 6854 |
| 6853 checkUnnamed863(core.List<api.TargetVpnGateway> o) { | 6855 checkUnnamed2566(core.List<api.TargetVpnGateway> o) { |
| 6854 unittest.expect(o, unittest.hasLength(2)); | 6856 unittest.expect(o, unittest.hasLength(2)); |
| 6855 checkTargetVpnGateway(o[0]); | 6857 checkTargetVpnGateway(o[0]); |
| 6856 checkTargetVpnGateway(o[1]); | 6858 checkTargetVpnGateway(o[1]); |
| 6857 } | 6859 } |
| 6858 | 6860 |
| 6859 core.int buildCounterTargetVpnGatewayList = 0; | 6861 core.int buildCounterTargetVpnGatewayList = 0; |
| 6860 buildTargetVpnGatewayList() { | 6862 buildTargetVpnGatewayList() { |
| 6861 var o = new api.TargetVpnGatewayList(); | 6863 var o = new api.TargetVpnGatewayList(); |
| 6862 buildCounterTargetVpnGatewayList++; | 6864 buildCounterTargetVpnGatewayList++; |
| 6863 if (buildCounterTargetVpnGatewayList < 3) { | 6865 if (buildCounterTargetVpnGatewayList < 3) { |
| 6864 o.id = "foo"; | 6866 o.id = "foo"; |
| 6865 o.items = buildUnnamed863(); | 6867 o.items = buildUnnamed2566(); |
| 6866 o.kind = "foo"; | 6868 o.kind = "foo"; |
| 6867 o.nextPageToken = "foo"; | 6869 o.nextPageToken = "foo"; |
| 6868 o.selfLink = "foo"; | 6870 o.selfLink = "foo"; |
| 6869 } | 6871 } |
| 6870 buildCounterTargetVpnGatewayList--; | 6872 buildCounterTargetVpnGatewayList--; |
| 6871 return o; | 6873 return o; |
| 6872 } | 6874 } |
| 6873 | 6875 |
| 6874 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 6876 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 6875 buildCounterTargetVpnGatewayList++; | 6877 buildCounterTargetVpnGatewayList++; |
| 6876 if (buildCounterTargetVpnGatewayList < 3) { | 6878 if (buildCounterTargetVpnGatewayList < 3) { |
| 6877 unittest.expect(o.id, unittest.equals('foo')); | 6879 unittest.expect(o.id, unittest.equals('foo')); |
| 6878 checkUnnamed863(o.items); | 6880 checkUnnamed2566(o.items); |
| 6879 unittest.expect(o.kind, unittest.equals('foo')); | 6881 unittest.expect(o.kind, unittest.equals('foo')); |
| 6880 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6882 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6881 unittest.expect(o.selfLink, unittest.equals('foo')); | 6883 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6882 } | 6884 } |
| 6883 buildCounterTargetVpnGatewayList--; | 6885 buildCounterTargetVpnGatewayList--; |
| 6884 } | 6886 } |
| 6885 | 6887 |
| 6886 buildUnnamed864() { | 6888 buildUnnamed2567() { |
| 6887 var o = new core.List<api.TargetVpnGateway>(); | 6889 var o = new core.List<api.TargetVpnGateway>(); |
| 6888 o.add(buildTargetVpnGateway()); | 6890 o.add(buildTargetVpnGateway()); |
| 6889 o.add(buildTargetVpnGateway()); | 6891 o.add(buildTargetVpnGateway()); |
| 6890 return o; | 6892 return o; |
| 6891 } | 6893 } |
| 6892 | 6894 |
| 6893 checkUnnamed864(core.List<api.TargetVpnGateway> o) { | 6895 checkUnnamed2567(core.List<api.TargetVpnGateway> o) { |
| 6894 unittest.expect(o, unittest.hasLength(2)); | 6896 unittest.expect(o, unittest.hasLength(2)); |
| 6895 checkTargetVpnGateway(o[0]); | 6897 checkTargetVpnGateway(o[0]); |
| 6896 checkTargetVpnGateway(o[1]); | 6898 checkTargetVpnGateway(o[1]); |
| 6897 } | 6899 } |
| 6898 | 6900 |
| 6899 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 6901 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 6900 buildTargetVpnGatewaysScopedListWarningData() { | 6902 buildTargetVpnGatewaysScopedListWarningData() { |
| 6901 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 6903 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 6902 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6904 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6903 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6905 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6904 o.key = "foo"; | 6906 o.key = "foo"; |
| 6905 o.value = "foo"; | 6907 o.value = "foo"; |
| 6906 } | 6908 } |
| 6907 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6909 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6908 return o; | 6910 return o; |
| 6909 } | 6911 } |
| 6910 | 6912 |
| 6911 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 6913 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 6912 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6914 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6913 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6915 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6914 unittest.expect(o.key, unittest.equals('foo')); | 6916 unittest.expect(o.key, unittest.equals('foo')); |
| 6915 unittest.expect(o.value, unittest.equals('foo')); | 6917 unittest.expect(o.value, unittest.equals('foo')); |
| 6916 } | 6918 } |
| 6917 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6919 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6918 } | 6920 } |
| 6919 | 6921 |
| 6920 buildUnnamed865() { | 6922 buildUnnamed2568() { |
| 6921 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 6923 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 6922 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6924 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6923 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6925 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6924 return o; | 6926 return o; |
| 6925 } | 6927 } |
| 6926 | 6928 |
| 6927 checkUnnamed865(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 6929 checkUnnamed2568(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 6928 unittest.expect(o, unittest.hasLength(2)); | 6930 unittest.expect(o, unittest.hasLength(2)); |
| 6929 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 6931 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 6930 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 6932 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 6931 } | 6933 } |
| 6932 | 6934 |
| 6933 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 6935 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 6934 buildTargetVpnGatewaysScopedListWarning() { | 6936 buildTargetVpnGatewaysScopedListWarning() { |
| 6935 var o = new api.TargetVpnGatewaysScopedListWarning(); | 6937 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 6936 buildCounterTargetVpnGatewaysScopedListWarning++; | 6938 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6937 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6939 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6938 o.code = "foo"; | 6940 o.code = "foo"; |
| 6939 o.data = buildUnnamed865(); | 6941 o.data = buildUnnamed2568(); |
| 6940 o.message = "foo"; | 6942 o.message = "foo"; |
| 6941 } | 6943 } |
| 6942 buildCounterTargetVpnGatewaysScopedListWarning--; | 6944 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6943 return o; | 6945 return o; |
| 6944 } | 6946 } |
| 6945 | 6947 |
| 6946 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 6948 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 6947 buildCounterTargetVpnGatewaysScopedListWarning++; | 6949 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6948 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6950 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6949 unittest.expect(o.code, unittest.equals('foo')); | 6951 unittest.expect(o.code, unittest.equals('foo')); |
| 6950 checkUnnamed865(o.data); | 6952 checkUnnamed2568(o.data); |
| 6951 unittest.expect(o.message, unittest.equals('foo')); | 6953 unittest.expect(o.message, unittest.equals('foo')); |
| 6952 } | 6954 } |
| 6953 buildCounterTargetVpnGatewaysScopedListWarning--; | 6955 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6954 } | 6956 } |
| 6955 | 6957 |
| 6956 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 6958 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 6957 buildTargetVpnGatewaysScopedList() { | 6959 buildTargetVpnGatewaysScopedList() { |
| 6958 var o = new api.TargetVpnGatewaysScopedList(); | 6960 var o = new api.TargetVpnGatewaysScopedList(); |
| 6959 buildCounterTargetVpnGatewaysScopedList++; | 6961 buildCounterTargetVpnGatewaysScopedList++; |
| 6960 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6962 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6961 o.targetVpnGateways = buildUnnamed864(); | 6963 o.targetVpnGateways = buildUnnamed2567(); |
| 6962 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 6964 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 6963 } | 6965 } |
| 6964 buildCounterTargetVpnGatewaysScopedList--; | 6966 buildCounterTargetVpnGatewaysScopedList--; |
| 6965 return o; | 6967 return o; |
| 6966 } | 6968 } |
| 6967 | 6969 |
| 6968 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 6970 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 6969 buildCounterTargetVpnGatewaysScopedList++; | 6971 buildCounterTargetVpnGatewaysScopedList++; |
| 6970 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6972 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6971 checkUnnamed864(o.targetVpnGateways); | 6973 checkUnnamed2567(o.targetVpnGateways); |
| 6972 checkTargetVpnGatewaysScopedListWarning(o.warning); | 6974 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 6973 } | 6975 } |
| 6974 buildCounterTargetVpnGatewaysScopedList--; | 6976 buildCounterTargetVpnGatewaysScopedList--; |
| 6975 } | 6977 } |
| 6976 | 6978 |
| 6977 core.int buildCounterTestFailure = 0; | 6979 core.int buildCounterTestFailure = 0; |
| 6978 buildTestFailure() { | 6980 buildTestFailure() { |
| 6979 var o = new api.TestFailure(); | 6981 var o = new api.TestFailure(); |
| 6980 buildCounterTestFailure++; | 6982 buildCounterTestFailure++; |
| 6981 if (buildCounterTestFailure < 3) { | 6983 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6992 buildCounterTestFailure++; | 6994 buildCounterTestFailure++; |
| 6993 if (buildCounterTestFailure < 3) { | 6995 if (buildCounterTestFailure < 3) { |
| 6994 unittest.expect(o.actualService, unittest.equals('foo')); | 6996 unittest.expect(o.actualService, unittest.equals('foo')); |
| 6995 unittest.expect(o.expectedService, unittest.equals('foo')); | 6997 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 6996 unittest.expect(o.host, unittest.equals('foo')); | 6998 unittest.expect(o.host, unittest.equals('foo')); |
| 6997 unittest.expect(o.path, unittest.equals('foo')); | 6999 unittest.expect(o.path, unittest.equals('foo')); |
| 6998 } | 7000 } |
| 6999 buildCounterTestFailure--; | 7001 buildCounterTestFailure--; |
| 7000 } | 7002 } |
| 7001 | 7003 |
| 7002 buildUnnamed866() { | 7004 buildUnnamed2569() { |
| 7003 var o = new core.List<api.HostRule>(); | 7005 var o = new core.List<api.HostRule>(); |
| 7004 o.add(buildHostRule()); | 7006 o.add(buildHostRule()); |
| 7005 o.add(buildHostRule()); | 7007 o.add(buildHostRule()); |
| 7006 return o; | 7008 return o; |
| 7007 } | 7009 } |
| 7008 | 7010 |
| 7009 checkUnnamed866(core.List<api.HostRule> o) { | 7011 checkUnnamed2569(core.List<api.HostRule> o) { |
| 7010 unittest.expect(o, unittest.hasLength(2)); | 7012 unittest.expect(o, unittest.hasLength(2)); |
| 7011 checkHostRule(o[0]); | 7013 checkHostRule(o[0]); |
| 7012 checkHostRule(o[1]); | 7014 checkHostRule(o[1]); |
| 7013 } | 7015 } |
| 7014 | 7016 |
| 7015 buildUnnamed867() { | 7017 buildUnnamed2570() { |
| 7016 var o = new core.List<api.PathMatcher>(); | 7018 var o = new core.List<api.PathMatcher>(); |
| 7017 o.add(buildPathMatcher()); | 7019 o.add(buildPathMatcher()); |
| 7018 o.add(buildPathMatcher()); | 7020 o.add(buildPathMatcher()); |
| 7019 return o; | 7021 return o; |
| 7020 } | 7022 } |
| 7021 | 7023 |
| 7022 checkUnnamed867(core.List<api.PathMatcher> o) { | 7024 checkUnnamed2570(core.List<api.PathMatcher> o) { |
| 7023 unittest.expect(o, unittest.hasLength(2)); | 7025 unittest.expect(o, unittest.hasLength(2)); |
| 7024 checkPathMatcher(o[0]); | 7026 checkPathMatcher(o[0]); |
| 7025 checkPathMatcher(o[1]); | 7027 checkPathMatcher(o[1]); |
| 7026 } | 7028 } |
| 7027 | 7029 |
| 7028 buildUnnamed868() { | 7030 buildUnnamed2571() { |
| 7029 var o = new core.List<api.UrlMapTest>(); | 7031 var o = new core.List<api.UrlMapTest>(); |
| 7030 o.add(buildUrlMapTest()); | 7032 o.add(buildUrlMapTest()); |
| 7031 o.add(buildUrlMapTest()); | 7033 o.add(buildUrlMapTest()); |
| 7032 return o; | 7034 return o; |
| 7033 } | 7035 } |
| 7034 | 7036 |
| 7035 checkUnnamed868(core.List<api.UrlMapTest> o) { | 7037 checkUnnamed2571(core.List<api.UrlMapTest> o) { |
| 7036 unittest.expect(o, unittest.hasLength(2)); | 7038 unittest.expect(o, unittest.hasLength(2)); |
| 7037 checkUrlMapTest(o[0]); | 7039 checkUrlMapTest(o[0]); |
| 7038 checkUrlMapTest(o[1]); | 7040 checkUrlMapTest(o[1]); |
| 7039 } | 7041 } |
| 7040 | 7042 |
| 7041 core.int buildCounterUrlMap = 0; | 7043 core.int buildCounterUrlMap = 0; |
| 7042 buildUrlMap() { | 7044 buildUrlMap() { |
| 7043 var o = new api.UrlMap(); | 7045 var o = new api.UrlMap(); |
| 7044 buildCounterUrlMap++; | 7046 buildCounterUrlMap++; |
| 7045 if (buildCounterUrlMap < 3) { | 7047 if (buildCounterUrlMap < 3) { |
| 7046 o.creationTimestamp = "foo"; | 7048 o.creationTimestamp = "foo"; |
| 7047 o.defaultService = "foo"; | 7049 o.defaultService = "foo"; |
| 7048 o.description = "foo"; | 7050 o.description = "foo"; |
| 7049 o.fingerprint = "foo"; | 7051 o.fingerprint = "foo"; |
| 7050 o.hostRules = buildUnnamed866(); | 7052 o.hostRules = buildUnnamed2569(); |
| 7051 o.id = "foo"; | 7053 o.id = "foo"; |
| 7052 o.kind = "foo"; | 7054 o.kind = "foo"; |
| 7053 o.name = "foo"; | 7055 o.name = "foo"; |
| 7054 o.pathMatchers = buildUnnamed867(); | 7056 o.pathMatchers = buildUnnamed2570(); |
| 7055 o.selfLink = "foo"; | 7057 o.selfLink = "foo"; |
| 7056 o.tests = buildUnnamed868(); | 7058 o.tests = buildUnnamed2571(); |
| 7057 } | 7059 } |
| 7058 buildCounterUrlMap--; | 7060 buildCounterUrlMap--; |
| 7059 return o; | 7061 return o; |
| 7060 } | 7062 } |
| 7061 | 7063 |
| 7062 checkUrlMap(api.UrlMap o) { | 7064 checkUrlMap(api.UrlMap o) { |
| 7063 buildCounterUrlMap++; | 7065 buildCounterUrlMap++; |
| 7064 if (buildCounterUrlMap < 3) { | 7066 if (buildCounterUrlMap < 3) { |
| 7065 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7067 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7066 unittest.expect(o.defaultService, unittest.equals('foo')); | 7068 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 7067 unittest.expect(o.description, unittest.equals('foo')); | 7069 unittest.expect(o.description, unittest.equals('foo')); |
| 7068 unittest.expect(o.fingerprint, unittest.equals('foo')); | 7070 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 7069 checkUnnamed866(o.hostRules); | 7071 checkUnnamed2569(o.hostRules); |
| 7070 unittest.expect(o.id, unittest.equals('foo')); | 7072 unittest.expect(o.id, unittest.equals('foo')); |
| 7071 unittest.expect(o.kind, unittest.equals('foo')); | 7073 unittest.expect(o.kind, unittest.equals('foo')); |
| 7072 unittest.expect(o.name, unittest.equals('foo')); | 7074 unittest.expect(o.name, unittest.equals('foo')); |
| 7073 checkUnnamed867(o.pathMatchers); | 7075 checkUnnamed2570(o.pathMatchers); |
| 7074 unittest.expect(o.selfLink, unittest.equals('foo')); | 7076 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7075 checkUnnamed868(o.tests); | 7077 checkUnnamed2571(o.tests); |
| 7076 } | 7078 } |
| 7077 buildCounterUrlMap--; | 7079 buildCounterUrlMap--; |
| 7078 } | 7080 } |
| 7079 | 7081 |
| 7080 buildUnnamed869() { | 7082 buildUnnamed2572() { |
| 7081 var o = new core.List<api.UrlMap>(); | 7083 var o = new core.List<api.UrlMap>(); |
| 7082 o.add(buildUrlMap()); | 7084 o.add(buildUrlMap()); |
| 7083 o.add(buildUrlMap()); | 7085 o.add(buildUrlMap()); |
| 7084 return o; | 7086 return o; |
| 7085 } | 7087 } |
| 7086 | 7088 |
| 7087 checkUnnamed869(core.List<api.UrlMap> o) { | 7089 checkUnnamed2572(core.List<api.UrlMap> o) { |
| 7088 unittest.expect(o, unittest.hasLength(2)); | 7090 unittest.expect(o, unittest.hasLength(2)); |
| 7089 checkUrlMap(o[0]); | 7091 checkUrlMap(o[0]); |
| 7090 checkUrlMap(o[1]); | 7092 checkUrlMap(o[1]); |
| 7091 } | 7093 } |
| 7092 | 7094 |
| 7093 core.int buildCounterUrlMapList = 0; | 7095 core.int buildCounterUrlMapList = 0; |
| 7094 buildUrlMapList() { | 7096 buildUrlMapList() { |
| 7095 var o = new api.UrlMapList(); | 7097 var o = new api.UrlMapList(); |
| 7096 buildCounterUrlMapList++; | 7098 buildCounterUrlMapList++; |
| 7097 if (buildCounterUrlMapList < 3) { | 7099 if (buildCounterUrlMapList < 3) { |
| 7098 o.id = "foo"; | 7100 o.id = "foo"; |
| 7099 o.items = buildUnnamed869(); | 7101 o.items = buildUnnamed2572(); |
| 7100 o.kind = "foo"; | 7102 o.kind = "foo"; |
| 7101 o.nextPageToken = "foo"; | 7103 o.nextPageToken = "foo"; |
| 7102 o.selfLink = "foo"; | 7104 o.selfLink = "foo"; |
| 7103 } | 7105 } |
| 7104 buildCounterUrlMapList--; | 7106 buildCounterUrlMapList--; |
| 7105 return o; | 7107 return o; |
| 7106 } | 7108 } |
| 7107 | 7109 |
| 7108 checkUrlMapList(api.UrlMapList o) { | 7110 checkUrlMapList(api.UrlMapList o) { |
| 7109 buildCounterUrlMapList++; | 7111 buildCounterUrlMapList++; |
| 7110 if (buildCounterUrlMapList < 3) { | 7112 if (buildCounterUrlMapList < 3) { |
| 7111 unittest.expect(o.id, unittest.equals('foo')); | 7113 unittest.expect(o.id, unittest.equals('foo')); |
| 7112 checkUnnamed869(o.items); | 7114 checkUnnamed2572(o.items); |
| 7113 unittest.expect(o.kind, unittest.equals('foo')); | 7115 unittest.expect(o.kind, unittest.equals('foo')); |
| 7114 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7116 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7115 unittest.expect(o.selfLink, unittest.equals('foo')); | 7117 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7116 } | 7118 } |
| 7117 buildCounterUrlMapList--; | 7119 buildCounterUrlMapList--; |
| 7118 } | 7120 } |
| 7119 | 7121 |
| 7120 core.int buildCounterUrlMapReference = 0; | 7122 core.int buildCounterUrlMapReference = 0; |
| 7121 buildUrlMapReference() { | 7123 buildUrlMapReference() { |
| 7122 var o = new api.UrlMapReference(); | 7124 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7154 buildCounterUrlMapTest++; | 7156 buildCounterUrlMapTest++; |
| 7155 if (buildCounterUrlMapTest < 3) { | 7157 if (buildCounterUrlMapTest < 3) { |
| 7156 unittest.expect(o.description, unittest.equals('foo')); | 7158 unittest.expect(o.description, unittest.equals('foo')); |
| 7157 unittest.expect(o.host, unittest.equals('foo')); | 7159 unittest.expect(o.host, unittest.equals('foo')); |
| 7158 unittest.expect(o.path, unittest.equals('foo')); | 7160 unittest.expect(o.path, unittest.equals('foo')); |
| 7159 unittest.expect(o.service, unittest.equals('foo')); | 7161 unittest.expect(o.service, unittest.equals('foo')); |
| 7160 } | 7162 } |
| 7161 buildCounterUrlMapTest--; | 7163 buildCounterUrlMapTest--; |
| 7162 } | 7164 } |
| 7163 | 7165 |
| 7164 buildUnnamed870() { | 7166 buildUnnamed2573() { |
| 7165 var o = new core.List<core.String>(); | 7167 var o = new core.List<core.String>(); |
| 7166 o.add("foo"); | 7168 o.add("foo"); |
| 7167 o.add("foo"); | 7169 o.add("foo"); |
| 7168 return o; | 7170 return o; |
| 7169 } | 7171 } |
| 7170 | 7172 |
| 7171 checkUnnamed870(core.List<core.String> o) { | 7173 checkUnnamed2573(core.List<core.String> o) { |
| 7172 unittest.expect(o, unittest.hasLength(2)); | 7174 unittest.expect(o, unittest.hasLength(2)); |
| 7173 unittest.expect(o[0], unittest.equals('foo')); | 7175 unittest.expect(o[0], unittest.equals('foo')); |
| 7174 unittest.expect(o[1], unittest.equals('foo')); | 7176 unittest.expect(o[1], unittest.equals('foo')); |
| 7175 } | 7177 } |
| 7176 | 7178 |
| 7177 buildUnnamed871() { | 7179 buildUnnamed2574() { |
| 7178 var o = new core.List<api.TestFailure>(); | 7180 var o = new core.List<api.TestFailure>(); |
| 7179 o.add(buildTestFailure()); | 7181 o.add(buildTestFailure()); |
| 7180 o.add(buildTestFailure()); | 7182 o.add(buildTestFailure()); |
| 7181 return o; | 7183 return o; |
| 7182 } | 7184 } |
| 7183 | 7185 |
| 7184 checkUnnamed871(core.List<api.TestFailure> o) { | 7186 checkUnnamed2574(core.List<api.TestFailure> o) { |
| 7185 unittest.expect(o, unittest.hasLength(2)); | 7187 unittest.expect(o, unittest.hasLength(2)); |
| 7186 checkTestFailure(o[0]); | 7188 checkTestFailure(o[0]); |
| 7187 checkTestFailure(o[1]); | 7189 checkTestFailure(o[1]); |
| 7188 } | 7190 } |
| 7189 | 7191 |
| 7190 core.int buildCounterUrlMapValidationResult = 0; | 7192 core.int buildCounterUrlMapValidationResult = 0; |
| 7191 buildUrlMapValidationResult() { | 7193 buildUrlMapValidationResult() { |
| 7192 var o = new api.UrlMapValidationResult(); | 7194 var o = new api.UrlMapValidationResult(); |
| 7193 buildCounterUrlMapValidationResult++; | 7195 buildCounterUrlMapValidationResult++; |
| 7194 if (buildCounterUrlMapValidationResult < 3) { | 7196 if (buildCounterUrlMapValidationResult < 3) { |
| 7195 o.loadErrors = buildUnnamed870(); | 7197 o.loadErrors = buildUnnamed2573(); |
| 7196 o.loadSucceeded = true; | 7198 o.loadSucceeded = true; |
| 7197 o.testFailures = buildUnnamed871(); | 7199 o.testFailures = buildUnnamed2574(); |
| 7198 o.testPassed = true; | 7200 o.testPassed = true; |
| 7199 } | 7201 } |
| 7200 buildCounterUrlMapValidationResult--; | 7202 buildCounterUrlMapValidationResult--; |
| 7201 return o; | 7203 return o; |
| 7202 } | 7204 } |
| 7203 | 7205 |
| 7204 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 7206 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 7205 buildCounterUrlMapValidationResult++; | 7207 buildCounterUrlMapValidationResult++; |
| 7206 if (buildCounterUrlMapValidationResult < 3) { | 7208 if (buildCounterUrlMapValidationResult < 3) { |
| 7207 checkUnnamed870(o.loadErrors); | 7209 checkUnnamed2573(o.loadErrors); |
| 7208 unittest.expect(o.loadSucceeded, unittest.isTrue); | 7210 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 7209 checkUnnamed871(o.testFailures); | 7211 checkUnnamed2574(o.testFailures); |
| 7210 unittest.expect(o.testPassed, unittest.isTrue); | 7212 unittest.expect(o.testPassed, unittest.isTrue); |
| 7211 } | 7213 } |
| 7212 buildCounterUrlMapValidationResult--; | 7214 buildCounterUrlMapValidationResult--; |
| 7213 } | 7215 } |
| 7214 | 7216 |
| 7215 core.int buildCounterUrlMapsValidateRequest = 0; | 7217 core.int buildCounterUrlMapsValidateRequest = 0; |
| 7216 buildUrlMapsValidateRequest() { | 7218 buildUrlMapsValidateRequest() { |
| 7217 var o = new api.UrlMapsValidateRequest(); | 7219 var o = new api.UrlMapsValidateRequest(); |
| 7218 buildCounterUrlMapsValidateRequest++; | 7220 buildCounterUrlMapsValidateRequest++; |
| 7219 if (buildCounterUrlMapsValidateRequest < 3) { | 7221 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7264 | 7266 |
| 7265 checkUsageExportLocation(api.UsageExportLocation o) { | 7267 checkUsageExportLocation(api.UsageExportLocation o) { |
| 7266 buildCounterUsageExportLocation++; | 7268 buildCounterUsageExportLocation++; |
| 7267 if (buildCounterUsageExportLocation < 3) { | 7269 if (buildCounterUsageExportLocation < 3) { |
| 7268 unittest.expect(o.bucketName, unittest.equals('foo')); | 7270 unittest.expect(o.bucketName, unittest.equals('foo')); |
| 7269 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); | 7271 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); |
| 7270 } | 7272 } |
| 7271 buildCounterUsageExportLocation--; | 7273 buildCounterUsageExportLocation--; |
| 7272 } | 7274 } |
| 7273 | 7275 |
| 7274 buildUnnamed872() { | 7276 buildUnnamed2575() { |
| 7275 var o = new core.List<core.String>(); | 7277 var o = new core.List<core.String>(); |
| 7276 o.add("foo"); | 7278 o.add("foo"); |
| 7277 o.add("foo"); | 7279 o.add("foo"); |
| 7278 return o; | 7280 return o; |
| 7279 } | 7281 } |
| 7280 | 7282 |
| 7281 checkUnnamed872(core.List<core.String> o) { | 7283 checkUnnamed2575(core.List<core.String> o) { |
| 7282 unittest.expect(o, unittest.hasLength(2)); | 7284 unittest.expect(o, unittest.hasLength(2)); |
| 7283 unittest.expect(o[0], unittest.equals('foo')); | 7285 unittest.expect(o[0], unittest.equals('foo')); |
| 7284 unittest.expect(o[1], unittest.equals('foo')); | 7286 unittest.expect(o[1], unittest.equals('foo')); |
| 7285 } | 7287 } |
| 7286 | 7288 |
| 7287 buildUnnamed873() { | 7289 buildUnnamed2576() { |
| 7288 var o = new core.List<core.String>(); | 7290 var o = new core.List<core.String>(); |
| 7289 o.add("foo"); | 7291 o.add("foo"); |
| 7290 o.add("foo"); | 7292 o.add("foo"); |
| 7291 return o; | 7293 return o; |
| 7292 } | 7294 } |
| 7293 | 7295 |
| 7294 checkUnnamed873(core.List<core.String> o) { | 7296 checkUnnamed2576(core.List<core.String> o) { |
| 7295 unittest.expect(o, unittest.hasLength(2)); | 7297 unittest.expect(o, unittest.hasLength(2)); |
| 7296 unittest.expect(o[0], unittest.equals('foo')); | 7298 unittest.expect(o[0], unittest.equals('foo')); |
| 7297 unittest.expect(o[1], unittest.equals('foo')); | 7299 unittest.expect(o[1], unittest.equals('foo')); |
| 7298 } | 7300 } |
| 7299 | 7301 |
| 7300 core.int buildCounterVpnTunnel = 0; | 7302 core.int buildCounterVpnTunnel = 0; |
| 7301 buildVpnTunnel() { | 7303 buildVpnTunnel() { |
| 7302 var o = new api.VpnTunnel(); | 7304 var o = new api.VpnTunnel(); |
| 7303 buildCounterVpnTunnel++; | 7305 buildCounterVpnTunnel++; |
| 7304 if (buildCounterVpnTunnel < 3) { | 7306 if (buildCounterVpnTunnel < 3) { |
| 7305 o.creationTimestamp = "foo"; | 7307 o.creationTimestamp = "foo"; |
| 7306 o.description = "foo"; | 7308 o.description = "foo"; |
| 7307 o.detailedStatus = "foo"; | 7309 o.detailedStatus = "foo"; |
| 7308 o.id = "foo"; | 7310 o.id = "foo"; |
| 7309 o.ikeVersion = 42; | 7311 o.ikeVersion = 42; |
| 7310 o.kind = "foo"; | 7312 o.kind = "foo"; |
| 7311 o.localTrafficSelector = buildUnnamed872(); | 7313 o.localTrafficSelector = buildUnnamed2575(); |
| 7312 o.name = "foo"; | 7314 o.name = "foo"; |
| 7313 o.peerIp = "foo"; | 7315 o.peerIp = "foo"; |
| 7314 o.region = "foo"; | 7316 o.region = "foo"; |
| 7315 o.remoteTrafficSelector = buildUnnamed873(); | 7317 o.remoteTrafficSelector = buildUnnamed2576(); |
| 7316 o.router = "foo"; | 7318 o.router = "foo"; |
| 7317 o.selfLink = "foo"; | 7319 o.selfLink = "foo"; |
| 7318 o.sharedSecret = "foo"; | 7320 o.sharedSecret = "foo"; |
| 7319 o.sharedSecretHash = "foo"; | 7321 o.sharedSecretHash = "foo"; |
| 7320 o.status = "foo"; | 7322 o.status = "foo"; |
| 7321 o.targetVpnGateway = "foo"; | 7323 o.targetVpnGateway = "foo"; |
| 7322 } | 7324 } |
| 7323 buildCounterVpnTunnel--; | 7325 buildCounterVpnTunnel--; |
| 7324 return o; | 7326 return o; |
| 7325 } | 7327 } |
| 7326 | 7328 |
| 7327 checkVpnTunnel(api.VpnTunnel o) { | 7329 checkVpnTunnel(api.VpnTunnel o) { |
| 7328 buildCounterVpnTunnel++; | 7330 buildCounterVpnTunnel++; |
| 7329 if (buildCounterVpnTunnel < 3) { | 7331 if (buildCounterVpnTunnel < 3) { |
| 7330 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7332 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7331 unittest.expect(o.description, unittest.equals('foo')); | 7333 unittest.expect(o.description, unittest.equals('foo')); |
| 7332 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 7334 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 7333 unittest.expect(o.id, unittest.equals('foo')); | 7335 unittest.expect(o.id, unittest.equals('foo')); |
| 7334 unittest.expect(o.ikeVersion, unittest.equals(42)); | 7336 unittest.expect(o.ikeVersion, unittest.equals(42)); |
| 7335 unittest.expect(o.kind, unittest.equals('foo')); | 7337 unittest.expect(o.kind, unittest.equals('foo')); |
| 7336 checkUnnamed872(o.localTrafficSelector); | 7338 checkUnnamed2575(o.localTrafficSelector); |
| 7337 unittest.expect(o.name, unittest.equals('foo')); | 7339 unittest.expect(o.name, unittest.equals('foo')); |
| 7338 unittest.expect(o.peerIp, unittest.equals('foo')); | 7340 unittest.expect(o.peerIp, unittest.equals('foo')); |
| 7339 unittest.expect(o.region, unittest.equals('foo')); | 7341 unittest.expect(o.region, unittest.equals('foo')); |
| 7340 checkUnnamed873(o.remoteTrafficSelector); | 7342 checkUnnamed2576(o.remoteTrafficSelector); |
| 7341 unittest.expect(o.router, unittest.equals('foo')); | 7343 unittest.expect(o.router, unittest.equals('foo')); |
| 7342 unittest.expect(o.selfLink, unittest.equals('foo')); | 7344 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7343 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 7345 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 7344 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 7346 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 7345 unittest.expect(o.status, unittest.equals('foo')); | 7347 unittest.expect(o.status, unittest.equals('foo')); |
| 7346 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 7348 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 7347 } | 7349 } |
| 7348 buildCounterVpnTunnel--; | 7350 buildCounterVpnTunnel--; |
| 7349 } | 7351 } |
| 7350 | 7352 |
| 7351 buildUnnamed874() { | 7353 buildUnnamed2577() { |
| 7352 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 7354 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 7353 o["x"] = buildVpnTunnelsScopedList(); | 7355 o["x"] = buildVpnTunnelsScopedList(); |
| 7354 o["y"] = buildVpnTunnelsScopedList(); | 7356 o["y"] = buildVpnTunnelsScopedList(); |
| 7355 return o; | 7357 return o; |
| 7356 } | 7358 } |
| 7357 | 7359 |
| 7358 checkUnnamed874(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 7360 checkUnnamed2577(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 7359 unittest.expect(o, unittest.hasLength(2)); | 7361 unittest.expect(o, unittest.hasLength(2)); |
| 7360 checkVpnTunnelsScopedList(o["x"]); | 7362 checkVpnTunnelsScopedList(o["x"]); |
| 7361 checkVpnTunnelsScopedList(o["y"]); | 7363 checkVpnTunnelsScopedList(o["y"]); |
| 7362 } | 7364 } |
| 7363 | 7365 |
| 7364 core.int buildCounterVpnTunnelAggregatedList = 0; | 7366 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 7365 buildVpnTunnelAggregatedList() { | 7367 buildVpnTunnelAggregatedList() { |
| 7366 var o = new api.VpnTunnelAggregatedList(); | 7368 var o = new api.VpnTunnelAggregatedList(); |
| 7367 buildCounterVpnTunnelAggregatedList++; | 7369 buildCounterVpnTunnelAggregatedList++; |
| 7368 if (buildCounterVpnTunnelAggregatedList < 3) { | 7370 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 7369 o.id = "foo"; | 7371 o.id = "foo"; |
| 7370 o.items = buildUnnamed874(); | 7372 o.items = buildUnnamed2577(); |
| 7371 o.kind = "foo"; | 7373 o.kind = "foo"; |
| 7372 o.nextPageToken = "foo"; | 7374 o.nextPageToken = "foo"; |
| 7373 o.selfLink = "foo"; | 7375 o.selfLink = "foo"; |
| 7374 } | 7376 } |
| 7375 buildCounterVpnTunnelAggregatedList--; | 7377 buildCounterVpnTunnelAggregatedList--; |
| 7376 return o; | 7378 return o; |
| 7377 } | 7379 } |
| 7378 | 7380 |
| 7379 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 7381 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 7380 buildCounterVpnTunnelAggregatedList++; | 7382 buildCounterVpnTunnelAggregatedList++; |
| 7381 if (buildCounterVpnTunnelAggregatedList < 3) { | 7383 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 7382 unittest.expect(o.id, unittest.equals('foo')); | 7384 unittest.expect(o.id, unittest.equals('foo')); |
| 7383 checkUnnamed874(o.items); | 7385 checkUnnamed2577(o.items); |
| 7384 unittest.expect(o.kind, unittest.equals('foo')); | 7386 unittest.expect(o.kind, unittest.equals('foo')); |
| 7385 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7387 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7386 unittest.expect(o.selfLink, unittest.equals('foo')); | 7388 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7387 } | 7389 } |
| 7388 buildCounterVpnTunnelAggregatedList--; | 7390 buildCounterVpnTunnelAggregatedList--; |
| 7389 } | 7391 } |
| 7390 | 7392 |
| 7391 buildUnnamed875() { | 7393 buildUnnamed2578() { |
| 7392 var o = new core.List<api.VpnTunnel>(); | 7394 var o = new core.List<api.VpnTunnel>(); |
| 7393 o.add(buildVpnTunnel()); | 7395 o.add(buildVpnTunnel()); |
| 7394 o.add(buildVpnTunnel()); | 7396 o.add(buildVpnTunnel()); |
| 7395 return o; | 7397 return o; |
| 7396 } | 7398 } |
| 7397 | 7399 |
| 7398 checkUnnamed875(core.List<api.VpnTunnel> o) { | 7400 checkUnnamed2578(core.List<api.VpnTunnel> o) { |
| 7399 unittest.expect(o, unittest.hasLength(2)); | 7401 unittest.expect(o, unittest.hasLength(2)); |
| 7400 checkVpnTunnel(o[0]); | 7402 checkVpnTunnel(o[0]); |
| 7401 checkVpnTunnel(o[1]); | 7403 checkVpnTunnel(o[1]); |
| 7402 } | 7404 } |
| 7403 | 7405 |
| 7404 core.int buildCounterVpnTunnelList = 0; | 7406 core.int buildCounterVpnTunnelList = 0; |
| 7405 buildVpnTunnelList() { | 7407 buildVpnTunnelList() { |
| 7406 var o = new api.VpnTunnelList(); | 7408 var o = new api.VpnTunnelList(); |
| 7407 buildCounterVpnTunnelList++; | 7409 buildCounterVpnTunnelList++; |
| 7408 if (buildCounterVpnTunnelList < 3) { | 7410 if (buildCounterVpnTunnelList < 3) { |
| 7409 o.id = "foo"; | 7411 o.id = "foo"; |
| 7410 o.items = buildUnnamed875(); | 7412 o.items = buildUnnamed2578(); |
| 7411 o.kind = "foo"; | 7413 o.kind = "foo"; |
| 7412 o.nextPageToken = "foo"; | 7414 o.nextPageToken = "foo"; |
| 7413 o.selfLink = "foo"; | 7415 o.selfLink = "foo"; |
| 7414 } | 7416 } |
| 7415 buildCounterVpnTunnelList--; | 7417 buildCounterVpnTunnelList--; |
| 7416 return o; | 7418 return o; |
| 7417 } | 7419 } |
| 7418 | 7420 |
| 7419 checkVpnTunnelList(api.VpnTunnelList o) { | 7421 checkVpnTunnelList(api.VpnTunnelList o) { |
| 7420 buildCounterVpnTunnelList++; | 7422 buildCounterVpnTunnelList++; |
| 7421 if (buildCounterVpnTunnelList < 3) { | 7423 if (buildCounterVpnTunnelList < 3) { |
| 7422 unittest.expect(o.id, unittest.equals('foo')); | 7424 unittest.expect(o.id, unittest.equals('foo')); |
| 7423 checkUnnamed875(o.items); | 7425 checkUnnamed2578(o.items); |
| 7424 unittest.expect(o.kind, unittest.equals('foo')); | 7426 unittest.expect(o.kind, unittest.equals('foo')); |
| 7425 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7427 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7426 unittest.expect(o.selfLink, unittest.equals('foo')); | 7428 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7427 } | 7429 } |
| 7428 buildCounterVpnTunnelList--; | 7430 buildCounterVpnTunnelList--; |
| 7429 } | 7431 } |
| 7430 | 7432 |
| 7431 buildUnnamed876() { | 7433 buildUnnamed2579() { |
| 7432 var o = new core.List<api.VpnTunnel>(); | 7434 var o = new core.List<api.VpnTunnel>(); |
| 7433 o.add(buildVpnTunnel()); | 7435 o.add(buildVpnTunnel()); |
| 7434 o.add(buildVpnTunnel()); | 7436 o.add(buildVpnTunnel()); |
| 7435 return o; | 7437 return o; |
| 7436 } | 7438 } |
| 7437 | 7439 |
| 7438 checkUnnamed876(core.List<api.VpnTunnel> o) { | 7440 checkUnnamed2579(core.List<api.VpnTunnel> o) { |
| 7439 unittest.expect(o, unittest.hasLength(2)); | 7441 unittest.expect(o, unittest.hasLength(2)); |
| 7440 checkVpnTunnel(o[0]); | 7442 checkVpnTunnel(o[0]); |
| 7441 checkVpnTunnel(o[1]); | 7443 checkVpnTunnel(o[1]); |
| 7442 } | 7444 } |
| 7443 | 7445 |
| 7444 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 7446 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 7445 buildVpnTunnelsScopedListWarningData() { | 7447 buildVpnTunnelsScopedListWarningData() { |
| 7446 var o = new api.VpnTunnelsScopedListWarningData(); | 7448 var o = new api.VpnTunnelsScopedListWarningData(); |
| 7447 buildCounterVpnTunnelsScopedListWarningData++; | 7449 buildCounterVpnTunnelsScopedListWarningData++; |
| 7448 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 7450 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 7449 o.key = "foo"; | 7451 o.key = "foo"; |
| 7450 o.value = "foo"; | 7452 o.value = "foo"; |
| 7451 } | 7453 } |
| 7452 buildCounterVpnTunnelsScopedListWarningData--; | 7454 buildCounterVpnTunnelsScopedListWarningData--; |
| 7453 return o; | 7455 return o; |
| 7454 } | 7456 } |
| 7455 | 7457 |
| 7456 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 7458 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 7457 buildCounterVpnTunnelsScopedListWarningData++; | 7459 buildCounterVpnTunnelsScopedListWarningData++; |
| 7458 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 7460 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 7459 unittest.expect(o.key, unittest.equals('foo')); | 7461 unittest.expect(o.key, unittest.equals('foo')); |
| 7460 unittest.expect(o.value, unittest.equals('foo')); | 7462 unittest.expect(o.value, unittest.equals('foo')); |
| 7461 } | 7463 } |
| 7462 buildCounterVpnTunnelsScopedListWarningData--; | 7464 buildCounterVpnTunnelsScopedListWarningData--; |
| 7463 } | 7465 } |
| 7464 | 7466 |
| 7465 buildUnnamed877() { | 7467 buildUnnamed2580() { |
| 7466 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 7468 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 7467 o.add(buildVpnTunnelsScopedListWarningData()); | 7469 o.add(buildVpnTunnelsScopedListWarningData()); |
| 7468 o.add(buildVpnTunnelsScopedListWarningData()); | 7470 o.add(buildVpnTunnelsScopedListWarningData()); |
| 7469 return o; | 7471 return o; |
| 7470 } | 7472 } |
| 7471 | 7473 |
| 7472 checkUnnamed877(core.List<api.VpnTunnelsScopedListWarningData> o) { | 7474 checkUnnamed2580(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 7473 unittest.expect(o, unittest.hasLength(2)); | 7475 unittest.expect(o, unittest.hasLength(2)); |
| 7474 checkVpnTunnelsScopedListWarningData(o[0]); | 7476 checkVpnTunnelsScopedListWarningData(o[0]); |
| 7475 checkVpnTunnelsScopedListWarningData(o[1]); | 7477 checkVpnTunnelsScopedListWarningData(o[1]); |
| 7476 } | 7478 } |
| 7477 | 7479 |
| 7478 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 7480 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 7479 buildVpnTunnelsScopedListWarning() { | 7481 buildVpnTunnelsScopedListWarning() { |
| 7480 var o = new api.VpnTunnelsScopedListWarning(); | 7482 var o = new api.VpnTunnelsScopedListWarning(); |
| 7481 buildCounterVpnTunnelsScopedListWarning++; | 7483 buildCounterVpnTunnelsScopedListWarning++; |
| 7482 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 7484 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 7483 o.code = "foo"; | 7485 o.code = "foo"; |
| 7484 o.data = buildUnnamed877(); | 7486 o.data = buildUnnamed2580(); |
| 7485 o.message = "foo"; | 7487 o.message = "foo"; |
| 7486 } | 7488 } |
| 7487 buildCounterVpnTunnelsScopedListWarning--; | 7489 buildCounterVpnTunnelsScopedListWarning--; |
| 7488 return o; | 7490 return o; |
| 7489 } | 7491 } |
| 7490 | 7492 |
| 7491 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 7493 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 7492 buildCounterVpnTunnelsScopedListWarning++; | 7494 buildCounterVpnTunnelsScopedListWarning++; |
| 7493 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 7495 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 7494 unittest.expect(o.code, unittest.equals('foo')); | 7496 unittest.expect(o.code, unittest.equals('foo')); |
| 7495 checkUnnamed877(o.data); | 7497 checkUnnamed2580(o.data); |
| 7496 unittest.expect(o.message, unittest.equals('foo')); | 7498 unittest.expect(o.message, unittest.equals('foo')); |
| 7497 } | 7499 } |
| 7498 buildCounterVpnTunnelsScopedListWarning--; | 7500 buildCounterVpnTunnelsScopedListWarning--; |
| 7499 } | 7501 } |
| 7500 | 7502 |
| 7501 core.int buildCounterVpnTunnelsScopedList = 0; | 7503 core.int buildCounterVpnTunnelsScopedList = 0; |
| 7502 buildVpnTunnelsScopedList() { | 7504 buildVpnTunnelsScopedList() { |
| 7503 var o = new api.VpnTunnelsScopedList(); | 7505 var o = new api.VpnTunnelsScopedList(); |
| 7504 buildCounterVpnTunnelsScopedList++; | 7506 buildCounterVpnTunnelsScopedList++; |
| 7505 if (buildCounterVpnTunnelsScopedList < 3) { | 7507 if (buildCounterVpnTunnelsScopedList < 3) { |
| 7506 o.vpnTunnels = buildUnnamed876(); | 7508 o.vpnTunnels = buildUnnamed2579(); |
| 7507 o.warning = buildVpnTunnelsScopedListWarning(); | 7509 o.warning = buildVpnTunnelsScopedListWarning(); |
| 7508 } | 7510 } |
| 7509 buildCounterVpnTunnelsScopedList--; | 7511 buildCounterVpnTunnelsScopedList--; |
| 7510 return o; | 7512 return o; |
| 7511 } | 7513 } |
| 7512 | 7514 |
| 7513 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 7515 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 7514 buildCounterVpnTunnelsScopedList++; | 7516 buildCounterVpnTunnelsScopedList++; |
| 7515 if (buildCounterVpnTunnelsScopedList < 3) { | 7517 if (buildCounterVpnTunnelsScopedList < 3) { |
| 7516 checkUnnamed876(o.vpnTunnels); | 7518 checkUnnamed2579(o.vpnTunnels); |
| 7517 checkVpnTunnelsScopedListWarning(o.warning); | 7519 checkVpnTunnelsScopedListWarning(o.warning); |
| 7518 } | 7520 } |
| 7519 buildCounterVpnTunnelsScopedList--; | 7521 buildCounterVpnTunnelsScopedList--; |
| 7520 } | 7522 } |
| 7521 | 7523 |
| 7522 core.int buildCounterZone = 0; | 7524 core.int buildCounterZone = 0; |
| 7523 buildZone() { | 7525 buildZone() { |
| 7524 var o = new api.Zone(); | 7526 var o = new api.Zone(); |
| 7525 buildCounterZone++; | 7527 buildCounterZone++; |
| 7526 if (buildCounterZone < 3) { | 7528 if (buildCounterZone < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 7547 unittest.expect(o.id, unittest.equals('foo')); | 7549 unittest.expect(o.id, unittest.equals('foo')); |
| 7548 unittest.expect(o.kind, unittest.equals('foo')); | 7550 unittest.expect(o.kind, unittest.equals('foo')); |
| 7549 unittest.expect(o.name, unittest.equals('foo')); | 7551 unittest.expect(o.name, unittest.equals('foo')); |
| 7550 unittest.expect(o.region, unittest.equals('foo')); | 7552 unittest.expect(o.region, unittest.equals('foo')); |
| 7551 unittest.expect(o.selfLink, unittest.equals('foo')); | 7553 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7552 unittest.expect(o.status, unittest.equals('foo')); | 7554 unittest.expect(o.status, unittest.equals('foo')); |
| 7553 } | 7555 } |
| 7554 buildCounterZone--; | 7556 buildCounterZone--; |
| 7555 } | 7557 } |
| 7556 | 7558 |
| 7557 buildUnnamed878() { | 7559 buildUnnamed2581() { |
| 7558 var o = new core.List<api.Zone>(); | 7560 var o = new core.List<api.Zone>(); |
| 7559 o.add(buildZone()); | 7561 o.add(buildZone()); |
| 7560 o.add(buildZone()); | 7562 o.add(buildZone()); |
| 7561 return o; | 7563 return o; |
| 7562 } | 7564 } |
| 7563 | 7565 |
| 7564 checkUnnamed878(core.List<api.Zone> o) { | 7566 checkUnnamed2581(core.List<api.Zone> o) { |
| 7565 unittest.expect(o, unittest.hasLength(2)); | 7567 unittest.expect(o, unittest.hasLength(2)); |
| 7566 checkZone(o[0]); | 7568 checkZone(o[0]); |
| 7567 checkZone(o[1]); | 7569 checkZone(o[1]); |
| 7568 } | 7570 } |
| 7569 | 7571 |
| 7570 core.int buildCounterZoneList = 0; | 7572 core.int buildCounterZoneList = 0; |
| 7571 buildZoneList() { | 7573 buildZoneList() { |
| 7572 var o = new api.ZoneList(); | 7574 var o = new api.ZoneList(); |
| 7573 buildCounterZoneList++; | 7575 buildCounterZoneList++; |
| 7574 if (buildCounterZoneList < 3) { | 7576 if (buildCounterZoneList < 3) { |
| 7575 o.id = "foo"; | 7577 o.id = "foo"; |
| 7576 o.items = buildUnnamed878(); | 7578 o.items = buildUnnamed2581(); |
| 7577 o.kind = "foo"; | 7579 o.kind = "foo"; |
| 7578 o.nextPageToken = "foo"; | 7580 o.nextPageToken = "foo"; |
| 7579 o.selfLink = "foo"; | 7581 o.selfLink = "foo"; |
| 7580 } | 7582 } |
| 7581 buildCounterZoneList--; | 7583 buildCounterZoneList--; |
| 7582 return o; | 7584 return o; |
| 7583 } | 7585 } |
| 7584 | 7586 |
| 7585 checkZoneList(api.ZoneList o) { | 7587 checkZoneList(api.ZoneList o) { |
| 7586 buildCounterZoneList++; | 7588 buildCounterZoneList++; |
| 7587 if (buildCounterZoneList < 3) { | 7589 if (buildCounterZoneList < 3) { |
| 7588 unittest.expect(o.id, unittest.equals('foo')); | 7590 unittest.expect(o.id, unittest.equals('foo')); |
| 7589 checkUnnamed878(o.items); | 7591 checkUnnamed2581(o.items); |
| 7590 unittest.expect(o.kind, unittest.equals('foo')); | 7592 unittest.expect(o.kind, unittest.equals('foo')); |
| 7591 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7593 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7592 unittest.expect(o.selfLink, unittest.equals('foo')); | 7594 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7593 } | 7595 } |
| 7594 buildCounterZoneList--; | 7596 buildCounterZoneList--; |
| 7595 } | 7597 } |
| 7596 | 7598 |
| 7597 | 7599 |
| 7598 main() { | 7600 main() { |
| 7599 unittest.group("obj-schema-AccessConfig", () { | 7601 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 11679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19279 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { | 19281 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { |
| 19280 checkZoneList(response); | 19282 checkZoneList(response); |
| 19281 }))); | 19283 }))); |
| 19282 }); | 19284 }); |
| 19283 | 19285 |
| 19284 }); | 19286 }); |
| 19285 | 19287 |
| 19286 | 19288 |
| 19287 } | 19289 } |
| 19288 | 19290 |
| OLD | NEW |