| 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 buildUnnamed687() { | 79 buildUnnamed2272() { |
| 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 checkUnnamed687(core.List<core.String> o) { | 86 checkUnnamed2272(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 = buildUnnamed687(); | 106 o.users = buildUnnamed2272(); |
| 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 checkUnnamed687(o.users); | 124 checkUnnamed2272(o.users); |
| 125 } | 125 } |
| 126 buildCounterAddress--; | 126 buildCounterAddress--; |
| 127 } | 127 } |
| 128 | 128 |
| 129 buildUnnamed688() { | 129 buildUnnamed2273() { |
| 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 checkUnnamed688(core.Map<core.String, api.AddressesScopedList> o) { | 136 checkUnnamed2273(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 = buildUnnamed688(); | 148 o.items = buildUnnamed2273(); |
| 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 checkUnnamed688(o.items); | 161 checkUnnamed2273(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 buildUnnamed689() { | 169 buildUnnamed2274() { |
| 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 checkUnnamed689(core.List<api.Address> o) { | 176 checkUnnamed2274(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 = buildUnnamed689(); | 188 o.items = buildUnnamed2274(); |
| 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 checkUnnamed689(o.items); | 201 checkUnnamed2274(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 buildUnnamed690() { | 209 buildUnnamed2275() { |
| 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 checkUnnamed690(core.List<api.Address> o) { | 216 checkUnnamed2275(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 buildUnnamed691() { | 243 buildUnnamed2276() { |
| 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 checkUnnamed691(core.List<api.AddressesScopedListWarningData> o) { | 250 checkUnnamed2276(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 = buildUnnamed691(); | 262 o.data = buildUnnamed2276(); |
| 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 checkUnnamed691(o.data); | 273 checkUnnamed2276(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 = buildUnnamed690(); | 284 o.addresses = buildUnnamed2275(); |
| 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 checkUnnamed690(o.addresses); | 294 checkUnnamed2275(o.addresses); |
| 295 checkAddressesScopedListWarning(o.warning); | 295 checkAddressesScopedListWarning(o.warning); |
| 296 } | 296 } |
| 297 buildCounterAddressesScopedList--; | 297 buildCounterAddressesScopedList--; |
| 298 } | 298 } |
| 299 | 299 |
| 300 buildUnnamed692() { | 300 buildUnnamed2277() { |
| 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 checkUnnamed692(core.List<core.String> o) { | 307 checkUnnamed2277(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 = buildUnnamed692(); | 326 o.licenses = buildUnnamed2277(); |
| 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 checkUnnamed692(o.licenses); | 346 checkUnnamed2277(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 buildUnnamed693() { | 416 buildUnnamed2278() { |
| 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 checkUnnamed693(core.Map<core.String, api.AutoscalersScopedList> o) { | 423 checkUnnamed2278(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 = buildUnnamed693(); | 435 o.items = buildUnnamed2278(); |
| 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 checkUnnamed693(o.items); | 448 checkUnnamed2278(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 buildUnnamed694() { | 456 buildUnnamed2279() { |
| 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 checkUnnamed694(core.List<api.Autoscaler> o) { | 463 checkUnnamed2279(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 = buildUnnamed694(); | 475 o.items = buildUnnamed2279(); |
| 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 checkUnnamed694(o.items); | 488 checkUnnamed2279(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 buildUnnamed695() { | 496 buildUnnamed2280() { |
| 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 checkUnnamed695(core.List<api.Autoscaler> o) { | 503 checkUnnamed2280(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 buildUnnamed696() { | 530 buildUnnamed2281() { |
| 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 checkUnnamed696(core.List<api.AutoscalersScopedListWarningData> o) { | 537 checkUnnamed2281(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 = buildUnnamed696(); | 549 o.data = buildUnnamed2281(); |
| 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 checkUnnamed696(o.data); | 560 checkUnnamed2281(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 = buildUnnamed695(); | 571 o.autoscalers = buildUnnamed2280(); |
| 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 checkUnnamed695(o.autoscalers); | 581 checkUnnamed2280(o.autoscalers); |
| 582 checkAutoscalersScopedListWarning(o.warning); | 582 checkAutoscalersScopedListWarning(o.warning); |
| 583 } | 583 } |
| 584 buildCounterAutoscalersScopedList--; | 584 buildCounterAutoscalersScopedList--; |
| 585 } | 585 } |
| 586 | 586 |
| 587 buildUnnamed697() { | 587 buildUnnamed2282() { |
| 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 checkUnnamed697(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 594 checkUnnamed2282(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 = buildUnnamed697(); | 607 o.customMetricUtilizations = buildUnnamed2282(); |
| 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 checkUnnamed697(o.customMetricUtilizations); | 621 checkUnnamed2282(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 buildUnnamed698() { | 721 buildUnnamed2283() { |
| 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 checkUnnamed698(core.List<api.Backend> o) { | 728 checkUnnamed2283(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 buildUnnamed699() { | 734 buildUnnamed2284() { |
| 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 checkUnnamed699(core.List<core.String> o) { | 741 checkUnnamed2284(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.backends = buildUnnamed698(); | 752 o.backends = buildUnnamed2283(); |
| 753 o.creationTimestamp = "foo"; | 753 o.creationTimestamp = "foo"; |
| 754 o.description = "foo"; | 754 o.description = "foo"; |
| 755 o.enableCDN = true; | 755 o.enableCDN = true; |
| 756 o.fingerprint = "foo"; | 756 o.fingerprint = "foo"; |
| 757 o.healthChecks = buildUnnamed699(); | 757 o.healthChecks = buildUnnamed2284(); |
| 758 o.id = "foo"; | 758 o.id = "foo"; |
| 759 o.kind = "foo"; | 759 o.kind = "foo"; |
| 760 o.name = "foo"; | 760 o.name = "foo"; |
| 761 o.port = 42; | 761 o.port = 42; |
| 762 o.portName = "foo"; | 762 o.portName = "foo"; |
| 763 o.protocol = "foo"; | 763 o.protocol = "foo"; |
| 764 o.region = "foo"; | 764 o.region = "foo"; |
| 765 o.selfLink = "foo"; | 765 o.selfLink = "foo"; |
| 766 o.timeoutSec = 42; | 766 o.timeoutSec = 42; |
| 767 } | 767 } |
| 768 buildCounterBackendService--; | 768 buildCounterBackendService--; |
| 769 return o; | 769 return o; |
| 770 } | 770 } |
| 771 | 771 |
| 772 checkBackendService(api.BackendService o) { | 772 checkBackendService(api.BackendService o) { |
| 773 buildCounterBackendService++; | 773 buildCounterBackendService++; |
| 774 if (buildCounterBackendService < 3) { | 774 if (buildCounterBackendService < 3) { |
| 775 checkUnnamed698(o.backends); | 775 checkUnnamed2283(o.backends); |
| 776 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 776 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 777 unittest.expect(o.description, unittest.equals('foo')); | 777 unittest.expect(o.description, unittest.equals('foo')); |
| 778 unittest.expect(o.enableCDN, unittest.isTrue); | 778 unittest.expect(o.enableCDN, unittest.isTrue); |
| 779 unittest.expect(o.fingerprint, unittest.equals('foo')); | 779 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 780 checkUnnamed699(o.healthChecks); | 780 checkUnnamed2284(o.healthChecks); |
| 781 unittest.expect(o.id, unittest.equals('foo')); | 781 unittest.expect(o.id, unittest.equals('foo')); |
| 782 unittest.expect(o.kind, unittest.equals('foo')); | 782 unittest.expect(o.kind, unittest.equals('foo')); |
| 783 unittest.expect(o.name, unittest.equals('foo')); | 783 unittest.expect(o.name, unittest.equals('foo')); |
| 784 unittest.expect(o.port, unittest.equals(42)); | 784 unittest.expect(o.port, unittest.equals(42)); |
| 785 unittest.expect(o.portName, unittest.equals('foo')); | 785 unittest.expect(o.portName, unittest.equals('foo')); |
| 786 unittest.expect(o.protocol, unittest.equals('foo')); | 786 unittest.expect(o.protocol, unittest.equals('foo')); |
| 787 unittest.expect(o.region, unittest.equals('foo')); | 787 unittest.expect(o.region, unittest.equals('foo')); |
| 788 unittest.expect(o.selfLink, unittest.equals('foo')); | 788 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 789 unittest.expect(o.timeoutSec, unittest.equals(42)); | 789 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 790 } | 790 } |
| 791 buildCounterBackendService--; | 791 buildCounterBackendService--; |
| 792 } | 792 } |
| 793 | 793 |
| 794 buildUnnamed700() { | 794 buildUnnamed2285() { |
| 795 var o = new core.List<api.HealthStatus>(); | 795 var o = new core.List<api.HealthStatus>(); |
| 796 o.add(buildHealthStatus()); | 796 o.add(buildHealthStatus()); |
| 797 o.add(buildHealthStatus()); | 797 o.add(buildHealthStatus()); |
| 798 return o; | 798 return o; |
| 799 } | 799 } |
| 800 | 800 |
| 801 checkUnnamed700(core.List<api.HealthStatus> o) { | 801 checkUnnamed2285(core.List<api.HealthStatus> o) { |
| 802 unittest.expect(o, unittest.hasLength(2)); | 802 unittest.expect(o, unittest.hasLength(2)); |
| 803 checkHealthStatus(o[0]); | 803 checkHealthStatus(o[0]); |
| 804 checkHealthStatus(o[1]); | 804 checkHealthStatus(o[1]); |
| 805 } | 805 } |
| 806 | 806 |
| 807 core.int buildCounterBackendServiceGroupHealth = 0; | 807 core.int buildCounterBackendServiceGroupHealth = 0; |
| 808 buildBackendServiceGroupHealth() { | 808 buildBackendServiceGroupHealth() { |
| 809 var o = new api.BackendServiceGroupHealth(); | 809 var o = new api.BackendServiceGroupHealth(); |
| 810 buildCounterBackendServiceGroupHealth++; | 810 buildCounterBackendServiceGroupHealth++; |
| 811 if (buildCounterBackendServiceGroupHealth < 3) { | 811 if (buildCounterBackendServiceGroupHealth < 3) { |
| 812 o.healthStatus = buildUnnamed700(); | 812 o.healthStatus = buildUnnamed2285(); |
| 813 o.kind = "foo"; | 813 o.kind = "foo"; |
| 814 } | 814 } |
| 815 buildCounterBackendServiceGroupHealth--; | 815 buildCounterBackendServiceGroupHealth--; |
| 816 return o; | 816 return o; |
| 817 } | 817 } |
| 818 | 818 |
| 819 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 819 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 820 buildCounterBackendServiceGroupHealth++; | 820 buildCounterBackendServiceGroupHealth++; |
| 821 if (buildCounterBackendServiceGroupHealth < 3) { | 821 if (buildCounterBackendServiceGroupHealth < 3) { |
| 822 checkUnnamed700(o.healthStatus); | 822 checkUnnamed2285(o.healthStatus); |
| 823 unittest.expect(o.kind, unittest.equals('foo')); | 823 unittest.expect(o.kind, unittest.equals('foo')); |
| 824 } | 824 } |
| 825 buildCounterBackendServiceGroupHealth--; | 825 buildCounterBackendServiceGroupHealth--; |
| 826 } | 826 } |
| 827 | 827 |
| 828 buildUnnamed701() { | 828 buildUnnamed2286() { |
| 829 var o = new core.List<api.BackendService>(); | 829 var o = new core.List<api.BackendService>(); |
| 830 o.add(buildBackendService()); | 830 o.add(buildBackendService()); |
| 831 o.add(buildBackendService()); | 831 o.add(buildBackendService()); |
| 832 return o; | 832 return o; |
| 833 } | 833 } |
| 834 | 834 |
| 835 checkUnnamed701(core.List<api.BackendService> o) { | 835 checkUnnamed2286(core.List<api.BackendService> o) { |
| 836 unittest.expect(o, unittest.hasLength(2)); | 836 unittest.expect(o, unittest.hasLength(2)); |
| 837 checkBackendService(o[0]); | 837 checkBackendService(o[0]); |
| 838 checkBackendService(o[1]); | 838 checkBackendService(o[1]); |
| 839 } | 839 } |
| 840 | 840 |
| 841 core.int buildCounterBackendServiceList = 0; | 841 core.int buildCounterBackendServiceList = 0; |
| 842 buildBackendServiceList() { | 842 buildBackendServiceList() { |
| 843 var o = new api.BackendServiceList(); | 843 var o = new api.BackendServiceList(); |
| 844 buildCounterBackendServiceList++; | 844 buildCounterBackendServiceList++; |
| 845 if (buildCounterBackendServiceList < 3) { | 845 if (buildCounterBackendServiceList < 3) { |
| 846 o.id = "foo"; | 846 o.id = "foo"; |
| 847 o.items = buildUnnamed701(); | 847 o.items = buildUnnamed2286(); |
| 848 o.kind = "foo"; | 848 o.kind = "foo"; |
| 849 o.nextPageToken = "foo"; | 849 o.nextPageToken = "foo"; |
| 850 o.selfLink = "foo"; | 850 o.selfLink = "foo"; |
| 851 } | 851 } |
| 852 buildCounterBackendServiceList--; | 852 buildCounterBackendServiceList--; |
| 853 return o; | 853 return o; |
| 854 } | 854 } |
| 855 | 855 |
| 856 checkBackendServiceList(api.BackendServiceList o) { | 856 checkBackendServiceList(api.BackendServiceList o) { |
| 857 buildCounterBackendServiceList++; | 857 buildCounterBackendServiceList++; |
| 858 if (buildCounterBackendServiceList < 3) { | 858 if (buildCounterBackendServiceList < 3) { |
| 859 unittest.expect(o.id, unittest.equals('foo')); | 859 unittest.expect(o.id, unittest.equals('foo')); |
| 860 checkUnnamed701(o.items); | 860 checkUnnamed2286(o.items); |
| 861 unittest.expect(o.kind, unittest.equals('foo')); | 861 unittest.expect(o.kind, unittest.equals('foo')); |
| 862 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 862 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 863 unittest.expect(o.selfLink, unittest.equals('foo')); | 863 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 864 } | 864 } |
| 865 buildCounterBackendServiceList--; | 865 buildCounterBackendServiceList--; |
| 866 } | 866 } |
| 867 | 867 |
| 868 core.int buildCounterCacheInvalidationRule = 0; | 868 core.int buildCounterCacheInvalidationRule = 0; |
| 869 buildCacheInvalidationRule() { | 869 buildCacheInvalidationRule() { |
| 870 var o = new api.CacheInvalidationRule(); | 870 var o = new api.CacheInvalidationRule(); |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 946 if (buildCounterDeprecationStatus < 3) { | 946 if (buildCounterDeprecationStatus < 3) { |
| 947 unittest.expect(o.deleted, unittest.equals('foo')); | 947 unittest.expect(o.deleted, unittest.equals('foo')); |
| 948 unittest.expect(o.deprecated, unittest.equals('foo')); | 948 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 949 unittest.expect(o.obsolete, unittest.equals('foo')); | 949 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 950 unittest.expect(o.replacement, unittest.equals('foo')); | 950 unittest.expect(o.replacement, unittest.equals('foo')); |
| 951 unittest.expect(o.state, unittest.equals('foo')); | 951 unittest.expect(o.state, unittest.equals('foo')); |
| 952 } | 952 } |
| 953 buildCounterDeprecationStatus--; | 953 buildCounterDeprecationStatus--; |
| 954 } | 954 } |
| 955 | 955 |
| 956 buildUnnamed702() { | 956 buildUnnamed2287() { |
| 957 var o = new core.List<core.String>(); | 957 var o = new core.List<core.String>(); |
| 958 o.add("foo"); | 958 o.add("foo"); |
| 959 o.add("foo"); | 959 o.add("foo"); |
| 960 return o; | 960 return o; |
| 961 } | 961 } |
| 962 | 962 |
| 963 checkUnnamed702(core.List<core.String> o) { | 963 checkUnnamed2287(core.List<core.String> o) { |
| 964 unittest.expect(o, unittest.hasLength(2)); | 964 unittest.expect(o, unittest.hasLength(2)); |
| 965 unittest.expect(o[0], unittest.equals('foo')); | 965 unittest.expect(o[0], unittest.equals('foo')); |
| 966 unittest.expect(o[1], unittest.equals('foo')); | 966 unittest.expect(o[1], unittest.equals('foo')); |
| 967 } | 967 } |
| 968 | 968 |
| 969 buildUnnamed703() { | 969 buildUnnamed2288() { |
| 970 var o = new core.List<core.String>(); | 970 var o = new core.List<core.String>(); |
| 971 o.add("foo"); | 971 o.add("foo"); |
| 972 o.add("foo"); | 972 o.add("foo"); |
| 973 return o; | 973 return o; |
| 974 } | 974 } |
| 975 | 975 |
| 976 checkUnnamed703(core.List<core.String> o) { | 976 checkUnnamed2288(core.List<core.String> o) { |
| 977 unittest.expect(o, unittest.hasLength(2)); | 977 unittest.expect(o, unittest.hasLength(2)); |
| 978 unittest.expect(o[0], unittest.equals('foo')); | 978 unittest.expect(o[0], unittest.equals('foo')); |
| 979 unittest.expect(o[1], unittest.equals('foo')); | 979 unittest.expect(o[1], unittest.equals('foo')); |
| 980 } | 980 } |
| 981 | 981 |
| 982 core.int buildCounterDisk = 0; | 982 core.int buildCounterDisk = 0; |
| 983 buildDisk() { | 983 buildDisk() { |
| 984 var o = new api.Disk(); | 984 var o = new api.Disk(); |
| 985 buildCounterDisk++; | 985 buildCounterDisk++; |
| 986 if (buildCounterDisk < 3) { | 986 if (buildCounterDisk < 3) { |
| 987 o.creationTimestamp = "foo"; | 987 o.creationTimestamp = "foo"; |
| 988 o.description = "foo"; | 988 o.description = "foo"; |
| 989 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 989 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 990 o.id = "foo"; | 990 o.id = "foo"; |
| 991 o.kind = "foo"; | 991 o.kind = "foo"; |
| 992 o.lastAttachTimestamp = "foo"; | 992 o.lastAttachTimestamp = "foo"; |
| 993 o.lastDetachTimestamp = "foo"; | 993 o.lastDetachTimestamp = "foo"; |
| 994 o.licenses = buildUnnamed702(); | 994 o.licenses = buildUnnamed2287(); |
| 995 o.name = "foo"; | 995 o.name = "foo"; |
| 996 o.options = "foo"; | 996 o.options = "foo"; |
| 997 o.selfLink = "foo"; | 997 o.selfLink = "foo"; |
| 998 o.sizeGb = "foo"; | 998 o.sizeGb = "foo"; |
| 999 o.sourceImage = "foo"; | 999 o.sourceImage = "foo"; |
| 1000 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); | 1000 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); |
| 1001 o.sourceImageId = "foo"; | 1001 o.sourceImageId = "foo"; |
| 1002 o.sourceSnapshot = "foo"; | 1002 o.sourceSnapshot = "foo"; |
| 1003 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); | 1003 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 1004 o.sourceSnapshotId = "foo"; | 1004 o.sourceSnapshotId = "foo"; |
| 1005 o.status = "foo"; | 1005 o.status = "foo"; |
| 1006 o.type = "foo"; | 1006 o.type = "foo"; |
| 1007 o.users = buildUnnamed703(); | 1007 o.users = buildUnnamed2288(); |
| 1008 o.zone = "foo"; | 1008 o.zone = "foo"; |
| 1009 } | 1009 } |
| 1010 buildCounterDisk--; | 1010 buildCounterDisk--; |
| 1011 return o; | 1011 return o; |
| 1012 } | 1012 } |
| 1013 | 1013 |
| 1014 checkDisk(api.Disk o) { | 1014 checkDisk(api.Disk o) { |
| 1015 buildCounterDisk++; | 1015 buildCounterDisk++; |
| 1016 if (buildCounterDisk < 3) { | 1016 if (buildCounterDisk < 3) { |
| 1017 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1017 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1018 unittest.expect(o.description, unittest.equals('foo')); | 1018 unittest.expect(o.description, unittest.equals('foo')); |
| 1019 checkCustomerEncryptionKey(o.diskEncryptionKey); | 1019 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 1020 unittest.expect(o.id, unittest.equals('foo')); | 1020 unittest.expect(o.id, unittest.equals('foo')); |
| 1021 unittest.expect(o.kind, unittest.equals('foo')); | 1021 unittest.expect(o.kind, unittest.equals('foo')); |
| 1022 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); | 1022 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); |
| 1023 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); | 1023 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); |
| 1024 checkUnnamed702(o.licenses); | 1024 checkUnnamed2287(o.licenses); |
| 1025 unittest.expect(o.name, unittest.equals('foo')); | 1025 unittest.expect(o.name, unittest.equals('foo')); |
| 1026 unittest.expect(o.options, unittest.equals('foo')); | 1026 unittest.expect(o.options, unittest.equals('foo')); |
| 1027 unittest.expect(o.selfLink, unittest.equals('foo')); | 1027 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1028 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1028 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1029 unittest.expect(o.sourceImage, unittest.equals('foo')); | 1029 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 1030 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); | 1030 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); |
| 1031 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 1031 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 1032 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 1032 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 1033 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); | 1033 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); |
| 1034 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 1034 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 1035 unittest.expect(o.status, unittest.equals('foo')); | 1035 unittest.expect(o.status, unittest.equals('foo')); |
| 1036 unittest.expect(o.type, unittest.equals('foo')); | 1036 unittest.expect(o.type, unittest.equals('foo')); |
| 1037 checkUnnamed703(o.users); | 1037 checkUnnamed2288(o.users); |
| 1038 unittest.expect(o.zone, unittest.equals('foo')); | 1038 unittest.expect(o.zone, unittest.equals('foo')); |
| 1039 } | 1039 } |
| 1040 buildCounterDisk--; | 1040 buildCounterDisk--; |
| 1041 } | 1041 } |
| 1042 | 1042 |
| 1043 buildUnnamed704() { | 1043 buildUnnamed2289() { |
| 1044 var o = new core.Map<core.String, api.DisksScopedList>(); | 1044 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 1045 o["x"] = buildDisksScopedList(); | 1045 o["x"] = buildDisksScopedList(); |
| 1046 o["y"] = buildDisksScopedList(); | 1046 o["y"] = buildDisksScopedList(); |
| 1047 return o; | 1047 return o; |
| 1048 } | 1048 } |
| 1049 | 1049 |
| 1050 checkUnnamed704(core.Map<core.String, api.DisksScopedList> o) { | 1050 checkUnnamed2289(core.Map<core.String, api.DisksScopedList> o) { |
| 1051 unittest.expect(o, unittest.hasLength(2)); | 1051 unittest.expect(o, unittest.hasLength(2)); |
| 1052 checkDisksScopedList(o["x"]); | 1052 checkDisksScopedList(o["x"]); |
| 1053 checkDisksScopedList(o["y"]); | 1053 checkDisksScopedList(o["y"]); |
| 1054 } | 1054 } |
| 1055 | 1055 |
| 1056 core.int buildCounterDiskAggregatedList = 0; | 1056 core.int buildCounterDiskAggregatedList = 0; |
| 1057 buildDiskAggregatedList() { | 1057 buildDiskAggregatedList() { |
| 1058 var o = new api.DiskAggregatedList(); | 1058 var o = new api.DiskAggregatedList(); |
| 1059 buildCounterDiskAggregatedList++; | 1059 buildCounterDiskAggregatedList++; |
| 1060 if (buildCounterDiskAggregatedList < 3) { | 1060 if (buildCounterDiskAggregatedList < 3) { |
| 1061 o.id = "foo"; | 1061 o.id = "foo"; |
| 1062 o.items = buildUnnamed704(); | 1062 o.items = buildUnnamed2289(); |
| 1063 o.kind = "foo"; | 1063 o.kind = "foo"; |
| 1064 o.nextPageToken = "foo"; | 1064 o.nextPageToken = "foo"; |
| 1065 o.selfLink = "foo"; | 1065 o.selfLink = "foo"; |
| 1066 } | 1066 } |
| 1067 buildCounterDiskAggregatedList--; | 1067 buildCounterDiskAggregatedList--; |
| 1068 return o; | 1068 return o; |
| 1069 } | 1069 } |
| 1070 | 1070 |
| 1071 checkDiskAggregatedList(api.DiskAggregatedList o) { | 1071 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 1072 buildCounterDiskAggregatedList++; | 1072 buildCounterDiskAggregatedList++; |
| 1073 if (buildCounterDiskAggregatedList < 3) { | 1073 if (buildCounterDiskAggregatedList < 3) { |
| 1074 unittest.expect(o.id, unittest.equals('foo')); | 1074 unittest.expect(o.id, unittest.equals('foo')); |
| 1075 checkUnnamed704(o.items); | 1075 checkUnnamed2289(o.items); |
| 1076 unittest.expect(o.kind, unittest.equals('foo')); | 1076 unittest.expect(o.kind, unittest.equals('foo')); |
| 1077 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1077 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1078 unittest.expect(o.selfLink, unittest.equals('foo')); | 1078 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1079 } | 1079 } |
| 1080 buildCounterDiskAggregatedList--; | 1080 buildCounterDiskAggregatedList--; |
| 1081 } | 1081 } |
| 1082 | 1082 |
| 1083 buildUnnamed705() { | 1083 buildUnnamed2290() { |
| 1084 var o = new core.List<api.Disk>(); | 1084 var o = new core.List<api.Disk>(); |
| 1085 o.add(buildDisk()); | 1085 o.add(buildDisk()); |
| 1086 o.add(buildDisk()); | 1086 o.add(buildDisk()); |
| 1087 return o; | 1087 return o; |
| 1088 } | 1088 } |
| 1089 | 1089 |
| 1090 checkUnnamed705(core.List<api.Disk> o) { | 1090 checkUnnamed2290(core.List<api.Disk> o) { |
| 1091 unittest.expect(o, unittest.hasLength(2)); | 1091 unittest.expect(o, unittest.hasLength(2)); |
| 1092 checkDisk(o[0]); | 1092 checkDisk(o[0]); |
| 1093 checkDisk(o[1]); | 1093 checkDisk(o[1]); |
| 1094 } | 1094 } |
| 1095 | 1095 |
| 1096 core.int buildCounterDiskList = 0; | 1096 core.int buildCounterDiskList = 0; |
| 1097 buildDiskList() { | 1097 buildDiskList() { |
| 1098 var o = new api.DiskList(); | 1098 var o = new api.DiskList(); |
| 1099 buildCounterDiskList++; | 1099 buildCounterDiskList++; |
| 1100 if (buildCounterDiskList < 3) { | 1100 if (buildCounterDiskList < 3) { |
| 1101 o.id = "foo"; | 1101 o.id = "foo"; |
| 1102 o.items = buildUnnamed705(); | 1102 o.items = buildUnnamed2290(); |
| 1103 o.kind = "foo"; | 1103 o.kind = "foo"; |
| 1104 o.nextPageToken = "foo"; | 1104 o.nextPageToken = "foo"; |
| 1105 o.selfLink = "foo"; | 1105 o.selfLink = "foo"; |
| 1106 } | 1106 } |
| 1107 buildCounterDiskList--; | 1107 buildCounterDiskList--; |
| 1108 return o; | 1108 return o; |
| 1109 } | 1109 } |
| 1110 | 1110 |
| 1111 checkDiskList(api.DiskList o) { | 1111 checkDiskList(api.DiskList o) { |
| 1112 buildCounterDiskList++; | 1112 buildCounterDiskList++; |
| 1113 if (buildCounterDiskList < 3) { | 1113 if (buildCounterDiskList < 3) { |
| 1114 unittest.expect(o.id, unittest.equals('foo')); | 1114 unittest.expect(o.id, unittest.equals('foo')); |
| 1115 checkUnnamed705(o.items); | 1115 checkUnnamed2290(o.items); |
| 1116 unittest.expect(o.kind, unittest.equals('foo')); | 1116 unittest.expect(o.kind, unittest.equals('foo')); |
| 1117 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1117 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1118 unittest.expect(o.selfLink, unittest.equals('foo')); | 1118 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1119 } | 1119 } |
| 1120 buildCounterDiskList--; | 1120 buildCounterDiskList--; |
| 1121 } | 1121 } |
| 1122 | 1122 |
| 1123 core.int buildCounterDiskMoveRequest = 0; | 1123 core.int buildCounterDiskMoveRequest = 0; |
| 1124 buildDiskMoveRequest() { | 1124 buildDiskMoveRequest() { |
| 1125 var o = new api.DiskMoveRequest(); | 1125 var o = new api.DiskMoveRequest(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1171 unittest.expect(o.id, unittest.equals('foo')); | 1171 unittest.expect(o.id, unittest.equals('foo')); |
| 1172 unittest.expect(o.kind, unittest.equals('foo')); | 1172 unittest.expect(o.kind, unittest.equals('foo')); |
| 1173 unittest.expect(o.name, unittest.equals('foo')); | 1173 unittest.expect(o.name, unittest.equals('foo')); |
| 1174 unittest.expect(o.selfLink, unittest.equals('foo')); | 1174 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1175 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 1175 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 1176 unittest.expect(o.zone, unittest.equals('foo')); | 1176 unittest.expect(o.zone, unittest.equals('foo')); |
| 1177 } | 1177 } |
| 1178 buildCounterDiskType--; | 1178 buildCounterDiskType--; |
| 1179 } | 1179 } |
| 1180 | 1180 |
| 1181 buildUnnamed706() { | 1181 buildUnnamed2291() { |
| 1182 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 1182 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 1183 o["x"] = buildDiskTypesScopedList(); | 1183 o["x"] = buildDiskTypesScopedList(); |
| 1184 o["y"] = buildDiskTypesScopedList(); | 1184 o["y"] = buildDiskTypesScopedList(); |
| 1185 return o; | 1185 return o; |
| 1186 } | 1186 } |
| 1187 | 1187 |
| 1188 checkUnnamed706(core.Map<core.String, api.DiskTypesScopedList> o) { | 1188 checkUnnamed2291(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 1189 unittest.expect(o, unittest.hasLength(2)); | 1189 unittest.expect(o, unittest.hasLength(2)); |
| 1190 checkDiskTypesScopedList(o["x"]); | 1190 checkDiskTypesScopedList(o["x"]); |
| 1191 checkDiskTypesScopedList(o["y"]); | 1191 checkDiskTypesScopedList(o["y"]); |
| 1192 } | 1192 } |
| 1193 | 1193 |
| 1194 core.int buildCounterDiskTypeAggregatedList = 0; | 1194 core.int buildCounterDiskTypeAggregatedList = 0; |
| 1195 buildDiskTypeAggregatedList() { | 1195 buildDiskTypeAggregatedList() { |
| 1196 var o = new api.DiskTypeAggregatedList(); | 1196 var o = new api.DiskTypeAggregatedList(); |
| 1197 buildCounterDiskTypeAggregatedList++; | 1197 buildCounterDiskTypeAggregatedList++; |
| 1198 if (buildCounterDiskTypeAggregatedList < 3) { | 1198 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1199 o.id = "foo"; | 1199 o.id = "foo"; |
| 1200 o.items = buildUnnamed706(); | 1200 o.items = buildUnnamed2291(); |
| 1201 o.kind = "foo"; | 1201 o.kind = "foo"; |
| 1202 o.nextPageToken = "foo"; | 1202 o.nextPageToken = "foo"; |
| 1203 o.selfLink = "foo"; | 1203 o.selfLink = "foo"; |
| 1204 } | 1204 } |
| 1205 buildCounterDiskTypeAggregatedList--; | 1205 buildCounterDiskTypeAggregatedList--; |
| 1206 return o; | 1206 return o; |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 1209 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 1210 buildCounterDiskTypeAggregatedList++; | 1210 buildCounterDiskTypeAggregatedList++; |
| 1211 if (buildCounterDiskTypeAggregatedList < 3) { | 1211 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1212 unittest.expect(o.id, unittest.equals('foo')); | 1212 unittest.expect(o.id, unittest.equals('foo')); |
| 1213 checkUnnamed706(o.items); | 1213 checkUnnamed2291(o.items); |
| 1214 unittest.expect(o.kind, unittest.equals('foo')); | 1214 unittest.expect(o.kind, unittest.equals('foo')); |
| 1215 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1215 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1216 unittest.expect(o.selfLink, unittest.equals('foo')); | 1216 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1217 } | 1217 } |
| 1218 buildCounterDiskTypeAggregatedList--; | 1218 buildCounterDiskTypeAggregatedList--; |
| 1219 } | 1219 } |
| 1220 | 1220 |
| 1221 buildUnnamed707() { | 1221 buildUnnamed2292() { |
| 1222 var o = new core.List<api.DiskType>(); | 1222 var o = new core.List<api.DiskType>(); |
| 1223 o.add(buildDiskType()); | 1223 o.add(buildDiskType()); |
| 1224 o.add(buildDiskType()); | 1224 o.add(buildDiskType()); |
| 1225 return o; | 1225 return o; |
| 1226 } | 1226 } |
| 1227 | 1227 |
| 1228 checkUnnamed707(core.List<api.DiskType> o) { | 1228 checkUnnamed2292(core.List<api.DiskType> o) { |
| 1229 unittest.expect(o, unittest.hasLength(2)); | 1229 unittest.expect(o, unittest.hasLength(2)); |
| 1230 checkDiskType(o[0]); | 1230 checkDiskType(o[0]); |
| 1231 checkDiskType(o[1]); | 1231 checkDiskType(o[1]); |
| 1232 } | 1232 } |
| 1233 | 1233 |
| 1234 core.int buildCounterDiskTypeList = 0; | 1234 core.int buildCounterDiskTypeList = 0; |
| 1235 buildDiskTypeList() { | 1235 buildDiskTypeList() { |
| 1236 var o = new api.DiskTypeList(); | 1236 var o = new api.DiskTypeList(); |
| 1237 buildCounterDiskTypeList++; | 1237 buildCounterDiskTypeList++; |
| 1238 if (buildCounterDiskTypeList < 3) { | 1238 if (buildCounterDiskTypeList < 3) { |
| 1239 o.id = "foo"; | 1239 o.id = "foo"; |
| 1240 o.items = buildUnnamed707(); | 1240 o.items = buildUnnamed2292(); |
| 1241 o.kind = "foo"; | 1241 o.kind = "foo"; |
| 1242 o.nextPageToken = "foo"; | 1242 o.nextPageToken = "foo"; |
| 1243 o.selfLink = "foo"; | 1243 o.selfLink = "foo"; |
| 1244 } | 1244 } |
| 1245 buildCounterDiskTypeList--; | 1245 buildCounterDiskTypeList--; |
| 1246 return o; | 1246 return o; |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 checkDiskTypeList(api.DiskTypeList o) { | 1249 checkDiskTypeList(api.DiskTypeList o) { |
| 1250 buildCounterDiskTypeList++; | 1250 buildCounterDiskTypeList++; |
| 1251 if (buildCounterDiskTypeList < 3) { | 1251 if (buildCounterDiskTypeList < 3) { |
| 1252 unittest.expect(o.id, unittest.equals('foo')); | 1252 unittest.expect(o.id, unittest.equals('foo')); |
| 1253 checkUnnamed707(o.items); | 1253 checkUnnamed2292(o.items); |
| 1254 unittest.expect(o.kind, unittest.equals('foo')); | 1254 unittest.expect(o.kind, unittest.equals('foo')); |
| 1255 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1255 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1256 unittest.expect(o.selfLink, unittest.equals('foo')); | 1256 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1257 } | 1257 } |
| 1258 buildCounterDiskTypeList--; | 1258 buildCounterDiskTypeList--; |
| 1259 } | 1259 } |
| 1260 | 1260 |
| 1261 buildUnnamed708() { | 1261 buildUnnamed2293() { |
| 1262 var o = new core.List<api.DiskType>(); | 1262 var o = new core.List<api.DiskType>(); |
| 1263 o.add(buildDiskType()); | 1263 o.add(buildDiskType()); |
| 1264 o.add(buildDiskType()); | 1264 o.add(buildDiskType()); |
| 1265 return o; | 1265 return o; |
| 1266 } | 1266 } |
| 1267 | 1267 |
| 1268 checkUnnamed708(core.List<api.DiskType> o) { | 1268 checkUnnamed2293(core.List<api.DiskType> o) { |
| 1269 unittest.expect(o, unittest.hasLength(2)); | 1269 unittest.expect(o, unittest.hasLength(2)); |
| 1270 checkDiskType(o[0]); | 1270 checkDiskType(o[0]); |
| 1271 checkDiskType(o[1]); | 1271 checkDiskType(o[1]); |
| 1272 } | 1272 } |
| 1273 | 1273 |
| 1274 core.int buildCounterDiskTypesScopedListWarningData = 0; | 1274 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 1275 buildDiskTypesScopedListWarningData() { | 1275 buildDiskTypesScopedListWarningData() { |
| 1276 var o = new api.DiskTypesScopedListWarningData(); | 1276 var o = new api.DiskTypesScopedListWarningData(); |
| 1277 buildCounterDiskTypesScopedListWarningData++; | 1277 buildCounterDiskTypesScopedListWarningData++; |
| 1278 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1278 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1279 o.key = "foo"; | 1279 o.key = "foo"; |
| 1280 o.value = "foo"; | 1280 o.value = "foo"; |
| 1281 } | 1281 } |
| 1282 buildCounterDiskTypesScopedListWarningData--; | 1282 buildCounterDiskTypesScopedListWarningData--; |
| 1283 return o; | 1283 return o; |
| 1284 } | 1284 } |
| 1285 | 1285 |
| 1286 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 1286 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 1287 buildCounterDiskTypesScopedListWarningData++; | 1287 buildCounterDiskTypesScopedListWarningData++; |
| 1288 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1288 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1289 unittest.expect(o.key, unittest.equals('foo')); | 1289 unittest.expect(o.key, unittest.equals('foo')); |
| 1290 unittest.expect(o.value, unittest.equals('foo')); | 1290 unittest.expect(o.value, unittest.equals('foo')); |
| 1291 } | 1291 } |
| 1292 buildCounterDiskTypesScopedListWarningData--; | 1292 buildCounterDiskTypesScopedListWarningData--; |
| 1293 } | 1293 } |
| 1294 | 1294 |
| 1295 buildUnnamed709() { | 1295 buildUnnamed2294() { |
| 1296 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 1296 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 1297 o.add(buildDiskTypesScopedListWarningData()); | 1297 o.add(buildDiskTypesScopedListWarningData()); |
| 1298 o.add(buildDiskTypesScopedListWarningData()); | 1298 o.add(buildDiskTypesScopedListWarningData()); |
| 1299 return o; | 1299 return o; |
| 1300 } | 1300 } |
| 1301 | 1301 |
| 1302 checkUnnamed709(core.List<api.DiskTypesScopedListWarningData> o) { | 1302 checkUnnamed2294(core.List<api.DiskTypesScopedListWarningData> o) { |
| 1303 unittest.expect(o, unittest.hasLength(2)); | 1303 unittest.expect(o, unittest.hasLength(2)); |
| 1304 checkDiskTypesScopedListWarningData(o[0]); | 1304 checkDiskTypesScopedListWarningData(o[0]); |
| 1305 checkDiskTypesScopedListWarningData(o[1]); | 1305 checkDiskTypesScopedListWarningData(o[1]); |
| 1306 } | 1306 } |
| 1307 | 1307 |
| 1308 core.int buildCounterDiskTypesScopedListWarning = 0; | 1308 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 1309 buildDiskTypesScopedListWarning() { | 1309 buildDiskTypesScopedListWarning() { |
| 1310 var o = new api.DiskTypesScopedListWarning(); | 1310 var o = new api.DiskTypesScopedListWarning(); |
| 1311 buildCounterDiskTypesScopedListWarning++; | 1311 buildCounterDiskTypesScopedListWarning++; |
| 1312 if (buildCounterDiskTypesScopedListWarning < 3) { | 1312 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1313 o.code = "foo"; | 1313 o.code = "foo"; |
| 1314 o.data = buildUnnamed709(); | 1314 o.data = buildUnnamed2294(); |
| 1315 o.message = "foo"; | 1315 o.message = "foo"; |
| 1316 } | 1316 } |
| 1317 buildCounterDiskTypesScopedListWarning--; | 1317 buildCounterDiskTypesScopedListWarning--; |
| 1318 return o; | 1318 return o; |
| 1319 } | 1319 } |
| 1320 | 1320 |
| 1321 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 1321 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 1322 buildCounterDiskTypesScopedListWarning++; | 1322 buildCounterDiskTypesScopedListWarning++; |
| 1323 if (buildCounterDiskTypesScopedListWarning < 3) { | 1323 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1324 unittest.expect(o.code, unittest.equals('foo')); | 1324 unittest.expect(o.code, unittest.equals('foo')); |
| 1325 checkUnnamed709(o.data); | 1325 checkUnnamed2294(o.data); |
| 1326 unittest.expect(o.message, unittest.equals('foo')); | 1326 unittest.expect(o.message, unittest.equals('foo')); |
| 1327 } | 1327 } |
| 1328 buildCounterDiskTypesScopedListWarning--; | 1328 buildCounterDiskTypesScopedListWarning--; |
| 1329 } | 1329 } |
| 1330 | 1330 |
| 1331 core.int buildCounterDiskTypesScopedList = 0; | 1331 core.int buildCounterDiskTypesScopedList = 0; |
| 1332 buildDiskTypesScopedList() { | 1332 buildDiskTypesScopedList() { |
| 1333 var o = new api.DiskTypesScopedList(); | 1333 var o = new api.DiskTypesScopedList(); |
| 1334 buildCounterDiskTypesScopedList++; | 1334 buildCounterDiskTypesScopedList++; |
| 1335 if (buildCounterDiskTypesScopedList < 3) { | 1335 if (buildCounterDiskTypesScopedList < 3) { |
| 1336 o.diskTypes = buildUnnamed708(); | 1336 o.diskTypes = buildUnnamed2293(); |
| 1337 o.warning = buildDiskTypesScopedListWarning(); | 1337 o.warning = buildDiskTypesScopedListWarning(); |
| 1338 } | 1338 } |
| 1339 buildCounterDiskTypesScopedList--; | 1339 buildCounterDiskTypesScopedList--; |
| 1340 return o; | 1340 return o; |
| 1341 } | 1341 } |
| 1342 | 1342 |
| 1343 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 1343 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 1344 buildCounterDiskTypesScopedList++; | 1344 buildCounterDiskTypesScopedList++; |
| 1345 if (buildCounterDiskTypesScopedList < 3) { | 1345 if (buildCounterDiskTypesScopedList < 3) { |
| 1346 checkUnnamed708(o.diskTypes); | 1346 checkUnnamed2293(o.diskTypes); |
| 1347 checkDiskTypesScopedListWarning(o.warning); | 1347 checkDiskTypesScopedListWarning(o.warning); |
| 1348 } | 1348 } |
| 1349 buildCounterDiskTypesScopedList--; | 1349 buildCounterDiskTypesScopedList--; |
| 1350 } | 1350 } |
| 1351 | 1351 |
| 1352 core.int buildCounterDisksResizeRequest = 0; | 1352 core.int buildCounterDisksResizeRequest = 0; |
| 1353 buildDisksResizeRequest() { | 1353 buildDisksResizeRequest() { |
| 1354 var o = new api.DisksResizeRequest(); | 1354 var o = new api.DisksResizeRequest(); |
| 1355 buildCounterDisksResizeRequest++; | 1355 buildCounterDisksResizeRequest++; |
| 1356 if (buildCounterDisksResizeRequest < 3) { | 1356 if (buildCounterDisksResizeRequest < 3) { |
| 1357 o.sizeGb = "foo"; | 1357 o.sizeGb = "foo"; |
| 1358 } | 1358 } |
| 1359 buildCounterDisksResizeRequest--; | 1359 buildCounterDisksResizeRequest--; |
| 1360 return o; | 1360 return o; |
| 1361 } | 1361 } |
| 1362 | 1362 |
| 1363 checkDisksResizeRequest(api.DisksResizeRequest o) { | 1363 checkDisksResizeRequest(api.DisksResizeRequest o) { |
| 1364 buildCounterDisksResizeRequest++; | 1364 buildCounterDisksResizeRequest++; |
| 1365 if (buildCounterDisksResizeRequest < 3) { | 1365 if (buildCounterDisksResizeRequest < 3) { |
| 1366 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1366 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1367 } | 1367 } |
| 1368 buildCounterDisksResizeRequest--; | 1368 buildCounterDisksResizeRequest--; |
| 1369 } | 1369 } |
| 1370 | 1370 |
| 1371 buildUnnamed710() { | 1371 buildUnnamed2295() { |
| 1372 var o = new core.List<api.Disk>(); | 1372 var o = new core.List<api.Disk>(); |
| 1373 o.add(buildDisk()); | 1373 o.add(buildDisk()); |
| 1374 o.add(buildDisk()); | 1374 o.add(buildDisk()); |
| 1375 return o; | 1375 return o; |
| 1376 } | 1376 } |
| 1377 | 1377 |
| 1378 checkUnnamed710(core.List<api.Disk> o) { | 1378 checkUnnamed2295(core.List<api.Disk> o) { |
| 1379 unittest.expect(o, unittest.hasLength(2)); | 1379 unittest.expect(o, unittest.hasLength(2)); |
| 1380 checkDisk(o[0]); | 1380 checkDisk(o[0]); |
| 1381 checkDisk(o[1]); | 1381 checkDisk(o[1]); |
| 1382 } | 1382 } |
| 1383 | 1383 |
| 1384 core.int buildCounterDisksScopedListWarningData = 0; | 1384 core.int buildCounterDisksScopedListWarningData = 0; |
| 1385 buildDisksScopedListWarningData() { | 1385 buildDisksScopedListWarningData() { |
| 1386 var o = new api.DisksScopedListWarningData(); | 1386 var o = new api.DisksScopedListWarningData(); |
| 1387 buildCounterDisksScopedListWarningData++; | 1387 buildCounterDisksScopedListWarningData++; |
| 1388 if (buildCounterDisksScopedListWarningData < 3) { | 1388 if (buildCounterDisksScopedListWarningData < 3) { |
| 1389 o.key = "foo"; | 1389 o.key = "foo"; |
| 1390 o.value = "foo"; | 1390 o.value = "foo"; |
| 1391 } | 1391 } |
| 1392 buildCounterDisksScopedListWarningData--; | 1392 buildCounterDisksScopedListWarningData--; |
| 1393 return o; | 1393 return o; |
| 1394 } | 1394 } |
| 1395 | 1395 |
| 1396 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 1396 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 1397 buildCounterDisksScopedListWarningData++; | 1397 buildCounterDisksScopedListWarningData++; |
| 1398 if (buildCounterDisksScopedListWarningData < 3) { | 1398 if (buildCounterDisksScopedListWarningData < 3) { |
| 1399 unittest.expect(o.key, unittest.equals('foo')); | 1399 unittest.expect(o.key, unittest.equals('foo')); |
| 1400 unittest.expect(o.value, unittest.equals('foo')); | 1400 unittest.expect(o.value, unittest.equals('foo')); |
| 1401 } | 1401 } |
| 1402 buildCounterDisksScopedListWarningData--; | 1402 buildCounterDisksScopedListWarningData--; |
| 1403 } | 1403 } |
| 1404 | 1404 |
| 1405 buildUnnamed711() { | 1405 buildUnnamed2296() { |
| 1406 var o = new core.List<api.DisksScopedListWarningData>(); | 1406 var o = new core.List<api.DisksScopedListWarningData>(); |
| 1407 o.add(buildDisksScopedListWarningData()); | 1407 o.add(buildDisksScopedListWarningData()); |
| 1408 o.add(buildDisksScopedListWarningData()); | 1408 o.add(buildDisksScopedListWarningData()); |
| 1409 return o; | 1409 return o; |
| 1410 } | 1410 } |
| 1411 | 1411 |
| 1412 checkUnnamed711(core.List<api.DisksScopedListWarningData> o) { | 1412 checkUnnamed2296(core.List<api.DisksScopedListWarningData> o) { |
| 1413 unittest.expect(o, unittest.hasLength(2)); | 1413 unittest.expect(o, unittest.hasLength(2)); |
| 1414 checkDisksScopedListWarningData(o[0]); | 1414 checkDisksScopedListWarningData(o[0]); |
| 1415 checkDisksScopedListWarningData(o[1]); | 1415 checkDisksScopedListWarningData(o[1]); |
| 1416 } | 1416 } |
| 1417 | 1417 |
| 1418 core.int buildCounterDisksScopedListWarning = 0; | 1418 core.int buildCounterDisksScopedListWarning = 0; |
| 1419 buildDisksScopedListWarning() { | 1419 buildDisksScopedListWarning() { |
| 1420 var o = new api.DisksScopedListWarning(); | 1420 var o = new api.DisksScopedListWarning(); |
| 1421 buildCounterDisksScopedListWarning++; | 1421 buildCounterDisksScopedListWarning++; |
| 1422 if (buildCounterDisksScopedListWarning < 3) { | 1422 if (buildCounterDisksScopedListWarning < 3) { |
| 1423 o.code = "foo"; | 1423 o.code = "foo"; |
| 1424 o.data = buildUnnamed711(); | 1424 o.data = buildUnnamed2296(); |
| 1425 o.message = "foo"; | 1425 o.message = "foo"; |
| 1426 } | 1426 } |
| 1427 buildCounterDisksScopedListWarning--; | 1427 buildCounterDisksScopedListWarning--; |
| 1428 return o; | 1428 return o; |
| 1429 } | 1429 } |
| 1430 | 1430 |
| 1431 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 1431 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 1432 buildCounterDisksScopedListWarning++; | 1432 buildCounterDisksScopedListWarning++; |
| 1433 if (buildCounterDisksScopedListWarning < 3) { | 1433 if (buildCounterDisksScopedListWarning < 3) { |
| 1434 unittest.expect(o.code, unittest.equals('foo')); | 1434 unittest.expect(o.code, unittest.equals('foo')); |
| 1435 checkUnnamed711(o.data); | 1435 checkUnnamed2296(o.data); |
| 1436 unittest.expect(o.message, unittest.equals('foo')); | 1436 unittest.expect(o.message, unittest.equals('foo')); |
| 1437 } | 1437 } |
| 1438 buildCounterDisksScopedListWarning--; | 1438 buildCounterDisksScopedListWarning--; |
| 1439 } | 1439 } |
| 1440 | 1440 |
| 1441 core.int buildCounterDisksScopedList = 0; | 1441 core.int buildCounterDisksScopedList = 0; |
| 1442 buildDisksScopedList() { | 1442 buildDisksScopedList() { |
| 1443 var o = new api.DisksScopedList(); | 1443 var o = new api.DisksScopedList(); |
| 1444 buildCounterDisksScopedList++; | 1444 buildCounterDisksScopedList++; |
| 1445 if (buildCounterDisksScopedList < 3) { | 1445 if (buildCounterDisksScopedList < 3) { |
| 1446 o.disks = buildUnnamed710(); | 1446 o.disks = buildUnnamed2295(); |
| 1447 o.warning = buildDisksScopedListWarning(); | 1447 o.warning = buildDisksScopedListWarning(); |
| 1448 } | 1448 } |
| 1449 buildCounterDisksScopedList--; | 1449 buildCounterDisksScopedList--; |
| 1450 return o; | 1450 return o; |
| 1451 } | 1451 } |
| 1452 | 1452 |
| 1453 checkDisksScopedList(api.DisksScopedList o) { | 1453 checkDisksScopedList(api.DisksScopedList o) { |
| 1454 buildCounterDisksScopedList++; | 1454 buildCounterDisksScopedList++; |
| 1455 if (buildCounterDisksScopedList < 3) { | 1455 if (buildCounterDisksScopedList < 3) { |
| 1456 checkUnnamed710(o.disks); | 1456 checkUnnamed2295(o.disks); |
| 1457 checkDisksScopedListWarning(o.warning); | 1457 checkDisksScopedListWarning(o.warning); |
| 1458 } | 1458 } |
| 1459 buildCounterDisksScopedList--; | 1459 buildCounterDisksScopedList--; |
| 1460 } | 1460 } |
| 1461 | 1461 |
| 1462 buildUnnamed712() { | 1462 buildUnnamed2297() { |
| 1463 var o = new core.List<core.String>(); | 1463 var o = new core.List<core.String>(); |
| 1464 o.add("foo"); | 1464 o.add("foo"); |
| 1465 o.add("foo"); | 1465 o.add("foo"); |
| 1466 return o; | 1466 return o; |
| 1467 } | 1467 } |
| 1468 | 1468 |
| 1469 checkUnnamed712(core.List<core.String> o) { | 1469 checkUnnamed2297(core.List<core.String> o) { |
| 1470 unittest.expect(o, unittest.hasLength(2)); | 1470 unittest.expect(o, unittest.hasLength(2)); |
| 1471 unittest.expect(o[0], unittest.equals('foo')); | 1471 unittest.expect(o[0], unittest.equals('foo')); |
| 1472 unittest.expect(o[1], unittest.equals('foo')); | 1472 unittest.expect(o[1], unittest.equals('foo')); |
| 1473 } | 1473 } |
| 1474 | 1474 |
| 1475 core.int buildCounterFirewallAllowed = 0; | 1475 core.int buildCounterFirewallAllowed = 0; |
| 1476 buildFirewallAllowed() { | 1476 buildFirewallAllowed() { |
| 1477 var o = new api.FirewallAllowed(); | 1477 var o = new api.FirewallAllowed(); |
| 1478 buildCounterFirewallAllowed++; | 1478 buildCounterFirewallAllowed++; |
| 1479 if (buildCounterFirewallAllowed < 3) { | 1479 if (buildCounterFirewallAllowed < 3) { |
| 1480 o.IPProtocol = "foo"; | 1480 o.IPProtocol = "foo"; |
| 1481 o.ports = buildUnnamed712(); | 1481 o.ports = buildUnnamed2297(); |
| 1482 } | 1482 } |
| 1483 buildCounterFirewallAllowed--; | 1483 buildCounterFirewallAllowed--; |
| 1484 return o; | 1484 return o; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 checkFirewallAllowed(api.FirewallAllowed o) { | 1487 checkFirewallAllowed(api.FirewallAllowed o) { |
| 1488 buildCounterFirewallAllowed++; | 1488 buildCounterFirewallAllowed++; |
| 1489 if (buildCounterFirewallAllowed < 3) { | 1489 if (buildCounterFirewallAllowed < 3) { |
| 1490 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1490 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1491 checkUnnamed712(o.ports); | 1491 checkUnnamed2297(o.ports); |
| 1492 } | 1492 } |
| 1493 buildCounterFirewallAllowed--; | 1493 buildCounterFirewallAllowed--; |
| 1494 } | 1494 } |
| 1495 | 1495 |
| 1496 buildUnnamed713() { | 1496 buildUnnamed2298() { |
| 1497 var o = new core.List<api.FirewallAllowed>(); | 1497 var o = new core.List<api.FirewallAllowed>(); |
| 1498 o.add(buildFirewallAllowed()); | 1498 o.add(buildFirewallAllowed()); |
| 1499 o.add(buildFirewallAllowed()); | 1499 o.add(buildFirewallAllowed()); |
| 1500 return o; | 1500 return o; |
| 1501 } | 1501 } |
| 1502 | 1502 |
| 1503 checkUnnamed713(core.List<api.FirewallAllowed> o) { | 1503 checkUnnamed2298(core.List<api.FirewallAllowed> o) { |
| 1504 unittest.expect(o, unittest.hasLength(2)); | 1504 unittest.expect(o, unittest.hasLength(2)); |
| 1505 checkFirewallAllowed(o[0]); | 1505 checkFirewallAllowed(o[0]); |
| 1506 checkFirewallAllowed(o[1]); | 1506 checkFirewallAllowed(o[1]); |
| 1507 } | 1507 } |
| 1508 | 1508 |
| 1509 buildUnnamed714() { | 1509 buildUnnamed2299() { |
| 1510 var o = new core.List<core.String>(); | 1510 var o = new core.List<core.String>(); |
| 1511 o.add("foo"); | 1511 o.add("foo"); |
| 1512 o.add("foo"); | 1512 o.add("foo"); |
| 1513 return o; | 1513 return o; |
| 1514 } | 1514 } |
| 1515 | 1515 |
| 1516 checkUnnamed714(core.List<core.String> o) { | 1516 checkUnnamed2299(core.List<core.String> o) { |
| 1517 unittest.expect(o, unittest.hasLength(2)); | 1517 unittest.expect(o, unittest.hasLength(2)); |
| 1518 unittest.expect(o[0], unittest.equals('foo')); | 1518 unittest.expect(o[0], unittest.equals('foo')); |
| 1519 unittest.expect(o[1], unittest.equals('foo')); | 1519 unittest.expect(o[1], unittest.equals('foo')); |
| 1520 } | 1520 } |
| 1521 | 1521 |
| 1522 buildUnnamed715() { | 1522 buildUnnamed2300() { |
| 1523 var o = new core.List<core.String>(); | 1523 var o = new core.List<core.String>(); |
| 1524 o.add("foo"); | 1524 o.add("foo"); |
| 1525 o.add("foo"); | 1525 o.add("foo"); |
| 1526 return o; | 1526 return o; |
| 1527 } | 1527 } |
| 1528 | 1528 |
| 1529 checkUnnamed715(core.List<core.String> o) { | 1529 checkUnnamed2300(core.List<core.String> o) { |
| 1530 unittest.expect(o, unittest.hasLength(2)); | 1530 unittest.expect(o, unittest.hasLength(2)); |
| 1531 unittest.expect(o[0], unittest.equals('foo')); | 1531 unittest.expect(o[0], unittest.equals('foo')); |
| 1532 unittest.expect(o[1], unittest.equals('foo')); | 1532 unittest.expect(o[1], unittest.equals('foo')); |
| 1533 } | 1533 } |
| 1534 | 1534 |
| 1535 buildUnnamed716() { | 1535 buildUnnamed2301() { |
| 1536 var o = new core.List<core.String>(); | 1536 var o = new core.List<core.String>(); |
| 1537 o.add("foo"); | 1537 o.add("foo"); |
| 1538 o.add("foo"); | 1538 o.add("foo"); |
| 1539 return o; | 1539 return o; |
| 1540 } | 1540 } |
| 1541 | 1541 |
| 1542 checkUnnamed716(core.List<core.String> o) { | 1542 checkUnnamed2301(core.List<core.String> o) { |
| 1543 unittest.expect(o, unittest.hasLength(2)); | 1543 unittest.expect(o, unittest.hasLength(2)); |
| 1544 unittest.expect(o[0], unittest.equals('foo')); | 1544 unittest.expect(o[0], unittest.equals('foo')); |
| 1545 unittest.expect(o[1], unittest.equals('foo')); | 1545 unittest.expect(o[1], unittest.equals('foo')); |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 core.int buildCounterFirewall = 0; | 1548 core.int buildCounterFirewall = 0; |
| 1549 buildFirewall() { | 1549 buildFirewall() { |
| 1550 var o = new api.Firewall(); | 1550 var o = new api.Firewall(); |
| 1551 buildCounterFirewall++; | 1551 buildCounterFirewall++; |
| 1552 if (buildCounterFirewall < 3) { | 1552 if (buildCounterFirewall < 3) { |
| 1553 o.allowed = buildUnnamed713(); | 1553 o.allowed = buildUnnamed2298(); |
| 1554 o.creationTimestamp = "foo"; | 1554 o.creationTimestamp = "foo"; |
| 1555 o.description = "foo"; | 1555 o.description = "foo"; |
| 1556 o.id = "foo"; | 1556 o.id = "foo"; |
| 1557 o.kind = "foo"; | 1557 o.kind = "foo"; |
| 1558 o.name = "foo"; | 1558 o.name = "foo"; |
| 1559 o.network = "foo"; | 1559 o.network = "foo"; |
| 1560 o.selfLink = "foo"; | 1560 o.selfLink = "foo"; |
| 1561 o.sourceRanges = buildUnnamed714(); | 1561 o.sourceRanges = buildUnnamed2299(); |
| 1562 o.sourceTags = buildUnnamed715(); | 1562 o.sourceTags = buildUnnamed2300(); |
| 1563 o.targetTags = buildUnnamed716(); | 1563 o.targetTags = buildUnnamed2301(); |
| 1564 } | 1564 } |
| 1565 buildCounterFirewall--; | 1565 buildCounterFirewall--; |
| 1566 return o; | 1566 return o; |
| 1567 } | 1567 } |
| 1568 | 1568 |
| 1569 checkFirewall(api.Firewall o) { | 1569 checkFirewall(api.Firewall o) { |
| 1570 buildCounterFirewall++; | 1570 buildCounterFirewall++; |
| 1571 if (buildCounterFirewall < 3) { | 1571 if (buildCounterFirewall < 3) { |
| 1572 checkUnnamed713(o.allowed); | 1572 checkUnnamed2298(o.allowed); |
| 1573 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1573 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1574 unittest.expect(o.description, unittest.equals('foo')); | 1574 unittest.expect(o.description, unittest.equals('foo')); |
| 1575 unittest.expect(o.id, unittest.equals('foo')); | 1575 unittest.expect(o.id, unittest.equals('foo')); |
| 1576 unittest.expect(o.kind, unittest.equals('foo')); | 1576 unittest.expect(o.kind, unittest.equals('foo')); |
| 1577 unittest.expect(o.name, unittest.equals('foo')); | 1577 unittest.expect(o.name, unittest.equals('foo')); |
| 1578 unittest.expect(o.network, unittest.equals('foo')); | 1578 unittest.expect(o.network, unittest.equals('foo')); |
| 1579 unittest.expect(o.selfLink, unittest.equals('foo')); | 1579 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1580 checkUnnamed714(o.sourceRanges); | 1580 checkUnnamed2299(o.sourceRanges); |
| 1581 checkUnnamed715(o.sourceTags); | 1581 checkUnnamed2300(o.sourceTags); |
| 1582 checkUnnamed716(o.targetTags); | 1582 checkUnnamed2301(o.targetTags); |
| 1583 } | 1583 } |
| 1584 buildCounterFirewall--; | 1584 buildCounterFirewall--; |
| 1585 } | 1585 } |
| 1586 | 1586 |
| 1587 buildUnnamed717() { | 1587 buildUnnamed2302() { |
| 1588 var o = new core.List<api.Firewall>(); | 1588 var o = new core.List<api.Firewall>(); |
| 1589 o.add(buildFirewall()); | 1589 o.add(buildFirewall()); |
| 1590 o.add(buildFirewall()); | 1590 o.add(buildFirewall()); |
| 1591 return o; | 1591 return o; |
| 1592 } | 1592 } |
| 1593 | 1593 |
| 1594 checkUnnamed717(core.List<api.Firewall> o) { | 1594 checkUnnamed2302(core.List<api.Firewall> o) { |
| 1595 unittest.expect(o, unittest.hasLength(2)); | 1595 unittest.expect(o, unittest.hasLength(2)); |
| 1596 checkFirewall(o[0]); | 1596 checkFirewall(o[0]); |
| 1597 checkFirewall(o[1]); | 1597 checkFirewall(o[1]); |
| 1598 } | 1598 } |
| 1599 | 1599 |
| 1600 core.int buildCounterFirewallList = 0; | 1600 core.int buildCounterFirewallList = 0; |
| 1601 buildFirewallList() { | 1601 buildFirewallList() { |
| 1602 var o = new api.FirewallList(); | 1602 var o = new api.FirewallList(); |
| 1603 buildCounterFirewallList++; | 1603 buildCounterFirewallList++; |
| 1604 if (buildCounterFirewallList < 3) { | 1604 if (buildCounterFirewallList < 3) { |
| 1605 o.id = "foo"; | 1605 o.id = "foo"; |
| 1606 o.items = buildUnnamed717(); | 1606 o.items = buildUnnamed2302(); |
| 1607 o.kind = "foo"; | 1607 o.kind = "foo"; |
| 1608 o.nextPageToken = "foo"; | 1608 o.nextPageToken = "foo"; |
| 1609 o.selfLink = "foo"; | 1609 o.selfLink = "foo"; |
| 1610 } | 1610 } |
| 1611 buildCounterFirewallList--; | 1611 buildCounterFirewallList--; |
| 1612 return o; | 1612 return o; |
| 1613 } | 1613 } |
| 1614 | 1614 |
| 1615 checkFirewallList(api.FirewallList o) { | 1615 checkFirewallList(api.FirewallList o) { |
| 1616 buildCounterFirewallList++; | 1616 buildCounterFirewallList++; |
| 1617 if (buildCounterFirewallList < 3) { | 1617 if (buildCounterFirewallList < 3) { |
| 1618 unittest.expect(o.id, unittest.equals('foo')); | 1618 unittest.expect(o.id, unittest.equals('foo')); |
| 1619 checkUnnamed717(o.items); | 1619 checkUnnamed2302(o.items); |
| 1620 unittest.expect(o.kind, unittest.equals('foo')); | 1620 unittest.expect(o.kind, unittest.equals('foo')); |
| 1621 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1621 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1622 unittest.expect(o.selfLink, unittest.equals('foo')); | 1622 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1623 } | 1623 } |
| 1624 buildCounterFirewallList--; | 1624 buildCounterFirewallList--; |
| 1625 } | 1625 } |
| 1626 | 1626 |
| 1627 core.int buildCounterForwardingRule = 0; | 1627 core.int buildCounterForwardingRule = 0; |
| 1628 buildForwardingRule() { | 1628 buildForwardingRule() { |
| 1629 var o = new api.ForwardingRule(); | 1629 var o = new api.ForwardingRule(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1656 unittest.expect(o.kind, unittest.equals('foo')); | 1656 unittest.expect(o.kind, unittest.equals('foo')); |
| 1657 unittest.expect(o.name, unittest.equals('foo')); | 1657 unittest.expect(o.name, unittest.equals('foo')); |
| 1658 unittest.expect(o.portRange, unittest.equals('foo')); | 1658 unittest.expect(o.portRange, unittest.equals('foo')); |
| 1659 unittest.expect(o.region, unittest.equals('foo')); | 1659 unittest.expect(o.region, unittest.equals('foo')); |
| 1660 unittest.expect(o.selfLink, unittest.equals('foo')); | 1660 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1661 unittest.expect(o.target, unittest.equals('foo')); | 1661 unittest.expect(o.target, unittest.equals('foo')); |
| 1662 } | 1662 } |
| 1663 buildCounterForwardingRule--; | 1663 buildCounterForwardingRule--; |
| 1664 } | 1664 } |
| 1665 | 1665 |
| 1666 buildUnnamed718() { | 1666 buildUnnamed2303() { |
| 1667 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 1667 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 1668 o["x"] = buildForwardingRulesScopedList(); | 1668 o["x"] = buildForwardingRulesScopedList(); |
| 1669 o["y"] = buildForwardingRulesScopedList(); | 1669 o["y"] = buildForwardingRulesScopedList(); |
| 1670 return o; | 1670 return o; |
| 1671 } | 1671 } |
| 1672 | 1672 |
| 1673 checkUnnamed718(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1673 checkUnnamed2303(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 1674 unittest.expect(o, unittest.hasLength(2)); | 1674 unittest.expect(o, unittest.hasLength(2)); |
| 1675 checkForwardingRulesScopedList(o["x"]); | 1675 checkForwardingRulesScopedList(o["x"]); |
| 1676 checkForwardingRulesScopedList(o["y"]); | 1676 checkForwardingRulesScopedList(o["y"]); |
| 1677 } | 1677 } |
| 1678 | 1678 |
| 1679 core.int buildCounterForwardingRuleAggregatedList = 0; | 1679 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 1680 buildForwardingRuleAggregatedList() { | 1680 buildForwardingRuleAggregatedList() { |
| 1681 var o = new api.ForwardingRuleAggregatedList(); | 1681 var o = new api.ForwardingRuleAggregatedList(); |
| 1682 buildCounterForwardingRuleAggregatedList++; | 1682 buildCounterForwardingRuleAggregatedList++; |
| 1683 if (buildCounterForwardingRuleAggregatedList < 3) { | 1683 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1684 o.id = "foo"; | 1684 o.id = "foo"; |
| 1685 o.items = buildUnnamed718(); | 1685 o.items = buildUnnamed2303(); |
| 1686 o.kind = "foo"; | 1686 o.kind = "foo"; |
| 1687 o.nextPageToken = "foo"; | 1687 o.nextPageToken = "foo"; |
| 1688 o.selfLink = "foo"; | 1688 o.selfLink = "foo"; |
| 1689 } | 1689 } |
| 1690 buildCounterForwardingRuleAggregatedList--; | 1690 buildCounterForwardingRuleAggregatedList--; |
| 1691 return o; | 1691 return o; |
| 1692 } | 1692 } |
| 1693 | 1693 |
| 1694 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 1694 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 1695 buildCounterForwardingRuleAggregatedList++; | 1695 buildCounterForwardingRuleAggregatedList++; |
| 1696 if (buildCounterForwardingRuleAggregatedList < 3) { | 1696 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1697 unittest.expect(o.id, unittest.equals('foo')); | 1697 unittest.expect(o.id, unittest.equals('foo')); |
| 1698 checkUnnamed718(o.items); | 1698 checkUnnamed2303(o.items); |
| 1699 unittest.expect(o.kind, unittest.equals('foo')); | 1699 unittest.expect(o.kind, unittest.equals('foo')); |
| 1700 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1700 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1701 unittest.expect(o.selfLink, unittest.equals('foo')); | 1701 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1702 } | 1702 } |
| 1703 buildCounterForwardingRuleAggregatedList--; | 1703 buildCounterForwardingRuleAggregatedList--; |
| 1704 } | 1704 } |
| 1705 | 1705 |
| 1706 buildUnnamed719() { | 1706 buildUnnamed2304() { |
| 1707 var o = new core.List<api.ForwardingRule>(); | 1707 var o = new core.List<api.ForwardingRule>(); |
| 1708 o.add(buildForwardingRule()); | 1708 o.add(buildForwardingRule()); |
| 1709 o.add(buildForwardingRule()); | 1709 o.add(buildForwardingRule()); |
| 1710 return o; | 1710 return o; |
| 1711 } | 1711 } |
| 1712 | 1712 |
| 1713 checkUnnamed719(core.List<api.ForwardingRule> o) { | 1713 checkUnnamed2304(core.List<api.ForwardingRule> o) { |
| 1714 unittest.expect(o, unittest.hasLength(2)); | 1714 unittest.expect(o, unittest.hasLength(2)); |
| 1715 checkForwardingRule(o[0]); | 1715 checkForwardingRule(o[0]); |
| 1716 checkForwardingRule(o[1]); | 1716 checkForwardingRule(o[1]); |
| 1717 } | 1717 } |
| 1718 | 1718 |
| 1719 core.int buildCounterForwardingRuleList = 0; | 1719 core.int buildCounterForwardingRuleList = 0; |
| 1720 buildForwardingRuleList() { | 1720 buildForwardingRuleList() { |
| 1721 var o = new api.ForwardingRuleList(); | 1721 var o = new api.ForwardingRuleList(); |
| 1722 buildCounterForwardingRuleList++; | 1722 buildCounterForwardingRuleList++; |
| 1723 if (buildCounterForwardingRuleList < 3) { | 1723 if (buildCounterForwardingRuleList < 3) { |
| 1724 o.id = "foo"; | 1724 o.id = "foo"; |
| 1725 o.items = buildUnnamed719(); | 1725 o.items = buildUnnamed2304(); |
| 1726 o.kind = "foo"; | 1726 o.kind = "foo"; |
| 1727 o.nextPageToken = "foo"; | 1727 o.nextPageToken = "foo"; |
| 1728 o.selfLink = "foo"; | 1728 o.selfLink = "foo"; |
| 1729 } | 1729 } |
| 1730 buildCounterForwardingRuleList--; | 1730 buildCounterForwardingRuleList--; |
| 1731 return o; | 1731 return o; |
| 1732 } | 1732 } |
| 1733 | 1733 |
| 1734 checkForwardingRuleList(api.ForwardingRuleList o) { | 1734 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 1735 buildCounterForwardingRuleList++; | 1735 buildCounterForwardingRuleList++; |
| 1736 if (buildCounterForwardingRuleList < 3) { | 1736 if (buildCounterForwardingRuleList < 3) { |
| 1737 unittest.expect(o.id, unittest.equals('foo')); | 1737 unittest.expect(o.id, unittest.equals('foo')); |
| 1738 checkUnnamed719(o.items); | 1738 checkUnnamed2304(o.items); |
| 1739 unittest.expect(o.kind, unittest.equals('foo')); | 1739 unittest.expect(o.kind, unittest.equals('foo')); |
| 1740 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1740 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1741 unittest.expect(o.selfLink, unittest.equals('foo')); | 1741 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1742 } | 1742 } |
| 1743 buildCounterForwardingRuleList--; | 1743 buildCounterForwardingRuleList--; |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 buildUnnamed720() { | 1746 buildUnnamed2305() { |
| 1747 var o = new core.List<api.ForwardingRule>(); | 1747 var o = new core.List<api.ForwardingRule>(); |
| 1748 o.add(buildForwardingRule()); | 1748 o.add(buildForwardingRule()); |
| 1749 o.add(buildForwardingRule()); | 1749 o.add(buildForwardingRule()); |
| 1750 return o; | 1750 return o; |
| 1751 } | 1751 } |
| 1752 | 1752 |
| 1753 checkUnnamed720(core.List<api.ForwardingRule> o) { | 1753 checkUnnamed2305(core.List<api.ForwardingRule> o) { |
| 1754 unittest.expect(o, unittest.hasLength(2)); | 1754 unittest.expect(o, unittest.hasLength(2)); |
| 1755 checkForwardingRule(o[0]); | 1755 checkForwardingRule(o[0]); |
| 1756 checkForwardingRule(o[1]); | 1756 checkForwardingRule(o[1]); |
| 1757 } | 1757 } |
| 1758 | 1758 |
| 1759 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 1759 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 1760 buildForwardingRulesScopedListWarningData() { | 1760 buildForwardingRulesScopedListWarningData() { |
| 1761 var o = new api.ForwardingRulesScopedListWarningData(); | 1761 var o = new api.ForwardingRulesScopedListWarningData(); |
| 1762 buildCounterForwardingRulesScopedListWarningData++; | 1762 buildCounterForwardingRulesScopedListWarningData++; |
| 1763 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1763 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1764 o.key = "foo"; | 1764 o.key = "foo"; |
| 1765 o.value = "foo"; | 1765 o.value = "foo"; |
| 1766 } | 1766 } |
| 1767 buildCounterForwardingRulesScopedListWarningData--; | 1767 buildCounterForwardingRulesScopedListWarningData--; |
| 1768 return o; | 1768 return o; |
| 1769 } | 1769 } |
| 1770 | 1770 |
| 1771 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 1771 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 1772 buildCounterForwardingRulesScopedListWarningData++; | 1772 buildCounterForwardingRulesScopedListWarningData++; |
| 1773 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1773 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1774 unittest.expect(o.key, unittest.equals('foo')); | 1774 unittest.expect(o.key, unittest.equals('foo')); |
| 1775 unittest.expect(o.value, unittest.equals('foo')); | 1775 unittest.expect(o.value, unittest.equals('foo')); |
| 1776 } | 1776 } |
| 1777 buildCounterForwardingRulesScopedListWarningData--; | 1777 buildCounterForwardingRulesScopedListWarningData--; |
| 1778 } | 1778 } |
| 1779 | 1779 |
| 1780 buildUnnamed721() { | 1780 buildUnnamed2306() { |
| 1781 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 1781 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 1782 o.add(buildForwardingRulesScopedListWarningData()); | 1782 o.add(buildForwardingRulesScopedListWarningData()); |
| 1783 o.add(buildForwardingRulesScopedListWarningData()); | 1783 o.add(buildForwardingRulesScopedListWarningData()); |
| 1784 return o; | 1784 return o; |
| 1785 } | 1785 } |
| 1786 | 1786 |
| 1787 checkUnnamed721(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1787 checkUnnamed2306(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 1788 unittest.expect(o, unittest.hasLength(2)); | 1788 unittest.expect(o, unittest.hasLength(2)); |
| 1789 checkForwardingRulesScopedListWarningData(o[0]); | 1789 checkForwardingRulesScopedListWarningData(o[0]); |
| 1790 checkForwardingRulesScopedListWarningData(o[1]); | 1790 checkForwardingRulesScopedListWarningData(o[1]); |
| 1791 } | 1791 } |
| 1792 | 1792 |
| 1793 core.int buildCounterForwardingRulesScopedListWarning = 0; | 1793 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 1794 buildForwardingRulesScopedListWarning() { | 1794 buildForwardingRulesScopedListWarning() { |
| 1795 var o = new api.ForwardingRulesScopedListWarning(); | 1795 var o = new api.ForwardingRulesScopedListWarning(); |
| 1796 buildCounterForwardingRulesScopedListWarning++; | 1796 buildCounterForwardingRulesScopedListWarning++; |
| 1797 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1797 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1798 o.code = "foo"; | 1798 o.code = "foo"; |
| 1799 o.data = buildUnnamed721(); | 1799 o.data = buildUnnamed2306(); |
| 1800 o.message = "foo"; | 1800 o.message = "foo"; |
| 1801 } | 1801 } |
| 1802 buildCounterForwardingRulesScopedListWarning--; | 1802 buildCounterForwardingRulesScopedListWarning--; |
| 1803 return o; | 1803 return o; |
| 1804 } | 1804 } |
| 1805 | 1805 |
| 1806 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 1806 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 1807 buildCounterForwardingRulesScopedListWarning++; | 1807 buildCounterForwardingRulesScopedListWarning++; |
| 1808 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1808 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1809 unittest.expect(o.code, unittest.equals('foo')); | 1809 unittest.expect(o.code, unittest.equals('foo')); |
| 1810 checkUnnamed721(o.data); | 1810 checkUnnamed2306(o.data); |
| 1811 unittest.expect(o.message, unittest.equals('foo')); | 1811 unittest.expect(o.message, unittest.equals('foo')); |
| 1812 } | 1812 } |
| 1813 buildCounterForwardingRulesScopedListWarning--; | 1813 buildCounterForwardingRulesScopedListWarning--; |
| 1814 } | 1814 } |
| 1815 | 1815 |
| 1816 core.int buildCounterForwardingRulesScopedList = 0; | 1816 core.int buildCounterForwardingRulesScopedList = 0; |
| 1817 buildForwardingRulesScopedList() { | 1817 buildForwardingRulesScopedList() { |
| 1818 var o = new api.ForwardingRulesScopedList(); | 1818 var o = new api.ForwardingRulesScopedList(); |
| 1819 buildCounterForwardingRulesScopedList++; | 1819 buildCounterForwardingRulesScopedList++; |
| 1820 if (buildCounterForwardingRulesScopedList < 3) { | 1820 if (buildCounterForwardingRulesScopedList < 3) { |
| 1821 o.forwardingRules = buildUnnamed720(); | 1821 o.forwardingRules = buildUnnamed2305(); |
| 1822 o.warning = buildForwardingRulesScopedListWarning(); | 1822 o.warning = buildForwardingRulesScopedListWarning(); |
| 1823 } | 1823 } |
| 1824 buildCounterForwardingRulesScopedList--; | 1824 buildCounterForwardingRulesScopedList--; |
| 1825 return o; | 1825 return o; |
| 1826 } | 1826 } |
| 1827 | 1827 |
| 1828 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 1828 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 1829 buildCounterForwardingRulesScopedList++; | 1829 buildCounterForwardingRulesScopedList++; |
| 1830 if (buildCounterForwardingRulesScopedList < 3) { | 1830 if (buildCounterForwardingRulesScopedList < 3) { |
| 1831 checkUnnamed720(o.forwardingRules); | 1831 checkUnnamed2305(o.forwardingRules); |
| 1832 checkForwardingRulesScopedListWarning(o.warning); | 1832 checkForwardingRulesScopedListWarning(o.warning); |
| 1833 } | 1833 } |
| 1834 buildCounterForwardingRulesScopedList--; | 1834 buildCounterForwardingRulesScopedList--; |
| 1835 } | 1835 } |
| 1836 | 1836 |
| 1837 core.int buildCounterHealthCheckReference = 0; | 1837 core.int buildCounterHealthCheckReference = 0; |
| 1838 buildHealthCheckReference() { | 1838 buildHealthCheckReference() { |
| 1839 var o = new api.HealthCheckReference(); | 1839 var o = new api.HealthCheckReference(); |
| 1840 buildCounterHealthCheckReference++; | 1840 buildCounterHealthCheckReference++; |
| 1841 if (buildCounterHealthCheckReference < 3) { | 1841 if (buildCounterHealthCheckReference < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1871 buildCounterHealthStatus++; | 1871 buildCounterHealthStatus++; |
| 1872 if (buildCounterHealthStatus < 3) { | 1872 if (buildCounterHealthStatus < 3) { |
| 1873 unittest.expect(o.healthState, unittest.equals('foo')); | 1873 unittest.expect(o.healthState, unittest.equals('foo')); |
| 1874 unittest.expect(o.instance, unittest.equals('foo')); | 1874 unittest.expect(o.instance, unittest.equals('foo')); |
| 1875 unittest.expect(o.ipAddress, unittest.equals('foo')); | 1875 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 1876 unittest.expect(o.port, unittest.equals(42)); | 1876 unittest.expect(o.port, unittest.equals(42)); |
| 1877 } | 1877 } |
| 1878 buildCounterHealthStatus--; | 1878 buildCounterHealthStatus--; |
| 1879 } | 1879 } |
| 1880 | 1880 |
| 1881 buildUnnamed722() { | 1881 buildUnnamed2307() { |
| 1882 var o = new core.List<core.String>(); | 1882 var o = new core.List<core.String>(); |
| 1883 o.add("foo"); | 1883 o.add("foo"); |
| 1884 o.add("foo"); | 1884 o.add("foo"); |
| 1885 return o; | 1885 return o; |
| 1886 } | 1886 } |
| 1887 | 1887 |
| 1888 checkUnnamed722(core.List<core.String> o) { | 1888 checkUnnamed2307(core.List<core.String> o) { |
| 1889 unittest.expect(o, unittest.hasLength(2)); | 1889 unittest.expect(o, unittest.hasLength(2)); |
| 1890 unittest.expect(o[0], unittest.equals('foo')); | 1890 unittest.expect(o[0], unittest.equals('foo')); |
| 1891 unittest.expect(o[1], unittest.equals('foo')); | 1891 unittest.expect(o[1], unittest.equals('foo')); |
| 1892 } | 1892 } |
| 1893 | 1893 |
| 1894 core.int buildCounterHostRule = 0; | 1894 core.int buildCounterHostRule = 0; |
| 1895 buildHostRule() { | 1895 buildHostRule() { |
| 1896 var o = new api.HostRule(); | 1896 var o = new api.HostRule(); |
| 1897 buildCounterHostRule++; | 1897 buildCounterHostRule++; |
| 1898 if (buildCounterHostRule < 3) { | 1898 if (buildCounterHostRule < 3) { |
| 1899 o.description = "foo"; | 1899 o.description = "foo"; |
| 1900 o.hosts = buildUnnamed722(); | 1900 o.hosts = buildUnnamed2307(); |
| 1901 o.pathMatcher = "foo"; | 1901 o.pathMatcher = "foo"; |
| 1902 } | 1902 } |
| 1903 buildCounterHostRule--; | 1903 buildCounterHostRule--; |
| 1904 return o; | 1904 return o; |
| 1905 } | 1905 } |
| 1906 | 1906 |
| 1907 checkHostRule(api.HostRule o) { | 1907 checkHostRule(api.HostRule o) { |
| 1908 buildCounterHostRule++; | 1908 buildCounterHostRule++; |
| 1909 if (buildCounterHostRule < 3) { | 1909 if (buildCounterHostRule < 3) { |
| 1910 unittest.expect(o.description, unittest.equals('foo')); | 1910 unittest.expect(o.description, unittest.equals('foo')); |
| 1911 checkUnnamed722(o.hosts); | 1911 checkUnnamed2307(o.hosts); |
| 1912 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 1912 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 1913 } | 1913 } |
| 1914 buildCounterHostRule--; | 1914 buildCounterHostRule--; |
| 1915 } | 1915 } |
| 1916 | 1916 |
| 1917 core.int buildCounterHttpHealthCheck = 0; | 1917 core.int buildCounterHttpHealthCheck = 0; |
| 1918 buildHttpHealthCheck() { | 1918 buildHttpHealthCheck() { |
| 1919 var o = new api.HttpHealthCheck(); | 1919 var o = new api.HttpHealthCheck(); |
| 1920 buildCounterHttpHealthCheck++; | 1920 buildCounterHttpHealthCheck++; |
| 1921 if (buildCounterHttpHealthCheck < 3) { | 1921 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1950 unittest.expect(o.name, unittest.equals('foo')); | 1950 unittest.expect(o.name, unittest.equals('foo')); |
| 1951 unittest.expect(o.port, unittest.equals(42)); | 1951 unittest.expect(o.port, unittest.equals(42)); |
| 1952 unittest.expect(o.requestPath, unittest.equals('foo')); | 1952 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 1953 unittest.expect(o.selfLink, unittest.equals('foo')); | 1953 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1954 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1954 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1955 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 1955 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 1956 } | 1956 } |
| 1957 buildCounterHttpHealthCheck--; | 1957 buildCounterHttpHealthCheck--; |
| 1958 } | 1958 } |
| 1959 | 1959 |
| 1960 buildUnnamed723() { | 1960 buildUnnamed2308() { |
| 1961 var o = new core.List<api.HttpHealthCheck>(); | 1961 var o = new core.List<api.HttpHealthCheck>(); |
| 1962 o.add(buildHttpHealthCheck()); | 1962 o.add(buildHttpHealthCheck()); |
| 1963 o.add(buildHttpHealthCheck()); | 1963 o.add(buildHttpHealthCheck()); |
| 1964 return o; | 1964 return o; |
| 1965 } | 1965 } |
| 1966 | 1966 |
| 1967 checkUnnamed723(core.List<api.HttpHealthCheck> o) { | 1967 checkUnnamed2308(core.List<api.HttpHealthCheck> o) { |
| 1968 unittest.expect(o, unittest.hasLength(2)); | 1968 unittest.expect(o, unittest.hasLength(2)); |
| 1969 checkHttpHealthCheck(o[0]); | 1969 checkHttpHealthCheck(o[0]); |
| 1970 checkHttpHealthCheck(o[1]); | 1970 checkHttpHealthCheck(o[1]); |
| 1971 } | 1971 } |
| 1972 | 1972 |
| 1973 core.int buildCounterHttpHealthCheckList = 0; | 1973 core.int buildCounterHttpHealthCheckList = 0; |
| 1974 buildHttpHealthCheckList() { | 1974 buildHttpHealthCheckList() { |
| 1975 var o = new api.HttpHealthCheckList(); | 1975 var o = new api.HttpHealthCheckList(); |
| 1976 buildCounterHttpHealthCheckList++; | 1976 buildCounterHttpHealthCheckList++; |
| 1977 if (buildCounterHttpHealthCheckList < 3) { | 1977 if (buildCounterHttpHealthCheckList < 3) { |
| 1978 o.id = "foo"; | 1978 o.id = "foo"; |
| 1979 o.items = buildUnnamed723(); | 1979 o.items = buildUnnamed2308(); |
| 1980 o.kind = "foo"; | 1980 o.kind = "foo"; |
| 1981 o.nextPageToken = "foo"; | 1981 o.nextPageToken = "foo"; |
| 1982 o.selfLink = "foo"; | 1982 o.selfLink = "foo"; |
| 1983 } | 1983 } |
| 1984 buildCounterHttpHealthCheckList--; | 1984 buildCounterHttpHealthCheckList--; |
| 1985 return o; | 1985 return o; |
| 1986 } | 1986 } |
| 1987 | 1987 |
| 1988 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 1988 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 1989 buildCounterHttpHealthCheckList++; | 1989 buildCounterHttpHealthCheckList++; |
| 1990 if (buildCounterHttpHealthCheckList < 3) { | 1990 if (buildCounterHttpHealthCheckList < 3) { |
| 1991 unittest.expect(o.id, unittest.equals('foo')); | 1991 unittest.expect(o.id, unittest.equals('foo')); |
| 1992 checkUnnamed723(o.items); | 1992 checkUnnamed2308(o.items); |
| 1993 unittest.expect(o.kind, unittest.equals('foo')); | 1993 unittest.expect(o.kind, unittest.equals('foo')); |
| 1994 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1994 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1995 unittest.expect(o.selfLink, unittest.equals('foo')); | 1995 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1996 } | 1996 } |
| 1997 buildCounterHttpHealthCheckList--; | 1997 buildCounterHttpHealthCheckList--; |
| 1998 } | 1998 } |
| 1999 | 1999 |
| 2000 core.int buildCounterHttpsHealthCheck = 0; | 2000 core.int buildCounterHttpsHealthCheck = 0; |
| 2001 buildHttpsHealthCheck() { | 2001 buildHttpsHealthCheck() { |
| 2002 var o = new api.HttpsHealthCheck(); | 2002 var o = new api.HttpsHealthCheck(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 2033 unittest.expect(o.name, unittest.equals('foo')); | 2033 unittest.expect(o.name, unittest.equals('foo')); |
| 2034 unittest.expect(o.port, unittest.equals(42)); | 2034 unittest.expect(o.port, unittest.equals(42)); |
| 2035 unittest.expect(o.requestPath, unittest.equals('foo')); | 2035 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 2036 unittest.expect(o.selfLink, unittest.equals('foo')); | 2036 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2037 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2037 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2038 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2038 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2039 } | 2039 } |
| 2040 buildCounterHttpsHealthCheck--; | 2040 buildCounterHttpsHealthCheck--; |
| 2041 } | 2041 } |
| 2042 | 2042 |
| 2043 buildUnnamed724() { | 2043 buildUnnamed2309() { |
| 2044 var o = new core.List<api.HttpsHealthCheck>(); | 2044 var o = new core.List<api.HttpsHealthCheck>(); |
| 2045 o.add(buildHttpsHealthCheck()); | 2045 o.add(buildHttpsHealthCheck()); |
| 2046 o.add(buildHttpsHealthCheck()); | 2046 o.add(buildHttpsHealthCheck()); |
| 2047 return o; | 2047 return o; |
| 2048 } | 2048 } |
| 2049 | 2049 |
| 2050 checkUnnamed724(core.List<api.HttpsHealthCheck> o) { | 2050 checkUnnamed2309(core.List<api.HttpsHealthCheck> o) { |
| 2051 unittest.expect(o, unittest.hasLength(2)); | 2051 unittest.expect(o, unittest.hasLength(2)); |
| 2052 checkHttpsHealthCheck(o[0]); | 2052 checkHttpsHealthCheck(o[0]); |
| 2053 checkHttpsHealthCheck(o[1]); | 2053 checkHttpsHealthCheck(o[1]); |
| 2054 } | 2054 } |
| 2055 | 2055 |
| 2056 core.int buildCounterHttpsHealthCheckList = 0; | 2056 core.int buildCounterHttpsHealthCheckList = 0; |
| 2057 buildHttpsHealthCheckList() { | 2057 buildHttpsHealthCheckList() { |
| 2058 var o = new api.HttpsHealthCheckList(); | 2058 var o = new api.HttpsHealthCheckList(); |
| 2059 buildCounterHttpsHealthCheckList++; | 2059 buildCounterHttpsHealthCheckList++; |
| 2060 if (buildCounterHttpsHealthCheckList < 3) { | 2060 if (buildCounterHttpsHealthCheckList < 3) { |
| 2061 o.id = "foo"; | 2061 o.id = "foo"; |
| 2062 o.items = buildUnnamed724(); | 2062 o.items = buildUnnamed2309(); |
| 2063 o.kind = "foo"; | 2063 o.kind = "foo"; |
| 2064 o.nextPageToken = "foo"; | 2064 o.nextPageToken = "foo"; |
| 2065 o.selfLink = "foo"; | 2065 o.selfLink = "foo"; |
| 2066 } | 2066 } |
| 2067 buildCounterHttpsHealthCheckList--; | 2067 buildCounterHttpsHealthCheckList--; |
| 2068 return o; | 2068 return o; |
| 2069 } | 2069 } |
| 2070 | 2070 |
| 2071 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { | 2071 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { |
| 2072 buildCounterHttpsHealthCheckList++; | 2072 buildCounterHttpsHealthCheckList++; |
| 2073 if (buildCounterHttpsHealthCheckList < 3) { | 2073 if (buildCounterHttpsHealthCheckList < 3) { |
| 2074 unittest.expect(o.id, unittest.equals('foo')); | 2074 unittest.expect(o.id, unittest.equals('foo')); |
| 2075 checkUnnamed724(o.items); | 2075 checkUnnamed2309(o.items); |
| 2076 unittest.expect(o.kind, unittest.equals('foo')); | 2076 unittest.expect(o.kind, unittest.equals('foo')); |
| 2077 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2077 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2078 unittest.expect(o.selfLink, unittest.equals('foo')); | 2078 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2079 } | 2079 } |
| 2080 buildCounterHttpsHealthCheckList--; | 2080 buildCounterHttpsHealthCheckList--; |
| 2081 } | 2081 } |
| 2082 | 2082 |
| 2083 buildUnnamed725() { | 2083 buildUnnamed2310() { |
| 2084 var o = new core.List<core.String>(); | 2084 var o = new core.List<core.String>(); |
| 2085 o.add("foo"); | 2085 o.add("foo"); |
| 2086 o.add("foo"); | 2086 o.add("foo"); |
| 2087 return o; | 2087 return o; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 checkUnnamed725(core.List<core.String> o) { | 2090 checkUnnamed2310(core.List<core.String> o) { |
| 2091 unittest.expect(o, unittest.hasLength(2)); | 2091 unittest.expect(o, unittest.hasLength(2)); |
| 2092 unittest.expect(o[0], unittest.equals('foo')); | 2092 unittest.expect(o[0], unittest.equals('foo')); |
| 2093 unittest.expect(o[1], unittest.equals('foo')); | 2093 unittest.expect(o[1], unittest.equals('foo')); |
| 2094 } | 2094 } |
| 2095 | 2095 |
| 2096 core.int buildCounterImageRawDisk = 0; | 2096 core.int buildCounterImageRawDisk = 0; |
| 2097 buildImageRawDisk() { | 2097 buildImageRawDisk() { |
| 2098 var o = new api.ImageRawDisk(); | 2098 var o = new api.ImageRawDisk(); |
| 2099 buildCounterImageRawDisk++; | 2099 buildCounterImageRawDisk++; |
| 2100 if (buildCounterImageRawDisk < 3) { | 2100 if (buildCounterImageRawDisk < 3) { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 2123 if (buildCounterImage < 3) { | 2123 if (buildCounterImage < 3) { |
| 2124 o.archiveSizeBytes = "foo"; | 2124 o.archiveSizeBytes = "foo"; |
| 2125 o.creationTimestamp = "foo"; | 2125 o.creationTimestamp = "foo"; |
| 2126 o.deprecated = buildDeprecationStatus(); | 2126 o.deprecated = buildDeprecationStatus(); |
| 2127 o.description = "foo"; | 2127 o.description = "foo"; |
| 2128 o.diskSizeGb = "foo"; | 2128 o.diskSizeGb = "foo"; |
| 2129 o.family = "foo"; | 2129 o.family = "foo"; |
| 2130 o.id = "foo"; | 2130 o.id = "foo"; |
| 2131 o.imageEncryptionKey = buildCustomerEncryptionKey(); | 2131 o.imageEncryptionKey = buildCustomerEncryptionKey(); |
| 2132 o.kind = "foo"; | 2132 o.kind = "foo"; |
| 2133 o.licenses = buildUnnamed725(); | 2133 o.licenses = buildUnnamed2310(); |
| 2134 o.name = "foo"; | 2134 o.name = "foo"; |
| 2135 o.rawDisk = buildImageRawDisk(); | 2135 o.rawDisk = buildImageRawDisk(); |
| 2136 o.selfLink = "foo"; | 2136 o.selfLink = "foo"; |
| 2137 o.sourceDisk = "foo"; | 2137 o.sourceDisk = "foo"; |
| 2138 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 2138 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 2139 o.sourceDiskId = "foo"; | 2139 o.sourceDiskId = "foo"; |
| 2140 o.sourceType = "foo"; | 2140 o.sourceType = "foo"; |
| 2141 o.status = "foo"; | 2141 o.status = "foo"; |
| 2142 } | 2142 } |
| 2143 buildCounterImage--; | 2143 buildCounterImage--; |
| 2144 return o; | 2144 return o; |
| 2145 } | 2145 } |
| 2146 | 2146 |
| 2147 checkImage(api.Image o) { | 2147 checkImage(api.Image o) { |
| 2148 buildCounterImage++; | 2148 buildCounterImage++; |
| 2149 if (buildCounterImage < 3) { | 2149 if (buildCounterImage < 3) { |
| 2150 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 2150 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 2151 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2151 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2152 checkDeprecationStatus(o.deprecated); | 2152 checkDeprecationStatus(o.deprecated); |
| 2153 unittest.expect(o.description, unittest.equals('foo')); | 2153 unittest.expect(o.description, unittest.equals('foo')); |
| 2154 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 2154 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 2155 unittest.expect(o.family, unittest.equals('foo')); | 2155 unittest.expect(o.family, unittest.equals('foo')); |
| 2156 unittest.expect(o.id, unittest.equals('foo')); | 2156 unittest.expect(o.id, unittest.equals('foo')); |
| 2157 checkCustomerEncryptionKey(o.imageEncryptionKey); | 2157 checkCustomerEncryptionKey(o.imageEncryptionKey); |
| 2158 unittest.expect(o.kind, unittest.equals('foo')); | 2158 unittest.expect(o.kind, unittest.equals('foo')); |
| 2159 checkUnnamed725(o.licenses); | 2159 checkUnnamed2310(o.licenses); |
| 2160 unittest.expect(o.name, unittest.equals('foo')); | 2160 unittest.expect(o.name, unittest.equals('foo')); |
| 2161 checkImageRawDisk(o.rawDisk); | 2161 checkImageRawDisk(o.rawDisk); |
| 2162 unittest.expect(o.selfLink, unittest.equals('foo')); | 2162 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2163 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 2163 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 2164 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 2164 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 2165 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 2165 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 2166 unittest.expect(o.sourceType, unittest.equals('foo')); | 2166 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 2167 unittest.expect(o.status, unittest.equals('foo')); | 2167 unittest.expect(o.status, unittest.equals('foo')); |
| 2168 } | 2168 } |
| 2169 buildCounterImage--; | 2169 buildCounterImage--; |
| 2170 } | 2170 } |
| 2171 | 2171 |
| 2172 buildUnnamed726() { | 2172 buildUnnamed2311() { |
| 2173 var o = new core.List<api.Image>(); | 2173 var o = new core.List<api.Image>(); |
| 2174 o.add(buildImage()); | 2174 o.add(buildImage()); |
| 2175 o.add(buildImage()); | 2175 o.add(buildImage()); |
| 2176 return o; | 2176 return o; |
| 2177 } | 2177 } |
| 2178 | 2178 |
| 2179 checkUnnamed726(core.List<api.Image> o) { | 2179 checkUnnamed2311(core.List<api.Image> o) { |
| 2180 unittest.expect(o, unittest.hasLength(2)); | 2180 unittest.expect(o, unittest.hasLength(2)); |
| 2181 checkImage(o[0]); | 2181 checkImage(o[0]); |
| 2182 checkImage(o[1]); | 2182 checkImage(o[1]); |
| 2183 } | 2183 } |
| 2184 | 2184 |
| 2185 core.int buildCounterImageList = 0; | 2185 core.int buildCounterImageList = 0; |
| 2186 buildImageList() { | 2186 buildImageList() { |
| 2187 var o = new api.ImageList(); | 2187 var o = new api.ImageList(); |
| 2188 buildCounterImageList++; | 2188 buildCounterImageList++; |
| 2189 if (buildCounterImageList < 3) { | 2189 if (buildCounterImageList < 3) { |
| 2190 o.id = "foo"; | 2190 o.id = "foo"; |
| 2191 o.items = buildUnnamed726(); | 2191 o.items = buildUnnamed2311(); |
| 2192 o.kind = "foo"; | 2192 o.kind = "foo"; |
| 2193 o.nextPageToken = "foo"; | 2193 o.nextPageToken = "foo"; |
| 2194 o.selfLink = "foo"; | 2194 o.selfLink = "foo"; |
| 2195 } | 2195 } |
| 2196 buildCounterImageList--; | 2196 buildCounterImageList--; |
| 2197 return o; | 2197 return o; |
| 2198 } | 2198 } |
| 2199 | 2199 |
| 2200 checkImageList(api.ImageList o) { | 2200 checkImageList(api.ImageList o) { |
| 2201 buildCounterImageList++; | 2201 buildCounterImageList++; |
| 2202 if (buildCounterImageList < 3) { | 2202 if (buildCounterImageList < 3) { |
| 2203 unittest.expect(o.id, unittest.equals('foo')); | 2203 unittest.expect(o.id, unittest.equals('foo')); |
| 2204 checkUnnamed726(o.items); | 2204 checkUnnamed2311(o.items); |
| 2205 unittest.expect(o.kind, unittest.equals('foo')); | 2205 unittest.expect(o.kind, unittest.equals('foo')); |
| 2206 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2206 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2207 unittest.expect(o.selfLink, unittest.equals('foo')); | 2207 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2208 } | 2208 } |
| 2209 buildCounterImageList--; | 2209 buildCounterImageList--; |
| 2210 } | 2210 } |
| 2211 | 2211 |
| 2212 buildUnnamed727() { | 2212 buildUnnamed2312() { |
| 2213 var o = new core.List<api.AttachedDisk>(); | 2213 var o = new core.List<api.AttachedDisk>(); |
| 2214 o.add(buildAttachedDisk()); | 2214 o.add(buildAttachedDisk()); |
| 2215 o.add(buildAttachedDisk()); | 2215 o.add(buildAttachedDisk()); |
| 2216 return o; | 2216 return o; |
| 2217 } | 2217 } |
| 2218 | 2218 |
| 2219 checkUnnamed727(core.List<api.AttachedDisk> o) { | 2219 checkUnnamed2312(core.List<api.AttachedDisk> o) { |
| 2220 unittest.expect(o, unittest.hasLength(2)); | 2220 unittest.expect(o, unittest.hasLength(2)); |
| 2221 checkAttachedDisk(o[0]); | 2221 checkAttachedDisk(o[0]); |
| 2222 checkAttachedDisk(o[1]); | 2222 checkAttachedDisk(o[1]); |
| 2223 } | 2223 } |
| 2224 | 2224 |
| 2225 buildUnnamed728() { | 2225 buildUnnamed2313() { |
| 2226 var o = new core.List<api.NetworkInterface>(); | 2226 var o = new core.List<api.NetworkInterface>(); |
| 2227 o.add(buildNetworkInterface()); | 2227 o.add(buildNetworkInterface()); |
| 2228 o.add(buildNetworkInterface()); | 2228 o.add(buildNetworkInterface()); |
| 2229 return o; | 2229 return o; |
| 2230 } | 2230 } |
| 2231 | 2231 |
| 2232 checkUnnamed728(core.List<api.NetworkInterface> o) { | 2232 checkUnnamed2313(core.List<api.NetworkInterface> o) { |
| 2233 unittest.expect(o, unittest.hasLength(2)); | 2233 unittest.expect(o, unittest.hasLength(2)); |
| 2234 checkNetworkInterface(o[0]); | 2234 checkNetworkInterface(o[0]); |
| 2235 checkNetworkInterface(o[1]); | 2235 checkNetworkInterface(o[1]); |
| 2236 } | 2236 } |
| 2237 | 2237 |
| 2238 buildUnnamed729() { | 2238 buildUnnamed2314() { |
| 2239 var o = new core.List<api.ServiceAccount>(); | 2239 var o = new core.List<api.ServiceAccount>(); |
| 2240 o.add(buildServiceAccount()); | 2240 o.add(buildServiceAccount()); |
| 2241 o.add(buildServiceAccount()); | 2241 o.add(buildServiceAccount()); |
| 2242 return o; | 2242 return o; |
| 2243 } | 2243 } |
| 2244 | 2244 |
| 2245 checkUnnamed729(core.List<api.ServiceAccount> o) { | 2245 checkUnnamed2314(core.List<api.ServiceAccount> o) { |
| 2246 unittest.expect(o, unittest.hasLength(2)); | 2246 unittest.expect(o, unittest.hasLength(2)); |
| 2247 checkServiceAccount(o[0]); | 2247 checkServiceAccount(o[0]); |
| 2248 checkServiceAccount(o[1]); | 2248 checkServiceAccount(o[1]); |
| 2249 } | 2249 } |
| 2250 | 2250 |
| 2251 core.int buildCounterInstance = 0; | 2251 core.int buildCounterInstance = 0; |
| 2252 buildInstance() { | 2252 buildInstance() { |
| 2253 var o = new api.Instance(); | 2253 var o = new api.Instance(); |
| 2254 buildCounterInstance++; | 2254 buildCounterInstance++; |
| 2255 if (buildCounterInstance < 3) { | 2255 if (buildCounterInstance < 3) { |
| 2256 o.canIpForward = true; | 2256 o.canIpForward = true; |
| 2257 o.cpuPlatform = "foo"; | 2257 o.cpuPlatform = "foo"; |
| 2258 o.creationTimestamp = "foo"; | 2258 o.creationTimestamp = "foo"; |
| 2259 o.description = "foo"; | 2259 o.description = "foo"; |
| 2260 o.disks = buildUnnamed727(); | 2260 o.disks = buildUnnamed2312(); |
| 2261 o.id = "foo"; | 2261 o.id = "foo"; |
| 2262 o.kind = "foo"; | 2262 o.kind = "foo"; |
| 2263 o.machineType = "foo"; | 2263 o.machineType = "foo"; |
| 2264 o.metadata = buildMetadata(); | 2264 o.metadata = buildMetadata(); |
| 2265 o.name = "foo"; | 2265 o.name = "foo"; |
| 2266 o.networkInterfaces = buildUnnamed728(); | 2266 o.networkInterfaces = buildUnnamed2313(); |
| 2267 o.scheduling = buildScheduling(); | 2267 o.scheduling = buildScheduling(); |
| 2268 o.selfLink = "foo"; | 2268 o.selfLink = "foo"; |
| 2269 o.serviceAccounts = buildUnnamed729(); | 2269 o.serviceAccounts = buildUnnamed2314(); |
| 2270 o.status = "foo"; | 2270 o.status = "foo"; |
| 2271 o.statusMessage = "foo"; | 2271 o.statusMessage = "foo"; |
| 2272 o.tags = buildTags(); | 2272 o.tags = buildTags(); |
| 2273 o.zone = "foo"; | 2273 o.zone = "foo"; |
| 2274 } | 2274 } |
| 2275 buildCounterInstance--; | 2275 buildCounterInstance--; |
| 2276 return o; | 2276 return o; |
| 2277 } | 2277 } |
| 2278 | 2278 |
| 2279 checkInstance(api.Instance o) { | 2279 checkInstance(api.Instance o) { |
| 2280 buildCounterInstance++; | 2280 buildCounterInstance++; |
| 2281 if (buildCounterInstance < 3) { | 2281 if (buildCounterInstance < 3) { |
| 2282 unittest.expect(o.canIpForward, unittest.isTrue); | 2282 unittest.expect(o.canIpForward, unittest.isTrue); |
| 2283 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 2283 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 2284 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2284 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2285 unittest.expect(o.description, unittest.equals('foo')); | 2285 unittest.expect(o.description, unittest.equals('foo')); |
| 2286 checkUnnamed727(o.disks); | 2286 checkUnnamed2312(o.disks); |
| 2287 unittest.expect(o.id, unittest.equals('foo')); | 2287 unittest.expect(o.id, unittest.equals('foo')); |
| 2288 unittest.expect(o.kind, unittest.equals('foo')); | 2288 unittest.expect(o.kind, unittest.equals('foo')); |
| 2289 unittest.expect(o.machineType, unittest.equals('foo')); | 2289 unittest.expect(o.machineType, unittest.equals('foo')); |
| 2290 checkMetadata(o.metadata); | 2290 checkMetadata(o.metadata); |
| 2291 unittest.expect(o.name, unittest.equals('foo')); | 2291 unittest.expect(o.name, unittest.equals('foo')); |
| 2292 checkUnnamed728(o.networkInterfaces); | 2292 checkUnnamed2313(o.networkInterfaces); |
| 2293 checkScheduling(o.scheduling); | 2293 checkScheduling(o.scheduling); |
| 2294 unittest.expect(o.selfLink, unittest.equals('foo')); | 2294 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2295 checkUnnamed729(o.serviceAccounts); | 2295 checkUnnamed2314(o.serviceAccounts); |
| 2296 unittest.expect(o.status, unittest.equals('foo')); | 2296 unittest.expect(o.status, unittest.equals('foo')); |
| 2297 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2297 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2298 checkTags(o.tags); | 2298 checkTags(o.tags); |
| 2299 unittest.expect(o.zone, unittest.equals('foo')); | 2299 unittest.expect(o.zone, unittest.equals('foo')); |
| 2300 } | 2300 } |
| 2301 buildCounterInstance--; | 2301 buildCounterInstance--; |
| 2302 } | 2302 } |
| 2303 | 2303 |
| 2304 buildUnnamed730() { | 2304 buildUnnamed2315() { |
| 2305 var o = new core.Map<core.String, api.InstancesScopedList>(); | 2305 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 2306 o["x"] = buildInstancesScopedList(); | 2306 o["x"] = buildInstancesScopedList(); |
| 2307 o["y"] = buildInstancesScopedList(); | 2307 o["y"] = buildInstancesScopedList(); |
| 2308 return o; | 2308 return o; |
| 2309 } | 2309 } |
| 2310 | 2310 |
| 2311 checkUnnamed730(core.Map<core.String, api.InstancesScopedList> o) { | 2311 checkUnnamed2315(core.Map<core.String, api.InstancesScopedList> o) { |
| 2312 unittest.expect(o, unittest.hasLength(2)); | 2312 unittest.expect(o, unittest.hasLength(2)); |
| 2313 checkInstancesScopedList(o["x"]); | 2313 checkInstancesScopedList(o["x"]); |
| 2314 checkInstancesScopedList(o["y"]); | 2314 checkInstancesScopedList(o["y"]); |
| 2315 } | 2315 } |
| 2316 | 2316 |
| 2317 core.int buildCounterInstanceAggregatedList = 0; | 2317 core.int buildCounterInstanceAggregatedList = 0; |
| 2318 buildInstanceAggregatedList() { | 2318 buildInstanceAggregatedList() { |
| 2319 var o = new api.InstanceAggregatedList(); | 2319 var o = new api.InstanceAggregatedList(); |
| 2320 buildCounterInstanceAggregatedList++; | 2320 buildCounterInstanceAggregatedList++; |
| 2321 if (buildCounterInstanceAggregatedList < 3) { | 2321 if (buildCounterInstanceAggregatedList < 3) { |
| 2322 o.id = "foo"; | 2322 o.id = "foo"; |
| 2323 o.items = buildUnnamed730(); | 2323 o.items = buildUnnamed2315(); |
| 2324 o.kind = "foo"; | 2324 o.kind = "foo"; |
| 2325 o.nextPageToken = "foo"; | 2325 o.nextPageToken = "foo"; |
| 2326 o.selfLink = "foo"; | 2326 o.selfLink = "foo"; |
| 2327 } | 2327 } |
| 2328 buildCounterInstanceAggregatedList--; | 2328 buildCounterInstanceAggregatedList--; |
| 2329 return o; | 2329 return o; |
| 2330 } | 2330 } |
| 2331 | 2331 |
| 2332 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 2332 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 2333 buildCounterInstanceAggregatedList++; | 2333 buildCounterInstanceAggregatedList++; |
| 2334 if (buildCounterInstanceAggregatedList < 3) { | 2334 if (buildCounterInstanceAggregatedList < 3) { |
| 2335 unittest.expect(o.id, unittest.equals('foo')); | 2335 unittest.expect(o.id, unittest.equals('foo')); |
| 2336 checkUnnamed730(o.items); | 2336 checkUnnamed2315(o.items); |
| 2337 unittest.expect(o.kind, unittest.equals('foo')); | 2337 unittest.expect(o.kind, unittest.equals('foo')); |
| 2338 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2338 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2339 unittest.expect(o.selfLink, unittest.equals('foo')); | 2339 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2340 } | 2340 } |
| 2341 buildCounterInstanceAggregatedList--; | 2341 buildCounterInstanceAggregatedList--; |
| 2342 } | 2342 } |
| 2343 | 2343 |
| 2344 buildUnnamed731() { | 2344 buildUnnamed2316() { |
| 2345 var o = new core.List<api.NamedPort>(); | 2345 var o = new core.List<api.NamedPort>(); |
| 2346 o.add(buildNamedPort()); | 2346 o.add(buildNamedPort()); |
| 2347 o.add(buildNamedPort()); | 2347 o.add(buildNamedPort()); |
| 2348 return o; | 2348 return o; |
| 2349 } | 2349 } |
| 2350 | 2350 |
| 2351 checkUnnamed731(core.List<api.NamedPort> o) { | 2351 checkUnnamed2316(core.List<api.NamedPort> o) { |
| 2352 unittest.expect(o, unittest.hasLength(2)); | 2352 unittest.expect(o, unittest.hasLength(2)); |
| 2353 checkNamedPort(o[0]); | 2353 checkNamedPort(o[0]); |
| 2354 checkNamedPort(o[1]); | 2354 checkNamedPort(o[1]); |
| 2355 } | 2355 } |
| 2356 | 2356 |
| 2357 core.int buildCounterInstanceGroup = 0; | 2357 core.int buildCounterInstanceGroup = 0; |
| 2358 buildInstanceGroup() { | 2358 buildInstanceGroup() { |
| 2359 var o = new api.InstanceGroup(); | 2359 var o = new api.InstanceGroup(); |
| 2360 buildCounterInstanceGroup++; | 2360 buildCounterInstanceGroup++; |
| 2361 if (buildCounterInstanceGroup < 3) { | 2361 if (buildCounterInstanceGroup < 3) { |
| 2362 o.creationTimestamp = "foo"; | 2362 o.creationTimestamp = "foo"; |
| 2363 o.description = "foo"; | 2363 o.description = "foo"; |
| 2364 o.fingerprint = "foo"; | 2364 o.fingerprint = "foo"; |
| 2365 o.id = "foo"; | 2365 o.id = "foo"; |
| 2366 o.kind = "foo"; | 2366 o.kind = "foo"; |
| 2367 o.name = "foo"; | 2367 o.name = "foo"; |
| 2368 o.namedPorts = buildUnnamed731(); | 2368 o.namedPorts = buildUnnamed2316(); |
| 2369 o.network = "foo"; | 2369 o.network = "foo"; |
| 2370 o.selfLink = "foo"; | 2370 o.selfLink = "foo"; |
| 2371 o.size = 42; | 2371 o.size = 42; |
| 2372 o.subnetwork = "foo"; | 2372 o.subnetwork = "foo"; |
| 2373 o.zone = "foo"; | 2373 o.zone = "foo"; |
| 2374 } | 2374 } |
| 2375 buildCounterInstanceGroup--; | 2375 buildCounterInstanceGroup--; |
| 2376 return o; | 2376 return o; |
| 2377 } | 2377 } |
| 2378 | 2378 |
| 2379 checkInstanceGroup(api.InstanceGroup o) { | 2379 checkInstanceGroup(api.InstanceGroup o) { |
| 2380 buildCounterInstanceGroup++; | 2380 buildCounterInstanceGroup++; |
| 2381 if (buildCounterInstanceGroup < 3) { | 2381 if (buildCounterInstanceGroup < 3) { |
| 2382 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2382 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2383 unittest.expect(o.description, unittest.equals('foo')); | 2383 unittest.expect(o.description, unittest.equals('foo')); |
| 2384 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2384 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2385 unittest.expect(o.id, unittest.equals('foo')); | 2385 unittest.expect(o.id, unittest.equals('foo')); |
| 2386 unittest.expect(o.kind, unittest.equals('foo')); | 2386 unittest.expect(o.kind, unittest.equals('foo')); |
| 2387 unittest.expect(o.name, unittest.equals('foo')); | 2387 unittest.expect(o.name, unittest.equals('foo')); |
| 2388 checkUnnamed731(o.namedPorts); | 2388 checkUnnamed2316(o.namedPorts); |
| 2389 unittest.expect(o.network, unittest.equals('foo')); | 2389 unittest.expect(o.network, unittest.equals('foo')); |
| 2390 unittest.expect(o.selfLink, unittest.equals('foo')); | 2390 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2391 unittest.expect(o.size, unittest.equals(42)); | 2391 unittest.expect(o.size, unittest.equals(42)); |
| 2392 unittest.expect(o.subnetwork, unittest.equals('foo')); | 2392 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 2393 unittest.expect(o.zone, unittest.equals('foo')); | 2393 unittest.expect(o.zone, unittest.equals('foo')); |
| 2394 } | 2394 } |
| 2395 buildCounterInstanceGroup--; | 2395 buildCounterInstanceGroup--; |
| 2396 } | 2396 } |
| 2397 | 2397 |
| 2398 buildUnnamed732() { | 2398 buildUnnamed2317() { |
| 2399 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 2399 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 2400 o["x"] = buildInstanceGroupsScopedList(); | 2400 o["x"] = buildInstanceGroupsScopedList(); |
| 2401 o["y"] = buildInstanceGroupsScopedList(); | 2401 o["y"] = buildInstanceGroupsScopedList(); |
| 2402 return o; | 2402 return o; |
| 2403 } | 2403 } |
| 2404 | 2404 |
| 2405 checkUnnamed732(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 2405 checkUnnamed2317(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 2406 unittest.expect(o, unittest.hasLength(2)); | 2406 unittest.expect(o, unittest.hasLength(2)); |
| 2407 checkInstanceGroupsScopedList(o["x"]); | 2407 checkInstanceGroupsScopedList(o["x"]); |
| 2408 checkInstanceGroupsScopedList(o["y"]); | 2408 checkInstanceGroupsScopedList(o["y"]); |
| 2409 } | 2409 } |
| 2410 | 2410 |
| 2411 core.int buildCounterInstanceGroupAggregatedList = 0; | 2411 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 2412 buildInstanceGroupAggregatedList() { | 2412 buildInstanceGroupAggregatedList() { |
| 2413 var o = new api.InstanceGroupAggregatedList(); | 2413 var o = new api.InstanceGroupAggregatedList(); |
| 2414 buildCounterInstanceGroupAggregatedList++; | 2414 buildCounterInstanceGroupAggregatedList++; |
| 2415 if (buildCounterInstanceGroupAggregatedList < 3) { | 2415 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2416 o.id = "foo"; | 2416 o.id = "foo"; |
| 2417 o.items = buildUnnamed732(); | 2417 o.items = buildUnnamed2317(); |
| 2418 o.kind = "foo"; | 2418 o.kind = "foo"; |
| 2419 o.nextPageToken = "foo"; | 2419 o.nextPageToken = "foo"; |
| 2420 o.selfLink = "foo"; | 2420 o.selfLink = "foo"; |
| 2421 } | 2421 } |
| 2422 buildCounterInstanceGroupAggregatedList--; | 2422 buildCounterInstanceGroupAggregatedList--; |
| 2423 return o; | 2423 return o; |
| 2424 } | 2424 } |
| 2425 | 2425 |
| 2426 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 2426 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 2427 buildCounterInstanceGroupAggregatedList++; | 2427 buildCounterInstanceGroupAggregatedList++; |
| 2428 if (buildCounterInstanceGroupAggregatedList < 3) { | 2428 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2429 unittest.expect(o.id, unittest.equals('foo')); | 2429 unittest.expect(o.id, unittest.equals('foo')); |
| 2430 checkUnnamed732(o.items); | 2430 checkUnnamed2317(o.items); |
| 2431 unittest.expect(o.kind, unittest.equals('foo')); | 2431 unittest.expect(o.kind, unittest.equals('foo')); |
| 2432 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2432 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2433 unittest.expect(o.selfLink, unittest.equals('foo')); | 2433 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2434 } | 2434 } |
| 2435 buildCounterInstanceGroupAggregatedList--; | 2435 buildCounterInstanceGroupAggregatedList--; |
| 2436 } | 2436 } |
| 2437 | 2437 |
| 2438 buildUnnamed733() { | 2438 buildUnnamed2318() { |
| 2439 var o = new core.List<api.InstanceGroup>(); | 2439 var o = new core.List<api.InstanceGroup>(); |
| 2440 o.add(buildInstanceGroup()); | 2440 o.add(buildInstanceGroup()); |
| 2441 o.add(buildInstanceGroup()); | 2441 o.add(buildInstanceGroup()); |
| 2442 return o; | 2442 return o; |
| 2443 } | 2443 } |
| 2444 | 2444 |
| 2445 checkUnnamed733(core.List<api.InstanceGroup> o) { | 2445 checkUnnamed2318(core.List<api.InstanceGroup> o) { |
| 2446 unittest.expect(o, unittest.hasLength(2)); | 2446 unittest.expect(o, unittest.hasLength(2)); |
| 2447 checkInstanceGroup(o[0]); | 2447 checkInstanceGroup(o[0]); |
| 2448 checkInstanceGroup(o[1]); | 2448 checkInstanceGroup(o[1]); |
| 2449 } | 2449 } |
| 2450 | 2450 |
| 2451 core.int buildCounterInstanceGroupList = 0; | 2451 core.int buildCounterInstanceGroupList = 0; |
| 2452 buildInstanceGroupList() { | 2452 buildInstanceGroupList() { |
| 2453 var o = new api.InstanceGroupList(); | 2453 var o = new api.InstanceGroupList(); |
| 2454 buildCounterInstanceGroupList++; | 2454 buildCounterInstanceGroupList++; |
| 2455 if (buildCounterInstanceGroupList < 3) { | 2455 if (buildCounterInstanceGroupList < 3) { |
| 2456 o.id = "foo"; | 2456 o.id = "foo"; |
| 2457 o.items = buildUnnamed733(); | 2457 o.items = buildUnnamed2318(); |
| 2458 o.kind = "foo"; | 2458 o.kind = "foo"; |
| 2459 o.nextPageToken = "foo"; | 2459 o.nextPageToken = "foo"; |
| 2460 o.selfLink = "foo"; | 2460 o.selfLink = "foo"; |
| 2461 } | 2461 } |
| 2462 buildCounterInstanceGroupList--; | 2462 buildCounterInstanceGroupList--; |
| 2463 return o; | 2463 return o; |
| 2464 } | 2464 } |
| 2465 | 2465 |
| 2466 checkInstanceGroupList(api.InstanceGroupList o) { | 2466 checkInstanceGroupList(api.InstanceGroupList o) { |
| 2467 buildCounterInstanceGroupList++; | 2467 buildCounterInstanceGroupList++; |
| 2468 if (buildCounterInstanceGroupList < 3) { | 2468 if (buildCounterInstanceGroupList < 3) { |
| 2469 unittest.expect(o.id, unittest.equals('foo')); | 2469 unittest.expect(o.id, unittest.equals('foo')); |
| 2470 checkUnnamed733(o.items); | 2470 checkUnnamed2318(o.items); |
| 2471 unittest.expect(o.kind, unittest.equals('foo')); | 2471 unittest.expect(o.kind, unittest.equals('foo')); |
| 2472 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2472 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2473 unittest.expect(o.selfLink, unittest.equals('foo')); | 2473 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2474 } | 2474 } |
| 2475 buildCounterInstanceGroupList--; | 2475 buildCounterInstanceGroupList--; |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 buildUnnamed734() { | 2478 buildUnnamed2319() { |
| 2479 var o = new core.List<api.NamedPort>(); | 2479 var o = new core.List<api.NamedPort>(); |
| 2480 o.add(buildNamedPort()); | 2480 o.add(buildNamedPort()); |
| 2481 o.add(buildNamedPort()); | 2481 o.add(buildNamedPort()); |
| 2482 return o; | 2482 return o; |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 checkUnnamed734(core.List<api.NamedPort> o) { | 2485 checkUnnamed2319(core.List<api.NamedPort> o) { |
| 2486 unittest.expect(o, unittest.hasLength(2)); | 2486 unittest.expect(o, unittest.hasLength(2)); |
| 2487 checkNamedPort(o[0]); | 2487 checkNamedPort(o[0]); |
| 2488 checkNamedPort(o[1]); | 2488 checkNamedPort(o[1]); |
| 2489 } | 2489 } |
| 2490 | 2490 |
| 2491 buildUnnamed735() { | 2491 buildUnnamed2320() { |
| 2492 var o = new core.List<core.String>(); | 2492 var o = new core.List<core.String>(); |
| 2493 o.add("foo"); | 2493 o.add("foo"); |
| 2494 o.add("foo"); | 2494 o.add("foo"); |
| 2495 return o; | 2495 return o; |
| 2496 } | 2496 } |
| 2497 | 2497 |
| 2498 checkUnnamed735(core.List<core.String> o) { | 2498 checkUnnamed2320(core.List<core.String> o) { |
| 2499 unittest.expect(o, unittest.hasLength(2)); | 2499 unittest.expect(o, unittest.hasLength(2)); |
| 2500 unittest.expect(o[0], unittest.equals('foo')); | 2500 unittest.expect(o[0], unittest.equals('foo')); |
| 2501 unittest.expect(o[1], unittest.equals('foo')); | 2501 unittest.expect(o[1], unittest.equals('foo')); |
| 2502 } | 2502 } |
| 2503 | 2503 |
| 2504 core.int buildCounterInstanceGroupManager = 0; | 2504 core.int buildCounterInstanceGroupManager = 0; |
| 2505 buildInstanceGroupManager() { | 2505 buildInstanceGroupManager() { |
| 2506 var o = new api.InstanceGroupManager(); | 2506 var o = new api.InstanceGroupManager(); |
| 2507 buildCounterInstanceGroupManager++; | 2507 buildCounterInstanceGroupManager++; |
| 2508 if (buildCounterInstanceGroupManager < 3) { | 2508 if (buildCounterInstanceGroupManager < 3) { |
| 2509 o.baseInstanceName = "foo"; | 2509 o.baseInstanceName = "foo"; |
| 2510 o.creationTimestamp = "foo"; | 2510 o.creationTimestamp = "foo"; |
| 2511 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 2511 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 2512 o.description = "foo"; | 2512 o.description = "foo"; |
| 2513 o.fingerprint = "foo"; | 2513 o.fingerprint = "foo"; |
| 2514 o.id = "foo"; | 2514 o.id = "foo"; |
| 2515 o.instanceGroup = "foo"; | 2515 o.instanceGroup = "foo"; |
| 2516 o.instanceTemplate = "foo"; | 2516 o.instanceTemplate = "foo"; |
| 2517 o.kind = "foo"; | 2517 o.kind = "foo"; |
| 2518 o.name = "foo"; | 2518 o.name = "foo"; |
| 2519 o.namedPorts = buildUnnamed734(); | 2519 o.namedPorts = buildUnnamed2319(); |
| 2520 o.selfLink = "foo"; | 2520 o.selfLink = "foo"; |
| 2521 o.targetPools = buildUnnamed735(); | 2521 o.targetPools = buildUnnamed2320(); |
| 2522 o.targetSize = 42; | 2522 o.targetSize = 42; |
| 2523 o.zone = "foo"; | 2523 o.zone = "foo"; |
| 2524 } | 2524 } |
| 2525 buildCounterInstanceGroupManager--; | 2525 buildCounterInstanceGroupManager--; |
| 2526 return o; | 2526 return o; |
| 2527 } | 2527 } |
| 2528 | 2528 |
| 2529 checkInstanceGroupManager(api.InstanceGroupManager o) { | 2529 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 2530 buildCounterInstanceGroupManager++; | 2530 buildCounterInstanceGroupManager++; |
| 2531 if (buildCounterInstanceGroupManager < 3) { | 2531 if (buildCounterInstanceGroupManager < 3) { |
| 2532 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 2532 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 2533 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2533 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2534 checkInstanceGroupManagerActionsSummary(o.currentActions); | 2534 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 2535 unittest.expect(o.description, unittest.equals('foo')); | 2535 unittest.expect(o.description, unittest.equals('foo')); |
| 2536 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2536 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2537 unittest.expect(o.id, unittest.equals('foo')); | 2537 unittest.expect(o.id, unittest.equals('foo')); |
| 2538 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 2538 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 2539 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2539 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2540 unittest.expect(o.kind, unittest.equals('foo')); | 2540 unittest.expect(o.kind, unittest.equals('foo')); |
| 2541 unittest.expect(o.name, unittest.equals('foo')); | 2541 unittest.expect(o.name, unittest.equals('foo')); |
| 2542 checkUnnamed734(o.namedPorts); | 2542 checkUnnamed2319(o.namedPorts); |
| 2543 unittest.expect(o.selfLink, unittest.equals('foo')); | 2543 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2544 checkUnnamed735(o.targetPools); | 2544 checkUnnamed2320(o.targetPools); |
| 2545 unittest.expect(o.targetSize, unittest.equals(42)); | 2545 unittest.expect(o.targetSize, unittest.equals(42)); |
| 2546 unittest.expect(o.zone, unittest.equals('foo')); | 2546 unittest.expect(o.zone, unittest.equals('foo')); |
| 2547 } | 2547 } |
| 2548 buildCounterInstanceGroupManager--; | 2548 buildCounterInstanceGroupManager--; |
| 2549 } | 2549 } |
| 2550 | 2550 |
| 2551 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 2551 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 2552 buildInstanceGroupManagerActionsSummary() { | 2552 buildInstanceGroupManagerActionsSummary() { |
| 2553 var o = new api.InstanceGroupManagerActionsSummary(); | 2553 var o = new api.InstanceGroupManagerActionsSummary(); |
| 2554 buildCounterInstanceGroupManagerActionsSummary++; | 2554 buildCounterInstanceGroupManagerActionsSummary++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 2572 unittest.expect(o.creating, unittest.equals(42)); | 2572 unittest.expect(o.creating, unittest.equals(42)); |
| 2573 unittest.expect(o.deleting, unittest.equals(42)); | 2573 unittest.expect(o.deleting, unittest.equals(42)); |
| 2574 unittest.expect(o.none, unittest.equals(42)); | 2574 unittest.expect(o.none, unittest.equals(42)); |
| 2575 unittest.expect(o.recreating, unittest.equals(42)); | 2575 unittest.expect(o.recreating, unittest.equals(42)); |
| 2576 unittest.expect(o.refreshing, unittest.equals(42)); | 2576 unittest.expect(o.refreshing, unittest.equals(42)); |
| 2577 unittest.expect(o.restarting, unittest.equals(42)); | 2577 unittest.expect(o.restarting, unittest.equals(42)); |
| 2578 } | 2578 } |
| 2579 buildCounterInstanceGroupManagerActionsSummary--; | 2579 buildCounterInstanceGroupManagerActionsSummary--; |
| 2580 } | 2580 } |
| 2581 | 2581 |
| 2582 buildUnnamed736() { | 2582 buildUnnamed2321() { |
| 2583 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 2583 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 2584 o["x"] = buildInstanceGroupManagersScopedList(); | 2584 o["x"] = buildInstanceGroupManagersScopedList(); |
| 2585 o["y"] = buildInstanceGroupManagersScopedList(); | 2585 o["y"] = buildInstanceGroupManagersScopedList(); |
| 2586 return o; | 2586 return o; |
| 2587 } | 2587 } |
| 2588 | 2588 |
| 2589 checkUnnamed736(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 2589 checkUnnamed2321(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 2590 unittest.expect(o, unittest.hasLength(2)); | 2590 unittest.expect(o, unittest.hasLength(2)); |
| 2591 checkInstanceGroupManagersScopedList(o["x"]); | 2591 checkInstanceGroupManagersScopedList(o["x"]); |
| 2592 checkInstanceGroupManagersScopedList(o["y"]); | 2592 checkInstanceGroupManagersScopedList(o["y"]); |
| 2593 } | 2593 } |
| 2594 | 2594 |
| 2595 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 2595 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 2596 buildInstanceGroupManagerAggregatedList() { | 2596 buildInstanceGroupManagerAggregatedList() { |
| 2597 var o = new api.InstanceGroupManagerAggregatedList(); | 2597 var o = new api.InstanceGroupManagerAggregatedList(); |
| 2598 buildCounterInstanceGroupManagerAggregatedList++; | 2598 buildCounterInstanceGroupManagerAggregatedList++; |
| 2599 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2599 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2600 o.id = "foo"; | 2600 o.id = "foo"; |
| 2601 o.items = buildUnnamed736(); | 2601 o.items = buildUnnamed2321(); |
| 2602 o.kind = "foo"; | 2602 o.kind = "foo"; |
| 2603 o.nextPageToken = "foo"; | 2603 o.nextPageToken = "foo"; |
| 2604 o.selfLink = "foo"; | 2604 o.selfLink = "foo"; |
| 2605 } | 2605 } |
| 2606 buildCounterInstanceGroupManagerAggregatedList--; | 2606 buildCounterInstanceGroupManagerAggregatedList--; |
| 2607 return o; | 2607 return o; |
| 2608 } | 2608 } |
| 2609 | 2609 |
| 2610 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 2610 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 2611 buildCounterInstanceGroupManagerAggregatedList++; | 2611 buildCounterInstanceGroupManagerAggregatedList++; |
| 2612 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2612 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2613 unittest.expect(o.id, unittest.equals('foo')); | 2613 unittest.expect(o.id, unittest.equals('foo')); |
| 2614 checkUnnamed736(o.items); | 2614 checkUnnamed2321(o.items); |
| 2615 unittest.expect(o.kind, unittest.equals('foo')); | 2615 unittest.expect(o.kind, unittest.equals('foo')); |
| 2616 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2616 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2617 unittest.expect(o.selfLink, unittest.equals('foo')); | 2617 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2618 } | 2618 } |
| 2619 buildCounterInstanceGroupManagerAggregatedList--; | 2619 buildCounterInstanceGroupManagerAggregatedList--; |
| 2620 } | 2620 } |
| 2621 | 2621 |
| 2622 buildUnnamed737() { | 2622 buildUnnamed2322() { |
| 2623 var o = new core.List<api.InstanceGroupManager>(); | 2623 var o = new core.List<api.InstanceGroupManager>(); |
| 2624 o.add(buildInstanceGroupManager()); | 2624 o.add(buildInstanceGroupManager()); |
| 2625 o.add(buildInstanceGroupManager()); | 2625 o.add(buildInstanceGroupManager()); |
| 2626 return o; | 2626 return o; |
| 2627 } | 2627 } |
| 2628 | 2628 |
| 2629 checkUnnamed737(core.List<api.InstanceGroupManager> o) { | 2629 checkUnnamed2322(core.List<api.InstanceGroupManager> o) { |
| 2630 unittest.expect(o, unittest.hasLength(2)); | 2630 unittest.expect(o, unittest.hasLength(2)); |
| 2631 checkInstanceGroupManager(o[0]); | 2631 checkInstanceGroupManager(o[0]); |
| 2632 checkInstanceGroupManager(o[1]); | 2632 checkInstanceGroupManager(o[1]); |
| 2633 } | 2633 } |
| 2634 | 2634 |
| 2635 core.int buildCounterInstanceGroupManagerList = 0; | 2635 core.int buildCounterInstanceGroupManagerList = 0; |
| 2636 buildInstanceGroupManagerList() { | 2636 buildInstanceGroupManagerList() { |
| 2637 var o = new api.InstanceGroupManagerList(); | 2637 var o = new api.InstanceGroupManagerList(); |
| 2638 buildCounterInstanceGroupManagerList++; | 2638 buildCounterInstanceGroupManagerList++; |
| 2639 if (buildCounterInstanceGroupManagerList < 3) { | 2639 if (buildCounterInstanceGroupManagerList < 3) { |
| 2640 o.id = "foo"; | 2640 o.id = "foo"; |
| 2641 o.items = buildUnnamed737(); | 2641 o.items = buildUnnamed2322(); |
| 2642 o.kind = "foo"; | 2642 o.kind = "foo"; |
| 2643 o.nextPageToken = "foo"; | 2643 o.nextPageToken = "foo"; |
| 2644 o.selfLink = "foo"; | 2644 o.selfLink = "foo"; |
| 2645 } | 2645 } |
| 2646 buildCounterInstanceGroupManagerList--; | 2646 buildCounterInstanceGroupManagerList--; |
| 2647 return o; | 2647 return o; |
| 2648 } | 2648 } |
| 2649 | 2649 |
| 2650 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 2650 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 2651 buildCounterInstanceGroupManagerList++; | 2651 buildCounterInstanceGroupManagerList++; |
| 2652 if (buildCounterInstanceGroupManagerList < 3) { | 2652 if (buildCounterInstanceGroupManagerList < 3) { |
| 2653 unittest.expect(o.id, unittest.equals('foo')); | 2653 unittest.expect(o.id, unittest.equals('foo')); |
| 2654 checkUnnamed737(o.items); | 2654 checkUnnamed2322(o.items); |
| 2655 unittest.expect(o.kind, unittest.equals('foo')); | 2655 unittest.expect(o.kind, unittest.equals('foo')); |
| 2656 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2656 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2657 unittest.expect(o.selfLink, unittest.equals('foo')); | 2657 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2658 } | 2658 } |
| 2659 buildCounterInstanceGroupManagerList--; | 2659 buildCounterInstanceGroupManagerList--; |
| 2660 } | 2660 } |
| 2661 | 2661 |
| 2662 buildUnnamed738() { | 2662 buildUnnamed2323() { |
| 2663 var o = new core.List<core.String>(); | 2663 var o = new core.List<core.String>(); |
| 2664 o.add("foo"); | 2664 o.add("foo"); |
| 2665 o.add("foo"); | 2665 o.add("foo"); |
| 2666 return o; | 2666 return o; |
| 2667 } | 2667 } |
| 2668 | 2668 |
| 2669 checkUnnamed738(core.List<core.String> o) { | 2669 checkUnnamed2323(core.List<core.String> o) { |
| 2670 unittest.expect(o, unittest.hasLength(2)); | 2670 unittest.expect(o, unittest.hasLength(2)); |
| 2671 unittest.expect(o[0], unittest.equals('foo')); | 2671 unittest.expect(o[0], unittest.equals('foo')); |
| 2672 unittest.expect(o[1], unittest.equals('foo')); | 2672 unittest.expect(o[1], unittest.equals('foo')); |
| 2673 } | 2673 } |
| 2674 | 2674 |
| 2675 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 2675 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 2676 buildInstanceGroupManagersAbandonInstancesRequest() { | 2676 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 2677 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 2677 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 2678 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2678 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2679 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2679 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2680 o.instances = buildUnnamed738(); | 2680 o.instances = buildUnnamed2323(); |
| 2681 } | 2681 } |
| 2682 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2682 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2683 return o; | 2683 return o; |
| 2684 } | 2684 } |
| 2685 | 2685 |
| 2686 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 2686 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 2687 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 2687 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 2688 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 2688 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 2689 checkUnnamed738(o.instances); | 2689 checkUnnamed2323(o.instances); |
| 2690 } | 2690 } |
| 2691 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 2691 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 2692 } | 2692 } |
| 2693 | 2693 |
| 2694 buildUnnamed739() { | 2694 buildUnnamed2324() { |
| 2695 var o = new core.List<core.String>(); | 2695 var o = new core.List<core.String>(); |
| 2696 o.add("foo"); | 2696 o.add("foo"); |
| 2697 o.add("foo"); | 2697 o.add("foo"); |
| 2698 return o; | 2698 return o; |
| 2699 } | 2699 } |
| 2700 | 2700 |
| 2701 checkUnnamed739(core.List<core.String> o) { | 2701 checkUnnamed2324(core.List<core.String> o) { |
| 2702 unittest.expect(o, unittest.hasLength(2)); | 2702 unittest.expect(o, unittest.hasLength(2)); |
| 2703 unittest.expect(o[0], unittest.equals('foo')); | 2703 unittest.expect(o[0], unittest.equals('foo')); |
| 2704 unittest.expect(o[1], unittest.equals('foo')); | 2704 unittest.expect(o[1], unittest.equals('foo')); |
| 2705 } | 2705 } |
| 2706 | 2706 |
| 2707 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 2707 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 2708 buildInstanceGroupManagersDeleteInstancesRequest() { | 2708 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 2709 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 2709 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 2710 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2710 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2711 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2711 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2712 o.instances = buildUnnamed739(); | 2712 o.instances = buildUnnamed2324(); |
| 2713 } | 2713 } |
| 2714 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2714 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2715 return o; | 2715 return o; |
| 2716 } | 2716 } |
| 2717 | 2717 |
| 2718 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 2718 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 2719 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 2719 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 2720 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 2720 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 2721 checkUnnamed739(o.instances); | 2721 checkUnnamed2324(o.instances); |
| 2722 } | 2722 } |
| 2723 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 2723 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 2724 } | 2724 } |
| 2725 | 2725 |
| 2726 buildUnnamed740() { | 2726 buildUnnamed2325() { |
| 2727 var o = new core.List<api.ManagedInstance>(); | 2727 var o = new core.List<api.ManagedInstance>(); |
| 2728 o.add(buildManagedInstance()); | 2728 o.add(buildManagedInstance()); |
| 2729 o.add(buildManagedInstance()); | 2729 o.add(buildManagedInstance()); |
| 2730 return o; | 2730 return o; |
| 2731 } | 2731 } |
| 2732 | 2732 |
| 2733 checkUnnamed740(core.List<api.ManagedInstance> o) { | 2733 checkUnnamed2325(core.List<api.ManagedInstance> o) { |
| 2734 unittest.expect(o, unittest.hasLength(2)); | 2734 unittest.expect(o, unittest.hasLength(2)); |
| 2735 checkManagedInstance(o[0]); | 2735 checkManagedInstance(o[0]); |
| 2736 checkManagedInstance(o[1]); | 2736 checkManagedInstance(o[1]); |
| 2737 } | 2737 } |
| 2738 | 2738 |
| 2739 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 2739 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 2740 buildInstanceGroupManagersListManagedInstancesResponse() { | 2740 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 2741 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 2741 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 2742 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2742 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2743 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2743 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2744 o.managedInstances = buildUnnamed740(); | 2744 o.managedInstances = buildUnnamed2325(); |
| 2745 } | 2745 } |
| 2746 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2746 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2747 return o; | 2747 return o; |
| 2748 } | 2748 } |
| 2749 | 2749 |
| 2750 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 2750 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 2751 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 2751 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 2752 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 2752 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 2753 checkUnnamed740(o.managedInstances); | 2753 checkUnnamed2325(o.managedInstances); |
| 2754 } | 2754 } |
| 2755 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 2755 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 2756 } | 2756 } |
| 2757 | 2757 |
| 2758 buildUnnamed741() { | 2758 buildUnnamed2326() { |
| 2759 var o = new core.List<core.String>(); | 2759 var o = new core.List<core.String>(); |
| 2760 o.add("foo"); | 2760 o.add("foo"); |
| 2761 o.add("foo"); | 2761 o.add("foo"); |
| 2762 return o; | 2762 return o; |
| 2763 } | 2763 } |
| 2764 | 2764 |
| 2765 checkUnnamed741(core.List<core.String> o) { | 2765 checkUnnamed2326(core.List<core.String> o) { |
| 2766 unittest.expect(o, unittest.hasLength(2)); | 2766 unittest.expect(o, unittest.hasLength(2)); |
| 2767 unittest.expect(o[0], unittest.equals('foo')); | 2767 unittest.expect(o[0], unittest.equals('foo')); |
| 2768 unittest.expect(o[1], unittest.equals('foo')); | 2768 unittest.expect(o[1], unittest.equals('foo')); |
| 2769 } | 2769 } |
| 2770 | 2770 |
| 2771 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 2771 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 2772 buildInstanceGroupManagersRecreateInstancesRequest() { | 2772 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 2773 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 2773 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 2774 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2774 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2775 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2775 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2776 o.instances = buildUnnamed741(); | 2776 o.instances = buildUnnamed2326(); |
| 2777 } | 2777 } |
| 2778 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2778 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2779 return o; | 2779 return o; |
| 2780 } | 2780 } |
| 2781 | 2781 |
| 2782 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 2782 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 2783 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 2783 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 2784 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 2784 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 2785 checkUnnamed741(o.instances); | 2785 checkUnnamed2326(o.instances); |
| 2786 } | 2786 } |
| 2787 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 2787 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 2788 } | 2788 } |
| 2789 | 2789 |
| 2790 buildUnnamed742() { | 2790 buildUnnamed2327() { |
| 2791 var o = new core.List<api.InstanceGroupManager>(); | 2791 var o = new core.List<api.InstanceGroupManager>(); |
| 2792 o.add(buildInstanceGroupManager()); | 2792 o.add(buildInstanceGroupManager()); |
| 2793 o.add(buildInstanceGroupManager()); | 2793 o.add(buildInstanceGroupManager()); |
| 2794 return o; | 2794 return o; |
| 2795 } | 2795 } |
| 2796 | 2796 |
| 2797 checkUnnamed742(core.List<api.InstanceGroupManager> o) { | 2797 checkUnnamed2327(core.List<api.InstanceGroupManager> o) { |
| 2798 unittest.expect(o, unittest.hasLength(2)); | 2798 unittest.expect(o, unittest.hasLength(2)); |
| 2799 checkInstanceGroupManager(o[0]); | 2799 checkInstanceGroupManager(o[0]); |
| 2800 checkInstanceGroupManager(o[1]); | 2800 checkInstanceGroupManager(o[1]); |
| 2801 } | 2801 } |
| 2802 | 2802 |
| 2803 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 2803 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 2804 buildInstanceGroupManagersScopedListWarningData() { | 2804 buildInstanceGroupManagersScopedListWarningData() { |
| 2805 var o = new api.InstanceGroupManagersScopedListWarningData(); | 2805 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 2806 buildCounterInstanceGroupManagersScopedListWarningData++; | 2806 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2807 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2807 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2808 o.key = "foo"; | 2808 o.key = "foo"; |
| 2809 o.value = "foo"; | 2809 o.value = "foo"; |
| 2810 } | 2810 } |
| 2811 buildCounterInstanceGroupManagersScopedListWarningData--; | 2811 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2812 return o; | 2812 return o; |
| 2813 } | 2813 } |
| 2814 | 2814 |
| 2815 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 2815 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 2816 buildCounterInstanceGroupManagersScopedListWarningData++; | 2816 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 2817 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 2817 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 2818 unittest.expect(o.key, unittest.equals('foo')); | 2818 unittest.expect(o.key, unittest.equals('foo')); |
| 2819 unittest.expect(o.value, unittest.equals('foo')); | 2819 unittest.expect(o.value, unittest.equals('foo')); |
| 2820 } | 2820 } |
| 2821 buildCounterInstanceGroupManagersScopedListWarningData--; | 2821 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 2822 } | 2822 } |
| 2823 | 2823 |
| 2824 buildUnnamed743() { | 2824 buildUnnamed2328() { |
| 2825 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 2825 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 2826 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2826 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2827 o.add(buildInstanceGroupManagersScopedListWarningData()); | 2827 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 2828 return o; | 2828 return o; |
| 2829 } | 2829 } |
| 2830 | 2830 |
| 2831 checkUnnamed743(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 2831 checkUnnamed2328(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 2832 unittest.expect(o, unittest.hasLength(2)); | 2832 unittest.expect(o, unittest.hasLength(2)); |
| 2833 checkInstanceGroupManagersScopedListWarningData(o[0]); | 2833 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 2834 checkInstanceGroupManagersScopedListWarningData(o[1]); | 2834 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 2835 } | 2835 } |
| 2836 | 2836 |
| 2837 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 2837 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 2838 buildInstanceGroupManagersScopedListWarning() { | 2838 buildInstanceGroupManagersScopedListWarning() { |
| 2839 var o = new api.InstanceGroupManagersScopedListWarning(); | 2839 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 2840 buildCounterInstanceGroupManagersScopedListWarning++; | 2840 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2841 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2841 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2842 o.code = "foo"; | 2842 o.code = "foo"; |
| 2843 o.data = buildUnnamed743(); | 2843 o.data = buildUnnamed2328(); |
| 2844 o.message = "foo"; | 2844 o.message = "foo"; |
| 2845 } | 2845 } |
| 2846 buildCounterInstanceGroupManagersScopedListWarning--; | 2846 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2847 return o; | 2847 return o; |
| 2848 } | 2848 } |
| 2849 | 2849 |
| 2850 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 2850 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 2851 buildCounterInstanceGroupManagersScopedListWarning++; | 2851 buildCounterInstanceGroupManagersScopedListWarning++; |
| 2852 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 2852 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 2853 unittest.expect(o.code, unittest.equals('foo')); | 2853 unittest.expect(o.code, unittest.equals('foo')); |
| 2854 checkUnnamed743(o.data); | 2854 checkUnnamed2328(o.data); |
| 2855 unittest.expect(o.message, unittest.equals('foo')); | 2855 unittest.expect(o.message, unittest.equals('foo')); |
| 2856 } | 2856 } |
| 2857 buildCounterInstanceGroupManagersScopedListWarning--; | 2857 buildCounterInstanceGroupManagersScopedListWarning--; |
| 2858 } | 2858 } |
| 2859 | 2859 |
| 2860 core.int buildCounterInstanceGroupManagersScopedList = 0; | 2860 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 2861 buildInstanceGroupManagersScopedList() { | 2861 buildInstanceGroupManagersScopedList() { |
| 2862 var o = new api.InstanceGroupManagersScopedList(); | 2862 var o = new api.InstanceGroupManagersScopedList(); |
| 2863 buildCounterInstanceGroupManagersScopedList++; | 2863 buildCounterInstanceGroupManagersScopedList++; |
| 2864 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2864 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2865 o.instanceGroupManagers = buildUnnamed742(); | 2865 o.instanceGroupManagers = buildUnnamed2327(); |
| 2866 o.warning = buildInstanceGroupManagersScopedListWarning(); | 2866 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 2867 } | 2867 } |
| 2868 buildCounterInstanceGroupManagersScopedList--; | 2868 buildCounterInstanceGroupManagersScopedList--; |
| 2869 return o; | 2869 return o; |
| 2870 } | 2870 } |
| 2871 | 2871 |
| 2872 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 2872 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 2873 buildCounterInstanceGroupManagersScopedList++; | 2873 buildCounterInstanceGroupManagersScopedList++; |
| 2874 if (buildCounterInstanceGroupManagersScopedList < 3) { | 2874 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 2875 checkUnnamed742(o.instanceGroupManagers); | 2875 checkUnnamed2327(o.instanceGroupManagers); |
| 2876 checkInstanceGroupManagersScopedListWarning(o.warning); | 2876 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 2877 } | 2877 } |
| 2878 buildCounterInstanceGroupManagersScopedList--; | 2878 buildCounterInstanceGroupManagersScopedList--; |
| 2879 } | 2879 } |
| 2880 | 2880 |
| 2881 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 2881 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 2882 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 2882 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 2883 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 2883 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 2884 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2884 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2885 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2885 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2886 o.instanceTemplate = "foo"; | 2886 o.instanceTemplate = "foo"; |
| 2887 } | 2887 } |
| 2888 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2888 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2889 return o; | 2889 return o; |
| 2890 } | 2890 } |
| 2891 | 2891 |
| 2892 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 2892 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 2893 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 2893 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 2894 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 2894 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 2895 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2895 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2896 } | 2896 } |
| 2897 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 2897 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 2898 } | 2898 } |
| 2899 | 2899 |
| 2900 buildUnnamed744() { | 2900 buildUnnamed2329() { |
| 2901 var o = new core.List<core.String>(); | 2901 var o = new core.List<core.String>(); |
| 2902 o.add("foo"); | 2902 o.add("foo"); |
| 2903 o.add("foo"); | 2903 o.add("foo"); |
| 2904 return o; | 2904 return o; |
| 2905 } | 2905 } |
| 2906 | 2906 |
| 2907 checkUnnamed744(core.List<core.String> o) { | 2907 checkUnnamed2329(core.List<core.String> o) { |
| 2908 unittest.expect(o, unittest.hasLength(2)); | 2908 unittest.expect(o, unittest.hasLength(2)); |
| 2909 unittest.expect(o[0], unittest.equals('foo')); | 2909 unittest.expect(o[0], unittest.equals('foo')); |
| 2910 unittest.expect(o[1], unittest.equals('foo')); | 2910 unittest.expect(o[1], unittest.equals('foo')); |
| 2911 } | 2911 } |
| 2912 | 2912 |
| 2913 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 2913 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 2914 buildInstanceGroupManagersSetTargetPoolsRequest() { | 2914 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 2915 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 2915 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 2916 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2916 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2917 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2917 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2918 o.fingerprint = "foo"; | 2918 o.fingerprint = "foo"; |
| 2919 o.targetPools = buildUnnamed744(); | 2919 o.targetPools = buildUnnamed2329(); |
| 2920 } | 2920 } |
| 2921 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2921 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2922 return o; | 2922 return o; |
| 2923 } | 2923 } |
| 2924 | 2924 |
| 2925 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 2925 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 2926 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 2926 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 2927 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 2927 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 2928 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2928 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2929 checkUnnamed744(o.targetPools); | 2929 checkUnnamed2329(o.targetPools); |
| 2930 } | 2930 } |
| 2931 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 2931 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 buildUnnamed745() { | 2934 buildUnnamed2330() { |
| 2935 var o = new core.List<api.InstanceReference>(); | 2935 var o = new core.List<api.InstanceReference>(); |
| 2936 o.add(buildInstanceReference()); | 2936 o.add(buildInstanceReference()); |
| 2937 o.add(buildInstanceReference()); | 2937 o.add(buildInstanceReference()); |
| 2938 return o; | 2938 return o; |
| 2939 } | 2939 } |
| 2940 | 2940 |
| 2941 checkUnnamed745(core.List<api.InstanceReference> o) { | 2941 checkUnnamed2330(core.List<api.InstanceReference> o) { |
| 2942 unittest.expect(o, unittest.hasLength(2)); | 2942 unittest.expect(o, unittest.hasLength(2)); |
| 2943 checkInstanceReference(o[0]); | 2943 checkInstanceReference(o[0]); |
| 2944 checkInstanceReference(o[1]); | 2944 checkInstanceReference(o[1]); |
| 2945 } | 2945 } |
| 2946 | 2946 |
| 2947 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 2947 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 2948 buildInstanceGroupsAddInstancesRequest() { | 2948 buildInstanceGroupsAddInstancesRequest() { |
| 2949 var o = new api.InstanceGroupsAddInstancesRequest(); | 2949 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 2950 buildCounterInstanceGroupsAddInstancesRequest++; | 2950 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2951 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2951 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2952 o.instances = buildUnnamed745(); | 2952 o.instances = buildUnnamed2330(); |
| 2953 } | 2953 } |
| 2954 buildCounterInstanceGroupsAddInstancesRequest--; | 2954 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2955 return o; | 2955 return o; |
| 2956 } | 2956 } |
| 2957 | 2957 |
| 2958 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 2958 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 2959 buildCounterInstanceGroupsAddInstancesRequest++; | 2959 buildCounterInstanceGroupsAddInstancesRequest++; |
| 2960 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 2960 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 2961 checkUnnamed745(o.instances); | 2961 checkUnnamed2330(o.instances); |
| 2962 } | 2962 } |
| 2963 buildCounterInstanceGroupsAddInstancesRequest--; | 2963 buildCounterInstanceGroupsAddInstancesRequest--; |
| 2964 } | 2964 } |
| 2965 | 2965 |
| 2966 buildUnnamed746() { | 2966 buildUnnamed2331() { |
| 2967 var o = new core.List<api.InstanceWithNamedPorts>(); | 2967 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 2968 o.add(buildInstanceWithNamedPorts()); | 2968 o.add(buildInstanceWithNamedPorts()); |
| 2969 o.add(buildInstanceWithNamedPorts()); | 2969 o.add(buildInstanceWithNamedPorts()); |
| 2970 return o; | 2970 return o; |
| 2971 } | 2971 } |
| 2972 | 2972 |
| 2973 checkUnnamed746(core.List<api.InstanceWithNamedPorts> o) { | 2973 checkUnnamed2331(core.List<api.InstanceWithNamedPorts> o) { |
| 2974 unittest.expect(o, unittest.hasLength(2)); | 2974 unittest.expect(o, unittest.hasLength(2)); |
| 2975 checkInstanceWithNamedPorts(o[0]); | 2975 checkInstanceWithNamedPorts(o[0]); |
| 2976 checkInstanceWithNamedPorts(o[1]); | 2976 checkInstanceWithNamedPorts(o[1]); |
| 2977 } | 2977 } |
| 2978 | 2978 |
| 2979 core.int buildCounterInstanceGroupsListInstances = 0; | 2979 core.int buildCounterInstanceGroupsListInstances = 0; |
| 2980 buildInstanceGroupsListInstances() { | 2980 buildInstanceGroupsListInstances() { |
| 2981 var o = new api.InstanceGroupsListInstances(); | 2981 var o = new api.InstanceGroupsListInstances(); |
| 2982 buildCounterInstanceGroupsListInstances++; | 2982 buildCounterInstanceGroupsListInstances++; |
| 2983 if (buildCounterInstanceGroupsListInstances < 3) { | 2983 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2984 o.id = "foo"; | 2984 o.id = "foo"; |
| 2985 o.items = buildUnnamed746(); | 2985 o.items = buildUnnamed2331(); |
| 2986 o.kind = "foo"; | 2986 o.kind = "foo"; |
| 2987 o.nextPageToken = "foo"; | 2987 o.nextPageToken = "foo"; |
| 2988 o.selfLink = "foo"; | 2988 o.selfLink = "foo"; |
| 2989 } | 2989 } |
| 2990 buildCounterInstanceGroupsListInstances--; | 2990 buildCounterInstanceGroupsListInstances--; |
| 2991 return o; | 2991 return o; |
| 2992 } | 2992 } |
| 2993 | 2993 |
| 2994 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 2994 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 2995 buildCounterInstanceGroupsListInstances++; | 2995 buildCounterInstanceGroupsListInstances++; |
| 2996 if (buildCounterInstanceGroupsListInstances < 3) { | 2996 if (buildCounterInstanceGroupsListInstances < 3) { |
| 2997 unittest.expect(o.id, unittest.equals('foo')); | 2997 unittest.expect(o.id, unittest.equals('foo')); |
| 2998 checkUnnamed746(o.items); | 2998 checkUnnamed2331(o.items); |
| 2999 unittest.expect(o.kind, unittest.equals('foo')); | 2999 unittest.expect(o.kind, unittest.equals('foo')); |
| 3000 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3000 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3001 unittest.expect(o.selfLink, unittest.equals('foo')); | 3001 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3002 } | 3002 } |
| 3003 buildCounterInstanceGroupsListInstances--; | 3003 buildCounterInstanceGroupsListInstances--; |
| 3004 } | 3004 } |
| 3005 | 3005 |
| 3006 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 3006 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 3007 buildInstanceGroupsListInstancesRequest() { | 3007 buildInstanceGroupsListInstancesRequest() { |
| 3008 var o = new api.InstanceGroupsListInstancesRequest(); | 3008 var o = new api.InstanceGroupsListInstancesRequest(); |
| 3009 buildCounterInstanceGroupsListInstancesRequest++; | 3009 buildCounterInstanceGroupsListInstancesRequest++; |
| 3010 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3010 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3011 o.instanceState = "foo"; | 3011 o.instanceState = "foo"; |
| 3012 } | 3012 } |
| 3013 buildCounterInstanceGroupsListInstancesRequest--; | 3013 buildCounterInstanceGroupsListInstancesRequest--; |
| 3014 return o; | 3014 return o; |
| 3015 } | 3015 } |
| 3016 | 3016 |
| 3017 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 3017 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 3018 buildCounterInstanceGroupsListInstancesRequest++; | 3018 buildCounterInstanceGroupsListInstancesRequest++; |
| 3019 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3019 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3020 unittest.expect(o.instanceState, unittest.equals('foo')); | 3020 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 3021 } | 3021 } |
| 3022 buildCounterInstanceGroupsListInstancesRequest--; | 3022 buildCounterInstanceGroupsListInstancesRequest--; |
| 3023 } | 3023 } |
| 3024 | 3024 |
| 3025 buildUnnamed747() { | 3025 buildUnnamed2332() { |
| 3026 var o = new core.List<api.InstanceReference>(); | 3026 var o = new core.List<api.InstanceReference>(); |
| 3027 o.add(buildInstanceReference()); | 3027 o.add(buildInstanceReference()); |
| 3028 o.add(buildInstanceReference()); | 3028 o.add(buildInstanceReference()); |
| 3029 return o; | 3029 return o; |
| 3030 } | 3030 } |
| 3031 | 3031 |
| 3032 checkUnnamed747(core.List<api.InstanceReference> o) { | 3032 checkUnnamed2332(core.List<api.InstanceReference> o) { |
| 3033 unittest.expect(o, unittest.hasLength(2)); | 3033 unittest.expect(o, unittest.hasLength(2)); |
| 3034 checkInstanceReference(o[0]); | 3034 checkInstanceReference(o[0]); |
| 3035 checkInstanceReference(o[1]); | 3035 checkInstanceReference(o[1]); |
| 3036 } | 3036 } |
| 3037 | 3037 |
| 3038 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 3038 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 3039 buildInstanceGroupsRemoveInstancesRequest() { | 3039 buildInstanceGroupsRemoveInstancesRequest() { |
| 3040 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 3040 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 3041 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3041 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3042 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3042 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3043 o.instances = buildUnnamed747(); | 3043 o.instances = buildUnnamed2332(); |
| 3044 } | 3044 } |
| 3045 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3045 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3046 return o; | 3046 return o; |
| 3047 } | 3047 } |
| 3048 | 3048 |
| 3049 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 3049 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 3050 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3050 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3051 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3051 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3052 checkUnnamed747(o.instances); | 3052 checkUnnamed2332(o.instances); |
| 3053 } | 3053 } |
| 3054 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3054 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3055 } | 3055 } |
| 3056 | 3056 |
| 3057 buildUnnamed748() { | 3057 buildUnnamed2333() { |
| 3058 var o = new core.List<api.InstanceGroup>(); | 3058 var o = new core.List<api.InstanceGroup>(); |
| 3059 o.add(buildInstanceGroup()); | 3059 o.add(buildInstanceGroup()); |
| 3060 o.add(buildInstanceGroup()); | 3060 o.add(buildInstanceGroup()); |
| 3061 return o; | 3061 return o; |
| 3062 } | 3062 } |
| 3063 | 3063 |
| 3064 checkUnnamed748(core.List<api.InstanceGroup> o) { | 3064 checkUnnamed2333(core.List<api.InstanceGroup> o) { |
| 3065 unittest.expect(o, unittest.hasLength(2)); | 3065 unittest.expect(o, unittest.hasLength(2)); |
| 3066 checkInstanceGroup(o[0]); | 3066 checkInstanceGroup(o[0]); |
| 3067 checkInstanceGroup(o[1]); | 3067 checkInstanceGroup(o[1]); |
| 3068 } | 3068 } |
| 3069 | 3069 |
| 3070 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 3070 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 3071 buildInstanceGroupsScopedListWarningData() { | 3071 buildInstanceGroupsScopedListWarningData() { |
| 3072 var o = new api.InstanceGroupsScopedListWarningData(); | 3072 var o = new api.InstanceGroupsScopedListWarningData(); |
| 3073 buildCounterInstanceGroupsScopedListWarningData++; | 3073 buildCounterInstanceGroupsScopedListWarningData++; |
| 3074 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3074 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3075 o.key = "foo"; | 3075 o.key = "foo"; |
| 3076 o.value = "foo"; | 3076 o.value = "foo"; |
| 3077 } | 3077 } |
| 3078 buildCounterInstanceGroupsScopedListWarningData--; | 3078 buildCounterInstanceGroupsScopedListWarningData--; |
| 3079 return o; | 3079 return o; |
| 3080 } | 3080 } |
| 3081 | 3081 |
| 3082 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 3082 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 3083 buildCounterInstanceGroupsScopedListWarningData++; | 3083 buildCounterInstanceGroupsScopedListWarningData++; |
| 3084 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3084 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3085 unittest.expect(o.key, unittest.equals('foo')); | 3085 unittest.expect(o.key, unittest.equals('foo')); |
| 3086 unittest.expect(o.value, unittest.equals('foo')); | 3086 unittest.expect(o.value, unittest.equals('foo')); |
| 3087 } | 3087 } |
| 3088 buildCounterInstanceGroupsScopedListWarningData--; | 3088 buildCounterInstanceGroupsScopedListWarningData--; |
| 3089 } | 3089 } |
| 3090 | 3090 |
| 3091 buildUnnamed749() { | 3091 buildUnnamed2334() { |
| 3092 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 3092 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 3093 o.add(buildInstanceGroupsScopedListWarningData()); | 3093 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3094 o.add(buildInstanceGroupsScopedListWarningData()); | 3094 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3095 return o; | 3095 return o; |
| 3096 } | 3096 } |
| 3097 | 3097 |
| 3098 checkUnnamed749(core.List<api.InstanceGroupsScopedListWarningData> o) { | 3098 checkUnnamed2334(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 3099 unittest.expect(o, unittest.hasLength(2)); | 3099 unittest.expect(o, unittest.hasLength(2)); |
| 3100 checkInstanceGroupsScopedListWarningData(o[0]); | 3100 checkInstanceGroupsScopedListWarningData(o[0]); |
| 3101 checkInstanceGroupsScopedListWarningData(o[1]); | 3101 checkInstanceGroupsScopedListWarningData(o[1]); |
| 3102 } | 3102 } |
| 3103 | 3103 |
| 3104 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 3104 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 3105 buildInstanceGroupsScopedListWarning() { | 3105 buildInstanceGroupsScopedListWarning() { |
| 3106 var o = new api.InstanceGroupsScopedListWarning(); | 3106 var o = new api.InstanceGroupsScopedListWarning(); |
| 3107 buildCounterInstanceGroupsScopedListWarning++; | 3107 buildCounterInstanceGroupsScopedListWarning++; |
| 3108 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3108 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3109 o.code = "foo"; | 3109 o.code = "foo"; |
| 3110 o.data = buildUnnamed749(); | 3110 o.data = buildUnnamed2334(); |
| 3111 o.message = "foo"; | 3111 o.message = "foo"; |
| 3112 } | 3112 } |
| 3113 buildCounterInstanceGroupsScopedListWarning--; | 3113 buildCounterInstanceGroupsScopedListWarning--; |
| 3114 return o; | 3114 return o; |
| 3115 } | 3115 } |
| 3116 | 3116 |
| 3117 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 3117 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 3118 buildCounterInstanceGroupsScopedListWarning++; | 3118 buildCounterInstanceGroupsScopedListWarning++; |
| 3119 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3119 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3120 unittest.expect(o.code, unittest.equals('foo')); | 3120 unittest.expect(o.code, unittest.equals('foo')); |
| 3121 checkUnnamed749(o.data); | 3121 checkUnnamed2334(o.data); |
| 3122 unittest.expect(o.message, unittest.equals('foo')); | 3122 unittest.expect(o.message, unittest.equals('foo')); |
| 3123 } | 3123 } |
| 3124 buildCounterInstanceGroupsScopedListWarning--; | 3124 buildCounterInstanceGroupsScopedListWarning--; |
| 3125 } | 3125 } |
| 3126 | 3126 |
| 3127 core.int buildCounterInstanceGroupsScopedList = 0; | 3127 core.int buildCounterInstanceGroupsScopedList = 0; |
| 3128 buildInstanceGroupsScopedList() { | 3128 buildInstanceGroupsScopedList() { |
| 3129 var o = new api.InstanceGroupsScopedList(); | 3129 var o = new api.InstanceGroupsScopedList(); |
| 3130 buildCounterInstanceGroupsScopedList++; | 3130 buildCounterInstanceGroupsScopedList++; |
| 3131 if (buildCounterInstanceGroupsScopedList < 3) { | 3131 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3132 o.instanceGroups = buildUnnamed748(); | 3132 o.instanceGroups = buildUnnamed2333(); |
| 3133 o.warning = buildInstanceGroupsScopedListWarning(); | 3133 o.warning = buildInstanceGroupsScopedListWarning(); |
| 3134 } | 3134 } |
| 3135 buildCounterInstanceGroupsScopedList--; | 3135 buildCounterInstanceGroupsScopedList--; |
| 3136 return o; | 3136 return o; |
| 3137 } | 3137 } |
| 3138 | 3138 |
| 3139 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 3139 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 3140 buildCounterInstanceGroupsScopedList++; | 3140 buildCounterInstanceGroupsScopedList++; |
| 3141 if (buildCounterInstanceGroupsScopedList < 3) { | 3141 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3142 checkUnnamed748(o.instanceGroups); | 3142 checkUnnamed2333(o.instanceGroups); |
| 3143 checkInstanceGroupsScopedListWarning(o.warning); | 3143 checkInstanceGroupsScopedListWarning(o.warning); |
| 3144 } | 3144 } |
| 3145 buildCounterInstanceGroupsScopedList--; | 3145 buildCounterInstanceGroupsScopedList--; |
| 3146 } | 3146 } |
| 3147 | 3147 |
| 3148 buildUnnamed750() { | 3148 buildUnnamed2335() { |
| 3149 var o = new core.List<api.NamedPort>(); | 3149 var o = new core.List<api.NamedPort>(); |
| 3150 o.add(buildNamedPort()); | 3150 o.add(buildNamedPort()); |
| 3151 o.add(buildNamedPort()); | 3151 o.add(buildNamedPort()); |
| 3152 return o; | 3152 return o; |
| 3153 } | 3153 } |
| 3154 | 3154 |
| 3155 checkUnnamed750(core.List<api.NamedPort> o) { | 3155 checkUnnamed2335(core.List<api.NamedPort> o) { |
| 3156 unittest.expect(o, unittest.hasLength(2)); | 3156 unittest.expect(o, unittest.hasLength(2)); |
| 3157 checkNamedPort(o[0]); | 3157 checkNamedPort(o[0]); |
| 3158 checkNamedPort(o[1]); | 3158 checkNamedPort(o[1]); |
| 3159 } | 3159 } |
| 3160 | 3160 |
| 3161 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 3161 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 3162 buildInstanceGroupsSetNamedPortsRequest() { | 3162 buildInstanceGroupsSetNamedPortsRequest() { |
| 3163 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 3163 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 3164 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3164 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3165 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3165 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3166 o.fingerprint = "foo"; | 3166 o.fingerprint = "foo"; |
| 3167 o.namedPorts = buildUnnamed750(); | 3167 o.namedPorts = buildUnnamed2335(); |
| 3168 } | 3168 } |
| 3169 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3169 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3170 return o; | 3170 return o; |
| 3171 } | 3171 } |
| 3172 | 3172 |
| 3173 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 3173 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 3174 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3174 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3175 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3175 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3176 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3176 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3177 checkUnnamed750(o.namedPorts); | 3177 checkUnnamed2335(o.namedPorts); |
| 3178 } | 3178 } |
| 3179 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3179 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3180 } | 3180 } |
| 3181 | 3181 |
| 3182 buildUnnamed751() { | 3182 buildUnnamed2336() { |
| 3183 var o = new core.List<api.Instance>(); | 3183 var o = new core.List<api.Instance>(); |
| 3184 o.add(buildInstance()); | 3184 o.add(buildInstance()); |
| 3185 o.add(buildInstance()); | 3185 o.add(buildInstance()); |
| 3186 return o; | 3186 return o; |
| 3187 } | 3187 } |
| 3188 | 3188 |
| 3189 checkUnnamed751(core.List<api.Instance> o) { | 3189 checkUnnamed2336(core.List<api.Instance> o) { |
| 3190 unittest.expect(o, unittest.hasLength(2)); | 3190 unittest.expect(o, unittest.hasLength(2)); |
| 3191 checkInstance(o[0]); | 3191 checkInstance(o[0]); |
| 3192 checkInstance(o[1]); | 3192 checkInstance(o[1]); |
| 3193 } | 3193 } |
| 3194 | 3194 |
| 3195 core.int buildCounterInstanceList = 0; | 3195 core.int buildCounterInstanceList = 0; |
| 3196 buildInstanceList() { | 3196 buildInstanceList() { |
| 3197 var o = new api.InstanceList(); | 3197 var o = new api.InstanceList(); |
| 3198 buildCounterInstanceList++; | 3198 buildCounterInstanceList++; |
| 3199 if (buildCounterInstanceList < 3) { | 3199 if (buildCounterInstanceList < 3) { |
| 3200 o.id = "foo"; | 3200 o.id = "foo"; |
| 3201 o.items = buildUnnamed751(); | 3201 o.items = buildUnnamed2336(); |
| 3202 o.kind = "foo"; | 3202 o.kind = "foo"; |
| 3203 o.nextPageToken = "foo"; | 3203 o.nextPageToken = "foo"; |
| 3204 o.selfLink = "foo"; | 3204 o.selfLink = "foo"; |
| 3205 } | 3205 } |
| 3206 buildCounterInstanceList--; | 3206 buildCounterInstanceList--; |
| 3207 return o; | 3207 return o; |
| 3208 } | 3208 } |
| 3209 | 3209 |
| 3210 checkInstanceList(api.InstanceList o) { | 3210 checkInstanceList(api.InstanceList o) { |
| 3211 buildCounterInstanceList++; | 3211 buildCounterInstanceList++; |
| 3212 if (buildCounterInstanceList < 3) { | 3212 if (buildCounterInstanceList < 3) { |
| 3213 unittest.expect(o.id, unittest.equals('foo')); | 3213 unittest.expect(o.id, unittest.equals('foo')); |
| 3214 checkUnnamed751(o.items); | 3214 checkUnnamed2336(o.items); |
| 3215 unittest.expect(o.kind, unittest.equals('foo')); | 3215 unittest.expect(o.kind, unittest.equals('foo')); |
| 3216 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3216 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3217 unittest.expect(o.selfLink, unittest.equals('foo')); | 3217 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3218 } | 3218 } |
| 3219 buildCounterInstanceList--; | 3219 buildCounterInstanceList--; |
| 3220 } | 3220 } |
| 3221 | 3221 |
| 3222 core.int buildCounterInstanceMoveRequest = 0; | 3222 core.int buildCounterInstanceMoveRequest = 0; |
| 3223 buildInstanceMoveRequest() { | 3223 buildInstanceMoveRequest() { |
| 3224 var o = new api.InstanceMoveRequest(); | 3224 var o = new api.InstanceMoveRequest(); |
| 3225 buildCounterInstanceMoveRequest++; | 3225 buildCounterInstanceMoveRequest++; |
| 3226 if (buildCounterInstanceMoveRequest < 3) { | 3226 if (buildCounterInstanceMoveRequest < 3) { |
| 3227 o.destinationZone = "foo"; | 3227 o.destinationZone = "foo"; |
| 3228 o.targetInstance = "foo"; | 3228 o.targetInstance = "foo"; |
| 3229 } | 3229 } |
| 3230 buildCounterInstanceMoveRequest--; | 3230 buildCounterInstanceMoveRequest--; |
| 3231 return o; | 3231 return o; |
| 3232 } | 3232 } |
| 3233 | 3233 |
| 3234 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 3234 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 3235 buildCounterInstanceMoveRequest++; | 3235 buildCounterInstanceMoveRequest++; |
| 3236 if (buildCounterInstanceMoveRequest < 3) { | 3236 if (buildCounterInstanceMoveRequest < 3) { |
| 3237 unittest.expect(o.destinationZone, unittest.equals('foo')); | 3237 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 3238 unittest.expect(o.targetInstance, unittest.equals('foo')); | 3238 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 3239 } | 3239 } |
| 3240 buildCounterInstanceMoveRequest--; | 3240 buildCounterInstanceMoveRequest--; |
| 3241 } | 3241 } |
| 3242 | 3242 |
| 3243 buildUnnamed752() { | 3243 buildUnnamed2337() { |
| 3244 var o = new core.List<api.AttachedDisk>(); | 3244 var o = new core.List<api.AttachedDisk>(); |
| 3245 o.add(buildAttachedDisk()); | 3245 o.add(buildAttachedDisk()); |
| 3246 o.add(buildAttachedDisk()); | 3246 o.add(buildAttachedDisk()); |
| 3247 return o; | 3247 return o; |
| 3248 } | 3248 } |
| 3249 | 3249 |
| 3250 checkUnnamed752(core.List<api.AttachedDisk> o) { | 3250 checkUnnamed2337(core.List<api.AttachedDisk> o) { |
| 3251 unittest.expect(o, unittest.hasLength(2)); | 3251 unittest.expect(o, unittest.hasLength(2)); |
| 3252 checkAttachedDisk(o[0]); | 3252 checkAttachedDisk(o[0]); |
| 3253 checkAttachedDisk(o[1]); | 3253 checkAttachedDisk(o[1]); |
| 3254 } | 3254 } |
| 3255 | 3255 |
| 3256 buildUnnamed753() { | 3256 buildUnnamed2338() { |
| 3257 var o = new core.List<api.NetworkInterface>(); | 3257 var o = new core.List<api.NetworkInterface>(); |
| 3258 o.add(buildNetworkInterface()); | 3258 o.add(buildNetworkInterface()); |
| 3259 o.add(buildNetworkInterface()); | 3259 o.add(buildNetworkInterface()); |
| 3260 return o; | 3260 return o; |
| 3261 } | 3261 } |
| 3262 | 3262 |
| 3263 checkUnnamed753(core.List<api.NetworkInterface> o) { | 3263 checkUnnamed2338(core.List<api.NetworkInterface> o) { |
| 3264 unittest.expect(o, unittest.hasLength(2)); | 3264 unittest.expect(o, unittest.hasLength(2)); |
| 3265 checkNetworkInterface(o[0]); | 3265 checkNetworkInterface(o[0]); |
| 3266 checkNetworkInterface(o[1]); | 3266 checkNetworkInterface(o[1]); |
| 3267 } | 3267 } |
| 3268 | 3268 |
| 3269 buildUnnamed754() { | 3269 buildUnnamed2339() { |
| 3270 var o = new core.List<api.ServiceAccount>(); | 3270 var o = new core.List<api.ServiceAccount>(); |
| 3271 o.add(buildServiceAccount()); | 3271 o.add(buildServiceAccount()); |
| 3272 o.add(buildServiceAccount()); | 3272 o.add(buildServiceAccount()); |
| 3273 return o; | 3273 return o; |
| 3274 } | 3274 } |
| 3275 | 3275 |
| 3276 checkUnnamed754(core.List<api.ServiceAccount> o) { | 3276 checkUnnamed2339(core.List<api.ServiceAccount> o) { |
| 3277 unittest.expect(o, unittest.hasLength(2)); | 3277 unittest.expect(o, unittest.hasLength(2)); |
| 3278 checkServiceAccount(o[0]); | 3278 checkServiceAccount(o[0]); |
| 3279 checkServiceAccount(o[1]); | 3279 checkServiceAccount(o[1]); |
| 3280 } | 3280 } |
| 3281 | 3281 |
| 3282 core.int buildCounterInstanceProperties = 0; | 3282 core.int buildCounterInstanceProperties = 0; |
| 3283 buildInstanceProperties() { | 3283 buildInstanceProperties() { |
| 3284 var o = new api.InstanceProperties(); | 3284 var o = new api.InstanceProperties(); |
| 3285 buildCounterInstanceProperties++; | 3285 buildCounterInstanceProperties++; |
| 3286 if (buildCounterInstanceProperties < 3) { | 3286 if (buildCounterInstanceProperties < 3) { |
| 3287 o.canIpForward = true; | 3287 o.canIpForward = true; |
| 3288 o.description = "foo"; | 3288 o.description = "foo"; |
| 3289 o.disks = buildUnnamed752(); | 3289 o.disks = buildUnnamed2337(); |
| 3290 o.machineType = "foo"; | 3290 o.machineType = "foo"; |
| 3291 o.metadata = buildMetadata(); | 3291 o.metadata = buildMetadata(); |
| 3292 o.networkInterfaces = buildUnnamed753(); | 3292 o.networkInterfaces = buildUnnamed2338(); |
| 3293 o.scheduling = buildScheduling(); | 3293 o.scheduling = buildScheduling(); |
| 3294 o.serviceAccounts = buildUnnamed754(); | 3294 o.serviceAccounts = buildUnnamed2339(); |
| 3295 o.tags = buildTags(); | 3295 o.tags = buildTags(); |
| 3296 } | 3296 } |
| 3297 buildCounterInstanceProperties--; | 3297 buildCounterInstanceProperties--; |
| 3298 return o; | 3298 return o; |
| 3299 } | 3299 } |
| 3300 | 3300 |
| 3301 checkInstanceProperties(api.InstanceProperties o) { | 3301 checkInstanceProperties(api.InstanceProperties o) { |
| 3302 buildCounterInstanceProperties++; | 3302 buildCounterInstanceProperties++; |
| 3303 if (buildCounterInstanceProperties < 3) { | 3303 if (buildCounterInstanceProperties < 3) { |
| 3304 unittest.expect(o.canIpForward, unittest.isTrue); | 3304 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3305 unittest.expect(o.description, unittest.equals('foo')); | 3305 unittest.expect(o.description, unittest.equals('foo')); |
| 3306 checkUnnamed752(o.disks); | 3306 checkUnnamed2337(o.disks); |
| 3307 unittest.expect(o.machineType, unittest.equals('foo')); | 3307 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3308 checkMetadata(o.metadata); | 3308 checkMetadata(o.metadata); |
| 3309 checkUnnamed753(o.networkInterfaces); | 3309 checkUnnamed2338(o.networkInterfaces); |
| 3310 checkScheduling(o.scheduling); | 3310 checkScheduling(o.scheduling); |
| 3311 checkUnnamed754(o.serviceAccounts); | 3311 checkUnnamed2339(o.serviceAccounts); |
| 3312 checkTags(o.tags); | 3312 checkTags(o.tags); |
| 3313 } | 3313 } |
| 3314 buildCounterInstanceProperties--; | 3314 buildCounterInstanceProperties--; |
| 3315 } | 3315 } |
| 3316 | 3316 |
| 3317 core.int buildCounterInstanceReference = 0; | 3317 core.int buildCounterInstanceReference = 0; |
| 3318 buildInstanceReference() { | 3318 buildInstanceReference() { |
| 3319 var o = new api.InstanceReference(); | 3319 var o = new api.InstanceReference(); |
| 3320 buildCounterInstanceReference++; | 3320 buildCounterInstanceReference++; |
| 3321 if (buildCounterInstanceReference < 3) { | 3321 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3357 unittest.expect(o.description, unittest.equals('foo')); | 3357 unittest.expect(o.description, unittest.equals('foo')); |
| 3358 unittest.expect(o.id, unittest.equals('foo')); | 3358 unittest.expect(o.id, unittest.equals('foo')); |
| 3359 unittest.expect(o.kind, unittest.equals('foo')); | 3359 unittest.expect(o.kind, unittest.equals('foo')); |
| 3360 unittest.expect(o.name, unittest.equals('foo')); | 3360 unittest.expect(o.name, unittest.equals('foo')); |
| 3361 checkInstanceProperties(o.properties); | 3361 checkInstanceProperties(o.properties); |
| 3362 unittest.expect(o.selfLink, unittest.equals('foo')); | 3362 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3363 } | 3363 } |
| 3364 buildCounterInstanceTemplate--; | 3364 buildCounterInstanceTemplate--; |
| 3365 } | 3365 } |
| 3366 | 3366 |
| 3367 buildUnnamed755() { | 3367 buildUnnamed2340() { |
| 3368 var o = new core.List<api.InstanceTemplate>(); | 3368 var o = new core.List<api.InstanceTemplate>(); |
| 3369 o.add(buildInstanceTemplate()); | 3369 o.add(buildInstanceTemplate()); |
| 3370 o.add(buildInstanceTemplate()); | 3370 o.add(buildInstanceTemplate()); |
| 3371 return o; | 3371 return o; |
| 3372 } | 3372 } |
| 3373 | 3373 |
| 3374 checkUnnamed755(core.List<api.InstanceTemplate> o) { | 3374 checkUnnamed2340(core.List<api.InstanceTemplate> o) { |
| 3375 unittest.expect(o, unittest.hasLength(2)); | 3375 unittest.expect(o, unittest.hasLength(2)); |
| 3376 checkInstanceTemplate(o[0]); | 3376 checkInstanceTemplate(o[0]); |
| 3377 checkInstanceTemplate(o[1]); | 3377 checkInstanceTemplate(o[1]); |
| 3378 } | 3378 } |
| 3379 | 3379 |
| 3380 core.int buildCounterInstanceTemplateList = 0; | 3380 core.int buildCounterInstanceTemplateList = 0; |
| 3381 buildInstanceTemplateList() { | 3381 buildInstanceTemplateList() { |
| 3382 var o = new api.InstanceTemplateList(); | 3382 var o = new api.InstanceTemplateList(); |
| 3383 buildCounterInstanceTemplateList++; | 3383 buildCounterInstanceTemplateList++; |
| 3384 if (buildCounterInstanceTemplateList < 3) { | 3384 if (buildCounterInstanceTemplateList < 3) { |
| 3385 o.id = "foo"; | 3385 o.id = "foo"; |
| 3386 o.items = buildUnnamed755(); | 3386 o.items = buildUnnamed2340(); |
| 3387 o.kind = "foo"; | 3387 o.kind = "foo"; |
| 3388 o.nextPageToken = "foo"; | 3388 o.nextPageToken = "foo"; |
| 3389 o.selfLink = "foo"; | 3389 o.selfLink = "foo"; |
| 3390 } | 3390 } |
| 3391 buildCounterInstanceTemplateList--; | 3391 buildCounterInstanceTemplateList--; |
| 3392 return o; | 3392 return o; |
| 3393 } | 3393 } |
| 3394 | 3394 |
| 3395 checkInstanceTemplateList(api.InstanceTemplateList o) { | 3395 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 3396 buildCounterInstanceTemplateList++; | 3396 buildCounterInstanceTemplateList++; |
| 3397 if (buildCounterInstanceTemplateList < 3) { | 3397 if (buildCounterInstanceTemplateList < 3) { |
| 3398 unittest.expect(o.id, unittest.equals('foo')); | 3398 unittest.expect(o.id, unittest.equals('foo')); |
| 3399 checkUnnamed755(o.items); | 3399 checkUnnamed2340(o.items); |
| 3400 unittest.expect(o.kind, unittest.equals('foo')); | 3400 unittest.expect(o.kind, unittest.equals('foo')); |
| 3401 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3401 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3402 unittest.expect(o.selfLink, unittest.equals('foo')); | 3402 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3403 } | 3403 } |
| 3404 buildCounterInstanceTemplateList--; | 3404 buildCounterInstanceTemplateList--; |
| 3405 } | 3405 } |
| 3406 | 3406 |
| 3407 buildUnnamed756() { | 3407 buildUnnamed2341() { |
| 3408 var o = new core.List<api.NamedPort>(); | 3408 var o = new core.List<api.NamedPort>(); |
| 3409 o.add(buildNamedPort()); | 3409 o.add(buildNamedPort()); |
| 3410 o.add(buildNamedPort()); | 3410 o.add(buildNamedPort()); |
| 3411 return o; | 3411 return o; |
| 3412 } | 3412 } |
| 3413 | 3413 |
| 3414 checkUnnamed756(core.List<api.NamedPort> o) { | 3414 checkUnnamed2341(core.List<api.NamedPort> o) { |
| 3415 unittest.expect(o, unittest.hasLength(2)); | 3415 unittest.expect(o, unittest.hasLength(2)); |
| 3416 checkNamedPort(o[0]); | 3416 checkNamedPort(o[0]); |
| 3417 checkNamedPort(o[1]); | 3417 checkNamedPort(o[1]); |
| 3418 } | 3418 } |
| 3419 | 3419 |
| 3420 core.int buildCounterInstanceWithNamedPorts = 0; | 3420 core.int buildCounterInstanceWithNamedPorts = 0; |
| 3421 buildInstanceWithNamedPorts() { | 3421 buildInstanceWithNamedPorts() { |
| 3422 var o = new api.InstanceWithNamedPorts(); | 3422 var o = new api.InstanceWithNamedPorts(); |
| 3423 buildCounterInstanceWithNamedPorts++; | 3423 buildCounterInstanceWithNamedPorts++; |
| 3424 if (buildCounterInstanceWithNamedPorts < 3) { | 3424 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3425 o.instance = "foo"; | 3425 o.instance = "foo"; |
| 3426 o.namedPorts = buildUnnamed756(); | 3426 o.namedPorts = buildUnnamed2341(); |
| 3427 o.status = "foo"; | 3427 o.status = "foo"; |
| 3428 } | 3428 } |
| 3429 buildCounterInstanceWithNamedPorts--; | 3429 buildCounterInstanceWithNamedPorts--; |
| 3430 return o; | 3430 return o; |
| 3431 } | 3431 } |
| 3432 | 3432 |
| 3433 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 3433 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 3434 buildCounterInstanceWithNamedPorts++; | 3434 buildCounterInstanceWithNamedPorts++; |
| 3435 if (buildCounterInstanceWithNamedPorts < 3) { | 3435 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3436 unittest.expect(o.instance, unittest.equals('foo')); | 3436 unittest.expect(o.instance, unittest.equals('foo')); |
| 3437 checkUnnamed756(o.namedPorts); | 3437 checkUnnamed2341(o.namedPorts); |
| 3438 unittest.expect(o.status, unittest.equals('foo')); | 3438 unittest.expect(o.status, unittest.equals('foo')); |
| 3439 } | 3439 } |
| 3440 buildCounterInstanceWithNamedPorts--; | 3440 buildCounterInstanceWithNamedPorts--; |
| 3441 } | 3441 } |
| 3442 | 3442 |
| 3443 buildUnnamed757() { | 3443 buildUnnamed2342() { |
| 3444 var o = new core.List<api.Instance>(); | 3444 var o = new core.List<api.Instance>(); |
| 3445 o.add(buildInstance()); | 3445 o.add(buildInstance()); |
| 3446 o.add(buildInstance()); | 3446 o.add(buildInstance()); |
| 3447 return o; | 3447 return o; |
| 3448 } | 3448 } |
| 3449 | 3449 |
| 3450 checkUnnamed757(core.List<api.Instance> o) { | 3450 checkUnnamed2342(core.List<api.Instance> o) { |
| 3451 unittest.expect(o, unittest.hasLength(2)); | 3451 unittest.expect(o, unittest.hasLength(2)); |
| 3452 checkInstance(o[0]); | 3452 checkInstance(o[0]); |
| 3453 checkInstance(o[1]); | 3453 checkInstance(o[1]); |
| 3454 } | 3454 } |
| 3455 | 3455 |
| 3456 core.int buildCounterInstancesScopedListWarningData = 0; | 3456 core.int buildCounterInstancesScopedListWarningData = 0; |
| 3457 buildInstancesScopedListWarningData() { | 3457 buildInstancesScopedListWarningData() { |
| 3458 var o = new api.InstancesScopedListWarningData(); | 3458 var o = new api.InstancesScopedListWarningData(); |
| 3459 buildCounterInstancesScopedListWarningData++; | 3459 buildCounterInstancesScopedListWarningData++; |
| 3460 if (buildCounterInstancesScopedListWarningData < 3) { | 3460 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3461 o.key = "foo"; | 3461 o.key = "foo"; |
| 3462 o.value = "foo"; | 3462 o.value = "foo"; |
| 3463 } | 3463 } |
| 3464 buildCounterInstancesScopedListWarningData--; | 3464 buildCounterInstancesScopedListWarningData--; |
| 3465 return o; | 3465 return o; |
| 3466 } | 3466 } |
| 3467 | 3467 |
| 3468 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 3468 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 3469 buildCounterInstancesScopedListWarningData++; | 3469 buildCounterInstancesScopedListWarningData++; |
| 3470 if (buildCounterInstancesScopedListWarningData < 3) { | 3470 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3471 unittest.expect(o.key, unittest.equals('foo')); | 3471 unittest.expect(o.key, unittest.equals('foo')); |
| 3472 unittest.expect(o.value, unittest.equals('foo')); | 3472 unittest.expect(o.value, unittest.equals('foo')); |
| 3473 } | 3473 } |
| 3474 buildCounterInstancesScopedListWarningData--; | 3474 buildCounterInstancesScopedListWarningData--; |
| 3475 } | 3475 } |
| 3476 | 3476 |
| 3477 buildUnnamed758() { | 3477 buildUnnamed2343() { |
| 3478 var o = new core.List<api.InstancesScopedListWarningData>(); | 3478 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 3479 o.add(buildInstancesScopedListWarningData()); | 3479 o.add(buildInstancesScopedListWarningData()); |
| 3480 o.add(buildInstancesScopedListWarningData()); | 3480 o.add(buildInstancesScopedListWarningData()); |
| 3481 return o; | 3481 return o; |
| 3482 } | 3482 } |
| 3483 | 3483 |
| 3484 checkUnnamed758(core.List<api.InstancesScopedListWarningData> o) { | 3484 checkUnnamed2343(core.List<api.InstancesScopedListWarningData> o) { |
| 3485 unittest.expect(o, unittest.hasLength(2)); | 3485 unittest.expect(o, unittest.hasLength(2)); |
| 3486 checkInstancesScopedListWarningData(o[0]); | 3486 checkInstancesScopedListWarningData(o[0]); |
| 3487 checkInstancesScopedListWarningData(o[1]); | 3487 checkInstancesScopedListWarningData(o[1]); |
| 3488 } | 3488 } |
| 3489 | 3489 |
| 3490 core.int buildCounterInstancesScopedListWarning = 0; | 3490 core.int buildCounterInstancesScopedListWarning = 0; |
| 3491 buildInstancesScopedListWarning() { | 3491 buildInstancesScopedListWarning() { |
| 3492 var o = new api.InstancesScopedListWarning(); | 3492 var o = new api.InstancesScopedListWarning(); |
| 3493 buildCounterInstancesScopedListWarning++; | 3493 buildCounterInstancesScopedListWarning++; |
| 3494 if (buildCounterInstancesScopedListWarning < 3) { | 3494 if (buildCounterInstancesScopedListWarning < 3) { |
| 3495 o.code = "foo"; | 3495 o.code = "foo"; |
| 3496 o.data = buildUnnamed758(); | 3496 o.data = buildUnnamed2343(); |
| 3497 o.message = "foo"; | 3497 o.message = "foo"; |
| 3498 } | 3498 } |
| 3499 buildCounterInstancesScopedListWarning--; | 3499 buildCounterInstancesScopedListWarning--; |
| 3500 return o; | 3500 return o; |
| 3501 } | 3501 } |
| 3502 | 3502 |
| 3503 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 3503 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 3504 buildCounterInstancesScopedListWarning++; | 3504 buildCounterInstancesScopedListWarning++; |
| 3505 if (buildCounterInstancesScopedListWarning < 3) { | 3505 if (buildCounterInstancesScopedListWarning < 3) { |
| 3506 unittest.expect(o.code, unittest.equals('foo')); | 3506 unittest.expect(o.code, unittest.equals('foo')); |
| 3507 checkUnnamed758(o.data); | 3507 checkUnnamed2343(o.data); |
| 3508 unittest.expect(o.message, unittest.equals('foo')); | 3508 unittest.expect(o.message, unittest.equals('foo')); |
| 3509 } | 3509 } |
| 3510 buildCounterInstancesScopedListWarning--; | 3510 buildCounterInstancesScopedListWarning--; |
| 3511 } | 3511 } |
| 3512 | 3512 |
| 3513 core.int buildCounterInstancesScopedList = 0; | 3513 core.int buildCounterInstancesScopedList = 0; |
| 3514 buildInstancesScopedList() { | 3514 buildInstancesScopedList() { |
| 3515 var o = new api.InstancesScopedList(); | 3515 var o = new api.InstancesScopedList(); |
| 3516 buildCounterInstancesScopedList++; | 3516 buildCounterInstancesScopedList++; |
| 3517 if (buildCounterInstancesScopedList < 3) { | 3517 if (buildCounterInstancesScopedList < 3) { |
| 3518 o.instances = buildUnnamed757(); | 3518 o.instances = buildUnnamed2342(); |
| 3519 o.warning = buildInstancesScopedListWarning(); | 3519 o.warning = buildInstancesScopedListWarning(); |
| 3520 } | 3520 } |
| 3521 buildCounterInstancesScopedList--; | 3521 buildCounterInstancesScopedList--; |
| 3522 return o; | 3522 return o; |
| 3523 } | 3523 } |
| 3524 | 3524 |
| 3525 checkInstancesScopedList(api.InstancesScopedList o) { | 3525 checkInstancesScopedList(api.InstancesScopedList o) { |
| 3526 buildCounterInstancesScopedList++; | 3526 buildCounterInstancesScopedList++; |
| 3527 if (buildCounterInstancesScopedList < 3) { | 3527 if (buildCounterInstancesScopedList < 3) { |
| 3528 checkUnnamed757(o.instances); | 3528 checkUnnamed2342(o.instances); |
| 3529 checkInstancesScopedListWarning(o.warning); | 3529 checkInstancesScopedListWarning(o.warning); |
| 3530 } | 3530 } |
| 3531 buildCounterInstancesScopedList--; | 3531 buildCounterInstancesScopedList--; |
| 3532 } | 3532 } |
| 3533 | 3533 |
| 3534 core.int buildCounterInstancesSetMachineTypeRequest = 0; | 3534 core.int buildCounterInstancesSetMachineTypeRequest = 0; |
| 3535 buildInstancesSetMachineTypeRequest() { | 3535 buildInstancesSetMachineTypeRequest() { |
| 3536 var o = new api.InstancesSetMachineTypeRequest(); | 3536 var o = new api.InstancesSetMachineTypeRequest(); |
| 3537 buildCounterInstancesSetMachineTypeRequest++; | 3537 buildCounterInstancesSetMachineTypeRequest++; |
| 3538 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3538 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3539 o.machineType = "foo"; | 3539 o.machineType = "foo"; |
| 3540 } | 3540 } |
| 3541 buildCounterInstancesSetMachineTypeRequest--; | 3541 buildCounterInstancesSetMachineTypeRequest--; |
| 3542 return o; | 3542 return o; |
| 3543 } | 3543 } |
| 3544 | 3544 |
| 3545 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { | 3545 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { |
| 3546 buildCounterInstancesSetMachineTypeRequest++; | 3546 buildCounterInstancesSetMachineTypeRequest++; |
| 3547 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3547 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3548 unittest.expect(o.machineType, unittest.equals('foo')); | 3548 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3549 } | 3549 } |
| 3550 buildCounterInstancesSetMachineTypeRequest--; | 3550 buildCounterInstancesSetMachineTypeRequest--; |
| 3551 } | 3551 } |
| 3552 | 3552 |
| 3553 buildUnnamed759() { | 3553 buildUnnamed2344() { |
| 3554 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); | 3554 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); |
| 3555 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3555 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3556 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3556 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3557 return o; | 3557 return o; |
| 3558 } | 3558 } |
| 3559 | 3559 |
| 3560 checkUnnamed759(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { | 3560 checkUnnamed2344(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { |
| 3561 unittest.expect(o, unittest.hasLength(2)); | 3561 unittest.expect(o, unittest.hasLength(2)); |
| 3562 checkCustomerEncryptionKeyProtectedDisk(o[0]); | 3562 checkCustomerEncryptionKeyProtectedDisk(o[0]); |
| 3563 checkCustomerEncryptionKeyProtectedDisk(o[1]); | 3563 checkCustomerEncryptionKeyProtectedDisk(o[1]); |
| 3564 } | 3564 } |
| 3565 | 3565 |
| 3566 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; | 3566 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; |
| 3567 buildInstancesStartWithEncryptionKeyRequest() { | 3567 buildInstancesStartWithEncryptionKeyRequest() { |
| 3568 var o = new api.InstancesStartWithEncryptionKeyRequest(); | 3568 var o = new api.InstancesStartWithEncryptionKeyRequest(); |
| 3569 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3569 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3570 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3570 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3571 o.disks = buildUnnamed759(); | 3571 o.disks = buildUnnamed2344(); |
| 3572 } | 3572 } |
| 3573 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3573 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3574 return o; | 3574 return o; |
| 3575 } | 3575 } |
| 3576 | 3576 |
| 3577 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { | 3577 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { |
| 3578 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3578 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3579 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3579 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3580 checkUnnamed759(o.disks); | 3580 checkUnnamed2344(o.disks); |
| 3581 } | 3581 } |
| 3582 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3582 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3583 } | 3583 } |
| 3584 | 3584 |
| 3585 core.int buildCounterLicense = 0; | 3585 core.int buildCounterLicense = 0; |
| 3586 buildLicense() { | 3586 buildLicense() { |
| 3587 var o = new api.License(); | 3587 var o = new api.License(); |
| 3588 buildCounterLicense++; | 3588 buildCounterLicense++; |
| 3589 if (buildCounterLicense < 3) { | 3589 if (buildCounterLicense < 3) { |
| 3590 o.chargesUseFee = true; | 3590 o.chargesUseFee = true; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 3619 } | 3619 } |
| 3620 | 3620 |
| 3621 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 3621 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 3622 buildCounterMachineTypeScratchDisks++; | 3622 buildCounterMachineTypeScratchDisks++; |
| 3623 if (buildCounterMachineTypeScratchDisks < 3) { | 3623 if (buildCounterMachineTypeScratchDisks < 3) { |
| 3624 unittest.expect(o.diskGb, unittest.equals(42)); | 3624 unittest.expect(o.diskGb, unittest.equals(42)); |
| 3625 } | 3625 } |
| 3626 buildCounterMachineTypeScratchDisks--; | 3626 buildCounterMachineTypeScratchDisks--; |
| 3627 } | 3627 } |
| 3628 | 3628 |
| 3629 buildUnnamed760() { | 3629 buildUnnamed2345() { |
| 3630 var o = new core.List<api.MachineTypeScratchDisks>(); | 3630 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 3631 o.add(buildMachineTypeScratchDisks()); | 3631 o.add(buildMachineTypeScratchDisks()); |
| 3632 o.add(buildMachineTypeScratchDisks()); | 3632 o.add(buildMachineTypeScratchDisks()); |
| 3633 return o; | 3633 return o; |
| 3634 } | 3634 } |
| 3635 | 3635 |
| 3636 checkUnnamed760(core.List<api.MachineTypeScratchDisks> o) { | 3636 checkUnnamed2345(core.List<api.MachineTypeScratchDisks> o) { |
| 3637 unittest.expect(o, unittest.hasLength(2)); | 3637 unittest.expect(o, unittest.hasLength(2)); |
| 3638 checkMachineTypeScratchDisks(o[0]); | 3638 checkMachineTypeScratchDisks(o[0]); |
| 3639 checkMachineTypeScratchDisks(o[1]); | 3639 checkMachineTypeScratchDisks(o[1]); |
| 3640 } | 3640 } |
| 3641 | 3641 |
| 3642 core.int buildCounterMachineType = 0; | 3642 core.int buildCounterMachineType = 0; |
| 3643 buildMachineType() { | 3643 buildMachineType() { |
| 3644 var o = new api.MachineType(); | 3644 var o = new api.MachineType(); |
| 3645 buildCounterMachineType++; | 3645 buildCounterMachineType++; |
| 3646 if (buildCounterMachineType < 3) { | 3646 if (buildCounterMachineType < 3) { |
| 3647 o.creationTimestamp = "foo"; | 3647 o.creationTimestamp = "foo"; |
| 3648 o.deprecated = buildDeprecationStatus(); | 3648 o.deprecated = buildDeprecationStatus(); |
| 3649 o.description = "foo"; | 3649 o.description = "foo"; |
| 3650 o.guestCpus = 42; | 3650 o.guestCpus = 42; |
| 3651 o.id = "foo"; | 3651 o.id = "foo"; |
| 3652 o.imageSpaceGb = 42; | 3652 o.imageSpaceGb = 42; |
| 3653 o.isSharedCpu = true; | 3653 o.isSharedCpu = true; |
| 3654 o.kind = "foo"; | 3654 o.kind = "foo"; |
| 3655 o.maximumPersistentDisks = 42; | 3655 o.maximumPersistentDisks = 42; |
| 3656 o.maximumPersistentDisksSizeGb = "foo"; | 3656 o.maximumPersistentDisksSizeGb = "foo"; |
| 3657 o.memoryMb = 42; | 3657 o.memoryMb = 42; |
| 3658 o.name = "foo"; | 3658 o.name = "foo"; |
| 3659 o.scratchDisks = buildUnnamed760(); | 3659 o.scratchDisks = buildUnnamed2345(); |
| 3660 o.selfLink = "foo"; | 3660 o.selfLink = "foo"; |
| 3661 o.zone = "foo"; | 3661 o.zone = "foo"; |
| 3662 } | 3662 } |
| 3663 buildCounterMachineType--; | 3663 buildCounterMachineType--; |
| 3664 return o; | 3664 return o; |
| 3665 } | 3665 } |
| 3666 | 3666 |
| 3667 checkMachineType(api.MachineType o) { | 3667 checkMachineType(api.MachineType o) { |
| 3668 buildCounterMachineType++; | 3668 buildCounterMachineType++; |
| 3669 if (buildCounterMachineType < 3) { | 3669 if (buildCounterMachineType < 3) { |
| 3670 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3670 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3671 checkDeprecationStatus(o.deprecated); | 3671 checkDeprecationStatus(o.deprecated); |
| 3672 unittest.expect(o.description, unittest.equals('foo')); | 3672 unittest.expect(o.description, unittest.equals('foo')); |
| 3673 unittest.expect(o.guestCpus, unittest.equals(42)); | 3673 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 3674 unittest.expect(o.id, unittest.equals('foo')); | 3674 unittest.expect(o.id, unittest.equals('foo')); |
| 3675 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 3675 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 3676 unittest.expect(o.isSharedCpu, unittest.isTrue); | 3676 unittest.expect(o.isSharedCpu, unittest.isTrue); |
| 3677 unittest.expect(o.kind, unittest.equals('foo')); | 3677 unittest.expect(o.kind, unittest.equals('foo')); |
| 3678 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 3678 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 3679 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 3679 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 3680 unittest.expect(o.memoryMb, unittest.equals(42)); | 3680 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 3681 unittest.expect(o.name, unittest.equals('foo')); | 3681 unittest.expect(o.name, unittest.equals('foo')); |
| 3682 checkUnnamed760(o.scratchDisks); | 3682 checkUnnamed2345(o.scratchDisks); |
| 3683 unittest.expect(o.selfLink, unittest.equals('foo')); | 3683 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3684 unittest.expect(o.zone, unittest.equals('foo')); | 3684 unittest.expect(o.zone, unittest.equals('foo')); |
| 3685 } | 3685 } |
| 3686 buildCounterMachineType--; | 3686 buildCounterMachineType--; |
| 3687 } | 3687 } |
| 3688 | 3688 |
| 3689 buildUnnamed761() { | 3689 buildUnnamed2346() { |
| 3690 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 3690 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 3691 o["x"] = buildMachineTypesScopedList(); | 3691 o["x"] = buildMachineTypesScopedList(); |
| 3692 o["y"] = buildMachineTypesScopedList(); | 3692 o["y"] = buildMachineTypesScopedList(); |
| 3693 return o; | 3693 return o; |
| 3694 } | 3694 } |
| 3695 | 3695 |
| 3696 checkUnnamed761(core.Map<core.String, api.MachineTypesScopedList> o) { | 3696 checkUnnamed2346(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 3697 unittest.expect(o, unittest.hasLength(2)); | 3697 unittest.expect(o, unittest.hasLength(2)); |
| 3698 checkMachineTypesScopedList(o["x"]); | 3698 checkMachineTypesScopedList(o["x"]); |
| 3699 checkMachineTypesScopedList(o["y"]); | 3699 checkMachineTypesScopedList(o["y"]); |
| 3700 } | 3700 } |
| 3701 | 3701 |
| 3702 core.int buildCounterMachineTypeAggregatedList = 0; | 3702 core.int buildCounterMachineTypeAggregatedList = 0; |
| 3703 buildMachineTypeAggregatedList() { | 3703 buildMachineTypeAggregatedList() { |
| 3704 var o = new api.MachineTypeAggregatedList(); | 3704 var o = new api.MachineTypeAggregatedList(); |
| 3705 buildCounterMachineTypeAggregatedList++; | 3705 buildCounterMachineTypeAggregatedList++; |
| 3706 if (buildCounterMachineTypeAggregatedList < 3) { | 3706 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3707 o.id = "foo"; | 3707 o.id = "foo"; |
| 3708 o.items = buildUnnamed761(); | 3708 o.items = buildUnnamed2346(); |
| 3709 o.kind = "foo"; | 3709 o.kind = "foo"; |
| 3710 o.nextPageToken = "foo"; | 3710 o.nextPageToken = "foo"; |
| 3711 o.selfLink = "foo"; | 3711 o.selfLink = "foo"; |
| 3712 } | 3712 } |
| 3713 buildCounterMachineTypeAggregatedList--; | 3713 buildCounterMachineTypeAggregatedList--; |
| 3714 return o; | 3714 return o; |
| 3715 } | 3715 } |
| 3716 | 3716 |
| 3717 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 3717 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 3718 buildCounterMachineTypeAggregatedList++; | 3718 buildCounterMachineTypeAggregatedList++; |
| 3719 if (buildCounterMachineTypeAggregatedList < 3) { | 3719 if (buildCounterMachineTypeAggregatedList < 3) { |
| 3720 unittest.expect(o.id, unittest.equals('foo')); | 3720 unittest.expect(o.id, unittest.equals('foo')); |
| 3721 checkUnnamed761(o.items); | 3721 checkUnnamed2346(o.items); |
| 3722 unittest.expect(o.kind, unittest.equals('foo')); | 3722 unittest.expect(o.kind, unittest.equals('foo')); |
| 3723 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3723 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3724 unittest.expect(o.selfLink, unittest.equals('foo')); | 3724 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3725 } | 3725 } |
| 3726 buildCounterMachineTypeAggregatedList--; | 3726 buildCounterMachineTypeAggregatedList--; |
| 3727 } | 3727 } |
| 3728 | 3728 |
| 3729 buildUnnamed762() { | 3729 buildUnnamed2347() { |
| 3730 var o = new core.List<api.MachineType>(); | 3730 var o = new core.List<api.MachineType>(); |
| 3731 o.add(buildMachineType()); | 3731 o.add(buildMachineType()); |
| 3732 o.add(buildMachineType()); | 3732 o.add(buildMachineType()); |
| 3733 return o; | 3733 return o; |
| 3734 } | 3734 } |
| 3735 | 3735 |
| 3736 checkUnnamed762(core.List<api.MachineType> o) { | 3736 checkUnnamed2347(core.List<api.MachineType> o) { |
| 3737 unittest.expect(o, unittest.hasLength(2)); | 3737 unittest.expect(o, unittest.hasLength(2)); |
| 3738 checkMachineType(o[0]); | 3738 checkMachineType(o[0]); |
| 3739 checkMachineType(o[1]); | 3739 checkMachineType(o[1]); |
| 3740 } | 3740 } |
| 3741 | 3741 |
| 3742 core.int buildCounterMachineTypeList = 0; | 3742 core.int buildCounterMachineTypeList = 0; |
| 3743 buildMachineTypeList() { | 3743 buildMachineTypeList() { |
| 3744 var o = new api.MachineTypeList(); | 3744 var o = new api.MachineTypeList(); |
| 3745 buildCounterMachineTypeList++; | 3745 buildCounterMachineTypeList++; |
| 3746 if (buildCounterMachineTypeList < 3) { | 3746 if (buildCounterMachineTypeList < 3) { |
| 3747 o.id = "foo"; | 3747 o.id = "foo"; |
| 3748 o.items = buildUnnamed762(); | 3748 o.items = buildUnnamed2347(); |
| 3749 o.kind = "foo"; | 3749 o.kind = "foo"; |
| 3750 o.nextPageToken = "foo"; | 3750 o.nextPageToken = "foo"; |
| 3751 o.selfLink = "foo"; | 3751 o.selfLink = "foo"; |
| 3752 } | 3752 } |
| 3753 buildCounterMachineTypeList--; | 3753 buildCounterMachineTypeList--; |
| 3754 return o; | 3754 return o; |
| 3755 } | 3755 } |
| 3756 | 3756 |
| 3757 checkMachineTypeList(api.MachineTypeList o) { | 3757 checkMachineTypeList(api.MachineTypeList o) { |
| 3758 buildCounterMachineTypeList++; | 3758 buildCounterMachineTypeList++; |
| 3759 if (buildCounterMachineTypeList < 3) { | 3759 if (buildCounterMachineTypeList < 3) { |
| 3760 unittest.expect(o.id, unittest.equals('foo')); | 3760 unittest.expect(o.id, unittest.equals('foo')); |
| 3761 checkUnnamed762(o.items); | 3761 checkUnnamed2347(o.items); |
| 3762 unittest.expect(o.kind, unittest.equals('foo')); | 3762 unittest.expect(o.kind, unittest.equals('foo')); |
| 3763 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3763 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3764 unittest.expect(o.selfLink, unittest.equals('foo')); | 3764 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3765 } | 3765 } |
| 3766 buildCounterMachineTypeList--; | 3766 buildCounterMachineTypeList--; |
| 3767 } | 3767 } |
| 3768 | 3768 |
| 3769 buildUnnamed763() { | 3769 buildUnnamed2348() { |
| 3770 var o = new core.List<api.MachineType>(); | 3770 var o = new core.List<api.MachineType>(); |
| 3771 o.add(buildMachineType()); | 3771 o.add(buildMachineType()); |
| 3772 o.add(buildMachineType()); | 3772 o.add(buildMachineType()); |
| 3773 return o; | 3773 return o; |
| 3774 } | 3774 } |
| 3775 | 3775 |
| 3776 checkUnnamed763(core.List<api.MachineType> o) { | 3776 checkUnnamed2348(core.List<api.MachineType> o) { |
| 3777 unittest.expect(o, unittest.hasLength(2)); | 3777 unittest.expect(o, unittest.hasLength(2)); |
| 3778 checkMachineType(o[0]); | 3778 checkMachineType(o[0]); |
| 3779 checkMachineType(o[1]); | 3779 checkMachineType(o[1]); |
| 3780 } | 3780 } |
| 3781 | 3781 |
| 3782 core.int buildCounterMachineTypesScopedListWarningData = 0; | 3782 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 3783 buildMachineTypesScopedListWarningData() { | 3783 buildMachineTypesScopedListWarningData() { |
| 3784 var o = new api.MachineTypesScopedListWarningData(); | 3784 var o = new api.MachineTypesScopedListWarningData(); |
| 3785 buildCounterMachineTypesScopedListWarningData++; | 3785 buildCounterMachineTypesScopedListWarningData++; |
| 3786 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3786 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3787 o.key = "foo"; | 3787 o.key = "foo"; |
| 3788 o.value = "foo"; | 3788 o.value = "foo"; |
| 3789 } | 3789 } |
| 3790 buildCounterMachineTypesScopedListWarningData--; | 3790 buildCounterMachineTypesScopedListWarningData--; |
| 3791 return o; | 3791 return o; |
| 3792 } | 3792 } |
| 3793 | 3793 |
| 3794 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 3794 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 3795 buildCounterMachineTypesScopedListWarningData++; | 3795 buildCounterMachineTypesScopedListWarningData++; |
| 3796 if (buildCounterMachineTypesScopedListWarningData < 3) { | 3796 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 3797 unittest.expect(o.key, unittest.equals('foo')); | 3797 unittest.expect(o.key, unittest.equals('foo')); |
| 3798 unittest.expect(o.value, unittest.equals('foo')); | 3798 unittest.expect(o.value, unittest.equals('foo')); |
| 3799 } | 3799 } |
| 3800 buildCounterMachineTypesScopedListWarningData--; | 3800 buildCounterMachineTypesScopedListWarningData--; |
| 3801 } | 3801 } |
| 3802 | 3802 |
| 3803 buildUnnamed764() { | 3803 buildUnnamed2349() { |
| 3804 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 3804 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 3805 o.add(buildMachineTypesScopedListWarningData()); | 3805 o.add(buildMachineTypesScopedListWarningData()); |
| 3806 o.add(buildMachineTypesScopedListWarningData()); | 3806 o.add(buildMachineTypesScopedListWarningData()); |
| 3807 return o; | 3807 return o; |
| 3808 } | 3808 } |
| 3809 | 3809 |
| 3810 checkUnnamed764(core.List<api.MachineTypesScopedListWarningData> o) { | 3810 checkUnnamed2349(core.List<api.MachineTypesScopedListWarningData> o) { |
| 3811 unittest.expect(o, unittest.hasLength(2)); | 3811 unittest.expect(o, unittest.hasLength(2)); |
| 3812 checkMachineTypesScopedListWarningData(o[0]); | 3812 checkMachineTypesScopedListWarningData(o[0]); |
| 3813 checkMachineTypesScopedListWarningData(o[1]); | 3813 checkMachineTypesScopedListWarningData(o[1]); |
| 3814 } | 3814 } |
| 3815 | 3815 |
| 3816 core.int buildCounterMachineTypesScopedListWarning = 0; | 3816 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 3817 buildMachineTypesScopedListWarning() { | 3817 buildMachineTypesScopedListWarning() { |
| 3818 var o = new api.MachineTypesScopedListWarning(); | 3818 var o = new api.MachineTypesScopedListWarning(); |
| 3819 buildCounterMachineTypesScopedListWarning++; | 3819 buildCounterMachineTypesScopedListWarning++; |
| 3820 if (buildCounterMachineTypesScopedListWarning < 3) { | 3820 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3821 o.code = "foo"; | 3821 o.code = "foo"; |
| 3822 o.data = buildUnnamed764(); | 3822 o.data = buildUnnamed2349(); |
| 3823 o.message = "foo"; | 3823 o.message = "foo"; |
| 3824 } | 3824 } |
| 3825 buildCounterMachineTypesScopedListWarning--; | 3825 buildCounterMachineTypesScopedListWarning--; |
| 3826 return o; | 3826 return o; |
| 3827 } | 3827 } |
| 3828 | 3828 |
| 3829 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 3829 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 3830 buildCounterMachineTypesScopedListWarning++; | 3830 buildCounterMachineTypesScopedListWarning++; |
| 3831 if (buildCounterMachineTypesScopedListWarning < 3) { | 3831 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 3832 unittest.expect(o.code, unittest.equals('foo')); | 3832 unittest.expect(o.code, unittest.equals('foo')); |
| 3833 checkUnnamed764(o.data); | 3833 checkUnnamed2349(o.data); |
| 3834 unittest.expect(o.message, unittest.equals('foo')); | 3834 unittest.expect(o.message, unittest.equals('foo')); |
| 3835 } | 3835 } |
| 3836 buildCounterMachineTypesScopedListWarning--; | 3836 buildCounterMachineTypesScopedListWarning--; |
| 3837 } | 3837 } |
| 3838 | 3838 |
| 3839 core.int buildCounterMachineTypesScopedList = 0; | 3839 core.int buildCounterMachineTypesScopedList = 0; |
| 3840 buildMachineTypesScopedList() { | 3840 buildMachineTypesScopedList() { |
| 3841 var o = new api.MachineTypesScopedList(); | 3841 var o = new api.MachineTypesScopedList(); |
| 3842 buildCounterMachineTypesScopedList++; | 3842 buildCounterMachineTypesScopedList++; |
| 3843 if (buildCounterMachineTypesScopedList < 3) { | 3843 if (buildCounterMachineTypesScopedList < 3) { |
| 3844 o.machineTypes = buildUnnamed763(); | 3844 o.machineTypes = buildUnnamed2348(); |
| 3845 o.warning = buildMachineTypesScopedListWarning(); | 3845 o.warning = buildMachineTypesScopedListWarning(); |
| 3846 } | 3846 } |
| 3847 buildCounterMachineTypesScopedList--; | 3847 buildCounterMachineTypesScopedList--; |
| 3848 return o; | 3848 return o; |
| 3849 } | 3849 } |
| 3850 | 3850 |
| 3851 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 3851 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 3852 buildCounterMachineTypesScopedList++; | 3852 buildCounterMachineTypesScopedList++; |
| 3853 if (buildCounterMachineTypesScopedList < 3) { | 3853 if (buildCounterMachineTypesScopedList < 3) { |
| 3854 checkUnnamed763(o.machineTypes); | 3854 checkUnnamed2348(o.machineTypes); |
| 3855 checkMachineTypesScopedListWarning(o.warning); | 3855 checkMachineTypesScopedListWarning(o.warning); |
| 3856 } | 3856 } |
| 3857 buildCounterMachineTypesScopedList--; | 3857 buildCounterMachineTypesScopedList--; |
| 3858 } | 3858 } |
| 3859 | 3859 |
| 3860 core.int buildCounterManagedInstance = 0; | 3860 core.int buildCounterManagedInstance = 0; |
| 3861 buildManagedInstance() { | 3861 buildManagedInstance() { |
| 3862 var o = new api.ManagedInstance(); | 3862 var o = new api.ManagedInstance(); |
| 3863 buildCounterManagedInstance++; | 3863 buildCounterManagedInstance++; |
| 3864 if (buildCounterManagedInstance < 3) { | 3864 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3900 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 3900 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 3901 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 3901 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 3902 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 3902 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 3903 unittest.expect(o.code, unittest.equals('foo')); | 3903 unittest.expect(o.code, unittest.equals('foo')); |
| 3904 unittest.expect(o.location, unittest.equals('foo')); | 3904 unittest.expect(o.location, unittest.equals('foo')); |
| 3905 unittest.expect(o.message, unittest.equals('foo')); | 3905 unittest.expect(o.message, unittest.equals('foo')); |
| 3906 } | 3906 } |
| 3907 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 3907 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 3908 } | 3908 } |
| 3909 | 3909 |
| 3910 buildUnnamed765() { | 3910 buildUnnamed2350() { |
| 3911 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 3911 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 3912 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3912 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3913 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 3913 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 3914 return o; | 3914 return o; |
| 3915 } | 3915 } |
| 3916 | 3916 |
| 3917 checkUnnamed765(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 3917 checkUnnamed2350(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 3918 unittest.expect(o, unittest.hasLength(2)); | 3918 unittest.expect(o, unittest.hasLength(2)); |
| 3919 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 3919 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 3920 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 3920 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 3921 } | 3921 } |
| 3922 | 3922 |
| 3923 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 3923 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 3924 buildManagedInstanceLastAttemptErrors() { | 3924 buildManagedInstanceLastAttemptErrors() { |
| 3925 var o = new api.ManagedInstanceLastAttemptErrors(); | 3925 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 3926 buildCounterManagedInstanceLastAttemptErrors++; | 3926 buildCounterManagedInstanceLastAttemptErrors++; |
| 3927 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3927 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3928 o.errors = buildUnnamed765(); | 3928 o.errors = buildUnnamed2350(); |
| 3929 } | 3929 } |
| 3930 buildCounterManagedInstanceLastAttemptErrors--; | 3930 buildCounterManagedInstanceLastAttemptErrors--; |
| 3931 return o; | 3931 return o; |
| 3932 } | 3932 } |
| 3933 | 3933 |
| 3934 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 3934 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 3935 buildCounterManagedInstanceLastAttemptErrors++; | 3935 buildCounterManagedInstanceLastAttemptErrors++; |
| 3936 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 3936 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 3937 checkUnnamed765(o.errors); | 3937 checkUnnamed2350(o.errors); |
| 3938 } | 3938 } |
| 3939 buildCounterManagedInstanceLastAttemptErrors--; | 3939 buildCounterManagedInstanceLastAttemptErrors--; |
| 3940 } | 3940 } |
| 3941 | 3941 |
| 3942 core.int buildCounterManagedInstanceLastAttempt = 0; | 3942 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 3943 buildManagedInstanceLastAttempt() { | 3943 buildManagedInstanceLastAttempt() { |
| 3944 var o = new api.ManagedInstanceLastAttempt(); | 3944 var o = new api.ManagedInstanceLastAttempt(); |
| 3945 buildCounterManagedInstanceLastAttempt++; | 3945 buildCounterManagedInstanceLastAttempt++; |
| 3946 if (buildCounterManagedInstanceLastAttempt < 3) { | 3946 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 3947 o.errors = buildManagedInstanceLastAttemptErrors(); | 3947 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3972 | 3972 |
| 3973 checkMetadataItems(api.MetadataItems o) { | 3973 checkMetadataItems(api.MetadataItems o) { |
| 3974 buildCounterMetadataItems++; | 3974 buildCounterMetadataItems++; |
| 3975 if (buildCounterMetadataItems < 3) { | 3975 if (buildCounterMetadataItems < 3) { |
| 3976 unittest.expect(o.key, unittest.equals('foo')); | 3976 unittest.expect(o.key, unittest.equals('foo')); |
| 3977 unittest.expect(o.value, unittest.equals('foo')); | 3977 unittest.expect(o.value, unittest.equals('foo')); |
| 3978 } | 3978 } |
| 3979 buildCounterMetadataItems--; | 3979 buildCounterMetadataItems--; |
| 3980 } | 3980 } |
| 3981 | 3981 |
| 3982 buildUnnamed766() { | 3982 buildUnnamed2351() { |
| 3983 var o = new core.List<api.MetadataItems>(); | 3983 var o = new core.List<api.MetadataItems>(); |
| 3984 o.add(buildMetadataItems()); | 3984 o.add(buildMetadataItems()); |
| 3985 o.add(buildMetadataItems()); | 3985 o.add(buildMetadataItems()); |
| 3986 return o; | 3986 return o; |
| 3987 } | 3987 } |
| 3988 | 3988 |
| 3989 checkUnnamed766(core.List<api.MetadataItems> o) { | 3989 checkUnnamed2351(core.List<api.MetadataItems> o) { |
| 3990 unittest.expect(o, unittest.hasLength(2)); | 3990 unittest.expect(o, unittest.hasLength(2)); |
| 3991 checkMetadataItems(o[0]); | 3991 checkMetadataItems(o[0]); |
| 3992 checkMetadataItems(o[1]); | 3992 checkMetadataItems(o[1]); |
| 3993 } | 3993 } |
| 3994 | 3994 |
| 3995 core.int buildCounterMetadata = 0; | 3995 core.int buildCounterMetadata = 0; |
| 3996 buildMetadata() { | 3996 buildMetadata() { |
| 3997 var o = new api.Metadata(); | 3997 var o = new api.Metadata(); |
| 3998 buildCounterMetadata++; | 3998 buildCounterMetadata++; |
| 3999 if (buildCounterMetadata < 3) { | 3999 if (buildCounterMetadata < 3) { |
| 4000 o.fingerprint = "foo"; | 4000 o.fingerprint = "foo"; |
| 4001 o.items = buildUnnamed766(); | 4001 o.items = buildUnnamed2351(); |
| 4002 o.kind = "foo"; | 4002 o.kind = "foo"; |
| 4003 } | 4003 } |
| 4004 buildCounterMetadata--; | 4004 buildCounterMetadata--; |
| 4005 return o; | 4005 return o; |
| 4006 } | 4006 } |
| 4007 | 4007 |
| 4008 checkMetadata(api.Metadata o) { | 4008 checkMetadata(api.Metadata o) { |
| 4009 buildCounterMetadata++; | 4009 buildCounterMetadata++; |
| 4010 if (buildCounterMetadata < 3) { | 4010 if (buildCounterMetadata < 3) { |
| 4011 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4011 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4012 checkUnnamed766(o.items); | 4012 checkUnnamed2351(o.items); |
| 4013 unittest.expect(o.kind, unittest.equals('foo')); | 4013 unittest.expect(o.kind, unittest.equals('foo')); |
| 4014 } | 4014 } |
| 4015 buildCounterMetadata--; | 4015 buildCounterMetadata--; |
| 4016 } | 4016 } |
| 4017 | 4017 |
| 4018 core.int buildCounterNamedPort = 0; | 4018 core.int buildCounterNamedPort = 0; |
| 4019 buildNamedPort() { | 4019 buildNamedPort() { |
| 4020 var o = new api.NamedPort(); | 4020 var o = new api.NamedPort(); |
| 4021 buildCounterNamedPort++; | 4021 buildCounterNamedPort++; |
| 4022 if (buildCounterNamedPort < 3) { | 4022 if (buildCounterNamedPort < 3) { |
| 4023 o.name = "foo"; | 4023 o.name = "foo"; |
| 4024 o.port = 42; | 4024 o.port = 42; |
| 4025 } | 4025 } |
| 4026 buildCounterNamedPort--; | 4026 buildCounterNamedPort--; |
| 4027 return o; | 4027 return o; |
| 4028 } | 4028 } |
| 4029 | 4029 |
| 4030 checkNamedPort(api.NamedPort o) { | 4030 checkNamedPort(api.NamedPort o) { |
| 4031 buildCounterNamedPort++; | 4031 buildCounterNamedPort++; |
| 4032 if (buildCounterNamedPort < 3) { | 4032 if (buildCounterNamedPort < 3) { |
| 4033 unittest.expect(o.name, unittest.equals('foo')); | 4033 unittest.expect(o.name, unittest.equals('foo')); |
| 4034 unittest.expect(o.port, unittest.equals(42)); | 4034 unittest.expect(o.port, unittest.equals(42)); |
| 4035 } | 4035 } |
| 4036 buildCounterNamedPort--; | 4036 buildCounterNamedPort--; |
| 4037 } | 4037 } |
| 4038 | 4038 |
| 4039 buildUnnamed767() { | 4039 buildUnnamed2352() { |
| 4040 var o = new core.List<core.String>(); | 4040 var o = new core.List<core.String>(); |
| 4041 o.add("foo"); | 4041 o.add("foo"); |
| 4042 o.add("foo"); | 4042 o.add("foo"); |
| 4043 return o; | 4043 return o; |
| 4044 } | 4044 } |
| 4045 | 4045 |
| 4046 checkUnnamed767(core.List<core.String> o) { | 4046 checkUnnamed2352(core.List<core.String> o) { |
| 4047 unittest.expect(o, unittest.hasLength(2)); | 4047 unittest.expect(o, unittest.hasLength(2)); |
| 4048 unittest.expect(o[0], unittest.equals('foo')); | 4048 unittest.expect(o[0], unittest.equals('foo')); |
| 4049 unittest.expect(o[1], unittest.equals('foo')); | 4049 unittest.expect(o[1], unittest.equals('foo')); |
| 4050 } | 4050 } |
| 4051 | 4051 |
| 4052 core.int buildCounterNetwork = 0; | 4052 core.int buildCounterNetwork = 0; |
| 4053 buildNetwork() { | 4053 buildNetwork() { |
| 4054 var o = new api.Network(); | 4054 var o = new api.Network(); |
| 4055 buildCounterNetwork++; | 4055 buildCounterNetwork++; |
| 4056 if (buildCounterNetwork < 3) { | 4056 if (buildCounterNetwork < 3) { |
| 4057 o.IPv4Range = "foo"; | 4057 o.IPv4Range = "foo"; |
| 4058 o.autoCreateSubnetworks = true; | 4058 o.autoCreateSubnetworks = true; |
| 4059 o.creationTimestamp = "foo"; | 4059 o.creationTimestamp = "foo"; |
| 4060 o.description = "foo"; | 4060 o.description = "foo"; |
| 4061 o.gatewayIPv4 = "foo"; | 4061 o.gatewayIPv4 = "foo"; |
| 4062 o.id = "foo"; | 4062 o.id = "foo"; |
| 4063 o.kind = "foo"; | 4063 o.kind = "foo"; |
| 4064 o.name = "foo"; | 4064 o.name = "foo"; |
| 4065 o.selfLink = "foo"; | 4065 o.selfLink = "foo"; |
| 4066 o.subnetworks = buildUnnamed767(); | 4066 o.subnetworks = buildUnnamed2352(); |
| 4067 } | 4067 } |
| 4068 buildCounterNetwork--; | 4068 buildCounterNetwork--; |
| 4069 return o; | 4069 return o; |
| 4070 } | 4070 } |
| 4071 | 4071 |
| 4072 checkNetwork(api.Network o) { | 4072 checkNetwork(api.Network o) { |
| 4073 buildCounterNetwork++; | 4073 buildCounterNetwork++; |
| 4074 if (buildCounterNetwork < 3) { | 4074 if (buildCounterNetwork < 3) { |
| 4075 unittest.expect(o.IPv4Range, unittest.equals('foo')); | 4075 unittest.expect(o.IPv4Range, unittest.equals('foo')); |
| 4076 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); | 4076 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); |
| 4077 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4077 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4078 unittest.expect(o.description, unittest.equals('foo')); | 4078 unittest.expect(o.description, unittest.equals('foo')); |
| 4079 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 4079 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 4080 unittest.expect(o.id, unittest.equals('foo')); | 4080 unittest.expect(o.id, unittest.equals('foo')); |
| 4081 unittest.expect(o.kind, unittest.equals('foo')); | 4081 unittest.expect(o.kind, unittest.equals('foo')); |
| 4082 unittest.expect(o.name, unittest.equals('foo')); | 4082 unittest.expect(o.name, unittest.equals('foo')); |
| 4083 unittest.expect(o.selfLink, unittest.equals('foo')); | 4083 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4084 checkUnnamed767(o.subnetworks); | 4084 checkUnnamed2352(o.subnetworks); |
| 4085 } | 4085 } |
| 4086 buildCounterNetwork--; | 4086 buildCounterNetwork--; |
| 4087 } | 4087 } |
| 4088 | 4088 |
| 4089 buildUnnamed768() { | 4089 buildUnnamed2353() { |
| 4090 var o = new core.List<api.AccessConfig>(); | 4090 var o = new core.List<api.AccessConfig>(); |
| 4091 o.add(buildAccessConfig()); | 4091 o.add(buildAccessConfig()); |
| 4092 o.add(buildAccessConfig()); | 4092 o.add(buildAccessConfig()); |
| 4093 return o; | 4093 return o; |
| 4094 } | 4094 } |
| 4095 | 4095 |
| 4096 checkUnnamed768(core.List<api.AccessConfig> o) { | 4096 checkUnnamed2353(core.List<api.AccessConfig> o) { |
| 4097 unittest.expect(o, unittest.hasLength(2)); | 4097 unittest.expect(o, unittest.hasLength(2)); |
| 4098 checkAccessConfig(o[0]); | 4098 checkAccessConfig(o[0]); |
| 4099 checkAccessConfig(o[1]); | 4099 checkAccessConfig(o[1]); |
| 4100 } | 4100 } |
| 4101 | 4101 |
| 4102 core.int buildCounterNetworkInterface = 0; | 4102 core.int buildCounterNetworkInterface = 0; |
| 4103 buildNetworkInterface() { | 4103 buildNetworkInterface() { |
| 4104 var o = new api.NetworkInterface(); | 4104 var o = new api.NetworkInterface(); |
| 4105 buildCounterNetworkInterface++; | 4105 buildCounterNetworkInterface++; |
| 4106 if (buildCounterNetworkInterface < 3) { | 4106 if (buildCounterNetworkInterface < 3) { |
| 4107 o.accessConfigs = buildUnnamed768(); | 4107 o.accessConfigs = buildUnnamed2353(); |
| 4108 o.name = "foo"; | 4108 o.name = "foo"; |
| 4109 o.network = "foo"; | 4109 o.network = "foo"; |
| 4110 o.networkIP = "foo"; | 4110 o.networkIP = "foo"; |
| 4111 o.subnetwork = "foo"; | 4111 o.subnetwork = "foo"; |
| 4112 } | 4112 } |
| 4113 buildCounterNetworkInterface--; | 4113 buildCounterNetworkInterface--; |
| 4114 return o; | 4114 return o; |
| 4115 } | 4115 } |
| 4116 | 4116 |
| 4117 checkNetworkInterface(api.NetworkInterface o) { | 4117 checkNetworkInterface(api.NetworkInterface o) { |
| 4118 buildCounterNetworkInterface++; | 4118 buildCounterNetworkInterface++; |
| 4119 if (buildCounterNetworkInterface < 3) { | 4119 if (buildCounterNetworkInterface < 3) { |
| 4120 checkUnnamed768(o.accessConfigs); | 4120 checkUnnamed2353(o.accessConfigs); |
| 4121 unittest.expect(o.name, unittest.equals('foo')); | 4121 unittest.expect(o.name, unittest.equals('foo')); |
| 4122 unittest.expect(o.network, unittest.equals('foo')); | 4122 unittest.expect(o.network, unittest.equals('foo')); |
| 4123 unittest.expect(o.networkIP, unittest.equals('foo')); | 4123 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 4124 unittest.expect(o.subnetwork, unittest.equals('foo')); | 4124 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 4125 } | 4125 } |
| 4126 buildCounterNetworkInterface--; | 4126 buildCounterNetworkInterface--; |
| 4127 } | 4127 } |
| 4128 | 4128 |
| 4129 buildUnnamed769() { | 4129 buildUnnamed2354() { |
| 4130 var o = new core.List<api.Network>(); | 4130 var o = new core.List<api.Network>(); |
| 4131 o.add(buildNetwork()); | 4131 o.add(buildNetwork()); |
| 4132 o.add(buildNetwork()); | 4132 o.add(buildNetwork()); |
| 4133 return o; | 4133 return o; |
| 4134 } | 4134 } |
| 4135 | 4135 |
| 4136 checkUnnamed769(core.List<api.Network> o) { | 4136 checkUnnamed2354(core.List<api.Network> o) { |
| 4137 unittest.expect(o, unittest.hasLength(2)); | 4137 unittest.expect(o, unittest.hasLength(2)); |
| 4138 checkNetwork(o[0]); | 4138 checkNetwork(o[0]); |
| 4139 checkNetwork(o[1]); | 4139 checkNetwork(o[1]); |
| 4140 } | 4140 } |
| 4141 | 4141 |
| 4142 core.int buildCounterNetworkList = 0; | 4142 core.int buildCounterNetworkList = 0; |
| 4143 buildNetworkList() { | 4143 buildNetworkList() { |
| 4144 var o = new api.NetworkList(); | 4144 var o = new api.NetworkList(); |
| 4145 buildCounterNetworkList++; | 4145 buildCounterNetworkList++; |
| 4146 if (buildCounterNetworkList < 3) { | 4146 if (buildCounterNetworkList < 3) { |
| 4147 o.id = "foo"; | 4147 o.id = "foo"; |
| 4148 o.items = buildUnnamed769(); | 4148 o.items = buildUnnamed2354(); |
| 4149 o.kind = "foo"; | 4149 o.kind = "foo"; |
| 4150 o.nextPageToken = "foo"; | 4150 o.nextPageToken = "foo"; |
| 4151 o.selfLink = "foo"; | 4151 o.selfLink = "foo"; |
| 4152 } | 4152 } |
| 4153 buildCounterNetworkList--; | 4153 buildCounterNetworkList--; |
| 4154 return o; | 4154 return o; |
| 4155 } | 4155 } |
| 4156 | 4156 |
| 4157 checkNetworkList(api.NetworkList o) { | 4157 checkNetworkList(api.NetworkList o) { |
| 4158 buildCounterNetworkList++; | 4158 buildCounterNetworkList++; |
| 4159 if (buildCounterNetworkList < 3) { | 4159 if (buildCounterNetworkList < 3) { |
| 4160 unittest.expect(o.id, unittest.equals('foo')); | 4160 unittest.expect(o.id, unittest.equals('foo')); |
| 4161 checkUnnamed769(o.items); | 4161 checkUnnamed2354(o.items); |
| 4162 unittest.expect(o.kind, unittest.equals('foo')); | 4162 unittest.expect(o.kind, unittest.equals('foo')); |
| 4163 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4163 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4164 unittest.expect(o.selfLink, unittest.equals('foo')); | 4164 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4165 } | 4165 } |
| 4166 buildCounterNetworkList--; | 4166 buildCounterNetworkList--; |
| 4167 } | 4167 } |
| 4168 | 4168 |
| 4169 core.int buildCounterOperationErrorErrors = 0; | 4169 core.int buildCounterOperationErrorErrors = 0; |
| 4170 buildOperationErrorErrors() { | 4170 buildOperationErrorErrors() { |
| 4171 var o = new api.OperationErrorErrors(); | 4171 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4182 checkOperationErrorErrors(api.OperationErrorErrors o) { | 4182 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 4183 buildCounterOperationErrorErrors++; | 4183 buildCounterOperationErrorErrors++; |
| 4184 if (buildCounterOperationErrorErrors < 3) { | 4184 if (buildCounterOperationErrorErrors < 3) { |
| 4185 unittest.expect(o.code, unittest.equals('foo')); | 4185 unittest.expect(o.code, unittest.equals('foo')); |
| 4186 unittest.expect(o.location, unittest.equals('foo')); | 4186 unittest.expect(o.location, unittest.equals('foo')); |
| 4187 unittest.expect(o.message, unittest.equals('foo')); | 4187 unittest.expect(o.message, unittest.equals('foo')); |
| 4188 } | 4188 } |
| 4189 buildCounterOperationErrorErrors--; | 4189 buildCounterOperationErrorErrors--; |
| 4190 } | 4190 } |
| 4191 | 4191 |
| 4192 buildUnnamed770() { | 4192 buildUnnamed2355() { |
| 4193 var o = new core.List<api.OperationErrorErrors>(); | 4193 var o = new core.List<api.OperationErrorErrors>(); |
| 4194 o.add(buildOperationErrorErrors()); | 4194 o.add(buildOperationErrorErrors()); |
| 4195 o.add(buildOperationErrorErrors()); | 4195 o.add(buildOperationErrorErrors()); |
| 4196 return o; | 4196 return o; |
| 4197 } | 4197 } |
| 4198 | 4198 |
| 4199 checkUnnamed770(core.List<api.OperationErrorErrors> o) { | 4199 checkUnnamed2355(core.List<api.OperationErrorErrors> o) { |
| 4200 unittest.expect(o, unittest.hasLength(2)); | 4200 unittest.expect(o, unittest.hasLength(2)); |
| 4201 checkOperationErrorErrors(o[0]); | 4201 checkOperationErrorErrors(o[0]); |
| 4202 checkOperationErrorErrors(o[1]); | 4202 checkOperationErrorErrors(o[1]); |
| 4203 } | 4203 } |
| 4204 | 4204 |
| 4205 core.int buildCounterOperationError = 0; | 4205 core.int buildCounterOperationError = 0; |
| 4206 buildOperationError() { | 4206 buildOperationError() { |
| 4207 var o = new api.OperationError(); | 4207 var o = new api.OperationError(); |
| 4208 buildCounterOperationError++; | 4208 buildCounterOperationError++; |
| 4209 if (buildCounterOperationError < 3) { | 4209 if (buildCounterOperationError < 3) { |
| 4210 o.errors = buildUnnamed770(); | 4210 o.errors = buildUnnamed2355(); |
| 4211 } | 4211 } |
| 4212 buildCounterOperationError--; | 4212 buildCounterOperationError--; |
| 4213 return o; | 4213 return o; |
| 4214 } | 4214 } |
| 4215 | 4215 |
| 4216 checkOperationError(api.OperationError o) { | 4216 checkOperationError(api.OperationError o) { |
| 4217 buildCounterOperationError++; | 4217 buildCounterOperationError++; |
| 4218 if (buildCounterOperationError < 3) { | 4218 if (buildCounterOperationError < 3) { |
| 4219 checkUnnamed770(o.errors); | 4219 checkUnnamed2355(o.errors); |
| 4220 } | 4220 } |
| 4221 buildCounterOperationError--; | 4221 buildCounterOperationError--; |
| 4222 } | 4222 } |
| 4223 | 4223 |
| 4224 core.int buildCounterOperationWarningsData = 0; | 4224 core.int buildCounterOperationWarningsData = 0; |
| 4225 buildOperationWarningsData() { | 4225 buildOperationWarningsData() { |
| 4226 var o = new api.OperationWarningsData(); | 4226 var o = new api.OperationWarningsData(); |
| 4227 buildCounterOperationWarningsData++; | 4227 buildCounterOperationWarningsData++; |
| 4228 if (buildCounterOperationWarningsData < 3) { | 4228 if (buildCounterOperationWarningsData < 3) { |
| 4229 o.key = "foo"; | 4229 o.key = "foo"; |
| 4230 o.value = "foo"; | 4230 o.value = "foo"; |
| 4231 } | 4231 } |
| 4232 buildCounterOperationWarningsData--; | 4232 buildCounterOperationWarningsData--; |
| 4233 return o; | 4233 return o; |
| 4234 } | 4234 } |
| 4235 | 4235 |
| 4236 checkOperationWarningsData(api.OperationWarningsData o) { | 4236 checkOperationWarningsData(api.OperationWarningsData o) { |
| 4237 buildCounterOperationWarningsData++; | 4237 buildCounterOperationWarningsData++; |
| 4238 if (buildCounterOperationWarningsData < 3) { | 4238 if (buildCounterOperationWarningsData < 3) { |
| 4239 unittest.expect(o.key, unittest.equals('foo')); | 4239 unittest.expect(o.key, unittest.equals('foo')); |
| 4240 unittest.expect(o.value, unittest.equals('foo')); | 4240 unittest.expect(o.value, unittest.equals('foo')); |
| 4241 } | 4241 } |
| 4242 buildCounterOperationWarningsData--; | 4242 buildCounterOperationWarningsData--; |
| 4243 } | 4243 } |
| 4244 | 4244 |
| 4245 buildUnnamed771() { | 4245 buildUnnamed2356() { |
| 4246 var o = new core.List<api.OperationWarningsData>(); | 4246 var o = new core.List<api.OperationWarningsData>(); |
| 4247 o.add(buildOperationWarningsData()); | 4247 o.add(buildOperationWarningsData()); |
| 4248 o.add(buildOperationWarningsData()); | 4248 o.add(buildOperationWarningsData()); |
| 4249 return o; | 4249 return o; |
| 4250 } | 4250 } |
| 4251 | 4251 |
| 4252 checkUnnamed771(core.List<api.OperationWarningsData> o) { | 4252 checkUnnamed2356(core.List<api.OperationWarningsData> o) { |
| 4253 unittest.expect(o, unittest.hasLength(2)); | 4253 unittest.expect(o, unittest.hasLength(2)); |
| 4254 checkOperationWarningsData(o[0]); | 4254 checkOperationWarningsData(o[0]); |
| 4255 checkOperationWarningsData(o[1]); | 4255 checkOperationWarningsData(o[1]); |
| 4256 } | 4256 } |
| 4257 | 4257 |
| 4258 core.int buildCounterOperationWarnings = 0; | 4258 core.int buildCounterOperationWarnings = 0; |
| 4259 buildOperationWarnings() { | 4259 buildOperationWarnings() { |
| 4260 var o = new api.OperationWarnings(); | 4260 var o = new api.OperationWarnings(); |
| 4261 buildCounterOperationWarnings++; | 4261 buildCounterOperationWarnings++; |
| 4262 if (buildCounterOperationWarnings < 3) { | 4262 if (buildCounterOperationWarnings < 3) { |
| 4263 o.code = "foo"; | 4263 o.code = "foo"; |
| 4264 o.data = buildUnnamed771(); | 4264 o.data = buildUnnamed2356(); |
| 4265 o.message = "foo"; | 4265 o.message = "foo"; |
| 4266 } | 4266 } |
| 4267 buildCounterOperationWarnings--; | 4267 buildCounterOperationWarnings--; |
| 4268 return o; | 4268 return o; |
| 4269 } | 4269 } |
| 4270 | 4270 |
| 4271 checkOperationWarnings(api.OperationWarnings o) { | 4271 checkOperationWarnings(api.OperationWarnings o) { |
| 4272 buildCounterOperationWarnings++; | 4272 buildCounterOperationWarnings++; |
| 4273 if (buildCounterOperationWarnings < 3) { | 4273 if (buildCounterOperationWarnings < 3) { |
| 4274 unittest.expect(o.code, unittest.equals('foo')); | 4274 unittest.expect(o.code, unittest.equals('foo')); |
| 4275 checkUnnamed771(o.data); | 4275 checkUnnamed2356(o.data); |
| 4276 unittest.expect(o.message, unittest.equals('foo')); | 4276 unittest.expect(o.message, unittest.equals('foo')); |
| 4277 } | 4277 } |
| 4278 buildCounterOperationWarnings--; | 4278 buildCounterOperationWarnings--; |
| 4279 } | 4279 } |
| 4280 | 4280 |
| 4281 buildUnnamed772() { | 4281 buildUnnamed2357() { |
| 4282 var o = new core.List<api.OperationWarnings>(); | 4282 var o = new core.List<api.OperationWarnings>(); |
| 4283 o.add(buildOperationWarnings()); | 4283 o.add(buildOperationWarnings()); |
| 4284 o.add(buildOperationWarnings()); | 4284 o.add(buildOperationWarnings()); |
| 4285 return o; | 4285 return o; |
| 4286 } | 4286 } |
| 4287 | 4287 |
| 4288 checkUnnamed772(core.List<api.OperationWarnings> o) { | 4288 checkUnnamed2357(core.List<api.OperationWarnings> o) { |
| 4289 unittest.expect(o, unittest.hasLength(2)); | 4289 unittest.expect(o, unittest.hasLength(2)); |
| 4290 checkOperationWarnings(o[0]); | 4290 checkOperationWarnings(o[0]); |
| 4291 checkOperationWarnings(o[1]); | 4291 checkOperationWarnings(o[1]); |
| 4292 } | 4292 } |
| 4293 | 4293 |
| 4294 core.int buildCounterOperation = 0; | 4294 core.int buildCounterOperation = 0; |
| 4295 buildOperation() { | 4295 buildOperation() { |
| 4296 var o = new api.Operation(); | 4296 var o = new api.Operation(); |
| 4297 buildCounterOperation++; | 4297 buildCounterOperation++; |
| 4298 if (buildCounterOperation < 3) { | 4298 if (buildCounterOperation < 3) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4310 o.operationType = "foo"; | 4310 o.operationType = "foo"; |
| 4311 o.progress = 42; | 4311 o.progress = 42; |
| 4312 o.region = "foo"; | 4312 o.region = "foo"; |
| 4313 o.selfLink = "foo"; | 4313 o.selfLink = "foo"; |
| 4314 o.startTime = "foo"; | 4314 o.startTime = "foo"; |
| 4315 o.status = "foo"; | 4315 o.status = "foo"; |
| 4316 o.statusMessage = "foo"; | 4316 o.statusMessage = "foo"; |
| 4317 o.targetId = "foo"; | 4317 o.targetId = "foo"; |
| 4318 o.targetLink = "foo"; | 4318 o.targetLink = "foo"; |
| 4319 o.user = "foo"; | 4319 o.user = "foo"; |
| 4320 o.warnings = buildUnnamed772(); | 4320 o.warnings = buildUnnamed2357(); |
| 4321 o.zone = "foo"; | 4321 o.zone = "foo"; |
| 4322 } | 4322 } |
| 4323 buildCounterOperation--; | 4323 buildCounterOperation--; |
| 4324 return o; | 4324 return o; |
| 4325 } | 4325 } |
| 4326 | 4326 |
| 4327 checkOperation(api.Operation o) { | 4327 checkOperation(api.Operation o) { |
| 4328 buildCounterOperation++; | 4328 buildCounterOperation++; |
| 4329 if (buildCounterOperation < 3) { | 4329 if (buildCounterOperation < 3) { |
| 4330 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 4330 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4341 unittest.expect(o.operationType, unittest.equals('foo')); | 4341 unittest.expect(o.operationType, unittest.equals('foo')); |
| 4342 unittest.expect(o.progress, unittest.equals(42)); | 4342 unittest.expect(o.progress, unittest.equals(42)); |
| 4343 unittest.expect(o.region, unittest.equals('foo')); | 4343 unittest.expect(o.region, unittest.equals('foo')); |
| 4344 unittest.expect(o.selfLink, unittest.equals('foo')); | 4344 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4345 unittest.expect(o.startTime, unittest.equals('foo')); | 4345 unittest.expect(o.startTime, unittest.equals('foo')); |
| 4346 unittest.expect(o.status, unittest.equals('foo')); | 4346 unittest.expect(o.status, unittest.equals('foo')); |
| 4347 unittest.expect(o.statusMessage, unittest.equals('foo')); | 4347 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 4348 unittest.expect(o.targetId, unittest.equals('foo')); | 4348 unittest.expect(o.targetId, unittest.equals('foo')); |
| 4349 unittest.expect(o.targetLink, unittest.equals('foo')); | 4349 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 4350 unittest.expect(o.user, unittest.equals('foo')); | 4350 unittest.expect(o.user, unittest.equals('foo')); |
| 4351 checkUnnamed772(o.warnings); | 4351 checkUnnamed2357(o.warnings); |
| 4352 unittest.expect(o.zone, unittest.equals('foo')); | 4352 unittest.expect(o.zone, unittest.equals('foo')); |
| 4353 } | 4353 } |
| 4354 buildCounterOperation--; | 4354 buildCounterOperation--; |
| 4355 } | 4355 } |
| 4356 | 4356 |
| 4357 buildUnnamed773() { | 4357 buildUnnamed2358() { |
| 4358 var o = new core.Map<core.String, api.OperationsScopedList>(); | 4358 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 4359 o["x"] = buildOperationsScopedList(); | 4359 o["x"] = buildOperationsScopedList(); |
| 4360 o["y"] = buildOperationsScopedList(); | 4360 o["y"] = buildOperationsScopedList(); |
| 4361 return o; | 4361 return o; |
| 4362 } | 4362 } |
| 4363 | 4363 |
| 4364 checkUnnamed773(core.Map<core.String, api.OperationsScopedList> o) { | 4364 checkUnnamed2358(core.Map<core.String, api.OperationsScopedList> o) { |
| 4365 unittest.expect(o, unittest.hasLength(2)); | 4365 unittest.expect(o, unittest.hasLength(2)); |
| 4366 checkOperationsScopedList(o["x"]); | 4366 checkOperationsScopedList(o["x"]); |
| 4367 checkOperationsScopedList(o["y"]); | 4367 checkOperationsScopedList(o["y"]); |
| 4368 } | 4368 } |
| 4369 | 4369 |
| 4370 core.int buildCounterOperationAggregatedList = 0; | 4370 core.int buildCounterOperationAggregatedList = 0; |
| 4371 buildOperationAggregatedList() { | 4371 buildOperationAggregatedList() { |
| 4372 var o = new api.OperationAggregatedList(); | 4372 var o = new api.OperationAggregatedList(); |
| 4373 buildCounterOperationAggregatedList++; | 4373 buildCounterOperationAggregatedList++; |
| 4374 if (buildCounterOperationAggregatedList < 3) { | 4374 if (buildCounterOperationAggregatedList < 3) { |
| 4375 o.id = "foo"; | 4375 o.id = "foo"; |
| 4376 o.items = buildUnnamed773(); | 4376 o.items = buildUnnamed2358(); |
| 4377 o.kind = "foo"; | 4377 o.kind = "foo"; |
| 4378 o.nextPageToken = "foo"; | 4378 o.nextPageToken = "foo"; |
| 4379 o.selfLink = "foo"; | 4379 o.selfLink = "foo"; |
| 4380 } | 4380 } |
| 4381 buildCounterOperationAggregatedList--; | 4381 buildCounterOperationAggregatedList--; |
| 4382 return o; | 4382 return o; |
| 4383 } | 4383 } |
| 4384 | 4384 |
| 4385 checkOperationAggregatedList(api.OperationAggregatedList o) { | 4385 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 4386 buildCounterOperationAggregatedList++; | 4386 buildCounterOperationAggregatedList++; |
| 4387 if (buildCounterOperationAggregatedList < 3) { | 4387 if (buildCounterOperationAggregatedList < 3) { |
| 4388 unittest.expect(o.id, unittest.equals('foo')); | 4388 unittest.expect(o.id, unittest.equals('foo')); |
| 4389 checkUnnamed773(o.items); | 4389 checkUnnamed2358(o.items); |
| 4390 unittest.expect(o.kind, unittest.equals('foo')); | 4390 unittest.expect(o.kind, unittest.equals('foo')); |
| 4391 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4391 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4392 unittest.expect(o.selfLink, unittest.equals('foo')); | 4392 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4393 } | 4393 } |
| 4394 buildCounterOperationAggregatedList--; | 4394 buildCounterOperationAggregatedList--; |
| 4395 } | 4395 } |
| 4396 | 4396 |
| 4397 buildUnnamed774() { | 4397 buildUnnamed2359() { |
| 4398 var o = new core.List<api.Operation>(); | 4398 var o = new core.List<api.Operation>(); |
| 4399 o.add(buildOperation()); | 4399 o.add(buildOperation()); |
| 4400 o.add(buildOperation()); | 4400 o.add(buildOperation()); |
| 4401 return o; | 4401 return o; |
| 4402 } | 4402 } |
| 4403 | 4403 |
| 4404 checkUnnamed774(core.List<api.Operation> o) { | 4404 checkUnnamed2359(core.List<api.Operation> o) { |
| 4405 unittest.expect(o, unittest.hasLength(2)); | 4405 unittest.expect(o, unittest.hasLength(2)); |
| 4406 checkOperation(o[0]); | 4406 checkOperation(o[0]); |
| 4407 checkOperation(o[1]); | 4407 checkOperation(o[1]); |
| 4408 } | 4408 } |
| 4409 | 4409 |
| 4410 core.int buildCounterOperationList = 0; | 4410 core.int buildCounterOperationList = 0; |
| 4411 buildOperationList() { | 4411 buildOperationList() { |
| 4412 var o = new api.OperationList(); | 4412 var o = new api.OperationList(); |
| 4413 buildCounterOperationList++; | 4413 buildCounterOperationList++; |
| 4414 if (buildCounterOperationList < 3) { | 4414 if (buildCounterOperationList < 3) { |
| 4415 o.id = "foo"; | 4415 o.id = "foo"; |
| 4416 o.items = buildUnnamed774(); | 4416 o.items = buildUnnamed2359(); |
| 4417 o.kind = "foo"; | 4417 o.kind = "foo"; |
| 4418 o.nextPageToken = "foo"; | 4418 o.nextPageToken = "foo"; |
| 4419 o.selfLink = "foo"; | 4419 o.selfLink = "foo"; |
| 4420 } | 4420 } |
| 4421 buildCounterOperationList--; | 4421 buildCounterOperationList--; |
| 4422 return o; | 4422 return o; |
| 4423 } | 4423 } |
| 4424 | 4424 |
| 4425 checkOperationList(api.OperationList o) { | 4425 checkOperationList(api.OperationList o) { |
| 4426 buildCounterOperationList++; | 4426 buildCounterOperationList++; |
| 4427 if (buildCounterOperationList < 3) { | 4427 if (buildCounterOperationList < 3) { |
| 4428 unittest.expect(o.id, unittest.equals('foo')); | 4428 unittest.expect(o.id, unittest.equals('foo')); |
| 4429 checkUnnamed774(o.items); | 4429 checkUnnamed2359(o.items); |
| 4430 unittest.expect(o.kind, unittest.equals('foo')); | 4430 unittest.expect(o.kind, unittest.equals('foo')); |
| 4431 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4431 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4432 unittest.expect(o.selfLink, unittest.equals('foo')); | 4432 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4433 } | 4433 } |
| 4434 buildCounterOperationList--; | 4434 buildCounterOperationList--; |
| 4435 } | 4435 } |
| 4436 | 4436 |
| 4437 buildUnnamed775() { | 4437 buildUnnamed2360() { |
| 4438 var o = new core.List<api.Operation>(); | 4438 var o = new core.List<api.Operation>(); |
| 4439 o.add(buildOperation()); | 4439 o.add(buildOperation()); |
| 4440 o.add(buildOperation()); | 4440 o.add(buildOperation()); |
| 4441 return o; | 4441 return o; |
| 4442 } | 4442 } |
| 4443 | 4443 |
| 4444 checkUnnamed775(core.List<api.Operation> o) { | 4444 checkUnnamed2360(core.List<api.Operation> o) { |
| 4445 unittest.expect(o, unittest.hasLength(2)); | 4445 unittest.expect(o, unittest.hasLength(2)); |
| 4446 checkOperation(o[0]); | 4446 checkOperation(o[0]); |
| 4447 checkOperation(o[1]); | 4447 checkOperation(o[1]); |
| 4448 } | 4448 } |
| 4449 | 4449 |
| 4450 core.int buildCounterOperationsScopedListWarningData = 0; | 4450 core.int buildCounterOperationsScopedListWarningData = 0; |
| 4451 buildOperationsScopedListWarningData() { | 4451 buildOperationsScopedListWarningData() { |
| 4452 var o = new api.OperationsScopedListWarningData(); | 4452 var o = new api.OperationsScopedListWarningData(); |
| 4453 buildCounterOperationsScopedListWarningData++; | 4453 buildCounterOperationsScopedListWarningData++; |
| 4454 if (buildCounterOperationsScopedListWarningData < 3) { | 4454 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4455 o.key = "foo"; | 4455 o.key = "foo"; |
| 4456 o.value = "foo"; | 4456 o.value = "foo"; |
| 4457 } | 4457 } |
| 4458 buildCounterOperationsScopedListWarningData--; | 4458 buildCounterOperationsScopedListWarningData--; |
| 4459 return o; | 4459 return o; |
| 4460 } | 4460 } |
| 4461 | 4461 |
| 4462 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 4462 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 4463 buildCounterOperationsScopedListWarningData++; | 4463 buildCounterOperationsScopedListWarningData++; |
| 4464 if (buildCounterOperationsScopedListWarningData < 3) { | 4464 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4465 unittest.expect(o.key, unittest.equals('foo')); | 4465 unittest.expect(o.key, unittest.equals('foo')); |
| 4466 unittest.expect(o.value, unittest.equals('foo')); | 4466 unittest.expect(o.value, unittest.equals('foo')); |
| 4467 } | 4467 } |
| 4468 buildCounterOperationsScopedListWarningData--; | 4468 buildCounterOperationsScopedListWarningData--; |
| 4469 } | 4469 } |
| 4470 | 4470 |
| 4471 buildUnnamed776() { | 4471 buildUnnamed2361() { |
| 4472 var o = new core.List<api.OperationsScopedListWarningData>(); | 4472 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 4473 o.add(buildOperationsScopedListWarningData()); | 4473 o.add(buildOperationsScopedListWarningData()); |
| 4474 o.add(buildOperationsScopedListWarningData()); | 4474 o.add(buildOperationsScopedListWarningData()); |
| 4475 return o; | 4475 return o; |
| 4476 } | 4476 } |
| 4477 | 4477 |
| 4478 checkUnnamed776(core.List<api.OperationsScopedListWarningData> o) { | 4478 checkUnnamed2361(core.List<api.OperationsScopedListWarningData> o) { |
| 4479 unittest.expect(o, unittest.hasLength(2)); | 4479 unittest.expect(o, unittest.hasLength(2)); |
| 4480 checkOperationsScopedListWarningData(o[0]); | 4480 checkOperationsScopedListWarningData(o[0]); |
| 4481 checkOperationsScopedListWarningData(o[1]); | 4481 checkOperationsScopedListWarningData(o[1]); |
| 4482 } | 4482 } |
| 4483 | 4483 |
| 4484 core.int buildCounterOperationsScopedListWarning = 0; | 4484 core.int buildCounterOperationsScopedListWarning = 0; |
| 4485 buildOperationsScopedListWarning() { | 4485 buildOperationsScopedListWarning() { |
| 4486 var o = new api.OperationsScopedListWarning(); | 4486 var o = new api.OperationsScopedListWarning(); |
| 4487 buildCounterOperationsScopedListWarning++; | 4487 buildCounterOperationsScopedListWarning++; |
| 4488 if (buildCounterOperationsScopedListWarning < 3) { | 4488 if (buildCounterOperationsScopedListWarning < 3) { |
| 4489 o.code = "foo"; | 4489 o.code = "foo"; |
| 4490 o.data = buildUnnamed776(); | 4490 o.data = buildUnnamed2361(); |
| 4491 o.message = "foo"; | 4491 o.message = "foo"; |
| 4492 } | 4492 } |
| 4493 buildCounterOperationsScopedListWarning--; | 4493 buildCounterOperationsScopedListWarning--; |
| 4494 return o; | 4494 return o; |
| 4495 } | 4495 } |
| 4496 | 4496 |
| 4497 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 4497 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 4498 buildCounterOperationsScopedListWarning++; | 4498 buildCounterOperationsScopedListWarning++; |
| 4499 if (buildCounterOperationsScopedListWarning < 3) { | 4499 if (buildCounterOperationsScopedListWarning < 3) { |
| 4500 unittest.expect(o.code, unittest.equals('foo')); | 4500 unittest.expect(o.code, unittest.equals('foo')); |
| 4501 checkUnnamed776(o.data); | 4501 checkUnnamed2361(o.data); |
| 4502 unittest.expect(o.message, unittest.equals('foo')); | 4502 unittest.expect(o.message, unittest.equals('foo')); |
| 4503 } | 4503 } |
| 4504 buildCounterOperationsScopedListWarning--; | 4504 buildCounterOperationsScopedListWarning--; |
| 4505 } | 4505 } |
| 4506 | 4506 |
| 4507 core.int buildCounterOperationsScopedList = 0; | 4507 core.int buildCounterOperationsScopedList = 0; |
| 4508 buildOperationsScopedList() { | 4508 buildOperationsScopedList() { |
| 4509 var o = new api.OperationsScopedList(); | 4509 var o = new api.OperationsScopedList(); |
| 4510 buildCounterOperationsScopedList++; | 4510 buildCounterOperationsScopedList++; |
| 4511 if (buildCounterOperationsScopedList < 3) { | 4511 if (buildCounterOperationsScopedList < 3) { |
| 4512 o.operations = buildUnnamed775(); | 4512 o.operations = buildUnnamed2360(); |
| 4513 o.warning = buildOperationsScopedListWarning(); | 4513 o.warning = buildOperationsScopedListWarning(); |
| 4514 } | 4514 } |
| 4515 buildCounterOperationsScopedList--; | 4515 buildCounterOperationsScopedList--; |
| 4516 return o; | 4516 return o; |
| 4517 } | 4517 } |
| 4518 | 4518 |
| 4519 checkOperationsScopedList(api.OperationsScopedList o) { | 4519 checkOperationsScopedList(api.OperationsScopedList o) { |
| 4520 buildCounterOperationsScopedList++; | 4520 buildCounterOperationsScopedList++; |
| 4521 if (buildCounterOperationsScopedList < 3) { | 4521 if (buildCounterOperationsScopedList < 3) { |
| 4522 checkUnnamed775(o.operations); | 4522 checkUnnamed2360(o.operations); |
| 4523 checkOperationsScopedListWarning(o.warning); | 4523 checkOperationsScopedListWarning(o.warning); |
| 4524 } | 4524 } |
| 4525 buildCounterOperationsScopedList--; | 4525 buildCounterOperationsScopedList--; |
| 4526 } | 4526 } |
| 4527 | 4527 |
| 4528 buildUnnamed777() { | 4528 buildUnnamed2362() { |
| 4529 var o = new core.List<api.PathRule>(); | 4529 var o = new core.List<api.PathRule>(); |
| 4530 o.add(buildPathRule()); | 4530 o.add(buildPathRule()); |
| 4531 o.add(buildPathRule()); | 4531 o.add(buildPathRule()); |
| 4532 return o; | 4532 return o; |
| 4533 } | 4533 } |
| 4534 | 4534 |
| 4535 checkUnnamed777(core.List<api.PathRule> o) { | 4535 checkUnnamed2362(core.List<api.PathRule> o) { |
| 4536 unittest.expect(o, unittest.hasLength(2)); | 4536 unittest.expect(o, unittest.hasLength(2)); |
| 4537 checkPathRule(o[0]); | 4537 checkPathRule(o[0]); |
| 4538 checkPathRule(o[1]); | 4538 checkPathRule(o[1]); |
| 4539 } | 4539 } |
| 4540 | 4540 |
| 4541 core.int buildCounterPathMatcher = 0; | 4541 core.int buildCounterPathMatcher = 0; |
| 4542 buildPathMatcher() { | 4542 buildPathMatcher() { |
| 4543 var o = new api.PathMatcher(); | 4543 var o = new api.PathMatcher(); |
| 4544 buildCounterPathMatcher++; | 4544 buildCounterPathMatcher++; |
| 4545 if (buildCounterPathMatcher < 3) { | 4545 if (buildCounterPathMatcher < 3) { |
| 4546 o.defaultService = "foo"; | 4546 o.defaultService = "foo"; |
| 4547 o.description = "foo"; | 4547 o.description = "foo"; |
| 4548 o.name = "foo"; | 4548 o.name = "foo"; |
| 4549 o.pathRules = buildUnnamed777(); | 4549 o.pathRules = buildUnnamed2362(); |
| 4550 } | 4550 } |
| 4551 buildCounterPathMatcher--; | 4551 buildCounterPathMatcher--; |
| 4552 return o; | 4552 return o; |
| 4553 } | 4553 } |
| 4554 | 4554 |
| 4555 checkPathMatcher(api.PathMatcher o) { | 4555 checkPathMatcher(api.PathMatcher o) { |
| 4556 buildCounterPathMatcher++; | 4556 buildCounterPathMatcher++; |
| 4557 if (buildCounterPathMatcher < 3) { | 4557 if (buildCounterPathMatcher < 3) { |
| 4558 unittest.expect(o.defaultService, unittest.equals('foo')); | 4558 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4559 unittest.expect(o.description, unittest.equals('foo')); | 4559 unittest.expect(o.description, unittest.equals('foo')); |
| 4560 unittest.expect(o.name, unittest.equals('foo')); | 4560 unittest.expect(o.name, unittest.equals('foo')); |
| 4561 checkUnnamed777(o.pathRules); | 4561 checkUnnamed2362(o.pathRules); |
| 4562 } | 4562 } |
| 4563 buildCounterPathMatcher--; | 4563 buildCounterPathMatcher--; |
| 4564 } | 4564 } |
| 4565 | 4565 |
| 4566 buildUnnamed778() { | 4566 buildUnnamed2363() { |
| 4567 var o = new core.List<core.String>(); | 4567 var o = new core.List<core.String>(); |
| 4568 o.add("foo"); | 4568 o.add("foo"); |
| 4569 o.add("foo"); | 4569 o.add("foo"); |
| 4570 return o; | 4570 return o; |
| 4571 } | 4571 } |
| 4572 | 4572 |
| 4573 checkUnnamed778(core.List<core.String> o) { | 4573 checkUnnamed2363(core.List<core.String> o) { |
| 4574 unittest.expect(o, unittest.hasLength(2)); | 4574 unittest.expect(o, unittest.hasLength(2)); |
| 4575 unittest.expect(o[0], unittest.equals('foo')); | 4575 unittest.expect(o[0], unittest.equals('foo')); |
| 4576 unittest.expect(o[1], unittest.equals('foo')); | 4576 unittest.expect(o[1], unittest.equals('foo')); |
| 4577 } | 4577 } |
| 4578 | 4578 |
| 4579 core.int buildCounterPathRule = 0; | 4579 core.int buildCounterPathRule = 0; |
| 4580 buildPathRule() { | 4580 buildPathRule() { |
| 4581 var o = new api.PathRule(); | 4581 var o = new api.PathRule(); |
| 4582 buildCounterPathRule++; | 4582 buildCounterPathRule++; |
| 4583 if (buildCounterPathRule < 3) { | 4583 if (buildCounterPathRule < 3) { |
| 4584 o.paths = buildUnnamed778(); | 4584 o.paths = buildUnnamed2363(); |
| 4585 o.service = "foo"; | 4585 o.service = "foo"; |
| 4586 } | 4586 } |
| 4587 buildCounterPathRule--; | 4587 buildCounterPathRule--; |
| 4588 return o; | 4588 return o; |
| 4589 } | 4589 } |
| 4590 | 4590 |
| 4591 checkPathRule(api.PathRule o) { | 4591 checkPathRule(api.PathRule o) { |
| 4592 buildCounterPathRule++; | 4592 buildCounterPathRule++; |
| 4593 if (buildCounterPathRule < 3) { | 4593 if (buildCounterPathRule < 3) { |
| 4594 checkUnnamed778(o.paths); | 4594 checkUnnamed2363(o.paths); |
| 4595 unittest.expect(o.service, unittest.equals('foo')); | 4595 unittest.expect(o.service, unittest.equals('foo')); |
| 4596 } | 4596 } |
| 4597 buildCounterPathRule--; | 4597 buildCounterPathRule--; |
| 4598 } | 4598 } |
| 4599 | 4599 |
| 4600 buildUnnamed779() { | 4600 buildUnnamed2364() { |
| 4601 var o = new core.List<core.String>(); | 4601 var o = new core.List<core.String>(); |
| 4602 o.add("foo"); | 4602 o.add("foo"); |
| 4603 o.add("foo"); | 4603 o.add("foo"); |
| 4604 return o; | 4604 return o; |
| 4605 } | 4605 } |
| 4606 | 4606 |
| 4607 checkUnnamed779(core.List<core.String> o) { | 4607 checkUnnamed2364(core.List<core.String> o) { |
| 4608 unittest.expect(o, unittest.hasLength(2)); | 4608 unittest.expect(o, unittest.hasLength(2)); |
| 4609 unittest.expect(o[0], unittest.equals('foo')); | 4609 unittest.expect(o[0], unittest.equals('foo')); |
| 4610 unittest.expect(o[1], unittest.equals('foo')); | 4610 unittest.expect(o[1], unittest.equals('foo')); |
| 4611 } | 4611 } |
| 4612 | 4612 |
| 4613 buildUnnamed780() { | 4613 buildUnnamed2365() { |
| 4614 var o = new core.List<api.Quota>(); | 4614 var o = new core.List<api.Quota>(); |
| 4615 o.add(buildQuota()); | 4615 o.add(buildQuota()); |
| 4616 o.add(buildQuota()); | 4616 o.add(buildQuota()); |
| 4617 return o; | 4617 return o; |
| 4618 } | 4618 } |
| 4619 | 4619 |
| 4620 checkUnnamed780(core.List<api.Quota> o) { | 4620 checkUnnamed2365(core.List<api.Quota> o) { |
| 4621 unittest.expect(o, unittest.hasLength(2)); | 4621 unittest.expect(o, unittest.hasLength(2)); |
| 4622 checkQuota(o[0]); | 4622 checkQuota(o[0]); |
| 4623 checkQuota(o[1]); | 4623 checkQuota(o[1]); |
| 4624 } | 4624 } |
| 4625 | 4625 |
| 4626 core.int buildCounterProject = 0; | 4626 core.int buildCounterProject = 0; |
| 4627 buildProject() { | 4627 buildProject() { |
| 4628 var o = new api.Project(); | 4628 var o = new api.Project(); |
| 4629 buildCounterProject++; | 4629 buildCounterProject++; |
| 4630 if (buildCounterProject < 3) { | 4630 if (buildCounterProject < 3) { |
| 4631 o.commonInstanceMetadata = buildMetadata(); | 4631 o.commonInstanceMetadata = buildMetadata(); |
| 4632 o.creationTimestamp = "foo"; | 4632 o.creationTimestamp = "foo"; |
| 4633 o.defaultServiceAccount = "foo"; | 4633 o.defaultServiceAccount = "foo"; |
| 4634 o.description = "foo"; | 4634 o.description = "foo"; |
| 4635 o.enabledFeatures = buildUnnamed779(); | 4635 o.enabledFeatures = buildUnnamed2364(); |
| 4636 o.id = "foo"; | 4636 o.id = "foo"; |
| 4637 o.kind = "foo"; | 4637 o.kind = "foo"; |
| 4638 o.name = "foo"; | 4638 o.name = "foo"; |
| 4639 o.quotas = buildUnnamed780(); | 4639 o.quotas = buildUnnamed2365(); |
| 4640 o.selfLink = "foo"; | 4640 o.selfLink = "foo"; |
| 4641 o.usageExportLocation = buildUsageExportLocation(); | 4641 o.usageExportLocation = buildUsageExportLocation(); |
| 4642 } | 4642 } |
| 4643 buildCounterProject--; | 4643 buildCounterProject--; |
| 4644 return o; | 4644 return o; |
| 4645 } | 4645 } |
| 4646 | 4646 |
| 4647 checkProject(api.Project o) { | 4647 checkProject(api.Project o) { |
| 4648 buildCounterProject++; | 4648 buildCounterProject++; |
| 4649 if (buildCounterProject < 3) { | 4649 if (buildCounterProject < 3) { |
| 4650 checkMetadata(o.commonInstanceMetadata); | 4650 checkMetadata(o.commonInstanceMetadata); |
| 4651 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4651 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4652 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); | 4652 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); |
| 4653 unittest.expect(o.description, unittest.equals('foo')); | 4653 unittest.expect(o.description, unittest.equals('foo')); |
| 4654 checkUnnamed779(o.enabledFeatures); | 4654 checkUnnamed2364(o.enabledFeatures); |
| 4655 unittest.expect(o.id, unittest.equals('foo')); | 4655 unittest.expect(o.id, unittest.equals('foo')); |
| 4656 unittest.expect(o.kind, unittest.equals('foo')); | 4656 unittest.expect(o.kind, unittest.equals('foo')); |
| 4657 unittest.expect(o.name, unittest.equals('foo')); | 4657 unittest.expect(o.name, unittest.equals('foo')); |
| 4658 checkUnnamed780(o.quotas); | 4658 checkUnnamed2365(o.quotas); |
| 4659 unittest.expect(o.selfLink, unittest.equals('foo')); | 4659 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4660 checkUsageExportLocation(o.usageExportLocation); | 4660 checkUsageExportLocation(o.usageExportLocation); |
| 4661 } | 4661 } |
| 4662 buildCounterProject--; | 4662 buildCounterProject--; |
| 4663 } | 4663 } |
| 4664 | 4664 |
| 4665 core.int buildCounterQuota = 0; | 4665 core.int buildCounterQuota = 0; |
| 4666 buildQuota() { | 4666 buildQuota() { |
| 4667 var o = new api.Quota(); | 4667 var o = new api.Quota(); |
| 4668 buildCounterQuota++; | 4668 buildCounterQuota++; |
| 4669 if (buildCounterQuota < 3) { | 4669 if (buildCounterQuota < 3) { |
| 4670 o.limit = 42.0; | 4670 o.limit = 42.0; |
| 4671 o.metric = "foo"; | 4671 o.metric = "foo"; |
| 4672 o.usage = 42.0; | 4672 o.usage = 42.0; |
| 4673 } | 4673 } |
| 4674 buildCounterQuota--; | 4674 buildCounterQuota--; |
| 4675 return o; | 4675 return o; |
| 4676 } | 4676 } |
| 4677 | 4677 |
| 4678 checkQuota(api.Quota o) { | 4678 checkQuota(api.Quota o) { |
| 4679 buildCounterQuota++; | 4679 buildCounterQuota++; |
| 4680 if (buildCounterQuota < 3) { | 4680 if (buildCounterQuota < 3) { |
| 4681 unittest.expect(o.limit, unittest.equals(42.0)); | 4681 unittest.expect(o.limit, unittest.equals(42.0)); |
| 4682 unittest.expect(o.metric, unittest.equals('foo')); | 4682 unittest.expect(o.metric, unittest.equals('foo')); |
| 4683 unittest.expect(o.usage, unittest.equals(42.0)); | 4683 unittest.expect(o.usage, unittest.equals(42.0)); |
| 4684 } | 4684 } |
| 4685 buildCounterQuota--; | 4685 buildCounterQuota--; |
| 4686 } | 4686 } |
| 4687 | 4687 |
| 4688 buildUnnamed781() { | 4688 buildUnnamed2366() { |
| 4689 var o = new core.List<api.Quota>(); | 4689 var o = new core.List<api.Quota>(); |
| 4690 o.add(buildQuota()); | 4690 o.add(buildQuota()); |
| 4691 o.add(buildQuota()); | 4691 o.add(buildQuota()); |
| 4692 return o; | 4692 return o; |
| 4693 } | 4693 } |
| 4694 | 4694 |
| 4695 checkUnnamed781(core.List<api.Quota> o) { | 4695 checkUnnamed2366(core.List<api.Quota> o) { |
| 4696 unittest.expect(o, unittest.hasLength(2)); | 4696 unittest.expect(o, unittest.hasLength(2)); |
| 4697 checkQuota(o[0]); | 4697 checkQuota(o[0]); |
| 4698 checkQuota(o[1]); | 4698 checkQuota(o[1]); |
| 4699 } | 4699 } |
| 4700 | 4700 |
| 4701 buildUnnamed782() { | 4701 buildUnnamed2367() { |
| 4702 var o = new core.List<core.String>(); | 4702 var o = new core.List<core.String>(); |
| 4703 o.add("foo"); | 4703 o.add("foo"); |
| 4704 o.add("foo"); | 4704 o.add("foo"); |
| 4705 return o; | 4705 return o; |
| 4706 } | 4706 } |
| 4707 | 4707 |
| 4708 checkUnnamed782(core.List<core.String> o) { | 4708 checkUnnamed2367(core.List<core.String> o) { |
| 4709 unittest.expect(o, unittest.hasLength(2)); | 4709 unittest.expect(o, unittest.hasLength(2)); |
| 4710 unittest.expect(o[0], unittest.equals('foo')); | 4710 unittest.expect(o[0], unittest.equals('foo')); |
| 4711 unittest.expect(o[1], unittest.equals('foo')); | 4711 unittest.expect(o[1], unittest.equals('foo')); |
| 4712 } | 4712 } |
| 4713 | 4713 |
| 4714 core.int buildCounterRegion = 0; | 4714 core.int buildCounterRegion = 0; |
| 4715 buildRegion() { | 4715 buildRegion() { |
| 4716 var o = new api.Region(); | 4716 var o = new api.Region(); |
| 4717 buildCounterRegion++; | 4717 buildCounterRegion++; |
| 4718 if (buildCounterRegion < 3) { | 4718 if (buildCounterRegion < 3) { |
| 4719 o.creationTimestamp = "foo"; | 4719 o.creationTimestamp = "foo"; |
| 4720 o.deprecated = buildDeprecationStatus(); | 4720 o.deprecated = buildDeprecationStatus(); |
| 4721 o.description = "foo"; | 4721 o.description = "foo"; |
| 4722 o.id = "foo"; | 4722 o.id = "foo"; |
| 4723 o.kind = "foo"; | 4723 o.kind = "foo"; |
| 4724 o.name = "foo"; | 4724 o.name = "foo"; |
| 4725 o.quotas = buildUnnamed781(); | 4725 o.quotas = buildUnnamed2366(); |
| 4726 o.selfLink = "foo"; | 4726 o.selfLink = "foo"; |
| 4727 o.status = "foo"; | 4727 o.status = "foo"; |
| 4728 o.zones = buildUnnamed782(); | 4728 o.zones = buildUnnamed2367(); |
| 4729 } | 4729 } |
| 4730 buildCounterRegion--; | 4730 buildCounterRegion--; |
| 4731 return o; | 4731 return o; |
| 4732 } | 4732 } |
| 4733 | 4733 |
| 4734 checkRegion(api.Region o) { | 4734 checkRegion(api.Region o) { |
| 4735 buildCounterRegion++; | 4735 buildCounterRegion++; |
| 4736 if (buildCounterRegion < 3) { | 4736 if (buildCounterRegion < 3) { |
| 4737 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4737 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4738 checkDeprecationStatus(o.deprecated); | 4738 checkDeprecationStatus(o.deprecated); |
| 4739 unittest.expect(o.description, unittest.equals('foo')); | 4739 unittest.expect(o.description, unittest.equals('foo')); |
| 4740 unittest.expect(o.id, unittest.equals('foo')); | 4740 unittest.expect(o.id, unittest.equals('foo')); |
| 4741 unittest.expect(o.kind, unittest.equals('foo')); | 4741 unittest.expect(o.kind, unittest.equals('foo')); |
| 4742 unittest.expect(o.name, unittest.equals('foo')); | 4742 unittest.expect(o.name, unittest.equals('foo')); |
| 4743 checkUnnamed781(o.quotas); | 4743 checkUnnamed2366(o.quotas); |
| 4744 unittest.expect(o.selfLink, unittest.equals('foo')); | 4744 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4745 unittest.expect(o.status, unittest.equals('foo')); | 4745 unittest.expect(o.status, unittest.equals('foo')); |
| 4746 checkUnnamed782(o.zones); | 4746 checkUnnamed2367(o.zones); |
| 4747 } | 4747 } |
| 4748 buildCounterRegion--; | 4748 buildCounterRegion--; |
| 4749 } | 4749 } |
| 4750 | 4750 |
| 4751 buildUnnamed783() { | 4751 buildUnnamed2368() { |
| 4752 var o = new core.List<api.Region>(); | 4752 var o = new core.List<api.Region>(); |
| 4753 o.add(buildRegion()); | 4753 o.add(buildRegion()); |
| 4754 o.add(buildRegion()); | 4754 o.add(buildRegion()); |
| 4755 return o; | 4755 return o; |
| 4756 } | 4756 } |
| 4757 | 4757 |
| 4758 checkUnnamed783(core.List<api.Region> o) { | 4758 checkUnnamed2368(core.List<api.Region> o) { |
| 4759 unittest.expect(o, unittest.hasLength(2)); | 4759 unittest.expect(o, unittest.hasLength(2)); |
| 4760 checkRegion(o[0]); | 4760 checkRegion(o[0]); |
| 4761 checkRegion(o[1]); | 4761 checkRegion(o[1]); |
| 4762 } | 4762 } |
| 4763 | 4763 |
| 4764 core.int buildCounterRegionList = 0; | 4764 core.int buildCounterRegionList = 0; |
| 4765 buildRegionList() { | 4765 buildRegionList() { |
| 4766 var o = new api.RegionList(); | 4766 var o = new api.RegionList(); |
| 4767 buildCounterRegionList++; | 4767 buildCounterRegionList++; |
| 4768 if (buildCounterRegionList < 3) { | 4768 if (buildCounterRegionList < 3) { |
| 4769 o.id = "foo"; | 4769 o.id = "foo"; |
| 4770 o.items = buildUnnamed783(); | 4770 o.items = buildUnnamed2368(); |
| 4771 o.kind = "foo"; | 4771 o.kind = "foo"; |
| 4772 o.nextPageToken = "foo"; | 4772 o.nextPageToken = "foo"; |
| 4773 o.selfLink = "foo"; | 4773 o.selfLink = "foo"; |
| 4774 } | 4774 } |
| 4775 buildCounterRegionList--; | 4775 buildCounterRegionList--; |
| 4776 return o; | 4776 return o; |
| 4777 } | 4777 } |
| 4778 | 4778 |
| 4779 checkRegionList(api.RegionList o) { | 4779 checkRegionList(api.RegionList o) { |
| 4780 buildCounterRegionList++; | 4780 buildCounterRegionList++; |
| 4781 if (buildCounterRegionList < 3) { | 4781 if (buildCounterRegionList < 3) { |
| 4782 unittest.expect(o.id, unittest.equals('foo')); | 4782 unittest.expect(o.id, unittest.equals('foo')); |
| 4783 checkUnnamed783(o.items); | 4783 checkUnnamed2368(o.items); |
| 4784 unittest.expect(o.kind, unittest.equals('foo')); | 4784 unittest.expect(o.kind, unittest.equals('foo')); |
| 4785 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4785 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4786 unittest.expect(o.selfLink, unittest.equals('foo')); | 4786 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4787 } | 4787 } |
| 4788 buildCounterRegionList--; | 4788 buildCounterRegionList--; |
| 4789 } | 4789 } |
| 4790 | 4790 |
| 4791 core.int buildCounterResourceGroupReference = 0; | 4791 core.int buildCounterResourceGroupReference = 0; |
| 4792 buildResourceGroupReference() { | 4792 buildResourceGroupReference() { |
| 4793 var o = new api.ResourceGroupReference(); | 4793 var o = new api.ResourceGroupReference(); |
| 4794 buildCounterResourceGroupReference++; | 4794 buildCounterResourceGroupReference++; |
| 4795 if (buildCounterResourceGroupReference < 3) { | 4795 if (buildCounterResourceGroupReference < 3) { |
| 4796 o.group = "foo"; | 4796 o.group = "foo"; |
| 4797 } | 4797 } |
| 4798 buildCounterResourceGroupReference--; | 4798 buildCounterResourceGroupReference--; |
| 4799 return o; | 4799 return o; |
| 4800 } | 4800 } |
| 4801 | 4801 |
| 4802 checkResourceGroupReference(api.ResourceGroupReference o) { | 4802 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 4803 buildCounterResourceGroupReference++; | 4803 buildCounterResourceGroupReference++; |
| 4804 if (buildCounterResourceGroupReference < 3) { | 4804 if (buildCounterResourceGroupReference < 3) { |
| 4805 unittest.expect(o.group, unittest.equals('foo')); | 4805 unittest.expect(o.group, unittest.equals('foo')); |
| 4806 } | 4806 } |
| 4807 buildCounterResourceGroupReference--; | 4807 buildCounterResourceGroupReference--; |
| 4808 } | 4808 } |
| 4809 | 4809 |
| 4810 buildUnnamed784() { | 4810 buildUnnamed2369() { |
| 4811 var o = new core.List<core.String>(); | 4811 var o = new core.List<core.String>(); |
| 4812 o.add("foo"); | 4812 o.add("foo"); |
| 4813 o.add("foo"); | 4813 o.add("foo"); |
| 4814 return o; | 4814 return o; |
| 4815 } | 4815 } |
| 4816 | 4816 |
| 4817 checkUnnamed784(core.List<core.String> o) { | 4817 checkUnnamed2369(core.List<core.String> o) { |
| 4818 unittest.expect(o, unittest.hasLength(2)); | 4818 unittest.expect(o, unittest.hasLength(2)); |
| 4819 unittest.expect(o[0], unittest.equals('foo')); | 4819 unittest.expect(o[0], unittest.equals('foo')); |
| 4820 unittest.expect(o[1], unittest.equals('foo')); | 4820 unittest.expect(o[1], unittest.equals('foo')); |
| 4821 } | 4821 } |
| 4822 | 4822 |
| 4823 core.int buildCounterRouteWarningsData = 0; | 4823 core.int buildCounterRouteWarningsData = 0; |
| 4824 buildRouteWarningsData() { | 4824 buildRouteWarningsData() { |
| 4825 var o = new api.RouteWarningsData(); | 4825 var o = new api.RouteWarningsData(); |
| 4826 buildCounterRouteWarningsData++; | 4826 buildCounterRouteWarningsData++; |
| 4827 if (buildCounterRouteWarningsData < 3) { | 4827 if (buildCounterRouteWarningsData < 3) { |
| 4828 o.key = "foo"; | 4828 o.key = "foo"; |
| 4829 o.value = "foo"; | 4829 o.value = "foo"; |
| 4830 } | 4830 } |
| 4831 buildCounterRouteWarningsData--; | 4831 buildCounterRouteWarningsData--; |
| 4832 return o; | 4832 return o; |
| 4833 } | 4833 } |
| 4834 | 4834 |
| 4835 checkRouteWarningsData(api.RouteWarningsData o) { | 4835 checkRouteWarningsData(api.RouteWarningsData o) { |
| 4836 buildCounterRouteWarningsData++; | 4836 buildCounterRouteWarningsData++; |
| 4837 if (buildCounterRouteWarningsData < 3) { | 4837 if (buildCounterRouteWarningsData < 3) { |
| 4838 unittest.expect(o.key, unittest.equals('foo')); | 4838 unittest.expect(o.key, unittest.equals('foo')); |
| 4839 unittest.expect(o.value, unittest.equals('foo')); | 4839 unittest.expect(o.value, unittest.equals('foo')); |
| 4840 } | 4840 } |
| 4841 buildCounterRouteWarningsData--; | 4841 buildCounterRouteWarningsData--; |
| 4842 } | 4842 } |
| 4843 | 4843 |
| 4844 buildUnnamed785() { | 4844 buildUnnamed2370() { |
| 4845 var o = new core.List<api.RouteWarningsData>(); | 4845 var o = new core.List<api.RouteWarningsData>(); |
| 4846 o.add(buildRouteWarningsData()); | 4846 o.add(buildRouteWarningsData()); |
| 4847 o.add(buildRouteWarningsData()); | 4847 o.add(buildRouteWarningsData()); |
| 4848 return o; | 4848 return o; |
| 4849 } | 4849 } |
| 4850 | 4850 |
| 4851 checkUnnamed785(core.List<api.RouteWarningsData> o) { | 4851 checkUnnamed2370(core.List<api.RouteWarningsData> o) { |
| 4852 unittest.expect(o, unittest.hasLength(2)); | 4852 unittest.expect(o, unittest.hasLength(2)); |
| 4853 checkRouteWarningsData(o[0]); | 4853 checkRouteWarningsData(o[0]); |
| 4854 checkRouteWarningsData(o[1]); | 4854 checkRouteWarningsData(o[1]); |
| 4855 } | 4855 } |
| 4856 | 4856 |
| 4857 core.int buildCounterRouteWarnings = 0; | 4857 core.int buildCounterRouteWarnings = 0; |
| 4858 buildRouteWarnings() { | 4858 buildRouteWarnings() { |
| 4859 var o = new api.RouteWarnings(); | 4859 var o = new api.RouteWarnings(); |
| 4860 buildCounterRouteWarnings++; | 4860 buildCounterRouteWarnings++; |
| 4861 if (buildCounterRouteWarnings < 3) { | 4861 if (buildCounterRouteWarnings < 3) { |
| 4862 o.code = "foo"; | 4862 o.code = "foo"; |
| 4863 o.data = buildUnnamed785(); | 4863 o.data = buildUnnamed2370(); |
| 4864 o.message = "foo"; | 4864 o.message = "foo"; |
| 4865 } | 4865 } |
| 4866 buildCounterRouteWarnings--; | 4866 buildCounterRouteWarnings--; |
| 4867 return o; | 4867 return o; |
| 4868 } | 4868 } |
| 4869 | 4869 |
| 4870 checkRouteWarnings(api.RouteWarnings o) { | 4870 checkRouteWarnings(api.RouteWarnings o) { |
| 4871 buildCounterRouteWarnings++; | 4871 buildCounterRouteWarnings++; |
| 4872 if (buildCounterRouteWarnings < 3) { | 4872 if (buildCounterRouteWarnings < 3) { |
| 4873 unittest.expect(o.code, unittest.equals('foo')); | 4873 unittest.expect(o.code, unittest.equals('foo')); |
| 4874 checkUnnamed785(o.data); | 4874 checkUnnamed2370(o.data); |
| 4875 unittest.expect(o.message, unittest.equals('foo')); | 4875 unittest.expect(o.message, unittest.equals('foo')); |
| 4876 } | 4876 } |
| 4877 buildCounterRouteWarnings--; | 4877 buildCounterRouteWarnings--; |
| 4878 } | 4878 } |
| 4879 | 4879 |
| 4880 buildUnnamed786() { | 4880 buildUnnamed2371() { |
| 4881 var o = new core.List<api.RouteWarnings>(); | 4881 var o = new core.List<api.RouteWarnings>(); |
| 4882 o.add(buildRouteWarnings()); | 4882 o.add(buildRouteWarnings()); |
| 4883 o.add(buildRouteWarnings()); | 4883 o.add(buildRouteWarnings()); |
| 4884 return o; | 4884 return o; |
| 4885 } | 4885 } |
| 4886 | 4886 |
| 4887 checkUnnamed786(core.List<api.RouteWarnings> o) { | 4887 checkUnnamed2371(core.List<api.RouteWarnings> o) { |
| 4888 unittest.expect(o, unittest.hasLength(2)); | 4888 unittest.expect(o, unittest.hasLength(2)); |
| 4889 checkRouteWarnings(o[0]); | 4889 checkRouteWarnings(o[0]); |
| 4890 checkRouteWarnings(o[1]); | 4890 checkRouteWarnings(o[1]); |
| 4891 } | 4891 } |
| 4892 | 4892 |
| 4893 core.int buildCounterRoute = 0; | 4893 core.int buildCounterRoute = 0; |
| 4894 buildRoute() { | 4894 buildRoute() { |
| 4895 var o = new api.Route(); | 4895 var o = new api.Route(); |
| 4896 buildCounterRoute++; | 4896 buildCounterRoute++; |
| 4897 if (buildCounterRoute < 3) { | 4897 if (buildCounterRoute < 3) { |
| 4898 o.creationTimestamp = "foo"; | 4898 o.creationTimestamp = "foo"; |
| 4899 o.description = "foo"; | 4899 o.description = "foo"; |
| 4900 o.destRange = "foo"; | 4900 o.destRange = "foo"; |
| 4901 o.id = "foo"; | 4901 o.id = "foo"; |
| 4902 o.kind = "foo"; | 4902 o.kind = "foo"; |
| 4903 o.name = "foo"; | 4903 o.name = "foo"; |
| 4904 o.network = "foo"; | 4904 o.network = "foo"; |
| 4905 o.nextHopGateway = "foo"; | 4905 o.nextHopGateway = "foo"; |
| 4906 o.nextHopInstance = "foo"; | 4906 o.nextHopInstance = "foo"; |
| 4907 o.nextHopIp = "foo"; | 4907 o.nextHopIp = "foo"; |
| 4908 o.nextHopNetwork = "foo"; | 4908 o.nextHopNetwork = "foo"; |
| 4909 o.nextHopVpnTunnel = "foo"; | 4909 o.nextHopVpnTunnel = "foo"; |
| 4910 o.priority = 42; | 4910 o.priority = 42; |
| 4911 o.selfLink = "foo"; | 4911 o.selfLink = "foo"; |
| 4912 o.tags = buildUnnamed784(); | 4912 o.tags = buildUnnamed2369(); |
| 4913 o.warnings = buildUnnamed786(); | 4913 o.warnings = buildUnnamed2371(); |
| 4914 } | 4914 } |
| 4915 buildCounterRoute--; | 4915 buildCounterRoute--; |
| 4916 return o; | 4916 return o; |
| 4917 } | 4917 } |
| 4918 | 4918 |
| 4919 checkRoute(api.Route o) { | 4919 checkRoute(api.Route o) { |
| 4920 buildCounterRoute++; | 4920 buildCounterRoute++; |
| 4921 if (buildCounterRoute < 3) { | 4921 if (buildCounterRoute < 3) { |
| 4922 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4922 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4923 unittest.expect(o.description, unittest.equals('foo')); | 4923 unittest.expect(o.description, unittest.equals('foo')); |
| 4924 unittest.expect(o.destRange, unittest.equals('foo')); | 4924 unittest.expect(o.destRange, unittest.equals('foo')); |
| 4925 unittest.expect(o.id, unittest.equals('foo')); | 4925 unittest.expect(o.id, unittest.equals('foo')); |
| 4926 unittest.expect(o.kind, unittest.equals('foo')); | 4926 unittest.expect(o.kind, unittest.equals('foo')); |
| 4927 unittest.expect(o.name, unittest.equals('foo')); | 4927 unittest.expect(o.name, unittest.equals('foo')); |
| 4928 unittest.expect(o.network, unittest.equals('foo')); | 4928 unittest.expect(o.network, unittest.equals('foo')); |
| 4929 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 4929 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 4930 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 4930 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 4931 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 4931 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 4932 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 4932 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 4933 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 4933 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 4934 unittest.expect(o.priority, unittest.equals(42)); | 4934 unittest.expect(o.priority, unittest.equals(42)); |
| 4935 unittest.expect(o.selfLink, unittest.equals('foo')); | 4935 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4936 checkUnnamed784(o.tags); | 4936 checkUnnamed2369(o.tags); |
| 4937 checkUnnamed786(o.warnings); | 4937 checkUnnamed2371(o.warnings); |
| 4938 } | 4938 } |
| 4939 buildCounterRoute--; | 4939 buildCounterRoute--; |
| 4940 } | 4940 } |
| 4941 | 4941 |
| 4942 buildUnnamed787() { | 4942 buildUnnamed2372() { |
| 4943 var o = new core.List<api.Route>(); | 4943 var o = new core.List<api.Route>(); |
| 4944 o.add(buildRoute()); | 4944 o.add(buildRoute()); |
| 4945 o.add(buildRoute()); | 4945 o.add(buildRoute()); |
| 4946 return o; | 4946 return o; |
| 4947 } | 4947 } |
| 4948 | 4948 |
| 4949 checkUnnamed787(core.List<api.Route> o) { | 4949 checkUnnamed2372(core.List<api.Route> o) { |
| 4950 unittest.expect(o, unittest.hasLength(2)); | 4950 unittest.expect(o, unittest.hasLength(2)); |
| 4951 checkRoute(o[0]); | 4951 checkRoute(o[0]); |
| 4952 checkRoute(o[1]); | 4952 checkRoute(o[1]); |
| 4953 } | 4953 } |
| 4954 | 4954 |
| 4955 core.int buildCounterRouteList = 0; | 4955 core.int buildCounterRouteList = 0; |
| 4956 buildRouteList() { | 4956 buildRouteList() { |
| 4957 var o = new api.RouteList(); | 4957 var o = new api.RouteList(); |
| 4958 buildCounterRouteList++; | 4958 buildCounterRouteList++; |
| 4959 if (buildCounterRouteList < 3) { | 4959 if (buildCounterRouteList < 3) { |
| 4960 o.id = "foo"; | 4960 o.id = "foo"; |
| 4961 o.items = buildUnnamed787(); | 4961 o.items = buildUnnamed2372(); |
| 4962 o.kind = "foo"; | 4962 o.kind = "foo"; |
| 4963 o.nextPageToken = "foo"; | 4963 o.nextPageToken = "foo"; |
| 4964 o.selfLink = "foo"; | 4964 o.selfLink = "foo"; |
| 4965 } | 4965 } |
| 4966 buildCounterRouteList--; | 4966 buildCounterRouteList--; |
| 4967 return o; | 4967 return o; |
| 4968 } | 4968 } |
| 4969 | 4969 |
| 4970 checkRouteList(api.RouteList o) { | 4970 checkRouteList(api.RouteList o) { |
| 4971 buildCounterRouteList++; | 4971 buildCounterRouteList++; |
| 4972 if (buildCounterRouteList < 3) { | 4972 if (buildCounterRouteList < 3) { |
| 4973 unittest.expect(o.id, unittest.equals('foo')); | 4973 unittest.expect(o.id, unittest.equals('foo')); |
| 4974 checkUnnamed787(o.items); | 4974 checkUnnamed2372(o.items); |
| 4975 unittest.expect(o.kind, unittest.equals('foo')); | 4975 unittest.expect(o.kind, unittest.equals('foo')); |
| 4976 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4976 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4977 unittest.expect(o.selfLink, unittest.equals('foo')); | 4977 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4978 } | 4978 } |
| 4979 buildCounterRouteList--; | 4979 buildCounterRouteList--; |
| 4980 } | 4980 } |
| 4981 | 4981 |
| 4982 buildUnnamed788() { | 4982 buildUnnamed2373() { |
| 4983 var o = new core.List<api.RouterBgpPeer>(); | 4983 var o = new core.List<api.RouterBgpPeer>(); |
| 4984 o.add(buildRouterBgpPeer()); | 4984 o.add(buildRouterBgpPeer()); |
| 4985 o.add(buildRouterBgpPeer()); | 4985 o.add(buildRouterBgpPeer()); |
| 4986 return o; | 4986 return o; |
| 4987 } | 4987 } |
| 4988 | 4988 |
| 4989 checkUnnamed788(core.List<api.RouterBgpPeer> o) { | 4989 checkUnnamed2373(core.List<api.RouterBgpPeer> o) { |
| 4990 unittest.expect(o, unittest.hasLength(2)); | 4990 unittest.expect(o, unittest.hasLength(2)); |
| 4991 checkRouterBgpPeer(o[0]); | 4991 checkRouterBgpPeer(o[0]); |
| 4992 checkRouterBgpPeer(o[1]); | 4992 checkRouterBgpPeer(o[1]); |
| 4993 } | 4993 } |
| 4994 | 4994 |
| 4995 buildUnnamed789() { | 4995 buildUnnamed2374() { |
| 4996 var o = new core.List<api.RouterInterface>(); | 4996 var o = new core.List<api.RouterInterface>(); |
| 4997 o.add(buildRouterInterface()); | 4997 o.add(buildRouterInterface()); |
| 4998 o.add(buildRouterInterface()); | 4998 o.add(buildRouterInterface()); |
| 4999 return o; | 4999 return o; |
| 5000 } | 5000 } |
| 5001 | 5001 |
| 5002 checkUnnamed789(core.List<api.RouterInterface> o) { | 5002 checkUnnamed2374(core.List<api.RouterInterface> o) { |
| 5003 unittest.expect(o, unittest.hasLength(2)); | 5003 unittest.expect(o, unittest.hasLength(2)); |
| 5004 checkRouterInterface(o[0]); | 5004 checkRouterInterface(o[0]); |
| 5005 checkRouterInterface(o[1]); | 5005 checkRouterInterface(o[1]); |
| 5006 } | 5006 } |
| 5007 | 5007 |
| 5008 core.int buildCounterRouter = 0; | 5008 core.int buildCounterRouter = 0; |
| 5009 buildRouter() { | 5009 buildRouter() { |
| 5010 var o = new api.Router(); | 5010 var o = new api.Router(); |
| 5011 buildCounterRouter++; | 5011 buildCounterRouter++; |
| 5012 if (buildCounterRouter < 3) { | 5012 if (buildCounterRouter < 3) { |
| 5013 o.bgp = buildRouterBgp(); | 5013 o.bgp = buildRouterBgp(); |
| 5014 o.bgpPeers = buildUnnamed788(); | 5014 o.bgpPeers = buildUnnamed2373(); |
| 5015 o.creationTimestamp = "foo"; | 5015 o.creationTimestamp = "foo"; |
| 5016 o.description = "foo"; | 5016 o.description = "foo"; |
| 5017 o.id = "foo"; | 5017 o.id = "foo"; |
| 5018 o.interfaces = buildUnnamed789(); | 5018 o.interfaces = buildUnnamed2374(); |
| 5019 o.kind = "foo"; | 5019 o.kind = "foo"; |
| 5020 o.name = "foo"; | 5020 o.name = "foo"; |
| 5021 o.network = "foo"; | 5021 o.network = "foo"; |
| 5022 o.region = "foo"; | 5022 o.region = "foo"; |
| 5023 o.selfLink = "foo"; | 5023 o.selfLink = "foo"; |
| 5024 } | 5024 } |
| 5025 buildCounterRouter--; | 5025 buildCounterRouter--; |
| 5026 return o; | 5026 return o; |
| 5027 } | 5027 } |
| 5028 | 5028 |
| 5029 checkRouter(api.Router o) { | 5029 checkRouter(api.Router o) { |
| 5030 buildCounterRouter++; | 5030 buildCounterRouter++; |
| 5031 if (buildCounterRouter < 3) { | 5031 if (buildCounterRouter < 3) { |
| 5032 checkRouterBgp(o.bgp); | 5032 checkRouterBgp(o.bgp); |
| 5033 checkUnnamed788(o.bgpPeers); | 5033 checkUnnamed2373(o.bgpPeers); |
| 5034 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5034 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5035 unittest.expect(o.description, unittest.equals('foo')); | 5035 unittest.expect(o.description, unittest.equals('foo')); |
| 5036 unittest.expect(o.id, unittest.equals('foo')); | 5036 unittest.expect(o.id, unittest.equals('foo')); |
| 5037 checkUnnamed789(o.interfaces); | 5037 checkUnnamed2374(o.interfaces); |
| 5038 unittest.expect(o.kind, unittest.equals('foo')); | 5038 unittest.expect(o.kind, unittest.equals('foo')); |
| 5039 unittest.expect(o.name, unittest.equals('foo')); | 5039 unittest.expect(o.name, unittest.equals('foo')); |
| 5040 unittest.expect(o.network, unittest.equals('foo')); | 5040 unittest.expect(o.network, unittest.equals('foo')); |
| 5041 unittest.expect(o.region, unittest.equals('foo')); | 5041 unittest.expect(o.region, unittest.equals('foo')); |
| 5042 unittest.expect(o.selfLink, unittest.equals('foo')); | 5042 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5043 } | 5043 } |
| 5044 buildCounterRouter--; | 5044 buildCounterRouter--; |
| 5045 } | 5045 } |
| 5046 | 5046 |
| 5047 buildUnnamed790() { | 5047 buildUnnamed2375() { |
| 5048 var o = new core.Map<core.String, api.RoutersScopedList>(); | 5048 var o = new core.Map<core.String, api.RoutersScopedList>(); |
| 5049 o["x"] = buildRoutersScopedList(); | 5049 o["x"] = buildRoutersScopedList(); |
| 5050 o["y"] = buildRoutersScopedList(); | 5050 o["y"] = buildRoutersScopedList(); |
| 5051 return o; | 5051 return o; |
| 5052 } | 5052 } |
| 5053 | 5053 |
| 5054 checkUnnamed790(core.Map<core.String, api.RoutersScopedList> o) { | 5054 checkUnnamed2375(core.Map<core.String, api.RoutersScopedList> o) { |
| 5055 unittest.expect(o, unittest.hasLength(2)); | 5055 unittest.expect(o, unittest.hasLength(2)); |
| 5056 checkRoutersScopedList(o["x"]); | 5056 checkRoutersScopedList(o["x"]); |
| 5057 checkRoutersScopedList(o["y"]); | 5057 checkRoutersScopedList(o["y"]); |
| 5058 } | 5058 } |
| 5059 | 5059 |
| 5060 core.int buildCounterRouterAggregatedList = 0; | 5060 core.int buildCounterRouterAggregatedList = 0; |
| 5061 buildRouterAggregatedList() { | 5061 buildRouterAggregatedList() { |
| 5062 var o = new api.RouterAggregatedList(); | 5062 var o = new api.RouterAggregatedList(); |
| 5063 buildCounterRouterAggregatedList++; | 5063 buildCounterRouterAggregatedList++; |
| 5064 if (buildCounterRouterAggregatedList < 3) { | 5064 if (buildCounterRouterAggregatedList < 3) { |
| 5065 o.id = "foo"; | 5065 o.id = "foo"; |
| 5066 o.items = buildUnnamed790(); | 5066 o.items = buildUnnamed2375(); |
| 5067 o.kind = "foo"; | 5067 o.kind = "foo"; |
| 5068 o.nextPageToken = "foo"; | 5068 o.nextPageToken = "foo"; |
| 5069 o.selfLink = "foo"; | 5069 o.selfLink = "foo"; |
| 5070 } | 5070 } |
| 5071 buildCounterRouterAggregatedList--; | 5071 buildCounterRouterAggregatedList--; |
| 5072 return o; | 5072 return o; |
| 5073 } | 5073 } |
| 5074 | 5074 |
| 5075 checkRouterAggregatedList(api.RouterAggregatedList o) { | 5075 checkRouterAggregatedList(api.RouterAggregatedList o) { |
| 5076 buildCounterRouterAggregatedList++; | 5076 buildCounterRouterAggregatedList++; |
| 5077 if (buildCounterRouterAggregatedList < 3) { | 5077 if (buildCounterRouterAggregatedList < 3) { |
| 5078 unittest.expect(o.id, unittest.equals('foo')); | 5078 unittest.expect(o.id, unittest.equals('foo')); |
| 5079 checkUnnamed790(o.items); | 5079 checkUnnamed2375(o.items); |
| 5080 unittest.expect(o.kind, unittest.equals('foo')); | 5080 unittest.expect(o.kind, unittest.equals('foo')); |
| 5081 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5081 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5082 unittest.expect(o.selfLink, unittest.equals('foo')); | 5082 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5083 } | 5083 } |
| 5084 buildCounterRouterAggregatedList--; | 5084 buildCounterRouterAggregatedList--; |
| 5085 } | 5085 } |
| 5086 | 5086 |
| 5087 core.int buildCounterRouterBgp = 0; | 5087 core.int buildCounterRouterBgp = 0; |
| 5088 buildRouterBgp() { | 5088 buildRouterBgp() { |
| 5089 var o = new api.RouterBgp(); | 5089 var o = new api.RouterBgp(); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5148 checkRouterInterface(api.RouterInterface o) { | 5148 checkRouterInterface(api.RouterInterface o) { |
| 5149 buildCounterRouterInterface++; | 5149 buildCounterRouterInterface++; |
| 5150 if (buildCounterRouterInterface < 3) { | 5150 if (buildCounterRouterInterface < 3) { |
| 5151 unittest.expect(o.ipRange, unittest.equals('foo')); | 5151 unittest.expect(o.ipRange, unittest.equals('foo')); |
| 5152 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 5152 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 5153 unittest.expect(o.name, unittest.equals('foo')); | 5153 unittest.expect(o.name, unittest.equals('foo')); |
| 5154 } | 5154 } |
| 5155 buildCounterRouterInterface--; | 5155 buildCounterRouterInterface--; |
| 5156 } | 5156 } |
| 5157 | 5157 |
| 5158 buildUnnamed791() { | 5158 buildUnnamed2376() { |
| 5159 var o = new core.List<api.Router>(); | 5159 var o = new core.List<api.Router>(); |
| 5160 o.add(buildRouter()); | 5160 o.add(buildRouter()); |
| 5161 o.add(buildRouter()); | 5161 o.add(buildRouter()); |
| 5162 return o; | 5162 return o; |
| 5163 } | 5163 } |
| 5164 | 5164 |
| 5165 checkUnnamed791(core.List<api.Router> o) { | 5165 checkUnnamed2376(core.List<api.Router> o) { |
| 5166 unittest.expect(o, unittest.hasLength(2)); | 5166 unittest.expect(o, unittest.hasLength(2)); |
| 5167 checkRouter(o[0]); | 5167 checkRouter(o[0]); |
| 5168 checkRouter(o[1]); | 5168 checkRouter(o[1]); |
| 5169 } | 5169 } |
| 5170 | 5170 |
| 5171 core.int buildCounterRouterList = 0; | 5171 core.int buildCounterRouterList = 0; |
| 5172 buildRouterList() { | 5172 buildRouterList() { |
| 5173 var o = new api.RouterList(); | 5173 var o = new api.RouterList(); |
| 5174 buildCounterRouterList++; | 5174 buildCounterRouterList++; |
| 5175 if (buildCounterRouterList < 3) { | 5175 if (buildCounterRouterList < 3) { |
| 5176 o.id = "foo"; | 5176 o.id = "foo"; |
| 5177 o.items = buildUnnamed791(); | 5177 o.items = buildUnnamed2376(); |
| 5178 o.kind = "foo"; | 5178 o.kind = "foo"; |
| 5179 o.nextPageToken = "foo"; | 5179 o.nextPageToken = "foo"; |
| 5180 o.selfLink = "foo"; | 5180 o.selfLink = "foo"; |
| 5181 } | 5181 } |
| 5182 buildCounterRouterList--; | 5182 buildCounterRouterList--; |
| 5183 return o; | 5183 return o; |
| 5184 } | 5184 } |
| 5185 | 5185 |
| 5186 checkRouterList(api.RouterList o) { | 5186 checkRouterList(api.RouterList o) { |
| 5187 buildCounterRouterList++; | 5187 buildCounterRouterList++; |
| 5188 if (buildCounterRouterList < 3) { | 5188 if (buildCounterRouterList < 3) { |
| 5189 unittest.expect(o.id, unittest.equals('foo')); | 5189 unittest.expect(o.id, unittest.equals('foo')); |
| 5190 checkUnnamed791(o.items); | 5190 checkUnnamed2376(o.items); |
| 5191 unittest.expect(o.kind, unittest.equals('foo')); | 5191 unittest.expect(o.kind, unittest.equals('foo')); |
| 5192 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5192 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5193 unittest.expect(o.selfLink, unittest.equals('foo')); | 5193 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5194 } | 5194 } |
| 5195 buildCounterRouterList--; | 5195 buildCounterRouterList--; |
| 5196 } | 5196 } |
| 5197 | 5197 |
| 5198 buildUnnamed792() { | 5198 buildUnnamed2377() { |
| 5199 var o = new core.List<api.Route>(); | 5199 var o = new core.List<api.Route>(); |
| 5200 o.add(buildRoute()); | 5200 o.add(buildRoute()); |
| 5201 o.add(buildRoute()); | 5201 o.add(buildRoute()); |
| 5202 return o; | 5202 return o; |
| 5203 } | 5203 } |
| 5204 | 5204 |
| 5205 checkUnnamed792(core.List<api.Route> o) { | 5205 checkUnnamed2377(core.List<api.Route> o) { |
| 5206 unittest.expect(o, unittest.hasLength(2)); | 5206 unittest.expect(o, unittest.hasLength(2)); |
| 5207 checkRoute(o[0]); | 5207 checkRoute(o[0]); |
| 5208 checkRoute(o[1]); | 5208 checkRoute(o[1]); |
| 5209 } | 5209 } |
| 5210 | 5210 |
| 5211 buildUnnamed793() { | 5211 buildUnnamed2378() { |
| 5212 var o = new core.List<api.RouterStatusBgpPeerStatus>(); | 5212 var o = new core.List<api.RouterStatusBgpPeerStatus>(); |
| 5213 o.add(buildRouterStatusBgpPeerStatus()); | 5213 o.add(buildRouterStatusBgpPeerStatus()); |
| 5214 o.add(buildRouterStatusBgpPeerStatus()); | 5214 o.add(buildRouterStatusBgpPeerStatus()); |
| 5215 return o; | 5215 return o; |
| 5216 } | 5216 } |
| 5217 | 5217 |
| 5218 checkUnnamed793(core.List<api.RouterStatusBgpPeerStatus> o) { | 5218 checkUnnamed2378(core.List<api.RouterStatusBgpPeerStatus> o) { |
| 5219 unittest.expect(o, unittest.hasLength(2)); | 5219 unittest.expect(o, unittest.hasLength(2)); |
| 5220 checkRouterStatusBgpPeerStatus(o[0]); | 5220 checkRouterStatusBgpPeerStatus(o[0]); |
| 5221 checkRouterStatusBgpPeerStatus(o[1]); | 5221 checkRouterStatusBgpPeerStatus(o[1]); |
| 5222 } | 5222 } |
| 5223 | 5223 |
| 5224 core.int buildCounterRouterStatus = 0; | 5224 core.int buildCounterRouterStatus = 0; |
| 5225 buildRouterStatus() { | 5225 buildRouterStatus() { |
| 5226 var o = new api.RouterStatus(); | 5226 var o = new api.RouterStatus(); |
| 5227 buildCounterRouterStatus++; | 5227 buildCounterRouterStatus++; |
| 5228 if (buildCounterRouterStatus < 3) { | 5228 if (buildCounterRouterStatus < 3) { |
| 5229 o.bestRoutes = buildUnnamed792(); | 5229 o.bestRoutes = buildUnnamed2377(); |
| 5230 o.bgpPeerStatus = buildUnnamed793(); | 5230 o.bgpPeerStatus = buildUnnamed2378(); |
| 5231 o.network = "foo"; | 5231 o.network = "foo"; |
| 5232 } | 5232 } |
| 5233 buildCounterRouterStatus--; | 5233 buildCounterRouterStatus--; |
| 5234 return o; | 5234 return o; |
| 5235 } | 5235 } |
| 5236 | 5236 |
| 5237 checkRouterStatus(api.RouterStatus o) { | 5237 checkRouterStatus(api.RouterStatus o) { |
| 5238 buildCounterRouterStatus++; | 5238 buildCounterRouterStatus++; |
| 5239 if (buildCounterRouterStatus < 3) { | 5239 if (buildCounterRouterStatus < 3) { |
| 5240 checkUnnamed792(o.bestRoutes); | 5240 checkUnnamed2377(o.bestRoutes); |
| 5241 checkUnnamed793(o.bgpPeerStatus); | 5241 checkUnnamed2378(o.bgpPeerStatus); |
| 5242 unittest.expect(o.network, unittest.equals('foo')); | 5242 unittest.expect(o.network, unittest.equals('foo')); |
| 5243 } | 5243 } |
| 5244 buildCounterRouterStatus--; | 5244 buildCounterRouterStatus--; |
| 5245 } | 5245 } |
| 5246 | 5246 |
| 5247 buildUnnamed794() { | 5247 buildUnnamed2379() { |
| 5248 var o = new core.List<api.Route>(); | 5248 var o = new core.List<api.Route>(); |
| 5249 o.add(buildRoute()); | 5249 o.add(buildRoute()); |
| 5250 o.add(buildRoute()); | 5250 o.add(buildRoute()); |
| 5251 return o; | 5251 return o; |
| 5252 } | 5252 } |
| 5253 | 5253 |
| 5254 checkUnnamed794(core.List<api.Route> o) { | 5254 checkUnnamed2379(core.List<api.Route> o) { |
| 5255 unittest.expect(o, unittest.hasLength(2)); | 5255 unittest.expect(o, unittest.hasLength(2)); |
| 5256 checkRoute(o[0]); | 5256 checkRoute(o[0]); |
| 5257 checkRoute(o[1]); | 5257 checkRoute(o[1]); |
| 5258 } | 5258 } |
| 5259 | 5259 |
| 5260 core.int buildCounterRouterStatusBgpPeerStatus = 0; | 5260 core.int buildCounterRouterStatusBgpPeerStatus = 0; |
| 5261 buildRouterStatusBgpPeerStatus() { | 5261 buildRouterStatusBgpPeerStatus() { |
| 5262 var o = new api.RouterStatusBgpPeerStatus(); | 5262 var o = new api.RouterStatusBgpPeerStatus(); |
| 5263 buildCounterRouterStatusBgpPeerStatus++; | 5263 buildCounterRouterStatusBgpPeerStatus++; |
| 5264 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 5264 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 5265 o.advertisedRoutes = buildUnnamed794(); | 5265 o.advertisedRoutes = buildUnnamed2379(); |
| 5266 o.ipAddress = "foo"; | 5266 o.ipAddress = "foo"; |
| 5267 o.linkedVpnTunnel = "foo"; | 5267 o.linkedVpnTunnel = "foo"; |
| 5268 o.name = "foo"; | 5268 o.name = "foo"; |
| 5269 o.numLearnedRoutes = 42; | 5269 o.numLearnedRoutes = 42; |
| 5270 o.peerIpAddress = "foo"; | 5270 o.peerIpAddress = "foo"; |
| 5271 o.state = "foo"; | 5271 o.state = "foo"; |
| 5272 o.status = "foo"; | 5272 o.status = "foo"; |
| 5273 o.uptime = "foo"; | 5273 o.uptime = "foo"; |
| 5274 o.uptimeSeconds = "foo"; | 5274 o.uptimeSeconds = "foo"; |
| 5275 } | 5275 } |
| 5276 buildCounterRouterStatusBgpPeerStatus--; | 5276 buildCounterRouterStatusBgpPeerStatus--; |
| 5277 return o; | 5277 return o; |
| 5278 } | 5278 } |
| 5279 | 5279 |
| 5280 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { | 5280 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { |
| 5281 buildCounterRouterStatusBgpPeerStatus++; | 5281 buildCounterRouterStatusBgpPeerStatus++; |
| 5282 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 5282 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 5283 checkUnnamed794(o.advertisedRoutes); | 5283 checkUnnamed2379(o.advertisedRoutes); |
| 5284 unittest.expect(o.ipAddress, unittest.equals('foo')); | 5284 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 5285 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 5285 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 5286 unittest.expect(o.name, unittest.equals('foo')); | 5286 unittest.expect(o.name, unittest.equals('foo')); |
| 5287 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); | 5287 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); |
| 5288 unittest.expect(o.peerIpAddress, unittest.equals('foo')); | 5288 unittest.expect(o.peerIpAddress, unittest.equals('foo')); |
| 5289 unittest.expect(o.state, unittest.equals('foo')); | 5289 unittest.expect(o.state, unittest.equals('foo')); |
| 5290 unittest.expect(o.status, unittest.equals('foo')); | 5290 unittest.expect(o.status, unittest.equals('foo')); |
| 5291 unittest.expect(o.uptime, unittest.equals('foo')); | 5291 unittest.expect(o.uptime, unittest.equals('foo')); |
| 5292 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); | 5292 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); |
| 5293 } | 5293 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 5308 | 5308 |
| 5309 checkRouterStatusResponse(api.RouterStatusResponse o) { | 5309 checkRouterStatusResponse(api.RouterStatusResponse o) { |
| 5310 buildCounterRouterStatusResponse++; | 5310 buildCounterRouterStatusResponse++; |
| 5311 if (buildCounterRouterStatusResponse < 3) { | 5311 if (buildCounterRouterStatusResponse < 3) { |
| 5312 unittest.expect(o.kind, unittest.equals('foo')); | 5312 unittest.expect(o.kind, unittest.equals('foo')); |
| 5313 checkRouterStatus(o.result); | 5313 checkRouterStatus(o.result); |
| 5314 } | 5314 } |
| 5315 buildCounterRouterStatusResponse--; | 5315 buildCounterRouterStatusResponse--; |
| 5316 } | 5316 } |
| 5317 | 5317 |
| 5318 buildUnnamed795() { | 5318 buildUnnamed2380() { |
| 5319 var o = new core.List<api.Router>(); | 5319 var o = new core.List<api.Router>(); |
| 5320 o.add(buildRouter()); | 5320 o.add(buildRouter()); |
| 5321 o.add(buildRouter()); | 5321 o.add(buildRouter()); |
| 5322 return o; | 5322 return o; |
| 5323 } | 5323 } |
| 5324 | 5324 |
| 5325 checkUnnamed795(core.List<api.Router> o) { | 5325 checkUnnamed2380(core.List<api.Router> o) { |
| 5326 unittest.expect(o, unittest.hasLength(2)); | 5326 unittest.expect(o, unittest.hasLength(2)); |
| 5327 checkRouter(o[0]); | 5327 checkRouter(o[0]); |
| 5328 checkRouter(o[1]); | 5328 checkRouter(o[1]); |
| 5329 } | 5329 } |
| 5330 | 5330 |
| 5331 core.int buildCounterRoutersScopedListWarningData = 0; | 5331 core.int buildCounterRoutersScopedListWarningData = 0; |
| 5332 buildRoutersScopedListWarningData() { | 5332 buildRoutersScopedListWarningData() { |
| 5333 var o = new api.RoutersScopedListWarningData(); | 5333 var o = new api.RoutersScopedListWarningData(); |
| 5334 buildCounterRoutersScopedListWarningData++; | 5334 buildCounterRoutersScopedListWarningData++; |
| 5335 if (buildCounterRoutersScopedListWarningData < 3) { | 5335 if (buildCounterRoutersScopedListWarningData < 3) { |
| 5336 o.key = "foo"; | 5336 o.key = "foo"; |
| 5337 o.value = "foo"; | 5337 o.value = "foo"; |
| 5338 } | 5338 } |
| 5339 buildCounterRoutersScopedListWarningData--; | 5339 buildCounterRoutersScopedListWarningData--; |
| 5340 return o; | 5340 return o; |
| 5341 } | 5341 } |
| 5342 | 5342 |
| 5343 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { | 5343 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { |
| 5344 buildCounterRoutersScopedListWarningData++; | 5344 buildCounterRoutersScopedListWarningData++; |
| 5345 if (buildCounterRoutersScopedListWarningData < 3) { | 5345 if (buildCounterRoutersScopedListWarningData < 3) { |
| 5346 unittest.expect(o.key, unittest.equals('foo')); | 5346 unittest.expect(o.key, unittest.equals('foo')); |
| 5347 unittest.expect(o.value, unittest.equals('foo')); | 5347 unittest.expect(o.value, unittest.equals('foo')); |
| 5348 } | 5348 } |
| 5349 buildCounterRoutersScopedListWarningData--; | 5349 buildCounterRoutersScopedListWarningData--; |
| 5350 } | 5350 } |
| 5351 | 5351 |
| 5352 buildUnnamed796() { | 5352 buildUnnamed2381() { |
| 5353 var o = new core.List<api.RoutersScopedListWarningData>(); | 5353 var o = new core.List<api.RoutersScopedListWarningData>(); |
| 5354 o.add(buildRoutersScopedListWarningData()); | 5354 o.add(buildRoutersScopedListWarningData()); |
| 5355 o.add(buildRoutersScopedListWarningData()); | 5355 o.add(buildRoutersScopedListWarningData()); |
| 5356 return o; | 5356 return o; |
| 5357 } | 5357 } |
| 5358 | 5358 |
| 5359 checkUnnamed796(core.List<api.RoutersScopedListWarningData> o) { | 5359 checkUnnamed2381(core.List<api.RoutersScopedListWarningData> o) { |
| 5360 unittest.expect(o, unittest.hasLength(2)); | 5360 unittest.expect(o, unittest.hasLength(2)); |
| 5361 checkRoutersScopedListWarningData(o[0]); | 5361 checkRoutersScopedListWarningData(o[0]); |
| 5362 checkRoutersScopedListWarningData(o[1]); | 5362 checkRoutersScopedListWarningData(o[1]); |
| 5363 } | 5363 } |
| 5364 | 5364 |
| 5365 core.int buildCounterRoutersScopedListWarning = 0; | 5365 core.int buildCounterRoutersScopedListWarning = 0; |
| 5366 buildRoutersScopedListWarning() { | 5366 buildRoutersScopedListWarning() { |
| 5367 var o = new api.RoutersScopedListWarning(); | 5367 var o = new api.RoutersScopedListWarning(); |
| 5368 buildCounterRoutersScopedListWarning++; | 5368 buildCounterRoutersScopedListWarning++; |
| 5369 if (buildCounterRoutersScopedListWarning < 3) { | 5369 if (buildCounterRoutersScopedListWarning < 3) { |
| 5370 o.code = "foo"; | 5370 o.code = "foo"; |
| 5371 o.data = buildUnnamed796(); | 5371 o.data = buildUnnamed2381(); |
| 5372 o.message = "foo"; | 5372 o.message = "foo"; |
| 5373 } | 5373 } |
| 5374 buildCounterRoutersScopedListWarning--; | 5374 buildCounterRoutersScopedListWarning--; |
| 5375 return o; | 5375 return o; |
| 5376 } | 5376 } |
| 5377 | 5377 |
| 5378 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { | 5378 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { |
| 5379 buildCounterRoutersScopedListWarning++; | 5379 buildCounterRoutersScopedListWarning++; |
| 5380 if (buildCounterRoutersScopedListWarning < 3) { | 5380 if (buildCounterRoutersScopedListWarning < 3) { |
| 5381 unittest.expect(o.code, unittest.equals('foo')); | 5381 unittest.expect(o.code, unittest.equals('foo')); |
| 5382 checkUnnamed796(o.data); | 5382 checkUnnamed2381(o.data); |
| 5383 unittest.expect(o.message, unittest.equals('foo')); | 5383 unittest.expect(o.message, unittest.equals('foo')); |
| 5384 } | 5384 } |
| 5385 buildCounterRoutersScopedListWarning--; | 5385 buildCounterRoutersScopedListWarning--; |
| 5386 } | 5386 } |
| 5387 | 5387 |
| 5388 core.int buildCounterRoutersScopedList = 0; | 5388 core.int buildCounterRoutersScopedList = 0; |
| 5389 buildRoutersScopedList() { | 5389 buildRoutersScopedList() { |
| 5390 var o = new api.RoutersScopedList(); | 5390 var o = new api.RoutersScopedList(); |
| 5391 buildCounterRoutersScopedList++; | 5391 buildCounterRoutersScopedList++; |
| 5392 if (buildCounterRoutersScopedList < 3) { | 5392 if (buildCounterRoutersScopedList < 3) { |
| 5393 o.routers = buildUnnamed795(); | 5393 o.routers = buildUnnamed2380(); |
| 5394 o.warning = buildRoutersScopedListWarning(); | 5394 o.warning = buildRoutersScopedListWarning(); |
| 5395 } | 5395 } |
| 5396 buildCounterRoutersScopedList--; | 5396 buildCounterRoutersScopedList--; |
| 5397 return o; | 5397 return o; |
| 5398 } | 5398 } |
| 5399 | 5399 |
| 5400 checkRoutersScopedList(api.RoutersScopedList o) { | 5400 checkRoutersScopedList(api.RoutersScopedList o) { |
| 5401 buildCounterRoutersScopedList++; | 5401 buildCounterRoutersScopedList++; |
| 5402 if (buildCounterRoutersScopedList < 3) { | 5402 if (buildCounterRoutersScopedList < 3) { |
| 5403 checkUnnamed795(o.routers); | 5403 checkUnnamed2380(o.routers); |
| 5404 checkRoutersScopedListWarning(o.warning); | 5404 checkRoutersScopedListWarning(o.warning); |
| 5405 } | 5405 } |
| 5406 buildCounterRoutersScopedList--; | 5406 buildCounterRoutersScopedList--; |
| 5407 } | 5407 } |
| 5408 | 5408 |
| 5409 core.int buildCounterScheduling = 0; | 5409 core.int buildCounterScheduling = 0; |
| 5410 buildScheduling() { | 5410 buildScheduling() { |
| 5411 var o = new api.Scheduling(); | 5411 var o = new api.Scheduling(); |
| 5412 buildCounterScheduling++; | 5412 buildCounterScheduling++; |
| 5413 if (buildCounterScheduling < 3) { | 5413 if (buildCounterScheduling < 3) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5445 checkSerialPortOutput(api.SerialPortOutput o) { | 5445 checkSerialPortOutput(api.SerialPortOutput o) { |
| 5446 buildCounterSerialPortOutput++; | 5446 buildCounterSerialPortOutput++; |
| 5447 if (buildCounterSerialPortOutput < 3) { | 5447 if (buildCounterSerialPortOutput < 3) { |
| 5448 unittest.expect(o.contents, unittest.equals('foo')); | 5448 unittest.expect(o.contents, unittest.equals('foo')); |
| 5449 unittest.expect(o.kind, unittest.equals('foo')); | 5449 unittest.expect(o.kind, unittest.equals('foo')); |
| 5450 unittest.expect(o.selfLink, unittest.equals('foo')); | 5450 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5451 } | 5451 } |
| 5452 buildCounterSerialPortOutput--; | 5452 buildCounterSerialPortOutput--; |
| 5453 } | 5453 } |
| 5454 | 5454 |
| 5455 buildUnnamed797() { | 5455 buildUnnamed2382() { |
| 5456 var o = new core.List<core.String>(); | 5456 var o = new core.List<core.String>(); |
| 5457 o.add("foo"); | 5457 o.add("foo"); |
| 5458 o.add("foo"); | 5458 o.add("foo"); |
| 5459 return o; | 5459 return o; |
| 5460 } | 5460 } |
| 5461 | 5461 |
| 5462 checkUnnamed797(core.List<core.String> o) { | 5462 checkUnnamed2382(core.List<core.String> o) { |
| 5463 unittest.expect(o, unittest.hasLength(2)); | 5463 unittest.expect(o, unittest.hasLength(2)); |
| 5464 unittest.expect(o[0], unittest.equals('foo')); | 5464 unittest.expect(o[0], unittest.equals('foo')); |
| 5465 unittest.expect(o[1], unittest.equals('foo')); | 5465 unittest.expect(o[1], unittest.equals('foo')); |
| 5466 } | 5466 } |
| 5467 | 5467 |
| 5468 core.int buildCounterServiceAccount = 0; | 5468 core.int buildCounterServiceAccount = 0; |
| 5469 buildServiceAccount() { | 5469 buildServiceAccount() { |
| 5470 var o = new api.ServiceAccount(); | 5470 var o = new api.ServiceAccount(); |
| 5471 buildCounterServiceAccount++; | 5471 buildCounterServiceAccount++; |
| 5472 if (buildCounterServiceAccount < 3) { | 5472 if (buildCounterServiceAccount < 3) { |
| 5473 o.email = "foo"; | 5473 o.email = "foo"; |
| 5474 o.scopes = buildUnnamed797(); | 5474 o.scopes = buildUnnamed2382(); |
| 5475 } | 5475 } |
| 5476 buildCounterServiceAccount--; | 5476 buildCounterServiceAccount--; |
| 5477 return o; | 5477 return o; |
| 5478 } | 5478 } |
| 5479 | 5479 |
| 5480 checkServiceAccount(api.ServiceAccount o) { | 5480 checkServiceAccount(api.ServiceAccount o) { |
| 5481 buildCounterServiceAccount++; | 5481 buildCounterServiceAccount++; |
| 5482 if (buildCounterServiceAccount < 3) { | 5482 if (buildCounterServiceAccount < 3) { |
| 5483 unittest.expect(o.email, unittest.equals('foo')); | 5483 unittest.expect(o.email, unittest.equals('foo')); |
| 5484 checkUnnamed797(o.scopes); | 5484 checkUnnamed2382(o.scopes); |
| 5485 } | 5485 } |
| 5486 buildCounterServiceAccount--; | 5486 buildCounterServiceAccount--; |
| 5487 } | 5487 } |
| 5488 | 5488 |
| 5489 buildUnnamed798() { | 5489 buildUnnamed2383() { |
| 5490 var o = new core.List<core.String>(); | 5490 var o = new core.List<core.String>(); |
| 5491 o.add("foo"); | 5491 o.add("foo"); |
| 5492 o.add("foo"); | 5492 o.add("foo"); |
| 5493 return o; | 5493 return o; |
| 5494 } | 5494 } |
| 5495 | 5495 |
| 5496 checkUnnamed798(core.List<core.String> o) { | 5496 checkUnnamed2383(core.List<core.String> o) { |
| 5497 unittest.expect(o, unittest.hasLength(2)); | 5497 unittest.expect(o, unittest.hasLength(2)); |
| 5498 unittest.expect(o[0], unittest.equals('foo')); | 5498 unittest.expect(o[0], unittest.equals('foo')); |
| 5499 unittest.expect(o[1], unittest.equals('foo')); | 5499 unittest.expect(o[1], unittest.equals('foo')); |
| 5500 } | 5500 } |
| 5501 | 5501 |
| 5502 core.int buildCounterSnapshot = 0; | 5502 core.int buildCounterSnapshot = 0; |
| 5503 buildSnapshot() { | 5503 buildSnapshot() { |
| 5504 var o = new api.Snapshot(); | 5504 var o = new api.Snapshot(); |
| 5505 buildCounterSnapshot++; | 5505 buildCounterSnapshot++; |
| 5506 if (buildCounterSnapshot < 3) { | 5506 if (buildCounterSnapshot < 3) { |
| 5507 o.creationTimestamp = "foo"; | 5507 o.creationTimestamp = "foo"; |
| 5508 o.description = "foo"; | 5508 o.description = "foo"; |
| 5509 o.diskSizeGb = "foo"; | 5509 o.diskSizeGb = "foo"; |
| 5510 o.id = "foo"; | 5510 o.id = "foo"; |
| 5511 o.kind = "foo"; | 5511 o.kind = "foo"; |
| 5512 o.licenses = buildUnnamed798(); | 5512 o.licenses = buildUnnamed2383(); |
| 5513 o.name = "foo"; | 5513 o.name = "foo"; |
| 5514 o.selfLink = "foo"; | 5514 o.selfLink = "foo"; |
| 5515 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); | 5515 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 5516 o.sourceDisk = "foo"; | 5516 o.sourceDisk = "foo"; |
| 5517 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 5517 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 5518 o.sourceDiskId = "foo"; | 5518 o.sourceDiskId = "foo"; |
| 5519 o.status = "foo"; | 5519 o.status = "foo"; |
| 5520 o.storageBytes = "foo"; | 5520 o.storageBytes = "foo"; |
| 5521 o.storageBytesStatus = "foo"; | 5521 o.storageBytesStatus = "foo"; |
| 5522 } | 5522 } |
| 5523 buildCounterSnapshot--; | 5523 buildCounterSnapshot--; |
| 5524 return o; | 5524 return o; |
| 5525 } | 5525 } |
| 5526 | 5526 |
| 5527 checkSnapshot(api.Snapshot o) { | 5527 checkSnapshot(api.Snapshot o) { |
| 5528 buildCounterSnapshot++; | 5528 buildCounterSnapshot++; |
| 5529 if (buildCounterSnapshot < 3) { | 5529 if (buildCounterSnapshot < 3) { |
| 5530 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5530 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5531 unittest.expect(o.description, unittest.equals('foo')); | 5531 unittest.expect(o.description, unittest.equals('foo')); |
| 5532 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 5532 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 5533 unittest.expect(o.id, unittest.equals('foo')); | 5533 unittest.expect(o.id, unittest.equals('foo')); |
| 5534 unittest.expect(o.kind, unittest.equals('foo')); | 5534 unittest.expect(o.kind, unittest.equals('foo')); |
| 5535 checkUnnamed798(o.licenses); | 5535 checkUnnamed2383(o.licenses); |
| 5536 unittest.expect(o.name, unittest.equals('foo')); | 5536 unittest.expect(o.name, unittest.equals('foo')); |
| 5537 unittest.expect(o.selfLink, unittest.equals('foo')); | 5537 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5538 checkCustomerEncryptionKey(o.snapshotEncryptionKey); | 5538 checkCustomerEncryptionKey(o.snapshotEncryptionKey); |
| 5539 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 5539 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 5540 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 5540 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 5541 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 5541 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 5542 unittest.expect(o.status, unittest.equals('foo')); | 5542 unittest.expect(o.status, unittest.equals('foo')); |
| 5543 unittest.expect(o.storageBytes, unittest.equals('foo')); | 5543 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 5544 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 5544 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 5545 } | 5545 } |
| 5546 buildCounterSnapshot--; | 5546 buildCounterSnapshot--; |
| 5547 } | 5547 } |
| 5548 | 5548 |
| 5549 buildUnnamed799() { | 5549 buildUnnamed2384() { |
| 5550 var o = new core.List<api.Snapshot>(); | 5550 var o = new core.List<api.Snapshot>(); |
| 5551 o.add(buildSnapshot()); | 5551 o.add(buildSnapshot()); |
| 5552 o.add(buildSnapshot()); | 5552 o.add(buildSnapshot()); |
| 5553 return o; | 5553 return o; |
| 5554 } | 5554 } |
| 5555 | 5555 |
| 5556 checkUnnamed799(core.List<api.Snapshot> o) { | 5556 checkUnnamed2384(core.List<api.Snapshot> o) { |
| 5557 unittest.expect(o, unittest.hasLength(2)); | 5557 unittest.expect(o, unittest.hasLength(2)); |
| 5558 checkSnapshot(o[0]); | 5558 checkSnapshot(o[0]); |
| 5559 checkSnapshot(o[1]); | 5559 checkSnapshot(o[1]); |
| 5560 } | 5560 } |
| 5561 | 5561 |
| 5562 core.int buildCounterSnapshotList = 0; | 5562 core.int buildCounterSnapshotList = 0; |
| 5563 buildSnapshotList() { | 5563 buildSnapshotList() { |
| 5564 var o = new api.SnapshotList(); | 5564 var o = new api.SnapshotList(); |
| 5565 buildCounterSnapshotList++; | 5565 buildCounterSnapshotList++; |
| 5566 if (buildCounterSnapshotList < 3) { | 5566 if (buildCounterSnapshotList < 3) { |
| 5567 o.id = "foo"; | 5567 o.id = "foo"; |
| 5568 o.items = buildUnnamed799(); | 5568 o.items = buildUnnamed2384(); |
| 5569 o.kind = "foo"; | 5569 o.kind = "foo"; |
| 5570 o.nextPageToken = "foo"; | 5570 o.nextPageToken = "foo"; |
| 5571 o.selfLink = "foo"; | 5571 o.selfLink = "foo"; |
| 5572 } | 5572 } |
| 5573 buildCounterSnapshotList--; | 5573 buildCounterSnapshotList--; |
| 5574 return o; | 5574 return o; |
| 5575 } | 5575 } |
| 5576 | 5576 |
| 5577 checkSnapshotList(api.SnapshotList o) { | 5577 checkSnapshotList(api.SnapshotList o) { |
| 5578 buildCounterSnapshotList++; | 5578 buildCounterSnapshotList++; |
| 5579 if (buildCounterSnapshotList < 3) { | 5579 if (buildCounterSnapshotList < 3) { |
| 5580 unittest.expect(o.id, unittest.equals('foo')); | 5580 unittest.expect(o.id, unittest.equals('foo')); |
| 5581 checkUnnamed799(o.items); | 5581 checkUnnamed2384(o.items); |
| 5582 unittest.expect(o.kind, unittest.equals('foo')); | 5582 unittest.expect(o.kind, unittest.equals('foo')); |
| 5583 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5583 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5584 unittest.expect(o.selfLink, unittest.equals('foo')); | 5584 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5585 } | 5585 } |
| 5586 buildCounterSnapshotList--; | 5586 buildCounterSnapshotList--; |
| 5587 } | 5587 } |
| 5588 | 5588 |
| 5589 core.int buildCounterSslCertificate = 0; | 5589 core.int buildCounterSslCertificate = 0; |
| 5590 buildSslCertificate() { | 5590 buildSslCertificate() { |
| 5591 var o = new api.SslCertificate(); | 5591 var o = new api.SslCertificate(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 5612 unittest.expect(o.description, unittest.equals('foo')); | 5612 unittest.expect(o.description, unittest.equals('foo')); |
| 5613 unittest.expect(o.id, unittest.equals('foo')); | 5613 unittest.expect(o.id, unittest.equals('foo')); |
| 5614 unittest.expect(o.kind, unittest.equals('foo')); | 5614 unittest.expect(o.kind, unittest.equals('foo')); |
| 5615 unittest.expect(o.name, unittest.equals('foo')); | 5615 unittest.expect(o.name, unittest.equals('foo')); |
| 5616 unittest.expect(o.privateKey, unittest.equals('foo')); | 5616 unittest.expect(o.privateKey, unittest.equals('foo')); |
| 5617 unittest.expect(o.selfLink, unittest.equals('foo')); | 5617 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5618 } | 5618 } |
| 5619 buildCounterSslCertificate--; | 5619 buildCounterSslCertificate--; |
| 5620 } | 5620 } |
| 5621 | 5621 |
| 5622 buildUnnamed800() { | 5622 buildUnnamed2385() { |
| 5623 var o = new core.List<api.SslCertificate>(); | 5623 var o = new core.List<api.SslCertificate>(); |
| 5624 o.add(buildSslCertificate()); | 5624 o.add(buildSslCertificate()); |
| 5625 o.add(buildSslCertificate()); | 5625 o.add(buildSslCertificate()); |
| 5626 return o; | 5626 return o; |
| 5627 } | 5627 } |
| 5628 | 5628 |
| 5629 checkUnnamed800(core.List<api.SslCertificate> o) { | 5629 checkUnnamed2385(core.List<api.SslCertificate> o) { |
| 5630 unittest.expect(o, unittest.hasLength(2)); | 5630 unittest.expect(o, unittest.hasLength(2)); |
| 5631 checkSslCertificate(o[0]); | 5631 checkSslCertificate(o[0]); |
| 5632 checkSslCertificate(o[1]); | 5632 checkSslCertificate(o[1]); |
| 5633 } | 5633 } |
| 5634 | 5634 |
| 5635 core.int buildCounterSslCertificateList = 0; | 5635 core.int buildCounterSslCertificateList = 0; |
| 5636 buildSslCertificateList() { | 5636 buildSslCertificateList() { |
| 5637 var o = new api.SslCertificateList(); | 5637 var o = new api.SslCertificateList(); |
| 5638 buildCounterSslCertificateList++; | 5638 buildCounterSslCertificateList++; |
| 5639 if (buildCounterSslCertificateList < 3) { | 5639 if (buildCounterSslCertificateList < 3) { |
| 5640 o.id = "foo"; | 5640 o.id = "foo"; |
| 5641 o.items = buildUnnamed800(); | 5641 o.items = buildUnnamed2385(); |
| 5642 o.kind = "foo"; | 5642 o.kind = "foo"; |
| 5643 o.nextPageToken = "foo"; | 5643 o.nextPageToken = "foo"; |
| 5644 o.selfLink = "foo"; | 5644 o.selfLink = "foo"; |
| 5645 } | 5645 } |
| 5646 buildCounterSslCertificateList--; | 5646 buildCounterSslCertificateList--; |
| 5647 return o; | 5647 return o; |
| 5648 } | 5648 } |
| 5649 | 5649 |
| 5650 checkSslCertificateList(api.SslCertificateList o) { | 5650 checkSslCertificateList(api.SslCertificateList o) { |
| 5651 buildCounterSslCertificateList++; | 5651 buildCounterSslCertificateList++; |
| 5652 if (buildCounterSslCertificateList < 3) { | 5652 if (buildCounterSslCertificateList < 3) { |
| 5653 unittest.expect(o.id, unittest.equals('foo')); | 5653 unittest.expect(o.id, unittest.equals('foo')); |
| 5654 checkUnnamed800(o.items); | 5654 checkUnnamed2385(o.items); |
| 5655 unittest.expect(o.kind, unittest.equals('foo')); | 5655 unittest.expect(o.kind, unittest.equals('foo')); |
| 5656 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5656 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5657 unittest.expect(o.selfLink, unittest.equals('foo')); | 5657 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5658 } | 5658 } |
| 5659 buildCounterSslCertificateList--; | 5659 buildCounterSslCertificateList--; |
| 5660 } | 5660 } |
| 5661 | 5661 |
| 5662 core.int buildCounterSubnetwork = 0; | 5662 core.int buildCounterSubnetwork = 0; |
| 5663 buildSubnetwork() { | 5663 buildSubnetwork() { |
| 5664 var o = new api.Subnetwork(); | 5664 var o = new api.Subnetwork(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5689 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 5689 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 5690 unittest.expect(o.kind, unittest.equals('foo')); | 5690 unittest.expect(o.kind, unittest.equals('foo')); |
| 5691 unittest.expect(o.name, unittest.equals('foo')); | 5691 unittest.expect(o.name, unittest.equals('foo')); |
| 5692 unittest.expect(o.network, unittest.equals('foo')); | 5692 unittest.expect(o.network, unittest.equals('foo')); |
| 5693 unittest.expect(o.region, unittest.equals('foo')); | 5693 unittest.expect(o.region, unittest.equals('foo')); |
| 5694 unittest.expect(o.selfLink, unittest.equals('foo')); | 5694 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5695 } | 5695 } |
| 5696 buildCounterSubnetwork--; | 5696 buildCounterSubnetwork--; |
| 5697 } | 5697 } |
| 5698 | 5698 |
| 5699 buildUnnamed801() { | 5699 buildUnnamed2386() { |
| 5700 var o = new core.Map<core.String, api.SubnetworksScopedList>(); | 5700 var o = new core.Map<core.String, api.SubnetworksScopedList>(); |
| 5701 o["x"] = buildSubnetworksScopedList(); | 5701 o["x"] = buildSubnetworksScopedList(); |
| 5702 o["y"] = buildSubnetworksScopedList(); | 5702 o["y"] = buildSubnetworksScopedList(); |
| 5703 return o; | 5703 return o; |
| 5704 } | 5704 } |
| 5705 | 5705 |
| 5706 checkUnnamed801(core.Map<core.String, api.SubnetworksScopedList> o) { | 5706 checkUnnamed2386(core.Map<core.String, api.SubnetworksScopedList> o) { |
| 5707 unittest.expect(o, unittest.hasLength(2)); | 5707 unittest.expect(o, unittest.hasLength(2)); |
| 5708 checkSubnetworksScopedList(o["x"]); | 5708 checkSubnetworksScopedList(o["x"]); |
| 5709 checkSubnetworksScopedList(o["y"]); | 5709 checkSubnetworksScopedList(o["y"]); |
| 5710 } | 5710 } |
| 5711 | 5711 |
| 5712 core.int buildCounterSubnetworkAggregatedList = 0; | 5712 core.int buildCounterSubnetworkAggregatedList = 0; |
| 5713 buildSubnetworkAggregatedList() { | 5713 buildSubnetworkAggregatedList() { |
| 5714 var o = new api.SubnetworkAggregatedList(); | 5714 var o = new api.SubnetworkAggregatedList(); |
| 5715 buildCounterSubnetworkAggregatedList++; | 5715 buildCounterSubnetworkAggregatedList++; |
| 5716 if (buildCounterSubnetworkAggregatedList < 3) { | 5716 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5717 o.id = "foo"; | 5717 o.id = "foo"; |
| 5718 o.items = buildUnnamed801(); | 5718 o.items = buildUnnamed2386(); |
| 5719 o.kind = "foo"; | 5719 o.kind = "foo"; |
| 5720 o.nextPageToken = "foo"; | 5720 o.nextPageToken = "foo"; |
| 5721 o.selfLink = "foo"; | 5721 o.selfLink = "foo"; |
| 5722 } | 5722 } |
| 5723 buildCounterSubnetworkAggregatedList--; | 5723 buildCounterSubnetworkAggregatedList--; |
| 5724 return o; | 5724 return o; |
| 5725 } | 5725 } |
| 5726 | 5726 |
| 5727 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { | 5727 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { |
| 5728 buildCounterSubnetworkAggregatedList++; | 5728 buildCounterSubnetworkAggregatedList++; |
| 5729 if (buildCounterSubnetworkAggregatedList < 3) { | 5729 if (buildCounterSubnetworkAggregatedList < 3) { |
| 5730 unittest.expect(o.id, unittest.equals('foo')); | 5730 unittest.expect(o.id, unittest.equals('foo')); |
| 5731 checkUnnamed801(o.items); | 5731 checkUnnamed2386(o.items); |
| 5732 unittest.expect(o.kind, unittest.equals('foo')); | 5732 unittest.expect(o.kind, unittest.equals('foo')); |
| 5733 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5733 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5734 unittest.expect(o.selfLink, unittest.equals('foo')); | 5734 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5735 } | 5735 } |
| 5736 buildCounterSubnetworkAggregatedList--; | 5736 buildCounterSubnetworkAggregatedList--; |
| 5737 } | 5737 } |
| 5738 | 5738 |
| 5739 buildUnnamed802() { | 5739 buildUnnamed2387() { |
| 5740 var o = new core.List<api.Subnetwork>(); | 5740 var o = new core.List<api.Subnetwork>(); |
| 5741 o.add(buildSubnetwork()); | 5741 o.add(buildSubnetwork()); |
| 5742 o.add(buildSubnetwork()); | 5742 o.add(buildSubnetwork()); |
| 5743 return o; | 5743 return o; |
| 5744 } | 5744 } |
| 5745 | 5745 |
| 5746 checkUnnamed802(core.List<api.Subnetwork> o) { | 5746 checkUnnamed2387(core.List<api.Subnetwork> o) { |
| 5747 unittest.expect(o, unittest.hasLength(2)); | 5747 unittest.expect(o, unittest.hasLength(2)); |
| 5748 checkSubnetwork(o[0]); | 5748 checkSubnetwork(o[0]); |
| 5749 checkSubnetwork(o[1]); | 5749 checkSubnetwork(o[1]); |
| 5750 } | 5750 } |
| 5751 | 5751 |
| 5752 core.int buildCounterSubnetworkList = 0; | 5752 core.int buildCounterSubnetworkList = 0; |
| 5753 buildSubnetworkList() { | 5753 buildSubnetworkList() { |
| 5754 var o = new api.SubnetworkList(); | 5754 var o = new api.SubnetworkList(); |
| 5755 buildCounterSubnetworkList++; | 5755 buildCounterSubnetworkList++; |
| 5756 if (buildCounterSubnetworkList < 3) { | 5756 if (buildCounterSubnetworkList < 3) { |
| 5757 o.id = "foo"; | 5757 o.id = "foo"; |
| 5758 o.items = buildUnnamed802(); | 5758 o.items = buildUnnamed2387(); |
| 5759 o.kind = "foo"; | 5759 o.kind = "foo"; |
| 5760 o.nextPageToken = "foo"; | 5760 o.nextPageToken = "foo"; |
| 5761 o.selfLink = "foo"; | 5761 o.selfLink = "foo"; |
| 5762 } | 5762 } |
| 5763 buildCounterSubnetworkList--; | 5763 buildCounterSubnetworkList--; |
| 5764 return o; | 5764 return o; |
| 5765 } | 5765 } |
| 5766 | 5766 |
| 5767 checkSubnetworkList(api.SubnetworkList o) { | 5767 checkSubnetworkList(api.SubnetworkList o) { |
| 5768 buildCounterSubnetworkList++; | 5768 buildCounterSubnetworkList++; |
| 5769 if (buildCounterSubnetworkList < 3) { | 5769 if (buildCounterSubnetworkList < 3) { |
| 5770 unittest.expect(o.id, unittest.equals('foo')); | 5770 unittest.expect(o.id, unittest.equals('foo')); |
| 5771 checkUnnamed802(o.items); | 5771 checkUnnamed2387(o.items); |
| 5772 unittest.expect(o.kind, unittest.equals('foo')); | 5772 unittest.expect(o.kind, unittest.equals('foo')); |
| 5773 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5773 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5774 unittest.expect(o.selfLink, unittest.equals('foo')); | 5774 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5775 } | 5775 } |
| 5776 buildCounterSubnetworkList--; | 5776 buildCounterSubnetworkList--; |
| 5777 } | 5777 } |
| 5778 | 5778 |
| 5779 buildUnnamed803() { | 5779 buildUnnamed2388() { |
| 5780 var o = new core.List<api.Subnetwork>(); | 5780 var o = new core.List<api.Subnetwork>(); |
| 5781 o.add(buildSubnetwork()); | 5781 o.add(buildSubnetwork()); |
| 5782 o.add(buildSubnetwork()); | 5782 o.add(buildSubnetwork()); |
| 5783 return o; | 5783 return o; |
| 5784 } | 5784 } |
| 5785 | 5785 |
| 5786 checkUnnamed803(core.List<api.Subnetwork> o) { | 5786 checkUnnamed2388(core.List<api.Subnetwork> o) { |
| 5787 unittest.expect(o, unittest.hasLength(2)); | 5787 unittest.expect(o, unittest.hasLength(2)); |
| 5788 checkSubnetwork(o[0]); | 5788 checkSubnetwork(o[0]); |
| 5789 checkSubnetwork(o[1]); | 5789 checkSubnetwork(o[1]); |
| 5790 } | 5790 } |
| 5791 | 5791 |
| 5792 core.int buildCounterSubnetworksScopedListWarningData = 0; | 5792 core.int buildCounterSubnetworksScopedListWarningData = 0; |
| 5793 buildSubnetworksScopedListWarningData() { | 5793 buildSubnetworksScopedListWarningData() { |
| 5794 var o = new api.SubnetworksScopedListWarningData(); | 5794 var o = new api.SubnetworksScopedListWarningData(); |
| 5795 buildCounterSubnetworksScopedListWarningData++; | 5795 buildCounterSubnetworksScopedListWarningData++; |
| 5796 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5796 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5797 o.key = "foo"; | 5797 o.key = "foo"; |
| 5798 o.value = "foo"; | 5798 o.value = "foo"; |
| 5799 } | 5799 } |
| 5800 buildCounterSubnetworksScopedListWarningData--; | 5800 buildCounterSubnetworksScopedListWarningData--; |
| 5801 return o; | 5801 return o; |
| 5802 } | 5802 } |
| 5803 | 5803 |
| 5804 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { | 5804 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { |
| 5805 buildCounterSubnetworksScopedListWarningData++; | 5805 buildCounterSubnetworksScopedListWarningData++; |
| 5806 if (buildCounterSubnetworksScopedListWarningData < 3) { | 5806 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 5807 unittest.expect(o.key, unittest.equals('foo')); | 5807 unittest.expect(o.key, unittest.equals('foo')); |
| 5808 unittest.expect(o.value, unittest.equals('foo')); | 5808 unittest.expect(o.value, unittest.equals('foo')); |
| 5809 } | 5809 } |
| 5810 buildCounterSubnetworksScopedListWarningData--; | 5810 buildCounterSubnetworksScopedListWarningData--; |
| 5811 } | 5811 } |
| 5812 | 5812 |
| 5813 buildUnnamed804() { | 5813 buildUnnamed2389() { |
| 5814 var o = new core.List<api.SubnetworksScopedListWarningData>(); | 5814 var o = new core.List<api.SubnetworksScopedListWarningData>(); |
| 5815 o.add(buildSubnetworksScopedListWarningData()); | 5815 o.add(buildSubnetworksScopedListWarningData()); |
| 5816 o.add(buildSubnetworksScopedListWarningData()); | 5816 o.add(buildSubnetworksScopedListWarningData()); |
| 5817 return o; | 5817 return o; |
| 5818 } | 5818 } |
| 5819 | 5819 |
| 5820 checkUnnamed804(core.List<api.SubnetworksScopedListWarningData> o) { | 5820 checkUnnamed2389(core.List<api.SubnetworksScopedListWarningData> o) { |
| 5821 unittest.expect(o, unittest.hasLength(2)); | 5821 unittest.expect(o, unittest.hasLength(2)); |
| 5822 checkSubnetworksScopedListWarningData(o[0]); | 5822 checkSubnetworksScopedListWarningData(o[0]); |
| 5823 checkSubnetworksScopedListWarningData(o[1]); | 5823 checkSubnetworksScopedListWarningData(o[1]); |
| 5824 } | 5824 } |
| 5825 | 5825 |
| 5826 core.int buildCounterSubnetworksScopedListWarning = 0; | 5826 core.int buildCounterSubnetworksScopedListWarning = 0; |
| 5827 buildSubnetworksScopedListWarning() { | 5827 buildSubnetworksScopedListWarning() { |
| 5828 var o = new api.SubnetworksScopedListWarning(); | 5828 var o = new api.SubnetworksScopedListWarning(); |
| 5829 buildCounterSubnetworksScopedListWarning++; | 5829 buildCounterSubnetworksScopedListWarning++; |
| 5830 if (buildCounterSubnetworksScopedListWarning < 3) { | 5830 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5831 o.code = "foo"; | 5831 o.code = "foo"; |
| 5832 o.data = buildUnnamed804(); | 5832 o.data = buildUnnamed2389(); |
| 5833 o.message = "foo"; | 5833 o.message = "foo"; |
| 5834 } | 5834 } |
| 5835 buildCounterSubnetworksScopedListWarning--; | 5835 buildCounterSubnetworksScopedListWarning--; |
| 5836 return o; | 5836 return o; |
| 5837 } | 5837 } |
| 5838 | 5838 |
| 5839 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { | 5839 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { |
| 5840 buildCounterSubnetworksScopedListWarning++; | 5840 buildCounterSubnetworksScopedListWarning++; |
| 5841 if (buildCounterSubnetworksScopedListWarning < 3) { | 5841 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 5842 unittest.expect(o.code, unittest.equals('foo')); | 5842 unittest.expect(o.code, unittest.equals('foo')); |
| 5843 checkUnnamed804(o.data); | 5843 checkUnnamed2389(o.data); |
| 5844 unittest.expect(o.message, unittest.equals('foo')); | 5844 unittest.expect(o.message, unittest.equals('foo')); |
| 5845 } | 5845 } |
| 5846 buildCounterSubnetworksScopedListWarning--; | 5846 buildCounterSubnetworksScopedListWarning--; |
| 5847 } | 5847 } |
| 5848 | 5848 |
| 5849 core.int buildCounterSubnetworksScopedList = 0; | 5849 core.int buildCounterSubnetworksScopedList = 0; |
| 5850 buildSubnetworksScopedList() { | 5850 buildSubnetworksScopedList() { |
| 5851 var o = new api.SubnetworksScopedList(); | 5851 var o = new api.SubnetworksScopedList(); |
| 5852 buildCounterSubnetworksScopedList++; | 5852 buildCounterSubnetworksScopedList++; |
| 5853 if (buildCounterSubnetworksScopedList < 3) { | 5853 if (buildCounterSubnetworksScopedList < 3) { |
| 5854 o.subnetworks = buildUnnamed803(); | 5854 o.subnetworks = buildUnnamed2388(); |
| 5855 o.warning = buildSubnetworksScopedListWarning(); | 5855 o.warning = buildSubnetworksScopedListWarning(); |
| 5856 } | 5856 } |
| 5857 buildCounterSubnetworksScopedList--; | 5857 buildCounterSubnetworksScopedList--; |
| 5858 return o; | 5858 return o; |
| 5859 } | 5859 } |
| 5860 | 5860 |
| 5861 checkSubnetworksScopedList(api.SubnetworksScopedList o) { | 5861 checkSubnetworksScopedList(api.SubnetworksScopedList o) { |
| 5862 buildCounterSubnetworksScopedList++; | 5862 buildCounterSubnetworksScopedList++; |
| 5863 if (buildCounterSubnetworksScopedList < 3) { | 5863 if (buildCounterSubnetworksScopedList < 3) { |
| 5864 checkUnnamed803(o.subnetworks); | 5864 checkUnnamed2388(o.subnetworks); |
| 5865 checkSubnetworksScopedListWarning(o.warning); | 5865 checkSubnetworksScopedListWarning(o.warning); |
| 5866 } | 5866 } |
| 5867 buildCounterSubnetworksScopedList--; | 5867 buildCounterSubnetworksScopedList--; |
| 5868 } | 5868 } |
| 5869 | 5869 |
| 5870 buildUnnamed805() { | 5870 buildUnnamed2390() { |
| 5871 var o = new core.List<core.String>(); | 5871 var o = new core.List<core.String>(); |
| 5872 o.add("foo"); | 5872 o.add("foo"); |
| 5873 o.add("foo"); | 5873 o.add("foo"); |
| 5874 return o; | 5874 return o; |
| 5875 } | 5875 } |
| 5876 | 5876 |
| 5877 checkUnnamed805(core.List<core.String> o) { | 5877 checkUnnamed2390(core.List<core.String> o) { |
| 5878 unittest.expect(o, unittest.hasLength(2)); | 5878 unittest.expect(o, unittest.hasLength(2)); |
| 5879 unittest.expect(o[0], unittest.equals('foo')); | 5879 unittest.expect(o[0], unittest.equals('foo')); |
| 5880 unittest.expect(o[1], unittest.equals('foo')); | 5880 unittest.expect(o[1], unittest.equals('foo')); |
| 5881 } | 5881 } |
| 5882 | 5882 |
| 5883 core.int buildCounterTags = 0; | 5883 core.int buildCounterTags = 0; |
| 5884 buildTags() { | 5884 buildTags() { |
| 5885 var o = new api.Tags(); | 5885 var o = new api.Tags(); |
| 5886 buildCounterTags++; | 5886 buildCounterTags++; |
| 5887 if (buildCounterTags < 3) { | 5887 if (buildCounterTags < 3) { |
| 5888 o.fingerprint = "foo"; | 5888 o.fingerprint = "foo"; |
| 5889 o.items = buildUnnamed805(); | 5889 o.items = buildUnnamed2390(); |
| 5890 } | 5890 } |
| 5891 buildCounterTags--; | 5891 buildCounterTags--; |
| 5892 return o; | 5892 return o; |
| 5893 } | 5893 } |
| 5894 | 5894 |
| 5895 checkTags(api.Tags o) { | 5895 checkTags(api.Tags o) { |
| 5896 buildCounterTags++; | 5896 buildCounterTags++; |
| 5897 if (buildCounterTags < 3) { | 5897 if (buildCounterTags < 3) { |
| 5898 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5898 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5899 checkUnnamed805(o.items); | 5899 checkUnnamed2390(o.items); |
| 5900 } | 5900 } |
| 5901 buildCounterTags--; | 5901 buildCounterTags--; |
| 5902 } | 5902 } |
| 5903 | 5903 |
| 5904 core.int buildCounterTargetHttpProxy = 0; | 5904 core.int buildCounterTargetHttpProxy = 0; |
| 5905 buildTargetHttpProxy() { | 5905 buildTargetHttpProxy() { |
| 5906 var o = new api.TargetHttpProxy(); | 5906 var o = new api.TargetHttpProxy(); |
| 5907 buildCounterTargetHttpProxy++; | 5907 buildCounterTargetHttpProxy++; |
| 5908 if (buildCounterTargetHttpProxy < 3) { | 5908 if (buildCounterTargetHttpProxy < 3) { |
| 5909 o.creationTimestamp = "foo"; | 5909 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5925 unittest.expect(o.description, unittest.equals('foo')); | 5925 unittest.expect(o.description, unittest.equals('foo')); |
| 5926 unittest.expect(o.id, unittest.equals('foo')); | 5926 unittest.expect(o.id, unittest.equals('foo')); |
| 5927 unittest.expect(o.kind, unittest.equals('foo')); | 5927 unittest.expect(o.kind, unittest.equals('foo')); |
| 5928 unittest.expect(o.name, unittest.equals('foo')); | 5928 unittest.expect(o.name, unittest.equals('foo')); |
| 5929 unittest.expect(o.selfLink, unittest.equals('foo')); | 5929 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5930 unittest.expect(o.urlMap, unittest.equals('foo')); | 5930 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 5931 } | 5931 } |
| 5932 buildCounterTargetHttpProxy--; | 5932 buildCounterTargetHttpProxy--; |
| 5933 } | 5933 } |
| 5934 | 5934 |
| 5935 buildUnnamed806() { | 5935 buildUnnamed2391() { |
| 5936 var o = new core.List<api.TargetHttpProxy>(); | 5936 var o = new core.List<api.TargetHttpProxy>(); |
| 5937 o.add(buildTargetHttpProxy()); | 5937 o.add(buildTargetHttpProxy()); |
| 5938 o.add(buildTargetHttpProxy()); | 5938 o.add(buildTargetHttpProxy()); |
| 5939 return o; | 5939 return o; |
| 5940 } | 5940 } |
| 5941 | 5941 |
| 5942 checkUnnamed806(core.List<api.TargetHttpProxy> o) { | 5942 checkUnnamed2391(core.List<api.TargetHttpProxy> o) { |
| 5943 unittest.expect(o, unittest.hasLength(2)); | 5943 unittest.expect(o, unittest.hasLength(2)); |
| 5944 checkTargetHttpProxy(o[0]); | 5944 checkTargetHttpProxy(o[0]); |
| 5945 checkTargetHttpProxy(o[1]); | 5945 checkTargetHttpProxy(o[1]); |
| 5946 } | 5946 } |
| 5947 | 5947 |
| 5948 core.int buildCounterTargetHttpProxyList = 0; | 5948 core.int buildCounterTargetHttpProxyList = 0; |
| 5949 buildTargetHttpProxyList() { | 5949 buildTargetHttpProxyList() { |
| 5950 var o = new api.TargetHttpProxyList(); | 5950 var o = new api.TargetHttpProxyList(); |
| 5951 buildCounterTargetHttpProxyList++; | 5951 buildCounterTargetHttpProxyList++; |
| 5952 if (buildCounterTargetHttpProxyList < 3) { | 5952 if (buildCounterTargetHttpProxyList < 3) { |
| 5953 o.id = "foo"; | 5953 o.id = "foo"; |
| 5954 o.items = buildUnnamed806(); | 5954 o.items = buildUnnamed2391(); |
| 5955 o.kind = "foo"; | 5955 o.kind = "foo"; |
| 5956 o.nextPageToken = "foo"; | 5956 o.nextPageToken = "foo"; |
| 5957 o.selfLink = "foo"; | 5957 o.selfLink = "foo"; |
| 5958 } | 5958 } |
| 5959 buildCounterTargetHttpProxyList--; | 5959 buildCounterTargetHttpProxyList--; |
| 5960 return o; | 5960 return o; |
| 5961 } | 5961 } |
| 5962 | 5962 |
| 5963 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 5963 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 5964 buildCounterTargetHttpProxyList++; | 5964 buildCounterTargetHttpProxyList++; |
| 5965 if (buildCounterTargetHttpProxyList < 3) { | 5965 if (buildCounterTargetHttpProxyList < 3) { |
| 5966 unittest.expect(o.id, unittest.equals('foo')); | 5966 unittest.expect(o.id, unittest.equals('foo')); |
| 5967 checkUnnamed806(o.items); | 5967 checkUnnamed2391(o.items); |
| 5968 unittest.expect(o.kind, unittest.equals('foo')); | 5968 unittest.expect(o.kind, unittest.equals('foo')); |
| 5969 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5969 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5970 unittest.expect(o.selfLink, unittest.equals('foo')); | 5970 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5971 } | 5971 } |
| 5972 buildCounterTargetHttpProxyList--; | 5972 buildCounterTargetHttpProxyList--; |
| 5973 } | 5973 } |
| 5974 | 5974 |
| 5975 buildUnnamed807() { | 5975 buildUnnamed2392() { |
| 5976 var o = new core.List<core.String>(); | 5976 var o = new core.List<core.String>(); |
| 5977 o.add("foo"); | 5977 o.add("foo"); |
| 5978 o.add("foo"); | 5978 o.add("foo"); |
| 5979 return o; | 5979 return o; |
| 5980 } | 5980 } |
| 5981 | 5981 |
| 5982 checkUnnamed807(core.List<core.String> o) { | 5982 checkUnnamed2392(core.List<core.String> o) { |
| 5983 unittest.expect(o, unittest.hasLength(2)); | 5983 unittest.expect(o, unittest.hasLength(2)); |
| 5984 unittest.expect(o[0], unittest.equals('foo')); | 5984 unittest.expect(o[0], unittest.equals('foo')); |
| 5985 unittest.expect(o[1], unittest.equals('foo')); | 5985 unittest.expect(o[1], unittest.equals('foo')); |
| 5986 } | 5986 } |
| 5987 | 5987 |
| 5988 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; | 5988 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; |
| 5989 buildTargetHttpsProxiesSetSslCertificatesRequest() { | 5989 buildTargetHttpsProxiesSetSslCertificatesRequest() { |
| 5990 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); | 5990 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); |
| 5991 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 5991 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 5992 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 5992 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 5993 o.sslCertificates = buildUnnamed807(); | 5993 o.sslCertificates = buildUnnamed2392(); |
| 5994 } | 5994 } |
| 5995 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 5995 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 5996 return o; | 5996 return o; |
| 5997 } | 5997 } |
| 5998 | 5998 |
| 5999 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { | 5999 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { |
| 6000 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 6000 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 6001 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 6001 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 6002 checkUnnamed807(o.sslCertificates); | 6002 checkUnnamed2392(o.sslCertificates); |
| 6003 } | 6003 } |
| 6004 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 6004 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 6005 } | 6005 } |
| 6006 | 6006 |
| 6007 buildUnnamed808() { | 6007 buildUnnamed2393() { |
| 6008 var o = new core.List<core.String>(); | 6008 var o = new core.List<core.String>(); |
| 6009 o.add("foo"); | 6009 o.add("foo"); |
| 6010 o.add("foo"); | 6010 o.add("foo"); |
| 6011 return o; | 6011 return o; |
| 6012 } | 6012 } |
| 6013 | 6013 |
| 6014 checkUnnamed808(core.List<core.String> o) { | 6014 checkUnnamed2393(core.List<core.String> o) { |
| 6015 unittest.expect(o, unittest.hasLength(2)); | 6015 unittest.expect(o, unittest.hasLength(2)); |
| 6016 unittest.expect(o[0], unittest.equals('foo')); | 6016 unittest.expect(o[0], unittest.equals('foo')); |
| 6017 unittest.expect(o[1], unittest.equals('foo')); | 6017 unittest.expect(o[1], unittest.equals('foo')); |
| 6018 } | 6018 } |
| 6019 | 6019 |
| 6020 core.int buildCounterTargetHttpsProxy = 0; | 6020 core.int buildCounterTargetHttpsProxy = 0; |
| 6021 buildTargetHttpsProxy() { | 6021 buildTargetHttpsProxy() { |
| 6022 var o = new api.TargetHttpsProxy(); | 6022 var o = new api.TargetHttpsProxy(); |
| 6023 buildCounterTargetHttpsProxy++; | 6023 buildCounterTargetHttpsProxy++; |
| 6024 if (buildCounterTargetHttpsProxy < 3) { | 6024 if (buildCounterTargetHttpsProxy < 3) { |
| 6025 o.creationTimestamp = "foo"; | 6025 o.creationTimestamp = "foo"; |
| 6026 o.description = "foo"; | 6026 o.description = "foo"; |
| 6027 o.id = "foo"; | 6027 o.id = "foo"; |
| 6028 o.kind = "foo"; | 6028 o.kind = "foo"; |
| 6029 o.name = "foo"; | 6029 o.name = "foo"; |
| 6030 o.selfLink = "foo"; | 6030 o.selfLink = "foo"; |
| 6031 o.sslCertificates = buildUnnamed808(); | 6031 o.sslCertificates = buildUnnamed2393(); |
| 6032 o.urlMap = "foo"; | 6032 o.urlMap = "foo"; |
| 6033 } | 6033 } |
| 6034 buildCounterTargetHttpsProxy--; | 6034 buildCounterTargetHttpsProxy--; |
| 6035 return o; | 6035 return o; |
| 6036 } | 6036 } |
| 6037 | 6037 |
| 6038 checkTargetHttpsProxy(api.TargetHttpsProxy o) { | 6038 checkTargetHttpsProxy(api.TargetHttpsProxy o) { |
| 6039 buildCounterTargetHttpsProxy++; | 6039 buildCounterTargetHttpsProxy++; |
| 6040 if (buildCounterTargetHttpsProxy < 3) { | 6040 if (buildCounterTargetHttpsProxy < 3) { |
| 6041 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6041 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6042 unittest.expect(o.description, unittest.equals('foo')); | 6042 unittest.expect(o.description, unittest.equals('foo')); |
| 6043 unittest.expect(o.id, unittest.equals('foo')); | 6043 unittest.expect(o.id, unittest.equals('foo')); |
| 6044 unittest.expect(o.kind, unittest.equals('foo')); | 6044 unittest.expect(o.kind, unittest.equals('foo')); |
| 6045 unittest.expect(o.name, unittest.equals('foo')); | 6045 unittest.expect(o.name, unittest.equals('foo')); |
| 6046 unittest.expect(o.selfLink, unittest.equals('foo')); | 6046 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6047 checkUnnamed808(o.sslCertificates); | 6047 checkUnnamed2393(o.sslCertificates); |
| 6048 unittest.expect(o.urlMap, unittest.equals('foo')); | 6048 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 6049 } | 6049 } |
| 6050 buildCounterTargetHttpsProxy--; | 6050 buildCounterTargetHttpsProxy--; |
| 6051 } | 6051 } |
| 6052 | 6052 |
| 6053 buildUnnamed809() { | 6053 buildUnnamed2394() { |
| 6054 var o = new core.List<api.TargetHttpsProxy>(); | 6054 var o = new core.List<api.TargetHttpsProxy>(); |
| 6055 o.add(buildTargetHttpsProxy()); | 6055 o.add(buildTargetHttpsProxy()); |
| 6056 o.add(buildTargetHttpsProxy()); | 6056 o.add(buildTargetHttpsProxy()); |
| 6057 return o; | 6057 return o; |
| 6058 } | 6058 } |
| 6059 | 6059 |
| 6060 checkUnnamed809(core.List<api.TargetHttpsProxy> o) { | 6060 checkUnnamed2394(core.List<api.TargetHttpsProxy> o) { |
| 6061 unittest.expect(o, unittest.hasLength(2)); | 6061 unittest.expect(o, unittest.hasLength(2)); |
| 6062 checkTargetHttpsProxy(o[0]); | 6062 checkTargetHttpsProxy(o[0]); |
| 6063 checkTargetHttpsProxy(o[1]); | 6063 checkTargetHttpsProxy(o[1]); |
| 6064 } | 6064 } |
| 6065 | 6065 |
| 6066 core.int buildCounterTargetHttpsProxyList = 0; | 6066 core.int buildCounterTargetHttpsProxyList = 0; |
| 6067 buildTargetHttpsProxyList() { | 6067 buildTargetHttpsProxyList() { |
| 6068 var o = new api.TargetHttpsProxyList(); | 6068 var o = new api.TargetHttpsProxyList(); |
| 6069 buildCounterTargetHttpsProxyList++; | 6069 buildCounterTargetHttpsProxyList++; |
| 6070 if (buildCounterTargetHttpsProxyList < 3) { | 6070 if (buildCounterTargetHttpsProxyList < 3) { |
| 6071 o.id = "foo"; | 6071 o.id = "foo"; |
| 6072 o.items = buildUnnamed809(); | 6072 o.items = buildUnnamed2394(); |
| 6073 o.kind = "foo"; | 6073 o.kind = "foo"; |
| 6074 o.nextPageToken = "foo"; | 6074 o.nextPageToken = "foo"; |
| 6075 o.selfLink = "foo"; | 6075 o.selfLink = "foo"; |
| 6076 } | 6076 } |
| 6077 buildCounterTargetHttpsProxyList--; | 6077 buildCounterTargetHttpsProxyList--; |
| 6078 return o; | 6078 return o; |
| 6079 } | 6079 } |
| 6080 | 6080 |
| 6081 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { | 6081 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { |
| 6082 buildCounterTargetHttpsProxyList++; | 6082 buildCounterTargetHttpsProxyList++; |
| 6083 if (buildCounterTargetHttpsProxyList < 3) { | 6083 if (buildCounterTargetHttpsProxyList < 3) { |
| 6084 unittest.expect(o.id, unittest.equals('foo')); | 6084 unittest.expect(o.id, unittest.equals('foo')); |
| 6085 checkUnnamed809(o.items); | 6085 checkUnnamed2394(o.items); |
| 6086 unittest.expect(o.kind, unittest.equals('foo')); | 6086 unittest.expect(o.kind, unittest.equals('foo')); |
| 6087 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6087 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6088 unittest.expect(o.selfLink, unittest.equals('foo')); | 6088 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6089 } | 6089 } |
| 6090 buildCounterTargetHttpsProxyList--; | 6090 buildCounterTargetHttpsProxyList--; |
| 6091 } | 6091 } |
| 6092 | 6092 |
| 6093 core.int buildCounterTargetInstance = 0; | 6093 core.int buildCounterTargetInstance = 0; |
| 6094 buildTargetInstance() { | 6094 buildTargetInstance() { |
| 6095 var o = new api.TargetInstance(); | 6095 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6118 unittest.expect(o.instance, unittest.equals('foo')); | 6118 unittest.expect(o.instance, unittest.equals('foo')); |
| 6119 unittest.expect(o.kind, unittest.equals('foo')); | 6119 unittest.expect(o.kind, unittest.equals('foo')); |
| 6120 unittest.expect(o.name, unittest.equals('foo')); | 6120 unittest.expect(o.name, unittest.equals('foo')); |
| 6121 unittest.expect(o.natPolicy, unittest.equals('foo')); | 6121 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 6122 unittest.expect(o.selfLink, unittest.equals('foo')); | 6122 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6123 unittest.expect(o.zone, unittest.equals('foo')); | 6123 unittest.expect(o.zone, unittest.equals('foo')); |
| 6124 } | 6124 } |
| 6125 buildCounterTargetInstance--; | 6125 buildCounterTargetInstance--; |
| 6126 } | 6126 } |
| 6127 | 6127 |
| 6128 buildUnnamed810() { | 6128 buildUnnamed2395() { |
| 6129 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 6129 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 6130 o["x"] = buildTargetInstancesScopedList(); | 6130 o["x"] = buildTargetInstancesScopedList(); |
| 6131 o["y"] = buildTargetInstancesScopedList(); | 6131 o["y"] = buildTargetInstancesScopedList(); |
| 6132 return o; | 6132 return o; |
| 6133 } | 6133 } |
| 6134 | 6134 |
| 6135 checkUnnamed810(core.Map<core.String, api.TargetInstancesScopedList> o) { | 6135 checkUnnamed2395(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 6136 unittest.expect(o, unittest.hasLength(2)); | 6136 unittest.expect(o, unittest.hasLength(2)); |
| 6137 checkTargetInstancesScopedList(o["x"]); | 6137 checkTargetInstancesScopedList(o["x"]); |
| 6138 checkTargetInstancesScopedList(o["y"]); | 6138 checkTargetInstancesScopedList(o["y"]); |
| 6139 } | 6139 } |
| 6140 | 6140 |
| 6141 core.int buildCounterTargetInstanceAggregatedList = 0; | 6141 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 6142 buildTargetInstanceAggregatedList() { | 6142 buildTargetInstanceAggregatedList() { |
| 6143 var o = new api.TargetInstanceAggregatedList(); | 6143 var o = new api.TargetInstanceAggregatedList(); |
| 6144 buildCounterTargetInstanceAggregatedList++; | 6144 buildCounterTargetInstanceAggregatedList++; |
| 6145 if (buildCounterTargetInstanceAggregatedList < 3) { | 6145 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 6146 o.id = "foo"; | 6146 o.id = "foo"; |
| 6147 o.items = buildUnnamed810(); | 6147 o.items = buildUnnamed2395(); |
| 6148 o.kind = "foo"; | 6148 o.kind = "foo"; |
| 6149 o.nextPageToken = "foo"; | 6149 o.nextPageToken = "foo"; |
| 6150 o.selfLink = "foo"; | 6150 o.selfLink = "foo"; |
| 6151 } | 6151 } |
| 6152 buildCounterTargetInstanceAggregatedList--; | 6152 buildCounterTargetInstanceAggregatedList--; |
| 6153 return o; | 6153 return o; |
| 6154 } | 6154 } |
| 6155 | 6155 |
| 6156 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 6156 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 6157 buildCounterTargetInstanceAggregatedList++; | 6157 buildCounterTargetInstanceAggregatedList++; |
| 6158 if (buildCounterTargetInstanceAggregatedList < 3) { | 6158 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 6159 unittest.expect(o.id, unittest.equals('foo')); | 6159 unittest.expect(o.id, unittest.equals('foo')); |
| 6160 checkUnnamed810(o.items); | 6160 checkUnnamed2395(o.items); |
| 6161 unittest.expect(o.kind, unittest.equals('foo')); | 6161 unittest.expect(o.kind, unittest.equals('foo')); |
| 6162 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6162 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6163 unittest.expect(o.selfLink, unittest.equals('foo')); | 6163 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6164 } | 6164 } |
| 6165 buildCounterTargetInstanceAggregatedList--; | 6165 buildCounterTargetInstanceAggregatedList--; |
| 6166 } | 6166 } |
| 6167 | 6167 |
| 6168 buildUnnamed811() { | 6168 buildUnnamed2396() { |
| 6169 var o = new core.List<api.TargetInstance>(); | 6169 var o = new core.List<api.TargetInstance>(); |
| 6170 o.add(buildTargetInstance()); | 6170 o.add(buildTargetInstance()); |
| 6171 o.add(buildTargetInstance()); | 6171 o.add(buildTargetInstance()); |
| 6172 return o; | 6172 return o; |
| 6173 } | 6173 } |
| 6174 | 6174 |
| 6175 checkUnnamed811(core.List<api.TargetInstance> o) { | 6175 checkUnnamed2396(core.List<api.TargetInstance> o) { |
| 6176 unittest.expect(o, unittest.hasLength(2)); | 6176 unittest.expect(o, unittest.hasLength(2)); |
| 6177 checkTargetInstance(o[0]); | 6177 checkTargetInstance(o[0]); |
| 6178 checkTargetInstance(o[1]); | 6178 checkTargetInstance(o[1]); |
| 6179 } | 6179 } |
| 6180 | 6180 |
| 6181 core.int buildCounterTargetInstanceList = 0; | 6181 core.int buildCounterTargetInstanceList = 0; |
| 6182 buildTargetInstanceList() { | 6182 buildTargetInstanceList() { |
| 6183 var o = new api.TargetInstanceList(); | 6183 var o = new api.TargetInstanceList(); |
| 6184 buildCounterTargetInstanceList++; | 6184 buildCounterTargetInstanceList++; |
| 6185 if (buildCounterTargetInstanceList < 3) { | 6185 if (buildCounterTargetInstanceList < 3) { |
| 6186 o.id = "foo"; | 6186 o.id = "foo"; |
| 6187 o.items = buildUnnamed811(); | 6187 o.items = buildUnnamed2396(); |
| 6188 o.kind = "foo"; | 6188 o.kind = "foo"; |
| 6189 o.nextPageToken = "foo"; | 6189 o.nextPageToken = "foo"; |
| 6190 o.selfLink = "foo"; | 6190 o.selfLink = "foo"; |
| 6191 } | 6191 } |
| 6192 buildCounterTargetInstanceList--; | 6192 buildCounterTargetInstanceList--; |
| 6193 return o; | 6193 return o; |
| 6194 } | 6194 } |
| 6195 | 6195 |
| 6196 checkTargetInstanceList(api.TargetInstanceList o) { | 6196 checkTargetInstanceList(api.TargetInstanceList o) { |
| 6197 buildCounterTargetInstanceList++; | 6197 buildCounterTargetInstanceList++; |
| 6198 if (buildCounterTargetInstanceList < 3) { | 6198 if (buildCounterTargetInstanceList < 3) { |
| 6199 unittest.expect(o.id, unittest.equals('foo')); | 6199 unittest.expect(o.id, unittest.equals('foo')); |
| 6200 checkUnnamed811(o.items); | 6200 checkUnnamed2396(o.items); |
| 6201 unittest.expect(o.kind, unittest.equals('foo')); | 6201 unittest.expect(o.kind, unittest.equals('foo')); |
| 6202 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6202 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6203 unittest.expect(o.selfLink, unittest.equals('foo')); | 6203 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6204 } | 6204 } |
| 6205 buildCounterTargetInstanceList--; | 6205 buildCounterTargetInstanceList--; |
| 6206 } | 6206 } |
| 6207 | 6207 |
| 6208 buildUnnamed812() { | 6208 buildUnnamed2397() { |
| 6209 var o = new core.List<api.TargetInstance>(); | 6209 var o = new core.List<api.TargetInstance>(); |
| 6210 o.add(buildTargetInstance()); | 6210 o.add(buildTargetInstance()); |
| 6211 o.add(buildTargetInstance()); | 6211 o.add(buildTargetInstance()); |
| 6212 return o; | 6212 return o; |
| 6213 } | 6213 } |
| 6214 | 6214 |
| 6215 checkUnnamed812(core.List<api.TargetInstance> o) { | 6215 checkUnnamed2397(core.List<api.TargetInstance> o) { |
| 6216 unittest.expect(o, unittest.hasLength(2)); | 6216 unittest.expect(o, unittest.hasLength(2)); |
| 6217 checkTargetInstance(o[0]); | 6217 checkTargetInstance(o[0]); |
| 6218 checkTargetInstance(o[1]); | 6218 checkTargetInstance(o[1]); |
| 6219 } | 6219 } |
| 6220 | 6220 |
| 6221 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 6221 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 6222 buildTargetInstancesScopedListWarningData() { | 6222 buildTargetInstancesScopedListWarningData() { |
| 6223 var o = new api.TargetInstancesScopedListWarningData(); | 6223 var o = new api.TargetInstancesScopedListWarningData(); |
| 6224 buildCounterTargetInstancesScopedListWarningData++; | 6224 buildCounterTargetInstancesScopedListWarningData++; |
| 6225 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 6225 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 6226 o.key = "foo"; | 6226 o.key = "foo"; |
| 6227 o.value = "foo"; | 6227 o.value = "foo"; |
| 6228 } | 6228 } |
| 6229 buildCounterTargetInstancesScopedListWarningData--; | 6229 buildCounterTargetInstancesScopedListWarningData--; |
| 6230 return o; | 6230 return o; |
| 6231 } | 6231 } |
| 6232 | 6232 |
| 6233 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 6233 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 6234 buildCounterTargetInstancesScopedListWarningData++; | 6234 buildCounterTargetInstancesScopedListWarningData++; |
| 6235 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 6235 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 6236 unittest.expect(o.key, unittest.equals('foo')); | 6236 unittest.expect(o.key, unittest.equals('foo')); |
| 6237 unittest.expect(o.value, unittest.equals('foo')); | 6237 unittest.expect(o.value, unittest.equals('foo')); |
| 6238 } | 6238 } |
| 6239 buildCounterTargetInstancesScopedListWarningData--; | 6239 buildCounterTargetInstancesScopedListWarningData--; |
| 6240 } | 6240 } |
| 6241 | 6241 |
| 6242 buildUnnamed813() { | 6242 buildUnnamed2398() { |
| 6243 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 6243 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 6244 o.add(buildTargetInstancesScopedListWarningData()); | 6244 o.add(buildTargetInstancesScopedListWarningData()); |
| 6245 o.add(buildTargetInstancesScopedListWarningData()); | 6245 o.add(buildTargetInstancesScopedListWarningData()); |
| 6246 return o; | 6246 return o; |
| 6247 } | 6247 } |
| 6248 | 6248 |
| 6249 checkUnnamed813(core.List<api.TargetInstancesScopedListWarningData> o) { | 6249 checkUnnamed2398(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 6250 unittest.expect(o, unittest.hasLength(2)); | 6250 unittest.expect(o, unittest.hasLength(2)); |
| 6251 checkTargetInstancesScopedListWarningData(o[0]); | 6251 checkTargetInstancesScopedListWarningData(o[0]); |
| 6252 checkTargetInstancesScopedListWarningData(o[1]); | 6252 checkTargetInstancesScopedListWarningData(o[1]); |
| 6253 } | 6253 } |
| 6254 | 6254 |
| 6255 core.int buildCounterTargetInstancesScopedListWarning = 0; | 6255 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 6256 buildTargetInstancesScopedListWarning() { | 6256 buildTargetInstancesScopedListWarning() { |
| 6257 var o = new api.TargetInstancesScopedListWarning(); | 6257 var o = new api.TargetInstancesScopedListWarning(); |
| 6258 buildCounterTargetInstancesScopedListWarning++; | 6258 buildCounterTargetInstancesScopedListWarning++; |
| 6259 if (buildCounterTargetInstancesScopedListWarning < 3) { | 6259 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 6260 o.code = "foo"; | 6260 o.code = "foo"; |
| 6261 o.data = buildUnnamed813(); | 6261 o.data = buildUnnamed2398(); |
| 6262 o.message = "foo"; | 6262 o.message = "foo"; |
| 6263 } | 6263 } |
| 6264 buildCounterTargetInstancesScopedListWarning--; | 6264 buildCounterTargetInstancesScopedListWarning--; |
| 6265 return o; | 6265 return o; |
| 6266 } | 6266 } |
| 6267 | 6267 |
| 6268 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 6268 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 6269 buildCounterTargetInstancesScopedListWarning++; | 6269 buildCounterTargetInstancesScopedListWarning++; |
| 6270 if (buildCounterTargetInstancesScopedListWarning < 3) { | 6270 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 6271 unittest.expect(o.code, unittest.equals('foo')); | 6271 unittest.expect(o.code, unittest.equals('foo')); |
| 6272 checkUnnamed813(o.data); | 6272 checkUnnamed2398(o.data); |
| 6273 unittest.expect(o.message, unittest.equals('foo')); | 6273 unittest.expect(o.message, unittest.equals('foo')); |
| 6274 } | 6274 } |
| 6275 buildCounterTargetInstancesScopedListWarning--; | 6275 buildCounterTargetInstancesScopedListWarning--; |
| 6276 } | 6276 } |
| 6277 | 6277 |
| 6278 core.int buildCounterTargetInstancesScopedList = 0; | 6278 core.int buildCounterTargetInstancesScopedList = 0; |
| 6279 buildTargetInstancesScopedList() { | 6279 buildTargetInstancesScopedList() { |
| 6280 var o = new api.TargetInstancesScopedList(); | 6280 var o = new api.TargetInstancesScopedList(); |
| 6281 buildCounterTargetInstancesScopedList++; | 6281 buildCounterTargetInstancesScopedList++; |
| 6282 if (buildCounterTargetInstancesScopedList < 3) { | 6282 if (buildCounterTargetInstancesScopedList < 3) { |
| 6283 o.targetInstances = buildUnnamed812(); | 6283 o.targetInstances = buildUnnamed2397(); |
| 6284 o.warning = buildTargetInstancesScopedListWarning(); | 6284 o.warning = buildTargetInstancesScopedListWarning(); |
| 6285 } | 6285 } |
| 6286 buildCounterTargetInstancesScopedList--; | 6286 buildCounterTargetInstancesScopedList--; |
| 6287 return o; | 6287 return o; |
| 6288 } | 6288 } |
| 6289 | 6289 |
| 6290 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 6290 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 6291 buildCounterTargetInstancesScopedList++; | 6291 buildCounterTargetInstancesScopedList++; |
| 6292 if (buildCounterTargetInstancesScopedList < 3) { | 6292 if (buildCounterTargetInstancesScopedList < 3) { |
| 6293 checkUnnamed812(o.targetInstances); | 6293 checkUnnamed2397(o.targetInstances); |
| 6294 checkTargetInstancesScopedListWarning(o.warning); | 6294 checkTargetInstancesScopedListWarning(o.warning); |
| 6295 } | 6295 } |
| 6296 buildCounterTargetInstancesScopedList--; | 6296 buildCounterTargetInstancesScopedList--; |
| 6297 } | 6297 } |
| 6298 | 6298 |
| 6299 buildUnnamed814() { | 6299 buildUnnamed2399() { |
| 6300 var o = new core.List<core.String>(); | 6300 var o = new core.List<core.String>(); |
| 6301 o.add("foo"); | 6301 o.add("foo"); |
| 6302 o.add("foo"); | 6302 o.add("foo"); |
| 6303 return o; | 6303 return o; |
| 6304 } | 6304 } |
| 6305 | 6305 |
| 6306 checkUnnamed814(core.List<core.String> o) { | 6306 checkUnnamed2399(core.List<core.String> o) { |
| 6307 unittest.expect(o, unittest.hasLength(2)); | 6307 unittest.expect(o, unittest.hasLength(2)); |
| 6308 unittest.expect(o[0], unittest.equals('foo')); | 6308 unittest.expect(o[0], unittest.equals('foo')); |
| 6309 unittest.expect(o[1], unittest.equals('foo')); | 6309 unittest.expect(o[1], unittest.equals('foo')); |
| 6310 } | 6310 } |
| 6311 | 6311 |
| 6312 buildUnnamed815() { | 6312 buildUnnamed2400() { |
| 6313 var o = new core.List<core.String>(); | 6313 var o = new core.List<core.String>(); |
| 6314 o.add("foo"); | 6314 o.add("foo"); |
| 6315 o.add("foo"); | 6315 o.add("foo"); |
| 6316 return o; | 6316 return o; |
| 6317 } | 6317 } |
| 6318 | 6318 |
| 6319 checkUnnamed815(core.List<core.String> o) { | 6319 checkUnnamed2400(core.List<core.String> o) { |
| 6320 unittest.expect(o, unittest.hasLength(2)); | 6320 unittest.expect(o, unittest.hasLength(2)); |
| 6321 unittest.expect(o[0], unittest.equals('foo')); | 6321 unittest.expect(o[0], unittest.equals('foo')); |
| 6322 unittest.expect(o[1], unittest.equals('foo')); | 6322 unittest.expect(o[1], unittest.equals('foo')); |
| 6323 } | 6323 } |
| 6324 | 6324 |
| 6325 core.int buildCounterTargetPool = 0; | 6325 core.int buildCounterTargetPool = 0; |
| 6326 buildTargetPool() { | 6326 buildTargetPool() { |
| 6327 var o = new api.TargetPool(); | 6327 var o = new api.TargetPool(); |
| 6328 buildCounterTargetPool++; | 6328 buildCounterTargetPool++; |
| 6329 if (buildCounterTargetPool < 3) { | 6329 if (buildCounterTargetPool < 3) { |
| 6330 o.backupPool = "foo"; | 6330 o.backupPool = "foo"; |
| 6331 o.creationTimestamp = "foo"; | 6331 o.creationTimestamp = "foo"; |
| 6332 o.description = "foo"; | 6332 o.description = "foo"; |
| 6333 o.failoverRatio = 42.0; | 6333 o.failoverRatio = 42.0; |
| 6334 o.healthChecks = buildUnnamed814(); | 6334 o.healthChecks = buildUnnamed2399(); |
| 6335 o.id = "foo"; | 6335 o.id = "foo"; |
| 6336 o.instances = buildUnnamed815(); | 6336 o.instances = buildUnnamed2400(); |
| 6337 o.kind = "foo"; | 6337 o.kind = "foo"; |
| 6338 o.name = "foo"; | 6338 o.name = "foo"; |
| 6339 o.region = "foo"; | 6339 o.region = "foo"; |
| 6340 o.selfLink = "foo"; | 6340 o.selfLink = "foo"; |
| 6341 o.sessionAffinity = "foo"; | 6341 o.sessionAffinity = "foo"; |
| 6342 } | 6342 } |
| 6343 buildCounterTargetPool--; | 6343 buildCounterTargetPool--; |
| 6344 return o; | 6344 return o; |
| 6345 } | 6345 } |
| 6346 | 6346 |
| 6347 checkTargetPool(api.TargetPool o) { | 6347 checkTargetPool(api.TargetPool o) { |
| 6348 buildCounterTargetPool++; | 6348 buildCounterTargetPool++; |
| 6349 if (buildCounterTargetPool < 3) { | 6349 if (buildCounterTargetPool < 3) { |
| 6350 unittest.expect(o.backupPool, unittest.equals('foo')); | 6350 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 6351 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6351 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6352 unittest.expect(o.description, unittest.equals('foo')); | 6352 unittest.expect(o.description, unittest.equals('foo')); |
| 6353 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 6353 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 6354 checkUnnamed814(o.healthChecks); | 6354 checkUnnamed2399(o.healthChecks); |
| 6355 unittest.expect(o.id, unittest.equals('foo')); | 6355 unittest.expect(o.id, unittest.equals('foo')); |
| 6356 checkUnnamed815(o.instances); | 6356 checkUnnamed2400(o.instances); |
| 6357 unittest.expect(o.kind, unittest.equals('foo')); | 6357 unittest.expect(o.kind, unittest.equals('foo')); |
| 6358 unittest.expect(o.name, unittest.equals('foo')); | 6358 unittest.expect(o.name, unittest.equals('foo')); |
| 6359 unittest.expect(o.region, unittest.equals('foo')); | 6359 unittest.expect(o.region, unittest.equals('foo')); |
| 6360 unittest.expect(o.selfLink, unittest.equals('foo')); | 6360 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6361 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 6361 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 6362 } | 6362 } |
| 6363 buildCounterTargetPool--; | 6363 buildCounterTargetPool--; |
| 6364 } | 6364 } |
| 6365 | 6365 |
| 6366 buildUnnamed816() { | 6366 buildUnnamed2401() { |
| 6367 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 6367 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 6368 o["x"] = buildTargetPoolsScopedList(); | 6368 o["x"] = buildTargetPoolsScopedList(); |
| 6369 o["y"] = buildTargetPoolsScopedList(); | 6369 o["y"] = buildTargetPoolsScopedList(); |
| 6370 return o; | 6370 return o; |
| 6371 } | 6371 } |
| 6372 | 6372 |
| 6373 checkUnnamed816(core.Map<core.String, api.TargetPoolsScopedList> o) { | 6373 checkUnnamed2401(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 6374 unittest.expect(o, unittest.hasLength(2)); | 6374 unittest.expect(o, unittest.hasLength(2)); |
| 6375 checkTargetPoolsScopedList(o["x"]); | 6375 checkTargetPoolsScopedList(o["x"]); |
| 6376 checkTargetPoolsScopedList(o["y"]); | 6376 checkTargetPoolsScopedList(o["y"]); |
| 6377 } | 6377 } |
| 6378 | 6378 |
| 6379 core.int buildCounterTargetPoolAggregatedList = 0; | 6379 core.int buildCounterTargetPoolAggregatedList = 0; |
| 6380 buildTargetPoolAggregatedList() { | 6380 buildTargetPoolAggregatedList() { |
| 6381 var o = new api.TargetPoolAggregatedList(); | 6381 var o = new api.TargetPoolAggregatedList(); |
| 6382 buildCounterTargetPoolAggregatedList++; | 6382 buildCounterTargetPoolAggregatedList++; |
| 6383 if (buildCounterTargetPoolAggregatedList < 3) { | 6383 if (buildCounterTargetPoolAggregatedList < 3) { |
| 6384 o.id = "foo"; | 6384 o.id = "foo"; |
| 6385 o.items = buildUnnamed816(); | 6385 o.items = buildUnnamed2401(); |
| 6386 o.kind = "foo"; | 6386 o.kind = "foo"; |
| 6387 o.nextPageToken = "foo"; | 6387 o.nextPageToken = "foo"; |
| 6388 o.selfLink = "foo"; | 6388 o.selfLink = "foo"; |
| 6389 } | 6389 } |
| 6390 buildCounterTargetPoolAggregatedList--; | 6390 buildCounterTargetPoolAggregatedList--; |
| 6391 return o; | 6391 return o; |
| 6392 } | 6392 } |
| 6393 | 6393 |
| 6394 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 6394 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 6395 buildCounterTargetPoolAggregatedList++; | 6395 buildCounterTargetPoolAggregatedList++; |
| 6396 if (buildCounterTargetPoolAggregatedList < 3) { | 6396 if (buildCounterTargetPoolAggregatedList < 3) { |
| 6397 unittest.expect(o.id, unittest.equals('foo')); | 6397 unittest.expect(o.id, unittest.equals('foo')); |
| 6398 checkUnnamed816(o.items); | 6398 checkUnnamed2401(o.items); |
| 6399 unittest.expect(o.kind, unittest.equals('foo')); | 6399 unittest.expect(o.kind, unittest.equals('foo')); |
| 6400 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6400 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6401 unittest.expect(o.selfLink, unittest.equals('foo')); | 6401 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6402 } | 6402 } |
| 6403 buildCounterTargetPoolAggregatedList--; | 6403 buildCounterTargetPoolAggregatedList--; |
| 6404 } | 6404 } |
| 6405 | 6405 |
| 6406 buildUnnamed817() { | 6406 buildUnnamed2402() { |
| 6407 var o = new core.List<api.HealthStatus>(); | 6407 var o = new core.List<api.HealthStatus>(); |
| 6408 o.add(buildHealthStatus()); | 6408 o.add(buildHealthStatus()); |
| 6409 o.add(buildHealthStatus()); | 6409 o.add(buildHealthStatus()); |
| 6410 return o; | 6410 return o; |
| 6411 } | 6411 } |
| 6412 | 6412 |
| 6413 checkUnnamed817(core.List<api.HealthStatus> o) { | 6413 checkUnnamed2402(core.List<api.HealthStatus> o) { |
| 6414 unittest.expect(o, unittest.hasLength(2)); | 6414 unittest.expect(o, unittest.hasLength(2)); |
| 6415 checkHealthStatus(o[0]); | 6415 checkHealthStatus(o[0]); |
| 6416 checkHealthStatus(o[1]); | 6416 checkHealthStatus(o[1]); |
| 6417 } | 6417 } |
| 6418 | 6418 |
| 6419 core.int buildCounterTargetPoolInstanceHealth = 0; | 6419 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 6420 buildTargetPoolInstanceHealth() { | 6420 buildTargetPoolInstanceHealth() { |
| 6421 var o = new api.TargetPoolInstanceHealth(); | 6421 var o = new api.TargetPoolInstanceHealth(); |
| 6422 buildCounterTargetPoolInstanceHealth++; | 6422 buildCounterTargetPoolInstanceHealth++; |
| 6423 if (buildCounterTargetPoolInstanceHealth < 3) { | 6423 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 6424 o.healthStatus = buildUnnamed817(); | 6424 o.healthStatus = buildUnnamed2402(); |
| 6425 o.kind = "foo"; | 6425 o.kind = "foo"; |
| 6426 } | 6426 } |
| 6427 buildCounterTargetPoolInstanceHealth--; | 6427 buildCounterTargetPoolInstanceHealth--; |
| 6428 return o; | 6428 return o; |
| 6429 } | 6429 } |
| 6430 | 6430 |
| 6431 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 6431 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 6432 buildCounterTargetPoolInstanceHealth++; | 6432 buildCounterTargetPoolInstanceHealth++; |
| 6433 if (buildCounterTargetPoolInstanceHealth < 3) { | 6433 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 6434 checkUnnamed817(o.healthStatus); | 6434 checkUnnamed2402(o.healthStatus); |
| 6435 unittest.expect(o.kind, unittest.equals('foo')); | 6435 unittest.expect(o.kind, unittest.equals('foo')); |
| 6436 } | 6436 } |
| 6437 buildCounterTargetPoolInstanceHealth--; | 6437 buildCounterTargetPoolInstanceHealth--; |
| 6438 } | 6438 } |
| 6439 | 6439 |
| 6440 buildUnnamed818() { | 6440 buildUnnamed2403() { |
| 6441 var o = new core.List<api.TargetPool>(); | 6441 var o = new core.List<api.TargetPool>(); |
| 6442 o.add(buildTargetPool()); | 6442 o.add(buildTargetPool()); |
| 6443 o.add(buildTargetPool()); | 6443 o.add(buildTargetPool()); |
| 6444 return o; | 6444 return o; |
| 6445 } | 6445 } |
| 6446 | 6446 |
| 6447 checkUnnamed818(core.List<api.TargetPool> o) { | 6447 checkUnnamed2403(core.List<api.TargetPool> o) { |
| 6448 unittest.expect(o, unittest.hasLength(2)); | 6448 unittest.expect(o, unittest.hasLength(2)); |
| 6449 checkTargetPool(o[0]); | 6449 checkTargetPool(o[0]); |
| 6450 checkTargetPool(o[1]); | 6450 checkTargetPool(o[1]); |
| 6451 } | 6451 } |
| 6452 | 6452 |
| 6453 core.int buildCounterTargetPoolList = 0; | 6453 core.int buildCounterTargetPoolList = 0; |
| 6454 buildTargetPoolList() { | 6454 buildTargetPoolList() { |
| 6455 var o = new api.TargetPoolList(); | 6455 var o = new api.TargetPoolList(); |
| 6456 buildCounterTargetPoolList++; | 6456 buildCounterTargetPoolList++; |
| 6457 if (buildCounterTargetPoolList < 3) { | 6457 if (buildCounterTargetPoolList < 3) { |
| 6458 o.id = "foo"; | 6458 o.id = "foo"; |
| 6459 o.items = buildUnnamed818(); | 6459 o.items = buildUnnamed2403(); |
| 6460 o.kind = "foo"; | 6460 o.kind = "foo"; |
| 6461 o.nextPageToken = "foo"; | 6461 o.nextPageToken = "foo"; |
| 6462 o.selfLink = "foo"; | 6462 o.selfLink = "foo"; |
| 6463 } | 6463 } |
| 6464 buildCounterTargetPoolList--; | 6464 buildCounterTargetPoolList--; |
| 6465 return o; | 6465 return o; |
| 6466 } | 6466 } |
| 6467 | 6467 |
| 6468 checkTargetPoolList(api.TargetPoolList o) { | 6468 checkTargetPoolList(api.TargetPoolList o) { |
| 6469 buildCounterTargetPoolList++; | 6469 buildCounterTargetPoolList++; |
| 6470 if (buildCounterTargetPoolList < 3) { | 6470 if (buildCounterTargetPoolList < 3) { |
| 6471 unittest.expect(o.id, unittest.equals('foo')); | 6471 unittest.expect(o.id, unittest.equals('foo')); |
| 6472 checkUnnamed818(o.items); | 6472 checkUnnamed2403(o.items); |
| 6473 unittest.expect(o.kind, unittest.equals('foo')); | 6473 unittest.expect(o.kind, unittest.equals('foo')); |
| 6474 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6474 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6475 unittest.expect(o.selfLink, unittest.equals('foo')); | 6475 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6476 } | 6476 } |
| 6477 buildCounterTargetPoolList--; | 6477 buildCounterTargetPoolList--; |
| 6478 } | 6478 } |
| 6479 | 6479 |
| 6480 buildUnnamed819() { | 6480 buildUnnamed2404() { |
| 6481 var o = new core.List<api.HealthCheckReference>(); | 6481 var o = new core.List<api.HealthCheckReference>(); |
| 6482 o.add(buildHealthCheckReference()); | 6482 o.add(buildHealthCheckReference()); |
| 6483 o.add(buildHealthCheckReference()); | 6483 o.add(buildHealthCheckReference()); |
| 6484 return o; | 6484 return o; |
| 6485 } | 6485 } |
| 6486 | 6486 |
| 6487 checkUnnamed819(core.List<api.HealthCheckReference> o) { | 6487 checkUnnamed2404(core.List<api.HealthCheckReference> o) { |
| 6488 unittest.expect(o, unittest.hasLength(2)); | 6488 unittest.expect(o, unittest.hasLength(2)); |
| 6489 checkHealthCheckReference(o[0]); | 6489 checkHealthCheckReference(o[0]); |
| 6490 checkHealthCheckReference(o[1]); | 6490 checkHealthCheckReference(o[1]); |
| 6491 } | 6491 } |
| 6492 | 6492 |
| 6493 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 6493 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 6494 buildTargetPoolsAddHealthCheckRequest() { | 6494 buildTargetPoolsAddHealthCheckRequest() { |
| 6495 var o = new api.TargetPoolsAddHealthCheckRequest(); | 6495 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 6496 buildCounterTargetPoolsAddHealthCheckRequest++; | 6496 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 6497 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 6497 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 6498 o.healthChecks = buildUnnamed819(); | 6498 o.healthChecks = buildUnnamed2404(); |
| 6499 } | 6499 } |
| 6500 buildCounterTargetPoolsAddHealthCheckRequest--; | 6500 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 6501 return o; | 6501 return o; |
| 6502 } | 6502 } |
| 6503 | 6503 |
| 6504 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 6504 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 6505 buildCounterTargetPoolsAddHealthCheckRequest++; | 6505 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 6506 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 6506 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 6507 checkUnnamed819(o.healthChecks); | 6507 checkUnnamed2404(o.healthChecks); |
| 6508 } | 6508 } |
| 6509 buildCounterTargetPoolsAddHealthCheckRequest--; | 6509 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 6510 } | 6510 } |
| 6511 | 6511 |
| 6512 buildUnnamed820() { | 6512 buildUnnamed2405() { |
| 6513 var o = new core.List<api.InstanceReference>(); | 6513 var o = new core.List<api.InstanceReference>(); |
| 6514 o.add(buildInstanceReference()); | 6514 o.add(buildInstanceReference()); |
| 6515 o.add(buildInstanceReference()); | 6515 o.add(buildInstanceReference()); |
| 6516 return o; | 6516 return o; |
| 6517 } | 6517 } |
| 6518 | 6518 |
| 6519 checkUnnamed820(core.List<api.InstanceReference> o) { | 6519 checkUnnamed2405(core.List<api.InstanceReference> o) { |
| 6520 unittest.expect(o, unittest.hasLength(2)); | 6520 unittest.expect(o, unittest.hasLength(2)); |
| 6521 checkInstanceReference(o[0]); | 6521 checkInstanceReference(o[0]); |
| 6522 checkInstanceReference(o[1]); | 6522 checkInstanceReference(o[1]); |
| 6523 } | 6523 } |
| 6524 | 6524 |
| 6525 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 6525 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 6526 buildTargetPoolsAddInstanceRequest() { | 6526 buildTargetPoolsAddInstanceRequest() { |
| 6527 var o = new api.TargetPoolsAddInstanceRequest(); | 6527 var o = new api.TargetPoolsAddInstanceRequest(); |
| 6528 buildCounterTargetPoolsAddInstanceRequest++; | 6528 buildCounterTargetPoolsAddInstanceRequest++; |
| 6529 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 6529 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 6530 o.instances = buildUnnamed820(); | 6530 o.instances = buildUnnamed2405(); |
| 6531 } | 6531 } |
| 6532 buildCounterTargetPoolsAddInstanceRequest--; | 6532 buildCounterTargetPoolsAddInstanceRequest--; |
| 6533 return o; | 6533 return o; |
| 6534 } | 6534 } |
| 6535 | 6535 |
| 6536 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 6536 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 6537 buildCounterTargetPoolsAddInstanceRequest++; | 6537 buildCounterTargetPoolsAddInstanceRequest++; |
| 6538 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 6538 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 6539 checkUnnamed820(o.instances); | 6539 checkUnnamed2405(o.instances); |
| 6540 } | 6540 } |
| 6541 buildCounterTargetPoolsAddInstanceRequest--; | 6541 buildCounterTargetPoolsAddInstanceRequest--; |
| 6542 } | 6542 } |
| 6543 | 6543 |
| 6544 buildUnnamed821() { | 6544 buildUnnamed2406() { |
| 6545 var o = new core.List<api.HealthCheckReference>(); | 6545 var o = new core.List<api.HealthCheckReference>(); |
| 6546 o.add(buildHealthCheckReference()); | 6546 o.add(buildHealthCheckReference()); |
| 6547 o.add(buildHealthCheckReference()); | 6547 o.add(buildHealthCheckReference()); |
| 6548 return o; | 6548 return o; |
| 6549 } | 6549 } |
| 6550 | 6550 |
| 6551 checkUnnamed821(core.List<api.HealthCheckReference> o) { | 6551 checkUnnamed2406(core.List<api.HealthCheckReference> o) { |
| 6552 unittest.expect(o, unittest.hasLength(2)); | 6552 unittest.expect(o, unittest.hasLength(2)); |
| 6553 checkHealthCheckReference(o[0]); | 6553 checkHealthCheckReference(o[0]); |
| 6554 checkHealthCheckReference(o[1]); | 6554 checkHealthCheckReference(o[1]); |
| 6555 } | 6555 } |
| 6556 | 6556 |
| 6557 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 6557 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 6558 buildTargetPoolsRemoveHealthCheckRequest() { | 6558 buildTargetPoolsRemoveHealthCheckRequest() { |
| 6559 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 6559 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 6560 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 6560 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 6561 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 6561 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 6562 o.healthChecks = buildUnnamed821(); | 6562 o.healthChecks = buildUnnamed2406(); |
| 6563 } | 6563 } |
| 6564 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 6564 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 6565 return o; | 6565 return o; |
| 6566 } | 6566 } |
| 6567 | 6567 |
| 6568 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 6568 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 6569 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 6569 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 6570 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 6570 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 6571 checkUnnamed821(o.healthChecks); | 6571 checkUnnamed2406(o.healthChecks); |
| 6572 } | 6572 } |
| 6573 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 6573 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 6574 } | 6574 } |
| 6575 | 6575 |
| 6576 buildUnnamed822() { | 6576 buildUnnamed2407() { |
| 6577 var o = new core.List<api.InstanceReference>(); | 6577 var o = new core.List<api.InstanceReference>(); |
| 6578 o.add(buildInstanceReference()); | 6578 o.add(buildInstanceReference()); |
| 6579 o.add(buildInstanceReference()); | 6579 o.add(buildInstanceReference()); |
| 6580 return o; | 6580 return o; |
| 6581 } | 6581 } |
| 6582 | 6582 |
| 6583 checkUnnamed822(core.List<api.InstanceReference> o) { | 6583 checkUnnamed2407(core.List<api.InstanceReference> o) { |
| 6584 unittest.expect(o, unittest.hasLength(2)); | 6584 unittest.expect(o, unittest.hasLength(2)); |
| 6585 checkInstanceReference(o[0]); | 6585 checkInstanceReference(o[0]); |
| 6586 checkInstanceReference(o[1]); | 6586 checkInstanceReference(o[1]); |
| 6587 } | 6587 } |
| 6588 | 6588 |
| 6589 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 6589 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 6590 buildTargetPoolsRemoveInstanceRequest() { | 6590 buildTargetPoolsRemoveInstanceRequest() { |
| 6591 var o = new api.TargetPoolsRemoveInstanceRequest(); | 6591 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 6592 buildCounterTargetPoolsRemoveInstanceRequest++; | 6592 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6593 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6593 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6594 o.instances = buildUnnamed822(); | 6594 o.instances = buildUnnamed2407(); |
| 6595 } | 6595 } |
| 6596 buildCounterTargetPoolsRemoveInstanceRequest--; | 6596 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6597 return o; | 6597 return o; |
| 6598 } | 6598 } |
| 6599 | 6599 |
| 6600 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 6600 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 6601 buildCounterTargetPoolsRemoveInstanceRequest++; | 6601 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 6602 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 6602 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 6603 checkUnnamed822(o.instances); | 6603 checkUnnamed2407(o.instances); |
| 6604 } | 6604 } |
| 6605 buildCounterTargetPoolsRemoveInstanceRequest--; | 6605 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 6606 } | 6606 } |
| 6607 | 6607 |
| 6608 buildUnnamed823() { | 6608 buildUnnamed2408() { |
| 6609 var o = new core.List<api.TargetPool>(); | 6609 var o = new core.List<api.TargetPool>(); |
| 6610 o.add(buildTargetPool()); | 6610 o.add(buildTargetPool()); |
| 6611 o.add(buildTargetPool()); | 6611 o.add(buildTargetPool()); |
| 6612 return o; | 6612 return o; |
| 6613 } | 6613 } |
| 6614 | 6614 |
| 6615 checkUnnamed823(core.List<api.TargetPool> o) { | 6615 checkUnnamed2408(core.List<api.TargetPool> o) { |
| 6616 unittest.expect(o, unittest.hasLength(2)); | 6616 unittest.expect(o, unittest.hasLength(2)); |
| 6617 checkTargetPool(o[0]); | 6617 checkTargetPool(o[0]); |
| 6618 checkTargetPool(o[1]); | 6618 checkTargetPool(o[1]); |
| 6619 } | 6619 } |
| 6620 | 6620 |
| 6621 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 6621 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 6622 buildTargetPoolsScopedListWarningData() { | 6622 buildTargetPoolsScopedListWarningData() { |
| 6623 var o = new api.TargetPoolsScopedListWarningData(); | 6623 var o = new api.TargetPoolsScopedListWarningData(); |
| 6624 buildCounterTargetPoolsScopedListWarningData++; | 6624 buildCounterTargetPoolsScopedListWarningData++; |
| 6625 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6625 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6626 o.key = "foo"; | 6626 o.key = "foo"; |
| 6627 o.value = "foo"; | 6627 o.value = "foo"; |
| 6628 } | 6628 } |
| 6629 buildCounterTargetPoolsScopedListWarningData--; | 6629 buildCounterTargetPoolsScopedListWarningData--; |
| 6630 return o; | 6630 return o; |
| 6631 } | 6631 } |
| 6632 | 6632 |
| 6633 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 6633 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 6634 buildCounterTargetPoolsScopedListWarningData++; | 6634 buildCounterTargetPoolsScopedListWarningData++; |
| 6635 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 6635 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 6636 unittest.expect(o.key, unittest.equals('foo')); | 6636 unittest.expect(o.key, unittest.equals('foo')); |
| 6637 unittest.expect(o.value, unittest.equals('foo')); | 6637 unittest.expect(o.value, unittest.equals('foo')); |
| 6638 } | 6638 } |
| 6639 buildCounterTargetPoolsScopedListWarningData--; | 6639 buildCounterTargetPoolsScopedListWarningData--; |
| 6640 } | 6640 } |
| 6641 | 6641 |
| 6642 buildUnnamed824() { | 6642 buildUnnamed2409() { |
| 6643 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 6643 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 6644 o.add(buildTargetPoolsScopedListWarningData()); | 6644 o.add(buildTargetPoolsScopedListWarningData()); |
| 6645 o.add(buildTargetPoolsScopedListWarningData()); | 6645 o.add(buildTargetPoolsScopedListWarningData()); |
| 6646 return o; | 6646 return o; |
| 6647 } | 6647 } |
| 6648 | 6648 |
| 6649 checkUnnamed824(core.List<api.TargetPoolsScopedListWarningData> o) { | 6649 checkUnnamed2409(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 6650 unittest.expect(o, unittest.hasLength(2)); | 6650 unittest.expect(o, unittest.hasLength(2)); |
| 6651 checkTargetPoolsScopedListWarningData(o[0]); | 6651 checkTargetPoolsScopedListWarningData(o[0]); |
| 6652 checkTargetPoolsScopedListWarningData(o[1]); | 6652 checkTargetPoolsScopedListWarningData(o[1]); |
| 6653 } | 6653 } |
| 6654 | 6654 |
| 6655 core.int buildCounterTargetPoolsScopedListWarning = 0; | 6655 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 6656 buildTargetPoolsScopedListWarning() { | 6656 buildTargetPoolsScopedListWarning() { |
| 6657 var o = new api.TargetPoolsScopedListWarning(); | 6657 var o = new api.TargetPoolsScopedListWarning(); |
| 6658 buildCounterTargetPoolsScopedListWarning++; | 6658 buildCounterTargetPoolsScopedListWarning++; |
| 6659 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6659 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6660 o.code = "foo"; | 6660 o.code = "foo"; |
| 6661 o.data = buildUnnamed824(); | 6661 o.data = buildUnnamed2409(); |
| 6662 o.message = "foo"; | 6662 o.message = "foo"; |
| 6663 } | 6663 } |
| 6664 buildCounterTargetPoolsScopedListWarning--; | 6664 buildCounterTargetPoolsScopedListWarning--; |
| 6665 return o; | 6665 return o; |
| 6666 } | 6666 } |
| 6667 | 6667 |
| 6668 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 6668 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 6669 buildCounterTargetPoolsScopedListWarning++; | 6669 buildCounterTargetPoolsScopedListWarning++; |
| 6670 if (buildCounterTargetPoolsScopedListWarning < 3) { | 6670 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 6671 unittest.expect(o.code, unittest.equals('foo')); | 6671 unittest.expect(o.code, unittest.equals('foo')); |
| 6672 checkUnnamed824(o.data); | 6672 checkUnnamed2409(o.data); |
| 6673 unittest.expect(o.message, unittest.equals('foo')); | 6673 unittest.expect(o.message, unittest.equals('foo')); |
| 6674 } | 6674 } |
| 6675 buildCounterTargetPoolsScopedListWarning--; | 6675 buildCounterTargetPoolsScopedListWarning--; |
| 6676 } | 6676 } |
| 6677 | 6677 |
| 6678 core.int buildCounterTargetPoolsScopedList = 0; | 6678 core.int buildCounterTargetPoolsScopedList = 0; |
| 6679 buildTargetPoolsScopedList() { | 6679 buildTargetPoolsScopedList() { |
| 6680 var o = new api.TargetPoolsScopedList(); | 6680 var o = new api.TargetPoolsScopedList(); |
| 6681 buildCounterTargetPoolsScopedList++; | 6681 buildCounterTargetPoolsScopedList++; |
| 6682 if (buildCounterTargetPoolsScopedList < 3) { | 6682 if (buildCounterTargetPoolsScopedList < 3) { |
| 6683 o.targetPools = buildUnnamed823(); | 6683 o.targetPools = buildUnnamed2408(); |
| 6684 o.warning = buildTargetPoolsScopedListWarning(); | 6684 o.warning = buildTargetPoolsScopedListWarning(); |
| 6685 } | 6685 } |
| 6686 buildCounterTargetPoolsScopedList--; | 6686 buildCounterTargetPoolsScopedList--; |
| 6687 return o; | 6687 return o; |
| 6688 } | 6688 } |
| 6689 | 6689 |
| 6690 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 6690 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 6691 buildCounterTargetPoolsScopedList++; | 6691 buildCounterTargetPoolsScopedList++; |
| 6692 if (buildCounterTargetPoolsScopedList < 3) { | 6692 if (buildCounterTargetPoolsScopedList < 3) { |
| 6693 checkUnnamed823(o.targetPools); | 6693 checkUnnamed2408(o.targetPools); |
| 6694 checkTargetPoolsScopedListWarning(o.warning); | 6694 checkTargetPoolsScopedListWarning(o.warning); |
| 6695 } | 6695 } |
| 6696 buildCounterTargetPoolsScopedList--; | 6696 buildCounterTargetPoolsScopedList--; |
| 6697 } | 6697 } |
| 6698 | 6698 |
| 6699 core.int buildCounterTargetReference = 0; | 6699 core.int buildCounterTargetReference = 0; |
| 6700 buildTargetReference() { | 6700 buildTargetReference() { |
| 6701 var o = new api.TargetReference(); | 6701 var o = new api.TargetReference(); |
| 6702 buildCounterTargetReference++; | 6702 buildCounterTargetReference++; |
| 6703 if (buildCounterTargetReference < 3) { | 6703 if (buildCounterTargetReference < 3) { |
| 6704 o.target = "foo"; | 6704 o.target = "foo"; |
| 6705 } | 6705 } |
| 6706 buildCounterTargetReference--; | 6706 buildCounterTargetReference--; |
| 6707 return o; | 6707 return o; |
| 6708 } | 6708 } |
| 6709 | 6709 |
| 6710 checkTargetReference(api.TargetReference o) { | 6710 checkTargetReference(api.TargetReference o) { |
| 6711 buildCounterTargetReference++; | 6711 buildCounterTargetReference++; |
| 6712 if (buildCounterTargetReference < 3) { | 6712 if (buildCounterTargetReference < 3) { |
| 6713 unittest.expect(o.target, unittest.equals('foo')); | 6713 unittest.expect(o.target, unittest.equals('foo')); |
| 6714 } | 6714 } |
| 6715 buildCounterTargetReference--; | 6715 buildCounterTargetReference--; |
| 6716 } | 6716 } |
| 6717 | 6717 |
| 6718 buildUnnamed825() { | 6718 buildUnnamed2410() { |
| 6719 var o = new core.List<core.String>(); | 6719 var o = new core.List<core.String>(); |
| 6720 o.add("foo"); | 6720 o.add("foo"); |
| 6721 o.add("foo"); | 6721 o.add("foo"); |
| 6722 return o; | 6722 return o; |
| 6723 } | 6723 } |
| 6724 | 6724 |
| 6725 checkUnnamed825(core.List<core.String> o) { | 6725 checkUnnamed2410(core.List<core.String> o) { |
| 6726 unittest.expect(o, unittest.hasLength(2)); | 6726 unittest.expect(o, unittest.hasLength(2)); |
| 6727 unittest.expect(o[0], unittest.equals('foo')); | 6727 unittest.expect(o[0], unittest.equals('foo')); |
| 6728 unittest.expect(o[1], unittest.equals('foo')); | 6728 unittest.expect(o[1], unittest.equals('foo')); |
| 6729 } | 6729 } |
| 6730 | 6730 |
| 6731 buildUnnamed826() { | 6731 buildUnnamed2411() { |
| 6732 var o = new core.List<core.String>(); | 6732 var o = new core.List<core.String>(); |
| 6733 o.add("foo"); | 6733 o.add("foo"); |
| 6734 o.add("foo"); | 6734 o.add("foo"); |
| 6735 return o; | 6735 return o; |
| 6736 } | 6736 } |
| 6737 | 6737 |
| 6738 checkUnnamed826(core.List<core.String> o) { | 6738 checkUnnamed2411(core.List<core.String> o) { |
| 6739 unittest.expect(o, unittest.hasLength(2)); | 6739 unittest.expect(o, unittest.hasLength(2)); |
| 6740 unittest.expect(o[0], unittest.equals('foo')); | 6740 unittest.expect(o[0], unittest.equals('foo')); |
| 6741 unittest.expect(o[1], unittest.equals('foo')); | 6741 unittest.expect(o[1], unittest.equals('foo')); |
| 6742 } | 6742 } |
| 6743 | 6743 |
| 6744 core.int buildCounterTargetVpnGateway = 0; | 6744 core.int buildCounterTargetVpnGateway = 0; |
| 6745 buildTargetVpnGateway() { | 6745 buildTargetVpnGateway() { |
| 6746 var o = new api.TargetVpnGateway(); | 6746 var o = new api.TargetVpnGateway(); |
| 6747 buildCounterTargetVpnGateway++; | 6747 buildCounterTargetVpnGateway++; |
| 6748 if (buildCounterTargetVpnGateway < 3) { | 6748 if (buildCounterTargetVpnGateway < 3) { |
| 6749 o.creationTimestamp = "foo"; | 6749 o.creationTimestamp = "foo"; |
| 6750 o.description = "foo"; | 6750 o.description = "foo"; |
| 6751 o.forwardingRules = buildUnnamed825(); | 6751 o.forwardingRules = buildUnnamed2410(); |
| 6752 o.id = "foo"; | 6752 o.id = "foo"; |
| 6753 o.kind = "foo"; | 6753 o.kind = "foo"; |
| 6754 o.name = "foo"; | 6754 o.name = "foo"; |
| 6755 o.network = "foo"; | 6755 o.network = "foo"; |
| 6756 o.region = "foo"; | 6756 o.region = "foo"; |
| 6757 o.selfLink = "foo"; | 6757 o.selfLink = "foo"; |
| 6758 o.status = "foo"; | 6758 o.status = "foo"; |
| 6759 o.tunnels = buildUnnamed826(); | 6759 o.tunnels = buildUnnamed2411(); |
| 6760 } | 6760 } |
| 6761 buildCounterTargetVpnGateway--; | 6761 buildCounterTargetVpnGateway--; |
| 6762 return o; | 6762 return o; |
| 6763 } | 6763 } |
| 6764 | 6764 |
| 6765 checkTargetVpnGateway(api.TargetVpnGateway o) { | 6765 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 6766 buildCounterTargetVpnGateway++; | 6766 buildCounterTargetVpnGateway++; |
| 6767 if (buildCounterTargetVpnGateway < 3) { | 6767 if (buildCounterTargetVpnGateway < 3) { |
| 6768 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6768 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6769 unittest.expect(o.description, unittest.equals('foo')); | 6769 unittest.expect(o.description, unittest.equals('foo')); |
| 6770 checkUnnamed825(o.forwardingRules); | 6770 checkUnnamed2410(o.forwardingRules); |
| 6771 unittest.expect(o.id, unittest.equals('foo')); | 6771 unittest.expect(o.id, unittest.equals('foo')); |
| 6772 unittest.expect(o.kind, unittest.equals('foo')); | 6772 unittest.expect(o.kind, unittest.equals('foo')); |
| 6773 unittest.expect(o.name, unittest.equals('foo')); | 6773 unittest.expect(o.name, unittest.equals('foo')); |
| 6774 unittest.expect(o.network, unittest.equals('foo')); | 6774 unittest.expect(o.network, unittest.equals('foo')); |
| 6775 unittest.expect(o.region, unittest.equals('foo')); | 6775 unittest.expect(o.region, unittest.equals('foo')); |
| 6776 unittest.expect(o.selfLink, unittest.equals('foo')); | 6776 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6777 unittest.expect(o.status, unittest.equals('foo')); | 6777 unittest.expect(o.status, unittest.equals('foo')); |
| 6778 checkUnnamed826(o.tunnels); | 6778 checkUnnamed2411(o.tunnels); |
| 6779 } | 6779 } |
| 6780 buildCounterTargetVpnGateway--; | 6780 buildCounterTargetVpnGateway--; |
| 6781 } | 6781 } |
| 6782 | 6782 |
| 6783 buildUnnamed827() { | 6783 buildUnnamed2412() { |
| 6784 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 6784 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 6785 o["x"] = buildTargetVpnGatewaysScopedList(); | 6785 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 6786 o["y"] = buildTargetVpnGatewaysScopedList(); | 6786 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 6787 return o; | 6787 return o; |
| 6788 } | 6788 } |
| 6789 | 6789 |
| 6790 checkUnnamed827(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 6790 checkUnnamed2412(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 6791 unittest.expect(o, unittest.hasLength(2)); | 6791 unittest.expect(o, unittest.hasLength(2)); |
| 6792 checkTargetVpnGatewaysScopedList(o["x"]); | 6792 checkTargetVpnGatewaysScopedList(o["x"]); |
| 6793 checkTargetVpnGatewaysScopedList(o["y"]); | 6793 checkTargetVpnGatewaysScopedList(o["y"]); |
| 6794 } | 6794 } |
| 6795 | 6795 |
| 6796 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 6796 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 6797 buildTargetVpnGatewayAggregatedList() { | 6797 buildTargetVpnGatewayAggregatedList() { |
| 6798 var o = new api.TargetVpnGatewayAggregatedList(); | 6798 var o = new api.TargetVpnGatewayAggregatedList(); |
| 6799 buildCounterTargetVpnGatewayAggregatedList++; | 6799 buildCounterTargetVpnGatewayAggregatedList++; |
| 6800 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6800 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6801 o.id = "foo"; | 6801 o.id = "foo"; |
| 6802 o.items = buildUnnamed827(); | 6802 o.items = buildUnnamed2412(); |
| 6803 o.kind = "foo"; | 6803 o.kind = "foo"; |
| 6804 o.nextPageToken = "foo"; | 6804 o.nextPageToken = "foo"; |
| 6805 o.selfLink = "foo"; | 6805 o.selfLink = "foo"; |
| 6806 } | 6806 } |
| 6807 buildCounterTargetVpnGatewayAggregatedList--; | 6807 buildCounterTargetVpnGatewayAggregatedList--; |
| 6808 return o; | 6808 return o; |
| 6809 } | 6809 } |
| 6810 | 6810 |
| 6811 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 6811 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 6812 buildCounterTargetVpnGatewayAggregatedList++; | 6812 buildCounterTargetVpnGatewayAggregatedList++; |
| 6813 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 6813 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 6814 unittest.expect(o.id, unittest.equals('foo')); | 6814 unittest.expect(o.id, unittest.equals('foo')); |
| 6815 checkUnnamed827(o.items); | 6815 checkUnnamed2412(o.items); |
| 6816 unittest.expect(o.kind, unittest.equals('foo')); | 6816 unittest.expect(o.kind, unittest.equals('foo')); |
| 6817 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6817 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6818 unittest.expect(o.selfLink, unittest.equals('foo')); | 6818 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6819 } | 6819 } |
| 6820 buildCounterTargetVpnGatewayAggregatedList--; | 6820 buildCounterTargetVpnGatewayAggregatedList--; |
| 6821 } | 6821 } |
| 6822 | 6822 |
| 6823 buildUnnamed828() { | 6823 buildUnnamed2413() { |
| 6824 var o = new core.List<api.TargetVpnGateway>(); | 6824 var o = new core.List<api.TargetVpnGateway>(); |
| 6825 o.add(buildTargetVpnGateway()); | 6825 o.add(buildTargetVpnGateway()); |
| 6826 o.add(buildTargetVpnGateway()); | 6826 o.add(buildTargetVpnGateway()); |
| 6827 return o; | 6827 return o; |
| 6828 } | 6828 } |
| 6829 | 6829 |
| 6830 checkUnnamed828(core.List<api.TargetVpnGateway> o) { | 6830 checkUnnamed2413(core.List<api.TargetVpnGateway> o) { |
| 6831 unittest.expect(o, unittest.hasLength(2)); | 6831 unittest.expect(o, unittest.hasLength(2)); |
| 6832 checkTargetVpnGateway(o[0]); | 6832 checkTargetVpnGateway(o[0]); |
| 6833 checkTargetVpnGateway(o[1]); | 6833 checkTargetVpnGateway(o[1]); |
| 6834 } | 6834 } |
| 6835 | 6835 |
| 6836 core.int buildCounterTargetVpnGatewayList = 0; | 6836 core.int buildCounterTargetVpnGatewayList = 0; |
| 6837 buildTargetVpnGatewayList() { | 6837 buildTargetVpnGatewayList() { |
| 6838 var o = new api.TargetVpnGatewayList(); | 6838 var o = new api.TargetVpnGatewayList(); |
| 6839 buildCounterTargetVpnGatewayList++; | 6839 buildCounterTargetVpnGatewayList++; |
| 6840 if (buildCounterTargetVpnGatewayList < 3) { | 6840 if (buildCounterTargetVpnGatewayList < 3) { |
| 6841 o.id = "foo"; | 6841 o.id = "foo"; |
| 6842 o.items = buildUnnamed828(); | 6842 o.items = buildUnnamed2413(); |
| 6843 o.kind = "foo"; | 6843 o.kind = "foo"; |
| 6844 o.nextPageToken = "foo"; | 6844 o.nextPageToken = "foo"; |
| 6845 o.selfLink = "foo"; | 6845 o.selfLink = "foo"; |
| 6846 } | 6846 } |
| 6847 buildCounterTargetVpnGatewayList--; | 6847 buildCounterTargetVpnGatewayList--; |
| 6848 return o; | 6848 return o; |
| 6849 } | 6849 } |
| 6850 | 6850 |
| 6851 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 6851 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 6852 buildCounterTargetVpnGatewayList++; | 6852 buildCounterTargetVpnGatewayList++; |
| 6853 if (buildCounterTargetVpnGatewayList < 3) { | 6853 if (buildCounterTargetVpnGatewayList < 3) { |
| 6854 unittest.expect(o.id, unittest.equals('foo')); | 6854 unittest.expect(o.id, unittest.equals('foo')); |
| 6855 checkUnnamed828(o.items); | 6855 checkUnnamed2413(o.items); |
| 6856 unittest.expect(o.kind, unittest.equals('foo')); | 6856 unittest.expect(o.kind, unittest.equals('foo')); |
| 6857 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6857 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6858 unittest.expect(o.selfLink, unittest.equals('foo')); | 6858 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6859 } | 6859 } |
| 6860 buildCounterTargetVpnGatewayList--; | 6860 buildCounterTargetVpnGatewayList--; |
| 6861 } | 6861 } |
| 6862 | 6862 |
| 6863 buildUnnamed829() { | 6863 buildUnnamed2414() { |
| 6864 var o = new core.List<api.TargetVpnGateway>(); | 6864 var o = new core.List<api.TargetVpnGateway>(); |
| 6865 o.add(buildTargetVpnGateway()); | 6865 o.add(buildTargetVpnGateway()); |
| 6866 o.add(buildTargetVpnGateway()); | 6866 o.add(buildTargetVpnGateway()); |
| 6867 return o; | 6867 return o; |
| 6868 } | 6868 } |
| 6869 | 6869 |
| 6870 checkUnnamed829(core.List<api.TargetVpnGateway> o) { | 6870 checkUnnamed2414(core.List<api.TargetVpnGateway> o) { |
| 6871 unittest.expect(o, unittest.hasLength(2)); | 6871 unittest.expect(o, unittest.hasLength(2)); |
| 6872 checkTargetVpnGateway(o[0]); | 6872 checkTargetVpnGateway(o[0]); |
| 6873 checkTargetVpnGateway(o[1]); | 6873 checkTargetVpnGateway(o[1]); |
| 6874 } | 6874 } |
| 6875 | 6875 |
| 6876 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 6876 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 6877 buildTargetVpnGatewaysScopedListWarningData() { | 6877 buildTargetVpnGatewaysScopedListWarningData() { |
| 6878 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 6878 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 6879 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6879 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6880 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6880 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6881 o.key = "foo"; | 6881 o.key = "foo"; |
| 6882 o.value = "foo"; | 6882 o.value = "foo"; |
| 6883 } | 6883 } |
| 6884 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6884 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6885 return o; | 6885 return o; |
| 6886 } | 6886 } |
| 6887 | 6887 |
| 6888 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 6888 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 6889 buildCounterTargetVpnGatewaysScopedListWarningData++; | 6889 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 6890 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 6890 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 6891 unittest.expect(o.key, unittest.equals('foo')); | 6891 unittest.expect(o.key, unittest.equals('foo')); |
| 6892 unittest.expect(o.value, unittest.equals('foo')); | 6892 unittest.expect(o.value, unittest.equals('foo')); |
| 6893 } | 6893 } |
| 6894 buildCounterTargetVpnGatewaysScopedListWarningData--; | 6894 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 6895 } | 6895 } |
| 6896 | 6896 |
| 6897 buildUnnamed830() { | 6897 buildUnnamed2415() { |
| 6898 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 6898 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 6899 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6899 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6900 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 6900 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 6901 return o; | 6901 return o; |
| 6902 } | 6902 } |
| 6903 | 6903 |
| 6904 checkUnnamed830(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 6904 checkUnnamed2415(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 6905 unittest.expect(o, unittest.hasLength(2)); | 6905 unittest.expect(o, unittest.hasLength(2)); |
| 6906 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 6906 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 6907 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 6907 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 6908 } | 6908 } |
| 6909 | 6909 |
| 6910 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 6910 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 6911 buildTargetVpnGatewaysScopedListWarning() { | 6911 buildTargetVpnGatewaysScopedListWarning() { |
| 6912 var o = new api.TargetVpnGatewaysScopedListWarning(); | 6912 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 6913 buildCounterTargetVpnGatewaysScopedListWarning++; | 6913 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6914 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6914 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6915 o.code = "foo"; | 6915 o.code = "foo"; |
| 6916 o.data = buildUnnamed830(); | 6916 o.data = buildUnnamed2415(); |
| 6917 o.message = "foo"; | 6917 o.message = "foo"; |
| 6918 } | 6918 } |
| 6919 buildCounterTargetVpnGatewaysScopedListWarning--; | 6919 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6920 return o; | 6920 return o; |
| 6921 } | 6921 } |
| 6922 | 6922 |
| 6923 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 6923 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 6924 buildCounterTargetVpnGatewaysScopedListWarning++; | 6924 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 6925 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 6925 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 6926 unittest.expect(o.code, unittest.equals('foo')); | 6926 unittest.expect(o.code, unittest.equals('foo')); |
| 6927 checkUnnamed830(o.data); | 6927 checkUnnamed2415(o.data); |
| 6928 unittest.expect(o.message, unittest.equals('foo')); | 6928 unittest.expect(o.message, unittest.equals('foo')); |
| 6929 } | 6929 } |
| 6930 buildCounterTargetVpnGatewaysScopedListWarning--; | 6930 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 6931 } | 6931 } |
| 6932 | 6932 |
| 6933 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 6933 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 6934 buildTargetVpnGatewaysScopedList() { | 6934 buildTargetVpnGatewaysScopedList() { |
| 6935 var o = new api.TargetVpnGatewaysScopedList(); | 6935 var o = new api.TargetVpnGatewaysScopedList(); |
| 6936 buildCounterTargetVpnGatewaysScopedList++; | 6936 buildCounterTargetVpnGatewaysScopedList++; |
| 6937 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6937 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6938 o.targetVpnGateways = buildUnnamed829(); | 6938 o.targetVpnGateways = buildUnnamed2414(); |
| 6939 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 6939 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 6940 } | 6940 } |
| 6941 buildCounterTargetVpnGatewaysScopedList--; | 6941 buildCounterTargetVpnGatewaysScopedList--; |
| 6942 return o; | 6942 return o; |
| 6943 } | 6943 } |
| 6944 | 6944 |
| 6945 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 6945 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 6946 buildCounterTargetVpnGatewaysScopedList++; | 6946 buildCounterTargetVpnGatewaysScopedList++; |
| 6947 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 6947 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 6948 checkUnnamed829(o.targetVpnGateways); | 6948 checkUnnamed2414(o.targetVpnGateways); |
| 6949 checkTargetVpnGatewaysScopedListWarning(o.warning); | 6949 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 6950 } | 6950 } |
| 6951 buildCounterTargetVpnGatewaysScopedList--; | 6951 buildCounterTargetVpnGatewaysScopedList--; |
| 6952 } | 6952 } |
| 6953 | 6953 |
| 6954 core.int buildCounterTestFailure = 0; | 6954 core.int buildCounterTestFailure = 0; |
| 6955 buildTestFailure() { | 6955 buildTestFailure() { |
| 6956 var o = new api.TestFailure(); | 6956 var o = new api.TestFailure(); |
| 6957 buildCounterTestFailure++; | 6957 buildCounterTestFailure++; |
| 6958 if (buildCounterTestFailure < 3) { | 6958 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6969 buildCounterTestFailure++; | 6969 buildCounterTestFailure++; |
| 6970 if (buildCounterTestFailure < 3) { | 6970 if (buildCounterTestFailure < 3) { |
| 6971 unittest.expect(o.actualService, unittest.equals('foo')); | 6971 unittest.expect(o.actualService, unittest.equals('foo')); |
| 6972 unittest.expect(o.expectedService, unittest.equals('foo')); | 6972 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 6973 unittest.expect(o.host, unittest.equals('foo')); | 6973 unittest.expect(o.host, unittest.equals('foo')); |
| 6974 unittest.expect(o.path, unittest.equals('foo')); | 6974 unittest.expect(o.path, unittest.equals('foo')); |
| 6975 } | 6975 } |
| 6976 buildCounterTestFailure--; | 6976 buildCounterTestFailure--; |
| 6977 } | 6977 } |
| 6978 | 6978 |
| 6979 buildUnnamed831() { | 6979 buildUnnamed2416() { |
| 6980 var o = new core.List<api.HostRule>(); | 6980 var o = new core.List<api.HostRule>(); |
| 6981 o.add(buildHostRule()); | 6981 o.add(buildHostRule()); |
| 6982 o.add(buildHostRule()); | 6982 o.add(buildHostRule()); |
| 6983 return o; | 6983 return o; |
| 6984 } | 6984 } |
| 6985 | 6985 |
| 6986 checkUnnamed831(core.List<api.HostRule> o) { | 6986 checkUnnamed2416(core.List<api.HostRule> o) { |
| 6987 unittest.expect(o, unittest.hasLength(2)); | 6987 unittest.expect(o, unittest.hasLength(2)); |
| 6988 checkHostRule(o[0]); | 6988 checkHostRule(o[0]); |
| 6989 checkHostRule(o[1]); | 6989 checkHostRule(o[1]); |
| 6990 } | 6990 } |
| 6991 | 6991 |
| 6992 buildUnnamed832() { | 6992 buildUnnamed2417() { |
| 6993 var o = new core.List<api.PathMatcher>(); | 6993 var o = new core.List<api.PathMatcher>(); |
| 6994 o.add(buildPathMatcher()); | 6994 o.add(buildPathMatcher()); |
| 6995 o.add(buildPathMatcher()); | 6995 o.add(buildPathMatcher()); |
| 6996 return o; | 6996 return o; |
| 6997 } | 6997 } |
| 6998 | 6998 |
| 6999 checkUnnamed832(core.List<api.PathMatcher> o) { | 6999 checkUnnamed2417(core.List<api.PathMatcher> o) { |
| 7000 unittest.expect(o, unittest.hasLength(2)); | 7000 unittest.expect(o, unittest.hasLength(2)); |
| 7001 checkPathMatcher(o[0]); | 7001 checkPathMatcher(o[0]); |
| 7002 checkPathMatcher(o[1]); | 7002 checkPathMatcher(o[1]); |
| 7003 } | 7003 } |
| 7004 | 7004 |
| 7005 buildUnnamed833() { | 7005 buildUnnamed2418() { |
| 7006 var o = new core.List<api.UrlMapTest>(); | 7006 var o = new core.List<api.UrlMapTest>(); |
| 7007 o.add(buildUrlMapTest()); | 7007 o.add(buildUrlMapTest()); |
| 7008 o.add(buildUrlMapTest()); | 7008 o.add(buildUrlMapTest()); |
| 7009 return o; | 7009 return o; |
| 7010 } | 7010 } |
| 7011 | 7011 |
| 7012 checkUnnamed833(core.List<api.UrlMapTest> o) { | 7012 checkUnnamed2418(core.List<api.UrlMapTest> o) { |
| 7013 unittest.expect(o, unittest.hasLength(2)); | 7013 unittest.expect(o, unittest.hasLength(2)); |
| 7014 checkUrlMapTest(o[0]); | 7014 checkUrlMapTest(o[0]); |
| 7015 checkUrlMapTest(o[1]); | 7015 checkUrlMapTest(o[1]); |
| 7016 } | 7016 } |
| 7017 | 7017 |
| 7018 core.int buildCounterUrlMap = 0; | 7018 core.int buildCounterUrlMap = 0; |
| 7019 buildUrlMap() { | 7019 buildUrlMap() { |
| 7020 var o = new api.UrlMap(); | 7020 var o = new api.UrlMap(); |
| 7021 buildCounterUrlMap++; | 7021 buildCounterUrlMap++; |
| 7022 if (buildCounterUrlMap < 3) { | 7022 if (buildCounterUrlMap < 3) { |
| 7023 o.creationTimestamp = "foo"; | 7023 o.creationTimestamp = "foo"; |
| 7024 o.defaultService = "foo"; | 7024 o.defaultService = "foo"; |
| 7025 o.description = "foo"; | 7025 o.description = "foo"; |
| 7026 o.fingerprint = "foo"; | 7026 o.fingerprint = "foo"; |
| 7027 o.hostRules = buildUnnamed831(); | 7027 o.hostRules = buildUnnamed2416(); |
| 7028 o.id = "foo"; | 7028 o.id = "foo"; |
| 7029 o.kind = "foo"; | 7029 o.kind = "foo"; |
| 7030 o.name = "foo"; | 7030 o.name = "foo"; |
| 7031 o.pathMatchers = buildUnnamed832(); | 7031 o.pathMatchers = buildUnnamed2417(); |
| 7032 o.selfLink = "foo"; | 7032 o.selfLink = "foo"; |
| 7033 o.tests = buildUnnamed833(); | 7033 o.tests = buildUnnamed2418(); |
| 7034 } | 7034 } |
| 7035 buildCounterUrlMap--; | 7035 buildCounterUrlMap--; |
| 7036 return o; | 7036 return o; |
| 7037 } | 7037 } |
| 7038 | 7038 |
| 7039 checkUrlMap(api.UrlMap o) { | 7039 checkUrlMap(api.UrlMap o) { |
| 7040 buildCounterUrlMap++; | 7040 buildCounterUrlMap++; |
| 7041 if (buildCounterUrlMap < 3) { | 7041 if (buildCounterUrlMap < 3) { |
| 7042 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7042 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7043 unittest.expect(o.defaultService, unittest.equals('foo')); | 7043 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 7044 unittest.expect(o.description, unittest.equals('foo')); | 7044 unittest.expect(o.description, unittest.equals('foo')); |
| 7045 unittest.expect(o.fingerprint, unittest.equals('foo')); | 7045 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 7046 checkUnnamed831(o.hostRules); | 7046 checkUnnamed2416(o.hostRules); |
| 7047 unittest.expect(o.id, unittest.equals('foo')); | 7047 unittest.expect(o.id, unittest.equals('foo')); |
| 7048 unittest.expect(o.kind, unittest.equals('foo')); | 7048 unittest.expect(o.kind, unittest.equals('foo')); |
| 7049 unittest.expect(o.name, unittest.equals('foo')); | 7049 unittest.expect(o.name, unittest.equals('foo')); |
| 7050 checkUnnamed832(o.pathMatchers); | 7050 checkUnnamed2417(o.pathMatchers); |
| 7051 unittest.expect(o.selfLink, unittest.equals('foo')); | 7051 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7052 checkUnnamed833(o.tests); | 7052 checkUnnamed2418(o.tests); |
| 7053 } | 7053 } |
| 7054 buildCounterUrlMap--; | 7054 buildCounterUrlMap--; |
| 7055 } | 7055 } |
| 7056 | 7056 |
| 7057 buildUnnamed834() { | 7057 buildUnnamed2419() { |
| 7058 var o = new core.List<api.UrlMap>(); | 7058 var o = new core.List<api.UrlMap>(); |
| 7059 o.add(buildUrlMap()); | 7059 o.add(buildUrlMap()); |
| 7060 o.add(buildUrlMap()); | 7060 o.add(buildUrlMap()); |
| 7061 return o; | 7061 return o; |
| 7062 } | 7062 } |
| 7063 | 7063 |
| 7064 checkUnnamed834(core.List<api.UrlMap> o) { | 7064 checkUnnamed2419(core.List<api.UrlMap> o) { |
| 7065 unittest.expect(o, unittest.hasLength(2)); | 7065 unittest.expect(o, unittest.hasLength(2)); |
| 7066 checkUrlMap(o[0]); | 7066 checkUrlMap(o[0]); |
| 7067 checkUrlMap(o[1]); | 7067 checkUrlMap(o[1]); |
| 7068 } | 7068 } |
| 7069 | 7069 |
| 7070 core.int buildCounterUrlMapList = 0; | 7070 core.int buildCounterUrlMapList = 0; |
| 7071 buildUrlMapList() { | 7071 buildUrlMapList() { |
| 7072 var o = new api.UrlMapList(); | 7072 var o = new api.UrlMapList(); |
| 7073 buildCounterUrlMapList++; | 7073 buildCounterUrlMapList++; |
| 7074 if (buildCounterUrlMapList < 3) { | 7074 if (buildCounterUrlMapList < 3) { |
| 7075 o.id = "foo"; | 7075 o.id = "foo"; |
| 7076 o.items = buildUnnamed834(); | 7076 o.items = buildUnnamed2419(); |
| 7077 o.kind = "foo"; | 7077 o.kind = "foo"; |
| 7078 o.nextPageToken = "foo"; | 7078 o.nextPageToken = "foo"; |
| 7079 o.selfLink = "foo"; | 7079 o.selfLink = "foo"; |
| 7080 } | 7080 } |
| 7081 buildCounterUrlMapList--; | 7081 buildCounterUrlMapList--; |
| 7082 return o; | 7082 return o; |
| 7083 } | 7083 } |
| 7084 | 7084 |
| 7085 checkUrlMapList(api.UrlMapList o) { | 7085 checkUrlMapList(api.UrlMapList o) { |
| 7086 buildCounterUrlMapList++; | 7086 buildCounterUrlMapList++; |
| 7087 if (buildCounterUrlMapList < 3) { | 7087 if (buildCounterUrlMapList < 3) { |
| 7088 unittest.expect(o.id, unittest.equals('foo')); | 7088 unittest.expect(o.id, unittest.equals('foo')); |
| 7089 checkUnnamed834(o.items); | 7089 checkUnnamed2419(o.items); |
| 7090 unittest.expect(o.kind, unittest.equals('foo')); | 7090 unittest.expect(o.kind, unittest.equals('foo')); |
| 7091 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7091 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7092 unittest.expect(o.selfLink, unittest.equals('foo')); | 7092 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7093 } | 7093 } |
| 7094 buildCounterUrlMapList--; | 7094 buildCounterUrlMapList--; |
| 7095 } | 7095 } |
| 7096 | 7096 |
| 7097 core.int buildCounterUrlMapReference = 0; | 7097 core.int buildCounterUrlMapReference = 0; |
| 7098 buildUrlMapReference() { | 7098 buildUrlMapReference() { |
| 7099 var o = new api.UrlMapReference(); | 7099 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7131 buildCounterUrlMapTest++; | 7131 buildCounterUrlMapTest++; |
| 7132 if (buildCounterUrlMapTest < 3) { | 7132 if (buildCounterUrlMapTest < 3) { |
| 7133 unittest.expect(o.description, unittest.equals('foo')); | 7133 unittest.expect(o.description, unittest.equals('foo')); |
| 7134 unittest.expect(o.host, unittest.equals('foo')); | 7134 unittest.expect(o.host, unittest.equals('foo')); |
| 7135 unittest.expect(o.path, unittest.equals('foo')); | 7135 unittest.expect(o.path, unittest.equals('foo')); |
| 7136 unittest.expect(o.service, unittest.equals('foo')); | 7136 unittest.expect(o.service, unittest.equals('foo')); |
| 7137 } | 7137 } |
| 7138 buildCounterUrlMapTest--; | 7138 buildCounterUrlMapTest--; |
| 7139 } | 7139 } |
| 7140 | 7140 |
| 7141 buildUnnamed835() { | 7141 buildUnnamed2420() { |
| 7142 var o = new core.List<core.String>(); | 7142 var o = new core.List<core.String>(); |
| 7143 o.add("foo"); | 7143 o.add("foo"); |
| 7144 o.add("foo"); | 7144 o.add("foo"); |
| 7145 return o; | 7145 return o; |
| 7146 } | 7146 } |
| 7147 | 7147 |
| 7148 checkUnnamed835(core.List<core.String> o) { | 7148 checkUnnamed2420(core.List<core.String> o) { |
| 7149 unittest.expect(o, unittest.hasLength(2)); | 7149 unittest.expect(o, unittest.hasLength(2)); |
| 7150 unittest.expect(o[0], unittest.equals('foo')); | 7150 unittest.expect(o[0], unittest.equals('foo')); |
| 7151 unittest.expect(o[1], unittest.equals('foo')); | 7151 unittest.expect(o[1], unittest.equals('foo')); |
| 7152 } | 7152 } |
| 7153 | 7153 |
| 7154 buildUnnamed836() { | 7154 buildUnnamed2421() { |
| 7155 var o = new core.List<api.TestFailure>(); | 7155 var o = new core.List<api.TestFailure>(); |
| 7156 o.add(buildTestFailure()); | 7156 o.add(buildTestFailure()); |
| 7157 o.add(buildTestFailure()); | 7157 o.add(buildTestFailure()); |
| 7158 return o; | 7158 return o; |
| 7159 } | 7159 } |
| 7160 | 7160 |
| 7161 checkUnnamed836(core.List<api.TestFailure> o) { | 7161 checkUnnamed2421(core.List<api.TestFailure> o) { |
| 7162 unittest.expect(o, unittest.hasLength(2)); | 7162 unittest.expect(o, unittest.hasLength(2)); |
| 7163 checkTestFailure(o[0]); | 7163 checkTestFailure(o[0]); |
| 7164 checkTestFailure(o[1]); | 7164 checkTestFailure(o[1]); |
| 7165 } | 7165 } |
| 7166 | 7166 |
| 7167 core.int buildCounterUrlMapValidationResult = 0; | 7167 core.int buildCounterUrlMapValidationResult = 0; |
| 7168 buildUrlMapValidationResult() { | 7168 buildUrlMapValidationResult() { |
| 7169 var o = new api.UrlMapValidationResult(); | 7169 var o = new api.UrlMapValidationResult(); |
| 7170 buildCounterUrlMapValidationResult++; | 7170 buildCounterUrlMapValidationResult++; |
| 7171 if (buildCounterUrlMapValidationResult < 3) { | 7171 if (buildCounterUrlMapValidationResult < 3) { |
| 7172 o.loadErrors = buildUnnamed835(); | 7172 o.loadErrors = buildUnnamed2420(); |
| 7173 o.loadSucceeded = true; | 7173 o.loadSucceeded = true; |
| 7174 o.testFailures = buildUnnamed836(); | 7174 o.testFailures = buildUnnamed2421(); |
| 7175 o.testPassed = true; | 7175 o.testPassed = true; |
| 7176 } | 7176 } |
| 7177 buildCounterUrlMapValidationResult--; | 7177 buildCounterUrlMapValidationResult--; |
| 7178 return o; | 7178 return o; |
| 7179 } | 7179 } |
| 7180 | 7180 |
| 7181 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 7181 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 7182 buildCounterUrlMapValidationResult++; | 7182 buildCounterUrlMapValidationResult++; |
| 7183 if (buildCounterUrlMapValidationResult < 3) { | 7183 if (buildCounterUrlMapValidationResult < 3) { |
| 7184 checkUnnamed835(o.loadErrors); | 7184 checkUnnamed2420(o.loadErrors); |
| 7185 unittest.expect(o.loadSucceeded, unittest.isTrue); | 7185 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 7186 checkUnnamed836(o.testFailures); | 7186 checkUnnamed2421(o.testFailures); |
| 7187 unittest.expect(o.testPassed, unittest.isTrue); | 7187 unittest.expect(o.testPassed, unittest.isTrue); |
| 7188 } | 7188 } |
| 7189 buildCounterUrlMapValidationResult--; | 7189 buildCounterUrlMapValidationResult--; |
| 7190 } | 7190 } |
| 7191 | 7191 |
| 7192 core.int buildCounterUrlMapsValidateRequest = 0; | 7192 core.int buildCounterUrlMapsValidateRequest = 0; |
| 7193 buildUrlMapsValidateRequest() { | 7193 buildUrlMapsValidateRequest() { |
| 7194 var o = new api.UrlMapsValidateRequest(); | 7194 var o = new api.UrlMapsValidateRequest(); |
| 7195 buildCounterUrlMapsValidateRequest++; | 7195 buildCounterUrlMapsValidateRequest++; |
| 7196 if (buildCounterUrlMapsValidateRequest < 3) { | 7196 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7241 | 7241 |
| 7242 checkUsageExportLocation(api.UsageExportLocation o) { | 7242 checkUsageExportLocation(api.UsageExportLocation o) { |
| 7243 buildCounterUsageExportLocation++; | 7243 buildCounterUsageExportLocation++; |
| 7244 if (buildCounterUsageExportLocation < 3) { | 7244 if (buildCounterUsageExportLocation < 3) { |
| 7245 unittest.expect(o.bucketName, unittest.equals('foo')); | 7245 unittest.expect(o.bucketName, unittest.equals('foo')); |
| 7246 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); | 7246 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); |
| 7247 } | 7247 } |
| 7248 buildCounterUsageExportLocation--; | 7248 buildCounterUsageExportLocation--; |
| 7249 } | 7249 } |
| 7250 | 7250 |
| 7251 buildUnnamed837() { | 7251 buildUnnamed2422() { |
| 7252 var o = new core.List<core.String>(); | 7252 var o = new core.List<core.String>(); |
| 7253 o.add("foo"); | 7253 o.add("foo"); |
| 7254 o.add("foo"); | 7254 o.add("foo"); |
| 7255 return o; | 7255 return o; |
| 7256 } | 7256 } |
| 7257 | 7257 |
| 7258 checkUnnamed837(core.List<core.String> o) { | 7258 checkUnnamed2422(core.List<core.String> o) { |
| 7259 unittest.expect(o, unittest.hasLength(2)); | 7259 unittest.expect(o, unittest.hasLength(2)); |
| 7260 unittest.expect(o[0], unittest.equals('foo')); | 7260 unittest.expect(o[0], unittest.equals('foo')); |
| 7261 unittest.expect(o[1], unittest.equals('foo')); | 7261 unittest.expect(o[1], unittest.equals('foo')); |
| 7262 } | 7262 } |
| 7263 | 7263 |
| 7264 buildUnnamed838() { | 7264 buildUnnamed2423() { |
| 7265 var o = new core.List<core.String>(); | 7265 var o = new core.List<core.String>(); |
| 7266 o.add("foo"); | 7266 o.add("foo"); |
| 7267 o.add("foo"); | 7267 o.add("foo"); |
| 7268 return o; | 7268 return o; |
| 7269 } | 7269 } |
| 7270 | 7270 |
| 7271 checkUnnamed838(core.List<core.String> o) { | 7271 checkUnnamed2423(core.List<core.String> o) { |
| 7272 unittest.expect(o, unittest.hasLength(2)); | 7272 unittest.expect(o, unittest.hasLength(2)); |
| 7273 unittest.expect(o[0], unittest.equals('foo')); | 7273 unittest.expect(o[0], unittest.equals('foo')); |
| 7274 unittest.expect(o[1], unittest.equals('foo')); | 7274 unittest.expect(o[1], unittest.equals('foo')); |
| 7275 } | 7275 } |
| 7276 | 7276 |
| 7277 core.int buildCounterVpnTunnel = 0; | 7277 core.int buildCounterVpnTunnel = 0; |
| 7278 buildVpnTunnel() { | 7278 buildVpnTunnel() { |
| 7279 var o = new api.VpnTunnel(); | 7279 var o = new api.VpnTunnel(); |
| 7280 buildCounterVpnTunnel++; | 7280 buildCounterVpnTunnel++; |
| 7281 if (buildCounterVpnTunnel < 3) { | 7281 if (buildCounterVpnTunnel < 3) { |
| 7282 o.creationTimestamp = "foo"; | 7282 o.creationTimestamp = "foo"; |
| 7283 o.description = "foo"; | 7283 o.description = "foo"; |
| 7284 o.detailedStatus = "foo"; | 7284 o.detailedStatus = "foo"; |
| 7285 o.id = "foo"; | 7285 o.id = "foo"; |
| 7286 o.ikeVersion = 42; | 7286 o.ikeVersion = 42; |
| 7287 o.kind = "foo"; | 7287 o.kind = "foo"; |
| 7288 o.localTrafficSelector = buildUnnamed837(); | 7288 o.localTrafficSelector = buildUnnamed2422(); |
| 7289 o.name = "foo"; | 7289 o.name = "foo"; |
| 7290 o.peerIp = "foo"; | 7290 o.peerIp = "foo"; |
| 7291 o.region = "foo"; | 7291 o.region = "foo"; |
| 7292 o.remoteTrafficSelector = buildUnnamed838(); | 7292 o.remoteTrafficSelector = buildUnnamed2423(); |
| 7293 o.router = "foo"; | 7293 o.router = "foo"; |
| 7294 o.selfLink = "foo"; | 7294 o.selfLink = "foo"; |
| 7295 o.sharedSecret = "foo"; | 7295 o.sharedSecret = "foo"; |
| 7296 o.sharedSecretHash = "foo"; | 7296 o.sharedSecretHash = "foo"; |
| 7297 o.status = "foo"; | 7297 o.status = "foo"; |
| 7298 o.targetVpnGateway = "foo"; | 7298 o.targetVpnGateway = "foo"; |
| 7299 } | 7299 } |
| 7300 buildCounterVpnTunnel--; | 7300 buildCounterVpnTunnel--; |
| 7301 return o; | 7301 return o; |
| 7302 } | 7302 } |
| 7303 | 7303 |
| 7304 checkVpnTunnel(api.VpnTunnel o) { | 7304 checkVpnTunnel(api.VpnTunnel o) { |
| 7305 buildCounterVpnTunnel++; | 7305 buildCounterVpnTunnel++; |
| 7306 if (buildCounterVpnTunnel < 3) { | 7306 if (buildCounterVpnTunnel < 3) { |
| 7307 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7307 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7308 unittest.expect(o.description, unittest.equals('foo')); | 7308 unittest.expect(o.description, unittest.equals('foo')); |
| 7309 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 7309 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 7310 unittest.expect(o.id, unittest.equals('foo')); | 7310 unittest.expect(o.id, unittest.equals('foo')); |
| 7311 unittest.expect(o.ikeVersion, unittest.equals(42)); | 7311 unittest.expect(o.ikeVersion, unittest.equals(42)); |
| 7312 unittest.expect(o.kind, unittest.equals('foo')); | 7312 unittest.expect(o.kind, unittest.equals('foo')); |
| 7313 checkUnnamed837(o.localTrafficSelector); | 7313 checkUnnamed2422(o.localTrafficSelector); |
| 7314 unittest.expect(o.name, unittest.equals('foo')); | 7314 unittest.expect(o.name, unittest.equals('foo')); |
| 7315 unittest.expect(o.peerIp, unittest.equals('foo')); | 7315 unittest.expect(o.peerIp, unittest.equals('foo')); |
| 7316 unittest.expect(o.region, unittest.equals('foo')); | 7316 unittest.expect(o.region, unittest.equals('foo')); |
| 7317 checkUnnamed838(o.remoteTrafficSelector); | 7317 checkUnnamed2423(o.remoteTrafficSelector); |
| 7318 unittest.expect(o.router, unittest.equals('foo')); | 7318 unittest.expect(o.router, unittest.equals('foo')); |
| 7319 unittest.expect(o.selfLink, unittest.equals('foo')); | 7319 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7320 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 7320 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 7321 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 7321 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 7322 unittest.expect(o.status, unittest.equals('foo')); | 7322 unittest.expect(o.status, unittest.equals('foo')); |
| 7323 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 7323 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 7324 } | 7324 } |
| 7325 buildCounterVpnTunnel--; | 7325 buildCounterVpnTunnel--; |
| 7326 } | 7326 } |
| 7327 | 7327 |
| 7328 buildUnnamed839() { | 7328 buildUnnamed2424() { |
| 7329 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 7329 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 7330 o["x"] = buildVpnTunnelsScopedList(); | 7330 o["x"] = buildVpnTunnelsScopedList(); |
| 7331 o["y"] = buildVpnTunnelsScopedList(); | 7331 o["y"] = buildVpnTunnelsScopedList(); |
| 7332 return o; | 7332 return o; |
| 7333 } | 7333 } |
| 7334 | 7334 |
| 7335 checkUnnamed839(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 7335 checkUnnamed2424(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 7336 unittest.expect(o, unittest.hasLength(2)); | 7336 unittest.expect(o, unittest.hasLength(2)); |
| 7337 checkVpnTunnelsScopedList(o["x"]); | 7337 checkVpnTunnelsScopedList(o["x"]); |
| 7338 checkVpnTunnelsScopedList(o["y"]); | 7338 checkVpnTunnelsScopedList(o["y"]); |
| 7339 } | 7339 } |
| 7340 | 7340 |
| 7341 core.int buildCounterVpnTunnelAggregatedList = 0; | 7341 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 7342 buildVpnTunnelAggregatedList() { | 7342 buildVpnTunnelAggregatedList() { |
| 7343 var o = new api.VpnTunnelAggregatedList(); | 7343 var o = new api.VpnTunnelAggregatedList(); |
| 7344 buildCounterVpnTunnelAggregatedList++; | 7344 buildCounterVpnTunnelAggregatedList++; |
| 7345 if (buildCounterVpnTunnelAggregatedList < 3) { | 7345 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 7346 o.id = "foo"; | 7346 o.id = "foo"; |
| 7347 o.items = buildUnnamed839(); | 7347 o.items = buildUnnamed2424(); |
| 7348 o.kind = "foo"; | 7348 o.kind = "foo"; |
| 7349 o.nextPageToken = "foo"; | 7349 o.nextPageToken = "foo"; |
| 7350 o.selfLink = "foo"; | 7350 o.selfLink = "foo"; |
| 7351 } | 7351 } |
| 7352 buildCounterVpnTunnelAggregatedList--; | 7352 buildCounterVpnTunnelAggregatedList--; |
| 7353 return o; | 7353 return o; |
| 7354 } | 7354 } |
| 7355 | 7355 |
| 7356 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 7356 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 7357 buildCounterVpnTunnelAggregatedList++; | 7357 buildCounterVpnTunnelAggregatedList++; |
| 7358 if (buildCounterVpnTunnelAggregatedList < 3) { | 7358 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 7359 unittest.expect(o.id, unittest.equals('foo')); | 7359 unittest.expect(o.id, unittest.equals('foo')); |
| 7360 checkUnnamed839(o.items); | 7360 checkUnnamed2424(o.items); |
| 7361 unittest.expect(o.kind, unittest.equals('foo')); | 7361 unittest.expect(o.kind, unittest.equals('foo')); |
| 7362 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7362 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7363 unittest.expect(o.selfLink, unittest.equals('foo')); | 7363 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7364 } | 7364 } |
| 7365 buildCounterVpnTunnelAggregatedList--; | 7365 buildCounterVpnTunnelAggregatedList--; |
| 7366 } | 7366 } |
| 7367 | 7367 |
| 7368 buildUnnamed840() { | 7368 buildUnnamed2425() { |
| 7369 var o = new core.List<api.VpnTunnel>(); | 7369 var o = new core.List<api.VpnTunnel>(); |
| 7370 o.add(buildVpnTunnel()); | 7370 o.add(buildVpnTunnel()); |
| 7371 o.add(buildVpnTunnel()); | 7371 o.add(buildVpnTunnel()); |
| 7372 return o; | 7372 return o; |
| 7373 } | 7373 } |
| 7374 | 7374 |
| 7375 checkUnnamed840(core.List<api.VpnTunnel> o) { | 7375 checkUnnamed2425(core.List<api.VpnTunnel> o) { |
| 7376 unittest.expect(o, unittest.hasLength(2)); | 7376 unittest.expect(o, unittest.hasLength(2)); |
| 7377 checkVpnTunnel(o[0]); | 7377 checkVpnTunnel(o[0]); |
| 7378 checkVpnTunnel(o[1]); | 7378 checkVpnTunnel(o[1]); |
| 7379 } | 7379 } |
| 7380 | 7380 |
| 7381 core.int buildCounterVpnTunnelList = 0; | 7381 core.int buildCounterVpnTunnelList = 0; |
| 7382 buildVpnTunnelList() { | 7382 buildVpnTunnelList() { |
| 7383 var o = new api.VpnTunnelList(); | 7383 var o = new api.VpnTunnelList(); |
| 7384 buildCounterVpnTunnelList++; | 7384 buildCounterVpnTunnelList++; |
| 7385 if (buildCounterVpnTunnelList < 3) { | 7385 if (buildCounterVpnTunnelList < 3) { |
| 7386 o.id = "foo"; | 7386 o.id = "foo"; |
| 7387 o.items = buildUnnamed840(); | 7387 o.items = buildUnnamed2425(); |
| 7388 o.kind = "foo"; | 7388 o.kind = "foo"; |
| 7389 o.nextPageToken = "foo"; | 7389 o.nextPageToken = "foo"; |
| 7390 o.selfLink = "foo"; | 7390 o.selfLink = "foo"; |
| 7391 } | 7391 } |
| 7392 buildCounterVpnTunnelList--; | 7392 buildCounterVpnTunnelList--; |
| 7393 return o; | 7393 return o; |
| 7394 } | 7394 } |
| 7395 | 7395 |
| 7396 checkVpnTunnelList(api.VpnTunnelList o) { | 7396 checkVpnTunnelList(api.VpnTunnelList o) { |
| 7397 buildCounterVpnTunnelList++; | 7397 buildCounterVpnTunnelList++; |
| 7398 if (buildCounterVpnTunnelList < 3) { | 7398 if (buildCounterVpnTunnelList < 3) { |
| 7399 unittest.expect(o.id, unittest.equals('foo')); | 7399 unittest.expect(o.id, unittest.equals('foo')); |
| 7400 checkUnnamed840(o.items); | 7400 checkUnnamed2425(o.items); |
| 7401 unittest.expect(o.kind, unittest.equals('foo')); | 7401 unittest.expect(o.kind, unittest.equals('foo')); |
| 7402 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7402 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7403 unittest.expect(o.selfLink, unittest.equals('foo')); | 7403 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7404 } | 7404 } |
| 7405 buildCounterVpnTunnelList--; | 7405 buildCounterVpnTunnelList--; |
| 7406 } | 7406 } |
| 7407 | 7407 |
| 7408 buildUnnamed841() { | 7408 buildUnnamed2426() { |
| 7409 var o = new core.List<api.VpnTunnel>(); | 7409 var o = new core.List<api.VpnTunnel>(); |
| 7410 o.add(buildVpnTunnel()); | 7410 o.add(buildVpnTunnel()); |
| 7411 o.add(buildVpnTunnel()); | 7411 o.add(buildVpnTunnel()); |
| 7412 return o; | 7412 return o; |
| 7413 } | 7413 } |
| 7414 | 7414 |
| 7415 checkUnnamed841(core.List<api.VpnTunnel> o) { | 7415 checkUnnamed2426(core.List<api.VpnTunnel> o) { |
| 7416 unittest.expect(o, unittest.hasLength(2)); | 7416 unittest.expect(o, unittest.hasLength(2)); |
| 7417 checkVpnTunnel(o[0]); | 7417 checkVpnTunnel(o[0]); |
| 7418 checkVpnTunnel(o[1]); | 7418 checkVpnTunnel(o[1]); |
| 7419 } | 7419 } |
| 7420 | 7420 |
| 7421 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 7421 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 7422 buildVpnTunnelsScopedListWarningData() { | 7422 buildVpnTunnelsScopedListWarningData() { |
| 7423 var o = new api.VpnTunnelsScopedListWarningData(); | 7423 var o = new api.VpnTunnelsScopedListWarningData(); |
| 7424 buildCounterVpnTunnelsScopedListWarningData++; | 7424 buildCounterVpnTunnelsScopedListWarningData++; |
| 7425 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 7425 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 7426 o.key = "foo"; | 7426 o.key = "foo"; |
| 7427 o.value = "foo"; | 7427 o.value = "foo"; |
| 7428 } | 7428 } |
| 7429 buildCounterVpnTunnelsScopedListWarningData--; | 7429 buildCounterVpnTunnelsScopedListWarningData--; |
| 7430 return o; | 7430 return o; |
| 7431 } | 7431 } |
| 7432 | 7432 |
| 7433 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 7433 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 7434 buildCounterVpnTunnelsScopedListWarningData++; | 7434 buildCounterVpnTunnelsScopedListWarningData++; |
| 7435 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 7435 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 7436 unittest.expect(o.key, unittest.equals('foo')); | 7436 unittest.expect(o.key, unittest.equals('foo')); |
| 7437 unittest.expect(o.value, unittest.equals('foo')); | 7437 unittest.expect(o.value, unittest.equals('foo')); |
| 7438 } | 7438 } |
| 7439 buildCounterVpnTunnelsScopedListWarningData--; | 7439 buildCounterVpnTunnelsScopedListWarningData--; |
| 7440 } | 7440 } |
| 7441 | 7441 |
| 7442 buildUnnamed842() { | 7442 buildUnnamed2427() { |
| 7443 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 7443 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 7444 o.add(buildVpnTunnelsScopedListWarningData()); | 7444 o.add(buildVpnTunnelsScopedListWarningData()); |
| 7445 o.add(buildVpnTunnelsScopedListWarningData()); | 7445 o.add(buildVpnTunnelsScopedListWarningData()); |
| 7446 return o; | 7446 return o; |
| 7447 } | 7447 } |
| 7448 | 7448 |
| 7449 checkUnnamed842(core.List<api.VpnTunnelsScopedListWarningData> o) { | 7449 checkUnnamed2427(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 7450 unittest.expect(o, unittest.hasLength(2)); | 7450 unittest.expect(o, unittest.hasLength(2)); |
| 7451 checkVpnTunnelsScopedListWarningData(o[0]); | 7451 checkVpnTunnelsScopedListWarningData(o[0]); |
| 7452 checkVpnTunnelsScopedListWarningData(o[1]); | 7452 checkVpnTunnelsScopedListWarningData(o[1]); |
| 7453 } | 7453 } |
| 7454 | 7454 |
| 7455 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 7455 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 7456 buildVpnTunnelsScopedListWarning() { | 7456 buildVpnTunnelsScopedListWarning() { |
| 7457 var o = new api.VpnTunnelsScopedListWarning(); | 7457 var o = new api.VpnTunnelsScopedListWarning(); |
| 7458 buildCounterVpnTunnelsScopedListWarning++; | 7458 buildCounterVpnTunnelsScopedListWarning++; |
| 7459 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 7459 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 7460 o.code = "foo"; | 7460 o.code = "foo"; |
| 7461 o.data = buildUnnamed842(); | 7461 o.data = buildUnnamed2427(); |
| 7462 o.message = "foo"; | 7462 o.message = "foo"; |
| 7463 } | 7463 } |
| 7464 buildCounterVpnTunnelsScopedListWarning--; | 7464 buildCounterVpnTunnelsScopedListWarning--; |
| 7465 return o; | 7465 return o; |
| 7466 } | 7466 } |
| 7467 | 7467 |
| 7468 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 7468 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 7469 buildCounterVpnTunnelsScopedListWarning++; | 7469 buildCounterVpnTunnelsScopedListWarning++; |
| 7470 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 7470 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 7471 unittest.expect(o.code, unittest.equals('foo')); | 7471 unittest.expect(o.code, unittest.equals('foo')); |
| 7472 checkUnnamed842(o.data); | 7472 checkUnnamed2427(o.data); |
| 7473 unittest.expect(o.message, unittest.equals('foo')); | 7473 unittest.expect(o.message, unittest.equals('foo')); |
| 7474 } | 7474 } |
| 7475 buildCounterVpnTunnelsScopedListWarning--; | 7475 buildCounterVpnTunnelsScopedListWarning--; |
| 7476 } | 7476 } |
| 7477 | 7477 |
| 7478 core.int buildCounterVpnTunnelsScopedList = 0; | 7478 core.int buildCounterVpnTunnelsScopedList = 0; |
| 7479 buildVpnTunnelsScopedList() { | 7479 buildVpnTunnelsScopedList() { |
| 7480 var o = new api.VpnTunnelsScopedList(); | 7480 var o = new api.VpnTunnelsScopedList(); |
| 7481 buildCounterVpnTunnelsScopedList++; | 7481 buildCounterVpnTunnelsScopedList++; |
| 7482 if (buildCounterVpnTunnelsScopedList < 3) { | 7482 if (buildCounterVpnTunnelsScopedList < 3) { |
| 7483 o.vpnTunnels = buildUnnamed841(); | 7483 o.vpnTunnels = buildUnnamed2426(); |
| 7484 o.warning = buildVpnTunnelsScopedListWarning(); | 7484 o.warning = buildVpnTunnelsScopedListWarning(); |
| 7485 } | 7485 } |
| 7486 buildCounterVpnTunnelsScopedList--; | 7486 buildCounterVpnTunnelsScopedList--; |
| 7487 return o; | 7487 return o; |
| 7488 } | 7488 } |
| 7489 | 7489 |
| 7490 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 7490 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 7491 buildCounterVpnTunnelsScopedList++; | 7491 buildCounterVpnTunnelsScopedList++; |
| 7492 if (buildCounterVpnTunnelsScopedList < 3) { | 7492 if (buildCounterVpnTunnelsScopedList < 3) { |
| 7493 checkUnnamed841(o.vpnTunnels); | 7493 checkUnnamed2426(o.vpnTunnels); |
| 7494 checkVpnTunnelsScopedListWarning(o.warning); | 7494 checkVpnTunnelsScopedListWarning(o.warning); |
| 7495 } | 7495 } |
| 7496 buildCounterVpnTunnelsScopedList--; | 7496 buildCounterVpnTunnelsScopedList--; |
| 7497 } | 7497 } |
| 7498 | 7498 |
| 7499 core.int buildCounterZone = 0; | 7499 core.int buildCounterZone = 0; |
| 7500 buildZone() { | 7500 buildZone() { |
| 7501 var o = new api.Zone(); | 7501 var o = new api.Zone(); |
| 7502 buildCounterZone++; | 7502 buildCounterZone++; |
| 7503 if (buildCounterZone < 3) { | 7503 if (buildCounterZone < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 7524 unittest.expect(o.id, unittest.equals('foo')); | 7524 unittest.expect(o.id, unittest.equals('foo')); |
| 7525 unittest.expect(o.kind, unittest.equals('foo')); | 7525 unittest.expect(o.kind, unittest.equals('foo')); |
| 7526 unittest.expect(o.name, unittest.equals('foo')); | 7526 unittest.expect(o.name, unittest.equals('foo')); |
| 7527 unittest.expect(o.region, unittest.equals('foo')); | 7527 unittest.expect(o.region, unittest.equals('foo')); |
| 7528 unittest.expect(o.selfLink, unittest.equals('foo')); | 7528 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7529 unittest.expect(o.status, unittest.equals('foo')); | 7529 unittest.expect(o.status, unittest.equals('foo')); |
| 7530 } | 7530 } |
| 7531 buildCounterZone--; | 7531 buildCounterZone--; |
| 7532 } | 7532 } |
| 7533 | 7533 |
| 7534 buildUnnamed843() { | 7534 buildUnnamed2428() { |
| 7535 var o = new core.List<api.Zone>(); | 7535 var o = new core.List<api.Zone>(); |
| 7536 o.add(buildZone()); | 7536 o.add(buildZone()); |
| 7537 o.add(buildZone()); | 7537 o.add(buildZone()); |
| 7538 return o; | 7538 return o; |
| 7539 } | 7539 } |
| 7540 | 7540 |
| 7541 checkUnnamed843(core.List<api.Zone> o) { | 7541 checkUnnamed2428(core.List<api.Zone> o) { |
| 7542 unittest.expect(o, unittest.hasLength(2)); | 7542 unittest.expect(o, unittest.hasLength(2)); |
| 7543 checkZone(o[0]); | 7543 checkZone(o[0]); |
| 7544 checkZone(o[1]); | 7544 checkZone(o[1]); |
| 7545 } | 7545 } |
| 7546 | 7546 |
| 7547 core.int buildCounterZoneList = 0; | 7547 core.int buildCounterZoneList = 0; |
| 7548 buildZoneList() { | 7548 buildZoneList() { |
| 7549 var o = new api.ZoneList(); | 7549 var o = new api.ZoneList(); |
| 7550 buildCounterZoneList++; | 7550 buildCounterZoneList++; |
| 7551 if (buildCounterZoneList < 3) { | 7551 if (buildCounterZoneList < 3) { |
| 7552 o.id = "foo"; | 7552 o.id = "foo"; |
| 7553 o.items = buildUnnamed843(); | 7553 o.items = buildUnnamed2428(); |
| 7554 o.kind = "foo"; | 7554 o.kind = "foo"; |
| 7555 o.nextPageToken = "foo"; | 7555 o.nextPageToken = "foo"; |
| 7556 o.selfLink = "foo"; | 7556 o.selfLink = "foo"; |
| 7557 } | 7557 } |
| 7558 buildCounterZoneList--; | 7558 buildCounterZoneList--; |
| 7559 return o; | 7559 return o; |
| 7560 } | 7560 } |
| 7561 | 7561 |
| 7562 checkZoneList(api.ZoneList o) { | 7562 checkZoneList(api.ZoneList o) { |
| 7563 buildCounterZoneList++; | 7563 buildCounterZoneList++; |
| 7564 if (buildCounterZoneList < 3) { | 7564 if (buildCounterZoneList < 3) { |
| 7565 unittest.expect(o.id, unittest.equals('foo')); | 7565 unittest.expect(o.id, unittest.equals('foo')); |
| 7566 checkUnnamed843(o.items); | 7566 checkUnnamed2428(o.items); |
| 7567 unittest.expect(o.kind, unittest.equals('foo')); | 7567 unittest.expect(o.kind, unittest.equals('foo')); |
| 7568 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7568 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7569 unittest.expect(o.selfLink, unittest.equals('foo')); | 7569 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7570 } | 7570 } |
| 7571 buildCounterZoneList--; | 7571 buildCounterZoneList--; |
| 7572 } | 7572 } |
| 7573 | 7573 |
| 7574 | 7574 |
| 7575 main() { | 7575 main() { |
| 7576 unittest.group("obj-schema-AccessConfig", () { | 7576 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 11622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19199 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { | 19199 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { |
| 19200 checkZoneList(response); | 19200 checkZoneList(response); |
| 19201 }))); | 19201 }))); |
| 19202 }); | 19202 }); |
| 19203 | 19203 |
| 19204 }); | 19204 }); |
| 19205 | 19205 |
| 19206 | 19206 |
| 19207 } | 19207 } |
| 19208 | 19208 |
| OLD | NEW |