| 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:test/test.dart' as unittest; | 10 import 'package:test/test.dart' as unittest; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 unittest.expect(o.id, unittest.equals('foo')); | 100 unittest.expect(o.id, unittest.equals('foo')); |
| 101 unittest.expect(o.kind, unittest.equals('foo')); | 101 unittest.expect(o.kind, unittest.equals('foo')); |
| 102 unittest.expect(o.maximumCardsPerInstance, unittest.equals(42)); | 102 unittest.expect(o.maximumCardsPerInstance, unittest.equals(42)); |
| 103 unittest.expect(o.name, unittest.equals('foo')); | 103 unittest.expect(o.name, unittest.equals('foo')); |
| 104 unittest.expect(o.selfLink, unittest.equals('foo')); | 104 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 105 unittest.expect(o.zone, unittest.equals('foo')); | 105 unittest.expect(o.zone, unittest.equals('foo')); |
| 106 } | 106 } |
| 107 buildCounterAcceleratorType--; | 107 buildCounterAcceleratorType--; |
| 108 } | 108 } |
| 109 | 109 |
| 110 buildUnnamed2187() { | 110 buildUnnamed2221() { |
| 111 var o = new core.Map<core.String, api.AcceleratorTypesScopedList>(); | 111 var o = new core.Map<core.String, api.AcceleratorTypesScopedList>(); |
| 112 o["x"] = buildAcceleratorTypesScopedList(); | 112 o["x"] = buildAcceleratorTypesScopedList(); |
| 113 o["y"] = buildAcceleratorTypesScopedList(); | 113 o["y"] = buildAcceleratorTypesScopedList(); |
| 114 return o; | 114 return o; |
| 115 } | 115 } |
| 116 | 116 |
| 117 checkUnnamed2187(core.Map<core.String, api.AcceleratorTypesScopedList> o) { | 117 checkUnnamed2221(core.Map<core.String, api.AcceleratorTypesScopedList> o) { |
| 118 unittest.expect(o, unittest.hasLength(2)); | 118 unittest.expect(o, unittest.hasLength(2)); |
| 119 checkAcceleratorTypesScopedList(o["x"]); | 119 checkAcceleratorTypesScopedList(o["x"]); |
| 120 checkAcceleratorTypesScopedList(o["y"]); | 120 checkAcceleratorTypesScopedList(o["y"]); |
| 121 } | 121 } |
| 122 | 122 |
| 123 core.int buildCounterAcceleratorTypeAggregatedList = 0; | 123 core.int buildCounterAcceleratorTypeAggregatedList = 0; |
| 124 buildAcceleratorTypeAggregatedList() { | 124 buildAcceleratorTypeAggregatedList() { |
| 125 var o = new api.AcceleratorTypeAggregatedList(); | 125 var o = new api.AcceleratorTypeAggregatedList(); |
| 126 buildCounterAcceleratorTypeAggregatedList++; | 126 buildCounterAcceleratorTypeAggregatedList++; |
| 127 if (buildCounterAcceleratorTypeAggregatedList < 3) { | 127 if (buildCounterAcceleratorTypeAggregatedList < 3) { |
| 128 o.id = "foo"; | 128 o.id = "foo"; |
| 129 o.items = buildUnnamed2187(); | 129 o.items = buildUnnamed2221(); |
| 130 o.kind = "foo"; | 130 o.kind = "foo"; |
| 131 o.nextPageToken = "foo"; | 131 o.nextPageToken = "foo"; |
| 132 o.selfLink = "foo"; | 132 o.selfLink = "foo"; |
| 133 } | 133 } |
| 134 buildCounterAcceleratorTypeAggregatedList--; | 134 buildCounterAcceleratorTypeAggregatedList--; |
| 135 return o; | 135 return o; |
| 136 } | 136 } |
| 137 | 137 |
| 138 checkAcceleratorTypeAggregatedList(api.AcceleratorTypeAggregatedList o) { | 138 checkAcceleratorTypeAggregatedList(api.AcceleratorTypeAggregatedList o) { |
| 139 buildCounterAcceleratorTypeAggregatedList++; | 139 buildCounterAcceleratorTypeAggregatedList++; |
| 140 if (buildCounterAcceleratorTypeAggregatedList < 3) { | 140 if (buildCounterAcceleratorTypeAggregatedList < 3) { |
| 141 unittest.expect(o.id, unittest.equals('foo')); | 141 unittest.expect(o.id, unittest.equals('foo')); |
| 142 checkUnnamed2187(o.items); | 142 checkUnnamed2221(o.items); |
| 143 unittest.expect(o.kind, unittest.equals('foo')); | 143 unittest.expect(o.kind, unittest.equals('foo')); |
| 144 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 144 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 145 unittest.expect(o.selfLink, unittest.equals('foo')); | 145 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 146 } | 146 } |
| 147 buildCounterAcceleratorTypeAggregatedList--; | 147 buildCounterAcceleratorTypeAggregatedList--; |
| 148 } | 148 } |
| 149 | 149 |
| 150 buildUnnamed2188() { | 150 buildUnnamed2222() { |
| 151 var o = new core.List<api.AcceleratorType>(); | 151 var o = new core.List<api.AcceleratorType>(); |
| 152 o.add(buildAcceleratorType()); | 152 o.add(buildAcceleratorType()); |
| 153 o.add(buildAcceleratorType()); | 153 o.add(buildAcceleratorType()); |
| 154 return o; | 154 return o; |
| 155 } | 155 } |
| 156 | 156 |
| 157 checkUnnamed2188(core.List<api.AcceleratorType> o) { | 157 checkUnnamed2222(core.List<api.AcceleratorType> o) { |
| 158 unittest.expect(o, unittest.hasLength(2)); | 158 unittest.expect(o, unittest.hasLength(2)); |
| 159 checkAcceleratorType(o[0]); | 159 checkAcceleratorType(o[0]); |
| 160 checkAcceleratorType(o[1]); | 160 checkAcceleratorType(o[1]); |
| 161 } | 161 } |
| 162 | 162 |
| 163 core.int buildCounterAcceleratorTypeList = 0; | 163 core.int buildCounterAcceleratorTypeList = 0; |
| 164 buildAcceleratorTypeList() { | 164 buildAcceleratorTypeList() { |
| 165 var o = new api.AcceleratorTypeList(); | 165 var o = new api.AcceleratorTypeList(); |
| 166 buildCounterAcceleratorTypeList++; | 166 buildCounterAcceleratorTypeList++; |
| 167 if (buildCounterAcceleratorTypeList < 3) { | 167 if (buildCounterAcceleratorTypeList < 3) { |
| 168 o.id = "foo"; | 168 o.id = "foo"; |
| 169 o.items = buildUnnamed2188(); | 169 o.items = buildUnnamed2222(); |
| 170 o.kind = "foo"; | 170 o.kind = "foo"; |
| 171 o.nextPageToken = "foo"; | 171 o.nextPageToken = "foo"; |
| 172 o.selfLink = "foo"; | 172 o.selfLink = "foo"; |
| 173 } | 173 } |
| 174 buildCounterAcceleratorTypeList--; | 174 buildCounterAcceleratorTypeList--; |
| 175 return o; | 175 return o; |
| 176 } | 176 } |
| 177 | 177 |
| 178 checkAcceleratorTypeList(api.AcceleratorTypeList o) { | 178 checkAcceleratorTypeList(api.AcceleratorTypeList o) { |
| 179 buildCounterAcceleratorTypeList++; | 179 buildCounterAcceleratorTypeList++; |
| 180 if (buildCounterAcceleratorTypeList < 3) { | 180 if (buildCounterAcceleratorTypeList < 3) { |
| 181 unittest.expect(o.id, unittest.equals('foo')); | 181 unittest.expect(o.id, unittest.equals('foo')); |
| 182 checkUnnamed2188(o.items); | 182 checkUnnamed2222(o.items); |
| 183 unittest.expect(o.kind, unittest.equals('foo')); | 183 unittest.expect(o.kind, unittest.equals('foo')); |
| 184 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 184 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 185 unittest.expect(o.selfLink, unittest.equals('foo')); | 185 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 186 } | 186 } |
| 187 buildCounterAcceleratorTypeList--; | 187 buildCounterAcceleratorTypeList--; |
| 188 } | 188 } |
| 189 | 189 |
| 190 buildUnnamed2189() { | 190 buildUnnamed2223() { |
| 191 var o = new core.List<api.AcceleratorType>(); | 191 var o = new core.List<api.AcceleratorType>(); |
| 192 o.add(buildAcceleratorType()); | 192 o.add(buildAcceleratorType()); |
| 193 o.add(buildAcceleratorType()); | 193 o.add(buildAcceleratorType()); |
| 194 return o; | 194 return o; |
| 195 } | 195 } |
| 196 | 196 |
| 197 checkUnnamed2189(core.List<api.AcceleratorType> o) { | 197 checkUnnamed2223(core.List<api.AcceleratorType> o) { |
| 198 unittest.expect(o, unittest.hasLength(2)); | 198 unittest.expect(o, unittest.hasLength(2)); |
| 199 checkAcceleratorType(o[0]); | 199 checkAcceleratorType(o[0]); |
| 200 checkAcceleratorType(o[1]); | 200 checkAcceleratorType(o[1]); |
| 201 } | 201 } |
| 202 | 202 |
| 203 core.int buildCounterAcceleratorTypesScopedListWarningData = 0; | 203 core.int buildCounterAcceleratorTypesScopedListWarningData = 0; |
| 204 buildAcceleratorTypesScopedListWarningData() { | 204 buildAcceleratorTypesScopedListWarningData() { |
| 205 var o = new api.AcceleratorTypesScopedListWarningData(); | 205 var o = new api.AcceleratorTypesScopedListWarningData(); |
| 206 buildCounterAcceleratorTypesScopedListWarningData++; | 206 buildCounterAcceleratorTypesScopedListWarningData++; |
| 207 if (buildCounterAcceleratorTypesScopedListWarningData < 3) { | 207 if (buildCounterAcceleratorTypesScopedListWarningData < 3) { |
| 208 o.key = "foo"; | 208 o.key = "foo"; |
| 209 o.value = "foo"; | 209 o.value = "foo"; |
| 210 } | 210 } |
| 211 buildCounterAcceleratorTypesScopedListWarningData--; | 211 buildCounterAcceleratorTypesScopedListWarningData--; |
| 212 return o; | 212 return o; |
| 213 } | 213 } |
| 214 | 214 |
| 215 checkAcceleratorTypesScopedListWarningData(api.AcceleratorTypesScopedListWarning
Data o) { | 215 checkAcceleratorTypesScopedListWarningData(api.AcceleratorTypesScopedListWarning
Data o) { |
| 216 buildCounterAcceleratorTypesScopedListWarningData++; | 216 buildCounterAcceleratorTypesScopedListWarningData++; |
| 217 if (buildCounterAcceleratorTypesScopedListWarningData < 3) { | 217 if (buildCounterAcceleratorTypesScopedListWarningData < 3) { |
| 218 unittest.expect(o.key, unittest.equals('foo')); | 218 unittest.expect(o.key, unittest.equals('foo')); |
| 219 unittest.expect(o.value, unittest.equals('foo')); | 219 unittest.expect(o.value, unittest.equals('foo')); |
| 220 } | 220 } |
| 221 buildCounterAcceleratorTypesScopedListWarningData--; | 221 buildCounterAcceleratorTypesScopedListWarningData--; |
| 222 } | 222 } |
| 223 | 223 |
| 224 buildUnnamed2190() { | 224 buildUnnamed2224() { |
| 225 var o = new core.List<api.AcceleratorTypesScopedListWarningData>(); | 225 var o = new core.List<api.AcceleratorTypesScopedListWarningData>(); |
| 226 o.add(buildAcceleratorTypesScopedListWarningData()); | 226 o.add(buildAcceleratorTypesScopedListWarningData()); |
| 227 o.add(buildAcceleratorTypesScopedListWarningData()); | 227 o.add(buildAcceleratorTypesScopedListWarningData()); |
| 228 return o; | 228 return o; |
| 229 } | 229 } |
| 230 | 230 |
| 231 checkUnnamed2190(core.List<api.AcceleratorTypesScopedListWarningData> o) { | 231 checkUnnamed2224(core.List<api.AcceleratorTypesScopedListWarningData> o) { |
| 232 unittest.expect(o, unittest.hasLength(2)); | 232 unittest.expect(o, unittest.hasLength(2)); |
| 233 checkAcceleratorTypesScopedListWarningData(o[0]); | 233 checkAcceleratorTypesScopedListWarningData(o[0]); |
| 234 checkAcceleratorTypesScopedListWarningData(o[1]); | 234 checkAcceleratorTypesScopedListWarningData(o[1]); |
| 235 } | 235 } |
| 236 | 236 |
| 237 core.int buildCounterAcceleratorTypesScopedListWarning = 0; | 237 core.int buildCounterAcceleratorTypesScopedListWarning = 0; |
| 238 buildAcceleratorTypesScopedListWarning() { | 238 buildAcceleratorTypesScopedListWarning() { |
| 239 var o = new api.AcceleratorTypesScopedListWarning(); | 239 var o = new api.AcceleratorTypesScopedListWarning(); |
| 240 buildCounterAcceleratorTypesScopedListWarning++; | 240 buildCounterAcceleratorTypesScopedListWarning++; |
| 241 if (buildCounterAcceleratorTypesScopedListWarning < 3) { | 241 if (buildCounterAcceleratorTypesScopedListWarning < 3) { |
| 242 o.code = "foo"; | 242 o.code = "foo"; |
| 243 o.data = buildUnnamed2190(); | 243 o.data = buildUnnamed2224(); |
| 244 o.message = "foo"; | 244 o.message = "foo"; |
| 245 } | 245 } |
| 246 buildCounterAcceleratorTypesScopedListWarning--; | 246 buildCounterAcceleratorTypesScopedListWarning--; |
| 247 return o; | 247 return o; |
| 248 } | 248 } |
| 249 | 249 |
| 250 checkAcceleratorTypesScopedListWarning(api.AcceleratorTypesScopedListWarning o)
{ | 250 checkAcceleratorTypesScopedListWarning(api.AcceleratorTypesScopedListWarning o)
{ |
| 251 buildCounterAcceleratorTypesScopedListWarning++; | 251 buildCounterAcceleratorTypesScopedListWarning++; |
| 252 if (buildCounterAcceleratorTypesScopedListWarning < 3) { | 252 if (buildCounterAcceleratorTypesScopedListWarning < 3) { |
| 253 unittest.expect(o.code, unittest.equals('foo')); | 253 unittest.expect(o.code, unittest.equals('foo')); |
| 254 checkUnnamed2190(o.data); | 254 checkUnnamed2224(o.data); |
| 255 unittest.expect(o.message, unittest.equals('foo')); | 255 unittest.expect(o.message, unittest.equals('foo')); |
| 256 } | 256 } |
| 257 buildCounterAcceleratorTypesScopedListWarning--; | 257 buildCounterAcceleratorTypesScopedListWarning--; |
| 258 } | 258 } |
| 259 | 259 |
| 260 core.int buildCounterAcceleratorTypesScopedList = 0; | 260 core.int buildCounterAcceleratorTypesScopedList = 0; |
| 261 buildAcceleratorTypesScopedList() { | 261 buildAcceleratorTypesScopedList() { |
| 262 var o = new api.AcceleratorTypesScopedList(); | 262 var o = new api.AcceleratorTypesScopedList(); |
| 263 buildCounterAcceleratorTypesScopedList++; | 263 buildCounterAcceleratorTypesScopedList++; |
| 264 if (buildCounterAcceleratorTypesScopedList < 3) { | 264 if (buildCounterAcceleratorTypesScopedList < 3) { |
| 265 o.acceleratorTypes = buildUnnamed2189(); | 265 o.acceleratorTypes = buildUnnamed2223(); |
| 266 o.warning = buildAcceleratorTypesScopedListWarning(); | 266 o.warning = buildAcceleratorTypesScopedListWarning(); |
| 267 } | 267 } |
| 268 buildCounterAcceleratorTypesScopedList--; | 268 buildCounterAcceleratorTypesScopedList--; |
| 269 return o; | 269 return o; |
| 270 } | 270 } |
| 271 | 271 |
| 272 checkAcceleratorTypesScopedList(api.AcceleratorTypesScopedList o) { | 272 checkAcceleratorTypesScopedList(api.AcceleratorTypesScopedList o) { |
| 273 buildCounterAcceleratorTypesScopedList++; | 273 buildCounterAcceleratorTypesScopedList++; |
| 274 if (buildCounterAcceleratorTypesScopedList < 3) { | 274 if (buildCounterAcceleratorTypesScopedList < 3) { |
| 275 checkUnnamed2189(o.acceleratorTypes); | 275 checkUnnamed2223(o.acceleratorTypes); |
| 276 checkAcceleratorTypesScopedListWarning(o.warning); | 276 checkAcceleratorTypesScopedListWarning(o.warning); |
| 277 } | 277 } |
| 278 buildCounterAcceleratorTypesScopedList--; | 278 buildCounterAcceleratorTypesScopedList--; |
| 279 } | 279 } |
| 280 | 280 |
| 281 core.int buildCounterAccessConfig = 0; | 281 core.int buildCounterAccessConfig = 0; |
| 282 buildAccessConfig() { | 282 buildAccessConfig() { |
| 283 var o = new api.AccessConfig(); | 283 var o = new api.AccessConfig(); |
| 284 buildCounterAccessConfig++; | 284 buildCounterAccessConfig++; |
| 285 if (buildCounterAccessConfig < 3) { | 285 if (buildCounterAccessConfig < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 296 buildCounterAccessConfig++; | 296 buildCounterAccessConfig++; |
| 297 if (buildCounterAccessConfig < 3) { | 297 if (buildCounterAccessConfig < 3) { |
| 298 unittest.expect(o.kind, unittest.equals('foo')); | 298 unittest.expect(o.kind, unittest.equals('foo')); |
| 299 unittest.expect(o.name, unittest.equals('foo')); | 299 unittest.expect(o.name, unittest.equals('foo')); |
| 300 unittest.expect(o.natIP, unittest.equals('foo')); | 300 unittest.expect(o.natIP, unittest.equals('foo')); |
| 301 unittest.expect(o.type, unittest.equals('foo')); | 301 unittest.expect(o.type, unittest.equals('foo')); |
| 302 } | 302 } |
| 303 buildCounterAccessConfig--; | 303 buildCounterAccessConfig--; |
| 304 } | 304 } |
| 305 | 305 |
| 306 buildUnnamed2191() { | 306 buildUnnamed2225() { |
| 307 var o = new core.List<core.String>(); | 307 var o = new core.List<core.String>(); |
| 308 o.add("foo"); | 308 o.add("foo"); |
| 309 o.add("foo"); | 309 o.add("foo"); |
| 310 return o; | 310 return o; |
| 311 } | 311 } |
| 312 | 312 |
| 313 checkUnnamed2191(core.List<core.String> o) { | 313 checkUnnamed2225(core.List<core.String> o) { |
| 314 unittest.expect(o, unittest.hasLength(2)); | 314 unittest.expect(o, unittest.hasLength(2)); |
| 315 unittest.expect(o[0], unittest.equals('foo')); | 315 unittest.expect(o[0], unittest.equals('foo')); |
| 316 unittest.expect(o[1], unittest.equals('foo')); | 316 unittest.expect(o[1], unittest.equals('foo')); |
| 317 } | 317 } |
| 318 | 318 |
| 319 core.int buildCounterAddress = 0; | 319 core.int buildCounterAddress = 0; |
| 320 buildAddress() { | 320 buildAddress() { |
| 321 var o = new api.Address(); | 321 var o = new api.Address(); |
| 322 buildCounterAddress++; | 322 buildCounterAddress++; |
| 323 if (buildCounterAddress < 3) { | 323 if (buildCounterAddress < 3) { |
| 324 o.address = "foo"; | 324 o.address = "foo"; |
| 325 o.creationTimestamp = "foo"; | 325 o.creationTimestamp = "foo"; |
| 326 o.description = "foo"; | 326 o.description = "foo"; |
| 327 o.id = "foo"; | 327 o.id = "foo"; |
| 328 o.ipVersion = "foo"; | 328 o.ipVersion = "foo"; |
| 329 o.kind = "foo"; | 329 o.kind = "foo"; |
| 330 o.name = "foo"; | 330 o.name = "foo"; |
| 331 o.region = "foo"; | 331 o.region = "foo"; |
| 332 o.selfLink = "foo"; | 332 o.selfLink = "foo"; |
| 333 o.status = "foo"; | 333 o.status = "foo"; |
| 334 o.users = buildUnnamed2191(); | 334 o.users = buildUnnamed2225(); |
| 335 } | 335 } |
| 336 buildCounterAddress--; | 336 buildCounterAddress--; |
| 337 return o; | 337 return o; |
| 338 } | 338 } |
| 339 | 339 |
| 340 checkAddress(api.Address o) { | 340 checkAddress(api.Address o) { |
| 341 buildCounterAddress++; | 341 buildCounterAddress++; |
| 342 if (buildCounterAddress < 3) { | 342 if (buildCounterAddress < 3) { |
| 343 unittest.expect(o.address, unittest.equals('foo')); | 343 unittest.expect(o.address, unittest.equals('foo')); |
| 344 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 344 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 345 unittest.expect(o.description, unittest.equals('foo')); | 345 unittest.expect(o.description, unittest.equals('foo')); |
| 346 unittest.expect(o.id, unittest.equals('foo')); | 346 unittest.expect(o.id, unittest.equals('foo')); |
| 347 unittest.expect(o.ipVersion, unittest.equals('foo')); | 347 unittest.expect(o.ipVersion, unittest.equals('foo')); |
| 348 unittest.expect(o.kind, unittest.equals('foo')); | 348 unittest.expect(o.kind, unittest.equals('foo')); |
| 349 unittest.expect(o.name, unittest.equals('foo')); | 349 unittest.expect(o.name, unittest.equals('foo')); |
| 350 unittest.expect(o.region, unittest.equals('foo')); | 350 unittest.expect(o.region, unittest.equals('foo')); |
| 351 unittest.expect(o.selfLink, unittest.equals('foo')); | 351 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 352 unittest.expect(o.status, unittest.equals('foo')); | 352 unittest.expect(o.status, unittest.equals('foo')); |
| 353 checkUnnamed2191(o.users); | 353 checkUnnamed2225(o.users); |
| 354 } | 354 } |
| 355 buildCounterAddress--; | 355 buildCounterAddress--; |
| 356 } | 356 } |
| 357 | 357 |
| 358 buildUnnamed2192() { | 358 buildUnnamed2226() { |
| 359 var o = new core.Map<core.String, api.AddressesScopedList>(); | 359 var o = new core.Map<core.String, api.AddressesScopedList>(); |
| 360 o["x"] = buildAddressesScopedList(); | 360 o["x"] = buildAddressesScopedList(); |
| 361 o["y"] = buildAddressesScopedList(); | 361 o["y"] = buildAddressesScopedList(); |
| 362 return o; | 362 return o; |
| 363 } | 363 } |
| 364 | 364 |
| 365 checkUnnamed2192(core.Map<core.String, api.AddressesScopedList> o) { | 365 checkUnnamed2226(core.Map<core.String, api.AddressesScopedList> o) { |
| 366 unittest.expect(o, unittest.hasLength(2)); | 366 unittest.expect(o, unittest.hasLength(2)); |
| 367 checkAddressesScopedList(o["x"]); | 367 checkAddressesScopedList(o["x"]); |
| 368 checkAddressesScopedList(o["y"]); | 368 checkAddressesScopedList(o["y"]); |
| 369 } | 369 } |
| 370 | 370 |
| 371 core.int buildCounterAddressAggregatedList = 0; | 371 core.int buildCounterAddressAggregatedList = 0; |
| 372 buildAddressAggregatedList() { | 372 buildAddressAggregatedList() { |
| 373 var o = new api.AddressAggregatedList(); | 373 var o = new api.AddressAggregatedList(); |
| 374 buildCounterAddressAggregatedList++; | 374 buildCounterAddressAggregatedList++; |
| 375 if (buildCounterAddressAggregatedList < 3) { | 375 if (buildCounterAddressAggregatedList < 3) { |
| 376 o.id = "foo"; | 376 o.id = "foo"; |
| 377 o.items = buildUnnamed2192(); | 377 o.items = buildUnnamed2226(); |
| 378 o.kind = "foo"; | 378 o.kind = "foo"; |
| 379 o.nextPageToken = "foo"; | 379 o.nextPageToken = "foo"; |
| 380 o.selfLink = "foo"; | 380 o.selfLink = "foo"; |
| 381 } | 381 } |
| 382 buildCounterAddressAggregatedList--; | 382 buildCounterAddressAggregatedList--; |
| 383 return o; | 383 return o; |
| 384 } | 384 } |
| 385 | 385 |
| 386 checkAddressAggregatedList(api.AddressAggregatedList o) { | 386 checkAddressAggregatedList(api.AddressAggregatedList o) { |
| 387 buildCounterAddressAggregatedList++; | 387 buildCounterAddressAggregatedList++; |
| 388 if (buildCounterAddressAggregatedList < 3) { | 388 if (buildCounterAddressAggregatedList < 3) { |
| 389 unittest.expect(o.id, unittest.equals('foo')); | 389 unittest.expect(o.id, unittest.equals('foo')); |
| 390 checkUnnamed2192(o.items); | 390 checkUnnamed2226(o.items); |
| 391 unittest.expect(o.kind, unittest.equals('foo')); | 391 unittest.expect(o.kind, unittest.equals('foo')); |
| 392 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 392 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 393 unittest.expect(o.selfLink, unittest.equals('foo')); | 393 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 394 } | 394 } |
| 395 buildCounterAddressAggregatedList--; | 395 buildCounterAddressAggregatedList--; |
| 396 } | 396 } |
| 397 | 397 |
| 398 buildUnnamed2193() { | 398 buildUnnamed2227() { |
| 399 var o = new core.List<api.Address>(); | 399 var o = new core.List<api.Address>(); |
| 400 o.add(buildAddress()); | 400 o.add(buildAddress()); |
| 401 o.add(buildAddress()); | 401 o.add(buildAddress()); |
| 402 return o; | 402 return o; |
| 403 } | 403 } |
| 404 | 404 |
| 405 checkUnnamed2193(core.List<api.Address> o) { | 405 checkUnnamed2227(core.List<api.Address> o) { |
| 406 unittest.expect(o, unittest.hasLength(2)); | 406 unittest.expect(o, unittest.hasLength(2)); |
| 407 checkAddress(o[0]); | 407 checkAddress(o[0]); |
| 408 checkAddress(o[1]); | 408 checkAddress(o[1]); |
| 409 } | 409 } |
| 410 | 410 |
| 411 core.int buildCounterAddressList = 0; | 411 core.int buildCounterAddressList = 0; |
| 412 buildAddressList() { | 412 buildAddressList() { |
| 413 var o = new api.AddressList(); | 413 var o = new api.AddressList(); |
| 414 buildCounterAddressList++; | 414 buildCounterAddressList++; |
| 415 if (buildCounterAddressList < 3) { | 415 if (buildCounterAddressList < 3) { |
| 416 o.id = "foo"; | 416 o.id = "foo"; |
| 417 o.items = buildUnnamed2193(); | 417 o.items = buildUnnamed2227(); |
| 418 o.kind = "foo"; | 418 o.kind = "foo"; |
| 419 o.nextPageToken = "foo"; | 419 o.nextPageToken = "foo"; |
| 420 o.selfLink = "foo"; | 420 o.selfLink = "foo"; |
| 421 } | 421 } |
| 422 buildCounterAddressList--; | 422 buildCounterAddressList--; |
| 423 return o; | 423 return o; |
| 424 } | 424 } |
| 425 | 425 |
| 426 checkAddressList(api.AddressList o) { | 426 checkAddressList(api.AddressList o) { |
| 427 buildCounterAddressList++; | 427 buildCounterAddressList++; |
| 428 if (buildCounterAddressList < 3) { | 428 if (buildCounterAddressList < 3) { |
| 429 unittest.expect(o.id, unittest.equals('foo')); | 429 unittest.expect(o.id, unittest.equals('foo')); |
| 430 checkUnnamed2193(o.items); | 430 checkUnnamed2227(o.items); |
| 431 unittest.expect(o.kind, unittest.equals('foo')); | 431 unittest.expect(o.kind, unittest.equals('foo')); |
| 432 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 432 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 433 unittest.expect(o.selfLink, unittest.equals('foo')); | 433 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 434 } | 434 } |
| 435 buildCounterAddressList--; | 435 buildCounterAddressList--; |
| 436 } | 436 } |
| 437 | 437 |
| 438 buildUnnamed2194() { | 438 buildUnnamed2228() { |
| 439 var o = new core.List<api.Address>(); | 439 var o = new core.List<api.Address>(); |
| 440 o.add(buildAddress()); | 440 o.add(buildAddress()); |
| 441 o.add(buildAddress()); | 441 o.add(buildAddress()); |
| 442 return o; | 442 return o; |
| 443 } | 443 } |
| 444 | 444 |
| 445 checkUnnamed2194(core.List<api.Address> o) { | 445 checkUnnamed2228(core.List<api.Address> o) { |
| 446 unittest.expect(o, unittest.hasLength(2)); | 446 unittest.expect(o, unittest.hasLength(2)); |
| 447 checkAddress(o[0]); | 447 checkAddress(o[0]); |
| 448 checkAddress(o[1]); | 448 checkAddress(o[1]); |
| 449 } | 449 } |
| 450 | 450 |
| 451 core.int buildCounterAddressesScopedListWarningData = 0; | 451 core.int buildCounterAddressesScopedListWarningData = 0; |
| 452 buildAddressesScopedListWarningData() { | 452 buildAddressesScopedListWarningData() { |
| 453 var o = new api.AddressesScopedListWarningData(); | 453 var o = new api.AddressesScopedListWarningData(); |
| 454 buildCounterAddressesScopedListWarningData++; | 454 buildCounterAddressesScopedListWarningData++; |
| 455 if (buildCounterAddressesScopedListWarningData < 3) { | 455 if (buildCounterAddressesScopedListWarningData < 3) { |
| 456 o.key = "foo"; | 456 o.key = "foo"; |
| 457 o.value = "foo"; | 457 o.value = "foo"; |
| 458 } | 458 } |
| 459 buildCounterAddressesScopedListWarningData--; | 459 buildCounterAddressesScopedListWarningData--; |
| 460 return o; | 460 return o; |
| 461 } | 461 } |
| 462 | 462 |
| 463 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { | 463 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { |
| 464 buildCounterAddressesScopedListWarningData++; | 464 buildCounterAddressesScopedListWarningData++; |
| 465 if (buildCounterAddressesScopedListWarningData < 3) { | 465 if (buildCounterAddressesScopedListWarningData < 3) { |
| 466 unittest.expect(o.key, unittest.equals('foo')); | 466 unittest.expect(o.key, unittest.equals('foo')); |
| 467 unittest.expect(o.value, unittest.equals('foo')); | 467 unittest.expect(o.value, unittest.equals('foo')); |
| 468 } | 468 } |
| 469 buildCounterAddressesScopedListWarningData--; | 469 buildCounterAddressesScopedListWarningData--; |
| 470 } | 470 } |
| 471 | 471 |
| 472 buildUnnamed2195() { | 472 buildUnnamed2229() { |
| 473 var o = new core.List<api.AddressesScopedListWarningData>(); | 473 var o = new core.List<api.AddressesScopedListWarningData>(); |
| 474 o.add(buildAddressesScopedListWarningData()); | 474 o.add(buildAddressesScopedListWarningData()); |
| 475 o.add(buildAddressesScopedListWarningData()); | 475 o.add(buildAddressesScopedListWarningData()); |
| 476 return o; | 476 return o; |
| 477 } | 477 } |
| 478 | 478 |
| 479 checkUnnamed2195(core.List<api.AddressesScopedListWarningData> o) { | 479 checkUnnamed2229(core.List<api.AddressesScopedListWarningData> o) { |
| 480 unittest.expect(o, unittest.hasLength(2)); | 480 unittest.expect(o, unittest.hasLength(2)); |
| 481 checkAddressesScopedListWarningData(o[0]); | 481 checkAddressesScopedListWarningData(o[0]); |
| 482 checkAddressesScopedListWarningData(o[1]); | 482 checkAddressesScopedListWarningData(o[1]); |
| 483 } | 483 } |
| 484 | 484 |
| 485 core.int buildCounterAddressesScopedListWarning = 0; | 485 core.int buildCounterAddressesScopedListWarning = 0; |
| 486 buildAddressesScopedListWarning() { | 486 buildAddressesScopedListWarning() { |
| 487 var o = new api.AddressesScopedListWarning(); | 487 var o = new api.AddressesScopedListWarning(); |
| 488 buildCounterAddressesScopedListWarning++; | 488 buildCounterAddressesScopedListWarning++; |
| 489 if (buildCounterAddressesScopedListWarning < 3) { | 489 if (buildCounterAddressesScopedListWarning < 3) { |
| 490 o.code = "foo"; | 490 o.code = "foo"; |
| 491 o.data = buildUnnamed2195(); | 491 o.data = buildUnnamed2229(); |
| 492 o.message = "foo"; | 492 o.message = "foo"; |
| 493 } | 493 } |
| 494 buildCounterAddressesScopedListWarning--; | 494 buildCounterAddressesScopedListWarning--; |
| 495 return o; | 495 return o; |
| 496 } | 496 } |
| 497 | 497 |
| 498 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { | 498 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { |
| 499 buildCounterAddressesScopedListWarning++; | 499 buildCounterAddressesScopedListWarning++; |
| 500 if (buildCounterAddressesScopedListWarning < 3) { | 500 if (buildCounterAddressesScopedListWarning < 3) { |
| 501 unittest.expect(o.code, unittest.equals('foo')); | 501 unittest.expect(o.code, unittest.equals('foo')); |
| 502 checkUnnamed2195(o.data); | 502 checkUnnamed2229(o.data); |
| 503 unittest.expect(o.message, unittest.equals('foo')); | 503 unittest.expect(o.message, unittest.equals('foo')); |
| 504 } | 504 } |
| 505 buildCounterAddressesScopedListWarning--; | 505 buildCounterAddressesScopedListWarning--; |
| 506 } | 506 } |
| 507 | 507 |
| 508 core.int buildCounterAddressesScopedList = 0; | 508 core.int buildCounterAddressesScopedList = 0; |
| 509 buildAddressesScopedList() { | 509 buildAddressesScopedList() { |
| 510 var o = new api.AddressesScopedList(); | 510 var o = new api.AddressesScopedList(); |
| 511 buildCounterAddressesScopedList++; | 511 buildCounterAddressesScopedList++; |
| 512 if (buildCounterAddressesScopedList < 3) { | 512 if (buildCounterAddressesScopedList < 3) { |
| 513 o.addresses = buildUnnamed2194(); | 513 o.addresses = buildUnnamed2228(); |
| 514 o.warning = buildAddressesScopedListWarning(); | 514 o.warning = buildAddressesScopedListWarning(); |
| 515 } | 515 } |
| 516 buildCounterAddressesScopedList--; | 516 buildCounterAddressesScopedList--; |
| 517 return o; | 517 return o; |
| 518 } | 518 } |
| 519 | 519 |
| 520 checkAddressesScopedList(api.AddressesScopedList o) { | 520 checkAddressesScopedList(api.AddressesScopedList o) { |
| 521 buildCounterAddressesScopedList++; | 521 buildCounterAddressesScopedList++; |
| 522 if (buildCounterAddressesScopedList < 3) { | 522 if (buildCounterAddressesScopedList < 3) { |
| 523 checkUnnamed2194(o.addresses); | 523 checkUnnamed2228(o.addresses); |
| 524 checkAddressesScopedListWarning(o.warning); | 524 checkAddressesScopedListWarning(o.warning); |
| 525 } | 525 } |
| 526 buildCounterAddressesScopedList--; | 526 buildCounterAddressesScopedList--; |
| 527 } | 527 } |
| 528 | 528 |
| 529 buildUnnamed2196() { | 529 core.int buildCounterAliasIpRange = 0; |
| 530 buildAliasIpRange() { |
| 531 var o = new api.AliasIpRange(); |
| 532 buildCounterAliasIpRange++; |
| 533 if (buildCounterAliasIpRange < 3) { |
| 534 o.ipCidrRange = "foo"; |
| 535 o.subnetworkRangeName = "foo"; |
| 536 } |
| 537 buildCounterAliasIpRange--; |
| 538 return o; |
| 539 } |
| 540 |
| 541 checkAliasIpRange(api.AliasIpRange o) { |
| 542 buildCounterAliasIpRange++; |
| 543 if (buildCounterAliasIpRange < 3) { |
| 544 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 545 unittest.expect(o.subnetworkRangeName, unittest.equals('foo')); |
| 546 } |
| 547 buildCounterAliasIpRange--; |
| 548 } |
| 549 |
| 550 buildUnnamed2230() { |
| 530 var o = new core.List<core.String>(); | 551 var o = new core.List<core.String>(); |
| 531 o.add("foo"); | 552 o.add("foo"); |
| 532 o.add("foo"); | 553 o.add("foo"); |
| 533 return o; | 554 return o; |
| 534 } | 555 } |
| 535 | 556 |
| 536 checkUnnamed2196(core.List<core.String> o) { | 557 checkUnnamed2230(core.List<core.String> o) { |
| 537 unittest.expect(o, unittest.hasLength(2)); | 558 unittest.expect(o, unittest.hasLength(2)); |
| 538 unittest.expect(o[0], unittest.equals('foo')); | 559 unittest.expect(o[0], unittest.equals('foo')); |
| 539 unittest.expect(o[1], unittest.equals('foo')); | 560 unittest.expect(o[1], unittest.equals('foo')); |
| 540 } | 561 } |
| 541 | 562 |
| 542 core.int buildCounterAttachedDisk = 0; | 563 core.int buildCounterAttachedDisk = 0; |
| 543 buildAttachedDisk() { | 564 buildAttachedDisk() { |
| 544 var o = new api.AttachedDisk(); | 565 var o = new api.AttachedDisk(); |
| 545 buildCounterAttachedDisk++; | 566 buildCounterAttachedDisk++; |
| 546 if (buildCounterAttachedDisk < 3) { | 567 if (buildCounterAttachedDisk < 3) { |
| 547 o.autoDelete = true; | 568 o.autoDelete = true; |
| 548 o.boot = true; | 569 o.boot = true; |
| 549 o.deviceName = "foo"; | 570 o.deviceName = "foo"; |
| 550 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 571 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 551 o.index = 42; | 572 o.index = 42; |
| 552 o.initializeParams = buildAttachedDiskInitializeParams(); | 573 o.initializeParams = buildAttachedDiskInitializeParams(); |
| 553 o.interface = "foo"; | 574 o.interface = "foo"; |
| 554 o.kind = "foo"; | 575 o.kind = "foo"; |
| 555 o.licenses = buildUnnamed2196(); | 576 o.licenses = buildUnnamed2230(); |
| 556 o.mode = "foo"; | 577 o.mode = "foo"; |
| 557 o.source = "foo"; | 578 o.source = "foo"; |
| 558 o.type = "foo"; | 579 o.type = "foo"; |
| 559 } | 580 } |
| 560 buildCounterAttachedDisk--; | 581 buildCounterAttachedDisk--; |
| 561 return o; | 582 return o; |
| 562 } | 583 } |
| 563 | 584 |
| 564 checkAttachedDisk(api.AttachedDisk o) { | 585 checkAttachedDisk(api.AttachedDisk o) { |
| 565 buildCounterAttachedDisk++; | 586 buildCounterAttachedDisk++; |
| 566 if (buildCounterAttachedDisk < 3) { | 587 if (buildCounterAttachedDisk < 3) { |
| 567 unittest.expect(o.autoDelete, unittest.isTrue); | 588 unittest.expect(o.autoDelete, unittest.isTrue); |
| 568 unittest.expect(o.boot, unittest.isTrue); | 589 unittest.expect(o.boot, unittest.isTrue); |
| 569 unittest.expect(o.deviceName, unittest.equals('foo')); | 590 unittest.expect(o.deviceName, unittest.equals('foo')); |
| 570 checkCustomerEncryptionKey(o.diskEncryptionKey); | 591 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 571 unittest.expect(o.index, unittest.equals(42)); | 592 unittest.expect(o.index, unittest.equals(42)); |
| 572 checkAttachedDiskInitializeParams(o.initializeParams); | 593 checkAttachedDiskInitializeParams(o.initializeParams); |
| 573 unittest.expect(o.interface, unittest.equals('foo')); | 594 unittest.expect(o.interface, unittest.equals('foo')); |
| 574 unittest.expect(o.kind, unittest.equals('foo')); | 595 unittest.expect(o.kind, unittest.equals('foo')); |
| 575 checkUnnamed2196(o.licenses); | 596 checkUnnamed2230(o.licenses); |
| 576 unittest.expect(o.mode, unittest.equals('foo')); | 597 unittest.expect(o.mode, unittest.equals('foo')); |
| 577 unittest.expect(o.source, unittest.equals('foo')); | 598 unittest.expect(o.source, unittest.equals('foo')); |
| 578 unittest.expect(o.type, unittest.equals('foo')); | 599 unittest.expect(o.type, unittest.equals('foo')); |
| 579 } | 600 } |
| 580 buildCounterAttachedDisk--; | 601 buildCounterAttachedDisk--; |
| 581 } | 602 } |
| 582 | 603 |
| 583 core.int buildCounterAttachedDiskInitializeParams = 0; | 604 core.int buildCounterAttachedDiskInitializeParams = 0; |
| 584 buildAttachedDiskInitializeParams() { | 605 buildAttachedDiskInitializeParams() { |
| 585 var o = new api.AttachedDiskInitializeParams(); | 606 var o = new api.AttachedDiskInitializeParams(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 600 if (buildCounterAttachedDiskInitializeParams < 3) { | 621 if (buildCounterAttachedDiskInitializeParams < 3) { |
| 601 unittest.expect(o.diskName, unittest.equals('foo')); | 622 unittest.expect(o.diskName, unittest.equals('foo')); |
| 602 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 623 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 603 unittest.expect(o.diskType, unittest.equals('foo')); | 624 unittest.expect(o.diskType, unittest.equals('foo')); |
| 604 unittest.expect(o.sourceImage, unittest.equals('foo')); | 625 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 605 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); | 626 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); |
| 606 } | 627 } |
| 607 buildCounterAttachedDiskInitializeParams--; | 628 buildCounterAttachedDiskInitializeParams--; |
| 608 } | 629 } |
| 609 | 630 |
| 610 buildUnnamed2197() { | 631 buildUnnamed2231() { |
| 611 var o = new core.List<api.AutoscalerStatusDetails>(); | 632 var o = new core.List<api.AutoscalerStatusDetails>(); |
| 612 o.add(buildAutoscalerStatusDetails()); | 633 o.add(buildAutoscalerStatusDetails()); |
| 613 o.add(buildAutoscalerStatusDetails()); | 634 o.add(buildAutoscalerStatusDetails()); |
| 614 return o; | 635 return o; |
| 615 } | 636 } |
| 616 | 637 |
| 617 checkUnnamed2197(core.List<api.AutoscalerStatusDetails> o) { | 638 checkUnnamed2231(core.List<api.AutoscalerStatusDetails> o) { |
| 618 unittest.expect(o, unittest.hasLength(2)); | 639 unittest.expect(o, unittest.hasLength(2)); |
| 619 checkAutoscalerStatusDetails(o[0]); | 640 checkAutoscalerStatusDetails(o[0]); |
| 620 checkAutoscalerStatusDetails(o[1]); | 641 checkAutoscalerStatusDetails(o[1]); |
| 621 } | 642 } |
| 622 | 643 |
| 623 core.int buildCounterAutoscaler = 0; | 644 core.int buildCounterAutoscaler = 0; |
| 624 buildAutoscaler() { | 645 buildAutoscaler() { |
| 625 var o = new api.Autoscaler(); | 646 var o = new api.Autoscaler(); |
| 626 buildCounterAutoscaler++; | 647 buildCounterAutoscaler++; |
| 627 if (buildCounterAutoscaler < 3) { | 648 if (buildCounterAutoscaler < 3) { |
| 628 o.autoscalingPolicy = buildAutoscalingPolicy(); | 649 o.autoscalingPolicy = buildAutoscalingPolicy(); |
| 629 o.creationTimestamp = "foo"; | 650 o.creationTimestamp = "foo"; |
| 630 o.description = "foo"; | 651 o.description = "foo"; |
| 631 o.id = "foo"; | 652 o.id = "foo"; |
| 632 o.kind = "foo"; | 653 o.kind = "foo"; |
| 633 o.name = "foo"; | 654 o.name = "foo"; |
| 634 o.region = "foo"; | 655 o.region = "foo"; |
| 635 o.selfLink = "foo"; | 656 o.selfLink = "foo"; |
| 636 o.status = "foo"; | 657 o.status = "foo"; |
| 637 o.statusDetails = buildUnnamed2197(); | 658 o.statusDetails = buildUnnamed2231(); |
| 638 o.target = "foo"; | 659 o.target = "foo"; |
| 639 o.zone = "foo"; | 660 o.zone = "foo"; |
| 640 } | 661 } |
| 641 buildCounterAutoscaler--; | 662 buildCounterAutoscaler--; |
| 642 return o; | 663 return o; |
| 643 } | 664 } |
| 644 | 665 |
| 645 checkAutoscaler(api.Autoscaler o) { | 666 checkAutoscaler(api.Autoscaler o) { |
| 646 buildCounterAutoscaler++; | 667 buildCounterAutoscaler++; |
| 647 if (buildCounterAutoscaler < 3) { | 668 if (buildCounterAutoscaler < 3) { |
| 648 checkAutoscalingPolicy(o.autoscalingPolicy); | 669 checkAutoscalingPolicy(o.autoscalingPolicy); |
| 649 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 670 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 650 unittest.expect(o.description, unittest.equals('foo')); | 671 unittest.expect(o.description, unittest.equals('foo')); |
| 651 unittest.expect(o.id, unittest.equals('foo')); | 672 unittest.expect(o.id, unittest.equals('foo')); |
| 652 unittest.expect(o.kind, unittest.equals('foo')); | 673 unittest.expect(o.kind, unittest.equals('foo')); |
| 653 unittest.expect(o.name, unittest.equals('foo')); | 674 unittest.expect(o.name, unittest.equals('foo')); |
| 654 unittest.expect(o.region, unittest.equals('foo')); | 675 unittest.expect(o.region, unittest.equals('foo')); |
| 655 unittest.expect(o.selfLink, unittest.equals('foo')); | 676 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 656 unittest.expect(o.status, unittest.equals('foo')); | 677 unittest.expect(o.status, unittest.equals('foo')); |
| 657 checkUnnamed2197(o.statusDetails); | 678 checkUnnamed2231(o.statusDetails); |
| 658 unittest.expect(o.target, unittest.equals('foo')); | 679 unittest.expect(o.target, unittest.equals('foo')); |
| 659 unittest.expect(o.zone, unittest.equals('foo')); | 680 unittest.expect(o.zone, unittest.equals('foo')); |
| 660 } | 681 } |
| 661 buildCounterAutoscaler--; | 682 buildCounterAutoscaler--; |
| 662 } | 683 } |
| 663 | 684 |
| 664 buildUnnamed2198() { | 685 buildUnnamed2232() { |
| 665 var o = new core.Map<core.String, api.AutoscalersScopedList>(); | 686 var o = new core.Map<core.String, api.AutoscalersScopedList>(); |
| 666 o["x"] = buildAutoscalersScopedList(); | 687 o["x"] = buildAutoscalersScopedList(); |
| 667 o["y"] = buildAutoscalersScopedList(); | 688 o["y"] = buildAutoscalersScopedList(); |
| 668 return o; | 689 return o; |
| 669 } | 690 } |
| 670 | 691 |
| 671 checkUnnamed2198(core.Map<core.String, api.AutoscalersScopedList> o) { | 692 checkUnnamed2232(core.Map<core.String, api.AutoscalersScopedList> o) { |
| 672 unittest.expect(o, unittest.hasLength(2)); | 693 unittest.expect(o, unittest.hasLength(2)); |
| 673 checkAutoscalersScopedList(o["x"]); | 694 checkAutoscalersScopedList(o["x"]); |
| 674 checkAutoscalersScopedList(o["y"]); | 695 checkAutoscalersScopedList(o["y"]); |
| 675 } | 696 } |
| 676 | 697 |
| 677 core.int buildCounterAutoscalerAggregatedList = 0; | 698 core.int buildCounterAutoscalerAggregatedList = 0; |
| 678 buildAutoscalerAggregatedList() { | 699 buildAutoscalerAggregatedList() { |
| 679 var o = new api.AutoscalerAggregatedList(); | 700 var o = new api.AutoscalerAggregatedList(); |
| 680 buildCounterAutoscalerAggregatedList++; | 701 buildCounterAutoscalerAggregatedList++; |
| 681 if (buildCounterAutoscalerAggregatedList < 3) { | 702 if (buildCounterAutoscalerAggregatedList < 3) { |
| 682 o.id = "foo"; | 703 o.id = "foo"; |
| 683 o.items = buildUnnamed2198(); | 704 o.items = buildUnnamed2232(); |
| 684 o.kind = "foo"; | 705 o.kind = "foo"; |
| 685 o.nextPageToken = "foo"; | 706 o.nextPageToken = "foo"; |
| 686 o.selfLink = "foo"; | 707 o.selfLink = "foo"; |
| 687 } | 708 } |
| 688 buildCounterAutoscalerAggregatedList--; | 709 buildCounterAutoscalerAggregatedList--; |
| 689 return o; | 710 return o; |
| 690 } | 711 } |
| 691 | 712 |
| 692 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { | 713 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { |
| 693 buildCounterAutoscalerAggregatedList++; | 714 buildCounterAutoscalerAggregatedList++; |
| 694 if (buildCounterAutoscalerAggregatedList < 3) { | 715 if (buildCounterAutoscalerAggregatedList < 3) { |
| 695 unittest.expect(o.id, unittest.equals('foo')); | 716 unittest.expect(o.id, unittest.equals('foo')); |
| 696 checkUnnamed2198(o.items); | 717 checkUnnamed2232(o.items); |
| 697 unittest.expect(o.kind, unittest.equals('foo')); | 718 unittest.expect(o.kind, unittest.equals('foo')); |
| 698 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 719 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 699 unittest.expect(o.selfLink, unittest.equals('foo')); | 720 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 700 } | 721 } |
| 701 buildCounterAutoscalerAggregatedList--; | 722 buildCounterAutoscalerAggregatedList--; |
| 702 } | 723 } |
| 703 | 724 |
| 704 buildUnnamed2199() { | 725 buildUnnamed2233() { |
| 705 var o = new core.List<api.Autoscaler>(); | 726 var o = new core.List<api.Autoscaler>(); |
| 706 o.add(buildAutoscaler()); | 727 o.add(buildAutoscaler()); |
| 707 o.add(buildAutoscaler()); | 728 o.add(buildAutoscaler()); |
| 708 return o; | 729 return o; |
| 709 } | 730 } |
| 710 | 731 |
| 711 checkUnnamed2199(core.List<api.Autoscaler> o) { | 732 checkUnnamed2233(core.List<api.Autoscaler> o) { |
| 712 unittest.expect(o, unittest.hasLength(2)); | 733 unittest.expect(o, unittest.hasLength(2)); |
| 713 checkAutoscaler(o[0]); | 734 checkAutoscaler(o[0]); |
| 714 checkAutoscaler(o[1]); | 735 checkAutoscaler(o[1]); |
| 715 } | 736 } |
| 716 | 737 |
| 717 core.int buildCounterAutoscalerList = 0; | 738 core.int buildCounterAutoscalerList = 0; |
| 718 buildAutoscalerList() { | 739 buildAutoscalerList() { |
| 719 var o = new api.AutoscalerList(); | 740 var o = new api.AutoscalerList(); |
| 720 buildCounterAutoscalerList++; | 741 buildCounterAutoscalerList++; |
| 721 if (buildCounterAutoscalerList < 3) { | 742 if (buildCounterAutoscalerList < 3) { |
| 722 o.id = "foo"; | 743 o.id = "foo"; |
| 723 o.items = buildUnnamed2199(); | 744 o.items = buildUnnamed2233(); |
| 724 o.kind = "foo"; | 745 o.kind = "foo"; |
| 725 o.nextPageToken = "foo"; | 746 o.nextPageToken = "foo"; |
| 726 o.selfLink = "foo"; | 747 o.selfLink = "foo"; |
| 727 } | 748 } |
| 728 buildCounterAutoscalerList--; | 749 buildCounterAutoscalerList--; |
| 729 return o; | 750 return o; |
| 730 } | 751 } |
| 731 | 752 |
| 732 checkAutoscalerList(api.AutoscalerList o) { | 753 checkAutoscalerList(api.AutoscalerList o) { |
| 733 buildCounterAutoscalerList++; | 754 buildCounterAutoscalerList++; |
| 734 if (buildCounterAutoscalerList < 3) { | 755 if (buildCounterAutoscalerList < 3) { |
| 735 unittest.expect(o.id, unittest.equals('foo')); | 756 unittest.expect(o.id, unittest.equals('foo')); |
| 736 checkUnnamed2199(o.items); | 757 checkUnnamed2233(o.items); |
| 737 unittest.expect(o.kind, unittest.equals('foo')); | 758 unittest.expect(o.kind, unittest.equals('foo')); |
| 738 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 759 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 739 unittest.expect(o.selfLink, unittest.equals('foo')); | 760 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 740 } | 761 } |
| 741 buildCounterAutoscalerList--; | 762 buildCounterAutoscalerList--; |
| 742 } | 763 } |
| 743 | 764 |
| 744 core.int buildCounterAutoscalerStatusDetails = 0; | 765 core.int buildCounterAutoscalerStatusDetails = 0; |
| 745 buildAutoscalerStatusDetails() { | 766 buildAutoscalerStatusDetails() { |
| 746 var o = new api.AutoscalerStatusDetails(); | 767 var o = new api.AutoscalerStatusDetails(); |
| 747 buildCounterAutoscalerStatusDetails++; | 768 buildCounterAutoscalerStatusDetails++; |
| 748 if (buildCounterAutoscalerStatusDetails < 3) { | 769 if (buildCounterAutoscalerStatusDetails < 3) { |
| 749 o.message = "foo"; | 770 o.message = "foo"; |
| 750 o.type = "foo"; | 771 o.type = "foo"; |
| 751 } | 772 } |
| 752 buildCounterAutoscalerStatusDetails--; | 773 buildCounterAutoscalerStatusDetails--; |
| 753 return o; | 774 return o; |
| 754 } | 775 } |
| 755 | 776 |
| 756 checkAutoscalerStatusDetails(api.AutoscalerStatusDetails o) { | 777 checkAutoscalerStatusDetails(api.AutoscalerStatusDetails o) { |
| 757 buildCounterAutoscalerStatusDetails++; | 778 buildCounterAutoscalerStatusDetails++; |
| 758 if (buildCounterAutoscalerStatusDetails < 3) { | 779 if (buildCounterAutoscalerStatusDetails < 3) { |
| 759 unittest.expect(o.message, unittest.equals('foo')); | 780 unittest.expect(o.message, unittest.equals('foo')); |
| 760 unittest.expect(o.type, unittest.equals('foo')); | 781 unittest.expect(o.type, unittest.equals('foo')); |
| 761 } | 782 } |
| 762 buildCounterAutoscalerStatusDetails--; | 783 buildCounterAutoscalerStatusDetails--; |
| 763 } | 784 } |
| 764 | 785 |
| 765 buildUnnamed2200() { | 786 buildUnnamed2234() { |
| 766 var o = new core.List<api.Autoscaler>(); | 787 var o = new core.List<api.Autoscaler>(); |
| 767 o.add(buildAutoscaler()); | 788 o.add(buildAutoscaler()); |
| 768 o.add(buildAutoscaler()); | 789 o.add(buildAutoscaler()); |
| 769 return o; | 790 return o; |
| 770 } | 791 } |
| 771 | 792 |
| 772 checkUnnamed2200(core.List<api.Autoscaler> o) { | 793 checkUnnamed2234(core.List<api.Autoscaler> o) { |
| 773 unittest.expect(o, unittest.hasLength(2)); | 794 unittest.expect(o, unittest.hasLength(2)); |
| 774 checkAutoscaler(o[0]); | 795 checkAutoscaler(o[0]); |
| 775 checkAutoscaler(o[1]); | 796 checkAutoscaler(o[1]); |
| 776 } | 797 } |
| 777 | 798 |
| 778 core.int buildCounterAutoscalersScopedListWarningData = 0; | 799 core.int buildCounterAutoscalersScopedListWarningData = 0; |
| 779 buildAutoscalersScopedListWarningData() { | 800 buildAutoscalersScopedListWarningData() { |
| 780 var o = new api.AutoscalersScopedListWarningData(); | 801 var o = new api.AutoscalersScopedListWarningData(); |
| 781 buildCounterAutoscalersScopedListWarningData++; | 802 buildCounterAutoscalersScopedListWarningData++; |
| 782 if (buildCounterAutoscalersScopedListWarningData < 3) { | 803 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 783 o.key = "foo"; | 804 o.key = "foo"; |
| 784 o.value = "foo"; | 805 o.value = "foo"; |
| 785 } | 806 } |
| 786 buildCounterAutoscalersScopedListWarningData--; | 807 buildCounterAutoscalersScopedListWarningData--; |
| 787 return o; | 808 return o; |
| 788 } | 809 } |
| 789 | 810 |
| 790 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { | 811 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { |
| 791 buildCounterAutoscalersScopedListWarningData++; | 812 buildCounterAutoscalersScopedListWarningData++; |
| 792 if (buildCounterAutoscalersScopedListWarningData < 3) { | 813 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 793 unittest.expect(o.key, unittest.equals('foo')); | 814 unittest.expect(o.key, unittest.equals('foo')); |
| 794 unittest.expect(o.value, unittest.equals('foo')); | 815 unittest.expect(o.value, unittest.equals('foo')); |
| 795 } | 816 } |
| 796 buildCounterAutoscalersScopedListWarningData--; | 817 buildCounterAutoscalersScopedListWarningData--; |
| 797 } | 818 } |
| 798 | 819 |
| 799 buildUnnamed2201() { | 820 buildUnnamed2235() { |
| 800 var o = new core.List<api.AutoscalersScopedListWarningData>(); | 821 var o = new core.List<api.AutoscalersScopedListWarningData>(); |
| 801 o.add(buildAutoscalersScopedListWarningData()); | 822 o.add(buildAutoscalersScopedListWarningData()); |
| 802 o.add(buildAutoscalersScopedListWarningData()); | 823 o.add(buildAutoscalersScopedListWarningData()); |
| 803 return o; | 824 return o; |
| 804 } | 825 } |
| 805 | 826 |
| 806 checkUnnamed2201(core.List<api.AutoscalersScopedListWarningData> o) { | 827 checkUnnamed2235(core.List<api.AutoscalersScopedListWarningData> o) { |
| 807 unittest.expect(o, unittest.hasLength(2)); | 828 unittest.expect(o, unittest.hasLength(2)); |
| 808 checkAutoscalersScopedListWarningData(o[0]); | 829 checkAutoscalersScopedListWarningData(o[0]); |
| 809 checkAutoscalersScopedListWarningData(o[1]); | 830 checkAutoscalersScopedListWarningData(o[1]); |
| 810 } | 831 } |
| 811 | 832 |
| 812 core.int buildCounterAutoscalersScopedListWarning = 0; | 833 core.int buildCounterAutoscalersScopedListWarning = 0; |
| 813 buildAutoscalersScopedListWarning() { | 834 buildAutoscalersScopedListWarning() { |
| 814 var o = new api.AutoscalersScopedListWarning(); | 835 var o = new api.AutoscalersScopedListWarning(); |
| 815 buildCounterAutoscalersScopedListWarning++; | 836 buildCounterAutoscalersScopedListWarning++; |
| 816 if (buildCounterAutoscalersScopedListWarning < 3) { | 837 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 817 o.code = "foo"; | 838 o.code = "foo"; |
| 818 o.data = buildUnnamed2201(); | 839 o.data = buildUnnamed2235(); |
| 819 o.message = "foo"; | 840 o.message = "foo"; |
| 820 } | 841 } |
| 821 buildCounterAutoscalersScopedListWarning--; | 842 buildCounterAutoscalersScopedListWarning--; |
| 822 return o; | 843 return o; |
| 823 } | 844 } |
| 824 | 845 |
| 825 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { | 846 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { |
| 826 buildCounterAutoscalersScopedListWarning++; | 847 buildCounterAutoscalersScopedListWarning++; |
| 827 if (buildCounterAutoscalersScopedListWarning < 3) { | 848 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 828 unittest.expect(o.code, unittest.equals('foo')); | 849 unittest.expect(o.code, unittest.equals('foo')); |
| 829 checkUnnamed2201(o.data); | 850 checkUnnamed2235(o.data); |
| 830 unittest.expect(o.message, unittest.equals('foo')); | 851 unittest.expect(o.message, unittest.equals('foo')); |
| 831 } | 852 } |
| 832 buildCounterAutoscalersScopedListWarning--; | 853 buildCounterAutoscalersScopedListWarning--; |
| 833 } | 854 } |
| 834 | 855 |
| 835 core.int buildCounterAutoscalersScopedList = 0; | 856 core.int buildCounterAutoscalersScopedList = 0; |
| 836 buildAutoscalersScopedList() { | 857 buildAutoscalersScopedList() { |
| 837 var o = new api.AutoscalersScopedList(); | 858 var o = new api.AutoscalersScopedList(); |
| 838 buildCounterAutoscalersScopedList++; | 859 buildCounterAutoscalersScopedList++; |
| 839 if (buildCounterAutoscalersScopedList < 3) { | 860 if (buildCounterAutoscalersScopedList < 3) { |
| 840 o.autoscalers = buildUnnamed2200(); | 861 o.autoscalers = buildUnnamed2234(); |
| 841 o.warning = buildAutoscalersScopedListWarning(); | 862 o.warning = buildAutoscalersScopedListWarning(); |
| 842 } | 863 } |
| 843 buildCounterAutoscalersScopedList--; | 864 buildCounterAutoscalersScopedList--; |
| 844 return o; | 865 return o; |
| 845 } | 866 } |
| 846 | 867 |
| 847 checkAutoscalersScopedList(api.AutoscalersScopedList o) { | 868 checkAutoscalersScopedList(api.AutoscalersScopedList o) { |
| 848 buildCounterAutoscalersScopedList++; | 869 buildCounterAutoscalersScopedList++; |
| 849 if (buildCounterAutoscalersScopedList < 3) { | 870 if (buildCounterAutoscalersScopedList < 3) { |
| 850 checkUnnamed2200(o.autoscalers); | 871 checkUnnamed2234(o.autoscalers); |
| 851 checkAutoscalersScopedListWarning(o.warning); | 872 checkAutoscalersScopedListWarning(o.warning); |
| 852 } | 873 } |
| 853 buildCounterAutoscalersScopedList--; | 874 buildCounterAutoscalersScopedList--; |
| 854 } | 875 } |
| 855 | 876 |
| 856 buildUnnamed2202() { | 877 buildUnnamed2236() { |
| 857 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); | 878 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); |
| 858 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 879 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 859 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 880 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 860 return o; | 881 return o; |
| 861 } | 882 } |
| 862 | 883 |
| 863 checkUnnamed2202(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 884 checkUnnamed2236(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { |
| 864 unittest.expect(o, unittest.hasLength(2)); | 885 unittest.expect(o, unittest.hasLength(2)); |
| 865 checkAutoscalingPolicyCustomMetricUtilization(o[0]); | 886 checkAutoscalingPolicyCustomMetricUtilization(o[0]); |
| 866 checkAutoscalingPolicyCustomMetricUtilization(o[1]); | 887 checkAutoscalingPolicyCustomMetricUtilization(o[1]); |
| 867 } | 888 } |
| 868 | 889 |
| 869 core.int buildCounterAutoscalingPolicy = 0; | 890 core.int buildCounterAutoscalingPolicy = 0; |
| 870 buildAutoscalingPolicy() { | 891 buildAutoscalingPolicy() { |
| 871 var o = new api.AutoscalingPolicy(); | 892 var o = new api.AutoscalingPolicy(); |
| 872 buildCounterAutoscalingPolicy++; | 893 buildCounterAutoscalingPolicy++; |
| 873 if (buildCounterAutoscalingPolicy < 3) { | 894 if (buildCounterAutoscalingPolicy < 3) { |
| 874 o.coolDownPeriodSec = 42; | 895 o.coolDownPeriodSec = 42; |
| 875 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); | 896 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); |
| 876 o.customMetricUtilizations = buildUnnamed2202(); | 897 o.customMetricUtilizations = buildUnnamed2236(); |
| 877 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); | 898 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); |
| 878 o.maxNumReplicas = 42; | 899 o.maxNumReplicas = 42; |
| 879 o.minNumReplicas = 42; | 900 o.minNumReplicas = 42; |
| 880 } | 901 } |
| 881 buildCounterAutoscalingPolicy--; | 902 buildCounterAutoscalingPolicy--; |
| 882 return o; | 903 return o; |
| 883 } | 904 } |
| 884 | 905 |
| 885 checkAutoscalingPolicy(api.AutoscalingPolicy o) { | 906 checkAutoscalingPolicy(api.AutoscalingPolicy o) { |
| 886 buildCounterAutoscalingPolicy++; | 907 buildCounterAutoscalingPolicy++; |
| 887 if (buildCounterAutoscalingPolicy < 3) { | 908 if (buildCounterAutoscalingPolicy < 3) { |
| 888 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); | 909 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); |
| 889 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); | 910 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); |
| 890 checkUnnamed2202(o.customMetricUtilizations); | 911 checkUnnamed2236(o.customMetricUtilizations); |
| 891 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); | 912 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); |
| 892 unittest.expect(o.maxNumReplicas, unittest.equals(42)); | 913 unittest.expect(o.maxNumReplicas, unittest.equals(42)); |
| 893 unittest.expect(o.minNumReplicas, unittest.equals(42)); | 914 unittest.expect(o.minNumReplicas, unittest.equals(42)); |
| 894 } | 915 } |
| 895 buildCounterAutoscalingPolicy--; | 916 buildCounterAutoscalingPolicy--; |
| 896 } | 917 } |
| 897 | 918 |
| 898 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; | 919 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; |
| 899 buildAutoscalingPolicyCpuUtilization() { | 920 buildAutoscalingPolicyCpuUtilization() { |
| 900 var o = new api.AutoscalingPolicyCpuUtilization(); | 921 var o = new api.AutoscalingPolicyCpuUtilization(); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 unittest.expect(o.description, unittest.equals('foo')); | 1038 unittest.expect(o.description, unittest.equals('foo')); |
| 1018 unittest.expect(o.enableCdn, unittest.isTrue); | 1039 unittest.expect(o.enableCdn, unittest.isTrue); |
| 1019 unittest.expect(o.id, unittest.equals('foo')); | 1040 unittest.expect(o.id, unittest.equals('foo')); |
| 1020 unittest.expect(o.kind, unittest.equals('foo')); | 1041 unittest.expect(o.kind, unittest.equals('foo')); |
| 1021 unittest.expect(o.name, unittest.equals('foo')); | 1042 unittest.expect(o.name, unittest.equals('foo')); |
| 1022 unittest.expect(o.selfLink, unittest.equals('foo')); | 1043 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1023 } | 1044 } |
| 1024 buildCounterBackendBucket--; | 1045 buildCounterBackendBucket--; |
| 1025 } | 1046 } |
| 1026 | 1047 |
| 1027 buildUnnamed2203() { | 1048 buildUnnamed2237() { |
| 1028 var o = new core.List<api.BackendBucket>(); | 1049 var o = new core.List<api.BackendBucket>(); |
| 1029 o.add(buildBackendBucket()); | 1050 o.add(buildBackendBucket()); |
| 1030 o.add(buildBackendBucket()); | 1051 o.add(buildBackendBucket()); |
| 1031 return o; | 1052 return o; |
| 1032 } | 1053 } |
| 1033 | 1054 |
| 1034 checkUnnamed2203(core.List<api.BackendBucket> o) { | 1055 checkUnnamed2237(core.List<api.BackendBucket> o) { |
| 1035 unittest.expect(o, unittest.hasLength(2)); | 1056 unittest.expect(o, unittest.hasLength(2)); |
| 1036 checkBackendBucket(o[0]); | 1057 checkBackendBucket(o[0]); |
| 1037 checkBackendBucket(o[1]); | 1058 checkBackendBucket(o[1]); |
| 1038 } | 1059 } |
| 1039 | 1060 |
| 1040 core.int buildCounterBackendBucketList = 0; | 1061 core.int buildCounterBackendBucketList = 0; |
| 1041 buildBackendBucketList() { | 1062 buildBackendBucketList() { |
| 1042 var o = new api.BackendBucketList(); | 1063 var o = new api.BackendBucketList(); |
| 1043 buildCounterBackendBucketList++; | 1064 buildCounterBackendBucketList++; |
| 1044 if (buildCounterBackendBucketList < 3) { | 1065 if (buildCounterBackendBucketList < 3) { |
| 1045 o.id = "foo"; | 1066 o.id = "foo"; |
| 1046 o.items = buildUnnamed2203(); | 1067 o.items = buildUnnamed2237(); |
| 1047 o.kind = "foo"; | 1068 o.kind = "foo"; |
| 1048 o.nextPageToken = "foo"; | 1069 o.nextPageToken = "foo"; |
| 1049 o.selfLink = "foo"; | 1070 o.selfLink = "foo"; |
| 1050 } | 1071 } |
| 1051 buildCounterBackendBucketList--; | 1072 buildCounterBackendBucketList--; |
| 1052 return o; | 1073 return o; |
| 1053 } | 1074 } |
| 1054 | 1075 |
| 1055 checkBackendBucketList(api.BackendBucketList o) { | 1076 checkBackendBucketList(api.BackendBucketList o) { |
| 1056 buildCounterBackendBucketList++; | 1077 buildCounterBackendBucketList++; |
| 1057 if (buildCounterBackendBucketList < 3) { | 1078 if (buildCounterBackendBucketList < 3) { |
| 1058 unittest.expect(o.id, unittest.equals('foo')); | 1079 unittest.expect(o.id, unittest.equals('foo')); |
| 1059 checkUnnamed2203(o.items); | 1080 checkUnnamed2237(o.items); |
| 1060 unittest.expect(o.kind, unittest.equals('foo')); | 1081 unittest.expect(o.kind, unittest.equals('foo')); |
| 1061 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1082 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1062 unittest.expect(o.selfLink, unittest.equals('foo')); | 1083 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1063 } | 1084 } |
| 1064 buildCounterBackendBucketList--; | 1085 buildCounterBackendBucketList--; |
| 1065 } | 1086 } |
| 1066 | 1087 |
| 1067 buildUnnamed2204() { | 1088 buildUnnamed2238() { |
| 1068 var o = new core.List<api.Backend>(); | 1089 var o = new core.List<api.Backend>(); |
| 1069 o.add(buildBackend()); | 1090 o.add(buildBackend()); |
| 1070 o.add(buildBackend()); | 1091 o.add(buildBackend()); |
| 1071 return o; | 1092 return o; |
| 1072 } | 1093 } |
| 1073 | 1094 |
| 1074 checkUnnamed2204(core.List<api.Backend> o) { | 1095 checkUnnamed2238(core.List<api.Backend> o) { |
| 1075 unittest.expect(o, unittest.hasLength(2)); | 1096 unittest.expect(o, unittest.hasLength(2)); |
| 1076 checkBackend(o[0]); | 1097 checkBackend(o[0]); |
| 1077 checkBackend(o[1]); | 1098 checkBackend(o[1]); |
| 1078 } | 1099 } |
| 1079 | 1100 |
| 1080 buildUnnamed2205() { | 1101 buildUnnamed2239() { |
| 1081 var o = new core.List<core.String>(); | 1102 var o = new core.List<core.String>(); |
| 1082 o.add("foo"); | 1103 o.add("foo"); |
| 1083 o.add("foo"); | 1104 o.add("foo"); |
| 1084 return o; | 1105 return o; |
| 1085 } | 1106 } |
| 1086 | 1107 |
| 1087 checkUnnamed2205(core.List<core.String> o) { | 1108 checkUnnamed2239(core.List<core.String> o) { |
| 1088 unittest.expect(o, unittest.hasLength(2)); | 1109 unittest.expect(o, unittest.hasLength(2)); |
| 1089 unittest.expect(o[0], unittest.equals('foo')); | 1110 unittest.expect(o[0], unittest.equals('foo')); |
| 1090 unittest.expect(o[1], unittest.equals('foo')); | 1111 unittest.expect(o[1], unittest.equals('foo')); |
| 1091 } | 1112 } |
| 1092 | 1113 |
| 1093 core.int buildCounterBackendService = 0; | 1114 core.int buildCounterBackendService = 0; |
| 1094 buildBackendService() { | 1115 buildBackendService() { |
| 1095 var o = new api.BackendService(); | 1116 var o = new api.BackendService(); |
| 1096 buildCounterBackendService++; | 1117 buildCounterBackendService++; |
| 1097 if (buildCounterBackendService < 3) { | 1118 if (buildCounterBackendService < 3) { |
| 1098 o.affinityCookieTtlSec = 42; | 1119 o.affinityCookieTtlSec = 42; |
| 1099 o.backends = buildUnnamed2204(); | 1120 o.backends = buildUnnamed2238(); |
| 1100 o.cdnPolicy = buildBackendServiceCdnPolicy(); | 1121 o.cdnPolicy = buildBackendServiceCdnPolicy(); |
| 1101 o.connectionDraining = buildConnectionDraining(); | 1122 o.connectionDraining = buildConnectionDraining(); |
| 1102 o.creationTimestamp = "foo"; | 1123 o.creationTimestamp = "foo"; |
| 1103 o.description = "foo"; | 1124 o.description = "foo"; |
| 1104 o.enableCDN = true; | 1125 o.enableCDN = true; |
| 1105 o.fingerprint = "foo"; | 1126 o.fingerprint = "foo"; |
| 1106 o.healthChecks = buildUnnamed2205(); | 1127 o.healthChecks = buildUnnamed2239(); |
| 1107 o.iap = buildBackendServiceIAP(); | 1128 o.iap = buildBackendServiceIAP(); |
| 1108 o.id = "foo"; | 1129 o.id = "foo"; |
| 1109 o.kind = "foo"; | 1130 o.kind = "foo"; |
| 1110 o.loadBalancingScheme = "foo"; | 1131 o.loadBalancingScheme = "foo"; |
| 1111 o.name = "foo"; | 1132 o.name = "foo"; |
| 1112 o.port = 42; | 1133 o.port = 42; |
| 1113 o.portName = "foo"; | 1134 o.portName = "foo"; |
| 1114 o.protocol = "foo"; | 1135 o.protocol = "foo"; |
| 1115 o.region = "foo"; | 1136 o.region = "foo"; |
| 1116 o.selfLink = "foo"; | 1137 o.selfLink = "foo"; |
| 1117 o.sessionAffinity = "foo"; | 1138 o.sessionAffinity = "foo"; |
| 1118 o.timeoutSec = 42; | 1139 o.timeoutSec = 42; |
| 1119 } | 1140 } |
| 1120 buildCounterBackendService--; | 1141 buildCounterBackendService--; |
| 1121 return o; | 1142 return o; |
| 1122 } | 1143 } |
| 1123 | 1144 |
| 1124 checkBackendService(api.BackendService o) { | 1145 checkBackendService(api.BackendService o) { |
| 1125 buildCounterBackendService++; | 1146 buildCounterBackendService++; |
| 1126 if (buildCounterBackendService < 3) { | 1147 if (buildCounterBackendService < 3) { |
| 1127 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); | 1148 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); |
| 1128 checkUnnamed2204(o.backends); | 1149 checkUnnamed2238(o.backends); |
| 1129 checkBackendServiceCdnPolicy(o.cdnPolicy); | 1150 checkBackendServiceCdnPolicy(o.cdnPolicy); |
| 1130 checkConnectionDraining(o.connectionDraining); | 1151 checkConnectionDraining(o.connectionDraining); |
| 1131 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1152 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1132 unittest.expect(o.description, unittest.equals('foo')); | 1153 unittest.expect(o.description, unittest.equals('foo')); |
| 1133 unittest.expect(o.enableCDN, unittest.isTrue); | 1154 unittest.expect(o.enableCDN, unittest.isTrue); |
| 1134 unittest.expect(o.fingerprint, unittest.equals('foo')); | 1155 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 1135 checkUnnamed2205(o.healthChecks); | 1156 checkUnnamed2239(o.healthChecks); |
| 1136 checkBackendServiceIAP(o.iap); | 1157 checkBackendServiceIAP(o.iap); |
| 1137 unittest.expect(o.id, unittest.equals('foo')); | 1158 unittest.expect(o.id, unittest.equals('foo')); |
| 1138 unittest.expect(o.kind, unittest.equals('foo')); | 1159 unittest.expect(o.kind, unittest.equals('foo')); |
| 1139 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); | 1160 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); |
| 1140 unittest.expect(o.name, unittest.equals('foo')); | 1161 unittest.expect(o.name, unittest.equals('foo')); |
| 1141 unittest.expect(o.port, unittest.equals(42)); | 1162 unittest.expect(o.port, unittest.equals(42)); |
| 1142 unittest.expect(o.portName, unittest.equals('foo')); | 1163 unittest.expect(o.portName, unittest.equals('foo')); |
| 1143 unittest.expect(o.protocol, unittest.equals('foo')); | 1164 unittest.expect(o.protocol, unittest.equals('foo')); |
| 1144 unittest.expect(o.region, unittest.equals('foo')); | 1165 unittest.expect(o.region, unittest.equals('foo')); |
| 1145 unittest.expect(o.selfLink, unittest.equals('foo')); | 1166 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1146 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 1167 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 1147 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1168 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1148 } | 1169 } |
| 1149 buildCounterBackendService--; | 1170 buildCounterBackendService--; |
| 1150 } | 1171 } |
| 1151 | 1172 |
| 1152 buildUnnamed2206() { | 1173 buildUnnamed2240() { |
| 1153 var o = new core.Map<core.String, api.BackendServicesScopedList>(); | 1174 var o = new core.Map<core.String, api.BackendServicesScopedList>(); |
| 1154 o["x"] = buildBackendServicesScopedList(); | 1175 o["x"] = buildBackendServicesScopedList(); |
| 1155 o["y"] = buildBackendServicesScopedList(); | 1176 o["y"] = buildBackendServicesScopedList(); |
| 1156 return o; | 1177 return o; |
| 1157 } | 1178 } |
| 1158 | 1179 |
| 1159 checkUnnamed2206(core.Map<core.String, api.BackendServicesScopedList> o) { | 1180 checkUnnamed2240(core.Map<core.String, api.BackendServicesScopedList> o) { |
| 1160 unittest.expect(o, unittest.hasLength(2)); | 1181 unittest.expect(o, unittest.hasLength(2)); |
| 1161 checkBackendServicesScopedList(o["x"]); | 1182 checkBackendServicesScopedList(o["x"]); |
| 1162 checkBackendServicesScopedList(o["y"]); | 1183 checkBackendServicesScopedList(o["y"]); |
| 1163 } | 1184 } |
| 1164 | 1185 |
| 1165 core.int buildCounterBackendServiceAggregatedList = 0; | 1186 core.int buildCounterBackendServiceAggregatedList = 0; |
| 1166 buildBackendServiceAggregatedList() { | 1187 buildBackendServiceAggregatedList() { |
| 1167 var o = new api.BackendServiceAggregatedList(); | 1188 var o = new api.BackendServiceAggregatedList(); |
| 1168 buildCounterBackendServiceAggregatedList++; | 1189 buildCounterBackendServiceAggregatedList++; |
| 1169 if (buildCounterBackendServiceAggregatedList < 3) { | 1190 if (buildCounterBackendServiceAggregatedList < 3) { |
| 1170 o.id = "foo"; | 1191 o.id = "foo"; |
| 1171 o.items = buildUnnamed2206(); | 1192 o.items = buildUnnamed2240(); |
| 1172 o.kind = "foo"; | 1193 o.kind = "foo"; |
| 1173 o.nextPageToken = "foo"; | 1194 o.nextPageToken = "foo"; |
| 1174 o.selfLink = "foo"; | 1195 o.selfLink = "foo"; |
| 1175 } | 1196 } |
| 1176 buildCounterBackendServiceAggregatedList--; | 1197 buildCounterBackendServiceAggregatedList--; |
| 1177 return o; | 1198 return o; |
| 1178 } | 1199 } |
| 1179 | 1200 |
| 1180 checkBackendServiceAggregatedList(api.BackendServiceAggregatedList o) { | 1201 checkBackendServiceAggregatedList(api.BackendServiceAggregatedList o) { |
| 1181 buildCounterBackendServiceAggregatedList++; | 1202 buildCounterBackendServiceAggregatedList++; |
| 1182 if (buildCounterBackendServiceAggregatedList < 3) { | 1203 if (buildCounterBackendServiceAggregatedList < 3) { |
| 1183 unittest.expect(o.id, unittest.equals('foo')); | 1204 unittest.expect(o.id, unittest.equals('foo')); |
| 1184 checkUnnamed2206(o.items); | 1205 checkUnnamed2240(o.items); |
| 1185 unittest.expect(o.kind, unittest.equals('foo')); | 1206 unittest.expect(o.kind, unittest.equals('foo')); |
| 1186 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1207 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1187 unittest.expect(o.selfLink, unittest.equals('foo')); | 1208 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1188 } | 1209 } |
| 1189 buildCounterBackendServiceAggregatedList--; | 1210 buildCounterBackendServiceAggregatedList--; |
| 1190 } | 1211 } |
| 1191 | 1212 |
| 1192 core.int buildCounterBackendServiceCdnPolicy = 0; | 1213 core.int buildCounterBackendServiceCdnPolicy = 0; |
| 1193 buildBackendServiceCdnPolicy() { | 1214 buildBackendServiceCdnPolicy() { |
| 1194 var o = new api.BackendServiceCdnPolicy(); | 1215 var o = new api.BackendServiceCdnPolicy(); |
| 1195 buildCounterBackendServiceCdnPolicy++; | 1216 buildCounterBackendServiceCdnPolicy++; |
| 1196 if (buildCounterBackendServiceCdnPolicy < 3) { | 1217 if (buildCounterBackendServiceCdnPolicy < 3) { |
| 1197 o.cacheKeyPolicy = buildCacheKeyPolicy(); | 1218 o.cacheKeyPolicy = buildCacheKeyPolicy(); |
| 1198 } | 1219 } |
| 1199 buildCounterBackendServiceCdnPolicy--; | 1220 buildCounterBackendServiceCdnPolicy--; |
| 1200 return o; | 1221 return o; |
| 1201 } | 1222 } |
| 1202 | 1223 |
| 1203 checkBackendServiceCdnPolicy(api.BackendServiceCdnPolicy o) { | 1224 checkBackendServiceCdnPolicy(api.BackendServiceCdnPolicy o) { |
| 1204 buildCounterBackendServiceCdnPolicy++; | 1225 buildCounterBackendServiceCdnPolicy++; |
| 1205 if (buildCounterBackendServiceCdnPolicy < 3) { | 1226 if (buildCounterBackendServiceCdnPolicy < 3) { |
| 1206 checkCacheKeyPolicy(o.cacheKeyPolicy); | 1227 checkCacheKeyPolicy(o.cacheKeyPolicy); |
| 1207 } | 1228 } |
| 1208 buildCounterBackendServiceCdnPolicy--; | 1229 buildCounterBackendServiceCdnPolicy--; |
| 1209 } | 1230 } |
| 1210 | 1231 |
| 1211 buildUnnamed2207() { | 1232 buildUnnamed2241() { |
| 1212 var o = new core.List<api.HealthStatus>(); | 1233 var o = new core.List<api.HealthStatus>(); |
| 1213 o.add(buildHealthStatus()); | 1234 o.add(buildHealthStatus()); |
| 1214 o.add(buildHealthStatus()); | 1235 o.add(buildHealthStatus()); |
| 1215 return o; | 1236 return o; |
| 1216 } | 1237 } |
| 1217 | 1238 |
| 1218 checkUnnamed2207(core.List<api.HealthStatus> o) { | 1239 checkUnnamed2241(core.List<api.HealthStatus> o) { |
| 1219 unittest.expect(o, unittest.hasLength(2)); | 1240 unittest.expect(o, unittest.hasLength(2)); |
| 1220 checkHealthStatus(o[0]); | 1241 checkHealthStatus(o[0]); |
| 1221 checkHealthStatus(o[1]); | 1242 checkHealthStatus(o[1]); |
| 1222 } | 1243 } |
| 1223 | 1244 |
| 1224 core.int buildCounterBackendServiceGroupHealth = 0; | 1245 core.int buildCounterBackendServiceGroupHealth = 0; |
| 1225 buildBackendServiceGroupHealth() { | 1246 buildBackendServiceGroupHealth() { |
| 1226 var o = new api.BackendServiceGroupHealth(); | 1247 var o = new api.BackendServiceGroupHealth(); |
| 1227 buildCounterBackendServiceGroupHealth++; | 1248 buildCounterBackendServiceGroupHealth++; |
| 1228 if (buildCounterBackendServiceGroupHealth < 3) { | 1249 if (buildCounterBackendServiceGroupHealth < 3) { |
| 1229 o.healthStatus = buildUnnamed2207(); | 1250 o.healthStatus = buildUnnamed2241(); |
| 1230 o.kind = "foo"; | 1251 o.kind = "foo"; |
| 1231 } | 1252 } |
| 1232 buildCounterBackendServiceGroupHealth--; | 1253 buildCounterBackendServiceGroupHealth--; |
| 1233 return o; | 1254 return o; |
| 1234 } | 1255 } |
| 1235 | 1256 |
| 1236 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 1257 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 1237 buildCounterBackendServiceGroupHealth++; | 1258 buildCounterBackendServiceGroupHealth++; |
| 1238 if (buildCounterBackendServiceGroupHealth < 3) { | 1259 if (buildCounterBackendServiceGroupHealth < 3) { |
| 1239 checkUnnamed2207(o.healthStatus); | 1260 checkUnnamed2241(o.healthStatus); |
| 1240 unittest.expect(o.kind, unittest.equals('foo')); | 1261 unittest.expect(o.kind, unittest.equals('foo')); |
| 1241 } | 1262 } |
| 1242 buildCounterBackendServiceGroupHealth--; | 1263 buildCounterBackendServiceGroupHealth--; |
| 1243 } | 1264 } |
| 1244 | 1265 |
| 1245 core.int buildCounterBackendServiceIAP = 0; | 1266 core.int buildCounterBackendServiceIAP = 0; |
| 1246 buildBackendServiceIAP() { | 1267 buildBackendServiceIAP() { |
| 1247 var o = new api.BackendServiceIAP(); | 1268 var o = new api.BackendServiceIAP(); |
| 1248 buildCounterBackendServiceIAP++; | 1269 buildCounterBackendServiceIAP++; |
| 1249 if (buildCounterBackendServiceIAP < 3) { | 1270 if (buildCounterBackendServiceIAP < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1260 buildCounterBackendServiceIAP++; | 1281 buildCounterBackendServiceIAP++; |
| 1261 if (buildCounterBackendServiceIAP < 3) { | 1282 if (buildCounterBackendServiceIAP < 3) { |
| 1262 unittest.expect(o.enabled, unittest.isTrue); | 1283 unittest.expect(o.enabled, unittest.isTrue); |
| 1263 unittest.expect(o.oauth2ClientId, unittest.equals('foo')); | 1284 unittest.expect(o.oauth2ClientId, unittest.equals('foo')); |
| 1264 unittest.expect(o.oauth2ClientSecret, unittest.equals('foo')); | 1285 unittest.expect(o.oauth2ClientSecret, unittest.equals('foo')); |
| 1265 unittest.expect(o.oauth2ClientSecretSha256, unittest.equals('foo')); | 1286 unittest.expect(o.oauth2ClientSecretSha256, unittest.equals('foo')); |
| 1266 } | 1287 } |
| 1267 buildCounterBackendServiceIAP--; | 1288 buildCounterBackendServiceIAP--; |
| 1268 } | 1289 } |
| 1269 | 1290 |
| 1270 buildUnnamed2208() { | 1291 buildUnnamed2242() { |
| 1271 var o = new core.List<api.BackendService>(); | 1292 var o = new core.List<api.BackendService>(); |
| 1272 o.add(buildBackendService()); | 1293 o.add(buildBackendService()); |
| 1273 o.add(buildBackendService()); | 1294 o.add(buildBackendService()); |
| 1274 return o; | 1295 return o; |
| 1275 } | 1296 } |
| 1276 | 1297 |
| 1277 checkUnnamed2208(core.List<api.BackendService> o) { | 1298 checkUnnamed2242(core.List<api.BackendService> o) { |
| 1278 unittest.expect(o, unittest.hasLength(2)); | 1299 unittest.expect(o, unittest.hasLength(2)); |
| 1279 checkBackendService(o[0]); | 1300 checkBackendService(o[0]); |
| 1280 checkBackendService(o[1]); | 1301 checkBackendService(o[1]); |
| 1281 } | 1302 } |
| 1282 | 1303 |
| 1283 core.int buildCounterBackendServiceList = 0; | 1304 core.int buildCounterBackendServiceList = 0; |
| 1284 buildBackendServiceList() { | 1305 buildBackendServiceList() { |
| 1285 var o = new api.BackendServiceList(); | 1306 var o = new api.BackendServiceList(); |
| 1286 buildCounterBackendServiceList++; | 1307 buildCounterBackendServiceList++; |
| 1287 if (buildCounterBackendServiceList < 3) { | 1308 if (buildCounterBackendServiceList < 3) { |
| 1288 o.id = "foo"; | 1309 o.id = "foo"; |
| 1289 o.items = buildUnnamed2208(); | 1310 o.items = buildUnnamed2242(); |
| 1290 o.kind = "foo"; | 1311 o.kind = "foo"; |
| 1291 o.nextPageToken = "foo"; | 1312 o.nextPageToken = "foo"; |
| 1292 o.selfLink = "foo"; | 1313 o.selfLink = "foo"; |
| 1293 } | 1314 } |
| 1294 buildCounterBackendServiceList--; | 1315 buildCounterBackendServiceList--; |
| 1295 return o; | 1316 return o; |
| 1296 } | 1317 } |
| 1297 | 1318 |
| 1298 checkBackendServiceList(api.BackendServiceList o) { | 1319 checkBackendServiceList(api.BackendServiceList o) { |
| 1299 buildCounterBackendServiceList++; | 1320 buildCounterBackendServiceList++; |
| 1300 if (buildCounterBackendServiceList < 3) { | 1321 if (buildCounterBackendServiceList < 3) { |
| 1301 unittest.expect(o.id, unittest.equals('foo')); | 1322 unittest.expect(o.id, unittest.equals('foo')); |
| 1302 checkUnnamed2208(o.items); | 1323 checkUnnamed2242(o.items); |
| 1303 unittest.expect(o.kind, unittest.equals('foo')); | 1324 unittest.expect(o.kind, unittest.equals('foo')); |
| 1304 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1325 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1305 unittest.expect(o.selfLink, unittest.equals('foo')); | 1326 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1306 } | 1327 } |
| 1307 buildCounterBackendServiceList--; | 1328 buildCounterBackendServiceList--; |
| 1308 } | 1329 } |
| 1309 | 1330 |
| 1310 buildUnnamed2209() { | 1331 buildUnnamed2243() { |
| 1311 var o = new core.List<api.BackendService>(); | 1332 var o = new core.List<api.BackendService>(); |
| 1312 o.add(buildBackendService()); | 1333 o.add(buildBackendService()); |
| 1313 o.add(buildBackendService()); | 1334 o.add(buildBackendService()); |
| 1314 return o; | 1335 return o; |
| 1315 } | 1336 } |
| 1316 | 1337 |
| 1317 checkUnnamed2209(core.List<api.BackendService> o) { | 1338 checkUnnamed2243(core.List<api.BackendService> o) { |
| 1318 unittest.expect(o, unittest.hasLength(2)); | 1339 unittest.expect(o, unittest.hasLength(2)); |
| 1319 checkBackendService(o[0]); | 1340 checkBackendService(o[0]); |
| 1320 checkBackendService(o[1]); | 1341 checkBackendService(o[1]); |
| 1321 } | 1342 } |
| 1322 | 1343 |
| 1323 core.int buildCounterBackendServicesScopedListWarningData = 0; | 1344 core.int buildCounterBackendServicesScopedListWarningData = 0; |
| 1324 buildBackendServicesScopedListWarningData() { | 1345 buildBackendServicesScopedListWarningData() { |
| 1325 var o = new api.BackendServicesScopedListWarningData(); | 1346 var o = new api.BackendServicesScopedListWarningData(); |
| 1326 buildCounterBackendServicesScopedListWarningData++; | 1347 buildCounterBackendServicesScopedListWarningData++; |
| 1327 if (buildCounterBackendServicesScopedListWarningData < 3) { | 1348 if (buildCounterBackendServicesScopedListWarningData < 3) { |
| 1328 o.key = "foo"; | 1349 o.key = "foo"; |
| 1329 o.value = "foo"; | 1350 o.value = "foo"; |
| 1330 } | 1351 } |
| 1331 buildCounterBackendServicesScopedListWarningData--; | 1352 buildCounterBackendServicesScopedListWarningData--; |
| 1332 return o; | 1353 return o; |
| 1333 } | 1354 } |
| 1334 | 1355 |
| 1335 checkBackendServicesScopedListWarningData(api.BackendServicesScopedListWarningDa
ta o) { | 1356 checkBackendServicesScopedListWarningData(api.BackendServicesScopedListWarningDa
ta o) { |
| 1336 buildCounterBackendServicesScopedListWarningData++; | 1357 buildCounterBackendServicesScopedListWarningData++; |
| 1337 if (buildCounterBackendServicesScopedListWarningData < 3) { | 1358 if (buildCounterBackendServicesScopedListWarningData < 3) { |
| 1338 unittest.expect(o.key, unittest.equals('foo')); | 1359 unittest.expect(o.key, unittest.equals('foo')); |
| 1339 unittest.expect(o.value, unittest.equals('foo')); | 1360 unittest.expect(o.value, unittest.equals('foo')); |
| 1340 } | 1361 } |
| 1341 buildCounterBackendServicesScopedListWarningData--; | 1362 buildCounterBackendServicesScopedListWarningData--; |
| 1342 } | 1363 } |
| 1343 | 1364 |
| 1344 buildUnnamed2210() { | 1365 buildUnnamed2244() { |
| 1345 var o = new core.List<api.BackendServicesScopedListWarningData>(); | 1366 var o = new core.List<api.BackendServicesScopedListWarningData>(); |
| 1346 o.add(buildBackendServicesScopedListWarningData()); | 1367 o.add(buildBackendServicesScopedListWarningData()); |
| 1347 o.add(buildBackendServicesScopedListWarningData()); | 1368 o.add(buildBackendServicesScopedListWarningData()); |
| 1348 return o; | 1369 return o; |
| 1349 } | 1370 } |
| 1350 | 1371 |
| 1351 checkUnnamed2210(core.List<api.BackendServicesScopedListWarningData> o) { | 1372 checkUnnamed2244(core.List<api.BackendServicesScopedListWarningData> o) { |
| 1352 unittest.expect(o, unittest.hasLength(2)); | 1373 unittest.expect(o, unittest.hasLength(2)); |
| 1353 checkBackendServicesScopedListWarningData(o[0]); | 1374 checkBackendServicesScopedListWarningData(o[0]); |
| 1354 checkBackendServicesScopedListWarningData(o[1]); | 1375 checkBackendServicesScopedListWarningData(o[1]); |
| 1355 } | 1376 } |
| 1356 | 1377 |
| 1357 core.int buildCounterBackendServicesScopedListWarning = 0; | 1378 core.int buildCounterBackendServicesScopedListWarning = 0; |
| 1358 buildBackendServicesScopedListWarning() { | 1379 buildBackendServicesScopedListWarning() { |
| 1359 var o = new api.BackendServicesScopedListWarning(); | 1380 var o = new api.BackendServicesScopedListWarning(); |
| 1360 buildCounterBackendServicesScopedListWarning++; | 1381 buildCounterBackendServicesScopedListWarning++; |
| 1361 if (buildCounterBackendServicesScopedListWarning < 3) { | 1382 if (buildCounterBackendServicesScopedListWarning < 3) { |
| 1362 o.code = "foo"; | 1383 o.code = "foo"; |
| 1363 o.data = buildUnnamed2210(); | 1384 o.data = buildUnnamed2244(); |
| 1364 o.message = "foo"; | 1385 o.message = "foo"; |
| 1365 } | 1386 } |
| 1366 buildCounterBackendServicesScopedListWarning--; | 1387 buildCounterBackendServicesScopedListWarning--; |
| 1367 return o; | 1388 return o; |
| 1368 } | 1389 } |
| 1369 | 1390 |
| 1370 checkBackendServicesScopedListWarning(api.BackendServicesScopedListWarning o) { | 1391 checkBackendServicesScopedListWarning(api.BackendServicesScopedListWarning o) { |
| 1371 buildCounterBackendServicesScopedListWarning++; | 1392 buildCounterBackendServicesScopedListWarning++; |
| 1372 if (buildCounterBackendServicesScopedListWarning < 3) { | 1393 if (buildCounterBackendServicesScopedListWarning < 3) { |
| 1373 unittest.expect(o.code, unittest.equals('foo')); | 1394 unittest.expect(o.code, unittest.equals('foo')); |
| 1374 checkUnnamed2210(o.data); | 1395 checkUnnamed2244(o.data); |
| 1375 unittest.expect(o.message, unittest.equals('foo')); | 1396 unittest.expect(o.message, unittest.equals('foo')); |
| 1376 } | 1397 } |
| 1377 buildCounterBackendServicesScopedListWarning--; | 1398 buildCounterBackendServicesScopedListWarning--; |
| 1378 } | 1399 } |
| 1379 | 1400 |
| 1380 core.int buildCounterBackendServicesScopedList = 0; | 1401 core.int buildCounterBackendServicesScopedList = 0; |
| 1381 buildBackendServicesScopedList() { | 1402 buildBackendServicesScopedList() { |
| 1382 var o = new api.BackendServicesScopedList(); | 1403 var o = new api.BackendServicesScopedList(); |
| 1383 buildCounterBackendServicesScopedList++; | 1404 buildCounterBackendServicesScopedList++; |
| 1384 if (buildCounterBackendServicesScopedList < 3) { | 1405 if (buildCounterBackendServicesScopedList < 3) { |
| 1385 o.backendServices = buildUnnamed2209(); | 1406 o.backendServices = buildUnnamed2243(); |
| 1386 o.warning = buildBackendServicesScopedListWarning(); | 1407 o.warning = buildBackendServicesScopedListWarning(); |
| 1387 } | 1408 } |
| 1388 buildCounterBackendServicesScopedList--; | 1409 buildCounterBackendServicesScopedList--; |
| 1389 return o; | 1410 return o; |
| 1390 } | 1411 } |
| 1391 | 1412 |
| 1392 checkBackendServicesScopedList(api.BackendServicesScopedList o) { | 1413 checkBackendServicesScopedList(api.BackendServicesScopedList o) { |
| 1393 buildCounterBackendServicesScopedList++; | 1414 buildCounterBackendServicesScopedList++; |
| 1394 if (buildCounterBackendServicesScopedList < 3) { | 1415 if (buildCounterBackendServicesScopedList < 3) { |
| 1395 checkUnnamed2209(o.backendServices); | 1416 checkUnnamed2243(o.backendServices); |
| 1396 checkBackendServicesScopedListWarning(o.warning); | 1417 checkBackendServicesScopedListWarning(o.warning); |
| 1397 } | 1418 } |
| 1398 buildCounterBackendServicesScopedList--; | 1419 buildCounterBackendServicesScopedList--; |
| 1399 } | 1420 } |
| 1400 | 1421 |
| 1401 core.int buildCounterCacheInvalidationRule = 0; | 1422 core.int buildCounterCacheInvalidationRule = 0; |
| 1402 buildCacheInvalidationRule() { | 1423 buildCacheInvalidationRule() { |
| 1403 var o = new api.CacheInvalidationRule(); | 1424 var o = new api.CacheInvalidationRule(); |
| 1404 buildCounterCacheInvalidationRule++; | 1425 buildCounterCacheInvalidationRule++; |
| 1405 if (buildCounterCacheInvalidationRule < 3) { | 1426 if (buildCounterCacheInvalidationRule < 3) { |
| 1406 o.host = "foo"; | 1427 o.host = "foo"; |
| 1407 o.path = "foo"; | 1428 o.path = "foo"; |
| 1408 } | 1429 } |
| 1409 buildCounterCacheInvalidationRule--; | 1430 buildCounterCacheInvalidationRule--; |
| 1410 return o; | 1431 return o; |
| 1411 } | 1432 } |
| 1412 | 1433 |
| 1413 checkCacheInvalidationRule(api.CacheInvalidationRule o) { | 1434 checkCacheInvalidationRule(api.CacheInvalidationRule o) { |
| 1414 buildCounterCacheInvalidationRule++; | 1435 buildCounterCacheInvalidationRule++; |
| 1415 if (buildCounterCacheInvalidationRule < 3) { | 1436 if (buildCounterCacheInvalidationRule < 3) { |
| 1416 unittest.expect(o.host, unittest.equals('foo')); | 1437 unittest.expect(o.host, unittest.equals('foo')); |
| 1417 unittest.expect(o.path, unittest.equals('foo')); | 1438 unittest.expect(o.path, unittest.equals('foo')); |
| 1418 } | 1439 } |
| 1419 buildCounterCacheInvalidationRule--; | 1440 buildCounterCacheInvalidationRule--; |
| 1420 } | 1441 } |
| 1421 | 1442 |
| 1422 buildUnnamed2211() { | 1443 buildUnnamed2245() { |
| 1423 var o = new core.List<core.String>(); | 1444 var o = new core.List<core.String>(); |
| 1424 o.add("foo"); | 1445 o.add("foo"); |
| 1425 o.add("foo"); | 1446 o.add("foo"); |
| 1426 return o; | 1447 return o; |
| 1427 } | 1448 } |
| 1428 | 1449 |
| 1429 checkUnnamed2211(core.List<core.String> o) { | 1450 checkUnnamed2245(core.List<core.String> o) { |
| 1430 unittest.expect(o, unittest.hasLength(2)); | 1451 unittest.expect(o, unittest.hasLength(2)); |
| 1431 unittest.expect(o[0], unittest.equals('foo')); | 1452 unittest.expect(o[0], unittest.equals('foo')); |
| 1432 unittest.expect(o[1], unittest.equals('foo')); | 1453 unittest.expect(o[1], unittest.equals('foo')); |
| 1433 } | 1454 } |
| 1434 | 1455 |
| 1435 buildUnnamed2212() { | 1456 buildUnnamed2246() { |
| 1436 var o = new core.List<core.String>(); | 1457 var o = new core.List<core.String>(); |
| 1437 o.add("foo"); | 1458 o.add("foo"); |
| 1438 o.add("foo"); | 1459 o.add("foo"); |
| 1439 return o; | 1460 return o; |
| 1440 } | 1461 } |
| 1441 | 1462 |
| 1442 checkUnnamed2212(core.List<core.String> o) { | 1463 checkUnnamed2246(core.List<core.String> o) { |
| 1443 unittest.expect(o, unittest.hasLength(2)); | 1464 unittest.expect(o, unittest.hasLength(2)); |
| 1444 unittest.expect(o[0], unittest.equals('foo')); | 1465 unittest.expect(o[0], unittest.equals('foo')); |
| 1445 unittest.expect(o[1], unittest.equals('foo')); | 1466 unittest.expect(o[1], unittest.equals('foo')); |
| 1446 } | 1467 } |
| 1447 | 1468 |
| 1448 core.int buildCounterCacheKeyPolicy = 0; | 1469 core.int buildCounterCacheKeyPolicy = 0; |
| 1449 buildCacheKeyPolicy() { | 1470 buildCacheKeyPolicy() { |
| 1450 var o = new api.CacheKeyPolicy(); | 1471 var o = new api.CacheKeyPolicy(); |
| 1451 buildCounterCacheKeyPolicy++; | 1472 buildCounterCacheKeyPolicy++; |
| 1452 if (buildCounterCacheKeyPolicy < 3) { | 1473 if (buildCounterCacheKeyPolicy < 3) { |
| 1453 o.includeHost = true; | 1474 o.includeHost = true; |
| 1454 o.includeProtocol = true; | 1475 o.includeProtocol = true; |
| 1455 o.includeQueryString = true; | 1476 o.includeQueryString = true; |
| 1456 o.queryStringBlacklist = buildUnnamed2211(); | 1477 o.queryStringBlacklist = buildUnnamed2245(); |
| 1457 o.queryStringWhitelist = buildUnnamed2212(); | 1478 o.queryStringWhitelist = buildUnnamed2246(); |
| 1458 } | 1479 } |
| 1459 buildCounterCacheKeyPolicy--; | 1480 buildCounterCacheKeyPolicy--; |
| 1460 return o; | 1481 return o; |
| 1461 } | 1482 } |
| 1462 | 1483 |
| 1463 checkCacheKeyPolicy(api.CacheKeyPolicy o) { | 1484 checkCacheKeyPolicy(api.CacheKeyPolicy o) { |
| 1464 buildCounterCacheKeyPolicy++; | 1485 buildCounterCacheKeyPolicy++; |
| 1465 if (buildCounterCacheKeyPolicy < 3) { | 1486 if (buildCounterCacheKeyPolicy < 3) { |
| 1466 unittest.expect(o.includeHost, unittest.isTrue); | 1487 unittest.expect(o.includeHost, unittest.isTrue); |
| 1467 unittest.expect(o.includeProtocol, unittest.isTrue); | 1488 unittest.expect(o.includeProtocol, unittest.isTrue); |
| 1468 unittest.expect(o.includeQueryString, unittest.isTrue); | 1489 unittest.expect(o.includeQueryString, unittest.isTrue); |
| 1469 checkUnnamed2211(o.queryStringBlacklist); | 1490 checkUnnamed2245(o.queryStringBlacklist); |
| 1470 checkUnnamed2212(o.queryStringWhitelist); | 1491 checkUnnamed2246(o.queryStringWhitelist); |
| 1471 } | 1492 } |
| 1472 buildCounterCacheKeyPolicy--; | 1493 buildCounterCacheKeyPolicy--; |
| 1473 } | 1494 } |
| 1474 | 1495 |
| 1475 buildUnnamed2213() { | 1496 buildUnnamed2247() { |
| 1476 var o = new core.List<api.ResourceCommitment>(); | 1497 var o = new core.List<api.ResourceCommitment>(); |
| 1477 o.add(buildResourceCommitment()); | 1498 o.add(buildResourceCommitment()); |
| 1478 o.add(buildResourceCommitment()); | 1499 o.add(buildResourceCommitment()); |
| 1479 return o; | 1500 return o; |
| 1480 } | 1501 } |
| 1481 | 1502 |
| 1482 checkUnnamed2213(core.List<api.ResourceCommitment> o) { | 1503 checkUnnamed2247(core.List<api.ResourceCommitment> o) { |
| 1483 unittest.expect(o, unittest.hasLength(2)); | 1504 unittest.expect(o, unittest.hasLength(2)); |
| 1484 checkResourceCommitment(o[0]); | 1505 checkResourceCommitment(o[0]); |
| 1485 checkResourceCommitment(o[1]); | 1506 checkResourceCommitment(o[1]); |
| 1486 } | 1507 } |
| 1487 | 1508 |
| 1488 core.int buildCounterCommitment = 0; | 1509 core.int buildCounterCommitment = 0; |
| 1489 buildCommitment() { | 1510 buildCommitment() { |
| 1490 var o = new api.Commitment(); | 1511 var o = new api.Commitment(); |
| 1491 buildCounterCommitment++; | 1512 buildCounterCommitment++; |
| 1492 if (buildCounterCommitment < 3) { | 1513 if (buildCounterCommitment < 3) { |
| 1493 o.creationTimestamp = "foo"; | 1514 o.creationTimestamp = "foo"; |
| 1494 o.description = "foo"; | 1515 o.description = "foo"; |
| 1495 o.endTimestamp = "foo"; | 1516 o.endTimestamp = "foo"; |
| 1496 o.id = "foo"; | 1517 o.id = "foo"; |
| 1497 o.kind = "foo"; | 1518 o.kind = "foo"; |
| 1498 o.name = "foo"; | 1519 o.name = "foo"; |
| 1499 o.plan = "foo"; | 1520 o.plan = "foo"; |
| 1500 o.region = "foo"; | 1521 o.region = "foo"; |
| 1501 o.resources = buildUnnamed2213(); | 1522 o.resources = buildUnnamed2247(); |
| 1502 o.selfLink = "foo"; | 1523 o.selfLink = "foo"; |
| 1503 o.startTimestamp = "foo"; | 1524 o.startTimestamp = "foo"; |
| 1504 o.status = "foo"; | 1525 o.status = "foo"; |
| 1505 o.statusMessage = "foo"; | 1526 o.statusMessage = "foo"; |
| 1506 } | 1527 } |
| 1507 buildCounterCommitment--; | 1528 buildCounterCommitment--; |
| 1508 return o; | 1529 return o; |
| 1509 } | 1530 } |
| 1510 | 1531 |
| 1511 checkCommitment(api.Commitment o) { | 1532 checkCommitment(api.Commitment o) { |
| 1512 buildCounterCommitment++; | 1533 buildCounterCommitment++; |
| 1513 if (buildCounterCommitment < 3) { | 1534 if (buildCounterCommitment < 3) { |
| 1514 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1535 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1515 unittest.expect(o.description, unittest.equals('foo')); | 1536 unittest.expect(o.description, unittest.equals('foo')); |
| 1516 unittest.expect(o.endTimestamp, unittest.equals('foo')); | 1537 unittest.expect(o.endTimestamp, unittest.equals('foo')); |
| 1517 unittest.expect(o.id, unittest.equals('foo')); | 1538 unittest.expect(o.id, unittest.equals('foo')); |
| 1518 unittest.expect(o.kind, unittest.equals('foo')); | 1539 unittest.expect(o.kind, unittest.equals('foo')); |
| 1519 unittest.expect(o.name, unittest.equals('foo')); | 1540 unittest.expect(o.name, unittest.equals('foo')); |
| 1520 unittest.expect(o.plan, unittest.equals('foo')); | 1541 unittest.expect(o.plan, unittest.equals('foo')); |
| 1521 unittest.expect(o.region, unittest.equals('foo')); | 1542 unittest.expect(o.region, unittest.equals('foo')); |
| 1522 checkUnnamed2213(o.resources); | 1543 checkUnnamed2247(o.resources); |
| 1523 unittest.expect(o.selfLink, unittest.equals('foo')); | 1544 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1524 unittest.expect(o.startTimestamp, unittest.equals('foo')); | 1545 unittest.expect(o.startTimestamp, unittest.equals('foo')); |
| 1525 unittest.expect(o.status, unittest.equals('foo')); | 1546 unittest.expect(o.status, unittest.equals('foo')); |
| 1526 unittest.expect(o.statusMessage, unittest.equals('foo')); | 1547 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 1527 } | 1548 } |
| 1528 buildCounterCommitment--; | 1549 buildCounterCommitment--; |
| 1529 } | 1550 } |
| 1530 | 1551 |
| 1531 buildUnnamed2214() { | 1552 buildUnnamed2248() { |
| 1532 var o = new core.Map<core.String, api.CommitmentsScopedList>(); | 1553 var o = new core.Map<core.String, api.CommitmentsScopedList>(); |
| 1533 o["x"] = buildCommitmentsScopedList(); | 1554 o["x"] = buildCommitmentsScopedList(); |
| 1534 o["y"] = buildCommitmentsScopedList(); | 1555 o["y"] = buildCommitmentsScopedList(); |
| 1535 return o; | 1556 return o; |
| 1536 } | 1557 } |
| 1537 | 1558 |
| 1538 checkUnnamed2214(core.Map<core.String, api.CommitmentsScopedList> o) { | 1559 checkUnnamed2248(core.Map<core.String, api.CommitmentsScopedList> o) { |
| 1539 unittest.expect(o, unittest.hasLength(2)); | 1560 unittest.expect(o, unittest.hasLength(2)); |
| 1540 checkCommitmentsScopedList(o["x"]); | 1561 checkCommitmentsScopedList(o["x"]); |
| 1541 checkCommitmentsScopedList(o["y"]); | 1562 checkCommitmentsScopedList(o["y"]); |
| 1542 } | 1563 } |
| 1543 | 1564 |
| 1544 core.int buildCounterCommitmentAggregatedList = 0; | 1565 core.int buildCounterCommitmentAggregatedList = 0; |
| 1545 buildCommitmentAggregatedList() { | 1566 buildCommitmentAggregatedList() { |
| 1546 var o = new api.CommitmentAggregatedList(); | 1567 var o = new api.CommitmentAggregatedList(); |
| 1547 buildCounterCommitmentAggregatedList++; | 1568 buildCounterCommitmentAggregatedList++; |
| 1548 if (buildCounterCommitmentAggregatedList < 3) { | 1569 if (buildCounterCommitmentAggregatedList < 3) { |
| 1549 o.id = "foo"; | 1570 o.id = "foo"; |
| 1550 o.items = buildUnnamed2214(); | 1571 o.items = buildUnnamed2248(); |
| 1551 o.kind = "foo"; | 1572 o.kind = "foo"; |
| 1552 o.nextPageToken = "foo"; | 1573 o.nextPageToken = "foo"; |
| 1553 o.selfLink = "foo"; | 1574 o.selfLink = "foo"; |
| 1554 } | 1575 } |
| 1555 buildCounterCommitmentAggregatedList--; | 1576 buildCounterCommitmentAggregatedList--; |
| 1556 return o; | 1577 return o; |
| 1557 } | 1578 } |
| 1558 | 1579 |
| 1559 checkCommitmentAggregatedList(api.CommitmentAggregatedList o) { | 1580 checkCommitmentAggregatedList(api.CommitmentAggregatedList o) { |
| 1560 buildCounterCommitmentAggregatedList++; | 1581 buildCounterCommitmentAggregatedList++; |
| 1561 if (buildCounterCommitmentAggregatedList < 3) { | 1582 if (buildCounterCommitmentAggregatedList < 3) { |
| 1562 unittest.expect(o.id, unittest.equals('foo')); | 1583 unittest.expect(o.id, unittest.equals('foo')); |
| 1563 checkUnnamed2214(o.items); | 1584 checkUnnamed2248(o.items); |
| 1564 unittest.expect(o.kind, unittest.equals('foo')); | 1585 unittest.expect(o.kind, unittest.equals('foo')); |
| 1565 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1586 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1566 unittest.expect(o.selfLink, unittest.equals('foo')); | 1587 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1567 } | 1588 } |
| 1568 buildCounterCommitmentAggregatedList--; | 1589 buildCounterCommitmentAggregatedList--; |
| 1569 } | 1590 } |
| 1570 | 1591 |
| 1571 buildUnnamed2215() { | 1592 buildUnnamed2249() { |
| 1572 var o = new core.List<api.Commitment>(); | 1593 var o = new core.List<api.Commitment>(); |
| 1573 o.add(buildCommitment()); | 1594 o.add(buildCommitment()); |
| 1574 o.add(buildCommitment()); | 1595 o.add(buildCommitment()); |
| 1575 return o; | 1596 return o; |
| 1576 } | 1597 } |
| 1577 | 1598 |
| 1578 checkUnnamed2215(core.List<api.Commitment> o) { | 1599 checkUnnamed2249(core.List<api.Commitment> o) { |
| 1579 unittest.expect(o, unittest.hasLength(2)); | 1600 unittest.expect(o, unittest.hasLength(2)); |
| 1580 checkCommitment(o[0]); | 1601 checkCommitment(o[0]); |
| 1581 checkCommitment(o[1]); | 1602 checkCommitment(o[1]); |
| 1582 } | 1603 } |
| 1583 | 1604 |
| 1584 core.int buildCounterCommitmentList = 0; | 1605 core.int buildCounterCommitmentList = 0; |
| 1585 buildCommitmentList() { | 1606 buildCommitmentList() { |
| 1586 var o = new api.CommitmentList(); | 1607 var o = new api.CommitmentList(); |
| 1587 buildCounterCommitmentList++; | 1608 buildCounterCommitmentList++; |
| 1588 if (buildCounterCommitmentList < 3) { | 1609 if (buildCounterCommitmentList < 3) { |
| 1589 o.id = "foo"; | 1610 o.id = "foo"; |
| 1590 o.items = buildUnnamed2215(); | 1611 o.items = buildUnnamed2249(); |
| 1591 o.kind = "foo"; | 1612 o.kind = "foo"; |
| 1592 o.nextPageToken = "foo"; | 1613 o.nextPageToken = "foo"; |
| 1593 o.selfLink = "foo"; | 1614 o.selfLink = "foo"; |
| 1594 } | 1615 } |
| 1595 buildCounterCommitmentList--; | 1616 buildCounterCommitmentList--; |
| 1596 return o; | 1617 return o; |
| 1597 } | 1618 } |
| 1598 | 1619 |
| 1599 checkCommitmentList(api.CommitmentList o) { | 1620 checkCommitmentList(api.CommitmentList o) { |
| 1600 buildCounterCommitmentList++; | 1621 buildCounterCommitmentList++; |
| 1601 if (buildCounterCommitmentList < 3) { | 1622 if (buildCounterCommitmentList < 3) { |
| 1602 unittest.expect(o.id, unittest.equals('foo')); | 1623 unittest.expect(o.id, unittest.equals('foo')); |
| 1603 checkUnnamed2215(o.items); | 1624 checkUnnamed2249(o.items); |
| 1604 unittest.expect(o.kind, unittest.equals('foo')); | 1625 unittest.expect(o.kind, unittest.equals('foo')); |
| 1605 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1626 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1606 unittest.expect(o.selfLink, unittest.equals('foo')); | 1627 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1607 } | 1628 } |
| 1608 buildCounterCommitmentList--; | 1629 buildCounterCommitmentList--; |
| 1609 } | 1630 } |
| 1610 | 1631 |
| 1611 buildUnnamed2216() { | 1632 buildUnnamed2250() { |
| 1612 var o = new core.List<api.Commitment>(); | 1633 var o = new core.List<api.Commitment>(); |
| 1613 o.add(buildCommitment()); | 1634 o.add(buildCommitment()); |
| 1614 o.add(buildCommitment()); | 1635 o.add(buildCommitment()); |
| 1615 return o; | 1636 return o; |
| 1616 } | 1637 } |
| 1617 | 1638 |
| 1618 checkUnnamed2216(core.List<api.Commitment> o) { | 1639 checkUnnamed2250(core.List<api.Commitment> o) { |
| 1619 unittest.expect(o, unittest.hasLength(2)); | 1640 unittest.expect(o, unittest.hasLength(2)); |
| 1620 checkCommitment(o[0]); | 1641 checkCommitment(o[0]); |
| 1621 checkCommitment(o[1]); | 1642 checkCommitment(o[1]); |
| 1622 } | 1643 } |
| 1623 | 1644 |
| 1624 core.int buildCounterCommitmentsScopedListWarningData = 0; | 1645 core.int buildCounterCommitmentsScopedListWarningData = 0; |
| 1625 buildCommitmentsScopedListWarningData() { | 1646 buildCommitmentsScopedListWarningData() { |
| 1626 var o = new api.CommitmentsScopedListWarningData(); | 1647 var o = new api.CommitmentsScopedListWarningData(); |
| 1627 buildCounterCommitmentsScopedListWarningData++; | 1648 buildCounterCommitmentsScopedListWarningData++; |
| 1628 if (buildCounterCommitmentsScopedListWarningData < 3) { | 1649 if (buildCounterCommitmentsScopedListWarningData < 3) { |
| 1629 o.key = "foo"; | 1650 o.key = "foo"; |
| 1630 o.value = "foo"; | 1651 o.value = "foo"; |
| 1631 } | 1652 } |
| 1632 buildCounterCommitmentsScopedListWarningData--; | 1653 buildCounterCommitmentsScopedListWarningData--; |
| 1633 return o; | 1654 return o; |
| 1634 } | 1655 } |
| 1635 | 1656 |
| 1636 checkCommitmentsScopedListWarningData(api.CommitmentsScopedListWarningData o) { | 1657 checkCommitmentsScopedListWarningData(api.CommitmentsScopedListWarningData o) { |
| 1637 buildCounterCommitmentsScopedListWarningData++; | 1658 buildCounterCommitmentsScopedListWarningData++; |
| 1638 if (buildCounterCommitmentsScopedListWarningData < 3) { | 1659 if (buildCounterCommitmentsScopedListWarningData < 3) { |
| 1639 unittest.expect(o.key, unittest.equals('foo')); | 1660 unittest.expect(o.key, unittest.equals('foo')); |
| 1640 unittest.expect(o.value, unittest.equals('foo')); | 1661 unittest.expect(o.value, unittest.equals('foo')); |
| 1641 } | 1662 } |
| 1642 buildCounterCommitmentsScopedListWarningData--; | 1663 buildCounterCommitmentsScopedListWarningData--; |
| 1643 } | 1664 } |
| 1644 | 1665 |
| 1645 buildUnnamed2217() { | 1666 buildUnnamed2251() { |
| 1646 var o = new core.List<api.CommitmentsScopedListWarningData>(); | 1667 var o = new core.List<api.CommitmentsScopedListWarningData>(); |
| 1647 o.add(buildCommitmentsScopedListWarningData()); | 1668 o.add(buildCommitmentsScopedListWarningData()); |
| 1648 o.add(buildCommitmentsScopedListWarningData()); | 1669 o.add(buildCommitmentsScopedListWarningData()); |
| 1649 return o; | 1670 return o; |
| 1650 } | 1671 } |
| 1651 | 1672 |
| 1652 checkUnnamed2217(core.List<api.CommitmentsScopedListWarningData> o) { | 1673 checkUnnamed2251(core.List<api.CommitmentsScopedListWarningData> o) { |
| 1653 unittest.expect(o, unittest.hasLength(2)); | 1674 unittest.expect(o, unittest.hasLength(2)); |
| 1654 checkCommitmentsScopedListWarningData(o[0]); | 1675 checkCommitmentsScopedListWarningData(o[0]); |
| 1655 checkCommitmentsScopedListWarningData(o[1]); | 1676 checkCommitmentsScopedListWarningData(o[1]); |
| 1656 } | 1677 } |
| 1657 | 1678 |
| 1658 core.int buildCounterCommitmentsScopedListWarning = 0; | 1679 core.int buildCounterCommitmentsScopedListWarning = 0; |
| 1659 buildCommitmentsScopedListWarning() { | 1680 buildCommitmentsScopedListWarning() { |
| 1660 var o = new api.CommitmentsScopedListWarning(); | 1681 var o = new api.CommitmentsScopedListWarning(); |
| 1661 buildCounterCommitmentsScopedListWarning++; | 1682 buildCounterCommitmentsScopedListWarning++; |
| 1662 if (buildCounterCommitmentsScopedListWarning < 3) { | 1683 if (buildCounterCommitmentsScopedListWarning < 3) { |
| 1663 o.code = "foo"; | 1684 o.code = "foo"; |
| 1664 o.data = buildUnnamed2217(); | 1685 o.data = buildUnnamed2251(); |
| 1665 o.message = "foo"; | 1686 o.message = "foo"; |
| 1666 } | 1687 } |
| 1667 buildCounterCommitmentsScopedListWarning--; | 1688 buildCounterCommitmentsScopedListWarning--; |
| 1668 return o; | 1689 return o; |
| 1669 } | 1690 } |
| 1670 | 1691 |
| 1671 checkCommitmentsScopedListWarning(api.CommitmentsScopedListWarning o) { | 1692 checkCommitmentsScopedListWarning(api.CommitmentsScopedListWarning o) { |
| 1672 buildCounterCommitmentsScopedListWarning++; | 1693 buildCounterCommitmentsScopedListWarning++; |
| 1673 if (buildCounterCommitmentsScopedListWarning < 3) { | 1694 if (buildCounterCommitmentsScopedListWarning < 3) { |
| 1674 unittest.expect(o.code, unittest.equals('foo')); | 1695 unittest.expect(o.code, unittest.equals('foo')); |
| 1675 checkUnnamed2217(o.data); | 1696 checkUnnamed2251(o.data); |
| 1676 unittest.expect(o.message, unittest.equals('foo')); | 1697 unittest.expect(o.message, unittest.equals('foo')); |
| 1677 } | 1698 } |
| 1678 buildCounterCommitmentsScopedListWarning--; | 1699 buildCounterCommitmentsScopedListWarning--; |
| 1679 } | 1700 } |
| 1680 | 1701 |
| 1681 core.int buildCounterCommitmentsScopedList = 0; | 1702 core.int buildCounterCommitmentsScopedList = 0; |
| 1682 buildCommitmentsScopedList() { | 1703 buildCommitmentsScopedList() { |
| 1683 var o = new api.CommitmentsScopedList(); | 1704 var o = new api.CommitmentsScopedList(); |
| 1684 buildCounterCommitmentsScopedList++; | 1705 buildCounterCommitmentsScopedList++; |
| 1685 if (buildCounterCommitmentsScopedList < 3) { | 1706 if (buildCounterCommitmentsScopedList < 3) { |
| 1686 o.commitments = buildUnnamed2216(); | 1707 o.commitments = buildUnnamed2250(); |
| 1687 o.warning = buildCommitmentsScopedListWarning(); | 1708 o.warning = buildCommitmentsScopedListWarning(); |
| 1688 } | 1709 } |
| 1689 buildCounterCommitmentsScopedList--; | 1710 buildCounterCommitmentsScopedList--; |
| 1690 return o; | 1711 return o; |
| 1691 } | 1712 } |
| 1692 | 1713 |
| 1693 checkCommitmentsScopedList(api.CommitmentsScopedList o) { | 1714 checkCommitmentsScopedList(api.CommitmentsScopedList o) { |
| 1694 buildCounterCommitmentsScopedList++; | 1715 buildCounterCommitmentsScopedList++; |
| 1695 if (buildCounterCommitmentsScopedList < 3) { | 1716 if (buildCounterCommitmentsScopedList < 3) { |
| 1696 checkUnnamed2216(o.commitments); | 1717 checkUnnamed2250(o.commitments); |
| 1697 checkCommitmentsScopedListWarning(o.warning); | 1718 checkCommitmentsScopedListWarning(o.warning); |
| 1698 } | 1719 } |
| 1699 buildCounterCommitmentsScopedList--; | 1720 buildCounterCommitmentsScopedList--; |
| 1700 } | 1721 } |
| 1701 | 1722 |
| 1702 core.int buildCounterConnectionDraining = 0; | 1723 core.int buildCounterConnectionDraining = 0; |
| 1703 buildConnectionDraining() { | 1724 buildConnectionDraining() { |
| 1704 var o = new api.ConnectionDraining(); | 1725 var o = new api.ConnectionDraining(); |
| 1705 buildCounterConnectionDraining++; | 1726 buildCounterConnectionDraining++; |
| 1706 if (buildCounterConnectionDraining < 3) { | 1727 if (buildCounterConnectionDraining < 3) { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1780 if (buildCounterDeprecationStatus < 3) { | 1801 if (buildCounterDeprecationStatus < 3) { |
| 1781 unittest.expect(o.deleted, unittest.equals('foo')); | 1802 unittest.expect(o.deleted, unittest.equals('foo')); |
| 1782 unittest.expect(o.deprecated, unittest.equals('foo')); | 1803 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 1783 unittest.expect(o.obsolete, unittest.equals('foo')); | 1804 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 1784 unittest.expect(o.replacement, unittest.equals('foo')); | 1805 unittest.expect(o.replacement, unittest.equals('foo')); |
| 1785 unittest.expect(o.state, unittest.equals('foo')); | 1806 unittest.expect(o.state, unittest.equals('foo')); |
| 1786 } | 1807 } |
| 1787 buildCounterDeprecationStatus--; | 1808 buildCounterDeprecationStatus--; |
| 1788 } | 1809 } |
| 1789 | 1810 |
| 1790 buildUnnamed2218() { | 1811 buildUnnamed2252() { |
| 1791 var o = new core.Map<core.String, core.String>(); | 1812 var o = new core.Map<core.String, core.String>(); |
| 1792 o["x"] = "foo"; | 1813 o["x"] = "foo"; |
| 1793 o["y"] = "foo"; | 1814 o["y"] = "foo"; |
| 1794 return o; | 1815 return o; |
| 1795 } | 1816 } |
| 1796 | 1817 |
| 1797 checkUnnamed2218(core.Map<core.String, core.String> o) { | 1818 checkUnnamed2252(core.Map<core.String, core.String> o) { |
| 1798 unittest.expect(o, unittest.hasLength(2)); | 1819 unittest.expect(o, unittest.hasLength(2)); |
| 1799 unittest.expect(o["x"], unittest.equals('foo')); | 1820 unittest.expect(o["x"], unittest.equals('foo')); |
| 1800 unittest.expect(o["y"], unittest.equals('foo')); | 1821 unittest.expect(o["y"], unittest.equals('foo')); |
| 1801 } | 1822 } |
| 1802 | 1823 |
| 1803 buildUnnamed2219() { | 1824 buildUnnamed2253() { |
| 1804 var o = new core.List<core.String>(); | 1825 var o = new core.List<core.String>(); |
| 1805 o.add("foo"); | 1826 o.add("foo"); |
| 1806 o.add("foo"); | 1827 o.add("foo"); |
| 1807 return o; | 1828 return o; |
| 1808 } | 1829 } |
| 1809 | 1830 |
| 1810 checkUnnamed2219(core.List<core.String> o) { | 1831 checkUnnamed2253(core.List<core.String> o) { |
| 1811 unittest.expect(o, unittest.hasLength(2)); | 1832 unittest.expect(o, unittest.hasLength(2)); |
| 1812 unittest.expect(o[0], unittest.equals('foo')); | 1833 unittest.expect(o[0], unittest.equals('foo')); |
| 1813 unittest.expect(o[1], unittest.equals('foo')); | 1834 unittest.expect(o[1], unittest.equals('foo')); |
| 1814 } | 1835 } |
| 1815 | 1836 |
| 1816 buildUnnamed2220() { | 1837 buildUnnamed2254() { |
| 1817 var o = new core.List<core.String>(); | 1838 var o = new core.List<core.String>(); |
| 1818 o.add("foo"); | 1839 o.add("foo"); |
| 1819 o.add("foo"); | 1840 o.add("foo"); |
| 1820 return o; | 1841 return o; |
| 1821 } | 1842 } |
| 1822 | 1843 |
| 1823 checkUnnamed2220(core.List<core.String> o) { | 1844 checkUnnamed2254(core.List<core.String> o) { |
| 1824 unittest.expect(o, unittest.hasLength(2)); | 1845 unittest.expect(o, unittest.hasLength(2)); |
| 1825 unittest.expect(o[0], unittest.equals('foo')); | 1846 unittest.expect(o[0], unittest.equals('foo')); |
| 1826 unittest.expect(o[1], unittest.equals('foo')); | 1847 unittest.expect(o[1], unittest.equals('foo')); |
| 1827 } | 1848 } |
| 1828 | 1849 |
| 1829 core.int buildCounterDisk = 0; | 1850 core.int buildCounterDisk = 0; |
| 1830 buildDisk() { | 1851 buildDisk() { |
| 1831 var o = new api.Disk(); | 1852 var o = new api.Disk(); |
| 1832 buildCounterDisk++; | 1853 buildCounterDisk++; |
| 1833 if (buildCounterDisk < 3) { | 1854 if (buildCounterDisk < 3) { |
| 1834 o.creationTimestamp = "foo"; | 1855 o.creationTimestamp = "foo"; |
| 1835 o.description = "foo"; | 1856 o.description = "foo"; |
| 1836 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 1857 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 1837 o.id = "foo"; | 1858 o.id = "foo"; |
| 1838 o.kind = "foo"; | 1859 o.kind = "foo"; |
| 1839 o.labelFingerprint = "foo"; | 1860 o.labelFingerprint = "foo"; |
| 1840 o.labels = buildUnnamed2218(); | 1861 o.labels = buildUnnamed2252(); |
| 1841 o.lastAttachTimestamp = "foo"; | 1862 o.lastAttachTimestamp = "foo"; |
| 1842 o.lastDetachTimestamp = "foo"; | 1863 o.lastDetachTimestamp = "foo"; |
| 1843 o.licenses = buildUnnamed2219(); | 1864 o.licenses = buildUnnamed2253(); |
| 1844 o.name = "foo"; | 1865 o.name = "foo"; |
| 1845 o.options = "foo"; | 1866 o.options = "foo"; |
| 1846 o.selfLink = "foo"; | 1867 o.selfLink = "foo"; |
| 1847 o.sizeGb = "foo"; | 1868 o.sizeGb = "foo"; |
| 1848 o.sourceImage = "foo"; | 1869 o.sourceImage = "foo"; |
| 1849 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); | 1870 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); |
| 1850 o.sourceImageId = "foo"; | 1871 o.sourceImageId = "foo"; |
| 1851 o.sourceSnapshot = "foo"; | 1872 o.sourceSnapshot = "foo"; |
| 1852 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); | 1873 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 1853 o.sourceSnapshotId = "foo"; | 1874 o.sourceSnapshotId = "foo"; |
| 1854 o.status = "foo"; | 1875 o.status = "foo"; |
| 1855 o.type = "foo"; | 1876 o.type = "foo"; |
| 1856 o.users = buildUnnamed2220(); | 1877 o.users = buildUnnamed2254(); |
| 1857 o.zone = "foo"; | 1878 o.zone = "foo"; |
| 1858 } | 1879 } |
| 1859 buildCounterDisk--; | 1880 buildCounterDisk--; |
| 1860 return o; | 1881 return o; |
| 1861 } | 1882 } |
| 1862 | 1883 |
| 1863 checkDisk(api.Disk o) { | 1884 checkDisk(api.Disk o) { |
| 1864 buildCounterDisk++; | 1885 buildCounterDisk++; |
| 1865 if (buildCounterDisk < 3) { | 1886 if (buildCounterDisk < 3) { |
| 1866 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1887 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1867 unittest.expect(o.description, unittest.equals('foo')); | 1888 unittest.expect(o.description, unittest.equals('foo')); |
| 1868 checkCustomerEncryptionKey(o.diskEncryptionKey); | 1889 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 1869 unittest.expect(o.id, unittest.equals('foo')); | 1890 unittest.expect(o.id, unittest.equals('foo')); |
| 1870 unittest.expect(o.kind, unittest.equals('foo')); | 1891 unittest.expect(o.kind, unittest.equals('foo')); |
| 1871 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 1892 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 1872 checkUnnamed2218(o.labels); | 1893 checkUnnamed2252(o.labels); |
| 1873 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); | 1894 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); |
| 1874 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); | 1895 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); |
| 1875 checkUnnamed2219(o.licenses); | 1896 checkUnnamed2253(o.licenses); |
| 1876 unittest.expect(o.name, unittest.equals('foo')); | 1897 unittest.expect(o.name, unittest.equals('foo')); |
| 1877 unittest.expect(o.options, unittest.equals('foo')); | 1898 unittest.expect(o.options, unittest.equals('foo')); |
| 1878 unittest.expect(o.selfLink, unittest.equals('foo')); | 1899 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1879 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1900 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1880 unittest.expect(o.sourceImage, unittest.equals('foo')); | 1901 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 1881 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); | 1902 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); |
| 1882 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 1903 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 1883 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 1904 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 1884 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); | 1905 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); |
| 1885 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 1906 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 1886 unittest.expect(o.status, unittest.equals('foo')); | 1907 unittest.expect(o.status, unittest.equals('foo')); |
| 1887 unittest.expect(o.type, unittest.equals('foo')); | 1908 unittest.expect(o.type, unittest.equals('foo')); |
| 1888 checkUnnamed2220(o.users); | 1909 checkUnnamed2254(o.users); |
| 1889 unittest.expect(o.zone, unittest.equals('foo')); | 1910 unittest.expect(o.zone, unittest.equals('foo')); |
| 1890 } | 1911 } |
| 1891 buildCounterDisk--; | 1912 buildCounterDisk--; |
| 1892 } | 1913 } |
| 1893 | 1914 |
| 1894 buildUnnamed2221() { | 1915 buildUnnamed2255() { |
| 1895 var o = new core.Map<core.String, api.DisksScopedList>(); | 1916 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 1896 o["x"] = buildDisksScopedList(); | 1917 o["x"] = buildDisksScopedList(); |
| 1897 o["y"] = buildDisksScopedList(); | 1918 o["y"] = buildDisksScopedList(); |
| 1898 return o; | 1919 return o; |
| 1899 } | 1920 } |
| 1900 | 1921 |
| 1901 checkUnnamed2221(core.Map<core.String, api.DisksScopedList> o) { | 1922 checkUnnamed2255(core.Map<core.String, api.DisksScopedList> o) { |
| 1902 unittest.expect(o, unittest.hasLength(2)); | 1923 unittest.expect(o, unittest.hasLength(2)); |
| 1903 checkDisksScopedList(o["x"]); | 1924 checkDisksScopedList(o["x"]); |
| 1904 checkDisksScopedList(o["y"]); | 1925 checkDisksScopedList(o["y"]); |
| 1905 } | 1926 } |
| 1906 | 1927 |
| 1907 core.int buildCounterDiskAggregatedList = 0; | 1928 core.int buildCounterDiskAggregatedList = 0; |
| 1908 buildDiskAggregatedList() { | 1929 buildDiskAggregatedList() { |
| 1909 var o = new api.DiskAggregatedList(); | 1930 var o = new api.DiskAggregatedList(); |
| 1910 buildCounterDiskAggregatedList++; | 1931 buildCounterDiskAggregatedList++; |
| 1911 if (buildCounterDiskAggregatedList < 3) { | 1932 if (buildCounterDiskAggregatedList < 3) { |
| 1912 o.id = "foo"; | 1933 o.id = "foo"; |
| 1913 o.items = buildUnnamed2221(); | 1934 o.items = buildUnnamed2255(); |
| 1914 o.kind = "foo"; | 1935 o.kind = "foo"; |
| 1915 o.nextPageToken = "foo"; | 1936 o.nextPageToken = "foo"; |
| 1916 o.selfLink = "foo"; | 1937 o.selfLink = "foo"; |
| 1917 } | 1938 } |
| 1918 buildCounterDiskAggregatedList--; | 1939 buildCounterDiskAggregatedList--; |
| 1919 return o; | 1940 return o; |
| 1920 } | 1941 } |
| 1921 | 1942 |
| 1922 checkDiskAggregatedList(api.DiskAggregatedList o) { | 1943 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 1923 buildCounterDiskAggregatedList++; | 1944 buildCounterDiskAggregatedList++; |
| 1924 if (buildCounterDiskAggregatedList < 3) { | 1945 if (buildCounterDiskAggregatedList < 3) { |
| 1925 unittest.expect(o.id, unittest.equals('foo')); | 1946 unittest.expect(o.id, unittest.equals('foo')); |
| 1926 checkUnnamed2221(o.items); | 1947 checkUnnamed2255(o.items); |
| 1927 unittest.expect(o.kind, unittest.equals('foo')); | 1948 unittest.expect(o.kind, unittest.equals('foo')); |
| 1928 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1949 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1929 unittest.expect(o.selfLink, unittest.equals('foo')); | 1950 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1930 } | 1951 } |
| 1931 buildCounterDiskAggregatedList--; | 1952 buildCounterDiskAggregatedList--; |
| 1932 } | 1953 } |
| 1933 | 1954 |
| 1934 buildUnnamed2222() { | 1955 buildUnnamed2256() { |
| 1935 var o = new core.List<api.Disk>(); | 1956 var o = new core.List<api.Disk>(); |
| 1936 o.add(buildDisk()); | 1957 o.add(buildDisk()); |
| 1937 o.add(buildDisk()); | 1958 o.add(buildDisk()); |
| 1938 return o; | 1959 return o; |
| 1939 } | 1960 } |
| 1940 | 1961 |
| 1941 checkUnnamed2222(core.List<api.Disk> o) { | 1962 checkUnnamed2256(core.List<api.Disk> o) { |
| 1942 unittest.expect(o, unittest.hasLength(2)); | 1963 unittest.expect(o, unittest.hasLength(2)); |
| 1943 checkDisk(o[0]); | 1964 checkDisk(o[0]); |
| 1944 checkDisk(o[1]); | 1965 checkDisk(o[1]); |
| 1945 } | 1966 } |
| 1946 | 1967 |
| 1947 core.int buildCounterDiskList = 0; | 1968 core.int buildCounterDiskList = 0; |
| 1948 buildDiskList() { | 1969 buildDiskList() { |
| 1949 var o = new api.DiskList(); | 1970 var o = new api.DiskList(); |
| 1950 buildCounterDiskList++; | 1971 buildCounterDiskList++; |
| 1951 if (buildCounterDiskList < 3) { | 1972 if (buildCounterDiskList < 3) { |
| 1952 o.id = "foo"; | 1973 o.id = "foo"; |
| 1953 o.items = buildUnnamed2222(); | 1974 o.items = buildUnnamed2256(); |
| 1954 o.kind = "foo"; | 1975 o.kind = "foo"; |
| 1955 o.nextPageToken = "foo"; | 1976 o.nextPageToken = "foo"; |
| 1956 o.selfLink = "foo"; | 1977 o.selfLink = "foo"; |
| 1957 } | 1978 } |
| 1958 buildCounterDiskList--; | 1979 buildCounterDiskList--; |
| 1959 return o; | 1980 return o; |
| 1960 } | 1981 } |
| 1961 | 1982 |
| 1962 checkDiskList(api.DiskList o) { | 1983 checkDiskList(api.DiskList o) { |
| 1963 buildCounterDiskList++; | 1984 buildCounterDiskList++; |
| 1964 if (buildCounterDiskList < 3) { | 1985 if (buildCounterDiskList < 3) { |
| 1965 unittest.expect(o.id, unittest.equals('foo')); | 1986 unittest.expect(o.id, unittest.equals('foo')); |
| 1966 checkUnnamed2222(o.items); | 1987 checkUnnamed2256(o.items); |
| 1967 unittest.expect(o.kind, unittest.equals('foo')); | 1988 unittest.expect(o.kind, unittest.equals('foo')); |
| 1968 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1989 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1969 unittest.expect(o.selfLink, unittest.equals('foo')); | 1990 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1970 } | 1991 } |
| 1971 buildCounterDiskList--; | 1992 buildCounterDiskList--; |
| 1972 } | 1993 } |
| 1973 | 1994 |
| 1974 core.int buildCounterDiskMoveRequest = 0; | 1995 core.int buildCounterDiskMoveRequest = 0; |
| 1975 buildDiskMoveRequest() { | 1996 buildDiskMoveRequest() { |
| 1976 var o = new api.DiskMoveRequest(); | 1997 var o = new api.DiskMoveRequest(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2022 unittest.expect(o.id, unittest.equals('foo')); | 2043 unittest.expect(o.id, unittest.equals('foo')); |
| 2023 unittest.expect(o.kind, unittest.equals('foo')); | 2044 unittest.expect(o.kind, unittest.equals('foo')); |
| 2024 unittest.expect(o.name, unittest.equals('foo')); | 2045 unittest.expect(o.name, unittest.equals('foo')); |
| 2025 unittest.expect(o.selfLink, unittest.equals('foo')); | 2046 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2026 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 2047 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 2027 unittest.expect(o.zone, unittest.equals('foo')); | 2048 unittest.expect(o.zone, unittest.equals('foo')); |
| 2028 } | 2049 } |
| 2029 buildCounterDiskType--; | 2050 buildCounterDiskType--; |
| 2030 } | 2051 } |
| 2031 | 2052 |
| 2032 buildUnnamed2223() { | 2053 buildUnnamed2257() { |
| 2033 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 2054 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 2034 o["x"] = buildDiskTypesScopedList(); | 2055 o["x"] = buildDiskTypesScopedList(); |
| 2035 o["y"] = buildDiskTypesScopedList(); | 2056 o["y"] = buildDiskTypesScopedList(); |
| 2036 return o; | 2057 return o; |
| 2037 } | 2058 } |
| 2038 | 2059 |
| 2039 checkUnnamed2223(core.Map<core.String, api.DiskTypesScopedList> o) { | 2060 checkUnnamed2257(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 2040 unittest.expect(o, unittest.hasLength(2)); | 2061 unittest.expect(o, unittest.hasLength(2)); |
| 2041 checkDiskTypesScopedList(o["x"]); | 2062 checkDiskTypesScopedList(o["x"]); |
| 2042 checkDiskTypesScopedList(o["y"]); | 2063 checkDiskTypesScopedList(o["y"]); |
| 2043 } | 2064 } |
| 2044 | 2065 |
| 2045 core.int buildCounterDiskTypeAggregatedList = 0; | 2066 core.int buildCounterDiskTypeAggregatedList = 0; |
| 2046 buildDiskTypeAggregatedList() { | 2067 buildDiskTypeAggregatedList() { |
| 2047 var o = new api.DiskTypeAggregatedList(); | 2068 var o = new api.DiskTypeAggregatedList(); |
| 2048 buildCounterDiskTypeAggregatedList++; | 2069 buildCounterDiskTypeAggregatedList++; |
| 2049 if (buildCounterDiskTypeAggregatedList < 3) { | 2070 if (buildCounterDiskTypeAggregatedList < 3) { |
| 2050 o.id = "foo"; | 2071 o.id = "foo"; |
| 2051 o.items = buildUnnamed2223(); | 2072 o.items = buildUnnamed2257(); |
| 2052 o.kind = "foo"; | 2073 o.kind = "foo"; |
| 2053 o.nextPageToken = "foo"; | 2074 o.nextPageToken = "foo"; |
| 2054 o.selfLink = "foo"; | 2075 o.selfLink = "foo"; |
| 2055 } | 2076 } |
| 2056 buildCounterDiskTypeAggregatedList--; | 2077 buildCounterDiskTypeAggregatedList--; |
| 2057 return o; | 2078 return o; |
| 2058 } | 2079 } |
| 2059 | 2080 |
| 2060 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 2081 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 2061 buildCounterDiskTypeAggregatedList++; | 2082 buildCounterDiskTypeAggregatedList++; |
| 2062 if (buildCounterDiskTypeAggregatedList < 3) { | 2083 if (buildCounterDiskTypeAggregatedList < 3) { |
| 2063 unittest.expect(o.id, unittest.equals('foo')); | 2084 unittest.expect(o.id, unittest.equals('foo')); |
| 2064 checkUnnamed2223(o.items); | 2085 checkUnnamed2257(o.items); |
| 2065 unittest.expect(o.kind, unittest.equals('foo')); | 2086 unittest.expect(o.kind, unittest.equals('foo')); |
| 2066 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2087 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2067 unittest.expect(o.selfLink, unittest.equals('foo')); | 2088 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2068 } | 2089 } |
| 2069 buildCounterDiskTypeAggregatedList--; | 2090 buildCounterDiskTypeAggregatedList--; |
| 2070 } | 2091 } |
| 2071 | 2092 |
| 2072 buildUnnamed2224() { | 2093 buildUnnamed2258() { |
| 2073 var o = new core.List<api.DiskType>(); | 2094 var o = new core.List<api.DiskType>(); |
| 2074 o.add(buildDiskType()); | 2095 o.add(buildDiskType()); |
| 2075 o.add(buildDiskType()); | 2096 o.add(buildDiskType()); |
| 2076 return o; | 2097 return o; |
| 2077 } | 2098 } |
| 2078 | 2099 |
| 2079 checkUnnamed2224(core.List<api.DiskType> o) { | 2100 checkUnnamed2258(core.List<api.DiskType> o) { |
| 2080 unittest.expect(o, unittest.hasLength(2)); | 2101 unittest.expect(o, unittest.hasLength(2)); |
| 2081 checkDiskType(o[0]); | 2102 checkDiskType(o[0]); |
| 2082 checkDiskType(o[1]); | 2103 checkDiskType(o[1]); |
| 2083 } | 2104 } |
| 2084 | 2105 |
| 2085 core.int buildCounterDiskTypeList = 0; | 2106 core.int buildCounterDiskTypeList = 0; |
| 2086 buildDiskTypeList() { | 2107 buildDiskTypeList() { |
| 2087 var o = new api.DiskTypeList(); | 2108 var o = new api.DiskTypeList(); |
| 2088 buildCounterDiskTypeList++; | 2109 buildCounterDiskTypeList++; |
| 2089 if (buildCounterDiskTypeList < 3) { | 2110 if (buildCounterDiskTypeList < 3) { |
| 2090 o.id = "foo"; | 2111 o.id = "foo"; |
| 2091 o.items = buildUnnamed2224(); | 2112 o.items = buildUnnamed2258(); |
| 2092 o.kind = "foo"; | 2113 o.kind = "foo"; |
| 2093 o.nextPageToken = "foo"; | 2114 o.nextPageToken = "foo"; |
| 2094 o.selfLink = "foo"; | 2115 o.selfLink = "foo"; |
| 2095 } | 2116 } |
| 2096 buildCounterDiskTypeList--; | 2117 buildCounterDiskTypeList--; |
| 2097 return o; | 2118 return o; |
| 2098 } | 2119 } |
| 2099 | 2120 |
| 2100 checkDiskTypeList(api.DiskTypeList o) { | 2121 checkDiskTypeList(api.DiskTypeList o) { |
| 2101 buildCounterDiskTypeList++; | 2122 buildCounterDiskTypeList++; |
| 2102 if (buildCounterDiskTypeList < 3) { | 2123 if (buildCounterDiskTypeList < 3) { |
| 2103 unittest.expect(o.id, unittest.equals('foo')); | 2124 unittest.expect(o.id, unittest.equals('foo')); |
| 2104 checkUnnamed2224(o.items); | 2125 checkUnnamed2258(o.items); |
| 2105 unittest.expect(o.kind, unittest.equals('foo')); | 2126 unittest.expect(o.kind, unittest.equals('foo')); |
| 2106 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2127 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2107 unittest.expect(o.selfLink, unittest.equals('foo')); | 2128 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2108 } | 2129 } |
| 2109 buildCounterDiskTypeList--; | 2130 buildCounterDiskTypeList--; |
| 2110 } | 2131 } |
| 2111 | 2132 |
| 2112 buildUnnamed2225() { | 2133 buildUnnamed2259() { |
| 2113 var o = new core.List<api.DiskType>(); | 2134 var o = new core.List<api.DiskType>(); |
| 2114 o.add(buildDiskType()); | 2135 o.add(buildDiskType()); |
| 2115 o.add(buildDiskType()); | 2136 o.add(buildDiskType()); |
| 2116 return o; | 2137 return o; |
| 2117 } | 2138 } |
| 2118 | 2139 |
| 2119 checkUnnamed2225(core.List<api.DiskType> o) { | 2140 checkUnnamed2259(core.List<api.DiskType> o) { |
| 2120 unittest.expect(o, unittest.hasLength(2)); | 2141 unittest.expect(o, unittest.hasLength(2)); |
| 2121 checkDiskType(o[0]); | 2142 checkDiskType(o[0]); |
| 2122 checkDiskType(o[1]); | 2143 checkDiskType(o[1]); |
| 2123 } | 2144 } |
| 2124 | 2145 |
| 2125 core.int buildCounterDiskTypesScopedListWarningData = 0; | 2146 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 2126 buildDiskTypesScopedListWarningData() { | 2147 buildDiskTypesScopedListWarningData() { |
| 2127 var o = new api.DiskTypesScopedListWarningData(); | 2148 var o = new api.DiskTypesScopedListWarningData(); |
| 2128 buildCounterDiskTypesScopedListWarningData++; | 2149 buildCounterDiskTypesScopedListWarningData++; |
| 2129 if (buildCounterDiskTypesScopedListWarningData < 3) { | 2150 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 2130 o.key = "foo"; | 2151 o.key = "foo"; |
| 2131 o.value = "foo"; | 2152 o.value = "foo"; |
| 2132 } | 2153 } |
| 2133 buildCounterDiskTypesScopedListWarningData--; | 2154 buildCounterDiskTypesScopedListWarningData--; |
| 2134 return o; | 2155 return o; |
| 2135 } | 2156 } |
| 2136 | 2157 |
| 2137 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 2158 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 2138 buildCounterDiskTypesScopedListWarningData++; | 2159 buildCounterDiskTypesScopedListWarningData++; |
| 2139 if (buildCounterDiskTypesScopedListWarningData < 3) { | 2160 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 2140 unittest.expect(o.key, unittest.equals('foo')); | 2161 unittest.expect(o.key, unittest.equals('foo')); |
| 2141 unittest.expect(o.value, unittest.equals('foo')); | 2162 unittest.expect(o.value, unittest.equals('foo')); |
| 2142 } | 2163 } |
| 2143 buildCounterDiskTypesScopedListWarningData--; | 2164 buildCounterDiskTypesScopedListWarningData--; |
| 2144 } | 2165 } |
| 2145 | 2166 |
| 2146 buildUnnamed2226() { | 2167 buildUnnamed2260() { |
| 2147 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 2168 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 2148 o.add(buildDiskTypesScopedListWarningData()); | 2169 o.add(buildDiskTypesScopedListWarningData()); |
| 2149 o.add(buildDiskTypesScopedListWarningData()); | 2170 o.add(buildDiskTypesScopedListWarningData()); |
| 2150 return o; | 2171 return o; |
| 2151 } | 2172 } |
| 2152 | 2173 |
| 2153 checkUnnamed2226(core.List<api.DiskTypesScopedListWarningData> o) { | 2174 checkUnnamed2260(core.List<api.DiskTypesScopedListWarningData> o) { |
| 2154 unittest.expect(o, unittest.hasLength(2)); | 2175 unittest.expect(o, unittest.hasLength(2)); |
| 2155 checkDiskTypesScopedListWarningData(o[0]); | 2176 checkDiskTypesScopedListWarningData(o[0]); |
| 2156 checkDiskTypesScopedListWarningData(o[1]); | 2177 checkDiskTypesScopedListWarningData(o[1]); |
| 2157 } | 2178 } |
| 2158 | 2179 |
| 2159 core.int buildCounterDiskTypesScopedListWarning = 0; | 2180 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 2160 buildDiskTypesScopedListWarning() { | 2181 buildDiskTypesScopedListWarning() { |
| 2161 var o = new api.DiskTypesScopedListWarning(); | 2182 var o = new api.DiskTypesScopedListWarning(); |
| 2162 buildCounterDiskTypesScopedListWarning++; | 2183 buildCounterDiskTypesScopedListWarning++; |
| 2163 if (buildCounterDiskTypesScopedListWarning < 3) { | 2184 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 2164 o.code = "foo"; | 2185 o.code = "foo"; |
| 2165 o.data = buildUnnamed2226(); | 2186 o.data = buildUnnamed2260(); |
| 2166 o.message = "foo"; | 2187 o.message = "foo"; |
| 2167 } | 2188 } |
| 2168 buildCounterDiskTypesScopedListWarning--; | 2189 buildCounterDiskTypesScopedListWarning--; |
| 2169 return o; | 2190 return o; |
| 2170 } | 2191 } |
| 2171 | 2192 |
| 2172 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 2193 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 2173 buildCounterDiskTypesScopedListWarning++; | 2194 buildCounterDiskTypesScopedListWarning++; |
| 2174 if (buildCounterDiskTypesScopedListWarning < 3) { | 2195 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 2175 unittest.expect(o.code, unittest.equals('foo')); | 2196 unittest.expect(o.code, unittest.equals('foo')); |
| 2176 checkUnnamed2226(o.data); | 2197 checkUnnamed2260(o.data); |
| 2177 unittest.expect(o.message, unittest.equals('foo')); | 2198 unittest.expect(o.message, unittest.equals('foo')); |
| 2178 } | 2199 } |
| 2179 buildCounterDiskTypesScopedListWarning--; | 2200 buildCounterDiskTypesScopedListWarning--; |
| 2180 } | 2201 } |
| 2181 | 2202 |
| 2182 core.int buildCounterDiskTypesScopedList = 0; | 2203 core.int buildCounterDiskTypesScopedList = 0; |
| 2183 buildDiskTypesScopedList() { | 2204 buildDiskTypesScopedList() { |
| 2184 var o = new api.DiskTypesScopedList(); | 2205 var o = new api.DiskTypesScopedList(); |
| 2185 buildCounterDiskTypesScopedList++; | 2206 buildCounterDiskTypesScopedList++; |
| 2186 if (buildCounterDiskTypesScopedList < 3) { | 2207 if (buildCounterDiskTypesScopedList < 3) { |
| 2187 o.diskTypes = buildUnnamed2225(); | 2208 o.diskTypes = buildUnnamed2259(); |
| 2188 o.warning = buildDiskTypesScopedListWarning(); | 2209 o.warning = buildDiskTypesScopedListWarning(); |
| 2189 } | 2210 } |
| 2190 buildCounterDiskTypesScopedList--; | 2211 buildCounterDiskTypesScopedList--; |
| 2191 return o; | 2212 return o; |
| 2192 } | 2213 } |
| 2193 | 2214 |
| 2194 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 2215 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 2195 buildCounterDiskTypesScopedList++; | 2216 buildCounterDiskTypesScopedList++; |
| 2196 if (buildCounterDiskTypesScopedList < 3) { | 2217 if (buildCounterDiskTypesScopedList < 3) { |
| 2197 checkUnnamed2225(o.diskTypes); | 2218 checkUnnamed2259(o.diskTypes); |
| 2198 checkDiskTypesScopedListWarning(o.warning); | 2219 checkDiskTypesScopedListWarning(o.warning); |
| 2199 } | 2220 } |
| 2200 buildCounterDiskTypesScopedList--; | 2221 buildCounterDiskTypesScopedList--; |
| 2201 } | 2222 } |
| 2202 | 2223 |
| 2203 core.int buildCounterDisksResizeRequest = 0; | 2224 core.int buildCounterDisksResizeRequest = 0; |
| 2204 buildDisksResizeRequest() { | 2225 buildDisksResizeRequest() { |
| 2205 var o = new api.DisksResizeRequest(); | 2226 var o = new api.DisksResizeRequest(); |
| 2206 buildCounterDisksResizeRequest++; | 2227 buildCounterDisksResizeRequest++; |
| 2207 if (buildCounterDisksResizeRequest < 3) { | 2228 if (buildCounterDisksResizeRequest < 3) { |
| 2208 o.sizeGb = "foo"; | 2229 o.sizeGb = "foo"; |
| 2209 } | 2230 } |
| 2210 buildCounterDisksResizeRequest--; | 2231 buildCounterDisksResizeRequest--; |
| 2211 return o; | 2232 return o; |
| 2212 } | 2233 } |
| 2213 | 2234 |
| 2214 checkDisksResizeRequest(api.DisksResizeRequest o) { | 2235 checkDisksResizeRequest(api.DisksResizeRequest o) { |
| 2215 buildCounterDisksResizeRequest++; | 2236 buildCounterDisksResizeRequest++; |
| 2216 if (buildCounterDisksResizeRequest < 3) { | 2237 if (buildCounterDisksResizeRequest < 3) { |
| 2217 unittest.expect(o.sizeGb, unittest.equals('foo')); | 2238 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 2218 } | 2239 } |
| 2219 buildCounterDisksResizeRequest--; | 2240 buildCounterDisksResizeRequest--; |
| 2220 } | 2241 } |
| 2221 | 2242 |
| 2222 buildUnnamed2227() { | 2243 buildUnnamed2261() { |
| 2223 var o = new core.List<api.Disk>(); | 2244 var o = new core.List<api.Disk>(); |
| 2224 o.add(buildDisk()); | 2245 o.add(buildDisk()); |
| 2225 o.add(buildDisk()); | 2246 o.add(buildDisk()); |
| 2226 return o; | 2247 return o; |
| 2227 } | 2248 } |
| 2228 | 2249 |
| 2229 checkUnnamed2227(core.List<api.Disk> o) { | 2250 checkUnnamed2261(core.List<api.Disk> o) { |
| 2230 unittest.expect(o, unittest.hasLength(2)); | 2251 unittest.expect(o, unittest.hasLength(2)); |
| 2231 checkDisk(o[0]); | 2252 checkDisk(o[0]); |
| 2232 checkDisk(o[1]); | 2253 checkDisk(o[1]); |
| 2233 } | 2254 } |
| 2234 | 2255 |
| 2235 core.int buildCounterDisksScopedListWarningData = 0; | 2256 core.int buildCounterDisksScopedListWarningData = 0; |
| 2236 buildDisksScopedListWarningData() { | 2257 buildDisksScopedListWarningData() { |
| 2237 var o = new api.DisksScopedListWarningData(); | 2258 var o = new api.DisksScopedListWarningData(); |
| 2238 buildCounterDisksScopedListWarningData++; | 2259 buildCounterDisksScopedListWarningData++; |
| 2239 if (buildCounterDisksScopedListWarningData < 3) { | 2260 if (buildCounterDisksScopedListWarningData < 3) { |
| 2240 o.key = "foo"; | 2261 o.key = "foo"; |
| 2241 o.value = "foo"; | 2262 o.value = "foo"; |
| 2242 } | 2263 } |
| 2243 buildCounterDisksScopedListWarningData--; | 2264 buildCounterDisksScopedListWarningData--; |
| 2244 return o; | 2265 return o; |
| 2245 } | 2266 } |
| 2246 | 2267 |
| 2247 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 2268 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 2248 buildCounterDisksScopedListWarningData++; | 2269 buildCounterDisksScopedListWarningData++; |
| 2249 if (buildCounterDisksScopedListWarningData < 3) { | 2270 if (buildCounterDisksScopedListWarningData < 3) { |
| 2250 unittest.expect(o.key, unittest.equals('foo')); | 2271 unittest.expect(o.key, unittest.equals('foo')); |
| 2251 unittest.expect(o.value, unittest.equals('foo')); | 2272 unittest.expect(o.value, unittest.equals('foo')); |
| 2252 } | 2273 } |
| 2253 buildCounterDisksScopedListWarningData--; | 2274 buildCounterDisksScopedListWarningData--; |
| 2254 } | 2275 } |
| 2255 | 2276 |
| 2256 buildUnnamed2228() { | 2277 buildUnnamed2262() { |
| 2257 var o = new core.List<api.DisksScopedListWarningData>(); | 2278 var o = new core.List<api.DisksScopedListWarningData>(); |
| 2258 o.add(buildDisksScopedListWarningData()); | 2279 o.add(buildDisksScopedListWarningData()); |
| 2259 o.add(buildDisksScopedListWarningData()); | 2280 o.add(buildDisksScopedListWarningData()); |
| 2260 return o; | 2281 return o; |
| 2261 } | 2282 } |
| 2262 | 2283 |
| 2263 checkUnnamed2228(core.List<api.DisksScopedListWarningData> o) { | 2284 checkUnnamed2262(core.List<api.DisksScopedListWarningData> o) { |
| 2264 unittest.expect(o, unittest.hasLength(2)); | 2285 unittest.expect(o, unittest.hasLength(2)); |
| 2265 checkDisksScopedListWarningData(o[0]); | 2286 checkDisksScopedListWarningData(o[0]); |
| 2266 checkDisksScopedListWarningData(o[1]); | 2287 checkDisksScopedListWarningData(o[1]); |
| 2267 } | 2288 } |
| 2268 | 2289 |
| 2269 core.int buildCounterDisksScopedListWarning = 0; | 2290 core.int buildCounterDisksScopedListWarning = 0; |
| 2270 buildDisksScopedListWarning() { | 2291 buildDisksScopedListWarning() { |
| 2271 var o = new api.DisksScopedListWarning(); | 2292 var o = new api.DisksScopedListWarning(); |
| 2272 buildCounterDisksScopedListWarning++; | 2293 buildCounterDisksScopedListWarning++; |
| 2273 if (buildCounterDisksScopedListWarning < 3) { | 2294 if (buildCounterDisksScopedListWarning < 3) { |
| 2274 o.code = "foo"; | 2295 o.code = "foo"; |
| 2275 o.data = buildUnnamed2228(); | 2296 o.data = buildUnnamed2262(); |
| 2276 o.message = "foo"; | 2297 o.message = "foo"; |
| 2277 } | 2298 } |
| 2278 buildCounterDisksScopedListWarning--; | 2299 buildCounterDisksScopedListWarning--; |
| 2279 return o; | 2300 return o; |
| 2280 } | 2301 } |
| 2281 | 2302 |
| 2282 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 2303 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 2283 buildCounterDisksScopedListWarning++; | 2304 buildCounterDisksScopedListWarning++; |
| 2284 if (buildCounterDisksScopedListWarning < 3) { | 2305 if (buildCounterDisksScopedListWarning < 3) { |
| 2285 unittest.expect(o.code, unittest.equals('foo')); | 2306 unittest.expect(o.code, unittest.equals('foo')); |
| 2286 checkUnnamed2228(o.data); | 2307 checkUnnamed2262(o.data); |
| 2287 unittest.expect(o.message, unittest.equals('foo')); | 2308 unittest.expect(o.message, unittest.equals('foo')); |
| 2288 } | 2309 } |
| 2289 buildCounterDisksScopedListWarning--; | 2310 buildCounterDisksScopedListWarning--; |
| 2290 } | 2311 } |
| 2291 | 2312 |
| 2292 core.int buildCounterDisksScopedList = 0; | 2313 core.int buildCounterDisksScopedList = 0; |
| 2293 buildDisksScopedList() { | 2314 buildDisksScopedList() { |
| 2294 var o = new api.DisksScopedList(); | 2315 var o = new api.DisksScopedList(); |
| 2295 buildCounterDisksScopedList++; | 2316 buildCounterDisksScopedList++; |
| 2296 if (buildCounterDisksScopedList < 3) { | 2317 if (buildCounterDisksScopedList < 3) { |
| 2297 o.disks = buildUnnamed2227(); | 2318 o.disks = buildUnnamed2261(); |
| 2298 o.warning = buildDisksScopedListWarning(); | 2319 o.warning = buildDisksScopedListWarning(); |
| 2299 } | 2320 } |
| 2300 buildCounterDisksScopedList--; | 2321 buildCounterDisksScopedList--; |
| 2301 return o; | 2322 return o; |
| 2302 } | 2323 } |
| 2303 | 2324 |
| 2304 checkDisksScopedList(api.DisksScopedList o) { | 2325 checkDisksScopedList(api.DisksScopedList o) { |
| 2305 buildCounterDisksScopedList++; | 2326 buildCounterDisksScopedList++; |
| 2306 if (buildCounterDisksScopedList < 3) { | 2327 if (buildCounterDisksScopedList < 3) { |
| 2307 checkUnnamed2227(o.disks); | 2328 checkUnnamed2261(o.disks); |
| 2308 checkDisksScopedListWarning(o.warning); | 2329 checkDisksScopedListWarning(o.warning); |
| 2309 } | 2330 } |
| 2310 buildCounterDisksScopedList--; | 2331 buildCounterDisksScopedList--; |
| 2311 } | 2332 } |
| 2312 | 2333 |
| 2313 buildUnnamed2229() { | 2334 buildUnnamed2263() { |
| 2314 var o = new core.List<core.String>(); | 2335 var o = new core.List<core.String>(); |
| 2315 o.add("foo"); | 2336 o.add("foo"); |
| 2316 o.add("foo"); | 2337 o.add("foo"); |
| 2317 return o; | 2338 return o; |
| 2318 } | 2339 } |
| 2319 | 2340 |
| 2320 checkUnnamed2229(core.List<core.String> o) { | 2341 checkUnnamed2263(core.List<core.String> o) { |
| 2321 unittest.expect(o, unittest.hasLength(2)); | 2342 unittest.expect(o, unittest.hasLength(2)); |
| 2322 unittest.expect(o[0], unittest.equals('foo')); | 2343 unittest.expect(o[0], unittest.equals('foo')); |
| 2323 unittest.expect(o[1], unittest.equals('foo')); | 2344 unittest.expect(o[1], unittest.equals('foo')); |
| 2324 } | 2345 } |
| 2325 | 2346 |
| 2326 core.int buildCounterFirewallAllowed = 0; | 2347 core.int buildCounterFirewallAllowed = 0; |
| 2327 buildFirewallAllowed() { | 2348 buildFirewallAllowed() { |
| 2328 var o = new api.FirewallAllowed(); | 2349 var o = new api.FirewallAllowed(); |
| 2329 buildCounterFirewallAllowed++; | 2350 buildCounterFirewallAllowed++; |
| 2330 if (buildCounterFirewallAllowed < 3) { | 2351 if (buildCounterFirewallAllowed < 3) { |
| 2331 o.IPProtocol = "foo"; | 2352 o.IPProtocol = "foo"; |
| 2332 o.ports = buildUnnamed2229(); | 2353 o.ports = buildUnnamed2263(); |
| 2333 } | 2354 } |
| 2334 buildCounterFirewallAllowed--; | 2355 buildCounterFirewallAllowed--; |
| 2335 return o; | 2356 return o; |
| 2336 } | 2357 } |
| 2337 | 2358 |
| 2338 checkFirewallAllowed(api.FirewallAllowed o) { | 2359 checkFirewallAllowed(api.FirewallAllowed o) { |
| 2339 buildCounterFirewallAllowed++; | 2360 buildCounterFirewallAllowed++; |
| 2340 if (buildCounterFirewallAllowed < 3) { | 2361 if (buildCounterFirewallAllowed < 3) { |
| 2341 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 2362 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 2342 checkUnnamed2229(o.ports); | 2363 checkUnnamed2263(o.ports); |
| 2343 } | 2364 } |
| 2344 buildCounterFirewallAllowed--; | 2365 buildCounterFirewallAllowed--; |
| 2345 } | 2366 } |
| 2346 | 2367 |
| 2347 buildUnnamed2230() { | 2368 buildUnnamed2264() { |
| 2348 var o = new core.List<api.FirewallAllowed>(); | 2369 var o = new core.List<api.FirewallAllowed>(); |
| 2349 o.add(buildFirewallAllowed()); | 2370 o.add(buildFirewallAllowed()); |
| 2350 o.add(buildFirewallAllowed()); | 2371 o.add(buildFirewallAllowed()); |
| 2351 return o; | 2372 return o; |
| 2352 } | 2373 } |
| 2353 | 2374 |
| 2354 checkUnnamed2230(core.List<api.FirewallAllowed> o) { | 2375 checkUnnamed2264(core.List<api.FirewallAllowed> o) { |
| 2355 unittest.expect(o, unittest.hasLength(2)); | 2376 unittest.expect(o, unittest.hasLength(2)); |
| 2356 checkFirewallAllowed(o[0]); | 2377 checkFirewallAllowed(o[0]); |
| 2357 checkFirewallAllowed(o[1]); | 2378 checkFirewallAllowed(o[1]); |
| 2358 } | 2379 } |
| 2359 | 2380 |
| 2360 buildUnnamed2231() { | 2381 buildUnnamed2265() { |
| 2361 var o = new core.List<core.String>(); | 2382 var o = new core.List<core.String>(); |
| 2362 o.add("foo"); | 2383 o.add("foo"); |
| 2363 o.add("foo"); | 2384 o.add("foo"); |
| 2364 return o; | 2385 return o; |
| 2365 } | 2386 } |
| 2366 | 2387 |
| 2367 checkUnnamed2231(core.List<core.String> o) { | 2388 checkUnnamed2265(core.List<core.String> o) { |
| 2368 unittest.expect(o, unittest.hasLength(2)); | 2389 unittest.expect(o, unittest.hasLength(2)); |
| 2369 unittest.expect(o[0], unittest.equals('foo')); | 2390 unittest.expect(o[0], unittest.equals('foo')); |
| 2370 unittest.expect(o[1], unittest.equals('foo')); | 2391 unittest.expect(o[1], unittest.equals('foo')); |
| 2371 } | 2392 } |
| 2372 | 2393 |
| 2373 buildUnnamed2232() { | 2394 buildUnnamed2266() { |
| 2374 var o = new core.List<core.String>(); | 2395 var o = new core.List<core.String>(); |
| 2375 o.add("foo"); | 2396 o.add("foo"); |
| 2376 o.add("foo"); | 2397 o.add("foo"); |
| 2377 return o; | 2398 return o; |
| 2378 } | 2399 } |
| 2379 | 2400 |
| 2380 checkUnnamed2232(core.List<core.String> o) { | 2401 checkUnnamed2266(core.List<core.String> o) { |
| 2381 unittest.expect(o, unittest.hasLength(2)); | 2402 unittest.expect(o, unittest.hasLength(2)); |
| 2382 unittest.expect(o[0], unittest.equals('foo')); | 2403 unittest.expect(o[0], unittest.equals('foo')); |
| 2383 unittest.expect(o[1], unittest.equals('foo')); | 2404 unittest.expect(o[1], unittest.equals('foo')); |
| 2384 } | 2405 } |
| 2385 | 2406 |
| 2386 buildUnnamed2233() { | 2407 buildUnnamed2267() { |
| 2387 var o = new core.List<core.String>(); | 2408 var o = new core.List<core.String>(); |
| 2388 o.add("foo"); | 2409 o.add("foo"); |
| 2389 o.add("foo"); | 2410 o.add("foo"); |
| 2390 return o; | 2411 return o; |
| 2391 } | 2412 } |
| 2392 | 2413 |
| 2393 checkUnnamed2233(core.List<core.String> o) { | 2414 checkUnnamed2267(core.List<core.String> o) { |
| 2394 unittest.expect(o, unittest.hasLength(2)); | 2415 unittest.expect(o, unittest.hasLength(2)); |
| 2395 unittest.expect(o[0], unittest.equals('foo')); | 2416 unittest.expect(o[0], unittest.equals('foo')); |
| 2396 unittest.expect(o[1], unittest.equals('foo')); | 2417 unittest.expect(o[1], unittest.equals('foo')); |
| 2397 } | 2418 } |
| 2398 | 2419 |
| 2399 core.int buildCounterFirewall = 0; | 2420 core.int buildCounterFirewall = 0; |
| 2400 buildFirewall() { | 2421 buildFirewall() { |
| 2401 var o = new api.Firewall(); | 2422 var o = new api.Firewall(); |
| 2402 buildCounterFirewall++; | 2423 buildCounterFirewall++; |
| 2403 if (buildCounterFirewall < 3) { | 2424 if (buildCounterFirewall < 3) { |
| 2404 o.allowed = buildUnnamed2230(); | 2425 o.allowed = buildUnnamed2264(); |
| 2405 o.creationTimestamp = "foo"; | 2426 o.creationTimestamp = "foo"; |
| 2406 o.description = "foo"; | 2427 o.description = "foo"; |
| 2407 o.id = "foo"; | 2428 o.id = "foo"; |
| 2408 o.kind = "foo"; | 2429 o.kind = "foo"; |
| 2409 o.name = "foo"; | 2430 o.name = "foo"; |
| 2410 o.network = "foo"; | 2431 o.network = "foo"; |
| 2411 o.selfLink = "foo"; | 2432 o.selfLink = "foo"; |
| 2412 o.sourceRanges = buildUnnamed2231(); | 2433 o.sourceRanges = buildUnnamed2265(); |
| 2413 o.sourceTags = buildUnnamed2232(); | 2434 o.sourceTags = buildUnnamed2266(); |
| 2414 o.targetTags = buildUnnamed2233(); | 2435 o.targetTags = buildUnnamed2267(); |
| 2415 } | 2436 } |
| 2416 buildCounterFirewall--; | 2437 buildCounterFirewall--; |
| 2417 return o; | 2438 return o; |
| 2418 } | 2439 } |
| 2419 | 2440 |
| 2420 checkFirewall(api.Firewall o) { | 2441 checkFirewall(api.Firewall o) { |
| 2421 buildCounterFirewall++; | 2442 buildCounterFirewall++; |
| 2422 if (buildCounterFirewall < 3) { | 2443 if (buildCounterFirewall < 3) { |
| 2423 checkUnnamed2230(o.allowed); | 2444 checkUnnamed2264(o.allowed); |
| 2424 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2445 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2425 unittest.expect(o.description, unittest.equals('foo')); | 2446 unittest.expect(o.description, unittest.equals('foo')); |
| 2426 unittest.expect(o.id, unittest.equals('foo')); | 2447 unittest.expect(o.id, unittest.equals('foo')); |
| 2427 unittest.expect(o.kind, unittest.equals('foo')); | 2448 unittest.expect(o.kind, unittest.equals('foo')); |
| 2428 unittest.expect(o.name, unittest.equals('foo')); | 2449 unittest.expect(o.name, unittest.equals('foo')); |
| 2429 unittest.expect(o.network, unittest.equals('foo')); | 2450 unittest.expect(o.network, unittest.equals('foo')); |
| 2430 unittest.expect(o.selfLink, unittest.equals('foo')); | 2451 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2431 checkUnnamed2231(o.sourceRanges); | 2452 checkUnnamed2265(o.sourceRanges); |
| 2432 checkUnnamed2232(o.sourceTags); | 2453 checkUnnamed2266(o.sourceTags); |
| 2433 checkUnnamed2233(o.targetTags); | 2454 checkUnnamed2267(o.targetTags); |
| 2434 } | 2455 } |
| 2435 buildCounterFirewall--; | 2456 buildCounterFirewall--; |
| 2436 } | 2457 } |
| 2437 | 2458 |
| 2438 buildUnnamed2234() { | 2459 buildUnnamed2268() { |
| 2439 var o = new core.List<api.Firewall>(); | 2460 var o = new core.List<api.Firewall>(); |
| 2440 o.add(buildFirewall()); | 2461 o.add(buildFirewall()); |
| 2441 o.add(buildFirewall()); | 2462 o.add(buildFirewall()); |
| 2442 return o; | 2463 return o; |
| 2443 } | 2464 } |
| 2444 | 2465 |
| 2445 checkUnnamed2234(core.List<api.Firewall> o) { | 2466 checkUnnamed2268(core.List<api.Firewall> o) { |
| 2446 unittest.expect(o, unittest.hasLength(2)); | 2467 unittest.expect(o, unittest.hasLength(2)); |
| 2447 checkFirewall(o[0]); | 2468 checkFirewall(o[0]); |
| 2448 checkFirewall(o[1]); | 2469 checkFirewall(o[1]); |
| 2449 } | 2470 } |
| 2450 | 2471 |
| 2451 core.int buildCounterFirewallList = 0; | 2472 core.int buildCounterFirewallList = 0; |
| 2452 buildFirewallList() { | 2473 buildFirewallList() { |
| 2453 var o = new api.FirewallList(); | 2474 var o = new api.FirewallList(); |
| 2454 buildCounterFirewallList++; | 2475 buildCounterFirewallList++; |
| 2455 if (buildCounterFirewallList < 3) { | 2476 if (buildCounterFirewallList < 3) { |
| 2456 o.id = "foo"; | 2477 o.id = "foo"; |
| 2457 o.items = buildUnnamed2234(); | 2478 o.items = buildUnnamed2268(); |
| 2458 o.kind = "foo"; | 2479 o.kind = "foo"; |
| 2459 o.nextPageToken = "foo"; | 2480 o.nextPageToken = "foo"; |
| 2460 o.selfLink = "foo"; | 2481 o.selfLink = "foo"; |
| 2461 } | 2482 } |
| 2462 buildCounterFirewallList--; | 2483 buildCounterFirewallList--; |
| 2463 return o; | 2484 return o; |
| 2464 } | 2485 } |
| 2465 | 2486 |
| 2466 checkFirewallList(api.FirewallList o) { | 2487 checkFirewallList(api.FirewallList o) { |
| 2467 buildCounterFirewallList++; | 2488 buildCounterFirewallList++; |
| 2468 if (buildCounterFirewallList < 3) { | 2489 if (buildCounterFirewallList < 3) { |
| 2469 unittest.expect(o.id, unittest.equals('foo')); | 2490 unittest.expect(o.id, unittest.equals('foo')); |
| 2470 checkUnnamed2234(o.items); | 2491 checkUnnamed2268(o.items); |
| 2471 unittest.expect(o.kind, unittest.equals('foo')); | 2492 unittest.expect(o.kind, unittest.equals('foo')); |
| 2472 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2493 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2473 unittest.expect(o.selfLink, unittest.equals('foo')); | 2494 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2474 } | 2495 } |
| 2475 buildCounterFirewallList--; | 2496 buildCounterFirewallList--; |
| 2476 } | 2497 } |
| 2477 | 2498 |
| 2478 buildUnnamed2235() { | 2499 buildUnnamed2269() { |
| 2479 var o = new core.List<core.String>(); | 2500 var o = new core.List<core.String>(); |
| 2480 o.add("foo"); | 2501 o.add("foo"); |
| 2481 o.add("foo"); | 2502 o.add("foo"); |
| 2482 return o; | 2503 return o; |
| 2483 } | 2504 } |
| 2484 | 2505 |
| 2485 checkUnnamed2235(core.List<core.String> o) { | 2506 checkUnnamed2269(core.List<core.String> o) { |
| 2486 unittest.expect(o, unittest.hasLength(2)); | 2507 unittest.expect(o, unittest.hasLength(2)); |
| 2487 unittest.expect(o[0], unittest.equals('foo')); | 2508 unittest.expect(o[0], unittest.equals('foo')); |
| 2488 unittest.expect(o[1], unittest.equals('foo')); | 2509 unittest.expect(o[1], unittest.equals('foo')); |
| 2489 } | 2510 } |
| 2490 | 2511 |
| 2491 core.int buildCounterForwardingRule = 0; | 2512 core.int buildCounterForwardingRule = 0; |
| 2492 buildForwardingRule() { | 2513 buildForwardingRule() { |
| 2493 var o = new api.ForwardingRule(); | 2514 var o = new api.ForwardingRule(); |
| 2494 buildCounterForwardingRule++; | 2515 buildCounterForwardingRule++; |
| 2495 if (buildCounterForwardingRule < 3) { | 2516 if (buildCounterForwardingRule < 3) { |
| 2496 o.IPAddress = "foo"; | 2517 o.IPAddress = "foo"; |
| 2497 o.IPProtocol = "foo"; | 2518 o.IPProtocol = "foo"; |
| 2498 o.backendService = "foo"; | 2519 o.backendService = "foo"; |
| 2499 o.creationTimestamp = "foo"; | 2520 o.creationTimestamp = "foo"; |
| 2500 o.description = "foo"; | 2521 o.description = "foo"; |
| 2501 o.id = "foo"; | 2522 o.id = "foo"; |
| 2502 o.ipVersion = "foo"; | 2523 o.ipVersion = "foo"; |
| 2503 o.kind = "foo"; | 2524 o.kind = "foo"; |
| 2504 o.loadBalancingScheme = "foo"; | 2525 o.loadBalancingScheme = "foo"; |
| 2505 o.name = "foo"; | 2526 o.name = "foo"; |
| 2506 o.network = "foo"; | 2527 o.network = "foo"; |
| 2507 o.portRange = "foo"; | 2528 o.portRange = "foo"; |
| 2508 o.ports = buildUnnamed2235(); | 2529 o.ports = buildUnnamed2269(); |
| 2509 o.region = "foo"; | 2530 o.region = "foo"; |
| 2510 o.selfLink = "foo"; | 2531 o.selfLink = "foo"; |
| 2511 o.subnetwork = "foo"; | 2532 o.subnetwork = "foo"; |
| 2512 o.target = "foo"; | 2533 o.target = "foo"; |
| 2513 } | 2534 } |
| 2514 buildCounterForwardingRule--; | 2535 buildCounterForwardingRule--; |
| 2515 return o; | 2536 return o; |
| 2516 } | 2537 } |
| 2517 | 2538 |
| 2518 checkForwardingRule(api.ForwardingRule o) { | 2539 checkForwardingRule(api.ForwardingRule o) { |
| 2519 buildCounterForwardingRule++; | 2540 buildCounterForwardingRule++; |
| 2520 if (buildCounterForwardingRule < 3) { | 2541 if (buildCounterForwardingRule < 3) { |
| 2521 unittest.expect(o.IPAddress, unittest.equals('foo')); | 2542 unittest.expect(o.IPAddress, unittest.equals('foo')); |
| 2522 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 2543 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 2523 unittest.expect(o.backendService, unittest.equals('foo')); | 2544 unittest.expect(o.backendService, unittest.equals('foo')); |
| 2524 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2545 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2525 unittest.expect(o.description, unittest.equals('foo')); | 2546 unittest.expect(o.description, unittest.equals('foo')); |
| 2526 unittest.expect(o.id, unittest.equals('foo')); | 2547 unittest.expect(o.id, unittest.equals('foo')); |
| 2527 unittest.expect(o.ipVersion, unittest.equals('foo')); | 2548 unittest.expect(o.ipVersion, unittest.equals('foo')); |
| 2528 unittest.expect(o.kind, unittest.equals('foo')); | 2549 unittest.expect(o.kind, unittest.equals('foo')); |
| 2529 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); | 2550 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); |
| 2530 unittest.expect(o.name, unittest.equals('foo')); | 2551 unittest.expect(o.name, unittest.equals('foo')); |
| 2531 unittest.expect(o.network, unittest.equals('foo')); | 2552 unittest.expect(o.network, unittest.equals('foo')); |
| 2532 unittest.expect(o.portRange, unittest.equals('foo')); | 2553 unittest.expect(o.portRange, unittest.equals('foo')); |
| 2533 checkUnnamed2235(o.ports); | 2554 checkUnnamed2269(o.ports); |
| 2534 unittest.expect(o.region, unittest.equals('foo')); | 2555 unittest.expect(o.region, unittest.equals('foo')); |
| 2535 unittest.expect(o.selfLink, unittest.equals('foo')); | 2556 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2536 unittest.expect(o.subnetwork, unittest.equals('foo')); | 2557 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 2537 unittest.expect(o.target, unittest.equals('foo')); | 2558 unittest.expect(o.target, unittest.equals('foo')); |
| 2538 } | 2559 } |
| 2539 buildCounterForwardingRule--; | 2560 buildCounterForwardingRule--; |
| 2540 } | 2561 } |
| 2541 | 2562 |
| 2542 buildUnnamed2236() { | 2563 buildUnnamed2270() { |
| 2543 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 2564 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 2544 o["x"] = buildForwardingRulesScopedList(); | 2565 o["x"] = buildForwardingRulesScopedList(); |
| 2545 o["y"] = buildForwardingRulesScopedList(); | 2566 o["y"] = buildForwardingRulesScopedList(); |
| 2546 return o; | 2567 return o; |
| 2547 } | 2568 } |
| 2548 | 2569 |
| 2549 checkUnnamed2236(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 2570 checkUnnamed2270(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 2550 unittest.expect(o, unittest.hasLength(2)); | 2571 unittest.expect(o, unittest.hasLength(2)); |
| 2551 checkForwardingRulesScopedList(o["x"]); | 2572 checkForwardingRulesScopedList(o["x"]); |
| 2552 checkForwardingRulesScopedList(o["y"]); | 2573 checkForwardingRulesScopedList(o["y"]); |
| 2553 } | 2574 } |
| 2554 | 2575 |
| 2555 core.int buildCounterForwardingRuleAggregatedList = 0; | 2576 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 2556 buildForwardingRuleAggregatedList() { | 2577 buildForwardingRuleAggregatedList() { |
| 2557 var o = new api.ForwardingRuleAggregatedList(); | 2578 var o = new api.ForwardingRuleAggregatedList(); |
| 2558 buildCounterForwardingRuleAggregatedList++; | 2579 buildCounterForwardingRuleAggregatedList++; |
| 2559 if (buildCounterForwardingRuleAggregatedList < 3) { | 2580 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 2560 o.id = "foo"; | 2581 o.id = "foo"; |
| 2561 o.items = buildUnnamed2236(); | 2582 o.items = buildUnnamed2270(); |
| 2562 o.kind = "foo"; | 2583 o.kind = "foo"; |
| 2563 o.nextPageToken = "foo"; | 2584 o.nextPageToken = "foo"; |
| 2564 o.selfLink = "foo"; | 2585 o.selfLink = "foo"; |
| 2565 } | 2586 } |
| 2566 buildCounterForwardingRuleAggregatedList--; | 2587 buildCounterForwardingRuleAggregatedList--; |
| 2567 return o; | 2588 return o; |
| 2568 } | 2589 } |
| 2569 | 2590 |
| 2570 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 2591 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 2571 buildCounterForwardingRuleAggregatedList++; | 2592 buildCounterForwardingRuleAggregatedList++; |
| 2572 if (buildCounterForwardingRuleAggregatedList < 3) { | 2593 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 2573 unittest.expect(o.id, unittest.equals('foo')); | 2594 unittest.expect(o.id, unittest.equals('foo')); |
| 2574 checkUnnamed2236(o.items); | 2595 checkUnnamed2270(o.items); |
| 2575 unittest.expect(o.kind, unittest.equals('foo')); | 2596 unittest.expect(o.kind, unittest.equals('foo')); |
| 2576 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2597 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2577 unittest.expect(o.selfLink, unittest.equals('foo')); | 2598 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2578 } | 2599 } |
| 2579 buildCounterForwardingRuleAggregatedList--; | 2600 buildCounterForwardingRuleAggregatedList--; |
| 2580 } | 2601 } |
| 2581 | 2602 |
| 2582 buildUnnamed2237() { | 2603 buildUnnamed2271() { |
| 2583 var o = new core.List<api.ForwardingRule>(); | 2604 var o = new core.List<api.ForwardingRule>(); |
| 2584 o.add(buildForwardingRule()); | 2605 o.add(buildForwardingRule()); |
| 2585 o.add(buildForwardingRule()); | 2606 o.add(buildForwardingRule()); |
| 2586 return o; | 2607 return o; |
| 2587 } | 2608 } |
| 2588 | 2609 |
| 2589 checkUnnamed2237(core.List<api.ForwardingRule> o) { | 2610 checkUnnamed2271(core.List<api.ForwardingRule> o) { |
| 2590 unittest.expect(o, unittest.hasLength(2)); | 2611 unittest.expect(o, unittest.hasLength(2)); |
| 2591 checkForwardingRule(o[0]); | 2612 checkForwardingRule(o[0]); |
| 2592 checkForwardingRule(o[1]); | 2613 checkForwardingRule(o[1]); |
| 2593 } | 2614 } |
| 2594 | 2615 |
| 2595 core.int buildCounterForwardingRuleList = 0; | 2616 core.int buildCounterForwardingRuleList = 0; |
| 2596 buildForwardingRuleList() { | 2617 buildForwardingRuleList() { |
| 2597 var o = new api.ForwardingRuleList(); | 2618 var o = new api.ForwardingRuleList(); |
| 2598 buildCounterForwardingRuleList++; | 2619 buildCounterForwardingRuleList++; |
| 2599 if (buildCounterForwardingRuleList < 3) { | 2620 if (buildCounterForwardingRuleList < 3) { |
| 2600 o.id = "foo"; | 2621 o.id = "foo"; |
| 2601 o.items = buildUnnamed2237(); | 2622 o.items = buildUnnamed2271(); |
| 2602 o.kind = "foo"; | 2623 o.kind = "foo"; |
| 2603 o.nextPageToken = "foo"; | 2624 o.nextPageToken = "foo"; |
| 2604 o.selfLink = "foo"; | 2625 o.selfLink = "foo"; |
| 2605 } | 2626 } |
| 2606 buildCounterForwardingRuleList--; | 2627 buildCounterForwardingRuleList--; |
| 2607 return o; | 2628 return o; |
| 2608 } | 2629 } |
| 2609 | 2630 |
| 2610 checkForwardingRuleList(api.ForwardingRuleList o) { | 2631 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 2611 buildCounterForwardingRuleList++; | 2632 buildCounterForwardingRuleList++; |
| 2612 if (buildCounterForwardingRuleList < 3) { | 2633 if (buildCounterForwardingRuleList < 3) { |
| 2613 unittest.expect(o.id, unittest.equals('foo')); | 2634 unittest.expect(o.id, unittest.equals('foo')); |
| 2614 checkUnnamed2237(o.items); | 2635 checkUnnamed2271(o.items); |
| 2615 unittest.expect(o.kind, unittest.equals('foo')); | 2636 unittest.expect(o.kind, unittest.equals('foo')); |
| 2616 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2637 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2617 unittest.expect(o.selfLink, unittest.equals('foo')); | 2638 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2618 } | 2639 } |
| 2619 buildCounterForwardingRuleList--; | 2640 buildCounterForwardingRuleList--; |
| 2620 } | 2641 } |
| 2621 | 2642 |
| 2622 buildUnnamed2238() { | 2643 buildUnnamed2272() { |
| 2623 var o = new core.List<api.ForwardingRule>(); | 2644 var o = new core.List<api.ForwardingRule>(); |
| 2624 o.add(buildForwardingRule()); | 2645 o.add(buildForwardingRule()); |
| 2625 o.add(buildForwardingRule()); | 2646 o.add(buildForwardingRule()); |
| 2626 return o; | 2647 return o; |
| 2627 } | 2648 } |
| 2628 | 2649 |
| 2629 checkUnnamed2238(core.List<api.ForwardingRule> o) { | 2650 checkUnnamed2272(core.List<api.ForwardingRule> o) { |
| 2630 unittest.expect(o, unittest.hasLength(2)); | 2651 unittest.expect(o, unittest.hasLength(2)); |
| 2631 checkForwardingRule(o[0]); | 2652 checkForwardingRule(o[0]); |
| 2632 checkForwardingRule(o[1]); | 2653 checkForwardingRule(o[1]); |
| 2633 } | 2654 } |
| 2634 | 2655 |
| 2635 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 2656 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 2636 buildForwardingRulesScopedListWarningData() { | 2657 buildForwardingRulesScopedListWarningData() { |
| 2637 var o = new api.ForwardingRulesScopedListWarningData(); | 2658 var o = new api.ForwardingRulesScopedListWarningData(); |
| 2638 buildCounterForwardingRulesScopedListWarningData++; | 2659 buildCounterForwardingRulesScopedListWarningData++; |
| 2639 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 2660 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 2640 o.key = "foo"; | 2661 o.key = "foo"; |
| 2641 o.value = "foo"; | 2662 o.value = "foo"; |
| 2642 } | 2663 } |
| 2643 buildCounterForwardingRulesScopedListWarningData--; | 2664 buildCounterForwardingRulesScopedListWarningData--; |
| 2644 return o; | 2665 return o; |
| 2645 } | 2666 } |
| 2646 | 2667 |
| 2647 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 2668 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 2648 buildCounterForwardingRulesScopedListWarningData++; | 2669 buildCounterForwardingRulesScopedListWarningData++; |
| 2649 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 2670 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 2650 unittest.expect(o.key, unittest.equals('foo')); | 2671 unittest.expect(o.key, unittest.equals('foo')); |
| 2651 unittest.expect(o.value, unittest.equals('foo')); | 2672 unittest.expect(o.value, unittest.equals('foo')); |
| 2652 } | 2673 } |
| 2653 buildCounterForwardingRulesScopedListWarningData--; | 2674 buildCounterForwardingRulesScopedListWarningData--; |
| 2654 } | 2675 } |
| 2655 | 2676 |
| 2656 buildUnnamed2239() { | 2677 buildUnnamed2273() { |
| 2657 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 2678 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 2658 o.add(buildForwardingRulesScopedListWarningData()); | 2679 o.add(buildForwardingRulesScopedListWarningData()); |
| 2659 o.add(buildForwardingRulesScopedListWarningData()); | 2680 o.add(buildForwardingRulesScopedListWarningData()); |
| 2660 return o; | 2681 return o; |
| 2661 } | 2682 } |
| 2662 | 2683 |
| 2663 checkUnnamed2239(core.List<api.ForwardingRulesScopedListWarningData> o) { | 2684 checkUnnamed2273(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 2664 unittest.expect(o, unittest.hasLength(2)); | 2685 unittest.expect(o, unittest.hasLength(2)); |
| 2665 checkForwardingRulesScopedListWarningData(o[0]); | 2686 checkForwardingRulesScopedListWarningData(o[0]); |
| 2666 checkForwardingRulesScopedListWarningData(o[1]); | 2687 checkForwardingRulesScopedListWarningData(o[1]); |
| 2667 } | 2688 } |
| 2668 | 2689 |
| 2669 core.int buildCounterForwardingRulesScopedListWarning = 0; | 2690 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 2670 buildForwardingRulesScopedListWarning() { | 2691 buildForwardingRulesScopedListWarning() { |
| 2671 var o = new api.ForwardingRulesScopedListWarning(); | 2692 var o = new api.ForwardingRulesScopedListWarning(); |
| 2672 buildCounterForwardingRulesScopedListWarning++; | 2693 buildCounterForwardingRulesScopedListWarning++; |
| 2673 if (buildCounterForwardingRulesScopedListWarning < 3) { | 2694 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 2674 o.code = "foo"; | 2695 o.code = "foo"; |
| 2675 o.data = buildUnnamed2239(); | 2696 o.data = buildUnnamed2273(); |
| 2676 o.message = "foo"; | 2697 o.message = "foo"; |
| 2677 } | 2698 } |
| 2678 buildCounterForwardingRulesScopedListWarning--; | 2699 buildCounterForwardingRulesScopedListWarning--; |
| 2679 return o; | 2700 return o; |
| 2680 } | 2701 } |
| 2681 | 2702 |
| 2682 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 2703 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 2683 buildCounterForwardingRulesScopedListWarning++; | 2704 buildCounterForwardingRulesScopedListWarning++; |
| 2684 if (buildCounterForwardingRulesScopedListWarning < 3) { | 2705 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 2685 unittest.expect(o.code, unittest.equals('foo')); | 2706 unittest.expect(o.code, unittest.equals('foo')); |
| 2686 checkUnnamed2239(o.data); | 2707 checkUnnamed2273(o.data); |
| 2687 unittest.expect(o.message, unittest.equals('foo')); | 2708 unittest.expect(o.message, unittest.equals('foo')); |
| 2688 } | 2709 } |
| 2689 buildCounterForwardingRulesScopedListWarning--; | 2710 buildCounterForwardingRulesScopedListWarning--; |
| 2690 } | 2711 } |
| 2691 | 2712 |
| 2692 core.int buildCounterForwardingRulesScopedList = 0; | 2713 core.int buildCounterForwardingRulesScopedList = 0; |
| 2693 buildForwardingRulesScopedList() { | 2714 buildForwardingRulesScopedList() { |
| 2694 var o = new api.ForwardingRulesScopedList(); | 2715 var o = new api.ForwardingRulesScopedList(); |
| 2695 buildCounterForwardingRulesScopedList++; | 2716 buildCounterForwardingRulesScopedList++; |
| 2696 if (buildCounterForwardingRulesScopedList < 3) { | 2717 if (buildCounterForwardingRulesScopedList < 3) { |
| 2697 o.forwardingRules = buildUnnamed2238(); | 2718 o.forwardingRules = buildUnnamed2272(); |
| 2698 o.warning = buildForwardingRulesScopedListWarning(); | 2719 o.warning = buildForwardingRulesScopedListWarning(); |
| 2699 } | 2720 } |
| 2700 buildCounterForwardingRulesScopedList--; | 2721 buildCounterForwardingRulesScopedList--; |
| 2701 return o; | 2722 return o; |
| 2702 } | 2723 } |
| 2703 | 2724 |
| 2704 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 2725 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 2705 buildCounterForwardingRulesScopedList++; | 2726 buildCounterForwardingRulesScopedList++; |
| 2706 if (buildCounterForwardingRulesScopedList < 3) { | 2727 if (buildCounterForwardingRulesScopedList < 3) { |
| 2707 checkUnnamed2238(o.forwardingRules); | 2728 checkUnnamed2272(o.forwardingRules); |
| 2708 checkForwardingRulesScopedListWarning(o.warning); | 2729 checkForwardingRulesScopedListWarning(o.warning); |
| 2709 } | 2730 } |
| 2710 buildCounterForwardingRulesScopedList--; | 2731 buildCounterForwardingRulesScopedList--; |
| 2711 } | 2732 } |
| 2712 | 2733 |
| 2713 buildUnnamed2240() { | 2734 buildUnnamed2274() { |
| 2714 var o = new core.Map<core.String, core.String>(); | 2735 var o = new core.Map<core.String, core.String>(); |
| 2715 o["x"] = "foo"; | 2736 o["x"] = "foo"; |
| 2716 o["y"] = "foo"; | 2737 o["y"] = "foo"; |
| 2717 return o; | 2738 return o; |
| 2718 } | 2739 } |
| 2719 | 2740 |
| 2720 checkUnnamed2240(core.Map<core.String, core.String> o) { | 2741 checkUnnamed2274(core.Map<core.String, core.String> o) { |
| 2721 unittest.expect(o, unittest.hasLength(2)); | 2742 unittest.expect(o, unittest.hasLength(2)); |
| 2722 unittest.expect(o["x"], unittest.equals('foo')); | 2743 unittest.expect(o["x"], unittest.equals('foo')); |
| 2723 unittest.expect(o["y"], unittest.equals('foo')); | 2744 unittest.expect(o["y"], unittest.equals('foo')); |
| 2724 } | 2745 } |
| 2725 | 2746 |
| 2726 core.int buildCounterGlobalSetLabelsRequest = 0; | 2747 core.int buildCounterGlobalSetLabelsRequest = 0; |
| 2727 buildGlobalSetLabelsRequest() { | 2748 buildGlobalSetLabelsRequest() { |
| 2728 var o = new api.GlobalSetLabelsRequest(); | 2749 var o = new api.GlobalSetLabelsRequest(); |
| 2729 buildCounterGlobalSetLabelsRequest++; | 2750 buildCounterGlobalSetLabelsRequest++; |
| 2730 if (buildCounterGlobalSetLabelsRequest < 3) { | 2751 if (buildCounterGlobalSetLabelsRequest < 3) { |
| 2731 o.labelFingerprint = "foo"; | 2752 o.labelFingerprint = "foo"; |
| 2732 o.labels = buildUnnamed2240(); | 2753 o.labels = buildUnnamed2274(); |
| 2733 } | 2754 } |
| 2734 buildCounterGlobalSetLabelsRequest--; | 2755 buildCounterGlobalSetLabelsRequest--; |
| 2735 return o; | 2756 return o; |
| 2736 } | 2757 } |
| 2737 | 2758 |
| 2738 checkGlobalSetLabelsRequest(api.GlobalSetLabelsRequest o) { | 2759 checkGlobalSetLabelsRequest(api.GlobalSetLabelsRequest o) { |
| 2739 buildCounterGlobalSetLabelsRequest++; | 2760 buildCounterGlobalSetLabelsRequest++; |
| 2740 if (buildCounterGlobalSetLabelsRequest < 3) { | 2761 if (buildCounterGlobalSetLabelsRequest < 3) { |
| 2741 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 2762 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 2742 checkUnnamed2240(o.labels); | 2763 checkUnnamed2274(o.labels); |
| 2743 } | 2764 } |
| 2744 buildCounterGlobalSetLabelsRequest--; | 2765 buildCounterGlobalSetLabelsRequest--; |
| 2745 } | 2766 } |
| 2746 | 2767 |
| 2747 core.int buildCounterGuestOsFeature = 0; | 2768 core.int buildCounterGuestOsFeature = 0; |
| 2748 buildGuestOsFeature() { | 2769 buildGuestOsFeature() { |
| 2749 var o = new api.GuestOsFeature(); | 2770 var o = new api.GuestOsFeature(); |
| 2750 buildCounterGuestOsFeature++; | 2771 buildCounterGuestOsFeature++; |
| 2751 if (buildCounterGuestOsFeature < 3) { | 2772 if (buildCounterGuestOsFeature < 3) { |
| 2752 o.type = "foo"; | 2773 o.type = "foo"; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2857 unittest.expect(o.selfLink, unittest.equals('foo')); | 2878 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2858 checkSSLHealthCheck(o.sslHealthCheck); | 2879 checkSSLHealthCheck(o.sslHealthCheck); |
| 2859 checkTCPHealthCheck(o.tcpHealthCheck); | 2880 checkTCPHealthCheck(o.tcpHealthCheck); |
| 2860 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2881 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2861 unittest.expect(o.type, unittest.equals('foo')); | 2882 unittest.expect(o.type, unittest.equals('foo')); |
| 2862 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2883 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2863 } | 2884 } |
| 2864 buildCounterHealthCheck--; | 2885 buildCounterHealthCheck--; |
| 2865 } | 2886 } |
| 2866 | 2887 |
| 2867 buildUnnamed2241() { | 2888 buildUnnamed2275() { |
| 2868 var o = new core.List<api.HealthCheck>(); | 2889 var o = new core.List<api.HealthCheck>(); |
| 2869 o.add(buildHealthCheck()); | 2890 o.add(buildHealthCheck()); |
| 2870 o.add(buildHealthCheck()); | 2891 o.add(buildHealthCheck()); |
| 2871 return o; | 2892 return o; |
| 2872 } | 2893 } |
| 2873 | 2894 |
| 2874 checkUnnamed2241(core.List<api.HealthCheck> o) { | 2895 checkUnnamed2275(core.List<api.HealthCheck> o) { |
| 2875 unittest.expect(o, unittest.hasLength(2)); | 2896 unittest.expect(o, unittest.hasLength(2)); |
| 2876 checkHealthCheck(o[0]); | 2897 checkHealthCheck(o[0]); |
| 2877 checkHealthCheck(o[1]); | 2898 checkHealthCheck(o[1]); |
| 2878 } | 2899 } |
| 2879 | 2900 |
| 2880 core.int buildCounterHealthCheckList = 0; | 2901 core.int buildCounterHealthCheckList = 0; |
| 2881 buildHealthCheckList() { | 2902 buildHealthCheckList() { |
| 2882 var o = new api.HealthCheckList(); | 2903 var o = new api.HealthCheckList(); |
| 2883 buildCounterHealthCheckList++; | 2904 buildCounterHealthCheckList++; |
| 2884 if (buildCounterHealthCheckList < 3) { | 2905 if (buildCounterHealthCheckList < 3) { |
| 2885 o.id = "foo"; | 2906 o.id = "foo"; |
| 2886 o.items = buildUnnamed2241(); | 2907 o.items = buildUnnamed2275(); |
| 2887 o.kind = "foo"; | 2908 o.kind = "foo"; |
| 2888 o.nextPageToken = "foo"; | 2909 o.nextPageToken = "foo"; |
| 2889 o.selfLink = "foo"; | 2910 o.selfLink = "foo"; |
| 2890 } | 2911 } |
| 2891 buildCounterHealthCheckList--; | 2912 buildCounterHealthCheckList--; |
| 2892 return o; | 2913 return o; |
| 2893 } | 2914 } |
| 2894 | 2915 |
| 2895 checkHealthCheckList(api.HealthCheckList o) { | 2916 checkHealthCheckList(api.HealthCheckList o) { |
| 2896 buildCounterHealthCheckList++; | 2917 buildCounterHealthCheckList++; |
| 2897 if (buildCounterHealthCheckList < 3) { | 2918 if (buildCounterHealthCheckList < 3) { |
| 2898 unittest.expect(o.id, unittest.equals('foo')); | 2919 unittest.expect(o.id, unittest.equals('foo')); |
| 2899 checkUnnamed2241(o.items); | 2920 checkUnnamed2275(o.items); |
| 2900 unittest.expect(o.kind, unittest.equals('foo')); | 2921 unittest.expect(o.kind, unittest.equals('foo')); |
| 2901 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2922 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2902 unittest.expect(o.selfLink, unittest.equals('foo')); | 2923 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2903 } | 2924 } |
| 2904 buildCounterHealthCheckList--; | 2925 buildCounterHealthCheckList--; |
| 2905 } | 2926 } |
| 2906 | 2927 |
| 2907 core.int buildCounterHealthCheckReference = 0; | 2928 core.int buildCounterHealthCheckReference = 0; |
| 2908 buildHealthCheckReference() { | 2929 buildHealthCheckReference() { |
| 2909 var o = new api.HealthCheckReference(); | 2930 var o = new api.HealthCheckReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2941 buildCounterHealthStatus++; | 2962 buildCounterHealthStatus++; |
| 2942 if (buildCounterHealthStatus < 3) { | 2963 if (buildCounterHealthStatus < 3) { |
| 2943 unittest.expect(o.healthState, unittest.equals('foo')); | 2964 unittest.expect(o.healthState, unittest.equals('foo')); |
| 2944 unittest.expect(o.instance, unittest.equals('foo')); | 2965 unittest.expect(o.instance, unittest.equals('foo')); |
| 2945 unittest.expect(o.ipAddress, unittest.equals('foo')); | 2966 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 2946 unittest.expect(o.port, unittest.equals(42)); | 2967 unittest.expect(o.port, unittest.equals(42)); |
| 2947 } | 2968 } |
| 2948 buildCounterHealthStatus--; | 2969 buildCounterHealthStatus--; |
| 2949 } | 2970 } |
| 2950 | 2971 |
| 2951 buildUnnamed2242() { | 2972 buildUnnamed2276() { |
| 2952 var o = new core.List<core.String>(); | 2973 var o = new core.List<core.String>(); |
| 2953 o.add("foo"); | 2974 o.add("foo"); |
| 2954 o.add("foo"); | 2975 o.add("foo"); |
| 2955 return o; | 2976 return o; |
| 2956 } | 2977 } |
| 2957 | 2978 |
| 2958 checkUnnamed2242(core.List<core.String> o) { | 2979 checkUnnamed2276(core.List<core.String> o) { |
| 2959 unittest.expect(o, unittest.hasLength(2)); | 2980 unittest.expect(o, unittest.hasLength(2)); |
| 2960 unittest.expect(o[0], unittest.equals('foo')); | 2981 unittest.expect(o[0], unittest.equals('foo')); |
| 2961 unittest.expect(o[1], unittest.equals('foo')); | 2982 unittest.expect(o[1], unittest.equals('foo')); |
| 2962 } | 2983 } |
| 2963 | 2984 |
| 2964 core.int buildCounterHostRule = 0; | 2985 core.int buildCounterHostRule = 0; |
| 2965 buildHostRule() { | 2986 buildHostRule() { |
| 2966 var o = new api.HostRule(); | 2987 var o = new api.HostRule(); |
| 2967 buildCounterHostRule++; | 2988 buildCounterHostRule++; |
| 2968 if (buildCounterHostRule < 3) { | 2989 if (buildCounterHostRule < 3) { |
| 2969 o.description = "foo"; | 2990 o.description = "foo"; |
| 2970 o.hosts = buildUnnamed2242(); | 2991 o.hosts = buildUnnamed2276(); |
| 2971 o.pathMatcher = "foo"; | 2992 o.pathMatcher = "foo"; |
| 2972 } | 2993 } |
| 2973 buildCounterHostRule--; | 2994 buildCounterHostRule--; |
| 2974 return o; | 2995 return o; |
| 2975 } | 2996 } |
| 2976 | 2997 |
| 2977 checkHostRule(api.HostRule o) { | 2998 checkHostRule(api.HostRule o) { |
| 2978 buildCounterHostRule++; | 2999 buildCounterHostRule++; |
| 2979 if (buildCounterHostRule < 3) { | 3000 if (buildCounterHostRule < 3) { |
| 2980 unittest.expect(o.description, unittest.equals('foo')); | 3001 unittest.expect(o.description, unittest.equals('foo')); |
| 2981 checkUnnamed2242(o.hosts); | 3002 checkUnnamed2276(o.hosts); |
| 2982 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 3003 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 2983 } | 3004 } |
| 2984 buildCounterHostRule--; | 3005 buildCounterHostRule--; |
| 2985 } | 3006 } |
| 2986 | 3007 |
| 2987 core.int buildCounterHttpHealthCheck = 0; | 3008 core.int buildCounterHttpHealthCheck = 0; |
| 2988 buildHttpHealthCheck() { | 3009 buildHttpHealthCheck() { |
| 2989 var o = new api.HttpHealthCheck(); | 3010 var o = new api.HttpHealthCheck(); |
| 2990 buildCounterHttpHealthCheck++; | 3011 buildCounterHttpHealthCheck++; |
| 2991 if (buildCounterHttpHealthCheck < 3) { | 3012 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 3020 unittest.expect(o.name, unittest.equals('foo')); | 3041 unittest.expect(o.name, unittest.equals('foo')); |
| 3021 unittest.expect(o.port, unittest.equals(42)); | 3042 unittest.expect(o.port, unittest.equals(42)); |
| 3022 unittest.expect(o.requestPath, unittest.equals('foo')); | 3043 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 3023 unittest.expect(o.selfLink, unittest.equals('foo')); | 3044 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3024 unittest.expect(o.timeoutSec, unittest.equals(42)); | 3045 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 3025 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 3046 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 3026 } | 3047 } |
| 3027 buildCounterHttpHealthCheck--; | 3048 buildCounterHttpHealthCheck--; |
| 3028 } | 3049 } |
| 3029 | 3050 |
| 3030 buildUnnamed2243() { | 3051 buildUnnamed2277() { |
| 3031 var o = new core.List<api.HttpHealthCheck>(); | 3052 var o = new core.List<api.HttpHealthCheck>(); |
| 3032 o.add(buildHttpHealthCheck()); | 3053 o.add(buildHttpHealthCheck()); |
| 3033 o.add(buildHttpHealthCheck()); | 3054 o.add(buildHttpHealthCheck()); |
| 3034 return o; | 3055 return o; |
| 3035 } | 3056 } |
| 3036 | 3057 |
| 3037 checkUnnamed2243(core.List<api.HttpHealthCheck> o) { | 3058 checkUnnamed2277(core.List<api.HttpHealthCheck> o) { |
| 3038 unittest.expect(o, unittest.hasLength(2)); | 3059 unittest.expect(o, unittest.hasLength(2)); |
| 3039 checkHttpHealthCheck(o[0]); | 3060 checkHttpHealthCheck(o[0]); |
| 3040 checkHttpHealthCheck(o[1]); | 3061 checkHttpHealthCheck(o[1]); |
| 3041 } | 3062 } |
| 3042 | 3063 |
| 3043 core.int buildCounterHttpHealthCheckList = 0; | 3064 core.int buildCounterHttpHealthCheckList = 0; |
| 3044 buildHttpHealthCheckList() { | 3065 buildHttpHealthCheckList() { |
| 3045 var o = new api.HttpHealthCheckList(); | 3066 var o = new api.HttpHealthCheckList(); |
| 3046 buildCounterHttpHealthCheckList++; | 3067 buildCounterHttpHealthCheckList++; |
| 3047 if (buildCounterHttpHealthCheckList < 3) { | 3068 if (buildCounterHttpHealthCheckList < 3) { |
| 3048 o.id = "foo"; | 3069 o.id = "foo"; |
| 3049 o.items = buildUnnamed2243(); | 3070 o.items = buildUnnamed2277(); |
| 3050 o.kind = "foo"; | 3071 o.kind = "foo"; |
| 3051 o.nextPageToken = "foo"; | 3072 o.nextPageToken = "foo"; |
| 3052 o.selfLink = "foo"; | 3073 o.selfLink = "foo"; |
| 3053 } | 3074 } |
| 3054 buildCounterHttpHealthCheckList--; | 3075 buildCounterHttpHealthCheckList--; |
| 3055 return o; | 3076 return o; |
| 3056 } | 3077 } |
| 3057 | 3078 |
| 3058 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 3079 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 3059 buildCounterHttpHealthCheckList++; | 3080 buildCounterHttpHealthCheckList++; |
| 3060 if (buildCounterHttpHealthCheckList < 3) { | 3081 if (buildCounterHttpHealthCheckList < 3) { |
| 3061 unittest.expect(o.id, unittest.equals('foo')); | 3082 unittest.expect(o.id, unittest.equals('foo')); |
| 3062 checkUnnamed2243(o.items); | 3083 checkUnnamed2277(o.items); |
| 3063 unittest.expect(o.kind, unittest.equals('foo')); | 3084 unittest.expect(o.kind, unittest.equals('foo')); |
| 3064 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3085 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3065 unittest.expect(o.selfLink, unittest.equals('foo')); | 3086 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3066 } | 3087 } |
| 3067 buildCounterHttpHealthCheckList--; | 3088 buildCounterHttpHealthCheckList--; |
| 3068 } | 3089 } |
| 3069 | 3090 |
| 3070 core.int buildCounterHttpsHealthCheck = 0; | 3091 core.int buildCounterHttpsHealthCheck = 0; |
| 3071 buildHttpsHealthCheck() { | 3092 buildHttpsHealthCheck() { |
| 3072 var o = new api.HttpsHealthCheck(); | 3093 var o = new api.HttpsHealthCheck(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 3103 unittest.expect(o.name, unittest.equals('foo')); | 3124 unittest.expect(o.name, unittest.equals('foo')); |
| 3104 unittest.expect(o.port, unittest.equals(42)); | 3125 unittest.expect(o.port, unittest.equals(42)); |
| 3105 unittest.expect(o.requestPath, unittest.equals('foo')); | 3126 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 3106 unittest.expect(o.selfLink, unittest.equals('foo')); | 3127 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3107 unittest.expect(o.timeoutSec, unittest.equals(42)); | 3128 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 3108 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 3129 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 3109 } | 3130 } |
| 3110 buildCounterHttpsHealthCheck--; | 3131 buildCounterHttpsHealthCheck--; |
| 3111 } | 3132 } |
| 3112 | 3133 |
| 3113 buildUnnamed2244() { | 3134 buildUnnamed2278() { |
| 3114 var o = new core.List<api.HttpsHealthCheck>(); | 3135 var o = new core.List<api.HttpsHealthCheck>(); |
| 3115 o.add(buildHttpsHealthCheck()); | 3136 o.add(buildHttpsHealthCheck()); |
| 3116 o.add(buildHttpsHealthCheck()); | 3137 o.add(buildHttpsHealthCheck()); |
| 3117 return o; | 3138 return o; |
| 3118 } | 3139 } |
| 3119 | 3140 |
| 3120 checkUnnamed2244(core.List<api.HttpsHealthCheck> o) { | 3141 checkUnnamed2278(core.List<api.HttpsHealthCheck> o) { |
| 3121 unittest.expect(o, unittest.hasLength(2)); | 3142 unittest.expect(o, unittest.hasLength(2)); |
| 3122 checkHttpsHealthCheck(o[0]); | 3143 checkHttpsHealthCheck(o[0]); |
| 3123 checkHttpsHealthCheck(o[1]); | 3144 checkHttpsHealthCheck(o[1]); |
| 3124 } | 3145 } |
| 3125 | 3146 |
| 3126 core.int buildCounterHttpsHealthCheckList = 0; | 3147 core.int buildCounterHttpsHealthCheckList = 0; |
| 3127 buildHttpsHealthCheckList() { | 3148 buildHttpsHealthCheckList() { |
| 3128 var o = new api.HttpsHealthCheckList(); | 3149 var o = new api.HttpsHealthCheckList(); |
| 3129 buildCounterHttpsHealthCheckList++; | 3150 buildCounterHttpsHealthCheckList++; |
| 3130 if (buildCounterHttpsHealthCheckList < 3) { | 3151 if (buildCounterHttpsHealthCheckList < 3) { |
| 3131 o.id = "foo"; | 3152 o.id = "foo"; |
| 3132 o.items = buildUnnamed2244(); | 3153 o.items = buildUnnamed2278(); |
| 3133 o.kind = "foo"; | 3154 o.kind = "foo"; |
| 3134 o.nextPageToken = "foo"; | 3155 o.nextPageToken = "foo"; |
| 3135 o.selfLink = "foo"; | 3156 o.selfLink = "foo"; |
| 3136 } | 3157 } |
| 3137 buildCounterHttpsHealthCheckList--; | 3158 buildCounterHttpsHealthCheckList--; |
| 3138 return o; | 3159 return o; |
| 3139 } | 3160 } |
| 3140 | 3161 |
| 3141 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { | 3162 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { |
| 3142 buildCounterHttpsHealthCheckList++; | 3163 buildCounterHttpsHealthCheckList++; |
| 3143 if (buildCounterHttpsHealthCheckList < 3) { | 3164 if (buildCounterHttpsHealthCheckList < 3) { |
| 3144 unittest.expect(o.id, unittest.equals('foo')); | 3165 unittest.expect(o.id, unittest.equals('foo')); |
| 3145 checkUnnamed2244(o.items); | 3166 checkUnnamed2278(o.items); |
| 3146 unittest.expect(o.kind, unittest.equals('foo')); | 3167 unittest.expect(o.kind, unittest.equals('foo')); |
| 3147 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3168 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3148 unittest.expect(o.selfLink, unittest.equals('foo')); | 3169 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3149 } | 3170 } |
| 3150 buildCounterHttpsHealthCheckList--; | 3171 buildCounterHttpsHealthCheckList--; |
| 3151 } | 3172 } |
| 3152 | 3173 |
| 3153 buildUnnamed2245() { | 3174 buildUnnamed2279() { |
| 3154 var o = new core.List<api.GuestOsFeature>(); | 3175 var o = new core.List<api.GuestOsFeature>(); |
| 3155 o.add(buildGuestOsFeature()); | 3176 o.add(buildGuestOsFeature()); |
| 3156 o.add(buildGuestOsFeature()); | 3177 o.add(buildGuestOsFeature()); |
| 3157 return o; | 3178 return o; |
| 3158 } | 3179 } |
| 3159 | 3180 |
| 3160 checkUnnamed2245(core.List<api.GuestOsFeature> o) { | 3181 checkUnnamed2279(core.List<api.GuestOsFeature> o) { |
| 3161 unittest.expect(o, unittest.hasLength(2)); | 3182 unittest.expect(o, unittest.hasLength(2)); |
| 3162 checkGuestOsFeature(o[0]); | 3183 checkGuestOsFeature(o[0]); |
| 3163 checkGuestOsFeature(o[1]); | 3184 checkGuestOsFeature(o[1]); |
| 3164 } | 3185 } |
| 3165 | 3186 |
| 3166 buildUnnamed2246() { | 3187 buildUnnamed2280() { |
| 3167 var o = new core.Map<core.String, core.String>(); | 3188 var o = new core.Map<core.String, core.String>(); |
| 3168 o["x"] = "foo"; | 3189 o["x"] = "foo"; |
| 3169 o["y"] = "foo"; | 3190 o["y"] = "foo"; |
| 3170 return o; | 3191 return o; |
| 3171 } | 3192 } |
| 3172 | 3193 |
| 3173 checkUnnamed2246(core.Map<core.String, core.String> o) { | 3194 checkUnnamed2280(core.Map<core.String, core.String> o) { |
| 3174 unittest.expect(o, unittest.hasLength(2)); | 3195 unittest.expect(o, unittest.hasLength(2)); |
| 3175 unittest.expect(o["x"], unittest.equals('foo')); | 3196 unittest.expect(o["x"], unittest.equals('foo')); |
| 3176 unittest.expect(o["y"], unittest.equals('foo')); | 3197 unittest.expect(o["y"], unittest.equals('foo')); |
| 3177 } | 3198 } |
| 3178 | 3199 |
| 3179 buildUnnamed2247() { | 3200 buildUnnamed2281() { |
| 3180 var o = new core.List<core.String>(); | 3201 var o = new core.List<core.String>(); |
| 3181 o.add("foo"); | 3202 o.add("foo"); |
| 3182 o.add("foo"); | 3203 o.add("foo"); |
| 3183 return o; | 3204 return o; |
| 3184 } | 3205 } |
| 3185 | 3206 |
| 3186 checkUnnamed2247(core.List<core.String> o) { | 3207 checkUnnamed2281(core.List<core.String> o) { |
| 3187 unittest.expect(o, unittest.hasLength(2)); | 3208 unittest.expect(o, unittest.hasLength(2)); |
| 3188 unittest.expect(o[0], unittest.equals('foo')); | 3209 unittest.expect(o[0], unittest.equals('foo')); |
| 3189 unittest.expect(o[1], unittest.equals('foo')); | 3210 unittest.expect(o[1], unittest.equals('foo')); |
| 3190 } | 3211 } |
| 3191 | 3212 |
| 3192 core.int buildCounterImageRawDisk = 0; | 3213 core.int buildCounterImageRawDisk = 0; |
| 3193 buildImageRawDisk() { | 3214 buildImageRawDisk() { |
| 3194 var o = new api.ImageRawDisk(); | 3215 var o = new api.ImageRawDisk(); |
| 3195 buildCounterImageRawDisk++; | 3216 buildCounterImageRawDisk++; |
| 3196 if (buildCounterImageRawDisk < 3) { | 3217 if (buildCounterImageRawDisk < 3) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 3216 buildImage() { | 3237 buildImage() { |
| 3217 var o = new api.Image(); | 3238 var o = new api.Image(); |
| 3218 buildCounterImage++; | 3239 buildCounterImage++; |
| 3219 if (buildCounterImage < 3) { | 3240 if (buildCounterImage < 3) { |
| 3220 o.archiveSizeBytes = "foo"; | 3241 o.archiveSizeBytes = "foo"; |
| 3221 o.creationTimestamp = "foo"; | 3242 o.creationTimestamp = "foo"; |
| 3222 o.deprecated = buildDeprecationStatus(); | 3243 o.deprecated = buildDeprecationStatus(); |
| 3223 o.description = "foo"; | 3244 o.description = "foo"; |
| 3224 o.diskSizeGb = "foo"; | 3245 o.diskSizeGb = "foo"; |
| 3225 o.family = "foo"; | 3246 o.family = "foo"; |
| 3226 o.guestOsFeatures = buildUnnamed2245(); | 3247 o.guestOsFeatures = buildUnnamed2279(); |
| 3227 o.id = "foo"; | 3248 o.id = "foo"; |
| 3228 o.imageEncryptionKey = buildCustomerEncryptionKey(); | 3249 o.imageEncryptionKey = buildCustomerEncryptionKey(); |
| 3229 o.kind = "foo"; | 3250 o.kind = "foo"; |
| 3230 o.labelFingerprint = "foo"; | 3251 o.labelFingerprint = "foo"; |
| 3231 o.labels = buildUnnamed2246(); | 3252 o.labels = buildUnnamed2280(); |
| 3232 o.licenses = buildUnnamed2247(); | 3253 o.licenses = buildUnnamed2281(); |
| 3233 o.name = "foo"; | 3254 o.name = "foo"; |
| 3234 o.rawDisk = buildImageRawDisk(); | 3255 o.rawDisk = buildImageRawDisk(); |
| 3235 o.selfLink = "foo"; | 3256 o.selfLink = "foo"; |
| 3236 o.sourceDisk = "foo"; | 3257 o.sourceDisk = "foo"; |
| 3237 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 3258 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 3238 o.sourceDiskId = "foo"; | 3259 o.sourceDiskId = "foo"; |
| 3239 o.sourceType = "foo"; | 3260 o.sourceType = "foo"; |
| 3240 o.status = "foo"; | 3261 o.status = "foo"; |
| 3241 } | 3262 } |
| 3242 buildCounterImage--; | 3263 buildCounterImage--; |
| 3243 return o; | 3264 return o; |
| 3244 } | 3265 } |
| 3245 | 3266 |
| 3246 checkImage(api.Image o) { | 3267 checkImage(api.Image o) { |
| 3247 buildCounterImage++; | 3268 buildCounterImage++; |
| 3248 if (buildCounterImage < 3) { | 3269 if (buildCounterImage < 3) { |
| 3249 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 3270 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 3250 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3271 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3251 checkDeprecationStatus(o.deprecated); | 3272 checkDeprecationStatus(o.deprecated); |
| 3252 unittest.expect(o.description, unittest.equals('foo')); | 3273 unittest.expect(o.description, unittest.equals('foo')); |
| 3253 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 3274 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 3254 unittest.expect(o.family, unittest.equals('foo')); | 3275 unittest.expect(o.family, unittest.equals('foo')); |
| 3255 checkUnnamed2245(o.guestOsFeatures); | 3276 checkUnnamed2279(o.guestOsFeatures); |
| 3256 unittest.expect(o.id, unittest.equals('foo')); | 3277 unittest.expect(o.id, unittest.equals('foo')); |
| 3257 checkCustomerEncryptionKey(o.imageEncryptionKey); | 3278 checkCustomerEncryptionKey(o.imageEncryptionKey); |
| 3258 unittest.expect(o.kind, unittest.equals('foo')); | 3279 unittest.expect(o.kind, unittest.equals('foo')); |
| 3259 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 3280 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 3260 checkUnnamed2246(o.labels); | 3281 checkUnnamed2280(o.labels); |
| 3261 checkUnnamed2247(o.licenses); | 3282 checkUnnamed2281(o.licenses); |
| 3262 unittest.expect(o.name, unittest.equals('foo')); | 3283 unittest.expect(o.name, unittest.equals('foo')); |
| 3263 checkImageRawDisk(o.rawDisk); | 3284 checkImageRawDisk(o.rawDisk); |
| 3264 unittest.expect(o.selfLink, unittest.equals('foo')); | 3285 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3265 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 3286 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 3266 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 3287 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 3267 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 3288 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 3268 unittest.expect(o.sourceType, unittest.equals('foo')); | 3289 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 3269 unittest.expect(o.status, unittest.equals('foo')); | 3290 unittest.expect(o.status, unittest.equals('foo')); |
| 3270 } | 3291 } |
| 3271 buildCounterImage--; | 3292 buildCounterImage--; |
| 3272 } | 3293 } |
| 3273 | 3294 |
| 3274 buildUnnamed2248() { | 3295 buildUnnamed2282() { |
| 3275 var o = new core.List<api.Image>(); | 3296 var o = new core.List<api.Image>(); |
| 3276 o.add(buildImage()); | 3297 o.add(buildImage()); |
| 3277 o.add(buildImage()); | 3298 o.add(buildImage()); |
| 3278 return o; | 3299 return o; |
| 3279 } | 3300 } |
| 3280 | 3301 |
| 3281 checkUnnamed2248(core.List<api.Image> o) { | 3302 checkUnnamed2282(core.List<api.Image> o) { |
| 3282 unittest.expect(o, unittest.hasLength(2)); | 3303 unittest.expect(o, unittest.hasLength(2)); |
| 3283 checkImage(o[0]); | 3304 checkImage(o[0]); |
| 3284 checkImage(o[1]); | 3305 checkImage(o[1]); |
| 3285 } | 3306 } |
| 3286 | 3307 |
| 3287 core.int buildCounterImageList = 0; | 3308 core.int buildCounterImageList = 0; |
| 3288 buildImageList() { | 3309 buildImageList() { |
| 3289 var o = new api.ImageList(); | 3310 var o = new api.ImageList(); |
| 3290 buildCounterImageList++; | 3311 buildCounterImageList++; |
| 3291 if (buildCounterImageList < 3) { | 3312 if (buildCounterImageList < 3) { |
| 3292 o.id = "foo"; | 3313 o.id = "foo"; |
| 3293 o.items = buildUnnamed2248(); | 3314 o.items = buildUnnamed2282(); |
| 3294 o.kind = "foo"; | 3315 o.kind = "foo"; |
| 3295 o.nextPageToken = "foo"; | 3316 o.nextPageToken = "foo"; |
| 3296 o.selfLink = "foo"; | 3317 o.selfLink = "foo"; |
| 3297 } | 3318 } |
| 3298 buildCounterImageList--; | 3319 buildCounterImageList--; |
| 3299 return o; | 3320 return o; |
| 3300 } | 3321 } |
| 3301 | 3322 |
| 3302 checkImageList(api.ImageList o) { | 3323 checkImageList(api.ImageList o) { |
| 3303 buildCounterImageList++; | 3324 buildCounterImageList++; |
| 3304 if (buildCounterImageList < 3) { | 3325 if (buildCounterImageList < 3) { |
| 3305 unittest.expect(o.id, unittest.equals('foo')); | 3326 unittest.expect(o.id, unittest.equals('foo')); |
| 3306 checkUnnamed2248(o.items); | 3327 checkUnnamed2282(o.items); |
| 3307 unittest.expect(o.kind, unittest.equals('foo')); | 3328 unittest.expect(o.kind, unittest.equals('foo')); |
| 3308 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3329 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3309 unittest.expect(o.selfLink, unittest.equals('foo')); | 3330 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3310 } | 3331 } |
| 3311 buildCounterImageList--; | 3332 buildCounterImageList--; |
| 3312 } | 3333 } |
| 3313 | 3334 |
| 3314 buildUnnamed2249() { | 3335 buildUnnamed2283() { |
| 3315 var o = new core.List<api.AttachedDisk>(); | 3336 var o = new core.List<api.AttachedDisk>(); |
| 3316 o.add(buildAttachedDisk()); | 3337 o.add(buildAttachedDisk()); |
| 3317 o.add(buildAttachedDisk()); | 3338 o.add(buildAttachedDisk()); |
| 3318 return o; | 3339 return o; |
| 3319 } | 3340 } |
| 3320 | 3341 |
| 3321 checkUnnamed2249(core.List<api.AttachedDisk> o) { | 3342 checkUnnamed2283(core.List<api.AttachedDisk> o) { |
| 3322 unittest.expect(o, unittest.hasLength(2)); | 3343 unittest.expect(o, unittest.hasLength(2)); |
| 3323 checkAttachedDisk(o[0]); | 3344 checkAttachedDisk(o[0]); |
| 3324 checkAttachedDisk(o[1]); | 3345 checkAttachedDisk(o[1]); |
| 3325 } | 3346 } |
| 3326 | 3347 |
| 3327 buildUnnamed2250() { | 3348 buildUnnamed2284() { |
| 3328 var o = new core.List<api.AcceleratorConfig>(); | 3349 var o = new core.List<api.AcceleratorConfig>(); |
| 3329 o.add(buildAcceleratorConfig()); | 3350 o.add(buildAcceleratorConfig()); |
| 3330 o.add(buildAcceleratorConfig()); | 3351 o.add(buildAcceleratorConfig()); |
| 3331 return o; | 3352 return o; |
| 3332 } | 3353 } |
| 3333 | 3354 |
| 3334 checkUnnamed2250(core.List<api.AcceleratorConfig> o) { | 3355 checkUnnamed2284(core.List<api.AcceleratorConfig> o) { |
| 3335 unittest.expect(o, unittest.hasLength(2)); | 3356 unittest.expect(o, unittest.hasLength(2)); |
| 3336 checkAcceleratorConfig(o[0]); | 3357 checkAcceleratorConfig(o[0]); |
| 3337 checkAcceleratorConfig(o[1]); | 3358 checkAcceleratorConfig(o[1]); |
| 3338 } | 3359 } |
| 3339 | 3360 |
| 3340 buildUnnamed2251() { | 3361 buildUnnamed2285() { |
| 3341 var o = new core.Map<core.String, core.String>(); | 3362 var o = new core.Map<core.String, core.String>(); |
| 3342 o["x"] = "foo"; | 3363 o["x"] = "foo"; |
| 3343 o["y"] = "foo"; | 3364 o["y"] = "foo"; |
| 3344 return o; | 3365 return o; |
| 3345 } | 3366 } |
| 3346 | 3367 |
| 3347 checkUnnamed2251(core.Map<core.String, core.String> o) { | 3368 checkUnnamed2285(core.Map<core.String, core.String> o) { |
| 3348 unittest.expect(o, unittest.hasLength(2)); | 3369 unittest.expect(o, unittest.hasLength(2)); |
| 3349 unittest.expect(o["x"], unittest.equals('foo')); | 3370 unittest.expect(o["x"], unittest.equals('foo')); |
| 3350 unittest.expect(o["y"], unittest.equals('foo')); | 3371 unittest.expect(o["y"], unittest.equals('foo')); |
| 3351 } | 3372 } |
| 3352 | 3373 |
| 3353 buildUnnamed2252() { | 3374 buildUnnamed2286() { |
| 3354 var o = new core.List<api.NetworkInterface>(); | 3375 var o = new core.List<api.NetworkInterface>(); |
| 3355 o.add(buildNetworkInterface()); | 3376 o.add(buildNetworkInterface()); |
| 3356 o.add(buildNetworkInterface()); | 3377 o.add(buildNetworkInterface()); |
| 3357 return o; | 3378 return o; |
| 3358 } | 3379 } |
| 3359 | 3380 |
| 3360 checkUnnamed2252(core.List<api.NetworkInterface> o) { | 3381 checkUnnamed2286(core.List<api.NetworkInterface> o) { |
| 3361 unittest.expect(o, unittest.hasLength(2)); | 3382 unittest.expect(o, unittest.hasLength(2)); |
| 3362 checkNetworkInterface(o[0]); | 3383 checkNetworkInterface(o[0]); |
| 3363 checkNetworkInterface(o[1]); | 3384 checkNetworkInterface(o[1]); |
| 3364 } | 3385 } |
| 3365 | 3386 |
| 3366 buildUnnamed2253() { | 3387 buildUnnamed2287() { |
| 3367 var o = new core.List<api.ServiceAccount>(); | 3388 var o = new core.List<api.ServiceAccount>(); |
| 3368 o.add(buildServiceAccount()); | 3389 o.add(buildServiceAccount()); |
| 3369 o.add(buildServiceAccount()); | 3390 o.add(buildServiceAccount()); |
| 3370 return o; | 3391 return o; |
| 3371 } | 3392 } |
| 3372 | 3393 |
| 3373 checkUnnamed2253(core.List<api.ServiceAccount> o) { | 3394 checkUnnamed2287(core.List<api.ServiceAccount> o) { |
| 3374 unittest.expect(o, unittest.hasLength(2)); | 3395 unittest.expect(o, unittest.hasLength(2)); |
| 3375 checkServiceAccount(o[0]); | 3396 checkServiceAccount(o[0]); |
| 3376 checkServiceAccount(o[1]); | 3397 checkServiceAccount(o[1]); |
| 3377 } | 3398 } |
| 3378 | 3399 |
| 3379 core.int buildCounterInstance = 0; | 3400 core.int buildCounterInstance = 0; |
| 3380 buildInstance() { | 3401 buildInstance() { |
| 3381 var o = new api.Instance(); | 3402 var o = new api.Instance(); |
| 3382 buildCounterInstance++; | 3403 buildCounterInstance++; |
| 3383 if (buildCounterInstance < 3) { | 3404 if (buildCounterInstance < 3) { |
| 3384 o.canIpForward = true; | 3405 o.canIpForward = true; |
| 3385 o.cpuPlatform = "foo"; | 3406 o.cpuPlatform = "foo"; |
| 3386 o.creationTimestamp = "foo"; | 3407 o.creationTimestamp = "foo"; |
| 3387 o.description = "foo"; | 3408 o.description = "foo"; |
| 3388 o.disks = buildUnnamed2249(); | 3409 o.disks = buildUnnamed2283(); |
| 3389 o.guestAccelerators = buildUnnamed2250(); | 3410 o.guestAccelerators = buildUnnamed2284(); |
| 3390 o.id = "foo"; | 3411 o.id = "foo"; |
| 3391 o.kind = "foo"; | 3412 o.kind = "foo"; |
| 3392 o.labelFingerprint = "foo"; | 3413 o.labelFingerprint = "foo"; |
| 3393 o.labels = buildUnnamed2251(); | 3414 o.labels = buildUnnamed2285(); |
| 3394 o.machineType = "foo"; | 3415 o.machineType = "foo"; |
| 3395 o.metadata = buildMetadata(); | 3416 o.metadata = buildMetadata(); |
| 3396 o.name = "foo"; | 3417 o.name = "foo"; |
| 3397 o.networkInterfaces = buildUnnamed2252(); | 3418 o.networkInterfaces = buildUnnamed2286(); |
| 3398 o.scheduling = buildScheduling(); | 3419 o.scheduling = buildScheduling(); |
| 3399 o.selfLink = "foo"; | 3420 o.selfLink = "foo"; |
| 3400 o.serviceAccounts = buildUnnamed2253(); | 3421 o.serviceAccounts = buildUnnamed2287(); |
| 3401 o.startRestricted = true; | 3422 o.startRestricted = true; |
| 3402 o.status = "foo"; | 3423 o.status = "foo"; |
| 3403 o.statusMessage = "foo"; | 3424 o.statusMessage = "foo"; |
| 3404 o.tags = buildTags(); | 3425 o.tags = buildTags(); |
| 3405 o.zone = "foo"; | 3426 o.zone = "foo"; |
| 3406 } | 3427 } |
| 3407 buildCounterInstance--; | 3428 buildCounterInstance--; |
| 3408 return o; | 3429 return o; |
| 3409 } | 3430 } |
| 3410 | 3431 |
| 3411 checkInstance(api.Instance o) { | 3432 checkInstance(api.Instance o) { |
| 3412 buildCounterInstance++; | 3433 buildCounterInstance++; |
| 3413 if (buildCounterInstance < 3) { | 3434 if (buildCounterInstance < 3) { |
| 3414 unittest.expect(o.canIpForward, unittest.isTrue); | 3435 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3415 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 3436 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 3416 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3437 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3417 unittest.expect(o.description, unittest.equals('foo')); | 3438 unittest.expect(o.description, unittest.equals('foo')); |
| 3418 checkUnnamed2249(o.disks); | 3439 checkUnnamed2283(o.disks); |
| 3419 checkUnnamed2250(o.guestAccelerators); | 3440 checkUnnamed2284(o.guestAccelerators); |
| 3420 unittest.expect(o.id, unittest.equals('foo')); | 3441 unittest.expect(o.id, unittest.equals('foo')); |
| 3421 unittest.expect(o.kind, unittest.equals('foo')); | 3442 unittest.expect(o.kind, unittest.equals('foo')); |
| 3422 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 3443 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 3423 checkUnnamed2251(o.labels); | 3444 checkUnnamed2285(o.labels); |
| 3424 unittest.expect(o.machineType, unittest.equals('foo')); | 3445 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3425 checkMetadata(o.metadata); | 3446 checkMetadata(o.metadata); |
| 3426 unittest.expect(o.name, unittest.equals('foo')); | 3447 unittest.expect(o.name, unittest.equals('foo')); |
| 3427 checkUnnamed2252(o.networkInterfaces); | 3448 checkUnnamed2286(o.networkInterfaces); |
| 3428 checkScheduling(o.scheduling); | 3449 checkScheduling(o.scheduling); |
| 3429 unittest.expect(o.selfLink, unittest.equals('foo')); | 3450 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3430 checkUnnamed2253(o.serviceAccounts); | 3451 checkUnnamed2287(o.serviceAccounts); |
| 3431 unittest.expect(o.startRestricted, unittest.isTrue); | 3452 unittest.expect(o.startRestricted, unittest.isTrue); |
| 3432 unittest.expect(o.status, unittest.equals('foo')); | 3453 unittest.expect(o.status, unittest.equals('foo')); |
| 3433 unittest.expect(o.statusMessage, unittest.equals('foo')); | 3454 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 3434 checkTags(o.tags); | 3455 checkTags(o.tags); |
| 3435 unittest.expect(o.zone, unittest.equals('foo')); | 3456 unittest.expect(o.zone, unittest.equals('foo')); |
| 3436 } | 3457 } |
| 3437 buildCounterInstance--; | 3458 buildCounterInstance--; |
| 3438 } | 3459 } |
| 3439 | 3460 |
| 3440 buildUnnamed2254() { | 3461 buildUnnamed2288() { |
| 3441 var o = new core.Map<core.String, api.InstancesScopedList>(); | 3462 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 3442 o["x"] = buildInstancesScopedList(); | 3463 o["x"] = buildInstancesScopedList(); |
| 3443 o["y"] = buildInstancesScopedList(); | 3464 o["y"] = buildInstancesScopedList(); |
| 3444 return o; | 3465 return o; |
| 3445 } | 3466 } |
| 3446 | 3467 |
| 3447 checkUnnamed2254(core.Map<core.String, api.InstancesScopedList> o) { | 3468 checkUnnamed2288(core.Map<core.String, api.InstancesScopedList> o) { |
| 3448 unittest.expect(o, unittest.hasLength(2)); | 3469 unittest.expect(o, unittest.hasLength(2)); |
| 3449 checkInstancesScopedList(o["x"]); | 3470 checkInstancesScopedList(o["x"]); |
| 3450 checkInstancesScopedList(o["y"]); | 3471 checkInstancesScopedList(o["y"]); |
| 3451 } | 3472 } |
| 3452 | 3473 |
| 3453 core.int buildCounterInstanceAggregatedList = 0; | 3474 core.int buildCounterInstanceAggregatedList = 0; |
| 3454 buildInstanceAggregatedList() { | 3475 buildInstanceAggregatedList() { |
| 3455 var o = new api.InstanceAggregatedList(); | 3476 var o = new api.InstanceAggregatedList(); |
| 3456 buildCounterInstanceAggregatedList++; | 3477 buildCounterInstanceAggregatedList++; |
| 3457 if (buildCounterInstanceAggregatedList < 3) { | 3478 if (buildCounterInstanceAggregatedList < 3) { |
| 3458 o.id = "foo"; | 3479 o.id = "foo"; |
| 3459 o.items = buildUnnamed2254(); | 3480 o.items = buildUnnamed2288(); |
| 3460 o.kind = "foo"; | 3481 o.kind = "foo"; |
| 3461 o.nextPageToken = "foo"; | 3482 o.nextPageToken = "foo"; |
| 3462 o.selfLink = "foo"; | 3483 o.selfLink = "foo"; |
| 3463 } | 3484 } |
| 3464 buildCounterInstanceAggregatedList--; | 3485 buildCounterInstanceAggregatedList--; |
| 3465 return o; | 3486 return o; |
| 3466 } | 3487 } |
| 3467 | 3488 |
| 3468 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 3489 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 3469 buildCounterInstanceAggregatedList++; | 3490 buildCounterInstanceAggregatedList++; |
| 3470 if (buildCounterInstanceAggregatedList < 3) { | 3491 if (buildCounterInstanceAggregatedList < 3) { |
| 3471 unittest.expect(o.id, unittest.equals('foo')); | 3492 unittest.expect(o.id, unittest.equals('foo')); |
| 3472 checkUnnamed2254(o.items); | 3493 checkUnnamed2288(o.items); |
| 3473 unittest.expect(o.kind, unittest.equals('foo')); | 3494 unittest.expect(o.kind, unittest.equals('foo')); |
| 3474 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3495 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3475 unittest.expect(o.selfLink, unittest.equals('foo')); | 3496 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3476 } | 3497 } |
| 3477 buildCounterInstanceAggregatedList--; | 3498 buildCounterInstanceAggregatedList--; |
| 3478 } | 3499 } |
| 3479 | 3500 |
| 3480 buildUnnamed2255() { | 3501 buildUnnamed2289() { |
| 3481 var o = new core.List<api.NamedPort>(); | 3502 var o = new core.List<api.NamedPort>(); |
| 3482 o.add(buildNamedPort()); | 3503 o.add(buildNamedPort()); |
| 3483 o.add(buildNamedPort()); | 3504 o.add(buildNamedPort()); |
| 3484 return o; | 3505 return o; |
| 3485 } | 3506 } |
| 3486 | 3507 |
| 3487 checkUnnamed2255(core.List<api.NamedPort> o) { | 3508 checkUnnamed2289(core.List<api.NamedPort> o) { |
| 3488 unittest.expect(o, unittest.hasLength(2)); | 3509 unittest.expect(o, unittest.hasLength(2)); |
| 3489 checkNamedPort(o[0]); | 3510 checkNamedPort(o[0]); |
| 3490 checkNamedPort(o[1]); | 3511 checkNamedPort(o[1]); |
| 3491 } | 3512 } |
| 3492 | 3513 |
| 3493 core.int buildCounterInstanceGroup = 0; | 3514 core.int buildCounterInstanceGroup = 0; |
| 3494 buildInstanceGroup() { | 3515 buildInstanceGroup() { |
| 3495 var o = new api.InstanceGroup(); | 3516 var o = new api.InstanceGroup(); |
| 3496 buildCounterInstanceGroup++; | 3517 buildCounterInstanceGroup++; |
| 3497 if (buildCounterInstanceGroup < 3) { | 3518 if (buildCounterInstanceGroup < 3) { |
| 3498 o.creationTimestamp = "foo"; | 3519 o.creationTimestamp = "foo"; |
| 3499 o.description = "foo"; | 3520 o.description = "foo"; |
| 3500 o.fingerprint = "foo"; | 3521 o.fingerprint = "foo"; |
| 3501 o.id = "foo"; | 3522 o.id = "foo"; |
| 3502 o.kind = "foo"; | 3523 o.kind = "foo"; |
| 3503 o.name = "foo"; | 3524 o.name = "foo"; |
| 3504 o.namedPorts = buildUnnamed2255(); | 3525 o.namedPorts = buildUnnamed2289(); |
| 3505 o.network = "foo"; | 3526 o.network = "foo"; |
| 3506 o.region = "foo"; | 3527 o.region = "foo"; |
| 3507 o.selfLink = "foo"; | 3528 o.selfLink = "foo"; |
| 3508 o.size = 42; | 3529 o.size = 42; |
| 3509 o.subnetwork = "foo"; | 3530 o.subnetwork = "foo"; |
| 3510 o.zone = "foo"; | 3531 o.zone = "foo"; |
| 3511 } | 3532 } |
| 3512 buildCounterInstanceGroup--; | 3533 buildCounterInstanceGroup--; |
| 3513 return o; | 3534 return o; |
| 3514 } | 3535 } |
| 3515 | 3536 |
| 3516 checkInstanceGroup(api.InstanceGroup o) { | 3537 checkInstanceGroup(api.InstanceGroup o) { |
| 3517 buildCounterInstanceGroup++; | 3538 buildCounterInstanceGroup++; |
| 3518 if (buildCounterInstanceGroup < 3) { | 3539 if (buildCounterInstanceGroup < 3) { |
| 3519 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3540 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3520 unittest.expect(o.description, unittest.equals('foo')); | 3541 unittest.expect(o.description, unittest.equals('foo')); |
| 3521 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3542 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3522 unittest.expect(o.id, unittest.equals('foo')); | 3543 unittest.expect(o.id, unittest.equals('foo')); |
| 3523 unittest.expect(o.kind, unittest.equals('foo')); | 3544 unittest.expect(o.kind, unittest.equals('foo')); |
| 3524 unittest.expect(o.name, unittest.equals('foo')); | 3545 unittest.expect(o.name, unittest.equals('foo')); |
| 3525 checkUnnamed2255(o.namedPorts); | 3546 checkUnnamed2289(o.namedPorts); |
| 3526 unittest.expect(o.network, unittest.equals('foo')); | 3547 unittest.expect(o.network, unittest.equals('foo')); |
| 3527 unittest.expect(o.region, unittest.equals('foo')); | 3548 unittest.expect(o.region, unittest.equals('foo')); |
| 3528 unittest.expect(o.selfLink, unittest.equals('foo')); | 3549 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3529 unittest.expect(o.size, unittest.equals(42)); | 3550 unittest.expect(o.size, unittest.equals(42)); |
| 3530 unittest.expect(o.subnetwork, unittest.equals('foo')); | 3551 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 3531 unittest.expect(o.zone, unittest.equals('foo')); | 3552 unittest.expect(o.zone, unittest.equals('foo')); |
| 3532 } | 3553 } |
| 3533 buildCounterInstanceGroup--; | 3554 buildCounterInstanceGroup--; |
| 3534 } | 3555 } |
| 3535 | 3556 |
| 3536 buildUnnamed2256() { | 3557 buildUnnamed2290() { |
| 3537 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 3558 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 3538 o["x"] = buildInstanceGroupsScopedList(); | 3559 o["x"] = buildInstanceGroupsScopedList(); |
| 3539 o["y"] = buildInstanceGroupsScopedList(); | 3560 o["y"] = buildInstanceGroupsScopedList(); |
| 3540 return o; | 3561 return o; |
| 3541 } | 3562 } |
| 3542 | 3563 |
| 3543 checkUnnamed2256(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 3564 checkUnnamed2290(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 3544 unittest.expect(o, unittest.hasLength(2)); | 3565 unittest.expect(o, unittest.hasLength(2)); |
| 3545 checkInstanceGroupsScopedList(o["x"]); | 3566 checkInstanceGroupsScopedList(o["x"]); |
| 3546 checkInstanceGroupsScopedList(o["y"]); | 3567 checkInstanceGroupsScopedList(o["y"]); |
| 3547 } | 3568 } |
| 3548 | 3569 |
| 3549 core.int buildCounterInstanceGroupAggregatedList = 0; | 3570 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 3550 buildInstanceGroupAggregatedList() { | 3571 buildInstanceGroupAggregatedList() { |
| 3551 var o = new api.InstanceGroupAggregatedList(); | 3572 var o = new api.InstanceGroupAggregatedList(); |
| 3552 buildCounterInstanceGroupAggregatedList++; | 3573 buildCounterInstanceGroupAggregatedList++; |
| 3553 if (buildCounterInstanceGroupAggregatedList < 3) { | 3574 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 3554 o.id = "foo"; | 3575 o.id = "foo"; |
| 3555 o.items = buildUnnamed2256(); | 3576 o.items = buildUnnamed2290(); |
| 3556 o.kind = "foo"; | 3577 o.kind = "foo"; |
| 3557 o.nextPageToken = "foo"; | 3578 o.nextPageToken = "foo"; |
| 3558 o.selfLink = "foo"; | 3579 o.selfLink = "foo"; |
| 3559 } | 3580 } |
| 3560 buildCounterInstanceGroupAggregatedList--; | 3581 buildCounterInstanceGroupAggregatedList--; |
| 3561 return o; | 3582 return o; |
| 3562 } | 3583 } |
| 3563 | 3584 |
| 3564 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 3585 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 3565 buildCounterInstanceGroupAggregatedList++; | 3586 buildCounterInstanceGroupAggregatedList++; |
| 3566 if (buildCounterInstanceGroupAggregatedList < 3) { | 3587 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 3567 unittest.expect(o.id, unittest.equals('foo')); | 3588 unittest.expect(o.id, unittest.equals('foo')); |
| 3568 checkUnnamed2256(o.items); | 3589 checkUnnamed2290(o.items); |
| 3569 unittest.expect(o.kind, unittest.equals('foo')); | 3590 unittest.expect(o.kind, unittest.equals('foo')); |
| 3570 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3591 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3571 unittest.expect(o.selfLink, unittest.equals('foo')); | 3592 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3572 } | 3593 } |
| 3573 buildCounterInstanceGroupAggregatedList--; | 3594 buildCounterInstanceGroupAggregatedList--; |
| 3574 } | 3595 } |
| 3575 | 3596 |
| 3576 buildUnnamed2257() { | 3597 buildUnnamed2291() { |
| 3577 var o = new core.List<api.InstanceGroup>(); | 3598 var o = new core.List<api.InstanceGroup>(); |
| 3578 o.add(buildInstanceGroup()); | 3599 o.add(buildInstanceGroup()); |
| 3579 o.add(buildInstanceGroup()); | 3600 o.add(buildInstanceGroup()); |
| 3580 return o; | 3601 return o; |
| 3581 } | 3602 } |
| 3582 | 3603 |
| 3583 checkUnnamed2257(core.List<api.InstanceGroup> o) { | 3604 checkUnnamed2291(core.List<api.InstanceGroup> o) { |
| 3584 unittest.expect(o, unittest.hasLength(2)); | 3605 unittest.expect(o, unittest.hasLength(2)); |
| 3585 checkInstanceGroup(o[0]); | 3606 checkInstanceGroup(o[0]); |
| 3586 checkInstanceGroup(o[1]); | 3607 checkInstanceGroup(o[1]); |
| 3587 } | 3608 } |
| 3588 | 3609 |
| 3589 core.int buildCounterInstanceGroupList = 0; | 3610 core.int buildCounterInstanceGroupList = 0; |
| 3590 buildInstanceGroupList() { | 3611 buildInstanceGroupList() { |
| 3591 var o = new api.InstanceGroupList(); | 3612 var o = new api.InstanceGroupList(); |
| 3592 buildCounterInstanceGroupList++; | 3613 buildCounterInstanceGroupList++; |
| 3593 if (buildCounterInstanceGroupList < 3) { | 3614 if (buildCounterInstanceGroupList < 3) { |
| 3594 o.id = "foo"; | 3615 o.id = "foo"; |
| 3595 o.items = buildUnnamed2257(); | 3616 o.items = buildUnnamed2291(); |
| 3596 o.kind = "foo"; | 3617 o.kind = "foo"; |
| 3597 o.nextPageToken = "foo"; | 3618 o.nextPageToken = "foo"; |
| 3598 o.selfLink = "foo"; | 3619 o.selfLink = "foo"; |
| 3599 } | 3620 } |
| 3600 buildCounterInstanceGroupList--; | 3621 buildCounterInstanceGroupList--; |
| 3601 return o; | 3622 return o; |
| 3602 } | 3623 } |
| 3603 | 3624 |
| 3604 checkInstanceGroupList(api.InstanceGroupList o) { | 3625 checkInstanceGroupList(api.InstanceGroupList o) { |
| 3605 buildCounterInstanceGroupList++; | 3626 buildCounterInstanceGroupList++; |
| 3606 if (buildCounterInstanceGroupList < 3) { | 3627 if (buildCounterInstanceGroupList < 3) { |
| 3607 unittest.expect(o.id, unittest.equals('foo')); | 3628 unittest.expect(o.id, unittest.equals('foo')); |
| 3608 checkUnnamed2257(o.items); | 3629 checkUnnamed2291(o.items); |
| 3609 unittest.expect(o.kind, unittest.equals('foo')); | 3630 unittest.expect(o.kind, unittest.equals('foo')); |
| 3610 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3631 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3611 unittest.expect(o.selfLink, unittest.equals('foo')); | 3632 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3612 } | 3633 } |
| 3613 buildCounterInstanceGroupList--; | 3634 buildCounterInstanceGroupList--; |
| 3614 } | 3635 } |
| 3615 | 3636 |
| 3616 buildUnnamed2258() { | 3637 buildUnnamed2292() { |
| 3617 var o = new core.List<api.NamedPort>(); | 3638 var o = new core.List<api.NamedPort>(); |
| 3618 o.add(buildNamedPort()); | 3639 o.add(buildNamedPort()); |
| 3619 o.add(buildNamedPort()); | 3640 o.add(buildNamedPort()); |
| 3620 return o; | 3641 return o; |
| 3621 } | 3642 } |
| 3622 | 3643 |
| 3623 checkUnnamed2258(core.List<api.NamedPort> o) { | 3644 checkUnnamed2292(core.List<api.NamedPort> o) { |
| 3624 unittest.expect(o, unittest.hasLength(2)); | 3645 unittest.expect(o, unittest.hasLength(2)); |
| 3625 checkNamedPort(o[0]); | 3646 checkNamedPort(o[0]); |
| 3626 checkNamedPort(o[1]); | 3647 checkNamedPort(o[1]); |
| 3627 } | 3648 } |
| 3628 | 3649 |
| 3629 buildUnnamed2259() { | 3650 buildUnnamed2293() { |
| 3630 var o = new core.List<core.String>(); | 3651 var o = new core.List<core.String>(); |
| 3631 o.add("foo"); | 3652 o.add("foo"); |
| 3632 o.add("foo"); | 3653 o.add("foo"); |
| 3633 return o; | 3654 return o; |
| 3634 } | 3655 } |
| 3635 | 3656 |
| 3636 checkUnnamed2259(core.List<core.String> o) { | 3657 checkUnnamed2293(core.List<core.String> o) { |
| 3637 unittest.expect(o, unittest.hasLength(2)); | 3658 unittest.expect(o, unittest.hasLength(2)); |
| 3638 unittest.expect(o[0], unittest.equals('foo')); | 3659 unittest.expect(o[0], unittest.equals('foo')); |
| 3639 unittest.expect(o[1], unittest.equals('foo')); | 3660 unittest.expect(o[1], unittest.equals('foo')); |
| 3640 } | 3661 } |
| 3641 | 3662 |
| 3642 core.int buildCounterInstanceGroupManager = 0; | 3663 core.int buildCounterInstanceGroupManager = 0; |
| 3643 buildInstanceGroupManager() { | 3664 buildInstanceGroupManager() { |
| 3644 var o = new api.InstanceGroupManager(); | 3665 var o = new api.InstanceGroupManager(); |
| 3645 buildCounterInstanceGroupManager++; | 3666 buildCounterInstanceGroupManager++; |
| 3646 if (buildCounterInstanceGroupManager < 3) { | 3667 if (buildCounterInstanceGroupManager < 3) { |
| 3647 o.baseInstanceName = "foo"; | 3668 o.baseInstanceName = "foo"; |
| 3648 o.creationTimestamp = "foo"; | 3669 o.creationTimestamp = "foo"; |
| 3649 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 3670 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 3650 o.description = "foo"; | 3671 o.description = "foo"; |
| 3651 o.fingerprint = "foo"; | 3672 o.fingerprint = "foo"; |
| 3652 o.id = "foo"; | 3673 o.id = "foo"; |
| 3653 o.instanceGroup = "foo"; | 3674 o.instanceGroup = "foo"; |
| 3654 o.instanceTemplate = "foo"; | 3675 o.instanceTemplate = "foo"; |
| 3655 o.kind = "foo"; | 3676 o.kind = "foo"; |
| 3656 o.name = "foo"; | 3677 o.name = "foo"; |
| 3657 o.namedPorts = buildUnnamed2258(); | 3678 o.namedPorts = buildUnnamed2292(); |
| 3658 o.region = "foo"; | 3679 o.region = "foo"; |
| 3659 o.selfLink = "foo"; | 3680 o.selfLink = "foo"; |
| 3660 o.targetPools = buildUnnamed2259(); | 3681 o.targetPools = buildUnnamed2293(); |
| 3661 o.targetSize = 42; | 3682 o.targetSize = 42; |
| 3662 o.zone = "foo"; | 3683 o.zone = "foo"; |
| 3663 } | 3684 } |
| 3664 buildCounterInstanceGroupManager--; | 3685 buildCounterInstanceGroupManager--; |
| 3665 return o; | 3686 return o; |
| 3666 } | 3687 } |
| 3667 | 3688 |
| 3668 checkInstanceGroupManager(api.InstanceGroupManager o) { | 3689 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 3669 buildCounterInstanceGroupManager++; | 3690 buildCounterInstanceGroupManager++; |
| 3670 if (buildCounterInstanceGroupManager < 3) { | 3691 if (buildCounterInstanceGroupManager < 3) { |
| 3671 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 3692 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 3672 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3693 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3673 checkInstanceGroupManagerActionsSummary(o.currentActions); | 3694 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 3674 unittest.expect(o.description, unittest.equals('foo')); | 3695 unittest.expect(o.description, unittest.equals('foo')); |
| 3675 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3696 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3676 unittest.expect(o.id, unittest.equals('foo')); | 3697 unittest.expect(o.id, unittest.equals('foo')); |
| 3677 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 3698 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 3678 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 3699 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 3679 unittest.expect(o.kind, unittest.equals('foo')); | 3700 unittest.expect(o.kind, unittest.equals('foo')); |
| 3680 unittest.expect(o.name, unittest.equals('foo')); | 3701 unittest.expect(o.name, unittest.equals('foo')); |
| 3681 checkUnnamed2258(o.namedPorts); | 3702 checkUnnamed2292(o.namedPorts); |
| 3682 unittest.expect(o.region, unittest.equals('foo')); | 3703 unittest.expect(o.region, unittest.equals('foo')); |
| 3683 unittest.expect(o.selfLink, unittest.equals('foo')); | 3704 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3684 checkUnnamed2259(o.targetPools); | 3705 checkUnnamed2293(o.targetPools); |
| 3685 unittest.expect(o.targetSize, unittest.equals(42)); | 3706 unittest.expect(o.targetSize, unittest.equals(42)); |
| 3686 unittest.expect(o.zone, unittest.equals('foo')); | 3707 unittest.expect(o.zone, unittest.equals('foo')); |
| 3687 } | 3708 } |
| 3688 buildCounterInstanceGroupManager--; | 3709 buildCounterInstanceGroupManager--; |
| 3689 } | 3710 } |
| 3690 | 3711 |
| 3691 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 3712 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 3692 buildInstanceGroupManagerActionsSummary() { | 3713 buildInstanceGroupManagerActionsSummary() { |
| 3693 var o = new api.InstanceGroupManagerActionsSummary(); | 3714 var o = new api.InstanceGroupManagerActionsSummary(); |
| 3694 buildCounterInstanceGroupManagerActionsSummary++; | 3715 buildCounterInstanceGroupManagerActionsSummary++; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 3714 unittest.expect(o.creatingWithoutRetries, unittest.equals(42)); | 3735 unittest.expect(o.creatingWithoutRetries, unittest.equals(42)); |
| 3715 unittest.expect(o.deleting, unittest.equals(42)); | 3736 unittest.expect(o.deleting, unittest.equals(42)); |
| 3716 unittest.expect(o.none, unittest.equals(42)); | 3737 unittest.expect(o.none, unittest.equals(42)); |
| 3717 unittest.expect(o.recreating, unittest.equals(42)); | 3738 unittest.expect(o.recreating, unittest.equals(42)); |
| 3718 unittest.expect(o.refreshing, unittest.equals(42)); | 3739 unittest.expect(o.refreshing, unittest.equals(42)); |
| 3719 unittest.expect(o.restarting, unittest.equals(42)); | 3740 unittest.expect(o.restarting, unittest.equals(42)); |
| 3720 } | 3741 } |
| 3721 buildCounterInstanceGroupManagerActionsSummary--; | 3742 buildCounterInstanceGroupManagerActionsSummary--; |
| 3722 } | 3743 } |
| 3723 | 3744 |
| 3724 buildUnnamed2260() { | 3745 buildUnnamed2294() { |
| 3725 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 3746 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 3726 o["x"] = buildInstanceGroupManagersScopedList(); | 3747 o["x"] = buildInstanceGroupManagersScopedList(); |
| 3727 o["y"] = buildInstanceGroupManagersScopedList(); | 3748 o["y"] = buildInstanceGroupManagersScopedList(); |
| 3728 return o; | 3749 return o; |
| 3729 } | 3750 } |
| 3730 | 3751 |
| 3731 checkUnnamed2260(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 3752 checkUnnamed2294(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 3732 unittest.expect(o, unittest.hasLength(2)); | 3753 unittest.expect(o, unittest.hasLength(2)); |
| 3733 checkInstanceGroupManagersScopedList(o["x"]); | 3754 checkInstanceGroupManagersScopedList(o["x"]); |
| 3734 checkInstanceGroupManagersScopedList(o["y"]); | 3755 checkInstanceGroupManagersScopedList(o["y"]); |
| 3735 } | 3756 } |
| 3736 | 3757 |
| 3737 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 3758 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 3738 buildInstanceGroupManagerAggregatedList() { | 3759 buildInstanceGroupManagerAggregatedList() { |
| 3739 var o = new api.InstanceGroupManagerAggregatedList(); | 3760 var o = new api.InstanceGroupManagerAggregatedList(); |
| 3740 buildCounterInstanceGroupManagerAggregatedList++; | 3761 buildCounterInstanceGroupManagerAggregatedList++; |
| 3741 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 3762 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 3742 o.id = "foo"; | 3763 o.id = "foo"; |
| 3743 o.items = buildUnnamed2260(); | 3764 o.items = buildUnnamed2294(); |
| 3744 o.kind = "foo"; | 3765 o.kind = "foo"; |
| 3745 o.nextPageToken = "foo"; | 3766 o.nextPageToken = "foo"; |
| 3746 o.selfLink = "foo"; | 3767 o.selfLink = "foo"; |
| 3747 } | 3768 } |
| 3748 buildCounterInstanceGroupManagerAggregatedList--; | 3769 buildCounterInstanceGroupManagerAggregatedList--; |
| 3749 return o; | 3770 return o; |
| 3750 } | 3771 } |
| 3751 | 3772 |
| 3752 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 3773 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 3753 buildCounterInstanceGroupManagerAggregatedList++; | 3774 buildCounterInstanceGroupManagerAggregatedList++; |
| 3754 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 3775 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 3755 unittest.expect(o.id, unittest.equals('foo')); | 3776 unittest.expect(o.id, unittest.equals('foo')); |
| 3756 checkUnnamed2260(o.items); | 3777 checkUnnamed2294(o.items); |
| 3757 unittest.expect(o.kind, unittest.equals('foo')); | 3778 unittest.expect(o.kind, unittest.equals('foo')); |
| 3758 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3779 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3759 unittest.expect(o.selfLink, unittest.equals('foo')); | 3780 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3760 } | 3781 } |
| 3761 buildCounterInstanceGroupManagerAggregatedList--; | 3782 buildCounterInstanceGroupManagerAggregatedList--; |
| 3762 } | 3783 } |
| 3763 | 3784 |
| 3764 buildUnnamed2261() { | 3785 buildUnnamed2295() { |
| 3765 var o = new core.List<api.InstanceGroupManager>(); | 3786 var o = new core.List<api.InstanceGroupManager>(); |
| 3766 o.add(buildInstanceGroupManager()); | 3787 o.add(buildInstanceGroupManager()); |
| 3767 o.add(buildInstanceGroupManager()); | 3788 o.add(buildInstanceGroupManager()); |
| 3768 return o; | 3789 return o; |
| 3769 } | 3790 } |
| 3770 | 3791 |
| 3771 checkUnnamed2261(core.List<api.InstanceGroupManager> o) { | 3792 checkUnnamed2295(core.List<api.InstanceGroupManager> o) { |
| 3772 unittest.expect(o, unittest.hasLength(2)); | 3793 unittest.expect(o, unittest.hasLength(2)); |
| 3773 checkInstanceGroupManager(o[0]); | 3794 checkInstanceGroupManager(o[0]); |
| 3774 checkInstanceGroupManager(o[1]); | 3795 checkInstanceGroupManager(o[1]); |
| 3775 } | 3796 } |
| 3776 | 3797 |
| 3777 core.int buildCounterInstanceGroupManagerList = 0; | 3798 core.int buildCounterInstanceGroupManagerList = 0; |
| 3778 buildInstanceGroupManagerList() { | 3799 buildInstanceGroupManagerList() { |
| 3779 var o = new api.InstanceGroupManagerList(); | 3800 var o = new api.InstanceGroupManagerList(); |
| 3780 buildCounterInstanceGroupManagerList++; | 3801 buildCounterInstanceGroupManagerList++; |
| 3781 if (buildCounterInstanceGroupManagerList < 3) { | 3802 if (buildCounterInstanceGroupManagerList < 3) { |
| 3782 o.id = "foo"; | 3803 o.id = "foo"; |
| 3783 o.items = buildUnnamed2261(); | 3804 o.items = buildUnnamed2295(); |
| 3784 o.kind = "foo"; | 3805 o.kind = "foo"; |
| 3785 o.nextPageToken = "foo"; | 3806 o.nextPageToken = "foo"; |
| 3786 o.selfLink = "foo"; | 3807 o.selfLink = "foo"; |
| 3787 } | 3808 } |
| 3788 buildCounterInstanceGroupManagerList--; | 3809 buildCounterInstanceGroupManagerList--; |
| 3789 return o; | 3810 return o; |
| 3790 } | 3811 } |
| 3791 | 3812 |
| 3792 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 3813 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 3793 buildCounterInstanceGroupManagerList++; | 3814 buildCounterInstanceGroupManagerList++; |
| 3794 if (buildCounterInstanceGroupManagerList < 3) { | 3815 if (buildCounterInstanceGroupManagerList < 3) { |
| 3795 unittest.expect(o.id, unittest.equals('foo')); | 3816 unittest.expect(o.id, unittest.equals('foo')); |
| 3796 checkUnnamed2261(o.items); | 3817 checkUnnamed2295(o.items); |
| 3797 unittest.expect(o.kind, unittest.equals('foo')); | 3818 unittest.expect(o.kind, unittest.equals('foo')); |
| 3798 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3819 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3799 unittest.expect(o.selfLink, unittest.equals('foo')); | 3820 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3800 } | 3821 } |
| 3801 buildCounterInstanceGroupManagerList--; | 3822 buildCounterInstanceGroupManagerList--; |
| 3802 } | 3823 } |
| 3803 | 3824 |
| 3804 buildUnnamed2262() { | 3825 buildUnnamed2296() { |
| 3805 var o = new core.List<core.String>(); | 3826 var o = new core.List<core.String>(); |
| 3806 o.add("foo"); | 3827 o.add("foo"); |
| 3807 o.add("foo"); | 3828 o.add("foo"); |
| 3808 return o; | 3829 return o; |
| 3809 } | 3830 } |
| 3810 | 3831 |
| 3811 checkUnnamed2262(core.List<core.String> o) { | 3832 checkUnnamed2296(core.List<core.String> o) { |
| 3812 unittest.expect(o, unittest.hasLength(2)); | 3833 unittest.expect(o, unittest.hasLength(2)); |
| 3813 unittest.expect(o[0], unittest.equals('foo')); | 3834 unittest.expect(o[0], unittest.equals('foo')); |
| 3814 unittest.expect(o[1], unittest.equals('foo')); | 3835 unittest.expect(o[1], unittest.equals('foo')); |
| 3815 } | 3836 } |
| 3816 | 3837 |
| 3817 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 3838 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 3818 buildInstanceGroupManagersAbandonInstancesRequest() { | 3839 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 3819 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 3840 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 3820 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 3841 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 3821 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 3842 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 3822 o.instances = buildUnnamed2262(); | 3843 o.instances = buildUnnamed2296(); |
| 3823 } | 3844 } |
| 3824 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 3845 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 3825 return o; | 3846 return o; |
| 3826 } | 3847 } |
| 3827 | 3848 |
| 3828 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 3849 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 3829 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 3850 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 3830 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 3851 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 3831 checkUnnamed2262(o.instances); | 3852 checkUnnamed2296(o.instances); |
| 3832 } | 3853 } |
| 3833 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 3854 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 3834 } | 3855 } |
| 3835 | 3856 |
| 3836 buildUnnamed2263() { | 3857 buildUnnamed2297() { |
| 3837 var o = new core.List<core.String>(); | 3858 var o = new core.List<core.String>(); |
| 3838 o.add("foo"); | 3859 o.add("foo"); |
| 3839 o.add("foo"); | 3860 o.add("foo"); |
| 3840 return o; | 3861 return o; |
| 3841 } | 3862 } |
| 3842 | 3863 |
| 3843 checkUnnamed2263(core.List<core.String> o) { | 3864 checkUnnamed2297(core.List<core.String> o) { |
| 3844 unittest.expect(o, unittest.hasLength(2)); | 3865 unittest.expect(o, unittest.hasLength(2)); |
| 3845 unittest.expect(o[0], unittest.equals('foo')); | 3866 unittest.expect(o[0], unittest.equals('foo')); |
| 3846 unittest.expect(o[1], unittest.equals('foo')); | 3867 unittest.expect(o[1], unittest.equals('foo')); |
| 3847 } | 3868 } |
| 3848 | 3869 |
| 3849 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 3870 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 3850 buildInstanceGroupManagersDeleteInstancesRequest() { | 3871 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 3851 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 3872 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 3852 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 3873 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 3853 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 3874 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 3854 o.instances = buildUnnamed2263(); | 3875 o.instances = buildUnnamed2297(); |
| 3855 } | 3876 } |
| 3856 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 3877 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 3857 return o; | 3878 return o; |
| 3858 } | 3879 } |
| 3859 | 3880 |
| 3860 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 3881 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 3861 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 3882 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 3862 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 3883 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 3863 checkUnnamed2263(o.instances); | 3884 checkUnnamed2297(o.instances); |
| 3864 } | 3885 } |
| 3865 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 3886 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 3866 } | 3887 } |
| 3867 | 3888 |
| 3868 buildUnnamed2264() { | 3889 buildUnnamed2298() { |
| 3869 var o = new core.List<api.ManagedInstance>(); | 3890 var o = new core.List<api.ManagedInstance>(); |
| 3870 o.add(buildManagedInstance()); | 3891 o.add(buildManagedInstance()); |
| 3871 o.add(buildManagedInstance()); | 3892 o.add(buildManagedInstance()); |
| 3872 return o; | 3893 return o; |
| 3873 } | 3894 } |
| 3874 | 3895 |
| 3875 checkUnnamed2264(core.List<api.ManagedInstance> o) { | 3896 checkUnnamed2298(core.List<api.ManagedInstance> o) { |
| 3876 unittest.expect(o, unittest.hasLength(2)); | 3897 unittest.expect(o, unittest.hasLength(2)); |
| 3877 checkManagedInstance(o[0]); | 3898 checkManagedInstance(o[0]); |
| 3878 checkManagedInstance(o[1]); | 3899 checkManagedInstance(o[1]); |
| 3879 } | 3900 } |
| 3880 | 3901 |
| 3881 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 3902 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 3882 buildInstanceGroupManagersListManagedInstancesResponse() { | 3903 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 3883 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 3904 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 3884 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 3905 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 3885 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 3906 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 3886 o.managedInstances = buildUnnamed2264(); | 3907 o.managedInstances = buildUnnamed2298(); |
| 3887 } | 3908 } |
| 3888 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 3909 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 3889 return o; | 3910 return o; |
| 3890 } | 3911 } |
| 3891 | 3912 |
| 3892 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 3913 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 3893 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 3914 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 3894 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 3915 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 3895 checkUnnamed2264(o.managedInstances); | 3916 checkUnnamed2298(o.managedInstances); |
| 3896 } | 3917 } |
| 3897 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 3918 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 3898 } | 3919 } |
| 3899 | 3920 |
| 3900 buildUnnamed2265() { | 3921 buildUnnamed2299() { |
| 3901 var o = new core.List<core.String>(); | 3922 var o = new core.List<core.String>(); |
| 3902 o.add("foo"); | 3923 o.add("foo"); |
| 3903 o.add("foo"); | 3924 o.add("foo"); |
| 3904 return o; | 3925 return o; |
| 3905 } | 3926 } |
| 3906 | 3927 |
| 3907 checkUnnamed2265(core.List<core.String> o) { | 3928 checkUnnamed2299(core.List<core.String> o) { |
| 3908 unittest.expect(o, unittest.hasLength(2)); | 3929 unittest.expect(o, unittest.hasLength(2)); |
| 3909 unittest.expect(o[0], unittest.equals('foo')); | 3930 unittest.expect(o[0], unittest.equals('foo')); |
| 3910 unittest.expect(o[1], unittest.equals('foo')); | 3931 unittest.expect(o[1], unittest.equals('foo')); |
| 3911 } | 3932 } |
| 3912 | 3933 |
| 3913 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 3934 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 3914 buildInstanceGroupManagersRecreateInstancesRequest() { | 3935 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 3915 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 3936 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 3916 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 3937 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 3917 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 3938 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 3918 o.instances = buildUnnamed2265(); | 3939 o.instances = buildUnnamed2299(); |
| 3919 } | 3940 } |
| 3920 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 3941 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 3921 return o; | 3942 return o; |
| 3922 } | 3943 } |
| 3923 | 3944 |
| 3924 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 3945 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 3925 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 3946 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 3926 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 3947 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 3927 checkUnnamed2265(o.instances); | 3948 checkUnnamed2299(o.instances); |
| 3928 } | 3949 } |
| 3929 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 3950 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 3930 } | 3951 } |
| 3931 | 3952 |
| 3932 buildUnnamed2266() { | 3953 buildUnnamed2300() { |
| 3933 var o = new core.List<api.InstanceGroupManager>(); | 3954 var o = new core.List<api.InstanceGroupManager>(); |
| 3934 o.add(buildInstanceGroupManager()); | 3955 o.add(buildInstanceGroupManager()); |
| 3935 o.add(buildInstanceGroupManager()); | 3956 o.add(buildInstanceGroupManager()); |
| 3936 return o; | 3957 return o; |
| 3937 } | 3958 } |
| 3938 | 3959 |
| 3939 checkUnnamed2266(core.List<api.InstanceGroupManager> o) { | 3960 checkUnnamed2300(core.List<api.InstanceGroupManager> o) { |
| 3940 unittest.expect(o, unittest.hasLength(2)); | 3961 unittest.expect(o, unittest.hasLength(2)); |
| 3941 checkInstanceGroupManager(o[0]); | 3962 checkInstanceGroupManager(o[0]); |
| 3942 checkInstanceGroupManager(o[1]); | 3963 checkInstanceGroupManager(o[1]); |
| 3943 } | 3964 } |
| 3944 | 3965 |
| 3945 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 3966 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 3946 buildInstanceGroupManagersScopedListWarningData() { | 3967 buildInstanceGroupManagersScopedListWarningData() { |
| 3947 var o = new api.InstanceGroupManagersScopedListWarningData(); | 3968 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 3948 buildCounterInstanceGroupManagersScopedListWarningData++; | 3969 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 3949 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 3970 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 3950 o.key = "foo"; | 3971 o.key = "foo"; |
| 3951 o.value = "foo"; | 3972 o.value = "foo"; |
| 3952 } | 3973 } |
| 3953 buildCounterInstanceGroupManagersScopedListWarningData--; | 3974 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 3954 return o; | 3975 return o; |
| 3955 } | 3976 } |
| 3956 | 3977 |
| 3957 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 3978 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 3958 buildCounterInstanceGroupManagersScopedListWarningData++; | 3979 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 3959 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 3980 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 3960 unittest.expect(o.key, unittest.equals('foo')); | 3981 unittest.expect(o.key, unittest.equals('foo')); |
| 3961 unittest.expect(o.value, unittest.equals('foo')); | 3982 unittest.expect(o.value, unittest.equals('foo')); |
| 3962 } | 3983 } |
| 3963 buildCounterInstanceGroupManagersScopedListWarningData--; | 3984 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 3964 } | 3985 } |
| 3965 | 3986 |
| 3966 buildUnnamed2267() { | 3987 buildUnnamed2301() { |
| 3967 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 3988 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 3968 o.add(buildInstanceGroupManagersScopedListWarningData()); | 3989 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 3969 o.add(buildInstanceGroupManagersScopedListWarningData()); | 3990 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 3970 return o; | 3991 return o; |
| 3971 } | 3992 } |
| 3972 | 3993 |
| 3973 checkUnnamed2267(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 3994 checkUnnamed2301(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 3974 unittest.expect(o, unittest.hasLength(2)); | 3995 unittest.expect(o, unittest.hasLength(2)); |
| 3975 checkInstanceGroupManagersScopedListWarningData(o[0]); | 3996 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 3976 checkInstanceGroupManagersScopedListWarningData(o[1]); | 3997 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 3977 } | 3998 } |
| 3978 | 3999 |
| 3979 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 4000 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 3980 buildInstanceGroupManagersScopedListWarning() { | 4001 buildInstanceGroupManagersScopedListWarning() { |
| 3981 var o = new api.InstanceGroupManagersScopedListWarning(); | 4002 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 3982 buildCounterInstanceGroupManagersScopedListWarning++; | 4003 buildCounterInstanceGroupManagersScopedListWarning++; |
| 3983 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 4004 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 3984 o.code = "foo"; | 4005 o.code = "foo"; |
| 3985 o.data = buildUnnamed2267(); | 4006 o.data = buildUnnamed2301(); |
| 3986 o.message = "foo"; | 4007 o.message = "foo"; |
| 3987 } | 4008 } |
| 3988 buildCounterInstanceGroupManagersScopedListWarning--; | 4009 buildCounterInstanceGroupManagersScopedListWarning--; |
| 3989 return o; | 4010 return o; |
| 3990 } | 4011 } |
| 3991 | 4012 |
| 3992 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 4013 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 3993 buildCounterInstanceGroupManagersScopedListWarning++; | 4014 buildCounterInstanceGroupManagersScopedListWarning++; |
| 3994 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 4015 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 3995 unittest.expect(o.code, unittest.equals('foo')); | 4016 unittest.expect(o.code, unittest.equals('foo')); |
| 3996 checkUnnamed2267(o.data); | 4017 checkUnnamed2301(o.data); |
| 3997 unittest.expect(o.message, unittest.equals('foo')); | 4018 unittest.expect(o.message, unittest.equals('foo')); |
| 3998 } | 4019 } |
| 3999 buildCounterInstanceGroupManagersScopedListWarning--; | 4020 buildCounterInstanceGroupManagersScopedListWarning--; |
| 4000 } | 4021 } |
| 4001 | 4022 |
| 4002 core.int buildCounterInstanceGroupManagersScopedList = 0; | 4023 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 4003 buildInstanceGroupManagersScopedList() { | 4024 buildInstanceGroupManagersScopedList() { |
| 4004 var o = new api.InstanceGroupManagersScopedList(); | 4025 var o = new api.InstanceGroupManagersScopedList(); |
| 4005 buildCounterInstanceGroupManagersScopedList++; | 4026 buildCounterInstanceGroupManagersScopedList++; |
| 4006 if (buildCounterInstanceGroupManagersScopedList < 3) { | 4027 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 4007 o.instanceGroupManagers = buildUnnamed2266(); | 4028 o.instanceGroupManagers = buildUnnamed2300(); |
| 4008 o.warning = buildInstanceGroupManagersScopedListWarning(); | 4029 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 4009 } | 4030 } |
| 4010 buildCounterInstanceGroupManagersScopedList--; | 4031 buildCounterInstanceGroupManagersScopedList--; |
| 4011 return o; | 4032 return o; |
| 4012 } | 4033 } |
| 4013 | 4034 |
| 4014 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 4035 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 4015 buildCounterInstanceGroupManagersScopedList++; | 4036 buildCounterInstanceGroupManagersScopedList++; |
| 4016 if (buildCounterInstanceGroupManagersScopedList < 3) { | 4037 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 4017 checkUnnamed2266(o.instanceGroupManagers); | 4038 checkUnnamed2300(o.instanceGroupManagers); |
| 4018 checkInstanceGroupManagersScopedListWarning(o.warning); | 4039 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 4019 } | 4040 } |
| 4020 buildCounterInstanceGroupManagersScopedList--; | 4041 buildCounterInstanceGroupManagersScopedList--; |
| 4021 } | 4042 } |
| 4022 | 4043 |
| 4023 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 4044 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 4024 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 4045 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 4025 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 4046 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 4026 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 4047 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 4027 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 4048 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 4028 o.instanceTemplate = "foo"; | 4049 o.instanceTemplate = "foo"; |
| 4029 } | 4050 } |
| 4030 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 4051 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 4031 return o; | 4052 return o; |
| 4032 } | 4053 } |
| 4033 | 4054 |
| 4034 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 4055 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 4035 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 4056 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 4036 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 4057 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 4037 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 4058 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 4038 } | 4059 } |
| 4039 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 4060 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 4040 } | 4061 } |
| 4041 | 4062 |
| 4042 buildUnnamed2268() { | 4063 buildUnnamed2302() { |
| 4043 var o = new core.List<core.String>(); | 4064 var o = new core.List<core.String>(); |
| 4044 o.add("foo"); | 4065 o.add("foo"); |
| 4045 o.add("foo"); | 4066 o.add("foo"); |
| 4046 return o; | 4067 return o; |
| 4047 } | 4068 } |
| 4048 | 4069 |
| 4049 checkUnnamed2268(core.List<core.String> o) { | 4070 checkUnnamed2302(core.List<core.String> o) { |
| 4050 unittest.expect(o, unittest.hasLength(2)); | 4071 unittest.expect(o, unittest.hasLength(2)); |
| 4051 unittest.expect(o[0], unittest.equals('foo')); | 4072 unittest.expect(o[0], unittest.equals('foo')); |
| 4052 unittest.expect(o[1], unittest.equals('foo')); | 4073 unittest.expect(o[1], unittest.equals('foo')); |
| 4053 } | 4074 } |
| 4054 | 4075 |
| 4055 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 4076 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 4056 buildInstanceGroupManagersSetTargetPoolsRequest() { | 4077 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 4057 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 4078 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 4058 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 4079 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 4059 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 4080 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 4060 o.fingerprint = "foo"; | 4081 o.fingerprint = "foo"; |
| 4061 o.targetPools = buildUnnamed2268(); | 4082 o.targetPools = buildUnnamed2302(); |
| 4062 } | 4083 } |
| 4063 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 4084 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 4064 return o; | 4085 return o; |
| 4065 } | 4086 } |
| 4066 | 4087 |
| 4067 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 4088 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 4068 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 4089 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 4069 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 4090 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 4070 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4091 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4071 checkUnnamed2268(o.targetPools); | 4092 checkUnnamed2302(o.targetPools); |
| 4072 } | 4093 } |
| 4073 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 4094 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 4074 } | 4095 } |
| 4075 | 4096 |
| 4076 buildUnnamed2269() { | 4097 buildUnnamed2303() { |
| 4077 var o = new core.List<api.InstanceReference>(); | 4098 var o = new core.List<api.InstanceReference>(); |
| 4078 o.add(buildInstanceReference()); | 4099 o.add(buildInstanceReference()); |
| 4079 o.add(buildInstanceReference()); | 4100 o.add(buildInstanceReference()); |
| 4080 return o; | 4101 return o; |
| 4081 } | 4102 } |
| 4082 | 4103 |
| 4083 checkUnnamed2269(core.List<api.InstanceReference> o) { | 4104 checkUnnamed2303(core.List<api.InstanceReference> o) { |
| 4084 unittest.expect(o, unittest.hasLength(2)); | 4105 unittest.expect(o, unittest.hasLength(2)); |
| 4085 checkInstanceReference(o[0]); | 4106 checkInstanceReference(o[0]); |
| 4086 checkInstanceReference(o[1]); | 4107 checkInstanceReference(o[1]); |
| 4087 } | 4108 } |
| 4088 | 4109 |
| 4089 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 4110 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 4090 buildInstanceGroupsAddInstancesRequest() { | 4111 buildInstanceGroupsAddInstancesRequest() { |
| 4091 var o = new api.InstanceGroupsAddInstancesRequest(); | 4112 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 4092 buildCounterInstanceGroupsAddInstancesRequest++; | 4113 buildCounterInstanceGroupsAddInstancesRequest++; |
| 4093 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 4114 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 4094 o.instances = buildUnnamed2269(); | 4115 o.instances = buildUnnamed2303(); |
| 4095 } | 4116 } |
| 4096 buildCounterInstanceGroupsAddInstancesRequest--; | 4117 buildCounterInstanceGroupsAddInstancesRequest--; |
| 4097 return o; | 4118 return o; |
| 4098 } | 4119 } |
| 4099 | 4120 |
| 4100 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 4121 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 4101 buildCounterInstanceGroupsAddInstancesRequest++; | 4122 buildCounterInstanceGroupsAddInstancesRequest++; |
| 4102 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 4123 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 4103 checkUnnamed2269(o.instances); | 4124 checkUnnamed2303(o.instances); |
| 4104 } | 4125 } |
| 4105 buildCounterInstanceGroupsAddInstancesRequest--; | 4126 buildCounterInstanceGroupsAddInstancesRequest--; |
| 4106 } | 4127 } |
| 4107 | 4128 |
| 4108 buildUnnamed2270() { | 4129 buildUnnamed2304() { |
| 4109 var o = new core.List<api.InstanceWithNamedPorts>(); | 4130 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 4110 o.add(buildInstanceWithNamedPorts()); | 4131 o.add(buildInstanceWithNamedPorts()); |
| 4111 o.add(buildInstanceWithNamedPorts()); | 4132 o.add(buildInstanceWithNamedPorts()); |
| 4112 return o; | 4133 return o; |
| 4113 } | 4134 } |
| 4114 | 4135 |
| 4115 checkUnnamed2270(core.List<api.InstanceWithNamedPorts> o) { | 4136 checkUnnamed2304(core.List<api.InstanceWithNamedPorts> o) { |
| 4116 unittest.expect(o, unittest.hasLength(2)); | 4137 unittest.expect(o, unittest.hasLength(2)); |
| 4117 checkInstanceWithNamedPorts(o[0]); | 4138 checkInstanceWithNamedPorts(o[0]); |
| 4118 checkInstanceWithNamedPorts(o[1]); | 4139 checkInstanceWithNamedPorts(o[1]); |
| 4119 } | 4140 } |
| 4120 | 4141 |
| 4121 core.int buildCounterInstanceGroupsListInstances = 0; | 4142 core.int buildCounterInstanceGroupsListInstances = 0; |
| 4122 buildInstanceGroupsListInstances() { | 4143 buildInstanceGroupsListInstances() { |
| 4123 var o = new api.InstanceGroupsListInstances(); | 4144 var o = new api.InstanceGroupsListInstances(); |
| 4124 buildCounterInstanceGroupsListInstances++; | 4145 buildCounterInstanceGroupsListInstances++; |
| 4125 if (buildCounterInstanceGroupsListInstances < 3) { | 4146 if (buildCounterInstanceGroupsListInstances < 3) { |
| 4126 o.id = "foo"; | 4147 o.id = "foo"; |
| 4127 o.items = buildUnnamed2270(); | 4148 o.items = buildUnnamed2304(); |
| 4128 o.kind = "foo"; | 4149 o.kind = "foo"; |
| 4129 o.nextPageToken = "foo"; | 4150 o.nextPageToken = "foo"; |
| 4130 o.selfLink = "foo"; | 4151 o.selfLink = "foo"; |
| 4131 } | 4152 } |
| 4132 buildCounterInstanceGroupsListInstances--; | 4153 buildCounterInstanceGroupsListInstances--; |
| 4133 return o; | 4154 return o; |
| 4134 } | 4155 } |
| 4135 | 4156 |
| 4136 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 4157 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 4137 buildCounterInstanceGroupsListInstances++; | 4158 buildCounterInstanceGroupsListInstances++; |
| 4138 if (buildCounterInstanceGroupsListInstances < 3) { | 4159 if (buildCounterInstanceGroupsListInstances < 3) { |
| 4139 unittest.expect(o.id, unittest.equals('foo')); | 4160 unittest.expect(o.id, unittest.equals('foo')); |
| 4140 checkUnnamed2270(o.items); | 4161 checkUnnamed2304(o.items); |
| 4141 unittest.expect(o.kind, unittest.equals('foo')); | 4162 unittest.expect(o.kind, unittest.equals('foo')); |
| 4142 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4163 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4143 unittest.expect(o.selfLink, unittest.equals('foo')); | 4164 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4144 } | 4165 } |
| 4145 buildCounterInstanceGroupsListInstances--; | 4166 buildCounterInstanceGroupsListInstances--; |
| 4146 } | 4167 } |
| 4147 | 4168 |
| 4148 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 4169 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 4149 buildInstanceGroupsListInstancesRequest() { | 4170 buildInstanceGroupsListInstancesRequest() { |
| 4150 var o = new api.InstanceGroupsListInstancesRequest(); | 4171 var o = new api.InstanceGroupsListInstancesRequest(); |
| 4151 buildCounterInstanceGroupsListInstancesRequest++; | 4172 buildCounterInstanceGroupsListInstancesRequest++; |
| 4152 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 4173 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 4153 o.instanceState = "foo"; | 4174 o.instanceState = "foo"; |
| 4154 } | 4175 } |
| 4155 buildCounterInstanceGroupsListInstancesRequest--; | 4176 buildCounterInstanceGroupsListInstancesRequest--; |
| 4156 return o; | 4177 return o; |
| 4157 } | 4178 } |
| 4158 | 4179 |
| 4159 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 4180 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 4160 buildCounterInstanceGroupsListInstancesRequest++; | 4181 buildCounterInstanceGroupsListInstancesRequest++; |
| 4161 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 4182 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 4162 unittest.expect(o.instanceState, unittest.equals('foo')); | 4183 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 4163 } | 4184 } |
| 4164 buildCounterInstanceGroupsListInstancesRequest--; | 4185 buildCounterInstanceGroupsListInstancesRequest--; |
| 4165 } | 4186 } |
| 4166 | 4187 |
| 4167 buildUnnamed2271() { | 4188 buildUnnamed2305() { |
| 4168 var o = new core.List<api.InstanceReference>(); | 4189 var o = new core.List<api.InstanceReference>(); |
| 4169 o.add(buildInstanceReference()); | 4190 o.add(buildInstanceReference()); |
| 4170 o.add(buildInstanceReference()); | 4191 o.add(buildInstanceReference()); |
| 4171 return o; | 4192 return o; |
| 4172 } | 4193 } |
| 4173 | 4194 |
| 4174 checkUnnamed2271(core.List<api.InstanceReference> o) { | 4195 checkUnnamed2305(core.List<api.InstanceReference> o) { |
| 4175 unittest.expect(o, unittest.hasLength(2)); | 4196 unittest.expect(o, unittest.hasLength(2)); |
| 4176 checkInstanceReference(o[0]); | 4197 checkInstanceReference(o[0]); |
| 4177 checkInstanceReference(o[1]); | 4198 checkInstanceReference(o[1]); |
| 4178 } | 4199 } |
| 4179 | 4200 |
| 4180 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 4201 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 4181 buildInstanceGroupsRemoveInstancesRequest() { | 4202 buildInstanceGroupsRemoveInstancesRequest() { |
| 4182 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 4203 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 4183 buildCounterInstanceGroupsRemoveInstancesRequest++; | 4204 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 4184 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 4205 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 4185 o.instances = buildUnnamed2271(); | 4206 o.instances = buildUnnamed2305(); |
| 4186 } | 4207 } |
| 4187 buildCounterInstanceGroupsRemoveInstancesRequest--; | 4208 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 4188 return o; | 4209 return o; |
| 4189 } | 4210 } |
| 4190 | 4211 |
| 4191 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 4212 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 4192 buildCounterInstanceGroupsRemoveInstancesRequest++; | 4213 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 4193 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 4214 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 4194 checkUnnamed2271(o.instances); | 4215 checkUnnamed2305(o.instances); |
| 4195 } | 4216 } |
| 4196 buildCounterInstanceGroupsRemoveInstancesRequest--; | 4217 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 4197 } | 4218 } |
| 4198 | 4219 |
| 4199 buildUnnamed2272() { | 4220 buildUnnamed2306() { |
| 4200 var o = new core.List<api.InstanceGroup>(); | 4221 var o = new core.List<api.InstanceGroup>(); |
| 4201 o.add(buildInstanceGroup()); | 4222 o.add(buildInstanceGroup()); |
| 4202 o.add(buildInstanceGroup()); | 4223 o.add(buildInstanceGroup()); |
| 4203 return o; | 4224 return o; |
| 4204 } | 4225 } |
| 4205 | 4226 |
| 4206 checkUnnamed2272(core.List<api.InstanceGroup> o) { | 4227 checkUnnamed2306(core.List<api.InstanceGroup> o) { |
| 4207 unittest.expect(o, unittest.hasLength(2)); | 4228 unittest.expect(o, unittest.hasLength(2)); |
| 4208 checkInstanceGroup(o[0]); | 4229 checkInstanceGroup(o[0]); |
| 4209 checkInstanceGroup(o[1]); | 4230 checkInstanceGroup(o[1]); |
| 4210 } | 4231 } |
| 4211 | 4232 |
| 4212 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 4233 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 4213 buildInstanceGroupsScopedListWarningData() { | 4234 buildInstanceGroupsScopedListWarningData() { |
| 4214 var o = new api.InstanceGroupsScopedListWarningData(); | 4235 var o = new api.InstanceGroupsScopedListWarningData(); |
| 4215 buildCounterInstanceGroupsScopedListWarningData++; | 4236 buildCounterInstanceGroupsScopedListWarningData++; |
| 4216 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 4237 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 4217 o.key = "foo"; | 4238 o.key = "foo"; |
| 4218 o.value = "foo"; | 4239 o.value = "foo"; |
| 4219 } | 4240 } |
| 4220 buildCounterInstanceGroupsScopedListWarningData--; | 4241 buildCounterInstanceGroupsScopedListWarningData--; |
| 4221 return o; | 4242 return o; |
| 4222 } | 4243 } |
| 4223 | 4244 |
| 4224 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 4245 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 4225 buildCounterInstanceGroupsScopedListWarningData++; | 4246 buildCounterInstanceGroupsScopedListWarningData++; |
| 4226 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 4247 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 4227 unittest.expect(o.key, unittest.equals('foo')); | 4248 unittest.expect(o.key, unittest.equals('foo')); |
| 4228 unittest.expect(o.value, unittest.equals('foo')); | 4249 unittest.expect(o.value, unittest.equals('foo')); |
| 4229 } | 4250 } |
| 4230 buildCounterInstanceGroupsScopedListWarningData--; | 4251 buildCounterInstanceGroupsScopedListWarningData--; |
| 4231 } | 4252 } |
| 4232 | 4253 |
| 4233 buildUnnamed2273() { | 4254 buildUnnamed2307() { |
| 4234 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 4255 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 4235 o.add(buildInstanceGroupsScopedListWarningData()); | 4256 o.add(buildInstanceGroupsScopedListWarningData()); |
| 4236 o.add(buildInstanceGroupsScopedListWarningData()); | 4257 o.add(buildInstanceGroupsScopedListWarningData()); |
| 4237 return o; | 4258 return o; |
| 4238 } | 4259 } |
| 4239 | 4260 |
| 4240 checkUnnamed2273(core.List<api.InstanceGroupsScopedListWarningData> o) { | 4261 checkUnnamed2307(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 4241 unittest.expect(o, unittest.hasLength(2)); | 4262 unittest.expect(o, unittest.hasLength(2)); |
| 4242 checkInstanceGroupsScopedListWarningData(o[0]); | 4263 checkInstanceGroupsScopedListWarningData(o[0]); |
| 4243 checkInstanceGroupsScopedListWarningData(o[1]); | 4264 checkInstanceGroupsScopedListWarningData(o[1]); |
| 4244 } | 4265 } |
| 4245 | 4266 |
| 4246 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 4267 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 4247 buildInstanceGroupsScopedListWarning() { | 4268 buildInstanceGroupsScopedListWarning() { |
| 4248 var o = new api.InstanceGroupsScopedListWarning(); | 4269 var o = new api.InstanceGroupsScopedListWarning(); |
| 4249 buildCounterInstanceGroupsScopedListWarning++; | 4270 buildCounterInstanceGroupsScopedListWarning++; |
| 4250 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 4271 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 4251 o.code = "foo"; | 4272 o.code = "foo"; |
| 4252 o.data = buildUnnamed2273(); | 4273 o.data = buildUnnamed2307(); |
| 4253 o.message = "foo"; | 4274 o.message = "foo"; |
| 4254 } | 4275 } |
| 4255 buildCounterInstanceGroupsScopedListWarning--; | 4276 buildCounterInstanceGroupsScopedListWarning--; |
| 4256 return o; | 4277 return o; |
| 4257 } | 4278 } |
| 4258 | 4279 |
| 4259 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 4280 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 4260 buildCounterInstanceGroupsScopedListWarning++; | 4281 buildCounterInstanceGroupsScopedListWarning++; |
| 4261 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 4282 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 4262 unittest.expect(o.code, unittest.equals('foo')); | 4283 unittest.expect(o.code, unittest.equals('foo')); |
| 4263 checkUnnamed2273(o.data); | 4284 checkUnnamed2307(o.data); |
| 4264 unittest.expect(o.message, unittest.equals('foo')); | 4285 unittest.expect(o.message, unittest.equals('foo')); |
| 4265 } | 4286 } |
| 4266 buildCounterInstanceGroupsScopedListWarning--; | 4287 buildCounterInstanceGroupsScopedListWarning--; |
| 4267 } | 4288 } |
| 4268 | 4289 |
| 4269 core.int buildCounterInstanceGroupsScopedList = 0; | 4290 core.int buildCounterInstanceGroupsScopedList = 0; |
| 4270 buildInstanceGroupsScopedList() { | 4291 buildInstanceGroupsScopedList() { |
| 4271 var o = new api.InstanceGroupsScopedList(); | 4292 var o = new api.InstanceGroupsScopedList(); |
| 4272 buildCounterInstanceGroupsScopedList++; | 4293 buildCounterInstanceGroupsScopedList++; |
| 4273 if (buildCounterInstanceGroupsScopedList < 3) { | 4294 if (buildCounterInstanceGroupsScopedList < 3) { |
| 4274 o.instanceGroups = buildUnnamed2272(); | 4295 o.instanceGroups = buildUnnamed2306(); |
| 4275 o.warning = buildInstanceGroupsScopedListWarning(); | 4296 o.warning = buildInstanceGroupsScopedListWarning(); |
| 4276 } | 4297 } |
| 4277 buildCounterInstanceGroupsScopedList--; | 4298 buildCounterInstanceGroupsScopedList--; |
| 4278 return o; | 4299 return o; |
| 4279 } | 4300 } |
| 4280 | 4301 |
| 4281 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 4302 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 4282 buildCounterInstanceGroupsScopedList++; | 4303 buildCounterInstanceGroupsScopedList++; |
| 4283 if (buildCounterInstanceGroupsScopedList < 3) { | 4304 if (buildCounterInstanceGroupsScopedList < 3) { |
| 4284 checkUnnamed2272(o.instanceGroups); | 4305 checkUnnamed2306(o.instanceGroups); |
| 4285 checkInstanceGroupsScopedListWarning(o.warning); | 4306 checkInstanceGroupsScopedListWarning(o.warning); |
| 4286 } | 4307 } |
| 4287 buildCounterInstanceGroupsScopedList--; | 4308 buildCounterInstanceGroupsScopedList--; |
| 4288 } | 4309 } |
| 4289 | 4310 |
| 4290 buildUnnamed2274() { | 4311 buildUnnamed2308() { |
| 4291 var o = new core.List<api.NamedPort>(); | 4312 var o = new core.List<api.NamedPort>(); |
| 4292 o.add(buildNamedPort()); | 4313 o.add(buildNamedPort()); |
| 4293 o.add(buildNamedPort()); | 4314 o.add(buildNamedPort()); |
| 4294 return o; | 4315 return o; |
| 4295 } | 4316 } |
| 4296 | 4317 |
| 4297 checkUnnamed2274(core.List<api.NamedPort> o) { | 4318 checkUnnamed2308(core.List<api.NamedPort> o) { |
| 4298 unittest.expect(o, unittest.hasLength(2)); | 4319 unittest.expect(o, unittest.hasLength(2)); |
| 4299 checkNamedPort(o[0]); | 4320 checkNamedPort(o[0]); |
| 4300 checkNamedPort(o[1]); | 4321 checkNamedPort(o[1]); |
| 4301 } | 4322 } |
| 4302 | 4323 |
| 4303 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 4324 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 4304 buildInstanceGroupsSetNamedPortsRequest() { | 4325 buildInstanceGroupsSetNamedPortsRequest() { |
| 4305 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 4326 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 4306 buildCounterInstanceGroupsSetNamedPortsRequest++; | 4327 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 4307 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 4328 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 4308 o.fingerprint = "foo"; | 4329 o.fingerprint = "foo"; |
| 4309 o.namedPorts = buildUnnamed2274(); | 4330 o.namedPorts = buildUnnamed2308(); |
| 4310 } | 4331 } |
| 4311 buildCounterInstanceGroupsSetNamedPortsRequest--; | 4332 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 4312 return o; | 4333 return o; |
| 4313 } | 4334 } |
| 4314 | 4335 |
| 4315 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 4336 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 4316 buildCounterInstanceGroupsSetNamedPortsRequest++; | 4337 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 4317 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 4338 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 4318 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4339 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4319 checkUnnamed2274(o.namedPorts); | 4340 checkUnnamed2308(o.namedPorts); |
| 4320 } | 4341 } |
| 4321 buildCounterInstanceGroupsSetNamedPortsRequest--; | 4342 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 4322 } | 4343 } |
| 4323 | 4344 |
| 4324 buildUnnamed2275() { | 4345 buildUnnamed2309() { |
| 4325 var o = new core.List<api.Instance>(); | 4346 var o = new core.List<api.Instance>(); |
| 4326 o.add(buildInstance()); | 4347 o.add(buildInstance()); |
| 4327 o.add(buildInstance()); | 4348 o.add(buildInstance()); |
| 4328 return o; | 4349 return o; |
| 4329 } | 4350 } |
| 4330 | 4351 |
| 4331 checkUnnamed2275(core.List<api.Instance> o) { | 4352 checkUnnamed2309(core.List<api.Instance> o) { |
| 4332 unittest.expect(o, unittest.hasLength(2)); | 4353 unittest.expect(o, unittest.hasLength(2)); |
| 4333 checkInstance(o[0]); | 4354 checkInstance(o[0]); |
| 4334 checkInstance(o[1]); | 4355 checkInstance(o[1]); |
| 4335 } | 4356 } |
| 4336 | 4357 |
| 4337 core.int buildCounterInstanceList = 0; | 4358 core.int buildCounterInstanceList = 0; |
| 4338 buildInstanceList() { | 4359 buildInstanceList() { |
| 4339 var o = new api.InstanceList(); | 4360 var o = new api.InstanceList(); |
| 4340 buildCounterInstanceList++; | 4361 buildCounterInstanceList++; |
| 4341 if (buildCounterInstanceList < 3) { | 4362 if (buildCounterInstanceList < 3) { |
| 4342 o.id = "foo"; | 4363 o.id = "foo"; |
| 4343 o.items = buildUnnamed2275(); | 4364 o.items = buildUnnamed2309(); |
| 4344 o.kind = "foo"; | 4365 o.kind = "foo"; |
| 4345 o.nextPageToken = "foo"; | 4366 o.nextPageToken = "foo"; |
| 4346 o.selfLink = "foo"; | 4367 o.selfLink = "foo"; |
| 4347 } | 4368 } |
| 4348 buildCounterInstanceList--; | 4369 buildCounterInstanceList--; |
| 4349 return o; | 4370 return o; |
| 4350 } | 4371 } |
| 4351 | 4372 |
| 4352 checkInstanceList(api.InstanceList o) { | 4373 checkInstanceList(api.InstanceList o) { |
| 4353 buildCounterInstanceList++; | 4374 buildCounterInstanceList++; |
| 4354 if (buildCounterInstanceList < 3) { | 4375 if (buildCounterInstanceList < 3) { |
| 4355 unittest.expect(o.id, unittest.equals('foo')); | 4376 unittest.expect(o.id, unittest.equals('foo')); |
| 4356 checkUnnamed2275(o.items); | 4377 checkUnnamed2309(o.items); |
| 4357 unittest.expect(o.kind, unittest.equals('foo')); | 4378 unittest.expect(o.kind, unittest.equals('foo')); |
| 4358 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4379 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4359 unittest.expect(o.selfLink, unittest.equals('foo')); | 4380 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4360 } | 4381 } |
| 4361 buildCounterInstanceList--; | 4382 buildCounterInstanceList--; |
| 4362 } | 4383 } |
| 4363 | 4384 |
| 4364 core.int buildCounterInstanceMoveRequest = 0; | 4385 core.int buildCounterInstanceMoveRequest = 0; |
| 4365 buildInstanceMoveRequest() { | 4386 buildInstanceMoveRequest() { |
| 4366 var o = new api.InstanceMoveRequest(); | 4387 var o = new api.InstanceMoveRequest(); |
| 4367 buildCounterInstanceMoveRequest++; | 4388 buildCounterInstanceMoveRequest++; |
| 4368 if (buildCounterInstanceMoveRequest < 3) { | 4389 if (buildCounterInstanceMoveRequest < 3) { |
| 4369 o.destinationZone = "foo"; | 4390 o.destinationZone = "foo"; |
| 4370 o.targetInstance = "foo"; | 4391 o.targetInstance = "foo"; |
| 4371 } | 4392 } |
| 4372 buildCounterInstanceMoveRequest--; | 4393 buildCounterInstanceMoveRequest--; |
| 4373 return o; | 4394 return o; |
| 4374 } | 4395 } |
| 4375 | 4396 |
| 4376 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 4397 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 4377 buildCounterInstanceMoveRequest++; | 4398 buildCounterInstanceMoveRequest++; |
| 4378 if (buildCounterInstanceMoveRequest < 3) { | 4399 if (buildCounterInstanceMoveRequest < 3) { |
| 4379 unittest.expect(o.destinationZone, unittest.equals('foo')); | 4400 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 4380 unittest.expect(o.targetInstance, unittest.equals('foo')); | 4401 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 4381 } | 4402 } |
| 4382 buildCounterInstanceMoveRequest--; | 4403 buildCounterInstanceMoveRequest--; |
| 4383 } | 4404 } |
| 4384 | 4405 |
| 4385 buildUnnamed2276() { | 4406 buildUnnamed2310() { |
| 4386 var o = new core.List<api.AttachedDisk>(); | 4407 var o = new core.List<api.AttachedDisk>(); |
| 4387 o.add(buildAttachedDisk()); | 4408 o.add(buildAttachedDisk()); |
| 4388 o.add(buildAttachedDisk()); | 4409 o.add(buildAttachedDisk()); |
| 4389 return o; | 4410 return o; |
| 4390 } | 4411 } |
| 4391 | 4412 |
| 4392 checkUnnamed2276(core.List<api.AttachedDisk> o) { | 4413 checkUnnamed2310(core.List<api.AttachedDisk> o) { |
| 4393 unittest.expect(o, unittest.hasLength(2)); | 4414 unittest.expect(o, unittest.hasLength(2)); |
| 4394 checkAttachedDisk(o[0]); | 4415 checkAttachedDisk(o[0]); |
| 4395 checkAttachedDisk(o[1]); | 4416 checkAttachedDisk(o[1]); |
| 4396 } | 4417 } |
| 4397 | 4418 |
| 4398 buildUnnamed2277() { | 4419 buildUnnamed2311() { |
| 4399 var o = new core.List<api.AcceleratorConfig>(); | 4420 var o = new core.List<api.AcceleratorConfig>(); |
| 4400 o.add(buildAcceleratorConfig()); | 4421 o.add(buildAcceleratorConfig()); |
| 4401 o.add(buildAcceleratorConfig()); | 4422 o.add(buildAcceleratorConfig()); |
| 4402 return o; | 4423 return o; |
| 4403 } | 4424 } |
| 4404 | 4425 |
| 4405 checkUnnamed2277(core.List<api.AcceleratorConfig> o) { | 4426 checkUnnamed2311(core.List<api.AcceleratorConfig> o) { |
| 4406 unittest.expect(o, unittest.hasLength(2)); | 4427 unittest.expect(o, unittest.hasLength(2)); |
| 4407 checkAcceleratorConfig(o[0]); | 4428 checkAcceleratorConfig(o[0]); |
| 4408 checkAcceleratorConfig(o[1]); | 4429 checkAcceleratorConfig(o[1]); |
| 4409 } | 4430 } |
| 4410 | 4431 |
| 4411 buildUnnamed2278() { | 4432 buildUnnamed2312() { |
| 4412 var o = new core.Map<core.String, core.String>(); | 4433 var o = new core.Map<core.String, core.String>(); |
| 4413 o["x"] = "foo"; | 4434 o["x"] = "foo"; |
| 4414 o["y"] = "foo"; | 4435 o["y"] = "foo"; |
| 4415 return o; | 4436 return o; |
| 4416 } | 4437 } |
| 4417 | 4438 |
| 4418 checkUnnamed2278(core.Map<core.String, core.String> o) { | 4439 checkUnnamed2312(core.Map<core.String, core.String> o) { |
| 4419 unittest.expect(o, unittest.hasLength(2)); | 4440 unittest.expect(o, unittest.hasLength(2)); |
| 4420 unittest.expect(o["x"], unittest.equals('foo')); | 4441 unittest.expect(o["x"], unittest.equals('foo')); |
| 4421 unittest.expect(o["y"], unittest.equals('foo')); | 4442 unittest.expect(o["y"], unittest.equals('foo')); |
| 4422 } | 4443 } |
| 4423 | 4444 |
| 4424 buildUnnamed2279() { | 4445 buildUnnamed2313() { |
| 4425 var o = new core.List<api.NetworkInterface>(); | 4446 var o = new core.List<api.NetworkInterface>(); |
| 4426 o.add(buildNetworkInterface()); | 4447 o.add(buildNetworkInterface()); |
| 4427 o.add(buildNetworkInterface()); | 4448 o.add(buildNetworkInterface()); |
| 4428 return o; | 4449 return o; |
| 4429 } | 4450 } |
| 4430 | 4451 |
| 4431 checkUnnamed2279(core.List<api.NetworkInterface> o) { | 4452 checkUnnamed2313(core.List<api.NetworkInterface> o) { |
| 4432 unittest.expect(o, unittest.hasLength(2)); | 4453 unittest.expect(o, unittest.hasLength(2)); |
| 4433 checkNetworkInterface(o[0]); | 4454 checkNetworkInterface(o[0]); |
| 4434 checkNetworkInterface(o[1]); | 4455 checkNetworkInterface(o[1]); |
| 4435 } | 4456 } |
| 4436 | 4457 |
| 4437 buildUnnamed2280() { | 4458 buildUnnamed2314() { |
| 4438 var o = new core.List<api.ServiceAccount>(); | 4459 var o = new core.List<api.ServiceAccount>(); |
| 4439 o.add(buildServiceAccount()); | 4460 o.add(buildServiceAccount()); |
| 4440 o.add(buildServiceAccount()); | 4461 o.add(buildServiceAccount()); |
| 4441 return o; | 4462 return o; |
| 4442 } | 4463 } |
| 4443 | 4464 |
| 4444 checkUnnamed2280(core.List<api.ServiceAccount> o) { | 4465 checkUnnamed2314(core.List<api.ServiceAccount> o) { |
| 4445 unittest.expect(o, unittest.hasLength(2)); | 4466 unittest.expect(o, unittest.hasLength(2)); |
| 4446 checkServiceAccount(o[0]); | 4467 checkServiceAccount(o[0]); |
| 4447 checkServiceAccount(o[1]); | 4468 checkServiceAccount(o[1]); |
| 4448 } | 4469 } |
| 4449 | 4470 |
| 4450 core.int buildCounterInstanceProperties = 0; | 4471 core.int buildCounterInstanceProperties = 0; |
| 4451 buildInstanceProperties() { | 4472 buildInstanceProperties() { |
| 4452 var o = new api.InstanceProperties(); | 4473 var o = new api.InstanceProperties(); |
| 4453 buildCounterInstanceProperties++; | 4474 buildCounterInstanceProperties++; |
| 4454 if (buildCounterInstanceProperties < 3) { | 4475 if (buildCounterInstanceProperties < 3) { |
| 4455 o.canIpForward = true; | 4476 o.canIpForward = true; |
| 4456 o.description = "foo"; | 4477 o.description = "foo"; |
| 4457 o.disks = buildUnnamed2276(); | 4478 o.disks = buildUnnamed2310(); |
| 4458 o.guestAccelerators = buildUnnamed2277(); | 4479 o.guestAccelerators = buildUnnamed2311(); |
| 4459 o.labels = buildUnnamed2278(); | 4480 o.labels = buildUnnamed2312(); |
| 4460 o.machineType = "foo"; | 4481 o.machineType = "foo"; |
| 4461 o.metadata = buildMetadata(); | 4482 o.metadata = buildMetadata(); |
| 4462 o.networkInterfaces = buildUnnamed2279(); | 4483 o.networkInterfaces = buildUnnamed2313(); |
| 4463 o.scheduling = buildScheduling(); | 4484 o.scheduling = buildScheduling(); |
| 4464 o.serviceAccounts = buildUnnamed2280(); | 4485 o.serviceAccounts = buildUnnamed2314(); |
| 4465 o.tags = buildTags(); | 4486 o.tags = buildTags(); |
| 4466 } | 4487 } |
| 4467 buildCounterInstanceProperties--; | 4488 buildCounterInstanceProperties--; |
| 4468 return o; | 4489 return o; |
| 4469 } | 4490 } |
| 4470 | 4491 |
| 4471 checkInstanceProperties(api.InstanceProperties o) { | 4492 checkInstanceProperties(api.InstanceProperties o) { |
| 4472 buildCounterInstanceProperties++; | 4493 buildCounterInstanceProperties++; |
| 4473 if (buildCounterInstanceProperties < 3) { | 4494 if (buildCounterInstanceProperties < 3) { |
| 4474 unittest.expect(o.canIpForward, unittest.isTrue); | 4495 unittest.expect(o.canIpForward, unittest.isTrue); |
| 4475 unittest.expect(o.description, unittest.equals('foo')); | 4496 unittest.expect(o.description, unittest.equals('foo')); |
| 4476 checkUnnamed2276(o.disks); | 4497 checkUnnamed2310(o.disks); |
| 4477 checkUnnamed2277(o.guestAccelerators); | 4498 checkUnnamed2311(o.guestAccelerators); |
| 4478 checkUnnamed2278(o.labels); | 4499 checkUnnamed2312(o.labels); |
| 4479 unittest.expect(o.machineType, unittest.equals('foo')); | 4500 unittest.expect(o.machineType, unittest.equals('foo')); |
| 4480 checkMetadata(o.metadata); | 4501 checkMetadata(o.metadata); |
| 4481 checkUnnamed2279(o.networkInterfaces); | 4502 checkUnnamed2313(o.networkInterfaces); |
| 4482 checkScheduling(o.scheduling); | 4503 checkScheduling(o.scheduling); |
| 4483 checkUnnamed2280(o.serviceAccounts); | 4504 checkUnnamed2314(o.serviceAccounts); |
| 4484 checkTags(o.tags); | 4505 checkTags(o.tags); |
| 4485 } | 4506 } |
| 4486 buildCounterInstanceProperties--; | 4507 buildCounterInstanceProperties--; |
| 4487 } | 4508 } |
| 4488 | 4509 |
| 4489 core.int buildCounterInstanceReference = 0; | 4510 core.int buildCounterInstanceReference = 0; |
| 4490 buildInstanceReference() { | 4511 buildInstanceReference() { |
| 4491 var o = new api.InstanceReference(); | 4512 var o = new api.InstanceReference(); |
| 4492 buildCounterInstanceReference++; | 4513 buildCounterInstanceReference++; |
| 4493 if (buildCounterInstanceReference < 3) { | 4514 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4529 unittest.expect(o.description, unittest.equals('foo')); | 4550 unittest.expect(o.description, unittest.equals('foo')); |
| 4530 unittest.expect(o.id, unittest.equals('foo')); | 4551 unittest.expect(o.id, unittest.equals('foo')); |
| 4531 unittest.expect(o.kind, unittest.equals('foo')); | 4552 unittest.expect(o.kind, unittest.equals('foo')); |
| 4532 unittest.expect(o.name, unittest.equals('foo')); | 4553 unittest.expect(o.name, unittest.equals('foo')); |
| 4533 checkInstanceProperties(o.properties); | 4554 checkInstanceProperties(o.properties); |
| 4534 unittest.expect(o.selfLink, unittest.equals('foo')); | 4555 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4535 } | 4556 } |
| 4536 buildCounterInstanceTemplate--; | 4557 buildCounterInstanceTemplate--; |
| 4537 } | 4558 } |
| 4538 | 4559 |
| 4539 buildUnnamed2281() { | 4560 buildUnnamed2315() { |
| 4540 var o = new core.List<api.InstanceTemplate>(); | 4561 var o = new core.List<api.InstanceTemplate>(); |
| 4541 o.add(buildInstanceTemplate()); | 4562 o.add(buildInstanceTemplate()); |
| 4542 o.add(buildInstanceTemplate()); | 4563 o.add(buildInstanceTemplate()); |
| 4543 return o; | 4564 return o; |
| 4544 } | 4565 } |
| 4545 | 4566 |
| 4546 checkUnnamed2281(core.List<api.InstanceTemplate> o) { | 4567 checkUnnamed2315(core.List<api.InstanceTemplate> o) { |
| 4547 unittest.expect(o, unittest.hasLength(2)); | 4568 unittest.expect(o, unittest.hasLength(2)); |
| 4548 checkInstanceTemplate(o[0]); | 4569 checkInstanceTemplate(o[0]); |
| 4549 checkInstanceTemplate(o[1]); | 4570 checkInstanceTemplate(o[1]); |
| 4550 } | 4571 } |
| 4551 | 4572 |
| 4552 core.int buildCounterInstanceTemplateList = 0; | 4573 core.int buildCounterInstanceTemplateList = 0; |
| 4553 buildInstanceTemplateList() { | 4574 buildInstanceTemplateList() { |
| 4554 var o = new api.InstanceTemplateList(); | 4575 var o = new api.InstanceTemplateList(); |
| 4555 buildCounterInstanceTemplateList++; | 4576 buildCounterInstanceTemplateList++; |
| 4556 if (buildCounterInstanceTemplateList < 3) { | 4577 if (buildCounterInstanceTemplateList < 3) { |
| 4557 o.id = "foo"; | 4578 o.id = "foo"; |
| 4558 o.items = buildUnnamed2281(); | 4579 o.items = buildUnnamed2315(); |
| 4559 o.kind = "foo"; | 4580 o.kind = "foo"; |
| 4560 o.nextPageToken = "foo"; | 4581 o.nextPageToken = "foo"; |
| 4561 o.selfLink = "foo"; | 4582 o.selfLink = "foo"; |
| 4562 } | 4583 } |
| 4563 buildCounterInstanceTemplateList--; | 4584 buildCounterInstanceTemplateList--; |
| 4564 return o; | 4585 return o; |
| 4565 } | 4586 } |
| 4566 | 4587 |
| 4567 checkInstanceTemplateList(api.InstanceTemplateList o) { | 4588 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 4568 buildCounterInstanceTemplateList++; | 4589 buildCounterInstanceTemplateList++; |
| 4569 if (buildCounterInstanceTemplateList < 3) { | 4590 if (buildCounterInstanceTemplateList < 3) { |
| 4570 unittest.expect(o.id, unittest.equals('foo')); | 4591 unittest.expect(o.id, unittest.equals('foo')); |
| 4571 checkUnnamed2281(o.items); | 4592 checkUnnamed2315(o.items); |
| 4572 unittest.expect(o.kind, unittest.equals('foo')); | 4593 unittest.expect(o.kind, unittest.equals('foo')); |
| 4573 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4594 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4574 unittest.expect(o.selfLink, unittest.equals('foo')); | 4595 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4575 } | 4596 } |
| 4576 buildCounterInstanceTemplateList--; | 4597 buildCounterInstanceTemplateList--; |
| 4577 } | 4598 } |
| 4578 | 4599 |
| 4579 buildUnnamed2282() { | 4600 buildUnnamed2316() { |
| 4580 var o = new core.List<api.NamedPort>(); | 4601 var o = new core.List<api.NamedPort>(); |
| 4581 o.add(buildNamedPort()); | 4602 o.add(buildNamedPort()); |
| 4582 o.add(buildNamedPort()); | 4603 o.add(buildNamedPort()); |
| 4583 return o; | 4604 return o; |
| 4584 } | 4605 } |
| 4585 | 4606 |
| 4586 checkUnnamed2282(core.List<api.NamedPort> o) { | 4607 checkUnnamed2316(core.List<api.NamedPort> o) { |
| 4587 unittest.expect(o, unittest.hasLength(2)); | 4608 unittest.expect(o, unittest.hasLength(2)); |
| 4588 checkNamedPort(o[0]); | 4609 checkNamedPort(o[0]); |
| 4589 checkNamedPort(o[1]); | 4610 checkNamedPort(o[1]); |
| 4590 } | 4611 } |
| 4591 | 4612 |
| 4592 core.int buildCounterInstanceWithNamedPorts = 0; | 4613 core.int buildCounterInstanceWithNamedPorts = 0; |
| 4593 buildInstanceWithNamedPorts() { | 4614 buildInstanceWithNamedPorts() { |
| 4594 var o = new api.InstanceWithNamedPorts(); | 4615 var o = new api.InstanceWithNamedPorts(); |
| 4595 buildCounterInstanceWithNamedPorts++; | 4616 buildCounterInstanceWithNamedPorts++; |
| 4596 if (buildCounterInstanceWithNamedPorts < 3) { | 4617 if (buildCounterInstanceWithNamedPorts < 3) { |
| 4597 o.instance = "foo"; | 4618 o.instance = "foo"; |
| 4598 o.namedPorts = buildUnnamed2282(); | 4619 o.namedPorts = buildUnnamed2316(); |
| 4599 o.status = "foo"; | 4620 o.status = "foo"; |
| 4600 } | 4621 } |
| 4601 buildCounterInstanceWithNamedPorts--; | 4622 buildCounterInstanceWithNamedPorts--; |
| 4602 return o; | 4623 return o; |
| 4603 } | 4624 } |
| 4604 | 4625 |
| 4605 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 4626 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 4606 buildCounterInstanceWithNamedPorts++; | 4627 buildCounterInstanceWithNamedPorts++; |
| 4607 if (buildCounterInstanceWithNamedPorts < 3) { | 4628 if (buildCounterInstanceWithNamedPorts < 3) { |
| 4608 unittest.expect(o.instance, unittest.equals('foo')); | 4629 unittest.expect(o.instance, unittest.equals('foo')); |
| 4609 checkUnnamed2282(o.namedPorts); | 4630 checkUnnamed2316(o.namedPorts); |
| 4610 unittest.expect(o.status, unittest.equals('foo')); | 4631 unittest.expect(o.status, unittest.equals('foo')); |
| 4611 } | 4632 } |
| 4612 buildCounterInstanceWithNamedPorts--; | 4633 buildCounterInstanceWithNamedPorts--; |
| 4613 } | 4634 } |
| 4614 | 4635 |
| 4615 buildUnnamed2283() { | 4636 buildUnnamed2317() { |
| 4616 var o = new core.List<api.Instance>(); | 4637 var o = new core.List<api.Instance>(); |
| 4617 o.add(buildInstance()); | 4638 o.add(buildInstance()); |
| 4618 o.add(buildInstance()); | 4639 o.add(buildInstance()); |
| 4619 return o; | 4640 return o; |
| 4620 } | 4641 } |
| 4621 | 4642 |
| 4622 checkUnnamed2283(core.List<api.Instance> o) { | 4643 checkUnnamed2317(core.List<api.Instance> o) { |
| 4623 unittest.expect(o, unittest.hasLength(2)); | 4644 unittest.expect(o, unittest.hasLength(2)); |
| 4624 checkInstance(o[0]); | 4645 checkInstance(o[0]); |
| 4625 checkInstance(o[1]); | 4646 checkInstance(o[1]); |
| 4626 } | 4647 } |
| 4627 | 4648 |
| 4628 core.int buildCounterInstancesScopedListWarningData = 0; | 4649 core.int buildCounterInstancesScopedListWarningData = 0; |
| 4629 buildInstancesScopedListWarningData() { | 4650 buildInstancesScopedListWarningData() { |
| 4630 var o = new api.InstancesScopedListWarningData(); | 4651 var o = new api.InstancesScopedListWarningData(); |
| 4631 buildCounterInstancesScopedListWarningData++; | 4652 buildCounterInstancesScopedListWarningData++; |
| 4632 if (buildCounterInstancesScopedListWarningData < 3) { | 4653 if (buildCounterInstancesScopedListWarningData < 3) { |
| 4633 o.key = "foo"; | 4654 o.key = "foo"; |
| 4634 o.value = "foo"; | 4655 o.value = "foo"; |
| 4635 } | 4656 } |
| 4636 buildCounterInstancesScopedListWarningData--; | 4657 buildCounterInstancesScopedListWarningData--; |
| 4637 return o; | 4658 return o; |
| 4638 } | 4659 } |
| 4639 | 4660 |
| 4640 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 4661 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 4641 buildCounterInstancesScopedListWarningData++; | 4662 buildCounterInstancesScopedListWarningData++; |
| 4642 if (buildCounterInstancesScopedListWarningData < 3) { | 4663 if (buildCounterInstancesScopedListWarningData < 3) { |
| 4643 unittest.expect(o.key, unittest.equals('foo')); | 4664 unittest.expect(o.key, unittest.equals('foo')); |
| 4644 unittest.expect(o.value, unittest.equals('foo')); | 4665 unittest.expect(o.value, unittest.equals('foo')); |
| 4645 } | 4666 } |
| 4646 buildCounterInstancesScopedListWarningData--; | 4667 buildCounterInstancesScopedListWarningData--; |
| 4647 } | 4668 } |
| 4648 | 4669 |
| 4649 buildUnnamed2284() { | 4670 buildUnnamed2318() { |
| 4650 var o = new core.List<api.InstancesScopedListWarningData>(); | 4671 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 4651 o.add(buildInstancesScopedListWarningData()); | 4672 o.add(buildInstancesScopedListWarningData()); |
| 4652 o.add(buildInstancesScopedListWarningData()); | 4673 o.add(buildInstancesScopedListWarningData()); |
| 4653 return o; | 4674 return o; |
| 4654 } | 4675 } |
| 4655 | 4676 |
| 4656 checkUnnamed2284(core.List<api.InstancesScopedListWarningData> o) { | 4677 checkUnnamed2318(core.List<api.InstancesScopedListWarningData> o) { |
| 4657 unittest.expect(o, unittest.hasLength(2)); | 4678 unittest.expect(o, unittest.hasLength(2)); |
| 4658 checkInstancesScopedListWarningData(o[0]); | 4679 checkInstancesScopedListWarningData(o[0]); |
| 4659 checkInstancesScopedListWarningData(o[1]); | 4680 checkInstancesScopedListWarningData(o[1]); |
| 4660 } | 4681 } |
| 4661 | 4682 |
| 4662 core.int buildCounterInstancesScopedListWarning = 0; | 4683 core.int buildCounterInstancesScopedListWarning = 0; |
| 4663 buildInstancesScopedListWarning() { | 4684 buildInstancesScopedListWarning() { |
| 4664 var o = new api.InstancesScopedListWarning(); | 4685 var o = new api.InstancesScopedListWarning(); |
| 4665 buildCounterInstancesScopedListWarning++; | 4686 buildCounterInstancesScopedListWarning++; |
| 4666 if (buildCounterInstancesScopedListWarning < 3) { | 4687 if (buildCounterInstancesScopedListWarning < 3) { |
| 4667 o.code = "foo"; | 4688 o.code = "foo"; |
| 4668 o.data = buildUnnamed2284(); | 4689 o.data = buildUnnamed2318(); |
| 4669 o.message = "foo"; | 4690 o.message = "foo"; |
| 4670 } | 4691 } |
| 4671 buildCounterInstancesScopedListWarning--; | 4692 buildCounterInstancesScopedListWarning--; |
| 4672 return o; | 4693 return o; |
| 4673 } | 4694 } |
| 4674 | 4695 |
| 4675 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 4696 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 4676 buildCounterInstancesScopedListWarning++; | 4697 buildCounterInstancesScopedListWarning++; |
| 4677 if (buildCounterInstancesScopedListWarning < 3) { | 4698 if (buildCounterInstancesScopedListWarning < 3) { |
| 4678 unittest.expect(o.code, unittest.equals('foo')); | 4699 unittest.expect(o.code, unittest.equals('foo')); |
| 4679 checkUnnamed2284(o.data); | 4700 checkUnnamed2318(o.data); |
| 4680 unittest.expect(o.message, unittest.equals('foo')); | 4701 unittest.expect(o.message, unittest.equals('foo')); |
| 4681 } | 4702 } |
| 4682 buildCounterInstancesScopedListWarning--; | 4703 buildCounterInstancesScopedListWarning--; |
| 4683 } | 4704 } |
| 4684 | 4705 |
| 4685 core.int buildCounterInstancesScopedList = 0; | 4706 core.int buildCounterInstancesScopedList = 0; |
| 4686 buildInstancesScopedList() { | 4707 buildInstancesScopedList() { |
| 4687 var o = new api.InstancesScopedList(); | 4708 var o = new api.InstancesScopedList(); |
| 4688 buildCounterInstancesScopedList++; | 4709 buildCounterInstancesScopedList++; |
| 4689 if (buildCounterInstancesScopedList < 3) { | 4710 if (buildCounterInstancesScopedList < 3) { |
| 4690 o.instances = buildUnnamed2283(); | 4711 o.instances = buildUnnamed2317(); |
| 4691 o.warning = buildInstancesScopedListWarning(); | 4712 o.warning = buildInstancesScopedListWarning(); |
| 4692 } | 4713 } |
| 4693 buildCounterInstancesScopedList--; | 4714 buildCounterInstancesScopedList--; |
| 4694 return o; | 4715 return o; |
| 4695 } | 4716 } |
| 4696 | 4717 |
| 4697 checkInstancesScopedList(api.InstancesScopedList o) { | 4718 checkInstancesScopedList(api.InstancesScopedList o) { |
| 4698 buildCounterInstancesScopedList++; | 4719 buildCounterInstancesScopedList++; |
| 4699 if (buildCounterInstancesScopedList < 3) { | 4720 if (buildCounterInstancesScopedList < 3) { |
| 4700 checkUnnamed2283(o.instances); | 4721 checkUnnamed2317(o.instances); |
| 4701 checkInstancesScopedListWarning(o.warning); | 4722 checkInstancesScopedListWarning(o.warning); |
| 4702 } | 4723 } |
| 4703 buildCounterInstancesScopedList--; | 4724 buildCounterInstancesScopedList--; |
| 4704 } | 4725 } |
| 4705 | 4726 |
| 4706 buildUnnamed2285() { | 4727 buildUnnamed2319() { |
| 4707 var o = new core.Map<core.String, core.String>(); | 4728 var o = new core.Map<core.String, core.String>(); |
| 4708 o["x"] = "foo"; | 4729 o["x"] = "foo"; |
| 4709 o["y"] = "foo"; | 4730 o["y"] = "foo"; |
| 4710 return o; | 4731 return o; |
| 4711 } | 4732 } |
| 4712 | 4733 |
| 4713 checkUnnamed2285(core.Map<core.String, core.String> o) { | 4734 checkUnnamed2319(core.Map<core.String, core.String> o) { |
| 4714 unittest.expect(o, unittest.hasLength(2)); | 4735 unittest.expect(o, unittest.hasLength(2)); |
| 4715 unittest.expect(o["x"], unittest.equals('foo')); | 4736 unittest.expect(o["x"], unittest.equals('foo')); |
| 4716 unittest.expect(o["y"], unittest.equals('foo')); | 4737 unittest.expect(o["y"], unittest.equals('foo')); |
| 4717 } | 4738 } |
| 4718 | 4739 |
| 4719 core.int buildCounterInstancesSetLabelsRequest = 0; | 4740 core.int buildCounterInstancesSetLabelsRequest = 0; |
| 4720 buildInstancesSetLabelsRequest() { | 4741 buildInstancesSetLabelsRequest() { |
| 4721 var o = new api.InstancesSetLabelsRequest(); | 4742 var o = new api.InstancesSetLabelsRequest(); |
| 4722 buildCounterInstancesSetLabelsRequest++; | 4743 buildCounterInstancesSetLabelsRequest++; |
| 4723 if (buildCounterInstancesSetLabelsRequest < 3) { | 4744 if (buildCounterInstancesSetLabelsRequest < 3) { |
| 4724 o.labelFingerprint = "foo"; | 4745 o.labelFingerprint = "foo"; |
| 4725 o.labels = buildUnnamed2285(); | 4746 o.labels = buildUnnamed2319(); |
| 4726 } | 4747 } |
| 4727 buildCounterInstancesSetLabelsRequest--; | 4748 buildCounterInstancesSetLabelsRequest--; |
| 4728 return o; | 4749 return o; |
| 4729 } | 4750 } |
| 4730 | 4751 |
| 4731 checkInstancesSetLabelsRequest(api.InstancesSetLabelsRequest o) { | 4752 checkInstancesSetLabelsRequest(api.InstancesSetLabelsRequest o) { |
| 4732 buildCounterInstancesSetLabelsRequest++; | 4753 buildCounterInstancesSetLabelsRequest++; |
| 4733 if (buildCounterInstancesSetLabelsRequest < 3) { | 4754 if (buildCounterInstancesSetLabelsRequest < 3) { |
| 4734 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 4755 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 4735 checkUnnamed2285(o.labels); | 4756 checkUnnamed2319(o.labels); |
| 4736 } | 4757 } |
| 4737 buildCounterInstancesSetLabelsRequest--; | 4758 buildCounterInstancesSetLabelsRequest--; |
| 4738 } | 4759 } |
| 4739 | 4760 |
| 4740 buildUnnamed2286() { | 4761 buildUnnamed2320() { |
| 4741 var o = new core.List<api.AcceleratorConfig>(); | 4762 var o = new core.List<api.AcceleratorConfig>(); |
| 4742 o.add(buildAcceleratorConfig()); | 4763 o.add(buildAcceleratorConfig()); |
| 4743 o.add(buildAcceleratorConfig()); | 4764 o.add(buildAcceleratorConfig()); |
| 4744 return o; | 4765 return o; |
| 4745 } | 4766 } |
| 4746 | 4767 |
| 4747 checkUnnamed2286(core.List<api.AcceleratorConfig> o) { | 4768 checkUnnamed2320(core.List<api.AcceleratorConfig> o) { |
| 4748 unittest.expect(o, unittest.hasLength(2)); | 4769 unittest.expect(o, unittest.hasLength(2)); |
| 4749 checkAcceleratorConfig(o[0]); | 4770 checkAcceleratorConfig(o[0]); |
| 4750 checkAcceleratorConfig(o[1]); | 4771 checkAcceleratorConfig(o[1]); |
| 4751 } | 4772 } |
| 4752 | 4773 |
| 4753 core.int buildCounterInstancesSetMachineResourcesRequest = 0; | 4774 core.int buildCounterInstancesSetMachineResourcesRequest = 0; |
| 4754 buildInstancesSetMachineResourcesRequest() { | 4775 buildInstancesSetMachineResourcesRequest() { |
| 4755 var o = new api.InstancesSetMachineResourcesRequest(); | 4776 var o = new api.InstancesSetMachineResourcesRequest(); |
| 4756 buildCounterInstancesSetMachineResourcesRequest++; | 4777 buildCounterInstancesSetMachineResourcesRequest++; |
| 4757 if (buildCounterInstancesSetMachineResourcesRequest < 3) { | 4778 if (buildCounterInstancesSetMachineResourcesRequest < 3) { |
| 4758 o.guestAccelerators = buildUnnamed2286(); | 4779 o.guestAccelerators = buildUnnamed2320(); |
| 4759 } | 4780 } |
| 4760 buildCounterInstancesSetMachineResourcesRequest--; | 4781 buildCounterInstancesSetMachineResourcesRequest--; |
| 4761 return o; | 4782 return o; |
| 4762 } | 4783 } |
| 4763 | 4784 |
| 4764 checkInstancesSetMachineResourcesRequest(api.InstancesSetMachineResourcesRequest
o) { | 4785 checkInstancesSetMachineResourcesRequest(api.InstancesSetMachineResourcesRequest
o) { |
| 4765 buildCounterInstancesSetMachineResourcesRequest++; | 4786 buildCounterInstancesSetMachineResourcesRequest++; |
| 4766 if (buildCounterInstancesSetMachineResourcesRequest < 3) { | 4787 if (buildCounterInstancesSetMachineResourcesRequest < 3) { |
| 4767 checkUnnamed2286(o.guestAccelerators); | 4788 checkUnnamed2320(o.guestAccelerators); |
| 4768 } | 4789 } |
| 4769 buildCounterInstancesSetMachineResourcesRequest--; | 4790 buildCounterInstancesSetMachineResourcesRequest--; |
| 4770 } | 4791 } |
| 4771 | 4792 |
| 4772 core.int buildCounterInstancesSetMachineTypeRequest = 0; | 4793 core.int buildCounterInstancesSetMachineTypeRequest = 0; |
| 4773 buildInstancesSetMachineTypeRequest() { | 4794 buildInstancesSetMachineTypeRequest() { |
| 4774 var o = new api.InstancesSetMachineTypeRequest(); | 4795 var o = new api.InstancesSetMachineTypeRequest(); |
| 4775 buildCounterInstancesSetMachineTypeRequest++; | 4796 buildCounterInstancesSetMachineTypeRequest++; |
| 4776 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 4797 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 4777 o.machineType = "foo"; | 4798 o.machineType = "foo"; |
| 4778 } | 4799 } |
| 4779 buildCounterInstancesSetMachineTypeRequest--; | 4800 buildCounterInstancesSetMachineTypeRequest--; |
| 4780 return o; | 4801 return o; |
| 4781 } | 4802 } |
| 4782 | 4803 |
| 4783 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { | 4804 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { |
| 4784 buildCounterInstancesSetMachineTypeRequest++; | 4805 buildCounterInstancesSetMachineTypeRequest++; |
| 4785 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 4806 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 4786 unittest.expect(o.machineType, unittest.equals('foo')); | 4807 unittest.expect(o.machineType, unittest.equals('foo')); |
| 4787 } | 4808 } |
| 4788 buildCounterInstancesSetMachineTypeRequest--; | 4809 buildCounterInstancesSetMachineTypeRequest--; |
| 4789 } | 4810 } |
| 4790 | 4811 |
| 4791 buildUnnamed2287() { | 4812 buildUnnamed2321() { |
| 4792 var o = new core.List<core.String>(); | 4813 var o = new core.List<core.String>(); |
| 4793 o.add("foo"); | 4814 o.add("foo"); |
| 4794 o.add("foo"); | 4815 o.add("foo"); |
| 4795 return o; | 4816 return o; |
| 4796 } | 4817 } |
| 4797 | 4818 |
| 4798 checkUnnamed2287(core.List<core.String> o) { | 4819 checkUnnamed2321(core.List<core.String> o) { |
| 4799 unittest.expect(o, unittest.hasLength(2)); | 4820 unittest.expect(o, unittest.hasLength(2)); |
| 4800 unittest.expect(o[0], unittest.equals('foo')); | 4821 unittest.expect(o[0], unittest.equals('foo')); |
| 4801 unittest.expect(o[1], unittest.equals('foo')); | 4822 unittest.expect(o[1], unittest.equals('foo')); |
| 4802 } | 4823 } |
| 4803 | 4824 |
| 4804 core.int buildCounterInstancesSetServiceAccountRequest = 0; | 4825 core.int buildCounterInstancesSetServiceAccountRequest = 0; |
| 4805 buildInstancesSetServiceAccountRequest() { | 4826 buildInstancesSetServiceAccountRequest() { |
| 4806 var o = new api.InstancesSetServiceAccountRequest(); | 4827 var o = new api.InstancesSetServiceAccountRequest(); |
| 4807 buildCounterInstancesSetServiceAccountRequest++; | 4828 buildCounterInstancesSetServiceAccountRequest++; |
| 4808 if (buildCounterInstancesSetServiceAccountRequest < 3) { | 4829 if (buildCounterInstancesSetServiceAccountRequest < 3) { |
| 4809 o.email = "foo"; | 4830 o.email = "foo"; |
| 4810 o.scopes = buildUnnamed2287(); | 4831 o.scopes = buildUnnamed2321(); |
| 4811 } | 4832 } |
| 4812 buildCounterInstancesSetServiceAccountRequest--; | 4833 buildCounterInstancesSetServiceAccountRequest--; |
| 4813 return o; | 4834 return o; |
| 4814 } | 4835 } |
| 4815 | 4836 |
| 4816 checkInstancesSetServiceAccountRequest(api.InstancesSetServiceAccountRequest o)
{ | 4837 checkInstancesSetServiceAccountRequest(api.InstancesSetServiceAccountRequest o)
{ |
| 4817 buildCounterInstancesSetServiceAccountRequest++; | 4838 buildCounterInstancesSetServiceAccountRequest++; |
| 4818 if (buildCounterInstancesSetServiceAccountRequest < 3) { | 4839 if (buildCounterInstancesSetServiceAccountRequest < 3) { |
| 4819 unittest.expect(o.email, unittest.equals('foo')); | 4840 unittest.expect(o.email, unittest.equals('foo')); |
| 4820 checkUnnamed2287(o.scopes); | 4841 checkUnnamed2321(o.scopes); |
| 4821 } | 4842 } |
| 4822 buildCounterInstancesSetServiceAccountRequest--; | 4843 buildCounterInstancesSetServiceAccountRequest--; |
| 4823 } | 4844 } |
| 4824 | 4845 |
| 4825 buildUnnamed2288() { | 4846 buildUnnamed2322() { |
| 4826 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); | 4847 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); |
| 4827 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 4848 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 4828 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 4849 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 4829 return o; | 4850 return o; |
| 4830 } | 4851 } |
| 4831 | 4852 |
| 4832 checkUnnamed2288(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { | 4853 checkUnnamed2322(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { |
| 4833 unittest.expect(o, unittest.hasLength(2)); | 4854 unittest.expect(o, unittest.hasLength(2)); |
| 4834 checkCustomerEncryptionKeyProtectedDisk(o[0]); | 4855 checkCustomerEncryptionKeyProtectedDisk(o[0]); |
| 4835 checkCustomerEncryptionKeyProtectedDisk(o[1]); | 4856 checkCustomerEncryptionKeyProtectedDisk(o[1]); |
| 4836 } | 4857 } |
| 4837 | 4858 |
| 4838 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; | 4859 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; |
| 4839 buildInstancesStartWithEncryptionKeyRequest() { | 4860 buildInstancesStartWithEncryptionKeyRequest() { |
| 4840 var o = new api.InstancesStartWithEncryptionKeyRequest(); | 4861 var o = new api.InstancesStartWithEncryptionKeyRequest(); |
| 4841 buildCounterInstancesStartWithEncryptionKeyRequest++; | 4862 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 4842 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 4863 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 4843 o.disks = buildUnnamed2288(); | 4864 o.disks = buildUnnamed2322(); |
| 4844 } | 4865 } |
| 4845 buildCounterInstancesStartWithEncryptionKeyRequest--; | 4866 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 4846 return o; | 4867 return o; |
| 4847 } | 4868 } |
| 4848 | 4869 |
| 4849 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { | 4870 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { |
| 4850 buildCounterInstancesStartWithEncryptionKeyRequest++; | 4871 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 4851 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 4872 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 4852 checkUnnamed2288(o.disks); | 4873 checkUnnamed2322(o.disks); |
| 4853 } | 4874 } |
| 4854 buildCounterInstancesStartWithEncryptionKeyRequest--; | 4875 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 4855 } | 4876 } |
| 4856 | 4877 |
| 4857 core.int buildCounterLicense = 0; | 4878 core.int buildCounterLicense = 0; |
| 4858 buildLicense() { | 4879 buildLicense() { |
| 4859 var o = new api.License(); | 4880 var o = new api.License(); |
| 4860 buildCounterLicense++; | 4881 buildCounterLicense++; |
| 4861 if (buildCounterLicense < 3) { | 4882 if (buildCounterLicense < 3) { |
| 4862 o.chargesUseFee = true; | 4883 o.chargesUseFee = true; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 4891 } | 4912 } |
| 4892 | 4913 |
| 4893 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 4914 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 4894 buildCounterMachineTypeScratchDisks++; | 4915 buildCounterMachineTypeScratchDisks++; |
| 4895 if (buildCounterMachineTypeScratchDisks < 3) { | 4916 if (buildCounterMachineTypeScratchDisks < 3) { |
| 4896 unittest.expect(o.diskGb, unittest.equals(42)); | 4917 unittest.expect(o.diskGb, unittest.equals(42)); |
| 4897 } | 4918 } |
| 4898 buildCounterMachineTypeScratchDisks--; | 4919 buildCounterMachineTypeScratchDisks--; |
| 4899 } | 4920 } |
| 4900 | 4921 |
| 4901 buildUnnamed2289() { | 4922 buildUnnamed2323() { |
| 4902 var o = new core.List<api.MachineTypeScratchDisks>(); | 4923 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 4903 o.add(buildMachineTypeScratchDisks()); | 4924 o.add(buildMachineTypeScratchDisks()); |
| 4904 o.add(buildMachineTypeScratchDisks()); | 4925 o.add(buildMachineTypeScratchDisks()); |
| 4905 return o; | 4926 return o; |
| 4906 } | 4927 } |
| 4907 | 4928 |
| 4908 checkUnnamed2289(core.List<api.MachineTypeScratchDisks> o) { | 4929 checkUnnamed2323(core.List<api.MachineTypeScratchDisks> o) { |
| 4909 unittest.expect(o, unittest.hasLength(2)); | 4930 unittest.expect(o, unittest.hasLength(2)); |
| 4910 checkMachineTypeScratchDisks(o[0]); | 4931 checkMachineTypeScratchDisks(o[0]); |
| 4911 checkMachineTypeScratchDisks(o[1]); | 4932 checkMachineTypeScratchDisks(o[1]); |
| 4912 } | 4933 } |
| 4913 | 4934 |
| 4914 core.int buildCounterMachineType = 0; | 4935 core.int buildCounterMachineType = 0; |
| 4915 buildMachineType() { | 4936 buildMachineType() { |
| 4916 var o = new api.MachineType(); | 4937 var o = new api.MachineType(); |
| 4917 buildCounterMachineType++; | 4938 buildCounterMachineType++; |
| 4918 if (buildCounterMachineType < 3) { | 4939 if (buildCounterMachineType < 3) { |
| 4919 o.creationTimestamp = "foo"; | 4940 o.creationTimestamp = "foo"; |
| 4920 o.deprecated = buildDeprecationStatus(); | 4941 o.deprecated = buildDeprecationStatus(); |
| 4921 o.description = "foo"; | 4942 o.description = "foo"; |
| 4922 o.guestCpus = 42; | 4943 o.guestCpus = 42; |
| 4923 o.id = "foo"; | 4944 o.id = "foo"; |
| 4924 o.imageSpaceGb = 42; | 4945 o.imageSpaceGb = 42; |
| 4925 o.isSharedCpu = true; | 4946 o.isSharedCpu = true; |
| 4926 o.kind = "foo"; | 4947 o.kind = "foo"; |
| 4927 o.maximumPersistentDisks = 42; | 4948 o.maximumPersistentDisks = 42; |
| 4928 o.maximumPersistentDisksSizeGb = "foo"; | 4949 o.maximumPersistentDisksSizeGb = "foo"; |
| 4929 o.memoryMb = 42; | 4950 o.memoryMb = 42; |
| 4930 o.name = "foo"; | 4951 o.name = "foo"; |
| 4931 o.scratchDisks = buildUnnamed2289(); | 4952 o.scratchDisks = buildUnnamed2323(); |
| 4932 o.selfLink = "foo"; | 4953 o.selfLink = "foo"; |
| 4933 o.zone = "foo"; | 4954 o.zone = "foo"; |
| 4934 } | 4955 } |
| 4935 buildCounterMachineType--; | 4956 buildCounterMachineType--; |
| 4936 return o; | 4957 return o; |
| 4937 } | 4958 } |
| 4938 | 4959 |
| 4939 checkMachineType(api.MachineType o) { | 4960 checkMachineType(api.MachineType o) { |
| 4940 buildCounterMachineType++; | 4961 buildCounterMachineType++; |
| 4941 if (buildCounterMachineType < 3) { | 4962 if (buildCounterMachineType < 3) { |
| 4942 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4963 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4943 checkDeprecationStatus(o.deprecated); | 4964 checkDeprecationStatus(o.deprecated); |
| 4944 unittest.expect(o.description, unittest.equals('foo')); | 4965 unittest.expect(o.description, unittest.equals('foo')); |
| 4945 unittest.expect(o.guestCpus, unittest.equals(42)); | 4966 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 4946 unittest.expect(o.id, unittest.equals('foo')); | 4967 unittest.expect(o.id, unittest.equals('foo')); |
| 4947 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 4968 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 4948 unittest.expect(o.isSharedCpu, unittest.isTrue); | 4969 unittest.expect(o.isSharedCpu, unittest.isTrue); |
| 4949 unittest.expect(o.kind, unittest.equals('foo')); | 4970 unittest.expect(o.kind, unittest.equals('foo')); |
| 4950 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 4971 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 4951 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 4972 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 4952 unittest.expect(o.memoryMb, unittest.equals(42)); | 4973 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 4953 unittest.expect(o.name, unittest.equals('foo')); | 4974 unittest.expect(o.name, unittest.equals('foo')); |
| 4954 checkUnnamed2289(o.scratchDisks); | 4975 checkUnnamed2323(o.scratchDisks); |
| 4955 unittest.expect(o.selfLink, unittest.equals('foo')); | 4976 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4956 unittest.expect(o.zone, unittest.equals('foo')); | 4977 unittest.expect(o.zone, unittest.equals('foo')); |
| 4957 } | 4978 } |
| 4958 buildCounterMachineType--; | 4979 buildCounterMachineType--; |
| 4959 } | 4980 } |
| 4960 | 4981 |
| 4961 buildUnnamed2290() { | 4982 buildUnnamed2324() { |
| 4962 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 4983 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 4963 o["x"] = buildMachineTypesScopedList(); | 4984 o["x"] = buildMachineTypesScopedList(); |
| 4964 o["y"] = buildMachineTypesScopedList(); | 4985 o["y"] = buildMachineTypesScopedList(); |
| 4965 return o; | 4986 return o; |
| 4966 } | 4987 } |
| 4967 | 4988 |
| 4968 checkUnnamed2290(core.Map<core.String, api.MachineTypesScopedList> o) { | 4989 checkUnnamed2324(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 4969 unittest.expect(o, unittest.hasLength(2)); | 4990 unittest.expect(o, unittest.hasLength(2)); |
| 4970 checkMachineTypesScopedList(o["x"]); | 4991 checkMachineTypesScopedList(o["x"]); |
| 4971 checkMachineTypesScopedList(o["y"]); | 4992 checkMachineTypesScopedList(o["y"]); |
| 4972 } | 4993 } |
| 4973 | 4994 |
| 4974 core.int buildCounterMachineTypeAggregatedList = 0; | 4995 core.int buildCounterMachineTypeAggregatedList = 0; |
| 4975 buildMachineTypeAggregatedList() { | 4996 buildMachineTypeAggregatedList() { |
| 4976 var o = new api.MachineTypeAggregatedList(); | 4997 var o = new api.MachineTypeAggregatedList(); |
| 4977 buildCounterMachineTypeAggregatedList++; | 4998 buildCounterMachineTypeAggregatedList++; |
| 4978 if (buildCounterMachineTypeAggregatedList < 3) { | 4999 if (buildCounterMachineTypeAggregatedList < 3) { |
| 4979 o.id = "foo"; | 5000 o.id = "foo"; |
| 4980 o.items = buildUnnamed2290(); | 5001 o.items = buildUnnamed2324(); |
| 4981 o.kind = "foo"; | 5002 o.kind = "foo"; |
| 4982 o.nextPageToken = "foo"; | 5003 o.nextPageToken = "foo"; |
| 4983 o.selfLink = "foo"; | 5004 o.selfLink = "foo"; |
| 4984 } | 5005 } |
| 4985 buildCounterMachineTypeAggregatedList--; | 5006 buildCounterMachineTypeAggregatedList--; |
| 4986 return o; | 5007 return o; |
| 4987 } | 5008 } |
| 4988 | 5009 |
| 4989 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 5010 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 4990 buildCounterMachineTypeAggregatedList++; | 5011 buildCounterMachineTypeAggregatedList++; |
| 4991 if (buildCounterMachineTypeAggregatedList < 3) { | 5012 if (buildCounterMachineTypeAggregatedList < 3) { |
| 4992 unittest.expect(o.id, unittest.equals('foo')); | 5013 unittest.expect(o.id, unittest.equals('foo')); |
| 4993 checkUnnamed2290(o.items); | 5014 checkUnnamed2324(o.items); |
| 4994 unittest.expect(o.kind, unittest.equals('foo')); | 5015 unittest.expect(o.kind, unittest.equals('foo')); |
| 4995 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5016 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4996 unittest.expect(o.selfLink, unittest.equals('foo')); | 5017 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4997 } | 5018 } |
| 4998 buildCounterMachineTypeAggregatedList--; | 5019 buildCounterMachineTypeAggregatedList--; |
| 4999 } | 5020 } |
| 5000 | 5021 |
| 5001 buildUnnamed2291() { | 5022 buildUnnamed2325() { |
| 5002 var o = new core.List<api.MachineType>(); | 5023 var o = new core.List<api.MachineType>(); |
| 5003 o.add(buildMachineType()); | 5024 o.add(buildMachineType()); |
| 5004 o.add(buildMachineType()); | 5025 o.add(buildMachineType()); |
| 5005 return o; | 5026 return o; |
| 5006 } | 5027 } |
| 5007 | 5028 |
| 5008 checkUnnamed2291(core.List<api.MachineType> o) { | 5029 checkUnnamed2325(core.List<api.MachineType> o) { |
| 5009 unittest.expect(o, unittest.hasLength(2)); | 5030 unittest.expect(o, unittest.hasLength(2)); |
| 5010 checkMachineType(o[0]); | 5031 checkMachineType(o[0]); |
| 5011 checkMachineType(o[1]); | 5032 checkMachineType(o[1]); |
| 5012 } | 5033 } |
| 5013 | 5034 |
| 5014 core.int buildCounterMachineTypeList = 0; | 5035 core.int buildCounterMachineTypeList = 0; |
| 5015 buildMachineTypeList() { | 5036 buildMachineTypeList() { |
| 5016 var o = new api.MachineTypeList(); | 5037 var o = new api.MachineTypeList(); |
| 5017 buildCounterMachineTypeList++; | 5038 buildCounterMachineTypeList++; |
| 5018 if (buildCounterMachineTypeList < 3) { | 5039 if (buildCounterMachineTypeList < 3) { |
| 5019 o.id = "foo"; | 5040 o.id = "foo"; |
| 5020 o.items = buildUnnamed2291(); | 5041 o.items = buildUnnamed2325(); |
| 5021 o.kind = "foo"; | 5042 o.kind = "foo"; |
| 5022 o.nextPageToken = "foo"; | 5043 o.nextPageToken = "foo"; |
| 5023 o.selfLink = "foo"; | 5044 o.selfLink = "foo"; |
| 5024 } | 5045 } |
| 5025 buildCounterMachineTypeList--; | 5046 buildCounterMachineTypeList--; |
| 5026 return o; | 5047 return o; |
| 5027 } | 5048 } |
| 5028 | 5049 |
| 5029 checkMachineTypeList(api.MachineTypeList o) { | 5050 checkMachineTypeList(api.MachineTypeList o) { |
| 5030 buildCounterMachineTypeList++; | 5051 buildCounterMachineTypeList++; |
| 5031 if (buildCounterMachineTypeList < 3) { | 5052 if (buildCounterMachineTypeList < 3) { |
| 5032 unittest.expect(o.id, unittest.equals('foo')); | 5053 unittest.expect(o.id, unittest.equals('foo')); |
| 5033 checkUnnamed2291(o.items); | 5054 checkUnnamed2325(o.items); |
| 5034 unittest.expect(o.kind, unittest.equals('foo')); | 5055 unittest.expect(o.kind, unittest.equals('foo')); |
| 5035 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5056 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5036 unittest.expect(o.selfLink, unittest.equals('foo')); | 5057 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5037 } | 5058 } |
| 5038 buildCounterMachineTypeList--; | 5059 buildCounterMachineTypeList--; |
| 5039 } | 5060 } |
| 5040 | 5061 |
| 5041 buildUnnamed2292() { | 5062 buildUnnamed2326() { |
| 5042 var o = new core.List<api.MachineType>(); | 5063 var o = new core.List<api.MachineType>(); |
| 5043 o.add(buildMachineType()); | 5064 o.add(buildMachineType()); |
| 5044 o.add(buildMachineType()); | 5065 o.add(buildMachineType()); |
| 5045 return o; | 5066 return o; |
| 5046 } | 5067 } |
| 5047 | 5068 |
| 5048 checkUnnamed2292(core.List<api.MachineType> o) { | 5069 checkUnnamed2326(core.List<api.MachineType> o) { |
| 5049 unittest.expect(o, unittest.hasLength(2)); | 5070 unittest.expect(o, unittest.hasLength(2)); |
| 5050 checkMachineType(o[0]); | 5071 checkMachineType(o[0]); |
| 5051 checkMachineType(o[1]); | 5072 checkMachineType(o[1]); |
| 5052 } | 5073 } |
| 5053 | 5074 |
| 5054 core.int buildCounterMachineTypesScopedListWarningData = 0; | 5075 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 5055 buildMachineTypesScopedListWarningData() { | 5076 buildMachineTypesScopedListWarningData() { |
| 5056 var o = new api.MachineTypesScopedListWarningData(); | 5077 var o = new api.MachineTypesScopedListWarningData(); |
| 5057 buildCounterMachineTypesScopedListWarningData++; | 5078 buildCounterMachineTypesScopedListWarningData++; |
| 5058 if (buildCounterMachineTypesScopedListWarningData < 3) { | 5079 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 5059 o.key = "foo"; | 5080 o.key = "foo"; |
| 5060 o.value = "foo"; | 5081 o.value = "foo"; |
| 5061 } | 5082 } |
| 5062 buildCounterMachineTypesScopedListWarningData--; | 5083 buildCounterMachineTypesScopedListWarningData--; |
| 5063 return o; | 5084 return o; |
| 5064 } | 5085 } |
| 5065 | 5086 |
| 5066 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 5087 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 5067 buildCounterMachineTypesScopedListWarningData++; | 5088 buildCounterMachineTypesScopedListWarningData++; |
| 5068 if (buildCounterMachineTypesScopedListWarningData < 3) { | 5089 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 5069 unittest.expect(o.key, unittest.equals('foo')); | 5090 unittest.expect(o.key, unittest.equals('foo')); |
| 5070 unittest.expect(o.value, unittest.equals('foo')); | 5091 unittest.expect(o.value, unittest.equals('foo')); |
| 5071 } | 5092 } |
| 5072 buildCounterMachineTypesScopedListWarningData--; | 5093 buildCounterMachineTypesScopedListWarningData--; |
| 5073 } | 5094 } |
| 5074 | 5095 |
| 5075 buildUnnamed2293() { | 5096 buildUnnamed2327() { |
| 5076 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 5097 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 5077 o.add(buildMachineTypesScopedListWarningData()); | 5098 o.add(buildMachineTypesScopedListWarningData()); |
| 5078 o.add(buildMachineTypesScopedListWarningData()); | 5099 o.add(buildMachineTypesScopedListWarningData()); |
| 5079 return o; | 5100 return o; |
| 5080 } | 5101 } |
| 5081 | 5102 |
| 5082 checkUnnamed2293(core.List<api.MachineTypesScopedListWarningData> o) { | 5103 checkUnnamed2327(core.List<api.MachineTypesScopedListWarningData> o) { |
| 5083 unittest.expect(o, unittest.hasLength(2)); | 5104 unittest.expect(o, unittest.hasLength(2)); |
| 5084 checkMachineTypesScopedListWarningData(o[0]); | 5105 checkMachineTypesScopedListWarningData(o[0]); |
| 5085 checkMachineTypesScopedListWarningData(o[1]); | 5106 checkMachineTypesScopedListWarningData(o[1]); |
| 5086 } | 5107 } |
| 5087 | 5108 |
| 5088 core.int buildCounterMachineTypesScopedListWarning = 0; | 5109 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 5089 buildMachineTypesScopedListWarning() { | 5110 buildMachineTypesScopedListWarning() { |
| 5090 var o = new api.MachineTypesScopedListWarning(); | 5111 var o = new api.MachineTypesScopedListWarning(); |
| 5091 buildCounterMachineTypesScopedListWarning++; | 5112 buildCounterMachineTypesScopedListWarning++; |
| 5092 if (buildCounterMachineTypesScopedListWarning < 3) { | 5113 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 5093 o.code = "foo"; | 5114 o.code = "foo"; |
| 5094 o.data = buildUnnamed2293(); | 5115 o.data = buildUnnamed2327(); |
| 5095 o.message = "foo"; | 5116 o.message = "foo"; |
| 5096 } | 5117 } |
| 5097 buildCounterMachineTypesScopedListWarning--; | 5118 buildCounterMachineTypesScopedListWarning--; |
| 5098 return o; | 5119 return o; |
| 5099 } | 5120 } |
| 5100 | 5121 |
| 5101 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 5122 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 5102 buildCounterMachineTypesScopedListWarning++; | 5123 buildCounterMachineTypesScopedListWarning++; |
| 5103 if (buildCounterMachineTypesScopedListWarning < 3) { | 5124 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 5104 unittest.expect(o.code, unittest.equals('foo')); | 5125 unittest.expect(o.code, unittest.equals('foo')); |
| 5105 checkUnnamed2293(o.data); | 5126 checkUnnamed2327(o.data); |
| 5106 unittest.expect(o.message, unittest.equals('foo')); | 5127 unittest.expect(o.message, unittest.equals('foo')); |
| 5107 } | 5128 } |
| 5108 buildCounterMachineTypesScopedListWarning--; | 5129 buildCounterMachineTypesScopedListWarning--; |
| 5109 } | 5130 } |
| 5110 | 5131 |
| 5111 core.int buildCounterMachineTypesScopedList = 0; | 5132 core.int buildCounterMachineTypesScopedList = 0; |
| 5112 buildMachineTypesScopedList() { | 5133 buildMachineTypesScopedList() { |
| 5113 var o = new api.MachineTypesScopedList(); | 5134 var o = new api.MachineTypesScopedList(); |
| 5114 buildCounterMachineTypesScopedList++; | 5135 buildCounterMachineTypesScopedList++; |
| 5115 if (buildCounterMachineTypesScopedList < 3) { | 5136 if (buildCounterMachineTypesScopedList < 3) { |
| 5116 o.machineTypes = buildUnnamed2292(); | 5137 o.machineTypes = buildUnnamed2326(); |
| 5117 o.warning = buildMachineTypesScopedListWarning(); | 5138 o.warning = buildMachineTypesScopedListWarning(); |
| 5118 } | 5139 } |
| 5119 buildCounterMachineTypesScopedList--; | 5140 buildCounterMachineTypesScopedList--; |
| 5120 return o; | 5141 return o; |
| 5121 } | 5142 } |
| 5122 | 5143 |
| 5123 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 5144 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 5124 buildCounterMachineTypesScopedList++; | 5145 buildCounterMachineTypesScopedList++; |
| 5125 if (buildCounterMachineTypesScopedList < 3) { | 5146 if (buildCounterMachineTypesScopedList < 3) { |
| 5126 checkUnnamed2292(o.machineTypes); | 5147 checkUnnamed2326(o.machineTypes); |
| 5127 checkMachineTypesScopedListWarning(o.warning); | 5148 checkMachineTypesScopedListWarning(o.warning); |
| 5128 } | 5149 } |
| 5129 buildCounterMachineTypesScopedList--; | 5150 buildCounterMachineTypesScopedList--; |
| 5130 } | 5151 } |
| 5131 | 5152 |
| 5132 core.int buildCounterManagedInstance = 0; | 5153 core.int buildCounterManagedInstance = 0; |
| 5133 buildManagedInstance() { | 5154 buildManagedInstance() { |
| 5134 var o = new api.ManagedInstance(); | 5155 var o = new api.ManagedInstance(); |
| 5135 buildCounterManagedInstance++; | 5156 buildCounterManagedInstance++; |
| 5136 if (buildCounterManagedInstance < 3) { | 5157 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5172 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 5193 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 5173 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 5194 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 5174 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 5195 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 5175 unittest.expect(o.code, unittest.equals('foo')); | 5196 unittest.expect(o.code, unittest.equals('foo')); |
| 5176 unittest.expect(o.location, unittest.equals('foo')); | 5197 unittest.expect(o.location, unittest.equals('foo')); |
| 5177 unittest.expect(o.message, unittest.equals('foo')); | 5198 unittest.expect(o.message, unittest.equals('foo')); |
| 5178 } | 5199 } |
| 5179 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 5200 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 5180 } | 5201 } |
| 5181 | 5202 |
| 5182 buildUnnamed2294() { | 5203 buildUnnamed2328() { |
| 5183 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 5204 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 5184 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 5205 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 5185 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 5206 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 5186 return o; | 5207 return o; |
| 5187 } | 5208 } |
| 5188 | 5209 |
| 5189 checkUnnamed2294(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 5210 checkUnnamed2328(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 5190 unittest.expect(o, unittest.hasLength(2)); | 5211 unittest.expect(o, unittest.hasLength(2)); |
| 5191 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 5212 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 5192 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 5213 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 5193 } | 5214 } |
| 5194 | 5215 |
| 5195 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 5216 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 5196 buildManagedInstanceLastAttemptErrors() { | 5217 buildManagedInstanceLastAttemptErrors() { |
| 5197 var o = new api.ManagedInstanceLastAttemptErrors(); | 5218 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 5198 buildCounterManagedInstanceLastAttemptErrors++; | 5219 buildCounterManagedInstanceLastAttemptErrors++; |
| 5199 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 5220 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 5200 o.errors = buildUnnamed2294(); | 5221 o.errors = buildUnnamed2328(); |
| 5201 } | 5222 } |
| 5202 buildCounterManagedInstanceLastAttemptErrors--; | 5223 buildCounterManagedInstanceLastAttemptErrors--; |
| 5203 return o; | 5224 return o; |
| 5204 } | 5225 } |
| 5205 | 5226 |
| 5206 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 5227 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 5207 buildCounterManagedInstanceLastAttemptErrors++; | 5228 buildCounterManagedInstanceLastAttemptErrors++; |
| 5208 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 5229 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 5209 checkUnnamed2294(o.errors); | 5230 checkUnnamed2328(o.errors); |
| 5210 } | 5231 } |
| 5211 buildCounterManagedInstanceLastAttemptErrors--; | 5232 buildCounterManagedInstanceLastAttemptErrors--; |
| 5212 } | 5233 } |
| 5213 | 5234 |
| 5214 core.int buildCounterManagedInstanceLastAttempt = 0; | 5235 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 5215 buildManagedInstanceLastAttempt() { | 5236 buildManagedInstanceLastAttempt() { |
| 5216 var o = new api.ManagedInstanceLastAttempt(); | 5237 var o = new api.ManagedInstanceLastAttempt(); |
| 5217 buildCounterManagedInstanceLastAttempt++; | 5238 buildCounterManagedInstanceLastAttempt++; |
| 5218 if (buildCounterManagedInstanceLastAttempt < 3) { | 5239 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 5219 o.errors = buildManagedInstanceLastAttemptErrors(); | 5240 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5244 | 5265 |
| 5245 checkMetadataItems(api.MetadataItems o) { | 5266 checkMetadataItems(api.MetadataItems o) { |
| 5246 buildCounterMetadataItems++; | 5267 buildCounterMetadataItems++; |
| 5247 if (buildCounterMetadataItems < 3) { | 5268 if (buildCounterMetadataItems < 3) { |
| 5248 unittest.expect(o.key, unittest.equals('foo')); | 5269 unittest.expect(o.key, unittest.equals('foo')); |
| 5249 unittest.expect(o.value, unittest.equals('foo')); | 5270 unittest.expect(o.value, unittest.equals('foo')); |
| 5250 } | 5271 } |
| 5251 buildCounterMetadataItems--; | 5272 buildCounterMetadataItems--; |
| 5252 } | 5273 } |
| 5253 | 5274 |
| 5254 buildUnnamed2295() { | 5275 buildUnnamed2329() { |
| 5255 var o = new core.List<api.MetadataItems>(); | 5276 var o = new core.List<api.MetadataItems>(); |
| 5256 o.add(buildMetadataItems()); | 5277 o.add(buildMetadataItems()); |
| 5257 o.add(buildMetadataItems()); | 5278 o.add(buildMetadataItems()); |
| 5258 return o; | 5279 return o; |
| 5259 } | 5280 } |
| 5260 | 5281 |
| 5261 checkUnnamed2295(core.List<api.MetadataItems> o) { | 5282 checkUnnamed2329(core.List<api.MetadataItems> o) { |
| 5262 unittest.expect(o, unittest.hasLength(2)); | 5283 unittest.expect(o, unittest.hasLength(2)); |
| 5263 checkMetadataItems(o[0]); | 5284 checkMetadataItems(o[0]); |
| 5264 checkMetadataItems(o[1]); | 5285 checkMetadataItems(o[1]); |
| 5265 } | 5286 } |
| 5266 | 5287 |
| 5267 core.int buildCounterMetadata = 0; | 5288 core.int buildCounterMetadata = 0; |
| 5268 buildMetadata() { | 5289 buildMetadata() { |
| 5269 var o = new api.Metadata(); | 5290 var o = new api.Metadata(); |
| 5270 buildCounterMetadata++; | 5291 buildCounterMetadata++; |
| 5271 if (buildCounterMetadata < 3) { | 5292 if (buildCounterMetadata < 3) { |
| 5272 o.fingerprint = "foo"; | 5293 o.fingerprint = "foo"; |
| 5273 o.items = buildUnnamed2295(); | 5294 o.items = buildUnnamed2329(); |
| 5274 o.kind = "foo"; | 5295 o.kind = "foo"; |
| 5275 } | 5296 } |
| 5276 buildCounterMetadata--; | 5297 buildCounterMetadata--; |
| 5277 return o; | 5298 return o; |
| 5278 } | 5299 } |
| 5279 | 5300 |
| 5280 checkMetadata(api.Metadata o) { | 5301 checkMetadata(api.Metadata o) { |
| 5281 buildCounterMetadata++; | 5302 buildCounterMetadata++; |
| 5282 if (buildCounterMetadata < 3) { | 5303 if (buildCounterMetadata < 3) { |
| 5283 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5304 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5284 checkUnnamed2295(o.items); | 5305 checkUnnamed2329(o.items); |
| 5285 unittest.expect(o.kind, unittest.equals('foo')); | 5306 unittest.expect(o.kind, unittest.equals('foo')); |
| 5286 } | 5307 } |
| 5287 buildCounterMetadata--; | 5308 buildCounterMetadata--; |
| 5288 } | 5309 } |
| 5289 | 5310 |
| 5290 core.int buildCounterNamedPort = 0; | 5311 core.int buildCounterNamedPort = 0; |
| 5291 buildNamedPort() { | 5312 buildNamedPort() { |
| 5292 var o = new api.NamedPort(); | 5313 var o = new api.NamedPort(); |
| 5293 buildCounterNamedPort++; | 5314 buildCounterNamedPort++; |
| 5294 if (buildCounterNamedPort < 3) { | 5315 if (buildCounterNamedPort < 3) { |
| 5295 o.name = "foo"; | 5316 o.name = "foo"; |
| 5296 o.port = 42; | 5317 o.port = 42; |
| 5297 } | 5318 } |
| 5298 buildCounterNamedPort--; | 5319 buildCounterNamedPort--; |
| 5299 return o; | 5320 return o; |
| 5300 } | 5321 } |
| 5301 | 5322 |
| 5302 checkNamedPort(api.NamedPort o) { | 5323 checkNamedPort(api.NamedPort o) { |
| 5303 buildCounterNamedPort++; | 5324 buildCounterNamedPort++; |
| 5304 if (buildCounterNamedPort < 3) { | 5325 if (buildCounterNamedPort < 3) { |
| 5305 unittest.expect(o.name, unittest.equals('foo')); | 5326 unittest.expect(o.name, unittest.equals('foo')); |
| 5306 unittest.expect(o.port, unittest.equals(42)); | 5327 unittest.expect(o.port, unittest.equals(42)); |
| 5307 } | 5328 } |
| 5308 buildCounterNamedPort--; | 5329 buildCounterNamedPort--; |
| 5309 } | 5330 } |
| 5310 | 5331 |
| 5311 buildUnnamed2296() { | 5332 buildUnnamed2330() { |
| 5312 var o = new core.List<api.NetworkPeering>(); | 5333 var o = new core.List<api.NetworkPeering>(); |
| 5313 o.add(buildNetworkPeering()); | 5334 o.add(buildNetworkPeering()); |
| 5314 o.add(buildNetworkPeering()); | 5335 o.add(buildNetworkPeering()); |
| 5315 return o; | 5336 return o; |
| 5316 } | 5337 } |
| 5317 | 5338 |
| 5318 checkUnnamed2296(core.List<api.NetworkPeering> o) { | 5339 checkUnnamed2330(core.List<api.NetworkPeering> o) { |
| 5319 unittest.expect(o, unittest.hasLength(2)); | 5340 unittest.expect(o, unittest.hasLength(2)); |
| 5320 checkNetworkPeering(o[0]); | 5341 checkNetworkPeering(o[0]); |
| 5321 checkNetworkPeering(o[1]); | 5342 checkNetworkPeering(o[1]); |
| 5322 } | 5343 } |
| 5323 | 5344 |
| 5324 buildUnnamed2297() { | 5345 buildUnnamed2331() { |
| 5325 var o = new core.List<core.String>(); | 5346 var o = new core.List<core.String>(); |
| 5326 o.add("foo"); | 5347 o.add("foo"); |
| 5327 o.add("foo"); | 5348 o.add("foo"); |
| 5328 return o; | 5349 return o; |
| 5329 } | 5350 } |
| 5330 | 5351 |
| 5331 checkUnnamed2297(core.List<core.String> o) { | 5352 checkUnnamed2331(core.List<core.String> o) { |
| 5332 unittest.expect(o, unittest.hasLength(2)); | 5353 unittest.expect(o, unittest.hasLength(2)); |
| 5333 unittest.expect(o[0], unittest.equals('foo')); | 5354 unittest.expect(o[0], unittest.equals('foo')); |
| 5334 unittest.expect(o[1], unittest.equals('foo')); | 5355 unittest.expect(o[1], unittest.equals('foo')); |
| 5335 } | 5356 } |
| 5336 | 5357 |
| 5337 core.int buildCounterNetwork = 0; | 5358 core.int buildCounterNetwork = 0; |
| 5338 buildNetwork() { | 5359 buildNetwork() { |
| 5339 var o = new api.Network(); | 5360 var o = new api.Network(); |
| 5340 buildCounterNetwork++; | 5361 buildCounterNetwork++; |
| 5341 if (buildCounterNetwork < 3) { | 5362 if (buildCounterNetwork < 3) { |
| 5342 o.IPv4Range = "foo"; | 5363 o.IPv4Range = "foo"; |
| 5343 o.autoCreateSubnetworks = true; | 5364 o.autoCreateSubnetworks = true; |
| 5344 o.creationTimestamp = "foo"; | 5365 o.creationTimestamp = "foo"; |
| 5345 o.description = "foo"; | 5366 o.description = "foo"; |
| 5346 o.gatewayIPv4 = "foo"; | 5367 o.gatewayIPv4 = "foo"; |
| 5347 o.id = "foo"; | 5368 o.id = "foo"; |
| 5348 o.kind = "foo"; | 5369 o.kind = "foo"; |
| 5349 o.name = "foo"; | 5370 o.name = "foo"; |
| 5350 o.peerings = buildUnnamed2296(); | 5371 o.peerings = buildUnnamed2330(); |
| 5351 o.selfLink = "foo"; | 5372 o.selfLink = "foo"; |
| 5352 o.subnetworks = buildUnnamed2297(); | 5373 o.subnetworks = buildUnnamed2331(); |
| 5353 } | 5374 } |
| 5354 buildCounterNetwork--; | 5375 buildCounterNetwork--; |
| 5355 return o; | 5376 return o; |
| 5356 } | 5377 } |
| 5357 | 5378 |
| 5358 checkNetwork(api.Network o) { | 5379 checkNetwork(api.Network o) { |
| 5359 buildCounterNetwork++; | 5380 buildCounterNetwork++; |
| 5360 if (buildCounterNetwork < 3) { | 5381 if (buildCounterNetwork < 3) { |
| 5361 unittest.expect(o.IPv4Range, unittest.equals('foo')); | 5382 unittest.expect(o.IPv4Range, unittest.equals('foo')); |
| 5362 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); | 5383 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); |
| 5363 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5384 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5364 unittest.expect(o.description, unittest.equals('foo')); | 5385 unittest.expect(o.description, unittest.equals('foo')); |
| 5365 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 5386 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 5366 unittest.expect(o.id, unittest.equals('foo')); | 5387 unittest.expect(o.id, unittest.equals('foo')); |
| 5367 unittest.expect(o.kind, unittest.equals('foo')); | 5388 unittest.expect(o.kind, unittest.equals('foo')); |
| 5368 unittest.expect(o.name, unittest.equals('foo')); | 5389 unittest.expect(o.name, unittest.equals('foo')); |
| 5369 checkUnnamed2296(o.peerings); | 5390 checkUnnamed2330(o.peerings); |
| 5370 unittest.expect(o.selfLink, unittest.equals('foo')); | 5391 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5371 checkUnnamed2297(o.subnetworks); | 5392 checkUnnamed2331(o.subnetworks); |
| 5372 } | 5393 } |
| 5373 buildCounterNetwork--; | 5394 buildCounterNetwork--; |
| 5374 } | 5395 } |
| 5375 | 5396 |
| 5376 buildUnnamed2298() { | 5397 buildUnnamed2332() { |
| 5377 var o = new core.List<api.AccessConfig>(); | 5398 var o = new core.List<api.AccessConfig>(); |
| 5378 o.add(buildAccessConfig()); | 5399 o.add(buildAccessConfig()); |
| 5379 o.add(buildAccessConfig()); | 5400 o.add(buildAccessConfig()); |
| 5380 return o; | 5401 return o; |
| 5381 } | 5402 } |
| 5382 | 5403 |
| 5383 checkUnnamed2298(core.List<api.AccessConfig> o) { | 5404 checkUnnamed2332(core.List<api.AccessConfig> o) { |
| 5384 unittest.expect(o, unittest.hasLength(2)); | 5405 unittest.expect(o, unittest.hasLength(2)); |
| 5385 checkAccessConfig(o[0]); | 5406 checkAccessConfig(o[0]); |
| 5386 checkAccessConfig(o[1]); | 5407 checkAccessConfig(o[1]); |
| 5387 } | 5408 } |
| 5388 | 5409 |
| 5410 buildUnnamed2333() { |
| 5411 var o = new core.List<api.AliasIpRange>(); |
| 5412 o.add(buildAliasIpRange()); |
| 5413 o.add(buildAliasIpRange()); |
| 5414 return o; |
| 5415 } |
| 5416 |
| 5417 checkUnnamed2333(core.List<api.AliasIpRange> o) { |
| 5418 unittest.expect(o, unittest.hasLength(2)); |
| 5419 checkAliasIpRange(o[0]); |
| 5420 checkAliasIpRange(o[1]); |
| 5421 } |
| 5422 |
| 5389 core.int buildCounterNetworkInterface = 0; | 5423 core.int buildCounterNetworkInterface = 0; |
| 5390 buildNetworkInterface() { | 5424 buildNetworkInterface() { |
| 5391 var o = new api.NetworkInterface(); | 5425 var o = new api.NetworkInterface(); |
| 5392 buildCounterNetworkInterface++; | 5426 buildCounterNetworkInterface++; |
| 5393 if (buildCounterNetworkInterface < 3) { | 5427 if (buildCounterNetworkInterface < 3) { |
| 5394 o.accessConfigs = buildUnnamed2298(); | 5428 o.accessConfigs = buildUnnamed2332(); |
| 5429 o.aliasIpRanges = buildUnnamed2333(); |
| 5395 o.kind = "foo"; | 5430 o.kind = "foo"; |
| 5396 o.name = "foo"; | 5431 o.name = "foo"; |
| 5397 o.network = "foo"; | 5432 o.network = "foo"; |
| 5398 o.networkIP = "foo"; | 5433 o.networkIP = "foo"; |
| 5399 o.subnetwork = "foo"; | 5434 o.subnetwork = "foo"; |
| 5400 } | 5435 } |
| 5401 buildCounterNetworkInterface--; | 5436 buildCounterNetworkInterface--; |
| 5402 return o; | 5437 return o; |
| 5403 } | 5438 } |
| 5404 | 5439 |
| 5405 checkNetworkInterface(api.NetworkInterface o) { | 5440 checkNetworkInterface(api.NetworkInterface o) { |
| 5406 buildCounterNetworkInterface++; | 5441 buildCounterNetworkInterface++; |
| 5407 if (buildCounterNetworkInterface < 3) { | 5442 if (buildCounterNetworkInterface < 3) { |
| 5408 checkUnnamed2298(o.accessConfigs); | 5443 checkUnnamed2332(o.accessConfigs); |
| 5444 checkUnnamed2333(o.aliasIpRanges); |
| 5409 unittest.expect(o.kind, unittest.equals('foo')); | 5445 unittest.expect(o.kind, unittest.equals('foo')); |
| 5410 unittest.expect(o.name, unittest.equals('foo')); | 5446 unittest.expect(o.name, unittest.equals('foo')); |
| 5411 unittest.expect(o.network, unittest.equals('foo')); | 5447 unittest.expect(o.network, unittest.equals('foo')); |
| 5412 unittest.expect(o.networkIP, unittest.equals('foo')); | 5448 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 5413 unittest.expect(o.subnetwork, unittest.equals('foo')); | 5449 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 5414 } | 5450 } |
| 5415 buildCounterNetworkInterface--; | 5451 buildCounterNetworkInterface--; |
| 5416 } | 5452 } |
| 5417 | 5453 |
| 5418 buildUnnamed2299() { | 5454 buildUnnamed2334() { |
| 5419 var o = new core.List<api.Network>(); | 5455 var o = new core.List<api.Network>(); |
| 5420 o.add(buildNetwork()); | 5456 o.add(buildNetwork()); |
| 5421 o.add(buildNetwork()); | 5457 o.add(buildNetwork()); |
| 5422 return o; | 5458 return o; |
| 5423 } | 5459 } |
| 5424 | 5460 |
| 5425 checkUnnamed2299(core.List<api.Network> o) { | 5461 checkUnnamed2334(core.List<api.Network> o) { |
| 5426 unittest.expect(o, unittest.hasLength(2)); | 5462 unittest.expect(o, unittest.hasLength(2)); |
| 5427 checkNetwork(o[0]); | 5463 checkNetwork(o[0]); |
| 5428 checkNetwork(o[1]); | 5464 checkNetwork(o[1]); |
| 5429 } | 5465 } |
| 5430 | 5466 |
| 5431 core.int buildCounterNetworkList = 0; | 5467 core.int buildCounterNetworkList = 0; |
| 5432 buildNetworkList() { | 5468 buildNetworkList() { |
| 5433 var o = new api.NetworkList(); | 5469 var o = new api.NetworkList(); |
| 5434 buildCounterNetworkList++; | 5470 buildCounterNetworkList++; |
| 5435 if (buildCounterNetworkList < 3) { | 5471 if (buildCounterNetworkList < 3) { |
| 5436 o.id = "foo"; | 5472 o.id = "foo"; |
| 5437 o.items = buildUnnamed2299(); | 5473 o.items = buildUnnamed2334(); |
| 5438 o.kind = "foo"; | 5474 o.kind = "foo"; |
| 5439 o.nextPageToken = "foo"; | 5475 o.nextPageToken = "foo"; |
| 5440 o.selfLink = "foo"; | 5476 o.selfLink = "foo"; |
| 5441 } | 5477 } |
| 5442 buildCounterNetworkList--; | 5478 buildCounterNetworkList--; |
| 5443 return o; | 5479 return o; |
| 5444 } | 5480 } |
| 5445 | 5481 |
| 5446 checkNetworkList(api.NetworkList o) { | 5482 checkNetworkList(api.NetworkList o) { |
| 5447 buildCounterNetworkList++; | 5483 buildCounterNetworkList++; |
| 5448 if (buildCounterNetworkList < 3) { | 5484 if (buildCounterNetworkList < 3) { |
| 5449 unittest.expect(o.id, unittest.equals('foo')); | 5485 unittest.expect(o.id, unittest.equals('foo')); |
| 5450 checkUnnamed2299(o.items); | 5486 checkUnnamed2334(o.items); |
| 5451 unittest.expect(o.kind, unittest.equals('foo')); | 5487 unittest.expect(o.kind, unittest.equals('foo')); |
| 5452 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5488 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5453 unittest.expect(o.selfLink, unittest.equals('foo')); | 5489 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5454 } | 5490 } |
| 5455 buildCounterNetworkList--; | 5491 buildCounterNetworkList--; |
| 5456 } | 5492 } |
| 5457 | 5493 |
| 5458 core.int buildCounterNetworkPeering = 0; | 5494 core.int buildCounterNetworkPeering = 0; |
| 5459 buildNetworkPeering() { | 5495 buildNetworkPeering() { |
| 5460 var o = new api.NetworkPeering(); | 5496 var o = new api.NetworkPeering(); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5540 checkOperationErrorErrors(api.OperationErrorErrors o) { | 5576 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 5541 buildCounterOperationErrorErrors++; | 5577 buildCounterOperationErrorErrors++; |
| 5542 if (buildCounterOperationErrorErrors < 3) { | 5578 if (buildCounterOperationErrorErrors < 3) { |
| 5543 unittest.expect(o.code, unittest.equals('foo')); | 5579 unittest.expect(o.code, unittest.equals('foo')); |
| 5544 unittest.expect(o.location, unittest.equals('foo')); | 5580 unittest.expect(o.location, unittest.equals('foo')); |
| 5545 unittest.expect(o.message, unittest.equals('foo')); | 5581 unittest.expect(o.message, unittest.equals('foo')); |
| 5546 } | 5582 } |
| 5547 buildCounterOperationErrorErrors--; | 5583 buildCounterOperationErrorErrors--; |
| 5548 } | 5584 } |
| 5549 | 5585 |
| 5550 buildUnnamed2300() { | 5586 buildUnnamed2335() { |
| 5551 var o = new core.List<api.OperationErrorErrors>(); | 5587 var o = new core.List<api.OperationErrorErrors>(); |
| 5552 o.add(buildOperationErrorErrors()); | 5588 o.add(buildOperationErrorErrors()); |
| 5553 o.add(buildOperationErrorErrors()); | 5589 o.add(buildOperationErrorErrors()); |
| 5554 return o; | 5590 return o; |
| 5555 } | 5591 } |
| 5556 | 5592 |
| 5557 checkUnnamed2300(core.List<api.OperationErrorErrors> o) { | 5593 checkUnnamed2335(core.List<api.OperationErrorErrors> o) { |
| 5558 unittest.expect(o, unittest.hasLength(2)); | 5594 unittest.expect(o, unittest.hasLength(2)); |
| 5559 checkOperationErrorErrors(o[0]); | 5595 checkOperationErrorErrors(o[0]); |
| 5560 checkOperationErrorErrors(o[1]); | 5596 checkOperationErrorErrors(o[1]); |
| 5561 } | 5597 } |
| 5562 | 5598 |
| 5563 core.int buildCounterOperationError = 0; | 5599 core.int buildCounterOperationError = 0; |
| 5564 buildOperationError() { | 5600 buildOperationError() { |
| 5565 var o = new api.OperationError(); | 5601 var o = new api.OperationError(); |
| 5566 buildCounterOperationError++; | 5602 buildCounterOperationError++; |
| 5567 if (buildCounterOperationError < 3) { | 5603 if (buildCounterOperationError < 3) { |
| 5568 o.errors = buildUnnamed2300(); | 5604 o.errors = buildUnnamed2335(); |
| 5569 } | 5605 } |
| 5570 buildCounterOperationError--; | 5606 buildCounterOperationError--; |
| 5571 return o; | 5607 return o; |
| 5572 } | 5608 } |
| 5573 | 5609 |
| 5574 checkOperationError(api.OperationError o) { | 5610 checkOperationError(api.OperationError o) { |
| 5575 buildCounterOperationError++; | 5611 buildCounterOperationError++; |
| 5576 if (buildCounterOperationError < 3) { | 5612 if (buildCounterOperationError < 3) { |
| 5577 checkUnnamed2300(o.errors); | 5613 checkUnnamed2335(o.errors); |
| 5578 } | 5614 } |
| 5579 buildCounterOperationError--; | 5615 buildCounterOperationError--; |
| 5580 } | 5616 } |
| 5581 | 5617 |
| 5582 core.int buildCounterOperationWarningsData = 0; | 5618 core.int buildCounterOperationWarningsData = 0; |
| 5583 buildOperationWarningsData() { | 5619 buildOperationWarningsData() { |
| 5584 var o = new api.OperationWarningsData(); | 5620 var o = new api.OperationWarningsData(); |
| 5585 buildCounterOperationWarningsData++; | 5621 buildCounterOperationWarningsData++; |
| 5586 if (buildCounterOperationWarningsData < 3) { | 5622 if (buildCounterOperationWarningsData < 3) { |
| 5587 o.key = "foo"; | 5623 o.key = "foo"; |
| 5588 o.value = "foo"; | 5624 o.value = "foo"; |
| 5589 } | 5625 } |
| 5590 buildCounterOperationWarningsData--; | 5626 buildCounterOperationWarningsData--; |
| 5591 return o; | 5627 return o; |
| 5592 } | 5628 } |
| 5593 | 5629 |
| 5594 checkOperationWarningsData(api.OperationWarningsData o) { | 5630 checkOperationWarningsData(api.OperationWarningsData o) { |
| 5595 buildCounterOperationWarningsData++; | 5631 buildCounterOperationWarningsData++; |
| 5596 if (buildCounterOperationWarningsData < 3) { | 5632 if (buildCounterOperationWarningsData < 3) { |
| 5597 unittest.expect(o.key, unittest.equals('foo')); | 5633 unittest.expect(o.key, unittest.equals('foo')); |
| 5598 unittest.expect(o.value, unittest.equals('foo')); | 5634 unittest.expect(o.value, unittest.equals('foo')); |
| 5599 } | 5635 } |
| 5600 buildCounterOperationWarningsData--; | 5636 buildCounterOperationWarningsData--; |
| 5601 } | 5637 } |
| 5602 | 5638 |
| 5603 buildUnnamed2301() { | 5639 buildUnnamed2336() { |
| 5604 var o = new core.List<api.OperationWarningsData>(); | 5640 var o = new core.List<api.OperationWarningsData>(); |
| 5605 o.add(buildOperationWarningsData()); | 5641 o.add(buildOperationWarningsData()); |
| 5606 o.add(buildOperationWarningsData()); | 5642 o.add(buildOperationWarningsData()); |
| 5607 return o; | 5643 return o; |
| 5608 } | 5644 } |
| 5609 | 5645 |
| 5610 checkUnnamed2301(core.List<api.OperationWarningsData> o) { | 5646 checkUnnamed2336(core.List<api.OperationWarningsData> o) { |
| 5611 unittest.expect(o, unittest.hasLength(2)); | 5647 unittest.expect(o, unittest.hasLength(2)); |
| 5612 checkOperationWarningsData(o[0]); | 5648 checkOperationWarningsData(o[0]); |
| 5613 checkOperationWarningsData(o[1]); | 5649 checkOperationWarningsData(o[1]); |
| 5614 } | 5650 } |
| 5615 | 5651 |
| 5616 core.int buildCounterOperationWarnings = 0; | 5652 core.int buildCounterOperationWarnings = 0; |
| 5617 buildOperationWarnings() { | 5653 buildOperationWarnings() { |
| 5618 var o = new api.OperationWarnings(); | 5654 var o = new api.OperationWarnings(); |
| 5619 buildCounterOperationWarnings++; | 5655 buildCounterOperationWarnings++; |
| 5620 if (buildCounterOperationWarnings < 3) { | 5656 if (buildCounterOperationWarnings < 3) { |
| 5621 o.code = "foo"; | 5657 o.code = "foo"; |
| 5622 o.data = buildUnnamed2301(); | 5658 o.data = buildUnnamed2336(); |
| 5623 o.message = "foo"; | 5659 o.message = "foo"; |
| 5624 } | 5660 } |
| 5625 buildCounterOperationWarnings--; | 5661 buildCounterOperationWarnings--; |
| 5626 return o; | 5662 return o; |
| 5627 } | 5663 } |
| 5628 | 5664 |
| 5629 checkOperationWarnings(api.OperationWarnings o) { | 5665 checkOperationWarnings(api.OperationWarnings o) { |
| 5630 buildCounterOperationWarnings++; | 5666 buildCounterOperationWarnings++; |
| 5631 if (buildCounterOperationWarnings < 3) { | 5667 if (buildCounterOperationWarnings < 3) { |
| 5632 unittest.expect(o.code, unittest.equals('foo')); | 5668 unittest.expect(o.code, unittest.equals('foo')); |
| 5633 checkUnnamed2301(o.data); | 5669 checkUnnamed2336(o.data); |
| 5634 unittest.expect(o.message, unittest.equals('foo')); | 5670 unittest.expect(o.message, unittest.equals('foo')); |
| 5635 } | 5671 } |
| 5636 buildCounterOperationWarnings--; | 5672 buildCounterOperationWarnings--; |
| 5637 } | 5673 } |
| 5638 | 5674 |
| 5639 buildUnnamed2302() { | 5675 buildUnnamed2337() { |
| 5640 var o = new core.List<api.OperationWarnings>(); | 5676 var o = new core.List<api.OperationWarnings>(); |
| 5641 o.add(buildOperationWarnings()); | 5677 o.add(buildOperationWarnings()); |
| 5642 o.add(buildOperationWarnings()); | 5678 o.add(buildOperationWarnings()); |
| 5643 return o; | 5679 return o; |
| 5644 } | 5680 } |
| 5645 | 5681 |
| 5646 checkUnnamed2302(core.List<api.OperationWarnings> o) { | 5682 checkUnnamed2337(core.List<api.OperationWarnings> o) { |
| 5647 unittest.expect(o, unittest.hasLength(2)); | 5683 unittest.expect(o, unittest.hasLength(2)); |
| 5648 checkOperationWarnings(o[0]); | 5684 checkOperationWarnings(o[0]); |
| 5649 checkOperationWarnings(o[1]); | 5685 checkOperationWarnings(o[1]); |
| 5650 } | 5686 } |
| 5651 | 5687 |
| 5652 core.int buildCounterOperation = 0; | 5688 core.int buildCounterOperation = 0; |
| 5653 buildOperation() { | 5689 buildOperation() { |
| 5654 var o = new api.Operation(); | 5690 var o = new api.Operation(); |
| 5655 buildCounterOperation++; | 5691 buildCounterOperation++; |
| 5656 if (buildCounterOperation < 3) { | 5692 if (buildCounterOperation < 3) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5668 o.operationType = "foo"; | 5704 o.operationType = "foo"; |
| 5669 o.progress = 42; | 5705 o.progress = 42; |
| 5670 o.region = "foo"; | 5706 o.region = "foo"; |
| 5671 o.selfLink = "foo"; | 5707 o.selfLink = "foo"; |
| 5672 o.startTime = "foo"; | 5708 o.startTime = "foo"; |
| 5673 o.status = "foo"; | 5709 o.status = "foo"; |
| 5674 o.statusMessage = "foo"; | 5710 o.statusMessage = "foo"; |
| 5675 o.targetId = "foo"; | 5711 o.targetId = "foo"; |
| 5676 o.targetLink = "foo"; | 5712 o.targetLink = "foo"; |
| 5677 o.user = "foo"; | 5713 o.user = "foo"; |
| 5678 o.warnings = buildUnnamed2302(); | 5714 o.warnings = buildUnnamed2337(); |
| 5679 o.zone = "foo"; | 5715 o.zone = "foo"; |
| 5680 } | 5716 } |
| 5681 buildCounterOperation--; | 5717 buildCounterOperation--; |
| 5682 return o; | 5718 return o; |
| 5683 } | 5719 } |
| 5684 | 5720 |
| 5685 checkOperation(api.Operation o) { | 5721 checkOperation(api.Operation o) { |
| 5686 buildCounterOperation++; | 5722 buildCounterOperation++; |
| 5687 if (buildCounterOperation < 3) { | 5723 if (buildCounterOperation < 3) { |
| 5688 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 5724 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5699 unittest.expect(o.operationType, unittest.equals('foo')); | 5735 unittest.expect(o.operationType, unittest.equals('foo')); |
| 5700 unittest.expect(o.progress, unittest.equals(42)); | 5736 unittest.expect(o.progress, unittest.equals(42)); |
| 5701 unittest.expect(o.region, unittest.equals('foo')); | 5737 unittest.expect(o.region, unittest.equals('foo')); |
| 5702 unittest.expect(o.selfLink, unittest.equals('foo')); | 5738 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5703 unittest.expect(o.startTime, unittest.equals('foo')); | 5739 unittest.expect(o.startTime, unittest.equals('foo')); |
| 5704 unittest.expect(o.status, unittest.equals('foo')); | 5740 unittest.expect(o.status, unittest.equals('foo')); |
| 5705 unittest.expect(o.statusMessage, unittest.equals('foo')); | 5741 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 5706 unittest.expect(o.targetId, unittest.equals('foo')); | 5742 unittest.expect(o.targetId, unittest.equals('foo')); |
| 5707 unittest.expect(o.targetLink, unittest.equals('foo')); | 5743 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 5708 unittest.expect(o.user, unittest.equals('foo')); | 5744 unittest.expect(o.user, unittest.equals('foo')); |
| 5709 checkUnnamed2302(o.warnings); | 5745 checkUnnamed2337(o.warnings); |
| 5710 unittest.expect(o.zone, unittest.equals('foo')); | 5746 unittest.expect(o.zone, unittest.equals('foo')); |
| 5711 } | 5747 } |
| 5712 buildCounterOperation--; | 5748 buildCounterOperation--; |
| 5713 } | 5749 } |
| 5714 | 5750 |
| 5715 buildUnnamed2303() { | 5751 buildUnnamed2338() { |
| 5716 var o = new core.Map<core.String, api.OperationsScopedList>(); | 5752 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 5717 o["x"] = buildOperationsScopedList(); | 5753 o["x"] = buildOperationsScopedList(); |
| 5718 o["y"] = buildOperationsScopedList(); | 5754 o["y"] = buildOperationsScopedList(); |
| 5719 return o; | 5755 return o; |
| 5720 } | 5756 } |
| 5721 | 5757 |
| 5722 checkUnnamed2303(core.Map<core.String, api.OperationsScopedList> o) { | 5758 checkUnnamed2338(core.Map<core.String, api.OperationsScopedList> o) { |
| 5723 unittest.expect(o, unittest.hasLength(2)); | 5759 unittest.expect(o, unittest.hasLength(2)); |
| 5724 checkOperationsScopedList(o["x"]); | 5760 checkOperationsScopedList(o["x"]); |
| 5725 checkOperationsScopedList(o["y"]); | 5761 checkOperationsScopedList(o["y"]); |
| 5726 } | 5762 } |
| 5727 | 5763 |
| 5728 core.int buildCounterOperationAggregatedList = 0; | 5764 core.int buildCounterOperationAggregatedList = 0; |
| 5729 buildOperationAggregatedList() { | 5765 buildOperationAggregatedList() { |
| 5730 var o = new api.OperationAggregatedList(); | 5766 var o = new api.OperationAggregatedList(); |
| 5731 buildCounterOperationAggregatedList++; | 5767 buildCounterOperationAggregatedList++; |
| 5732 if (buildCounterOperationAggregatedList < 3) { | 5768 if (buildCounterOperationAggregatedList < 3) { |
| 5733 o.id = "foo"; | 5769 o.id = "foo"; |
| 5734 o.items = buildUnnamed2303(); | 5770 o.items = buildUnnamed2338(); |
| 5735 o.kind = "foo"; | 5771 o.kind = "foo"; |
| 5736 o.nextPageToken = "foo"; | 5772 o.nextPageToken = "foo"; |
| 5737 o.selfLink = "foo"; | 5773 o.selfLink = "foo"; |
| 5738 } | 5774 } |
| 5739 buildCounterOperationAggregatedList--; | 5775 buildCounterOperationAggregatedList--; |
| 5740 return o; | 5776 return o; |
| 5741 } | 5777 } |
| 5742 | 5778 |
| 5743 checkOperationAggregatedList(api.OperationAggregatedList o) { | 5779 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 5744 buildCounterOperationAggregatedList++; | 5780 buildCounterOperationAggregatedList++; |
| 5745 if (buildCounterOperationAggregatedList < 3) { | 5781 if (buildCounterOperationAggregatedList < 3) { |
| 5746 unittest.expect(o.id, unittest.equals('foo')); | 5782 unittest.expect(o.id, unittest.equals('foo')); |
| 5747 checkUnnamed2303(o.items); | 5783 checkUnnamed2338(o.items); |
| 5748 unittest.expect(o.kind, unittest.equals('foo')); | 5784 unittest.expect(o.kind, unittest.equals('foo')); |
| 5749 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5785 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5750 unittest.expect(o.selfLink, unittest.equals('foo')); | 5786 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5751 } | 5787 } |
| 5752 buildCounterOperationAggregatedList--; | 5788 buildCounterOperationAggregatedList--; |
| 5753 } | 5789 } |
| 5754 | 5790 |
| 5755 buildUnnamed2304() { | 5791 buildUnnamed2339() { |
| 5756 var o = new core.List<api.Operation>(); | 5792 var o = new core.List<api.Operation>(); |
| 5757 o.add(buildOperation()); | 5793 o.add(buildOperation()); |
| 5758 o.add(buildOperation()); | 5794 o.add(buildOperation()); |
| 5759 return o; | 5795 return o; |
| 5760 } | 5796 } |
| 5761 | 5797 |
| 5762 checkUnnamed2304(core.List<api.Operation> o) { | 5798 checkUnnamed2339(core.List<api.Operation> o) { |
| 5763 unittest.expect(o, unittest.hasLength(2)); | 5799 unittest.expect(o, unittest.hasLength(2)); |
| 5764 checkOperation(o[0]); | 5800 checkOperation(o[0]); |
| 5765 checkOperation(o[1]); | 5801 checkOperation(o[1]); |
| 5766 } | 5802 } |
| 5767 | 5803 |
| 5768 core.int buildCounterOperationList = 0; | 5804 core.int buildCounterOperationList = 0; |
| 5769 buildOperationList() { | 5805 buildOperationList() { |
| 5770 var o = new api.OperationList(); | 5806 var o = new api.OperationList(); |
| 5771 buildCounterOperationList++; | 5807 buildCounterOperationList++; |
| 5772 if (buildCounterOperationList < 3) { | 5808 if (buildCounterOperationList < 3) { |
| 5773 o.id = "foo"; | 5809 o.id = "foo"; |
| 5774 o.items = buildUnnamed2304(); | 5810 o.items = buildUnnamed2339(); |
| 5775 o.kind = "foo"; | 5811 o.kind = "foo"; |
| 5776 o.nextPageToken = "foo"; | 5812 o.nextPageToken = "foo"; |
| 5777 o.selfLink = "foo"; | 5813 o.selfLink = "foo"; |
| 5778 } | 5814 } |
| 5779 buildCounterOperationList--; | 5815 buildCounterOperationList--; |
| 5780 return o; | 5816 return o; |
| 5781 } | 5817 } |
| 5782 | 5818 |
| 5783 checkOperationList(api.OperationList o) { | 5819 checkOperationList(api.OperationList o) { |
| 5784 buildCounterOperationList++; | 5820 buildCounterOperationList++; |
| 5785 if (buildCounterOperationList < 3) { | 5821 if (buildCounterOperationList < 3) { |
| 5786 unittest.expect(o.id, unittest.equals('foo')); | 5822 unittest.expect(o.id, unittest.equals('foo')); |
| 5787 checkUnnamed2304(o.items); | 5823 checkUnnamed2339(o.items); |
| 5788 unittest.expect(o.kind, unittest.equals('foo')); | 5824 unittest.expect(o.kind, unittest.equals('foo')); |
| 5789 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5825 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5790 unittest.expect(o.selfLink, unittest.equals('foo')); | 5826 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5791 } | 5827 } |
| 5792 buildCounterOperationList--; | 5828 buildCounterOperationList--; |
| 5793 } | 5829 } |
| 5794 | 5830 |
| 5795 buildUnnamed2305() { | 5831 buildUnnamed2340() { |
| 5796 var o = new core.List<api.Operation>(); | 5832 var o = new core.List<api.Operation>(); |
| 5797 o.add(buildOperation()); | 5833 o.add(buildOperation()); |
| 5798 o.add(buildOperation()); | 5834 o.add(buildOperation()); |
| 5799 return o; | 5835 return o; |
| 5800 } | 5836 } |
| 5801 | 5837 |
| 5802 checkUnnamed2305(core.List<api.Operation> o) { | 5838 checkUnnamed2340(core.List<api.Operation> o) { |
| 5803 unittest.expect(o, unittest.hasLength(2)); | 5839 unittest.expect(o, unittest.hasLength(2)); |
| 5804 checkOperation(o[0]); | 5840 checkOperation(o[0]); |
| 5805 checkOperation(o[1]); | 5841 checkOperation(o[1]); |
| 5806 } | 5842 } |
| 5807 | 5843 |
| 5808 core.int buildCounterOperationsScopedListWarningData = 0; | 5844 core.int buildCounterOperationsScopedListWarningData = 0; |
| 5809 buildOperationsScopedListWarningData() { | 5845 buildOperationsScopedListWarningData() { |
| 5810 var o = new api.OperationsScopedListWarningData(); | 5846 var o = new api.OperationsScopedListWarningData(); |
| 5811 buildCounterOperationsScopedListWarningData++; | 5847 buildCounterOperationsScopedListWarningData++; |
| 5812 if (buildCounterOperationsScopedListWarningData < 3) { | 5848 if (buildCounterOperationsScopedListWarningData < 3) { |
| 5813 o.key = "foo"; | 5849 o.key = "foo"; |
| 5814 o.value = "foo"; | 5850 o.value = "foo"; |
| 5815 } | 5851 } |
| 5816 buildCounterOperationsScopedListWarningData--; | 5852 buildCounterOperationsScopedListWarningData--; |
| 5817 return o; | 5853 return o; |
| 5818 } | 5854 } |
| 5819 | 5855 |
| 5820 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 5856 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 5821 buildCounterOperationsScopedListWarningData++; | 5857 buildCounterOperationsScopedListWarningData++; |
| 5822 if (buildCounterOperationsScopedListWarningData < 3) { | 5858 if (buildCounterOperationsScopedListWarningData < 3) { |
| 5823 unittest.expect(o.key, unittest.equals('foo')); | 5859 unittest.expect(o.key, unittest.equals('foo')); |
| 5824 unittest.expect(o.value, unittest.equals('foo')); | 5860 unittest.expect(o.value, unittest.equals('foo')); |
| 5825 } | 5861 } |
| 5826 buildCounterOperationsScopedListWarningData--; | 5862 buildCounterOperationsScopedListWarningData--; |
| 5827 } | 5863 } |
| 5828 | 5864 |
| 5829 buildUnnamed2306() { | 5865 buildUnnamed2341() { |
| 5830 var o = new core.List<api.OperationsScopedListWarningData>(); | 5866 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 5831 o.add(buildOperationsScopedListWarningData()); | 5867 o.add(buildOperationsScopedListWarningData()); |
| 5832 o.add(buildOperationsScopedListWarningData()); | 5868 o.add(buildOperationsScopedListWarningData()); |
| 5833 return o; | 5869 return o; |
| 5834 } | 5870 } |
| 5835 | 5871 |
| 5836 checkUnnamed2306(core.List<api.OperationsScopedListWarningData> o) { | 5872 checkUnnamed2341(core.List<api.OperationsScopedListWarningData> o) { |
| 5837 unittest.expect(o, unittest.hasLength(2)); | 5873 unittest.expect(o, unittest.hasLength(2)); |
| 5838 checkOperationsScopedListWarningData(o[0]); | 5874 checkOperationsScopedListWarningData(o[0]); |
| 5839 checkOperationsScopedListWarningData(o[1]); | 5875 checkOperationsScopedListWarningData(o[1]); |
| 5840 } | 5876 } |
| 5841 | 5877 |
| 5842 core.int buildCounterOperationsScopedListWarning = 0; | 5878 core.int buildCounterOperationsScopedListWarning = 0; |
| 5843 buildOperationsScopedListWarning() { | 5879 buildOperationsScopedListWarning() { |
| 5844 var o = new api.OperationsScopedListWarning(); | 5880 var o = new api.OperationsScopedListWarning(); |
| 5845 buildCounterOperationsScopedListWarning++; | 5881 buildCounterOperationsScopedListWarning++; |
| 5846 if (buildCounterOperationsScopedListWarning < 3) { | 5882 if (buildCounterOperationsScopedListWarning < 3) { |
| 5847 o.code = "foo"; | 5883 o.code = "foo"; |
| 5848 o.data = buildUnnamed2306(); | 5884 o.data = buildUnnamed2341(); |
| 5849 o.message = "foo"; | 5885 o.message = "foo"; |
| 5850 } | 5886 } |
| 5851 buildCounterOperationsScopedListWarning--; | 5887 buildCounterOperationsScopedListWarning--; |
| 5852 return o; | 5888 return o; |
| 5853 } | 5889 } |
| 5854 | 5890 |
| 5855 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 5891 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 5856 buildCounterOperationsScopedListWarning++; | 5892 buildCounterOperationsScopedListWarning++; |
| 5857 if (buildCounterOperationsScopedListWarning < 3) { | 5893 if (buildCounterOperationsScopedListWarning < 3) { |
| 5858 unittest.expect(o.code, unittest.equals('foo')); | 5894 unittest.expect(o.code, unittest.equals('foo')); |
| 5859 checkUnnamed2306(o.data); | 5895 checkUnnamed2341(o.data); |
| 5860 unittest.expect(o.message, unittest.equals('foo')); | 5896 unittest.expect(o.message, unittest.equals('foo')); |
| 5861 } | 5897 } |
| 5862 buildCounterOperationsScopedListWarning--; | 5898 buildCounterOperationsScopedListWarning--; |
| 5863 } | 5899 } |
| 5864 | 5900 |
| 5865 core.int buildCounterOperationsScopedList = 0; | 5901 core.int buildCounterOperationsScopedList = 0; |
| 5866 buildOperationsScopedList() { | 5902 buildOperationsScopedList() { |
| 5867 var o = new api.OperationsScopedList(); | 5903 var o = new api.OperationsScopedList(); |
| 5868 buildCounterOperationsScopedList++; | 5904 buildCounterOperationsScopedList++; |
| 5869 if (buildCounterOperationsScopedList < 3) { | 5905 if (buildCounterOperationsScopedList < 3) { |
| 5870 o.operations = buildUnnamed2305(); | 5906 o.operations = buildUnnamed2340(); |
| 5871 o.warning = buildOperationsScopedListWarning(); | 5907 o.warning = buildOperationsScopedListWarning(); |
| 5872 } | 5908 } |
| 5873 buildCounterOperationsScopedList--; | 5909 buildCounterOperationsScopedList--; |
| 5874 return o; | 5910 return o; |
| 5875 } | 5911 } |
| 5876 | 5912 |
| 5877 checkOperationsScopedList(api.OperationsScopedList o) { | 5913 checkOperationsScopedList(api.OperationsScopedList o) { |
| 5878 buildCounterOperationsScopedList++; | 5914 buildCounterOperationsScopedList++; |
| 5879 if (buildCounterOperationsScopedList < 3) { | 5915 if (buildCounterOperationsScopedList < 3) { |
| 5880 checkUnnamed2305(o.operations); | 5916 checkUnnamed2340(o.operations); |
| 5881 checkOperationsScopedListWarning(o.warning); | 5917 checkOperationsScopedListWarning(o.warning); |
| 5882 } | 5918 } |
| 5883 buildCounterOperationsScopedList--; | 5919 buildCounterOperationsScopedList--; |
| 5884 } | 5920 } |
| 5885 | 5921 |
| 5886 buildUnnamed2307() { | 5922 buildUnnamed2342() { |
| 5887 var o = new core.List<api.PathRule>(); | 5923 var o = new core.List<api.PathRule>(); |
| 5888 o.add(buildPathRule()); | 5924 o.add(buildPathRule()); |
| 5889 o.add(buildPathRule()); | 5925 o.add(buildPathRule()); |
| 5890 return o; | 5926 return o; |
| 5891 } | 5927 } |
| 5892 | 5928 |
| 5893 checkUnnamed2307(core.List<api.PathRule> o) { | 5929 checkUnnamed2342(core.List<api.PathRule> o) { |
| 5894 unittest.expect(o, unittest.hasLength(2)); | 5930 unittest.expect(o, unittest.hasLength(2)); |
| 5895 checkPathRule(o[0]); | 5931 checkPathRule(o[0]); |
| 5896 checkPathRule(o[1]); | 5932 checkPathRule(o[1]); |
| 5897 } | 5933 } |
| 5898 | 5934 |
| 5899 core.int buildCounterPathMatcher = 0; | 5935 core.int buildCounterPathMatcher = 0; |
| 5900 buildPathMatcher() { | 5936 buildPathMatcher() { |
| 5901 var o = new api.PathMatcher(); | 5937 var o = new api.PathMatcher(); |
| 5902 buildCounterPathMatcher++; | 5938 buildCounterPathMatcher++; |
| 5903 if (buildCounterPathMatcher < 3) { | 5939 if (buildCounterPathMatcher < 3) { |
| 5904 o.defaultService = "foo"; | 5940 o.defaultService = "foo"; |
| 5905 o.description = "foo"; | 5941 o.description = "foo"; |
| 5906 o.name = "foo"; | 5942 o.name = "foo"; |
| 5907 o.pathRules = buildUnnamed2307(); | 5943 o.pathRules = buildUnnamed2342(); |
| 5908 } | 5944 } |
| 5909 buildCounterPathMatcher--; | 5945 buildCounterPathMatcher--; |
| 5910 return o; | 5946 return o; |
| 5911 } | 5947 } |
| 5912 | 5948 |
| 5913 checkPathMatcher(api.PathMatcher o) { | 5949 checkPathMatcher(api.PathMatcher o) { |
| 5914 buildCounterPathMatcher++; | 5950 buildCounterPathMatcher++; |
| 5915 if (buildCounterPathMatcher < 3) { | 5951 if (buildCounterPathMatcher < 3) { |
| 5916 unittest.expect(o.defaultService, unittest.equals('foo')); | 5952 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 5917 unittest.expect(o.description, unittest.equals('foo')); | 5953 unittest.expect(o.description, unittest.equals('foo')); |
| 5918 unittest.expect(o.name, unittest.equals('foo')); | 5954 unittest.expect(o.name, unittest.equals('foo')); |
| 5919 checkUnnamed2307(o.pathRules); | 5955 checkUnnamed2342(o.pathRules); |
| 5920 } | 5956 } |
| 5921 buildCounterPathMatcher--; | 5957 buildCounterPathMatcher--; |
| 5922 } | 5958 } |
| 5923 | 5959 |
| 5924 buildUnnamed2308() { | 5960 buildUnnamed2343() { |
| 5925 var o = new core.List<core.String>(); | 5961 var o = new core.List<core.String>(); |
| 5926 o.add("foo"); | 5962 o.add("foo"); |
| 5927 o.add("foo"); | 5963 o.add("foo"); |
| 5928 return o; | 5964 return o; |
| 5929 } | 5965 } |
| 5930 | 5966 |
| 5931 checkUnnamed2308(core.List<core.String> o) { | 5967 checkUnnamed2343(core.List<core.String> o) { |
| 5932 unittest.expect(o, unittest.hasLength(2)); | 5968 unittest.expect(o, unittest.hasLength(2)); |
| 5933 unittest.expect(o[0], unittest.equals('foo')); | 5969 unittest.expect(o[0], unittest.equals('foo')); |
| 5934 unittest.expect(o[1], unittest.equals('foo')); | 5970 unittest.expect(o[1], unittest.equals('foo')); |
| 5935 } | 5971 } |
| 5936 | 5972 |
| 5937 core.int buildCounterPathRule = 0; | 5973 core.int buildCounterPathRule = 0; |
| 5938 buildPathRule() { | 5974 buildPathRule() { |
| 5939 var o = new api.PathRule(); | 5975 var o = new api.PathRule(); |
| 5940 buildCounterPathRule++; | 5976 buildCounterPathRule++; |
| 5941 if (buildCounterPathRule < 3) { | 5977 if (buildCounterPathRule < 3) { |
| 5942 o.paths = buildUnnamed2308(); | 5978 o.paths = buildUnnamed2343(); |
| 5943 o.service = "foo"; | 5979 o.service = "foo"; |
| 5944 } | 5980 } |
| 5945 buildCounterPathRule--; | 5981 buildCounterPathRule--; |
| 5946 return o; | 5982 return o; |
| 5947 } | 5983 } |
| 5948 | 5984 |
| 5949 checkPathRule(api.PathRule o) { | 5985 checkPathRule(api.PathRule o) { |
| 5950 buildCounterPathRule++; | 5986 buildCounterPathRule++; |
| 5951 if (buildCounterPathRule < 3) { | 5987 if (buildCounterPathRule < 3) { |
| 5952 checkUnnamed2308(o.paths); | 5988 checkUnnamed2343(o.paths); |
| 5953 unittest.expect(o.service, unittest.equals('foo')); | 5989 unittest.expect(o.service, unittest.equals('foo')); |
| 5954 } | 5990 } |
| 5955 buildCounterPathRule--; | 5991 buildCounterPathRule--; |
| 5956 } | 5992 } |
| 5957 | 5993 |
| 5958 buildUnnamed2309() { | 5994 buildUnnamed2344() { |
| 5959 var o = new core.List<core.String>(); | 5995 var o = new core.List<core.String>(); |
| 5960 o.add("foo"); | 5996 o.add("foo"); |
| 5961 o.add("foo"); | 5997 o.add("foo"); |
| 5962 return o; | 5998 return o; |
| 5963 } | 5999 } |
| 5964 | 6000 |
| 5965 checkUnnamed2309(core.List<core.String> o) { | 6001 checkUnnamed2344(core.List<core.String> o) { |
| 5966 unittest.expect(o, unittest.hasLength(2)); | 6002 unittest.expect(o, unittest.hasLength(2)); |
| 5967 unittest.expect(o[0], unittest.equals('foo')); | 6003 unittest.expect(o[0], unittest.equals('foo')); |
| 5968 unittest.expect(o[1], unittest.equals('foo')); | 6004 unittest.expect(o[1], unittest.equals('foo')); |
| 5969 } | 6005 } |
| 5970 | 6006 |
| 5971 buildUnnamed2310() { | 6007 buildUnnamed2345() { |
| 5972 var o = new core.List<api.Quota>(); | 6008 var o = new core.List<api.Quota>(); |
| 5973 o.add(buildQuota()); | 6009 o.add(buildQuota()); |
| 5974 o.add(buildQuota()); | 6010 o.add(buildQuota()); |
| 5975 return o; | 6011 return o; |
| 5976 } | 6012 } |
| 5977 | 6013 |
| 5978 checkUnnamed2310(core.List<api.Quota> o) { | 6014 checkUnnamed2345(core.List<api.Quota> o) { |
| 5979 unittest.expect(o, unittest.hasLength(2)); | 6015 unittest.expect(o, unittest.hasLength(2)); |
| 5980 checkQuota(o[0]); | 6016 checkQuota(o[0]); |
| 5981 checkQuota(o[1]); | 6017 checkQuota(o[1]); |
| 5982 } | 6018 } |
| 5983 | 6019 |
| 5984 core.int buildCounterProject = 0; | 6020 core.int buildCounterProject = 0; |
| 5985 buildProject() { | 6021 buildProject() { |
| 5986 var o = new api.Project(); | 6022 var o = new api.Project(); |
| 5987 buildCounterProject++; | 6023 buildCounterProject++; |
| 5988 if (buildCounterProject < 3) { | 6024 if (buildCounterProject < 3) { |
| 5989 o.commonInstanceMetadata = buildMetadata(); | 6025 o.commonInstanceMetadata = buildMetadata(); |
| 5990 o.creationTimestamp = "foo"; | 6026 o.creationTimestamp = "foo"; |
| 5991 o.defaultServiceAccount = "foo"; | 6027 o.defaultServiceAccount = "foo"; |
| 5992 o.description = "foo"; | 6028 o.description = "foo"; |
| 5993 o.enabledFeatures = buildUnnamed2309(); | 6029 o.enabledFeatures = buildUnnamed2344(); |
| 5994 o.id = "foo"; | 6030 o.id = "foo"; |
| 5995 o.kind = "foo"; | 6031 o.kind = "foo"; |
| 5996 o.name = "foo"; | 6032 o.name = "foo"; |
| 5997 o.quotas = buildUnnamed2310(); | 6033 o.quotas = buildUnnamed2345(); |
| 5998 o.selfLink = "foo"; | 6034 o.selfLink = "foo"; |
| 5999 o.usageExportLocation = buildUsageExportLocation(); | 6035 o.usageExportLocation = buildUsageExportLocation(); |
| 6000 o.xpnProjectStatus = "foo"; | 6036 o.xpnProjectStatus = "foo"; |
| 6001 } | 6037 } |
| 6002 buildCounterProject--; | 6038 buildCounterProject--; |
| 6003 return o; | 6039 return o; |
| 6004 } | 6040 } |
| 6005 | 6041 |
| 6006 checkProject(api.Project o) { | 6042 checkProject(api.Project o) { |
| 6007 buildCounterProject++; | 6043 buildCounterProject++; |
| 6008 if (buildCounterProject < 3) { | 6044 if (buildCounterProject < 3) { |
| 6009 checkMetadata(o.commonInstanceMetadata); | 6045 checkMetadata(o.commonInstanceMetadata); |
| 6010 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6046 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6011 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); | 6047 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); |
| 6012 unittest.expect(o.description, unittest.equals('foo')); | 6048 unittest.expect(o.description, unittest.equals('foo')); |
| 6013 checkUnnamed2309(o.enabledFeatures); | 6049 checkUnnamed2344(o.enabledFeatures); |
| 6014 unittest.expect(o.id, unittest.equals('foo')); | 6050 unittest.expect(o.id, unittest.equals('foo')); |
| 6015 unittest.expect(o.kind, unittest.equals('foo')); | 6051 unittest.expect(o.kind, unittest.equals('foo')); |
| 6016 unittest.expect(o.name, unittest.equals('foo')); | 6052 unittest.expect(o.name, unittest.equals('foo')); |
| 6017 checkUnnamed2310(o.quotas); | 6053 checkUnnamed2345(o.quotas); |
| 6018 unittest.expect(o.selfLink, unittest.equals('foo')); | 6054 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6019 checkUsageExportLocation(o.usageExportLocation); | 6055 checkUsageExportLocation(o.usageExportLocation); |
| 6020 unittest.expect(o.xpnProjectStatus, unittest.equals('foo')); | 6056 unittest.expect(o.xpnProjectStatus, unittest.equals('foo')); |
| 6021 } | 6057 } |
| 6022 buildCounterProject--; | 6058 buildCounterProject--; |
| 6023 } | 6059 } |
| 6024 | 6060 |
| 6025 core.int buildCounterProjectsDisableXpnResourceRequest = 0; | 6061 core.int buildCounterProjectsDisableXpnResourceRequest = 0; |
| 6026 buildProjectsDisableXpnResourceRequest() { | 6062 buildProjectsDisableXpnResourceRequest() { |
| 6027 var o = new api.ProjectsDisableXpnResourceRequest(); | 6063 var o = new api.ProjectsDisableXpnResourceRequest(); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6053 } | 6089 } |
| 6054 | 6090 |
| 6055 checkProjectsEnableXpnResourceRequest(api.ProjectsEnableXpnResourceRequest o) { | 6091 checkProjectsEnableXpnResourceRequest(api.ProjectsEnableXpnResourceRequest o) { |
| 6056 buildCounterProjectsEnableXpnResourceRequest++; | 6092 buildCounterProjectsEnableXpnResourceRequest++; |
| 6057 if (buildCounterProjectsEnableXpnResourceRequest < 3) { | 6093 if (buildCounterProjectsEnableXpnResourceRequest < 3) { |
| 6058 checkXpnResourceId(o.xpnResource); | 6094 checkXpnResourceId(o.xpnResource); |
| 6059 } | 6095 } |
| 6060 buildCounterProjectsEnableXpnResourceRequest--; | 6096 buildCounterProjectsEnableXpnResourceRequest--; |
| 6061 } | 6097 } |
| 6062 | 6098 |
| 6063 buildUnnamed2311() { | 6099 buildUnnamed2346() { |
| 6064 var o = new core.List<api.XpnResourceId>(); | 6100 var o = new core.List<api.XpnResourceId>(); |
| 6065 o.add(buildXpnResourceId()); | 6101 o.add(buildXpnResourceId()); |
| 6066 o.add(buildXpnResourceId()); | 6102 o.add(buildXpnResourceId()); |
| 6067 return o; | 6103 return o; |
| 6068 } | 6104 } |
| 6069 | 6105 |
| 6070 checkUnnamed2311(core.List<api.XpnResourceId> o) { | 6106 checkUnnamed2346(core.List<api.XpnResourceId> o) { |
| 6071 unittest.expect(o, unittest.hasLength(2)); | 6107 unittest.expect(o, unittest.hasLength(2)); |
| 6072 checkXpnResourceId(o[0]); | 6108 checkXpnResourceId(o[0]); |
| 6073 checkXpnResourceId(o[1]); | 6109 checkXpnResourceId(o[1]); |
| 6074 } | 6110 } |
| 6075 | 6111 |
| 6076 core.int buildCounterProjectsGetXpnResources = 0; | 6112 core.int buildCounterProjectsGetXpnResources = 0; |
| 6077 buildProjectsGetXpnResources() { | 6113 buildProjectsGetXpnResources() { |
| 6078 var o = new api.ProjectsGetXpnResources(); | 6114 var o = new api.ProjectsGetXpnResources(); |
| 6079 buildCounterProjectsGetXpnResources++; | 6115 buildCounterProjectsGetXpnResources++; |
| 6080 if (buildCounterProjectsGetXpnResources < 3) { | 6116 if (buildCounterProjectsGetXpnResources < 3) { |
| 6081 o.kind = "foo"; | 6117 o.kind = "foo"; |
| 6082 o.nextPageToken = "foo"; | 6118 o.nextPageToken = "foo"; |
| 6083 o.resources = buildUnnamed2311(); | 6119 o.resources = buildUnnamed2346(); |
| 6084 } | 6120 } |
| 6085 buildCounterProjectsGetXpnResources--; | 6121 buildCounterProjectsGetXpnResources--; |
| 6086 return o; | 6122 return o; |
| 6087 } | 6123 } |
| 6088 | 6124 |
| 6089 checkProjectsGetXpnResources(api.ProjectsGetXpnResources o) { | 6125 checkProjectsGetXpnResources(api.ProjectsGetXpnResources o) { |
| 6090 buildCounterProjectsGetXpnResources++; | 6126 buildCounterProjectsGetXpnResources++; |
| 6091 if (buildCounterProjectsGetXpnResources < 3) { | 6127 if (buildCounterProjectsGetXpnResources < 3) { |
| 6092 unittest.expect(o.kind, unittest.equals('foo')); | 6128 unittest.expect(o.kind, unittest.equals('foo')); |
| 6093 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6129 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6094 checkUnnamed2311(o.resources); | 6130 checkUnnamed2346(o.resources); |
| 6095 } | 6131 } |
| 6096 buildCounterProjectsGetXpnResources--; | 6132 buildCounterProjectsGetXpnResources--; |
| 6097 } | 6133 } |
| 6098 | 6134 |
| 6099 core.int buildCounterProjectsListXpnHostsRequest = 0; | 6135 core.int buildCounterProjectsListXpnHostsRequest = 0; |
| 6100 buildProjectsListXpnHostsRequest() { | 6136 buildProjectsListXpnHostsRequest() { |
| 6101 var o = new api.ProjectsListXpnHostsRequest(); | 6137 var o = new api.ProjectsListXpnHostsRequest(); |
| 6102 buildCounterProjectsListXpnHostsRequest++; | 6138 buildCounterProjectsListXpnHostsRequest++; |
| 6103 if (buildCounterProjectsListXpnHostsRequest < 3) { | 6139 if (buildCounterProjectsListXpnHostsRequest < 3) { |
| 6104 o.organization = "foo"; | 6140 o.organization = "foo"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6131 checkQuota(api.Quota o) { | 6167 checkQuota(api.Quota o) { |
| 6132 buildCounterQuota++; | 6168 buildCounterQuota++; |
| 6133 if (buildCounterQuota < 3) { | 6169 if (buildCounterQuota < 3) { |
| 6134 unittest.expect(o.limit, unittest.equals(42.0)); | 6170 unittest.expect(o.limit, unittest.equals(42.0)); |
| 6135 unittest.expect(o.metric, unittest.equals('foo')); | 6171 unittest.expect(o.metric, unittest.equals('foo')); |
| 6136 unittest.expect(o.usage, unittest.equals(42.0)); | 6172 unittest.expect(o.usage, unittest.equals(42.0)); |
| 6137 } | 6173 } |
| 6138 buildCounterQuota--; | 6174 buildCounterQuota--; |
| 6139 } | 6175 } |
| 6140 | 6176 |
| 6141 buildUnnamed2312() { | 6177 buildUnnamed2347() { |
| 6142 var o = new core.List<api.Quota>(); | 6178 var o = new core.List<api.Quota>(); |
| 6143 o.add(buildQuota()); | 6179 o.add(buildQuota()); |
| 6144 o.add(buildQuota()); | 6180 o.add(buildQuota()); |
| 6145 return o; | 6181 return o; |
| 6146 } | 6182 } |
| 6147 | 6183 |
| 6148 checkUnnamed2312(core.List<api.Quota> o) { | 6184 checkUnnamed2347(core.List<api.Quota> o) { |
| 6149 unittest.expect(o, unittest.hasLength(2)); | 6185 unittest.expect(o, unittest.hasLength(2)); |
| 6150 checkQuota(o[0]); | 6186 checkQuota(o[0]); |
| 6151 checkQuota(o[1]); | 6187 checkQuota(o[1]); |
| 6152 } | 6188 } |
| 6153 | 6189 |
| 6154 buildUnnamed2313() { | 6190 buildUnnamed2348() { |
| 6155 var o = new core.List<core.String>(); | 6191 var o = new core.List<core.String>(); |
| 6156 o.add("foo"); | 6192 o.add("foo"); |
| 6157 o.add("foo"); | 6193 o.add("foo"); |
| 6158 return o; | 6194 return o; |
| 6159 } | 6195 } |
| 6160 | 6196 |
| 6161 checkUnnamed2313(core.List<core.String> o) { | 6197 checkUnnamed2348(core.List<core.String> o) { |
| 6162 unittest.expect(o, unittest.hasLength(2)); | 6198 unittest.expect(o, unittest.hasLength(2)); |
| 6163 unittest.expect(o[0], unittest.equals('foo')); | 6199 unittest.expect(o[0], unittest.equals('foo')); |
| 6164 unittest.expect(o[1], unittest.equals('foo')); | 6200 unittest.expect(o[1], unittest.equals('foo')); |
| 6165 } | 6201 } |
| 6166 | 6202 |
| 6167 core.int buildCounterRegion = 0; | 6203 core.int buildCounterRegion = 0; |
| 6168 buildRegion() { | 6204 buildRegion() { |
| 6169 var o = new api.Region(); | 6205 var o = new api.Region(); |
| 6170 buildCounterRegion++; | 6206 buildCounterRegion++; |
| 6171 if (buildCounterRegion < 3) { | 6207 if (buildCounterRegion < 3) { |
| 6172 o.creationTimestamp = "foo"; | 6208 o.creationTimestamp = "foo"; |
| 6173 o.deprecated = buildDeprecationStatus(); | 6209 o.deprecated = buildDeprecationStatus(); |
| 6174 o.description = "foo"; | 6210 o.description = "foo"; |
| 6175 o.id = "foo"; | 6211 o.id = "foo"; |
| 6176 o.kind = "foo"; | 6212 o.kind = "foo"; |
| 6177 o.name = "foo"; | 6213 o.name = "foo"; |
| 6178 o.quotas = buildUnnamed2312(); | 6214 o.quotas = buildUnnamed2347(); |
| 6179 o.selfLink = "foo"; | 6215 o.selfLink = "foo"; |
| 6180 o.status = "foo"; | 6216 o.status = "foo"; |
| 6181 o.zones = buildUnnamed2313(); | 6217 o.zones = buildUnnamed2348(); |
| 6182 } | 6218 } |
| 6183 buildCounterRegion--; | 6219 buildCounterRegion--; |
| 6184 return o; | 6220 return o; |
| 6185 } | 6221 } |
| 6186 | 6222 |
| 6187 checkRegion(api.Region o) { | 6223 checkRegion(api.Region o) { |
| 6188 buildCounterRegion++; | 6224 buildCounterRegion++; |
| 6189 if (buildCounterRegion < 3) { | 6225 if (buildCounterRegion < 3) { |
| 6190 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6226 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6191 checkDeprecationStatus(o.deprecated); | 6227 checkDeprecationStatus(o.deprecated); |
| 6192 unittest.expect(o.description, unittest.equals('foo')); | 6228 unittest.expect(o.description, unittest.equals('foo')); |
| 6193 unittest.expect(o.id, unittest.equals('foo')); | 6229 unittest.expect(o.id, unittest.equals('foo')); |
| 6194 unittest.expect(o.kind, unittest.equals('foo')); | 6230 unittest.expect(o.kind, unittest.equals('foo')); |
| 6195 unittest.expect(o.name, unittest.equals('foo')); | 6231 unittest.expect(o.name, unittest.equals('foo')); |
| 6196 checkUnnamed2312(o.quotas); | 6232 checkUnnamed2347(o.quotas); |
| 6197 unittest.expect(o.selfLink, unittest.equals('foo')); | 6233 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6198 unittest.expect(o.status, unittest.equals('foo')); | 6234 unittest.expect(o.status, unittest.equals('foo')); |
| 6199 checkUnnamed2313(o.zones); | 6235 checkUnnamed2348(o.zones); |
| 6200 } | 6236 } |
| 6201 buildCounterRegion--; | 6237 buildCounterRegion--; |
| 6202 } | 6238 } |
| 6203 | 6239 |
| 6204 buildUnnamed2314() { | 6240 buildUnnamed2349() { |
| 6205 var o = new core.List<api.Autoscaler>(); | 6241 var o = new core.List<api.Autoscaler>(); |
| 6206 o.add(buildAutoscaler()); | 6242 o.add(buildAutoscaler()); |
| 6207 o.add(buildAutoscaler()); | 6243 o.add(buildAutoscaler()); |
| 6208 return o; | 6244 return o; |
| 6209 } | 6245 } |
| 6210 | 6246 |
| 6211 checkUnnamed2314(core.List<api.Autoscaler> o) { | 6247 checkUnnamed2349(core.List<api.Autoscaler> o) { |
| 6212 unittest.expect(o, unittest.hasLength(2)); | 6248 unittest.expect(o, unittest.hasLength(2)); |
| 6213 checkAutoscaler(o[0]); | 6249 checkAutoscaler(o[0]); |
| 6214 checkAutoscaler(o[1]); | 6250 checkAutoscaler(o[1]); |
| 6215 } | 6251 } |
| 6216 | 6252 |
| 6217 core.int buildCounterRegionAutoscalerList = 0; | 6253 core.int buildCounterRegionAutoscalerList = 0; |
| 6218 buildRegionAutoscalerList() { | 6254 buildRegionAutoscalerList() { |
| 6219 var o = new api.RegionAutoscalerList(); | 6255 var o = new api.RegionAutoscalerList(); |
| 6220 buildCounterRegionAutoscalerList++; | 6256 buildCounterRegionAutoscalerList++; |
| 6221 if (buildCounterRegionAutoscalerList < 3) { | 6257 if (buildCounterRegionAutoscalerList < 3) { |
| 6222 o.id = "foo"; | 6258 o.id = "foo"; |
| 6223 o.items = buildUnnamed2314(); | 6259 o.items = buildUnnamed2349(); |
| 6224 o.kind = "foo"; | 6260 o.kind = "foo"; |
| 6225 o.nextPageToken = "foo"; | 6261 o.nextPageToken = "foo"; |
| 6226 o.selfLink = "foo"; | 6262 o.selfLink = "foo"; |
| 6227 } | 6263 } |
| 6228 buildCounterRegionAutoscalerList--; | 6264 buildCounterRegionAutoscalerList--; |
| 6229 return o; | 6265 return o; |
| 6230 } | 6266 } |
| 6231 | 6267 |
| 6232 checkRegionAutoscalerList(api.RegionAutoscalerList o) { | 6268 checkRegionAutoscalerList(api.RegionAutoscalerList o) { |
| 6233 buildCounterRegionAutoscalerList++; | 6269 buildCounterRegionAutoscalerList++; |
| 6234 if (buildCounterRegionAutoscalerList < 3) { | 6270 if (buildCounterRegionAutoscalerList < 3) { |
| 6235 unittest.expect(o.id, unittest.equals('foo')); | 6271 unittest.expect(o.id, unittest.equals('foo')); |
| 6236 checkUnnamed2314(o.items); | 6272 checkUnnamed2349(o.items); |
| 6237 unittest.expect(o.kind, unittest.equals('foo')); | 6273 unittest.expect(o.kind, unittest.equals('foo')); |
| 6238 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6274 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6239 unittest.expect(o.selfLink, unittest.equals('foo')); | 6275 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6240 } | 6276 } |
| 6241 buildCounterRegionAutoscalerList--; | 6277 buildCounterRegionAutoscalerList--; |
| 6242 } | 6278 } |
| 6243 | 6279 |
| 6244 buildUnnamed2315() { | 6280 buildUnnamed2350() { |
| 6245 var o = new core.List<api.InstanceGroup>(); | 6281 var o = new core.List<api.InstanceGroup>(); |
| 6246 o.add(buildInstanceGroup()); | 6282 o.add(buildInstanceGroup()); |
| 6247 o.add(buildInstanceGroup()); | 6283 o.add(buildInstanceGroup()); |
| 6248 return o; | 6284 return o; |
| 6249 } | 6285 } |
| 6250 | 6286 |
| 6251 checkUnnamed2315(core.List<api.InstanceGroup> o) { | 6287 checkUnnamed2350(core.List<api.InstanceGroup> o) { |
| 6252 unittest.expect(o, unittest.hasLength(2)); | 6288 unittest.expect(o, unittest.hasLength(2)); |
| 6253 checkInstanceGroup(o[0]); | 6289 checkInstanceGroup(o[0]); |
| 6254 checkInstanceGroup(o[1]); | 6290 checkInstanceGroup(o[1]); |
| 6255 } | 6291 } |
| 6256 | 6292 |
| 6257 core.int buildCounterRegionInstanceGroupList = 0; | 6293 core.int buildCounterRegionInstanceGroupList = 0; |
| 6258 buildRegionInstanceGroupList() { | 6294 buildRegionInstanceGroupList() { |
| 6259 var o = new api.RegionInstanceGroupList(); | 6295 var o = new api.RegionInstanceGroupList(); |
| 6260 buildCounterRegionInstanceGroupList++; | 6296 buildCounterRegionInstanceGroupList++; |
| 6261 if (buildCounterRegionInstanceGroupList < 3) { | 6297 if (buildCounterRegionInstanceGroupList < 3) { |
| 6262 o.id = "foo"; | 6298 o.id = "foo"; |
| 6263 o.items = buildUnnamed2315(); | 6299 o.items = buildUnnamed2350(); |
| 6264 o.kind = "foo"; | 6300 o.kind = "foo"; |
| 6265 o.nextPageToken = "foo"; | 6301 o.nextPageToken = "foo"; |
| 6266 o.selfLink = "foo"; | 6302 o.selfLink = "foo"; |
| 6267 } | 6303 } |
| 6268 buildCounterRegionInstanceGroupList--; | 6304 buildCounterRegionInstanceGroupList--; |
| 6269 return o; | 6305 return o; |
| 6270 } | 6306 } |
| 6271 | 6307 |
| 6272 checkRegionInstanceGroupList(api.RegionInstanceGroupList o) { | 6308 checkRegionInstanceGroupList(api.RegionInstanceGroupList o) { |
| 6273 buildCounterRegionInstanceGroupList++; | 6309 buildCounterRegionInstanceGroupList++; |
| 6274 if (buildCounterRegionInstanceGroupList < 3) { | 6310 if (buildCounterRegionInstanceGroupList < 3) { |
| 6275 unittest.expect(o.id, unittest.equals('foo')); | 6311 unittest.expect(o.id, unittest.equals('foo')); |
| 6276 checkUnnamed2315(o.items); | 6312 checkUnnamed2350(o.items); |
| 6277 unittest.expect(o.kind, unittest.equals('foo')); | 6313 unittest.expect(o.kind, unittest.equals('foo')); |
| 6278 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6314 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6279 unittest.expect(o.selfLink, unittest.equals('foo')); | 6315 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6280 } | 6316 } |
| 6281 buildCounterRegionInstanceGroupList--; | 6317 buildCounterRegionInstanceGroupList--; |
| 6282 } | 6318 } |
| 6283 | 6319 |
| 6284 buildUnnamed2316() { | 6320 buildUnnamed2351() { |
| 6285 var o = new core.List<api.InstanceGroupManager>(); | 6321 var o = new core.List<api.InstanceGroupManager>(); |
| 6286 o.add(buildInstanceGroupManager()); | 6322 o.add(buildInstanceGroupManager()); |
| 6287 o.add(buildInstanceGroupManager()); | 6323 o.add(buildInstanceGroupManager()); |
| 6288 return o; | 6324 return o; |
| 6289 } | 6325 } |
| 6290 | 6326 |
| 6291 checkUnnamed2316(core.List<api.InstanceGroupManager> o) { | 6327 checkUnnamed2351(core.List<api.InstanceGroupManager> o) { |
| 6292 unittest.expect(o, unittest.hasLength(2)); | 6328 unittest.expect(o, unittest.hasLength(2)); |
| 6293 checkInstanceGroupManager(o[0]); | 6329 checkInstanceGroupManager(o[0]); |
| 6294 checkInstanceGroupManager(o[1]); | 6330 checkInstanceGroupManager(o[1]); |
| 6295 } | 6331 } |
| 6296 | 6332 |
| 6297 core.int buildCounterRegionInstanceGroupManagerList = 0; | 6333 core.int buildCounterRegionInstanceGroupManagerList = 0; |
| 6298 buildRegionInstanceGroupManagerList() { | 6334 buildRegionInstanceGroupManagerList() { |
| 6299 var o = new api.RegionInstanceGroupManagerList(); | 6335 var o = new api.RegionInstanceGroupManagerList(); |
| 6300 buildCounterRegionInstanceGroupManagerList++; | 6336 buildCounterRegionInstanceGroupManagerList++; |
| 6301 if (buildCounterRegionInstanceGroupManagerList < 3) { | 6337 if (buildCounterRegionInstanceGroupManagerList < 3) { |
| 6302 o.id = "foo"; | 6338 o.id = "foo"; |
| 6303 o.items = buildUnnamed2316(); | 6339 o.items = buildUnnamed2351(); |
| 6304 o.kind = "foo"; | 6340 o.kind = "foo"; |
| 6305 o.nextPageToken = "foo"; | 6341 o.nextPageToken = "foo"; |
| 6306 o.selfLink = "foo"; | 6342 o.selfLink = "foo"; |
| 6307 } | 6343 } |
| 6308 buildCounterRegionInstanceGroupManagerList--; | 6344 buildCounterRegionInstanceGroupManagerList--; |
| 6309 return o; | 6345 return o; |
| 6310 } | 6346 } |
| 6311 | 6347 |
| 6312 checkRegionInstanceGroupManagerList(api.RegionInstanceGroupManagerList o) { | 6348 checkRegionInstanceGroupManagerList(api.RegionInstanceGroupManagerList o) { |
| 6313 buildCounterRegionInstanceGroupManagerList++; | 6349 buildCounterRegionInstanceGroupManagerList++; |
| 6314 if (buildCounterRegionInstanceGroupManagerList < 3) { | 6350 if (buildCounterRegionInstanceGroupManagerList < 3) { |
| 6315 unittest.expect(o.id, unittest.equals('foo')); | 6351 unittest.expect(o.id, unittest.equals('foo')); |
| 6316 checkUnnamed2316(o.items); | 6352 checkUnnamed2351(o.items); |
| 6317 unittest.expect(o.kind, unittest.equals('foo')); | 6353 unittest.expect(o.kind, unittest.equals('foo')); |
| 6318 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6354 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6319 unittest.expect(o.selfLink, unittest.equals('foo')); | 6355 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6320 } | 6356 } |
| 6321 buildCounterRegionInstanceGroupManagerList--; | 6357 buildCounterRegionInstanceGroupManagerList--; |
| 6322 } | 6358 } |
| 6323 | 6359 |
| 6324 buildUnnamed2317() { | 6360 buildUnnamed2352() { |
| 6325 var o = new core.List<core.String>(); | 6361 var o = new core.List<core.String>(); |
| 6326 o.add("foo"); | 6362 o.add("foo"); |
| 6327 o.add("foo"); | 6363 o.add("foo"); |
| 6328 return o; | 6364 return o; |
| 6329 } | 6365 } |
| 6330 | 6366 |
| 6331 checkUnnamed2317(core.List<core.String> o) { | 6367 checkUnnamed2352(core.List<core.String> o) { |
| 6332 unittest.expect(o, unittest.hasLength(2)); | 6368 unittest.expect(o, unittest.hasLength(2)); |
| 6333 unittest.expect(o[0], unittest.equals('foo')); | 6369 unittest.expect(o[0], unittest.equals('foo')); |
| 6334 unittest.expect(o[1], unittest.equals('foo')); | 6370 unittest.expect(o[1], unittest.equals('foo')); |
| 6335 } | 6371 } |
| 6336 | 6372 |
| 6337 core.int buildCounterRegionInstanceGroupManagersAbandonInstancesRequest = 0; | 6373 core.int buildCounterRegionInstanceGroupManagersAbandonInstancesRequest = 0; |
| 6338 buildRegionInstanceGroupManagersAbandonInstancesRequest() { | 6374 buildRegionInstanceGroupManagersAbandonInstancesRequest() { |
| 6339 var o = new api.RegionInstanceGroupManagersAbandonInstancesRequest(); | 6375 var o = new api.RegionInstanceGroupManagersAbandonInstancesRequest(); |
| 6340 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; | 6376 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; |
| 6341 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { | 6377 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 6342 o.instances = buildUnnamed2317(); | 6378 o.instances = buildUnnamed2352(); |
| 6343 } | 6379 } |
| 6344 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; | 6380 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; |
| 6345 return o; | 6381 return o; |
| 6346 } | 6382 } |
| 6347 | 6383 |
| 6348 checkRegionInstanceGroupManagersAbandonInstancesRequest(api.RegionInstanceGroupM
anagersAbandonInstancesRequest o) { | 6384 checkRegionInstanceGroupManagersAbandonInstancesRequest(api.RegionInstanceGroupM
anagersAbandonInstancesRequest o) { |
| 6349 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; | 6385 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; |
| 6350 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { | 6386 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 6351 checkUnnamed2317(o.instances); | 6387 checkUnnamed2352(o.instances); |
| 6352 } | 6388 } |
| 6353 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; | 6389 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; |
| 6354 } | 6390 } |
| 6355 | 6391 |
| 6356 buildUnnamed2318() { | 6392 buildUnnamed2353() { |
| 6357 var o = new core.List<core.String>(); | 6393 var o = new core.List<core.String>(); |
| 6358 o.add("foo"); | 6394 o.add("foo"); |
| 6359 o.add("foo"); | 6395 o.add("foo"); |
| 6360 return o; | 6396 return o; |
| 6361 } | 6397 } |
| 6362 | 6398 |
| 6363 checkUnnamed2318(core.List<core.String> o) { | 6399 checkUnnamed2353(core.List<core.String> o) { |
| 6364 unittest.expect(o, unittest.hasLength(2)); | 6400 unittest.expect(o, unittest.hasLength(2)); |
| 6365 unittest.expect(o[0], unittest.equals('foo')); | 6401 unittest.expect(o[0], unittest.equals('foo')); |
| 6366 unittest.expect(o[1], unittest.equals('foo')); | 6402 unittest.expect(o[1], unittest.equals('foo')); |
| 6367 } | 6403 } |
| 6368 | 6404 |
| 6369 core.int buildCounterRegionInstanceGroupManagersDeleteInstancesRequest = 0; | 6405 core.int buildCounterRegionInstanceGroupManagersDeleteInstancesRequest = 0; |
| 6370 buildRegionInstanceGroupManagersDeleteInstancesRequest() { | 6406 buildRegionInstanceGroupManagersDeleteInstancesRequest() { |
| 6371 var o = new api.RegionInstanceGroupManagersDeleteInstancesRequest(); | 6407 var o = new api.RegionInstanceGroupManagersDeleteInstancesRequest(); |
| 6372 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; | 6408 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; |
| 6373 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { | 6409 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 6374 o.instances = buildUnnamed2318(); | 6410 o.instances = buildUnnamed2353(); |
| 6375 } | 6411 } |
| 6376 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; | 6412 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; |
| 6377 return o; | 6413 return o; |
| 6378 } | 6414 } |
| 6379 | 6415 |
| 6380 checkRegionInstanceGroupManagersDeleteInstancesRequest(api.RegionInstanceGroupMa
nagersDeleteInstancesRequest o) { | 6416 checkRegionInstanceGroupManagersDeleteInstancesRequest(api.RegionInstanceGroupMa
nagersDeleteInstancesRequest o) { |
| 6381 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; | 6417 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; |
| 6382 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { | 6418 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 6383 checkUnnamed2318(o.instances); | 6419 checkUnnamed2353(o.instances); |
| 6384 } | 6420 } |
| 6385 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; | 6421 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; |
| 6386 } | 6422 } |
| 6387 | 6423 |
| 6388 buildUnnamed2319() { | 6424 buildUnnamed2354() { |
| 6389 var o = new core.List<api.ManagedInstance>(); | 6425 var o = new core.List<api.ManagedInstance>(); |
| 6390 o.add(buildManagedInstance()); | 6426 o.add(buildManagedInstance()); |
| 6391 o.add(buildManagedInstance()); | 6427 o.add(buildManagedInstance()); |
| 6392 return o; | 6428 return o; |
| 6393 } | 6429 } |
| 6394 | 6430 |
| 6395 checkUnnamed2319(core.List<api.ManagedInstance> o) { | 6431 checkUnnamed2354(core.List<api.ManagedInstance> o) { |
| 6396 unittest.expect(o, unittest.hasLength(2)); | 6432 unittest.expect(o, unittest.hasLength(2)); |
| 6397 checkManagedInstance(o[0]); | 6433 checkManagedInstance(o[0]); |
| 6398 checkManagedInstance(o[1]); | 6434 checkManagedInstance(o[1]); |
| 6399 } | 6435 } |
| 6400 | 6436 |
| 6401 core.int buildCounterRegionInstanceGroupManagersListInstancesResponse = 0; | 6437 core.int buildCounterRegionInstanceGroupManagersListInstancesResponse = 0; |
| 6402 buildRegionInstanceGroupManagersListInstancesResponse() { | 6438 buildRegionInstanceGroupManagersListInstancesResponse() { |
| 6403 var o = new api.RegionInstanceGroupManagersListInstancesResponse(); | 6439 var o = new api.RegionInstanceGroupManagersListInstancesResponse(); |
| 6404 buildCounterRegionInstanceGroupManagersListInstancesResponse++; | 6440 buildCounterRegionInstanceGroupManagersListInstancesResponse++; |
| 6405 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { | 6441 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { |
| 6406 o.managedInstances = buildUnnamed2319(); | 6442 o.managedInstances = buildUnnamed2354(); |
| 6407 } | 6443 } |
| 6408 buildCounterRegionInstanceGroupManagersListInstancesResponse--; | 6444 buildCounterRegionInstanceGroupManagersListInstancesResponse--; |
| 6409 return o; | 6445 return o; |
| 6410 } | 6446 } |
| 6411 | 6447 |
| 6412 checkRegionInstanceGroupManagersListInstancesResponse(api.RegionInstanceGroupMan
agersListInstancesResponse o) { | 6448 checkRegionInstanceGroupManagersListInstancesResponse(api.RegionInstanceGroupMan
agersListInstancesResponse o) { |
| 6413 buildCounterRegionInstanceGroupManagersListInstancesResponse++; | 6449 buildCounterRegionInstanceGroupManagersListInstancesResponse++; |
| 6414 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { | 6450 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { |
| 6415 checkUnnamed2319(o.managedInstances); | 6451 checkUnnamed2354(o.managedInstances); |
| 6416 } | 6452 } |
| 6417 buildCounterRegionInstanceGroupManagersListInstancesResponse--; | 6453 buildCounterRegionInstanceGroupManagersListInstancesResponse--; |
| 6418 } | 6454 } |
| 6419 | 6455 |
| 6420 buildUnnamed2320() { | 6456 buildUnnamed2355() { |
| 6421 var o = new core.List<core.String>(); | 6457 var o = new core.List<core.String>(); |
| 6422 o.add("foo"); | 6458 o.add("foo"); |
| 6423 o.add("foo"); | 6459 o.add("foo"); |
| 6424 return o; | 6460 return o; |
| 6425 } | 6461 } |
| 6426 | 6462 |
| 6427 checkUnnamed2320(core.List<core.String> o) { | 6463 checkUnnamed2355(core.List<core.String> o) { |
| 6428 unittest.expect(o, unittest.hasLength(2)); | 6464 unittest.expect(o, unittest.hasLength(2)); |
| 6429 unittest.expect(o[0], unittest.equals('foo')); | 6465 unittest.expect(o[0], unittest.equals('foo')); |
| 6430 unittest.expect(o[1], unittest.equals('foo')); | 6466 unittest.expect(o[1], unittest.equals('foo')); |
| 6431 } | 6467 } |
| 6432 | 6468 |
| 6433 core.int buildCounterRegionInstanceGroupManagersRecreateRequest = 0; | 6469 core.int buildCounterRegionInstanceGroupManagersRecreateRequest = 0; |
| 6434 buildRegionInstanceGroupManagersRecreateRequest() { | 6470 buildRegionInstanceGroupManagersRecreateRequest() { |
| 6435 var o = new api.RegionInstanceGroupManagersRecreateRequest(); | 6471 var o = new api.RegionInstanceGroupManagersRecreateRequest(); |
| 6436 buildCounterRegionInstanceGroupManagersRecreateRequest++; | 6472 buildCounterRegionInstanceGroupManagersRecreateRequest++; |
| 6437 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { | 6473 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { |
| 6438 o.instances = buildUnnamed2320(); | 6474 o.instances = buildUnnamed2355(); |
| 6439 } | 6475 } |
| 6440 buildCounterRegionInstanceGroupManagersRecreateRequest--; | 6476 buildCounterRegionInstanceGroupManagersRecreateRequest--; |
| 6441 return o; | 6477 return o; |
| 6442 } | 6478 } |
| 6443 | 6479 |
| 6444 checkRegionInstanceGroupManagersRecreateRequest(api.RegionInstanceGroupManagersR
ecreateRequest o) { | 6480 checkRegionInstanceGroupManagersRecreateRequest(api.RegionInstanceGroupManagersR
ecreateRequest o) { |
| 6445 buildCounterRegionInstanceGroupManagersRecreateRequest++; | 6481 buildCounterRegionInstanceGroupManagersRecreateRequest++; |
| 6446 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { | 6482 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { |
| 6447 checkUnnamed2320(o.instances); | 6483 checkUnnamed2355(o.instances); |
| 6448 } | 6484 } |
| 6449 buildCounterRegionInstanceGroupManagersRecreateRequest--; | 6485 buildCounterRegionInstanceGroupManagersRecreateRequest--; |
| 6450 } | 6486 } |
| 6451 | 6487 |
| 6452 buildUnnamed2321() { | 6488 buildUnnamed2356() { |
| 6453 var o = new core.List<core.String>(); | 6489 var o = new core.List<core.String>(); |
| 6454 o.add("foo"); | 6490 o.add("foo"); |
| 6455 o.add("foo"); | 6491 o.add("foo"); |
| 6456 return o; | 6492 return o; |
| 6457 } | 6493 } |
| 6458 | 6494 |
| 6459 checkUnnamed2321(core.List<core.String> o) { | 6495 checkUnnamed2356(core.List<core.String> o) { |
| 6460 unittest.expect(o, unittest.hasLength(2)); | 6496 unittest.expect(o, unittest.hasLength(2)); |
| 6461 unittest.expect(o[0], unittest.equals('foo')); | 6497 unittest.expect(o[0], unittest.equals('foo')); |
| 6462 unittest.expect(o[1], unittest.equals('foo')); | 6498 unittest.expect(o[1], unittest.equals('foo')); |
| 6463 } | 6499 } |
| 6464 | 6500 |
| 6465 core.int buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest = 0; | 6501 core.int buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 6466 buildRegionInstanceGroupManagersSetTargetPoolsRequest() { | 6502 buildRegionInstanceGroupManagersSetTargetPoolsRequest() { |
| 6467 var o = new api.RegionInstanceGroupManagersSetTargetPoolsRequest(); | 6503 var o = new api.RegionInstanceGroupManagersSetTargetPoolsRequest(); |
| 6468 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; | 6504 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; |
| 6469 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { | 6505 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 6470 o.fingerprint = "foo"; | 6506 o.fingerprint = "foo"; |
| 6471 o.targetPools = buildUnnamed2321(); | 6507 o.targetPools = buildUnnamed2356(); |
| 6472 } | 6508 } |
| 6473 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; | 6509 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; |
| 6474 return o; | 6510 return o; |
| 6475 } | 6511 } |
| 6476 | 6512 |
| 6477 checkRegionInstanceGroupManagersSetTargetPoolsRequest(api.RegionInstanceGroupMan
agersSetTargetPoolsRequest o) { | 6513 checkRegionInstanceGroupManagersSetTargetPoolsRequest(api.RegionInstanceGroupMan
agersSetTargetPoolsRequest o) { |
| 6478 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; | 6514 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; |
| 6479 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { | 6515 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 6480 unittest.expect(o.fingerprint, unittest.equals('foo')); | 6516 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 6481 checkUnnamed2321(o.targetPools); | 6517 checkUnnamed2356(o.targetPools); |
| 6482 } | 6518 } |
| 6483 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; | 6519 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; |
| 6484 } | 6520 } |
| 6485 | 6521 |
| 6486 core.int buildCounterRegionInstanceGroupManagersSetTemplateRequest = 0; | 6522 core.int buildCounterRegionInstanceGroupManagersSetTemplateRequest = 0; |
| 6487 buildRegionInstanceGroupManagersSetTemplateRequest() { | 6523 buildRegionInstanceGroupManagersSetTemplateRequest() { |
| 6488 var o = new api.RegionInstanceGroupManagersSetTemplateRequest(); | 6524 var o = new api.RegionInstanceGroupManagersSetTemplateRequest(); |
| 6489 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; | 6525 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; |
| 6490 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { | 6526 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { |
| 6491 o.instanceTemplate = "foo"; | 6527 o.instanceTemplate = "foo"; |
| 6492 } | 6528 } |
| 6493 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; | 6529 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; |
| 6494 return o; | 6530 return o; |
| 6495 } | 6531 } |
| 6496 | 6532 |
| 6497 checkRegionInstanceGroupManagersSetTemplateRequest(api.RegionInstanceGroupManage
rsSetTemplateRequest o) { | 6533 checkRegionInstanceGroupManagersSetTemplateRequest(api.RegionInstanceGroupManage
rsSetTemplateRequest o) { |
| 6498 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; | 6534 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; |
| 6499 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { | 6535 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { |
| 6500 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 6536 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 6501 } | 6537 } |
| 6502 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; | 6538 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; |
| 6503 } | 6539 } |
| 6504 | 6540 |
| 6505 buildUnnamed2322() { | 6541 buildUnnamed2357() { |
| 6506 var o = new core.List<api.InstanceWithNamedPorts>(); | 6542 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 6507 o.add(buildInstanceWithNamedPorts()); | 6543 o.add(buildInstanceWithNamedPorts()); |
| 6508 o.add(buildInstanceWithNamedPorts()); | 6544 o.add(buildInstanceWithNamedPorts()); |
| 6509 return o; | 6545 return o; |
| 6510 } | 6546 } |
| 6511 | 6547 |
| 6512 checkUnnamed2322(core.List<api.InstanceWithNamedPorts> o) { | 6548 checkUnnamed2357(core.List<api.InstanceWithNamedPorts> o) { |
| 6513 unittest.expect(o, unittest.hasLength(2)); | 6549 unittest.expect(o, unittest.hasLength(2)); |
| 6514 checkInstanceWithNamedPorts(o[0]); | 6550 checkInstanceWithNamedPorts(o[0]); |
| 6515 checkInstanceWithNamedPorts(o[1]); | 6551 checkInstanceWithNamedPorts(o[1]); |
| 6516 } | 6552 } |
| 6517 | 6553 |
| 6518 core.int buildCounterRegionInstanceGroupsListInstances = 0; | 6554 core.int buildCounterRegionInstanceGroupsListInstances = 0; |
| 6519 buildRegionInstanceGroupsListInstances() { | 6555 buildRegionInstanceGroupsListInstances() { |
| 6520 var o = new api.RegionInstanceGroupsListInstances(); | 6556 var o = new api.RegionInstanceGroupsListInstances(); |
| 6521 buildCounterRegionInstanceGroupsListInstances++; | 6557 buildCounterRegionInstanceGroupsListInstances++; |
| 6522 if (buildCounterRegionInstanceGroupsListInstances < 3) { | 6558 if (buildCounterRegionInstanceGroupsListInstances < 3) { |
| 6523 o.id = "foo"; | 6559 o.id = "foo"; |
| 6524 o.items = buildUnnamed2322(); | 6560 o.items = buildUnnamed2357(); |
| 6525 o.kind = "foo"; | 6561 o.kind = "foo"; |
| 6526 o.nextPageToken = "foo"; | 6562 o.nextPageToken = "foo"; |
| 6527 o.selfLink = "foo"; | 6563 o.selfLink = "foo"; |
| 6528 } | 6564 } |
| 6529 buildCounterRegionInstanceGroupsListInstances--; | 6565 buildCounterRegionInstanceGroupsListInstances--; |
| 6530 return o; | 6566 return o; |
| 6531 } | 6567 } |
| 6532 | 6568 |
| 6533 checkRegionInstanceGroupsListInstances(api.RegionInstanceGroupsListInstances o)
{ | 6569 checkRegionInstanceGroupsListInstances(api.RegionInstanceGroupsListInstances o)
{ |
| 6534 buildCounterRegionInstanceGroupsListInstances++; | 6570 buildCounterRegionInstanceGroupsListInstances++; |
| 6535 if (buildCounterRegionInstanceGroupsListInstances < 3) { | 6571 if (buildCounterRegionInstanceGroupsListInstances < 3) { |
| 6536 unittest.expect(o.id, unittest.equals('foo')); | 6572 unittest.expect(o.id, unittest.equals('foo')); |
| 6537 checkUnnamed2322(o.items); | 6573 checkUnnamed2357(o.items); |
| 6538 unittest.expect(o.kind, unittest.equals('foo')); | 6574 unittest.expect(o.kind, unittest.equals('foo')); |
| 6539 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6575 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6540 unittest.expect(o.selfLink, unittest.equals('foo')); | 6576 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6541 } | 6577 } |
| 6542 buildCounterRegionInstanceGroupsListInstances--; | 6578 buildCounterRegionInstanceGroupsListInstances--; |
| 6543 } | 6579 } |
| 6544 | 6580 |
| 6545 core.int buildCounterRegionInstanceGroupsListInstancesRequest = 0; | 6581 core.int buildCounterRegionInstanceGroupsListInstancesRequest = 0; |
| 6546 buildRegionInstanceGroupsListInstancesRequest() { | 6582 buildRegionInstanceGroupsListInstancesRequest() { |
| 6547 var o = new api.RegionInstanceGroupsListInstancesRequest(); | 6583 var o = new api.RegionInstanceGroupsListInstancesRequest(); |
| 6548 buildCounterRegionInstanceGroupsListInstancesRequest++; | 6584 buildCounterRegionInstanceGroupsListInstancesRequest++; |
| 6549 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { | 6585 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { |
| 6550 o.instanceState = "foo"; | 6586 o.instanceState = "foo"; |
| 6551 o.portName = "foo"; | 6587 o.portName = "foo"; |
| 6552 } | 6588 } |
| 6553 buildCounterRegionInstanceGroupsListInstancesRequest--; | 6589 buildCounterRegionInstanceGroupsListInstancesRequest--; |
| 6554 return o; | 6590 return o; |
| 6555 } | 6591 } |
| 6556 | 6592 |
| 6557 checkRegionInstanceGroupsListInstancesRequest(api.RegionInstanceGroupsListInstan
cesRequest o) { | 6593 checkRegionInstanceGroupsListInstancesRequest(api.RegionInstanceGroupsListInstan
cesRequest o) { |
| 6558 buildCounterRegionInstanceGroupsListInstancesRequest++; | 6594 buildCounterRegionInstanceGroupsListInstancesRequest++; |
| 6559 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { | 6595 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { |
| 6560 unittest.expect(o.instanceState, unittest.equals('foo')); | 6596 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 6561 unittest.expect(o.portName, unittest.equals('foo')); | 6597 unittest.expect(o.portName, unittest.equals('foo')); |
| 6562 } | 6598 } |
| 6563 buildCounterRegionInstanceGroupsListInstancesRequest--; | 6599 buildCounterRegionInstanceGroupsListInstancesRequest--; |
| 6564 } | 6600 } |
| 6565 | 6601 |
| 6566 buildUnnamed2323() { | 6602 buildUnnamed2358() { |
| 6567 var o = new core.List<api.NamedPort>(); | 6603 var o = new core.List<api.NamedPort>(); |
| 6568 o.add(buildNamedPort()); | 6604 o.add(buildNamedPort()); |
| 6569 o.add(buildNamedPort()); | 6605 o.add(buildNamedPort()); |
| 6570 return o; | 6606 return o; |
| 6571 } | 6607 } |
| 6572 | 6608 |
| 6573 checkUnnamed2323(core.List<api.NamedPort> o) { | 6609 checkUnnamed2358(core.List<api.NamedPort> o) { |
| 6574 unittest.expect(o, unittest.hasLength(2)); | 6610 unittest.expect(o, unittest.hasLength(2)); |
| 6575 checkNamedPort(o[0]); | 6611 checkNamedPort(o[0]); |
| 6576 checkNamedPort(o[1]); | 6612 checkNamedPort(o[1]); |
| 6577 } | 6613 } |
| 6578 | 6614 |
| 6579 core.int buildCounterRegionInstanceGroupsSetNamedPortsRequest = 0; | 6615 core.int buildCounterRegionInstanceGroupsSetNamedPortsRequest = 0; |
| 6580 buildRegionInstanceGroupsSetNamedPortsRequest() { | 6616 buildRegionInstanceGroupsSetNamedPortsRequest() { |
| 6581 var o = new api.RegionInstanceGroupsSetNamedPortsRequest(); | 6617 var o = new api.RegionInstanceGroupsSetNamedPortsRequest(); |
| 6582 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; | 6618 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; |
| 6583 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { | 6619 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { |
| 6584 o.fingerprint = "foo"; | 6620 o.fingerprint = "foo"; |
| 6585 o.namedPorts = buildUnnamed2323(); | 6621 o.namedPorts = buildUnnamed2358(); |
| 6586 } | 6622 } |
| 6587 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; | 6623 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; |
| 6588 return o; | 6624 return o; |
| 6589 } | 6625 } |
| 6590 | 6626 |
| 6591 checkRegionInstanceGroupsSetNamedPortsRequest(api.RegionInstanceGroupsSetNamedPo
rtsRequest o) { | 6627 checkRegionInstanceGroupsSetNamedPortsRequest(api.RegionInstanceGroupsSetNamedPo
rtsRequest o) { |
| 6592 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; | 6628 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; |
| 6593 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { | 6629 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { |
| 6594 unittest.expect(o.fingerprint, unittest.equals('foo')); | 6630 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 6595 checkUnnamed2323(o.namedPorts); | 6631 checkUnnamed2358(o.namedPorts); |
| 6596 } | 6632 } |
| 6597 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; | 6633 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; |
| 6598 } | 6634 } |
| 6599 | 6635 |
| 6600 buildUnnamed2324() { | 6636 buildUnnamed2359() { |
| 6601 var o = new core.List<api.Region>(); | 6637 var o = new core.List<api.Region>(); |
| 6602 o.add(buildRegion()); | 6638 o.add(buildRegion()); |
| 6603 o.add(buildRegion()); | 6639 o.add(buildRegion()); |
| 6604 return o; | 6640 return o; |
| 6605 } | 6641 } |
| 6606 | 6642 |
| 6607 checkUnnamed2324(core.List<api.Region> o) { | 6643 checkUnnamed2359(core.List<api.Region> o) { |
| 6608 unittest.expect(o, unittest.hasLength(2)); | 6644 unittest.expect(o, unittest.hasLength(2)); |
| 6609 checkRegion(o[0]); | 6645 checkRegion(o[0]); |
| 6610 checkRegion(o[1]); | 6646 checkRegion(o[1]); |
| 6611 } | 6647 } |
| 6612 | 6648 |
| 6613 core.int buildCounterRegionList = 0; | 6649 core.int buildCounterRegionList = 0; |
| 6614 buildRegionList() { | 6650 buildRegionList() { |
| 6615 var o = new api.RegionList(); | 6651 var o = new api.RegionList(); |
| 6616 buildCounterRegionList++; | 6652 buildCounterRegionList++; |
| 6617 if (buildCounterRegionList < 3) { | 6653 if (buildCounterRegionList < 3) { |
| 6618 o.id = "foo"; | 6654 o.id = "foo"; |
| 6619 o.items = buildUnnamed2324(); | 6655 o.items = buildUnnamed2359(); |
| 6620 o.kind = "foo"; | 6656 o.kind = "foo"; |
| 6621 o.nextPageToken = "foo"; | 6657 o.nextPageToken = "foo"; |
| 6622 o.selfLink = "foo"; | 6658 o.selfLink = "foo"; |
| 6623 } | 6659 } |
| 6624 buildCounterRegionList--; | 6660 buildCounterRegionList--; |
| 6625 return o; | 6661 return o; |
| 6626 } | 6662 } |
| 6627 | 6663 |
| 6628 checkRegionList(api.RegionList o) { | 6664 checkRegionList(api.RegionList o) { |
| 6629 buildCounterRegionList++; | 6665 buildCounterRegionList++; |
| 6630 if (buildCounterRegionList < 3) { | 6666 if (buildCounterRegionList < 3) { |
| 6631 unittest.expect(o.id, unittest.equals('foo')); | 6667 unittest.expect(o.id, unittest.equals('foo')); |
| 6632 checkUnnamed2324(o.items); | 6668 checkUnnamed2359(o.items); |
| 6633 unittest.expect(o.kind, unittest.equals('foo')); | 6669 unittest.expect(o.kind, unittest.equals('foo')); |
| 6634 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6670 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6635 unittest.expect(o.selfLink, unittest.equals('foo')); | 6671 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6636 } | 6672 } |
| 6637 buildCounterRegionList--; | 6673 buildCounterRegionList--; |
| 6638 } | 6674 } |
| 6639 | 6675 |
| 6640 core.int buildCounterResourceCommitment = 0; | 6676 core.int buildCounterResourceCommitment = 0; |
| 6641 buildResourceCommitment() { | 6677 buildResourceCommitment() { |
| 6642 var o = new api.ResourceCommitment(); | 6678 var o = new api.ResourceCommitment(); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6670 } | 6706 } |
| 6671 | 6707 |
| 6672 checkResourceGroupReference(api.ResourceGroupReference o) { | 6708 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 6673 buildCounterResourceGroupReference++; | 6709 buildCounterResourceGroupReference++; |
| 6674 if (buildCounterResourceGroupReference < 3) { | 6710 if (buildCounterResourceGroupReference < 3) { |
| 6675 unittest.expect(o.group, unittest.equals('foo')); | 6711 unittest.expect(o.group, unittest.equals('foo')); |
| 6676 } | 6712 } |
| 6677 buildCounterResourceGroupReference--; | 6713 buildCounterResourceGroupReference--; |
| 6678 } | 6714 } |
| 6679 | 6715 |
| 6680 buildUnnamed2325() { | 6716 buildUnnamed2360() { |
| 6681 var o = new core.List<core.String>(); | 6717 var o = new core.List<core.String>(); |
| 6682 o.add("foo"); | 6718 o.add("foo"); |
| 6683 o.add("foo"); | 6719 o.add("foo"); |
| 6684 return o; | 6720 return o; |
| 6685 } | 6721 } |
| 6686 | 6722 |
| 6687 checkUnnamed2325(core.List<core.String> o) { | 6723 checkUnnamed2360(core.List<core.String> o) { |
| 6688 unittest.expect(o, unittest.hasLength(2)); | 6724 unittest.expect(o, unittest.hasLength(2)); |
| 6689 unittest.expect(o[0], unittest.equals('foo')); | 6725 unittest.expect(o[0], unittest.equals('foo')); |
| 6690 unittest.expect(o[1], unittest.equals('foo')); | 6726 unittest.expect(o[1], unittest.equals('foo')); |
| 6691 } | 6727 } |
| 6692 | 6728 |
| 6693 core.int buildCounterRouteWarningsData = 0; | 6729 core.int buildCounterRouteWarningsData = 0; |
| 6694 buildRouteWarningsData() { | 6730 buildRouteWarningsData() { |
| 6695 var o = new api.RouteWarningsData(); | 6731 var o = new api.RouteWarningsData(); |
| 6696 buildCounterRouteWarningsData++; | 6732 buildCounterRouteWarningsData++; |
| 6697 if (buildCounterRouteWarningsData < 3) { | 6733 if (buildCounterRouteWarningsData < 3) { |
| 6698 o.key = "foo"; | 6734 o.key = "foo"; |
| 6699 o.value = "foo"; | 6735 o.value = "foo"; |
| 6700 } | 6736 } |
| 6701 buildCounterRouteWarningsData--; | 6737 buildCounterRouteWarningsData--; |
| 6702 return o; | 6738 return o; |
| 6703 } | 6739 } |
| 6704 | 6740 |
| 6705 checkRouteWarningsData(api.RouteWarningsData o) { | 6741 checkRouteWarningsData(api.RouteWarningsData o) { |
| 6706 buildCounterRouteWarningsData++; | 6742 buildCounterRouteWarningsData++; |
| 6707 if (buildCounterRouteWarningsData < 3) { | 6743 if (buildCounterRouteWarningsData < 3) { |
| 6708 unittest.expect(o.key, unittest.equals('foo')); | 6744 unittest.expect(o.key, unittest.equals('foo')); |
| 6709 unittest.expect(o.value, unittest.equals('foo')); | 6745 unittest.expect(o.value, unittest.equals('foo')); |
| 6710 } | 6746 } |
| 6711 buildCounterRouteWarningsData--; | 6747 buildCounterRouteWarningsData--; |
| 6712 } | 6748 } |
| 6713 | 6749 |
| 6714 buildUnnamed2326() { | 6750 buildUnnamed2361() { |
| 6715 var o = new core.List<api.RouteWarningsData>(); | 6751 var o = new core.List<api.RouteWarningsData>(); |
| 6716 o.add(buildRouteWarningsData()); | 6752 o.add(buildRouteWarningsData()); |
| 6717 o.add(buildRouteWarningsData()); | 6753 o.add(buildRouteWarningsData()); |
| 6718 return o; | 6754 return o; |
| 6719 } | 6755 } |
| 6720 | 6756 |
| 6721 checkUnnamed2326(core.List<api.RouteWarningsData> o) { | 6757 checkUnnamed2361(core.List<api.RouteWarningsData> o) { |
| 6722 unittest.expect(o, unittest.hasLength(2)); | 6758 unittest.expect(o, unittest.hasLength(2)); |
| 6723 checkRouteWarningsData(o[0]); | 6759 checkRouteWarningsData(o[0]); |
| 6724 checkRouteWarningsData(o[1]); | 6760 checkRouteWarningsData(o[1]); |
| 6725 } | 6761 } |
| 6726 | 6762 |
| 6727 core.int buildCounterRouteWarnings = 0; | 6763 core.int buildCounterRouteWarnings = 0; |
| 6728 buildRouteWarnings() { | 6764 buildRouteWarnings() { |
| 6729 var o = new api.RouteWarnings(); | 6765 var o = new api.RouteWarnings(); |
| 6730 buildCounterRouteWarnings++; | 6766 buildCounterRouteWarnings++; |
| 6731 if (buildCounterRouteWarnings < 3) { | 6767 if (buildCounterRouteWarnings < 3) { |
| 6732 o.code = "foo"; | 6768 o.code = "foo"; |
| 6733 o.data = buildUnnamed2326(); | 6769 o.data = buildUnnamed2361(); |
| 6734 o.message = "foo"; | 6770 o.message = "foo"; |
| 6735 } | 6771 } |
| 6736 buildCounterRouteWarnings--; | 6772 buildCounterRouteWarnings--; |
| 6737 return o; | 6773 return o; |
| 6738 } | 6774 } |
| 6739 | 6775 |
| 6740 checkRouteWarnings(api.RouteWarnings o) { | 6776 checkRouteWarnings(api.RouteWarnings o) { |
| 6741 buildCounterRouteWarnings++; | 6777 buildCounterRouteWarnings++; |
| 6742 if (buildCounterRouteWarnings < 3) { | 6778 if (buildCounterRouteWarnings < 3) { |
| 6743 unittest.expect(o.code, unittest.equals('foo')); | 6779 unittest.expect(o.code, unittest.equals('foo')); |
| 6744 checkUnnamed2326(o.data); | 6780 checkUnnamed2361(o.data); |
| 6745 unittest.expect(o.message, unittest.equals('foo')); | 6781 unittest.expect(o.message, unittest.equals('foo')); |
| 6746 } | 6782 } |
| 6747 buildCounterRouteWarnings--; | 6783 buildCounterRouteWarnings--; |
| 6748 } | 6784 } |
| 6749 | 6785 |
| 6750 buildUnnamed2327() { | 6786 buildUnnamed2362() { |
| 6751 var o = new core.List<api.RouteWarnings>(); | 6787 var o = new core.List<api.RouteWarnings>(); |
| 6752 o.add(buildRouteWarnings()); | 6788 o.add(buildRouteWarnings()); |
| 6753 o.add(buildRouteWarnings()); | 6789 o.add(buildRouteWarnings()); |
| 6754 return o; | 6790 return o; |
| 6755 } | 6791 } |
| 6756 | 6792 |
| 6757 checkUnnamed2327(core.List<api.RouteWarnings> o) { | 6793 checkUnnamed2362(core.List<api.RouteWarnings> o) { |
| 6758 unittest.expect(o, unittest.hasLength(2)); | 6794 unittest.expect(o, unittest.hasLength(2)); |
| 6759 checkRouteWarnings(o[0]); | 6795 checkRouteWarnings(o[0]); |
| 6760 checkRouteWarnings(o[1]); | 6796 checkRouteWarnings(o[1]); |
| 6761 } | 6797 } |
| 6762 | 6798 |
| 6763 core.int buildCounterRoute = 0; | 6799 core.int buildCounterRoute = 0; |
| 6764 buildRoute() { | 6800 buildRoute() { |
| 6765 var o = new api.Route(); | 6801 var o = new api.Route(); |
| 6766 buildCounterRoute++; | 6802 buildCounterRoute++; |
| 6767 if (buildCounterRoute < 3) { | 6803 if (buildCounterRoute < 3) { |
| 6768 o.creationTimestamp = "foo"; | 6804 o.creationTimestamp = "foo"; |
| 6769 o.description = "foo"; | 6805 o.description = "foo"; |
| 6770 o.destRange = "foo"; | 6806 o.destRange = "foo"; |
| 6771 o.id = "foo"; | 6807 o.id = "foo"; |
| 6772 o.kind = "foo"; | 6808 o.kind = "foo"; |
| 6773 o.name = "foo"; | 6809 o.name = "foo"; |
| 6774 o.network = "foo"; | 6810 o.network = "foo"; |
| 6775 o.nextHopGateway = "foo"; | 6811 o.nextHopGateway = "foo"; |
| 6776 o.nextHopInstance = "foo"; | 6812 o.nextHopInstance = "foo"; |
| 6777 o.nextHopIp = "foo"; | 6813 o.nextHopIp = "foo"; |
| 6778 o.nextHopNetwork = "foo"; | 6814 o.nextHopNetwork = "foo"; |
| 6779 o.nextHopPeering = "foo"; | 6815 o.nextHopPeering = "foo"; |
| 6780 o.nextHopVpnTunnel = "foo"; | 6816 o.nextHopVpnTunnel = "foo"; |
| 6781 o.priority = 42; | 6817 o.priority = 42; |
| 6782 o.selfLink = "foo"; | 6818 o.selfLink = "foo"; |
| 6783 o.tags = buildUnnamed2325(); | 6819 o.tags = buildUnnamed2360(); |
| 6784 o.warnings = buildUnnamed2327(); | 6820 o.warnings = buildUnnamed2362(); |
| 6785 } | 6821 } |
| 6786 buildCounterRoute--; | 6822 buildCounterRoute--; |
| 6787 return o; | 6823 return o; |
| 6788 } | 6824 } |
| 6789 | 6825 |
| 6790 checkRoute(api.Route o) { | 6826 checkRoute(api.Route o) { |
| 6791 buildCounterRoute++; | 6827 buildCounterRoute++; |
| 6792 if (buildCounterRoute < 3) { | 6828 if (buildCounterRoute < 3) { |
| 6793 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6829 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6794 unittest.expect(o.description, unittest.equals('foo')); | 6830 unittest.expect(o.description, unittest.equals('foo')); |
| 6795 unittest.expect(o.destRange, unittest.equals('foo')); | 6831 unittest.expect(o.destRange, unittest.equals('foo')); |
| 6796 unittest.expect(o.id, unittest.equals('foo')); | 6832 unittest.expect(o.id, unittest.equals('foo')); |
| 6797 unittest.expect(o.kind, unittest.equals('foo')); | 6833 unittest.expect(o.kind, unittest.equals('foo')); |
| 6798 unittest.expect(o.name, unittest.equals('foo')); | 6834 unittest.expect(o.name, unittest.equals('foo')); |
| 6799 unittest.expect(o.network, unittest.equals('foo')); | 6835 unittest.expect(o.network, unittest.equals('foo')); |
| 6800 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 6836 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 6801 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 6837 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 6802 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 6838 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 6803 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 6839 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 6804 unittest.expect(o.nextHopPeering, unittest.equals('foo')); | 6840 unittest.expect(o.nextHopPeering, unittest.equals('foo')); |
| 6805 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 6841 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 6806 unittest.expect(o.priority, unittest.equals(42)); | 6842 unittest.expect(o.priority, unittest.equals(42)); |
| 6807 unittest.expect(o.selfLink, unittest.equals('foo')); | 6843 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6808 checkUnnamed2325(o.tags); | 6844 checkUnnamed2360(o.tags); |
| 6809 checkUnnamed2327(o.warnings); | 6845 checkUnnamed2362(o.warnings); |
| 6810 } | 6846 } |
| 6811 buildCounterRoute--; | 6847 buildCounterRoute--; |
| 6812 } | 6848 } |
| 6813 | 6849 |
| 6814 buildUnnamed2328() { | 6850 buildUnnamed2363() { |
| 6815 var o = new core.List<api.Route>(); | 6851 var o = new core.List<api.Route>(); |
| 6816 o.add(buildRoute()); | 6852 o.add(buildRoute()); |
| 6817 o.add(buildRoute()); | 6853 o.add(buildRoute()); |
| 6818 return o; | 6854 return o; |
| 6819 } | 6855 } |
| 6820 | 6856 |
| 6821 checkUnnamed2328(core.List<api.Route> o) { | 6857 checkUnnamed2363(core.List<api.Route> o) { |
| 6822 unittest.expect(o, unittest.hasLength(2)); | 6858 unittest.expect(o, unittest.hasLength(2)); |
| 6823 checkRoute(o[0]); | 6859 checkRoute(o[0]); |
| 6824 checkRoute(o[1]); | 6860 checkRoute(o[1]); |
| 6825 } | 6861 } |
| 6826 | 6862 |
| 6827 core.int buildCounterRouteList = 0; | 6863 core.int buildCounterRouteList = 0; |
| 6828 buildRouteList() { | 6864 buildRouteList() { |
| 6829 var o = new api.RouteList(); | 6865 var o = new api.RouteList(); |
| 6830 buildCounterRouteList++; | 6866 buildCounterRouteList++; |
| 6831 if (buildCounterRouteList < 3) { | 6867 if (buildCounterRouteList < 3) { |
| 6832 o.id = "foo"; | 6868 o.id = "foo"; |
| 6833 o.items = buildUnnamed2328(); | 6869 o.items = buildUnnamed2363(); |
| 6834 o.kind = "foo"; | 6870 o.kind = "foo"; |
| 6835 o.nextPageToken = "foo"; | 6871 o.nextPageToken = "foo"; |
| 6836 o.selfLink = "foo"; | 6872 o.selfLink = "foo"; |
| 6837 } | 6873 } |
| 6838 buildCounterRouteList--; | 6874 buildCounterRouteList--; |
| 6839 return o; | 6875 return o; |
| 6840 } | 6876 } |
| 6841 | 6877 |
| 6842 checkRouteList(api.RouteList o) { | 6878 checkRouteList(api.RouteList o) { |
| 6843 buildCounterRouteList++; | 6879 buildCounterRouteList++; |
| 6844 if (buildCounterRouteList < 3) { | 6880 if (buildCounterRouteList < 3) { |
| 6845 unittest.expect(o.id, unittest.equals('foo')); | 6881 unittest.expect(o.id, unittest.equals('foo')); |
| 6846 checkUnnamed2328(o.items); | 6882 checkUnnamed2363(o.items); |
| 6847 unittest.expect(o.kind, unittest.equals('foo')); | 6883 unittest.expect(o.kind, unittest.equals('foo')); |
| 6848 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6884 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6849 unittest.expect(o.selfLink, unittest.equals('foo')); | 6885 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6850 } | 6886 } |
| 6851 buildCounterRouteList--; | 6887 buildCounterRouteList--; |
| 6852 } | 6888 } |
| 6853 | 6889 |
| 6854 buildUnnamed2329() { | 6890 buildUnnamed2364() { |
| 6855 var o = new core.List<api.RouterBgpPeer>(); | 6891 var o = new core.List<api.RouterBgpPeer>(); |
| 6856 o.add(buildRouterBgpPeer()); | 6892 o.add(buildRouterBgpPeer()); |
| 6857 o.add(buildRouterBgpPeer()); | 6893 o.add(buildRouterBgpPeer()); |
| 6858 return o; | 6894 return o; |
| 6859 } | 6895 } |
| 6860 | 6896 |
| 6861 checkUnnamed2329(core.List<api.RouterBgpPeer> o) { | 6897 checkUnnamed2364(core.List<api.RouterBgpPeer> o) { |
| 6862 unittest.expect(o, unittest.hasLength(2)); | 6898 unittest.expect(o, unittest.hasLength(2)); |
| 6863 checkRouterBgpPeer(o[0]); | 6899 checkRouterBgpPeer(o[0]); |
| 6864 checkRouterBgpPeer(o[1]); | 6900 checkRouterBgpPeer(o[1]); |
| 6865 } | 6901 } |
| 6866 | 6902 |
| 6867 buildUnnamed2330() { | 6903 buildUnnamed2365() { |
| 6868 var o = new core.List<api.RouterInterface>(); | 6904 var o = new core.List<api.RouterInterface>(); |
| 6869 o.add(buildRouterInterface()); | 6905 o.add(buildRouterInterface()); |
| 6870 o.add(buildRouterInterface()); | 6906 o.add(buildRouterInterface()); |
| 6871 return o; | 6907 return o; |
| 6872 } | 6908 } |
| 6873 | 6909 |
| 6874 checkUnnamed2330(core.List<api.RouterInterface> o) { | 6910 checkUnnamed2365(core.List<api.RouterInterface> o) { |
| 6875 unittest.expect(o, unittest.hasLength(2)); | 6911 unittest.expect(o, unittest.hasLength(2)); |
| 6876 checkRouterInterface(o[0]); | 6912 checkRouterInterface(o[0]); |
| 6877 checkRouterInterface(o[1]); | 6913 checkRouterInterface(o[1]); |
| 6878 } | 6914 } |
| 6879 | 6915 |
| 6880 core.int buildCounterRouter = 0; | 6916 core.int buildCounterRouter = 0; |
| 6881 buildRouter() { | 6917 buildRouter() { |
| 6882 var o = new api.Router(); | 6918 var o = new api.Router(); |
| 6883 buildCounterRouter++; | 6919 buildCounterRouter++; |
| 6884 if (buildCounterRouter < 3) { | 6920 if (buildCounterRouter < 3) { |
| 6885 o.bgp = buildRouterBgp(); | 6921 o.bgp = buildRouterBgp(); |
| 6886 o.bgpPeers = buildUnnamed2329(); | 6922 o.bgpPeers = buildUnnamed2364(); |
| 6887 o.creationTimestamp = "foo"; | 6923 o.creationTimestamp = "foo"; |
| 6888 o.description = "foo"; | 6924 o.description = "foo"; |
| 6889 o.id = "foo"; | 6925 o.id = "foo"; |
| 6890 o.interfaces = buildUnnamed2330(); | 6926 o.interfaces = buildUnnamed2365(); |
| 6891 o.kind = "foo"; | 6927 o.kind = "foo"; |
| 6892 o.name = "foo"; | 6928 o.name = "foo"; |
| 6893 o.network = "foo"; | 6929 o.network = "foo"; |
| 6894 o.region = "foo"; | 6930 o.region = "foo"; |
| 6895 o.selfLink = "foo"; | 6931 o.selfLink = "foo"; |
| 6896 } | 6932 } |
| 6897 buildCounterRouter--; | 6933 buildCounterRouter--; |
| 6898 return o; | 6934 return o; |
| 6899 } | 6935 } |
| 6900 | 6936 |
| 6901 checkRouter(api.Router o) { | 6937 checkRouter(api.Router o) { |
| 6902 buildCounterRouter++; | 6938 buildCounterRouter++; |
| 6903 if (buildCounterRouter < 3) { | 6939 if (buildCounterRouter < 3) { |
| 6904 checkRouterBgp(o.bgp); | 6940 checkRouterBgp(o.bgp); |
| 6905 checkUnnamed2329(o.bgpPeers); | 6941 checkUnnamed2364(o.bgpPeers); |
| 6906 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6942 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6907 unittest.expect(o.description, unittest.equals('foo')); | 6943 unittest.expect(o.description, unittest.equals('foo')); |
| 6908 unittest.expect(o.id, unittest.equals('foo')); | 6944 unittest.expect(o.id, unittest.equals('foo')); |
| 6909 checkUnnamed2330(o.interfaces); | 6945 checkUnnamed2365(o.interfaces); |
| 6910 unittest.expect(o.kind, unittest.equals('foo')); | 6946 unittest.expect(o.kind, unittest.equals('foo')); |
| 6911 unittest.expect(o.name, unittest.equals('foo')); | 6947 unittest.expect(o.name, unittest.equals('foo')); |
| 6912 unittest.expect(o.network, unittest.equals('foo')); | 6948 unittest.expect(o.network, unittest.equals('foo')); |
| 6913 unittest.expect(o.region, unittest.equals('foo')); | 6949 unittest.expect(o.region, unittest.equals('foo')); |
| 6914 unittest.expect(o.selfLink, unittest.equals('foo')); | 6950 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6915 } | 6951 } |
| 6916 buildCounterRouter--; | 6952 buildCounterRouter--; |
| 6917 } | 6953 } |
| 6918 | 6954 |
| 6919 buildUnnamed2331() { | 6955 buildUnnamed2366() { |
| 6920 var o = new core.Map<core.String, api.RoutersScopedList>(); | 6956 var o = new core.Map<core.String, api.RoutersScopedList>(); |
| 6921 o["x"] = buildRoutersScopedList(); | 6957 o["x"] = buildRoutersScopedList(); |
| 6922 o["y"] = buildRoutersScopedList(); | 6958 o["y"] = buildRoutersScopedList(); |
| 6923 return o; | 6959 return o; |
| 6924 } | 6960 } |
| 6925 | 6961 |
| 6926 checkUnnamed2331(core.Map<core.String, api.RoutersScopedList> o) { | 6962 checkUnnamed2366(core.Map<core.String, api.RoutersScopedList> o) { |
| 6927 unittest.expect(o, unittest.hasLength(2)); | 6963 unittest.expect(o, unittest.hasLength(2)); |
| 6928 checkRoutersScopedList(o["x"]); | 6964 checkRoutersScopedList(o["x"]); |
| 6929 checkRoutersScopedList(o["y"]); | 6965 checkRoutersScopedList(o["y"]); |
| 6930 } | 6966 } |
| 6931 | 6967 |
| 6932 core.int buildCounterRouterAggregatedList = 0; | 6968 core.int buildCounterRouterAggregatedList = 0; |
| 6933 buildRouterAggregatedList() { | 6969 buildRouterAggregatedList() { |
| 6934 var o = new api.RouterAggregatedList(); | 6970 var o = new api.RouterAggregatedList(); |
| 6935 buildCounterRouterAggregatedList++; | 6971 buildCounterRouterAggregatedList++; |
| 6936 if (buildCounterRouterAggregatedList < 3) { | 6972 if (buildCounterRouterAggregatedList < 3) { |
| 6937 o.id = "foo"; | 6973 o.id = "foo"; |
| 6938 o.items = buildUnnamed2331(); | 6974 o.items = buildUnnamed2366(); |
| 6939 o.kind = "foo"; | 6975 o.kind = "foo"; |
| 6940 o.nextPageToken = "foo"; | 6976 o.nextPageToken = "foo"; |
| 6941 o.selfLink = "foo"; | 6977 o.selfLink = "foo"; |
| 6942 } | 6978 } |
| 6943 buildCounterRouterAggregatedList--; | 6979 buildCounterRouterAggregatedList--; |
| 6944 return o; | 6980 return o; |
| 6945 } | 6981 } |
| 6946 | 6982 |
| 6947 checkRouterAggregatedList(api.RouterAggregatedList o) { | 6983 checkRouterAggregatedList(api.RouterAggregatedList o) { |
| 6948 buildCounterRouterAggregatedList++; | 6984 buildCounterRouterAggregatedList++; |
| 6949 if (buildCounterRouterAggregatedList < 3) { | 6985 if (buildCounterRouterAggregatedList < 3) { |
| 6950 unittest.expect(o.id, unittest.equals('foo')); | 6986 unittest.expect(o.id, unittest.equals('foo')); |
| 6951 checkUnnamed2331(o.items); | 6987 checkUnnamed2366(o.items); |
| 6952 unittest.expect(o.kind, unittest.equals('foo')); | 6988 unittest.expect(o.kind, unittest.equals('foo')); |
| 6953 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6989 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6954 unittest.expect(o.selfLink, unittest.equals('foo')); | 6990 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6955 } | 6991 } |
| 6956 buildCounterRouterAggregatedList--; | 6992 buildCounterRouterAggregatedList--; |
| 6957 } | 6993 } |
| 6958 | 6994 |
| 6959 core.int buildCounterRouterBgp = 0; | 6995 core.int buildCounterRouterBgp = 0; |
| 6960 buildRouterBgp() { | 6996 buildRouterBgp() { |
| 6961 var o = new api.RouterBgp(); | 6997 var o = new api.RouterBgp(); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7020 checkRouterInterface(api.RouterInterface o) { | 7056 checkRouterInterface(api.RouterInterface o) { |
| 7021 buildCounterRouterInterface++; | 7057 buildCounterRouterInterface++; |
| 7022 if (buildCounterRouterInterface < 3) { | 7058 if (buildCounterRouterInterface < 3) { |
| 7023 unittest.expect(o.ipRange, unittest.equals('foo')); | 7059 unittest.expect(o.ipRange, unittest.equals('foo')); |
| 7024 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 7060 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 7025 unittest.expect(o.name, unittest.equals('foo')); | 7061 unittest.expect(o.name, unittest.equals('foo')); |
| 7026 } | 7062 } |
| 7027 buildCounterRouterInterface--; | 7063 buildCounterRouterInterface--; |
| 7028 } | 7064 } |
| 7029 | 7065 |
| 7030 buildUnnamed2332() { | 7066 buildUnnamed2367() { |
| 7031 var o = new core.List<api.Router>(); | 7067 var o = new core.List<api.Router>(); |
| 7032 o.add(buildRouter()); | 7068 o.add(buildRouter()); |
| 7033 o.add(buildRouter()); | 7069 o.add(buildRouter()); |
| 7034 return o; | 7070 return o; |
| 7035 } | 7071 } |
| 7036 | 7072 |
| 7037 checkUnnamed2332(core.List<api.Router> o) { | 7073 checkUnnamed2367(core.List<api.Router> o) { |
| 7038 unittest.expect(o, unittest.hasLength(2)); | 7074 unittest.expect(o, unittest.hasLength(2)); |
| 7039 checkRouter(o[0]); | 7075 checkRouter(o[0]); |
| 7040 checkRouter(o[1]); | 7076 checkRouter(o[1]); |
| 7041 } | 7077 } |
| 7042 | 7078 |
| 7043 core.int buildCounterRouterList = 0; | 7079 core.int buildCounterRouterList = 0; |
| 7044 buildRouterList() { | 7080 buildRouterList() { |
| 7045 var o = new api.RouterList(); | 7081 var o = new api.RouterList(); |
| 7046 buildCounterRouterList++; | 7082 buildCounterRouterList++; |
| 7047 if (buildCounterRouterList < 3) { | 7083 if (buildCounterRouterList < 3) { |
| 7048 o.id = "foo"; | 7084 o.id = "foo"; |
| 7049 o.items = buildUnnamed2332(); | 7085 o.items = buildUnnamed2367(); |
| 7050 o.kind = "foo"; | 7086 o.kind = "foo"; |
| 7051 o.nextPageToken = "foo"; | 7087 o.nextPageToken = "foo"; |
| 7052 o.selfLink = "foo"; | 7088 o.selfLink = "foo"; |
| 7053 } | 7089 } |
| 7054 buildCounterRouterList--; | 7090 buildCounterRouterList--; |
| 7055 return o; | 7091 return o; |
| 7056 } | 7092 } |
| 7057 | 7093 |
| 7058 checkRouterList(api.RouterList o) { | 7094 checkRouterList(api.RouterList o) { |
| 7059 buildCounterRouterList++; | 7095 buildCounterRouterList++; |
| 7060 if (buildCounterRouterList < 3) { | 7096 if (buildCounterRouterList < 3) { |
| 7061 unittest.expect(o.id, unittest.equals('foo')); | 7097 unittest.expect(o.id, unittest.equals('foo')); |
| 7062 checkUnnamed2332(o.items); | 7098 checkUnnamed2367(o.items); |
| 7063 unittest.expect(o.kind, unittest.equals('foo')); | 7099 unittest.expect(o.kind, unittest.equals('foo')); |
| 7064 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7100 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7065 unittest.expect(o.selfLink, unittest.equals('foo')); | 7101 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7066 } | 7102 } |
| 7067 buildCounterRouterList--; | 7103 buildCounterRouterList--; |
| 7068 } | 7104 } |
| 7069 | 7105 |
| 7070 buildUnnamed2333() { | 7106 buildUnnamed2368() { |
| 7071 var o = new core.List<api.Route>(); | 7107 var o = new core.List<api.Route>(); |
| 7072 o.add(buildRoute()); | 7108 o.add(buildRoute()); |
| 7073 o.add(buildRoute()); | 7109 o.add(buildRoute()); |
| 7074 return o; | 7110 return o; |
| 7075 } | 7111 } |
| 7076 | 7112 |
| 7077 checkUnnamed2333(core.List<api.Route> o) { | 7113 checkUnnamed2368(core.List<api.Route> o) { |
| 7078 unittest.expect(o, unittest.hasLength(2)); | 7114 unittest.expect(o, unittest.hasLength(2)); |
| 7079 checkRoute(o[0]); | 7115 checkRoute(o[0]); |
| 7080 checkRoute(o[1]); | 7116 checkRoute(o[1]); |
| 7081 } | 7117 } |
| 7082 | 7118 |
| 7083 buildUnnamed2334() { | 7119 buildUnnamed2369() { |
| 7084 var o = new core.List<api.Route>(); | 7120 var o = new core.List<api.Route>(); |
| 7085 o.add(buildRoute()); | 7121 o.add(buildRoute()); |
| 7086 o.add(buildRoute()); | 7122 o.add(buildRoute()); |
| 7087 return o; | 7123 return o; |
| 7088 } | 7124 } |
| 7089 | 7125 |
| 7090 checkUnnamed2334(core.List<api.Route> o) { | 7126 checkUnnamed2369(core.List<api.Route> o) { |
| 7091 unittest.expect(o, unittest.hasLength(2)); | 7127 unittest.expect(o, unittest.hasLength(2)); |
| 7092 checkRoute(o[0]); | 7128 checkRoute(o[0]); |
| 7093 checkRoute(o[1]); | 7129 checkRoute(o[1]); |
| 7094 } | 7130 } |
| 7095 | 7131 |
| 7096 buildUnnamed2335() { | 7132 buildUnnamed2370() { |
| 7097 var o = new core.List<api.RouterStatusBgpPeerStatus>(); | 7133 var o = new core.List<api.RouterStatusBgpPeerStatus>(); |
| 7098 o.add(buildRouterStatusBgpPeerStatus()); | 7134 o.add(buildRouterStatusBgpPeerStatus()); |
| 7099 o.add(buildRouterStatusBgpPeerStatus()); | 7135 o.add(buildRouterStatusBgpPeerStatus()); |
| 7100 return o; | 7136 return o; |
| 7101 } | 7137 } |
| 7102 | 7138 |
| 7103 checkUnnamed2335(core.List<api.RouterStatusBgpPeerStatus> o) { | 7139 checkUnnamed2370(core.List<api.RouterStatusBgpPeerStatus> o) { |
| 7104 unittest.expect(o, unittest.hasLength(2)); | 7140 unittest.expect(o, unittest.hasLength(2)); |
| 7105 checkRouterStatusBgpPeerStatus(o[0]); | 7141 checkRouterStatusBgpPeerStatus(o[0]); |
| 7106 checkRouterStatusBgpPeerStatus(o[1]); | 7142 checkRouterStatusBgpPeerStatus(o[1]); |
| 7107 } | 7143 } |
| 7108 | 7144 |
| 7109 core.int buildCounterRouterStatus = 0; | 7145 core.int buildCounterRouterStatus = 0; |
| 7110 buildRouterStatus() { | 7146 buildRouterStatus() { |
| 7111 var o = new api.RouterStatus(); | 7147 var o = new api.RouterStatus(); |
| 7112 buildCounterRouterStatus++; | 7148 buildCounterRouterStatus++; |
| 7113 if (buildCounterRouterStatus < 3) { | 7149 if (buildCounterRouterStatus < 3) { |
| 7114 o.bestRoutes = buildUnnamed2333(); | 7150 o.bestRoutes = buildUnnamed2368(); |
| 7115 o.bestRoutesForRouter = buildUnnamed2334(); | 7151 o.bestRoutesForRouter = buildUnnamed2369(); |
| 7116 o.bgpPeerStatus = buildUnnamed2335(); | 7152 o.bgpPeerStatus = buildUnnamed2370(); |
| 7117 o.network = "foo"; | 7153 o.network = "foo"; |
| 7118 } | 7154 } |
| 7119 buildCounterRouterStatus--; | 7155 buildCounterRouterStatus--; |
| 7120 return o; | 7156 return o; |
| 7121 } | 7157 } |
| 7122 | 7158 |
| 7123 checkRouterStatus(api.RouterStatus o) { | 7159 checkRouterStatus(api.RouterStatus o) { |
| 7124 buildCounterRouterStatus++; | 7160 buildCounterRouterStatus++; |
| 7125 if (buildCounterRouterStatus < 3) { | 7161 if (buildCounterRouterStatus < 3) { |
| 7126 checkUnnamed2333(o.bestRoutes); | 7162 checkUnnamed2368(o.bestRoutes); |
| 7127 checkUnnamed2334(o.bestRoutesForRouter); | 7163 checkUnnamed2369(o.bestRoutesForRouter); |
| 7128 checkUnnamed2335(o.bgpPeerStatus); | 7164 checkUnnamed2370(o.bgpPeerStatus); |
| 7129 unittest.expect(o.network, unittest.equals('foo')); | 7165 unittest.expect(o.network, unittest.equals('foo')); |
| 7130 } | 7166 } |
| 7131 buildCounterRouterStatus--; | 7167 buildCounterRouterStatus--; |
| 7132 } | 7168 } |
| 7133 | 7169 |
| 7134 buildUnnamed2336() { | 7170 buildUnnamed2371() { |
| 7135 var o = new core.List<api.Route>(); | 7171 var o = new core.List<api.Route>(); |
| 7136 o.add(buildRoute()); | 7172 o.add(buildRoute()); |
| 7137 o.add(buildRoute()); | 7173 o.add(buildRoute()); |
| 7138 return o; | 7174 return o; |
| 7139 } | 7175 } |
| 7140 | 7176 |
| 7141 checkUnnamed2336(core.List<api.Route> o) { | 7177 checkUnnamed2371(core.List<api.Route> o) { |
| 7142 unittest.expect(o, unittest.hasLength(2)); | 7178 unittest.expect(o, unittest.hasLength(2)); |
| 7143 checkRoute(o[0]); | 7179 checkRoute(o[0]); |
| 7144 checkRoute(o[1]); | 7180 checkRoute(o[1]); |
| 7145 } | 7181 } |
| 7146 | 7182 |
| 7147 core.int buildCounterRouterStatusBgpPeerStatus = 0; | 7183 core.int buildCounterRouterStatusBgpPeerStatus = 0; |
| 7148 buildRouterStatusBgpPeerStatus() { | 7184 buildRouterStatusBgpPeerStatus() { |
| 7149 var o = new api.RouterStatusBgpPeerStatus(); | 7185 var o = new api.RouterStatusBgpPeerStatus(); |
| 7150 buildCounterRouterStatusBgpPeerStatus++; | 7186 buildCounterRouterStatusBgpPeerStatus++; |
| 7151 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 7187 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 7152 o.advertisedRoutes = buildUnnamed2336(); | 7188 o.advertisedRoutes = buildUnnamed2371(); |
| 7153 o.ipAddress = "foo"; | 7189 o.ipAddress = "foo"; |
| 7154 o.linkedVpnTunnel = "foo"; | 7190 o.linkedVpnTunnel = "foo"; |
| 7155 o.name = "foo"; | 7191 o.name = "foo"; |
| 7156 o.numLearnedRoutes = 42; | 7192 o.numLearnedRoutes = 42; |
| 7157 o.peerIpAddress = "foo"; | 7193 o.peerIpAddress = "foo"; |
| 7158 o.state = "foo"; | 7194 o.state = "foo"; |
| 7159 o.status = "foo"; | 7195 o.status = "foo"; |
| 7160 o.uptime = "foo"; | 7196 o.uptime = "foo"; |
| 7161 o.uptimeSeconds = "foo"; | 7197 o.uptimeSeconds = "foo"; |
| 7162 } | 7198 } |
| 7163 buildCounterRouterStatusBgpPeerStatus--; | 7199 buildCounterRouterStatusBgpPeerStatus--; |
| 7164 return o; | 7200 return o; |
| 7165 } | 7201 } |
| 7166 | 7202 |
| 7167 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { | 7203 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { |
| 7168 buildCounterRouterStatusBgpPeerStatus++; | 7204 buildCounterRouterStatusBgpPeerStatus++; |
| 7169 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 7205 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 7170 checkUnnamed2336(o.advertisedRoutes); | 7206 checkUnnamed2371(o.advertisedRoutes); |
| 7171 unittest.expect(o.ipAddress, unittest.equals('foo')); | 7207 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 7172 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 7208 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 7173 unittest.expect(o.name, unittest.equals('foo')); | 7209 unittest.expect(o.name, unittest.equals('foo')); |
| 7174 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); | 7210 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); |
| 7175 unittest.expect(o.peerIpAddress, unittest.equals('foo')); | 7211 unittest.expect(o.peerIpAddress, unittest.equals('foo')); |
| 7176 unittest.expect(o.state, unittest.equals('foo')); | 7212 unittest.expect(o.state, unittest.equals('foo')); |
| 7177 unittest.expect(o.status, unittest.equals('foo')); | 7213 unittest.expect(o.status, unittest.equals('foo')); |
| 7178 unittest.expect(o.uptime, unittest.equals('foo')); | 7214 unittest.expect(o.uptime, unittest.equals('foo')); |
| 7179 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); | 7215 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); |
| 7180 } | 7216 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7214 } | 7250 } |
| 7215 | 7251 |
| 7216 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { | 7252 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { |
| 7217 buildCounterRoutersPreviewResponse++; | 7253 buildCounterRoutersPreviewResponse++; |
| 7218 if (buildCounterRoutersPreviewResponse < 3) { | 7254 if (buildCounterRoutersPreviewResponse < 3) { |
| 7219 checkRouter(o.resource); | 7255 checkRouter(o.resource); |
| 7220 } | 7256 } |
| 7221 buildCounterRoutersPreviewResponse--; | 7257 buildCounterRoutersPreviewResponse--; |
| 7222 } | 7258 } |
| 7223 | 7259 |
| 7224 buildUnnamed2337() { | 7260 buildUnnamed2372() { |
| 7225 var o = new core.List<api.Router>(); | 7261 var o = new core.List<api.Router>(); |
| 7226 o.add(buildRouter()); | 7262 o.add(buildRouter()); |
| 7227 o.add(buildRouter()); | 7263 o.add(buildRouter()); |
| 7228 return o; | 7264 return o; |
| 7229 } | 7265 } |
| 7230 | 7266 |
| 7231 checkUnnamed2337(core.List<api.Router> o) { | 7267 checkUnnamed2372(core.List<api.Router> o) { |
| 7232 unittest.expect(o, unittest.hasLength(2)); | 7268 unittest.expect(o, unittest.hasLength(2)); |
| 7233 checkRouter(o[0]); | 7269 checkRouter(o[0]); |
| 7234 checkRouter(o[1]); | 7270 checkRouter(o[1]); |
| 7235 } | 7271 } |
| 7236 | 7272 |
| 7237 core.int buildCounterRoutersScopedListWarningData = 0; | 7273 core.int buildCounterRoutersScopedListWarningData = 0; |
| 7238 buildRoutersScopedListWarningData() { | 7274 buildRoutersScopedListWarningData() { |
| 7239 var o = new api.RoutersScopedListWarningData(); | 7275 var o = new api.RoutersScopedListWarningData(); |
| 7240 buildCounterRoutersScopedListWarningData++; | 7276 buildCounterRoutersScopedListWarningData++; |
| 7241 if (buildCounterRoutersScopedListWarningData < 3) { | 7277 if (buildCounterRoutersScopedListWarningData < 3) { |
| 7242 o.key = "foo"; | 7278 o.key = "foo"; |
| 7243 o.value = "foo"; | 7279 o.value = "foo"; |
| 7244 } | 7280 } |
| 7245 buildCounterRoutersScopedListWarningData--; | 7281 buildCounterRoutersScopedListWarningData--; |
| 7246 return o; | 7282 return o; |
| 7247 } | 7283 } |
| 7248 | 7284 |
| 7249 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { | 7285 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { |
| 7250 buildCounterRoutersScopedListWarningData++; | 7286 buildCounterRoutersScopedListWarningData++; |
| 7251 if (buildCounterRoutersScopedListWarningData < 3) { | 7287 if (buildCounterRoutersScopedListWarningData < 3) { |
| 7252 unittest.expect(o.key, unittest.equals('foo')); | 7288 unittest.expect(o.key, unittest.equals('foo')); |
| 7253 unittest.expect(o.value, unittest.equals('foo')); | 7289 unittest.expect(o.value, unittest.equals('foo')); |
| 7254 } | 7290 } |
| 7255 buildCounterRoutersScopedListWarningData--; | 7291 buildCounterRoutersScopedListWarningData--; |
| 7256 } | 7292 } |
| 7257 | 7293 |
| 7258 buildUnnamed2338() { | 7294 buildUnnamed2373() { |
| 7259 var o = new core.List<api.RoutersScopedListWarningData>(); | 7295 var o = new core.List<api.RoutersScopedListWarningData>(); |
| 7260 o.add(buildRoutersScopedListWarningData()); | 7296 o.add(buildRoutersScopedListWarningData()); |
| 7261 o.add(buildRoutersScopedListWarningData()); | 7297 o.add(buildRoutersScopedListWarningData()); |
| 7262 return o; | 7298 return o; |
| 7263 } | 7299 } |
| 7264 | 7300 |
| 7265 checkUnnamed2338(core.List<api.RoutersScopedListWarningData> o) { | 7301 checkUnnamed2373(core.List<api.RoutersScopedListWarningData> o) { |
| 7266 unittest.expect(o, unittest.hasLength(2)); | 7302 unittest.expect(o, unittest.hasLength(2)); |
| 7267 checkRoutersScopedListWarningData(o[0]); | 7303 checkRoutersScopedListWarningData(o[0]); |
| 7268 checkRoutersScopedListWarningData(o[1]); | 7304 checkRoutersScopedListWarningData(o[1]); |
| 7269 } | 7305 } |
| 7270 | 7306 |
| 7271 core.int buildCounterRoutersScopedListWarning = 0; | 7307 core.int buildCounterRoutersScopedListWarning = 0; |
| 7272 buildRoutersScopedListWarning() { | 7308 buildRoutersScopedListWarning() { |
| 7273 var o = new api.RoutersScopedListWarning(); | 7309 var o = new api.RoutersScopedListWarning(); |
| 7274 buildCounterRoutersScopedListWarning++; | 7310 buildCounterRoutersScopedListWarning++; |
| 7275 if (buildCounterRoutersScopedListWarning < 3) { | 7311 if (buildCounterRoutersScopedListWarning < 3) { |
| 7276 o.code = "foo"; | 7312 o.code = "foo"; |
| 7277 o.data = buildUnnamed2338(); | 7313 o.data = buildUnnamed2373(); |
| 7278 o.message = "foo"; | 7314 o.message = "foo"; |
| 7279 } | 7315 } |
| 7280 buildCounterRoutersScopedListWarning--; | 7316 buildCounterRoutersScopedListWarning--; |
| 7281 return o; | 7317 return o; |
| 7282 } | 7318 } |
| 7283 | 7319 |
| 7284 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { | 7320 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { |
| 7285 buildCounterRoutersScopedListWarning++; | 7321 buildCounterRoutersScopedListWarning++; |
| 7286 if (buildCounterRoutersScopedListWarning < 3) { | 7322 if (buildCounterRoutersScopedListWarning < 3) { |
| 7287 unittest.expect(o.code, unittest.equals('foo')); | 7323 unittest.expect(o.code, unittest.equals('foo')); |
| 7288 checkUnnamed2338(o.data); | 7324 checkUnnamed2373(o.data); |
| 7289 unittest.expect(o.message, unittest.equals('foo')); | 7325 unittest.expect(o.message, unittest.equals('foo')); |
| 7290 } | 7326 } |
| 7291 buildCounterRoutersScopedListWarning--; | 7327 buildCounterRoutersScopedListWarning--; |
| 7292 } | 7328 } |
| 7293 | 7329 |
| 7294 core.int buildCounterRoutersScopedList = 0; | 7330 core.int buildCounterRoutersScopedList = 0; |
| 7295 buildRoutersScopedList() { | 7331 buildRoutersScopedList() { |
| 7296 var o = new api.RoutersScopedList(); | 7332 var o = new api.RoutersScopedList(); |
| 7297 buildCounterRoutersScopedList++; | 7333 buildCounterRoutersScopedList++; |
| 7298 if (buildCounterRoutersScopedList < 3) { | 7334 if (buildCounterRoutersScopedList < 3) { |
| 7299 o.routers = buildUnnamed2337(); | 7335 o.routers = buildUnnamed2372(); |
| 7300 o.warning = buildRoutersScopedListWarning(); | 7336 o.warning = buildRoutersScopedListWarning(); |
| 7301 } | 7337 } |
| 7302 buildCounterRoutersScopedList--; | 7338 buildCounterRoutersScopedList--; |
| 7303 return o; | 7339 return o; |
| 7304 } | 7340 } |
| 7305 | 7341 |
| 7306 checkRoutersScopedList(api.RoutersScopedList o) { | 7342 checkRoutersScopedList(api.RoutersScopedList o) { |
| 7307 buildCounterRoutersScopedList++; | 7343 buildCounterRoutersScopedList++; |
| 7308 if (buildCounterRoutersScopedList < 3) { | 7344 if (buildCounterRoutersScopedList < 3) { |
| 7309 checkUnnamed2337(o.routers); | 7345 checkUnnamed2372(o.routers); |
| 7310 checkRoutersScopedListWarning(o.warning); | 7346 checkRoutersScopedListWarning(o.warning); |
| 7311 } | 7347 } |
| 7312 buildCounterRoutersScopedList--; | 7348 buildCounterRoutersScopedList--; |
| 7313 } | 7349 } |
| 7314 | 7350 |
| 7315 core.int buildCounterSSLHealthCheck = 0; | 7351 core.int buildCounterSSLHealthCheck = 0; |
| 7316 buildSSLHealthCheck() { | 7352 buildSSLHealthCheck() { |
| 7317 var o = new api.SSLHealthCheck(); | 7353 var o = new api.SSLHealthCheck(); |
| 7318 buildCounterSSLHealthCheck++; | 7354 buildCounterSSLHealthCheck++; |
| 7319 if (buildCounterSSLHealthCheck < 3) { | 7355 if (buildCounterSSLHealthCheck < 3) { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7382 if (buildCounterSerialPortOutput < 3) { | 7418 if (buildCounterSerialPortOutput < 3) { |
| 7383 unittest.expect(o.contents, unittest.equals('foo')); | 7419 unittest.expect(o.contents, unittest.equals('foo')); |
| 7384 unittest.expect(o.kind, unittest.equals('foo')); | 7420 unittest.expect(o.kind, unittest.equals('foo')); |
| 7385 unittest.expect(o.next, unittest.equals('foo')); | 7421 unittest.expect(o.next, unittest.equals('foo')); |
| 7386 unittest.expect(o.selfLink, unittest.equals('foo')); | 7422 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7387 unittest.expect(o.start, unittest.equals('foo')); | 7423 unittest.expect(o.start, unittest.equals('foo')); |
| 7388 } | 7424 } |
| 7389 buildCounterSerialPortOutput--; | 7425 buildCounterSerialPortOutput--; |
| 7390 } | 7426 } |
| 7391 | 7427 |
| 7392 buildUnnamed2339() { | 7428 buildUnnamed2374() { |
| 7393 var o = new core.List<core.String>(); | 7429 var o = new core.List<core.String>(); |
| 7394 o.add("foo"); | 7430 o.add("foo"); |
| 7395 o.add("foo"); | 7431 o.add("foo"); |
| 7396 return o; | 7432 return o; |
| 7397 } | 7433 } |
| 7398 | 7434 |
| 7399 checkUnnamed2339(core.List<core.String> o) { | 7435 checkUnnamed2374(core.List<core.String> o) { |
| 7400 unittest.expect(o, unittest.hasLength(2)); | 7436 unittest.expect(o, unittest.hasLength(2)); |
| 7401 unittest.expect(o[0], unittest.equals('foo')); | 7437 unittest.expect(o[0], unittest.equals('foo')); |
| 7402 unittest.expect(o[1], unittest.equals('foo')); | 7438 unittest.expect(o[1], unittest.equals('foo')); |
| 7403 } | 7439 } |
| 7404 | 7440 |
| 7405 core.int buildCounterServiceAccount = 0; | 7441 core.int buildCounterServiceAccount = 0; |
| 7406 buildServiceAccount() { | 7442 buildServiceAccount() { |
| 7407 var o = new api.ServiceAccount(); | 7443 var o = new api.ServiceAccount(); |
| 7408 buildCounterServiceAccount++; | 7444 buildCounterServiceAccount++; |
| 7409 if (buildCounterServiceAccount < 3) { | 7445 if (buildCounterServiceAccount < 3) { |
| 7410 o.email = "foo"; | 7446 o.email = "foo"; |
| 7411 o.scopes = buildUnnamed2339(); | 7447 o.scopes = buildUnnamed2374(); |
| 7412 } | 7448 } |
| 7413 buildCounterServiceAccount--; | 7449 buildCounterServiceAccount--; |
| 7414 return o; | 7450 return o; |
| 7415 } | 7451 } |
| 7416 | 7452 |
| 7417 checkServiceAccount(api.ServiceAccount o) { | 7453 checkServiceAccount(api.ServiceAccount o) { |
| 7418 buildCounterServiceAccount++; | 7454 buildCounterServiceAccount++; |
| 7419 if (buildCounterServiceAccount < 3) { | 7455 if (buildCounterServiceAccount < 3) { |
| 7420 unittest.expect(o.email, unittest.equals('foo')); | 7456 unittest.expect(o.email, unittest.equals('foo')); |
| 7421 checkUnnamed2339(o.scopes); | 7457 checkUnnamed2374(o.scopes); |
| 7422 } | 7458 } |
| 7423 buildCounterServiceAccount--; | 7459 buildCounterServiceAccount--; |
| 7424 } | 7460 } |
| 7425 | 7461 |
| 7426 buildUnnamed2340() { | 7462 buildUnnamed2375() { |
| 7427 var o = new core.Map<core.String, core.String>(); | 7463 var o = new core.Map<core.String, core.String>(); |
| 7428 o["x"] = "foo"; | 7464 o["x"] = "foo"; |
| 7429 o["y"] = "foo"; | 7465 o["y"] = "foo"; |
| 7430 return o; | 7466 return o; |
| 7431 } | 7467 } |
| 7432 | 7468 |
| 7433 checkUnnamed2340(core.Map<core.String, core.String> o) { | 7469 checkUnnamed2375(core.Map<core.String, core.String> o) { |
| 7434 unittest.expect(o, unittest.hasLength(2)); | 7470 unittest.expect(o, unittest.hasLength(2)); |
| 7435 unittest.expect(o["x"], unittest.equals('foo')); | 7471 unittest.expect(o["x"], unittest.equals('foo')); |
| 7436 unittest.expect(o["y"], unittest.equals('foo')); | 7472 unittest.expect(o["y"], unittest.equals('foo')); |
| 7437 } | 7473 } |
| 7438 | 7474 |
| 7439 buildUnnamed2341() { | 7475 buildUnnamed2376() { |
| 7440 var o = new core.List<core.String>(); | 7476 var o = new core.List<core.String>(); |
| 7441 o.add("foo"); | 7477 o.add("foo"); |
| 7442 o.add("foo"); | 7478 o.add("foo"); |
| 7443 return o; | 7479 return o; |
| 7444 } | 7480 } |
| 7445 | 7481 |
| 7446 checkUnnamed2341(core.List<core.String> o) { | 7482 checkUnnamed2376(core.List<core.String> o) { |
| 7447 unittest.expect(o, unittest.hasLength(2)); | 7483 unittest.expect(o, unittest.hasLength(2)); |
| 7448 unittest.expect(o[0], unittest.equals('foo')); | 7484 unittest.expect(o[0], unittest.equals('foo')); |
| 7449 unittest.expect(o[1], unittest.equals('foo')); | 7485 unittest.expect(o[1], unittest.equals('foo')); |
| 7450 } | 7486 } |
| 7451 | 7487 |
| 7452 core.int buildCounterSnapshot = 0; | 7488 core.int buildCounterSnapshot = 0; |
| 7453 buildSnapshot() { | 7489 buildSnapshot() { |
| 7454 var o = new api.Snapshot(); | 7490 var o = new api.Snapshot(); |
| 7455 buildCounterSnapshot++; | 7491 buildCounterSnapshot++; |
| 7456 if (buildCounterSnapshot < 3) { | 7492 if (buildCounterSnapshot < 3) { |
| 7457 o.creationTimestamp = "foo"; | 7493 o.creationTimestamp = "foo"; |
| 7458 o.description = "foo"; | 7494 o.description = "foo"; |
| 7459 o.diskSizeGb = "foo"; | 7495 o.diskSizeGb = "foo"; |
| 7460 o.id = "foo"; | 7496 o.id = "foo"; |
| 7461 o.kind = "foo"; | 7497 o.kind = "foo"; |
| 7462 o.labelFingerprint = "foo"; | 7498 o.labelFingerprint = "foo"; |
| 7463 o.labels = buildUnnamed2340(); | 7499 o.labels = buildUnnamed2375(); |
| 7464 o.licenses = buildUnnamed2341(); | 7500 o.licenses = buildUnnamed2376(); |
| 7465 o.name = "foo"; | 7501 o.name = "foo"; |
| 7466 o.selfLink = "foo"; | 7502 o.selfLink = "foo"; |
| 7467 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); | 7503 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 7468 o.sourceDisk = "foo"; | 7504 o.sourceDisk = "foo"; |
| 7469 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 7505 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 7470 o.sourceDiskId = "foo"; | 7506 o.sourceDiskId = "foo"; |
| 7471 o.status = "foo"; | 7507 o.status = "foo"; |
| 7472 o.storageBytes = "foo"; | 7508 o.storageBytes = "foo"; |
| 7473 o.storageBytesStatus = "foo"; | 7509 o.storageBytesStatus = "foo"; |
| 7474 } | 7510 } |
| 7475 buildCounterSnapshot--; | 7511 buildCounterSnapshot--; |
| 7476 return o; | 7512 return o; |
| 7477 } | 7513 } |
| 7478 | 7514 |
| 7479 checkSnapshot(api.Snapshot o) { | 7515 checkSnapshot(api.Snapshot o) { |
| 7480 buildCounterSnapshot++; | 7516 buildCounterSnapshot++; |
| 7481 if (buildCounterSnapshot < 3) { | 7517 if (buildCounterSnapshot < 3) { |
| 7482 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7518 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7483 unittest.expect(o.description, unittest.equals('foo')); | 7519 unittest.expect(o.description, unittest.equals('foo')); |
| 7484 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 7520 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 7485 unittest.expect(o.id, unittest.equals('foo')); | 7521 unittest.expect(o.id, unittest.equals('foo')); |
| 7486 unittest.expect(o.kind, unittest.equals('foo')); | 7522 unittest.expect(o.kind, unittest.equals('foo')); |
| 7487 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 7523 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 7488 checkUnnamed2340(o.labels); | 7524 checkUnnamed2375(o.labels); |
| 7489 checkUnnamed2341(o.licenses); | 7525 checkUnnamed2376(o.licenses); |
| 7490 unittest.expect(o.name, unittest.equals('foo')); | 7526 unittest.expect(o.name, unittest.equals('foo')); |
| 7491 unittest.expect(o.selfLink, unittest.equals('foo')); | 7527 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7492 checkCustomerEncryptionKey(o.snapshotEncryptionKey); | 7528 checkCustomerEncryptionKey(o.snapshotEncryptionKey); |
| 7493 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 7529 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 7494 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 7530 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 7495 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 7531 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 7496 unittest.expect(o.status, unittest.equals('foo')); | 7532 unittest.expect(o.status, unittest.equals('foo')); |
| 7497 unittest.expect(o.storageBytes, unittest.equals('foo')); | 7533 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 7498 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 7534 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 7499 } | 7535 } |
| 7500 buildCounterSnapshot--; | 7536 buildCounterSnapshot--; |
| 7501 } | 7537 } |
| 7502 | 7538 |
| 7503 buildUnnamed2342() { | 7539 buildUnnamed2377() { |
| 7504 var o = new core.List<api.Snapshot>(); | 7540 var o = new core.List<api.Snapshot>(); |
| 7505 o.add(buildSnapshot()); | 7541 o.add(buildSnapshot()); |
| 7506 o.add(buildSnapshot()); | 7542 o.add(buildSnapshot()); |
| 7507 return o; | 7543 return o; |
| 7508 } | 7544 } |
| 7509 | 7545 |
| 7510 checkUnnamed2342(core.List<api.Snapshot> o) { | 7546 checkUnnamed2377(core.List<api.Snapshot> o) { |
| 7511 unittest.expect(o, unittest.hasLength(2)); | 7547 unittest.expect(o, unittest.hasLength(2)); |
| 7512 checkSnapshot(o[0]); | 7548 checkSnapshot(o[0]); |
| 7513 checkSnapshot(o[1]); | 7549 checkSnapshot(o[1]); |
| 7514 } | 7550 } |
| 7515 | 7551 |
| 7516 core.int buildCounterSnapshotList = 0; | 7552 core.int buildCounterSnapshotList = 0; |
| 7517 buildSnapshotList() { | 7553 buildSnapshotList() { |
| 7518 var o = new api.SnapshotList(); | 7554 var o = new api.SnapshotList(); |
| 7519 buildCounterSnapshotList++; | 7555 buildCounterSnapshotList++; |
| 7520 if (buildCounterSnapshotList < 3) { | 7556 if (buildCounterSnapshotList < 3) { |
| 7521 o.id = "foo"; | 7557 o.id = "foo"; |
| 7522 o.items = buildUnnamed2342(); | 7558 o.items = buildUnnamed2377(); |
| 7523 o.kind = "foo"; | 7559 o.kind = "foo"; |
| 7524 o.nextPageToken = "foo"; | 7560 o.nextPageToken = "foo"; |
| 7525 o.selfLink = "foo"; | 7561 o.selfLink = "foo"; |
| 7526 } | 7562 } |
| 7527 buildCounterSnapshotList--; | 7563 buildCounterSnapshotList--; |
| 7528 return o; | 7564 return o; |
| 7529 } | 7565 } |
| 7530 | 7566 |
| 7531 checkSnapshotList(api.SnapshotList o) { | 7567 checkSnapshotList(api.SnapshotList o) { |
| 7532 buildCounterSnapshotList++; | 7568 buildCounterSnapshotList++; |
| 7533 if (buildCounterSnapshotList < 3) { | 7569 if (buildCounterSnapshotList < 3) { |
| 7534 unittest.expect(o.id, unittest.equals('foo')); | 7570 unittest.expect(o.id, unittest.equals('foo')); |
| 7535 checkUnnamed2342(o.items); | 7571 checkUnnamed2377(o.items); |
| 7536 unittest.expect(o.kind, unittest.equals('foo')); | 7572 unittest.expect(o.kind, unittest.equals('foo')); |
| 7537 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7573 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7538 unittest.expect(o.selfLink, unittest.equals('foo')); | 7574 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7539 } | 7575 } |
| 7540 buildCounterSnapshotList--; | 7576 buildCounterSnapshotList--; |
| 7541 } | 7577 } |
| 7542 | 7578 |
| 7543 core.int buildCounterSslCertificate = 0; | 7579 core.int buildCounterSslCertificate = 0; |
| 7544 buildSslCertificate() { | 7580 buildSslCertificate() { |
| 7545 var o = new api.SslCertificate(); | 7581 var o = new api.SslCertificate(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 7566 unittest.expect(o.description, unittest.equals('foo')); | 7602 unittest.expect(o.description, unittest.equals('foo')); |
| 7567 unittest.expect(o.id, unittest.equals('foo')); | 7603 unittest.expect(o.id, unittest.equals('foo')); |
| 7568 unittest.expect(o.kind, unittest.equals('foo')); | 7604 unittest.expect(o.kind, unittest.equals('foo')); |
| 7569 unittest.expect(o.name, unittest.equals('foo')); | 7605 unittest.expect(o.name, unittest.equals('foo')); |
| 7570 unittest.expect(o.privateKey, unittest.equals('foo')); | 7606 unittest.expect(o.privateKey, unittest.equals('foo')); |
| 7571 unittest.expect(o.selfLink, unittest.equals('foo')); | 7607 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7572 } | 7608 } |
| 7573 buildCounterSslCertificate--; | 7609 buildCounterSslCertificate--; |
| 7574 } | 7610 } |
| 7575 | 7611 |
| 7576 buildUnnamed2343() { | 7612 buildUnnamed2378() { |
| 7577 var o = new core.List<api.SslCertificate>(); | 7613 var o = new core.List<api.SslCertificate>(); |
| 7578 o.add(buildSslCertificate()); | 7614 o.add(buildSslCertificate()); |
| 7579 o.add(buildSslCertificate()); | 7615 o.add(buildSslCertificate()); |
| 7580 return o; | 7616 return o; |
| 7581 } | 7617 } |
| 7582 | 7618 |
| 7583 checkUnnamed2343(core.List<api.SslCertificate> o) { | 7619 checkUnnamed2378(core.List<api.SslCertificate> o) { |
| 7584 unittest.expect(o, unittest.hasLength(2)); | 7620 unittest.expect(o, unittest.hasLength(2)); |
| 7585 checkSslCertificate(o[0]); | 7621 checkSslCertificate(o[0]); |
| 7586 checkSslCertificate(o[1]); | 7622 checkSslCertificate(o[1]); |
| 7587 } | 7623 } |
| 7588 | 7624 |
| 7589 core.int buildCounterSslCertificateList = 0; | 7625 core.int buildCounterSslCertificateList = 0; |
| 7590 buildSslCertificateList() { | 7626 buildSslCertificateList() { |
| 7591 var o = new api.SslCertificateList(); | 7627 var o = new api.SslCertificateList(); |
| 7592 buildCounterSslCertificateList++; | 7628 buildCounterSslCertificateList++; |
| 7593 if (buildCounterSslCertificateList < 3) { | 7629 if (buildCounterSslCertificateList < 3) { |
| 7594 o.id = "foo"; | 7630 o.id = "foo"; |
| 7595 o.items = buildUnnamed2343(); | 7631 o.items = buildUnnamed2378(); |
| 7596 o.kind = "foo"; | 7632 o.kind = "foo"; |
| 7597 o.nextPageToken = "foo"; | 7633 o.nextPageToken = "foo"; |
| 7598 o.selfLink = "foo"; | 7634 o.selfLink = "foo"; |
| 7599 } | 7635 } |
| 7600 buildCounterSslCertificateList--; | 7636 buildCounterSslCertificateList--; |
| 7601 return o; | 7637 return o; |
| 7602 } | 7638 } |
| 7603 | 7639 |
| 7604 checkSslCertificateList(api.SslCertificateList o) { | 7640 checkSslCertificateList(api.SslCertificateList o) { |
| 7605 buildCounterSslCertificateList++; | 7641 buildCounterSslCertificateList++; |
| 7606 if (buildCounterSslCertificateList < 3) { | 7642 if (buildCounterSslCertificateList < 3) { |
| 7607 unittest.expect(o.id, unittest.equals('foo')); | 7643 unittest.expect(o.id, unittest.equals('foo')); |
| 7608 checkUnnamed2343(o.items); | 7644 checkUnnamed2378(o.items); |
| 7609 unittest.expect(o.kind, unittest.equals('foo')); | 7645 unittest.expect(o.kind, unittest.equals('foo')); |
| 7610 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7646 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7611 unittest.expect(o.selfLink, unittest.equals('foo')); | 7647 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7612 } | 7648 } |
| 7613 buildCounterSslCertificateList--; | 7649 buildCounterSslCertificateList--; |
| 7614 } | 7650 } |
| 7615 | 7651 |
| 7652 buildUnnamed2379() { |
| 7653 var o = new core.List<api.SubnetworkSecondaryRange>(); |
| 7654 o.add(buildSubnetworkSecondaryRange()); |
| 7655 o.add(buildSubnetworkSecondaryRange()); |
| 7656 return o; |
| 7657 } |
| 7658 |
| 7659 checkUnnamed2379(core.List<api.SubnetworkSecondaryRange> o) { |
| 7660 unittest.expect(o, unittest.hasLength(2)); |
| 7661 checkSubnetworkSecondaryRange(o[0]); |
| 7662 checkSubnetworkSecondaryRange(o[1]); |
| 7663 } |
| 7664 |
| 7616 core.int buildCounterSubnetwork = 0; | 7665 core.int buildCounterSubnetwork = 0; |
| 7617 buildSubnetwork() { | 7666 buildSubnetwork() { |
| 7618 var o = new api.Subnetwork(); | 7667 var o = new api.Subnetwork(); |
| 7619 buildCounterSubnetwork++; | 7668 buildCounterSubnetwork++; |
| 7620 if (buildCounterSubnetwork < 3) { | 7669 if (buildCounterSubnetwork < 3) { |
| 7621 o.creationTimestamp = "foo"; | 7670 o.creationTimestamp = "foo"; |
| 7622 o.description = "foo"; | 7671 o.description = "foo"; |
| 7623 o.gatewayAddress = "foo"; | 7672 o.gatewayAddress = "foo"; |
| 7624 o.id = "foo"; | 7673 o.id = "foo"; |
| 7625 o.ipCidrRange = "foo"; | 7674 o.ipCidrRange = "foo"; |
| 7626 o.kind = "foo"; | 7675 o.kind = "foo"; |
| 7627 o.name = "foo"; | 7676 o.name = "foo"; |
| 7628 o.network = "foo"; | 7677 o.network = "foo"; |
| 7629 o.privateIpGoogleAccess = true; | 7678 o.privateIpGoogleAccess = true; |
| 7630 o.region = "foo"; | 7679 o.region = "foo"; |
| 7680 o.secondaryIpRanges = buildUnnamed2379(); |
| 7631 o.selfLink = "foo"; | 7681 o.selfLink = "foo"; |
| 7632 } | 7682 } |
| 7633 buildCounterSubnetwork--; | 7683 buildCounterSubnetwork--; |
| 7634 return o; | 7684 return o; |
| 7635 } | 7685 } |
| 7636 | 7686 |
| 7637 checkSubnetwork(api.Subnetwork o) { | 7687 checkSubnetwork(api.Subnetwork o) { |
| 7638 buildCounterSubnetwork++; | 7688 buildCounterSubnetwork++; |
| 7639 if (buildCounterSubnetwork < 3) { | 7689 if (buildCounterSubnetwork < 3) { |
| 7640 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7690 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7641 unittest.expect(o.description, unittest.equals('foo')); | 7691 unittest.expect(o.description, unittest.equals('foo')); |
| 7642 unittest.expect(o.gatewayAddress, unittest.equals('foo')); | 7692 unittest.expect(o.gatewayAddress, unittest.equals('foo')); |
| 7643 unittest.expect(o.id, unittest.equals('foo')); | 7693 unittest.expect(o.id, unittest.equals('foo')); |
| 7644 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 7694 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 7645 unittest.expect(o.kind, unittest.equals('foo')); | 7695 unittest.expect(o.kind, unittest.equals('foo')); |
| 7646 unittest.expect(o.name, unittest.equals('foo')); | 7696 unittest.expect(o.name, unittest.equals('foo')); |
| 7647 unittest.expect(o.network, unittest.equals('foo')); | 7697 unittest.expect(o.network, unittest.equals('foo')); |
| 7648 unittest.expect(o.privateIpGoogleAccess, unittest.isTrue); | 7698 unittest.expect(o.privateIpGoogleAccess, unittest.isTrue); |
| 7649 unittest.expect(o.region, unittest.equals('foo')); | 7699 unittest.expect(o.region, unittest.equals('foo')); |
| 7700 checkUnnamed2379(o.secondaryIpRanges); |
| 7650 unittest.expect(o.selfLink, unittest.equals('foo')); | 7701 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7651 } | 7702 } |
| 7652 buildCounterSubnetwork--; | 7703 buildCounterSubnetwork--; |
| 7653 } | 7704 } |
| 7654 | 7705 |
| 7655 buildUnnamed2344() { | 7706 buildUnnamed2380() { |
| 7656 var o = new core.Map<core.String, api.SubnetworksScopedList>(); | 7707 var o = new core.Map<core.String, api.SubnetworksScopedList>(); |
| 7657 o["x"] = buildSubnetworksScopedList(); | 7708 o["x"] = buildSubnetworksScopedList(); |
| 7658 o["y"] = buildSubnetworksScopedList(); | 7709 o["y"] = buildSubnetworksScopedList(); |
| 7659 return o; | 7710 return o; |
| 7660 } | 7711 } |
| 7661 | 7712 |
| 7662 checkUnnamed2344(core.Map<core.String, api.SubnetworksScopedList> o) { | 7713 checkUnnamed2380(core.Map<core.String, api.SubnetworksScopedList> o) { |
| 7663 unittest.expect(o, unittest.hasLength(2)); | 7714 unittest.expect(o, unittest.hasLength(2)); |
| 7664 checkSubnetworksScopedList(o["x"]); | 7715 checkSubnetworksScopedList(o["x"]); |
| 7665 checkSubnetworksScopedList(o["y"]); | 7716 checkSubnetworksScopedList(o["y"]); |
| 7666 } | 7717 } |
| 7667 | 7718 |
| 7668 core.int buildCounterSubnetworkAggregatedList = 0; | 7719 core.int buildCounterSubnetworkAggregatedList = 0; |
| 7669 buildSubnetworkAggregatedList() { | 7720 buildSubnetworkAggregatedList() { |
| 7670 var o = new api.SubnetworkAggregatedList(); | 7721 var o = new api.SubnetworkAggregatedList(); |
| 7671 buildCounterSubnetworkAggregatedList++; | 7722 buildCounterSubnetworkAggregatedList++; |
| 7672 if (buildCounterSubnetworkAggregatedList < 3) { | 7723 if (buildCounterSubnetworkAggregatedList < 3) { |
| 7673 o.id = "foo"; | 7724 o.id = "foo"; |
| 7674 o.items = buildUnnamed2344(); | 7725 o.items = buildUnnamed2380(); |
| 7675 o.kind = "foo"; | 7726 o.kind = "foo"; |
| 7676 o.nextPageToken = "foo"; | 7727 o.nextPageToken = "foo"; |
| 7677 o.selfLink = "foo"; | 7728 o.selfLink = "foo"; |
| 7678 } | 7729 } |
| 7679 buildCounterSubnetworkAggregatedList--; | 7730 buildCounterSubnetworkAggregatedList--; |
| 7680 return o; | 7731 return o; |
| 7681 } | 7732 } |
| 7682 | 7733 |
| 7683 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { | 7734 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { |
| 7684 buildCounterSubnetworkAggregatedList++; | 7735 buildCounterSubnetworkAggregatedList++; |
| 7685 if (buildCounterSubnetworkAggregatedList < 3) { | 7736 if (buildCounterSubnetworkAggregatedList < 3) { |
| 7686 unittest.expect(o.id, unittest.equals('foo')); | 7737 unittest.expect(o.id, unittest.equals('foo')); |
| 7687 checkUnnamed2344(o.items); | 7738 checkUnnamed2380(o.items); |
| 7688 unittest.expect(o.kind, unittest.equals('foo')); | 7739 unittest.expect(o.kind, unittest.equals('foo')); |
| 7689 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7740 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7690 unittest.expect(o.selfLink, unittest.equals('foo')); | 7741 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7691 } | 7742 } |
| 7692 buildCounterSubnetworkAggregatedList--; | 7743 buildCounterSubnetworkAggregatedList--; |
| 7693 } | 7744 } |
| 7694 | 7745 |
| 7695 buildUnnamed2345() { | 7746 buildUnnamed2381() { |
| 7696 var o = new core.List<api.Subnetwork>(); | 7747 var o = new core.List<api.Subnetwork>(); |
| 7697 o.add(buildSubnetwork()); | 7748 o.add(buildSubnetwork()); |
| 7698 o.add(buildSubnetwork()); | 7749 o.add(buildSubnetwork()); |
| 7699 return o; | 7750 return o; |
| 7700 } | 7751 } |
| 7701 | 7752 |
| 7702 checkUnnamed2345(core.List<api.Subnetwork> o) { | 7753 checkUnnamed2381(core.List<api.Subnetwork> o) { |
| 7703 unittest.expect(o, unittest.hasLength(2)); | 7754 unittest.expect(o, unittest.hasLength(2)); |
| 7704 checkSubnetwork(o[0]); | 7755 checkSubnetwork(o[0]); |
| 7705 checkSubnetwork(o[1]); | 7756 checkSubnetwork(o[1]); |
| 7706 } | 7757 } |
| 7707 | 7758 |
| 7708 core.int buildCounterSubnetworkList = 0; | 7759 core.int buildCounterSubnetworkList = 0; |
| 7709 buildSubnetworkList() { | 7760 buildSubnetworkList() { |
| 7710 var o = new api.SubnetworkList(); | 7761 var o = new api.SubnetworkList(); |
| 7711 buildCounterSubnetworkList++; | 7762 buildCounterSubnetworkList++; |
| 7712 if (buildCounterSubnetworkList < 3) { | 7763 if (buildCounterSubnetworkList < 3) { |
| 7713 o.id = "foo"; | 7764 o.id = "foo"; |
| 7714 o.items = buildUnnamed2345(); | 7765 o.items = buildUnnamed2381(); |
| 7715 o.kind = "foo"; | 7766 o.kind = "foo"; |
| 7716 o.nextPageToken = "foo"; | 7767 o.nextPageToken = "foo"; |
| 7717 o.selfLink = "foo"; | 7768 o.selfLink = "foo"; |
| 7718 } | 7769 } |
| 7719 buildCounterSubnetworkList--; | 7770 buildCounterSubnetworkList--; |
| 7720 return o; | 7771 return o; |
| 7721 } | 7772 } |
| 7722 | 7773 |
| 7723 checkSubnetworkList(api.SubnetworkList o) { | 7774 checkSubnetworkList(api.SubnetworkList o) { |
| 7724 buildCounterSubnetworkList++; | 7775 buildCounterSubnetworkList++; |
| 7725 if (buildCounterSubnetworkList < 3) { | 7776 if (buildCounterSubnetworkList < 3) { |
| 7726 unittest.expect(o.id, unittest.equals('foo')); | 7777 unittest.expect(o.id, unittest.equals('foo')); |
| 7727 checkUnnamed2345(o.items); | 7778 checkUnnamed2381(o.items); |
| 7728 unittest.expect(o.kind, unittest.equals('foo')); | 7779 unittest.expect(o.kind, unittest.equals('foo')); |
| 7729 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7780 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7730 unittest.expect(o.selfLink, unittest.equals('foo')); | 7781 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7731 } | 7782 } |
| 7732 buildCounterSubnetworkList--; | 7783 buildCounterSubnetworkList--; |
| 7733 } | 7784 } |
| 7734 | 7785 |
| 7786 core.int buildCounterSubnetworkSecondaryRange = 0; |
| 7787 buildSubnetworkSecondaryRange() { |
| 7788 var o = new api.SubnetworkSecondaryRange(); |
| 7789 buildCounterSubnetworkSecondaryRange++; |
| 7790 if (buildCounterSubnetworkSecondaryRange < 3) { |
| 7791 o.ipCidrRange = "foo"; |
| 7792 o.rangeName = "foo"; |
| 7793 } |
| 7794 buildCounterSubnetworkSecondaryRange--; |
| 7795 return o; |
| 7796 } |
| 7797 |
| 7798 checkSubnetworkSecondaryRange(api.SubnetworkSecondaryRange o) { |
| 7799 buildCounterSubnetworkSecondaryRange++; |
| 7800 if (buildCounterSubnetworkSecondaryRange < 3) { |
| 7801 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 7802 unittest.expect(o.rangeName, unittest.equals('foo')); |
| 7803 } |
| 7804 buildCounterSubnetworkSecondaryRange--; |
| 7805 } |
| 7806 |
| 7735 core.int buildCounterSubnetworksExpandIpCidrRangeRequest = 0; | 7807 core.int buildCounterSubnetworksExpandIpCidrRangeRequest = 0; |
| 7736 buildSubnetworksExpandIpCidrRangeRequest() { | 7808 buildSubnetworksExpandIpCidrRangeRequest() { |
| 7737 var o = new api.SubnetworksExpandIpCidrRangeRequest(); | 7809 var o = new api.SubnetworksExpandIpCidrRangeRequest(); |
| 7738 buildCounterSubnetworksExpandIpCidrRangeRequest++; | 7810 buildCounterSubnetworksExpandIpCidrRangeRequest++; |
| 7739 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { | 7811 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { |
| 7740 o.ipCidrRange = "foo"; | 7812 o.ipCidrRange = "foo"; |
| 7741 } | 7813 } |
| 7742 buildCounterSubnetworksExpandIpCidrRangeRequest--; | 7814 buildCounterSubnetworksExpandIpCidrRangeRequest--; |
| 7743 return o; | 7815 return o; |
| 7744 } | 7816 } |
| 7745 | 7817 |
| 7746 checkSubnetworksExpandIpCidrRangeRequest(api.SubnetworksExpandIpCidrRangeRequest
o) { | 7818 checkSubnetworksExpandIpCidrRangeRequest(api.SubnetworksExpandIpCidrRangeRequest
o) { |
| 7747 buildCounterSubnetworksExpandIpCidrRangeRequest++; | 7819 buildCounterSubnetworksExpandIpCidrRangeRequest++; |
| 7748 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { | 7820 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { |
| 7749 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 7821 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 7750 } | 7822 } |
| 7751 buildCounterSubnetworksExpandIpCidrRangeRequest--; | 7823 buildCounterSubnetworksExpandIpCidrRangeRequest--; |
| 7752 } | 7824 } |
| 7753 | 7825 |
| 7754 buildUnnamed2346() { | 7826 buildUnnamed2382() { |
| 7755 var o = new core.List<api.Subnetwork>(); | 7827 var o = new core.List<api.Subnetwork>(); |
| 7756 o.add(buildSubnetwork()); | 7828 o.add(buildSubnetwork()); |
| 7757 o.add(buildSubnetwork()); | 7829 o.add(buildSubnetwork()); |
| 7758 return o; | 7830 return o; |
| 7759 } | 7831 } |
| 7760 | 7832 |
| 7761 checkUnnamed2346(core.List<api.Subnetwork> o) { | 7833 checkUnnamed2382(core.List<api.Subnetwork> o) { |
| 7762 unittest.expect(o, unittest.hasLength(2)); | 7834 unittest.expect(o, unittest.hasLength(2)); |
| 7763 checkSubnetwork(o[0]); | 7835 checkSubnetwork(o[0]); |
| 7764 checkSubnetwork(o[1]); | 7836 checkSubnetwork(o[1]); |
| 7765 } | 7837 } |
| 7766 | 7838 |
| 7767 core.int buildCounterSubnetworksScopedListWarningData = 0; | 7839 core.int buildCounterSubnetworksScopedListWarningData = 0; |
| 7768 buildSubnetworksScopedListWarningData() { | 7840 buildSubnetworksScopedListWarningData() { |
| 7769 var o = new api.SubnetworksScopedListWarningData(); | 7841 var o = new api.SubnetworksScopedListWarningData(); |
| 7770 buildCounterSubnetworksScopedListWarningData++; | 7842 buildCounterSubnetworksScopedListWarningData++; |
| 7771 if (buildCounterSubnetworksScopedListWarningData < 3) { | 7843 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 7772 o.key = "foo"; | 7844 o.key = "foo"; |
| 7773 o.value = "foo"; | 7845 o.value = "foo"; |
| 7774 } | 7846 } |
| 7775 buildCounterSubnetworksScopedListWarningData--; | 7847 buildCounterSubnetworksScopedListWarningData--; |
| 7776 return o; | 7848 return o; |
| 7777 } | 7849 } |
| 7778 | 7850 |
| 7779 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { | 7851 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { |
| 7780 buildCounterSubnetworksScopedListWarningData++; | 7852 buildCounterSubnetworksScopedListWarningData++; |
| 7781 if (buildCounterSubnetworksScopedListWarningData < 3) { | 7853 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 7782 unittest.expect(o.key, unittest.equals('foo')); | 7854 unittest.expect(o.key, unittest.equals('foo')); |
| 7783 unittest.expect(o.value, unittest.equals('foo')); | 7855 unittest.expect(o.value, unittest.equals('foo')); |
| 7784 } | 7856 } |
| 7785 buildCounterSubnetworksScopedListWarningData--; | 7857 buildCounterSubnetworksScopedListWarningData--; |
| 7786 } | 7858 } |
| 7787 | 7859 |
| 7788 buildUnnamed2347() { | 7860 buildUnnamed2383() { |
| 7789 var o = new core.List<api.SubnetworksScopedListWarningData>(); | 7861 var o = new core.List<api.SubnetworksScopedListWarningData>(); |
| 7790 o.add(buildSubnetworksScopedListWarningData()); | 7862 o.add(buildSubnetworksScopedListWarningData()); |
| 7791 o.add(buildSubnetworksScopedListWarningData()); | 7863 o.add(buildSubnetworksScopedListWarningData()); |
| 7792 return o; | 7864 return o; |
| 7793 } | 7865 } |
| 7794 | 7866 |
| 7795 checkUnnamed2347(core.List<api.SubnetworksScopedListWarningData> o) { | 7867 checkUnnamed2383(core.List<api.SubnetworksScopedListWarningData> o) { |
| 7796 unittest.expect(o, unittest.hasLength(2)); | 7868 unittest.expect(o, unittest.hasLength(2)); |
| 7797 checkSubnetworksScopedListWarningData(o[0]); | 7869 checkSubnetworksScopedListWarningData(o[0]); |
| 7798 checkSubnetworksScopedListWarningData(o[1]); | 7870 checkSubnetworksScopedListWarningData(o[1]); |
| 7799 } | 7871 } |
| 7800 | 7872 |
| 7801 core.int buildCounterSubnetworksScopedListWarning = 0; | 7873 core.int buildCounterSubnetworksScopedListWarning = 0; |
| 7802 buildSubnetworksScopedListWarning() { | 7874 buildSubnetworksScopedListWarning() { |
| 7803 var o = new api.SubnetworksScopedListWarning(); | 7875 var o = new api.SubnetworksScopedListWarning(); |
| 7804 buildCounterSubnetworksScopedListWarning++; | 7876 buildCounterSubnetworksScopedListWarning++; |
| 7805 if (buildCounterSubnetworksScopedListWarning < 3) { | 7877 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 7806 o.code = "foo"; | 7878 o.code = "foo"; |
| 7807 o.data = buildUnnamed2347(); | 7879 o.data = buildUnnamed2383(); |
| 7808 o.message = "foo"; | 7880 o.message = "foo"; |
| 7809 } | 7881 } |
| 7810 buildCounterSubnetworksScopedListWarning--; | 7882 buildCounterSubnetworksScopedListWarning--; |
| 7811 return o; | 7883 return o; |
| 7812 } | 7884 } |
| 7813 | 7885 |
| 7814 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { | 7886 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { |
| 7815 buildCounterSubnetworksScopedListWarning++; | 7887 buildCounterSubnetworksScopedListWarning++; |
| 7816 if (buildCounterSubnetworksScopedListWarning < 3) { | 7888 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 7817 unittest.expect(o.code, unittest.equals('foo')); | 7889 unittest.expect(o.code, unittest.equals('foo')); |
| 7818 checkUnnamed2347(o.data); | 7890 checkUnnamed2383(o.data); |
| 7819 unittest.expect(o.message, unittest.equals('foo')); | 7891 unittest.expect(o.message, unittest.equals('foo')); |
| 7820 } | 7892 } |
| 7821 buildCounterSubnetworksScopedListWarning--; | 7893 buildCounterSubnetworksScopedListWarning--; |
| 7822 } | 7894 } |
| 7823 | 7895 |
| 7824 core.int buildCounterSubnetworksScopedList = 0; | 7896 core.int buildCounterSubnetworksScopedList = 0; |
| 7825 buildSubnetworksScopedList() { | 7897 buildSubnetworksScopedList() { |
| 7826 var o = new api.SubnetworksScopedList(); | 7898 var o = new api.SubnetworksScopedList(); |
| 7827 buildCounterSubnetworksScopedList++; | 7899 buildCounterSubnetworksScopedList++; |
| 7828 if (buildCounterSubnetworksScopedList < 3) { | 7900 if (buildCounterSubnetworksScopedList < 3) { |
| 7829 o.subnetworks = buildUnnamed2346(); | 7901 o.subnetworks = buildUnnamed2382(); |
| 7830 o.warning = buildSubnetworksScopedListWarning(); | 7902 o.warning = buildSubnetworksScopedListWarning(); |
| 7831 } | 7903 } |
| 7832 buildCounterSubnetworksScopedList--; | 7904 buildCounterSubnetworksScopedList--; |
| 7833 return o; | 7905 return o; |
| 7834 } | 7906 } |
| 7835 | 7907 |
| 7836 checkSubnetworksScopedList(api.SubnetworksScopedList o) { | 7908 checkSubnetworksScopedList(api.SubnetworksScopedList o) { |
| 7837 buildCounterSubnetworksScopedList++; | 7909 buildCounterSubnetworksScopedList++; |
| 7838 if (buildCounterSubnetworksScopedList < 3) { | 7910 if (buildCounterSubnetworksScopedList < 3) { |
| 7839 checkUnnamed2346(o.subnetworks); | 7911 checkUnnamed2382(o.subnetworks); |
| 7840 checkSubnetworksScopedListWarning(o.warning); | 7912 checkSubnetworksScopedListWarning(o.warning); |
| 7841 } | 7913 } |
| 7842 buildCounterSubnetworksScopedList--; | 7914 buildCounterSubnetworksScopedList--; |
| 7843 } | 7915 } |
| 7844 | 7916 |
| 7845 core.int buildCounterSubnetworksSetPrivateIpGoogleAccessRequest = 0; | 7917 core.int buildCounterSubnetworksSetPrivateIpGoogleAccessRequest = 0; |
| 7846 buildSubnetworksSetPrivateIpGoogleAccessRequest() { | 7918 buildSubnetworksSetPrivateIpGoogleAccessRequest() { |
| 7847 var o = new api.SubnetworksSetPrivateIpGoogleAccessRequest(); | 7919 var o = new api.SubnetworksSetPrivateIpGoogleAccessRequest(); |
| 7848 buildCounterSubnetworksSetPrivateIpGoogleAccessRequest++; | 7920 buildCounterSubnetworksSetPrivateIpGoogleAccessRequest++; |
| 7849 if (buildCounterSubnetworksSetPrivateIpGoogleAccessRequest < 3) { | 7921 if (buildCounterSubnetworksSetPrivateIpGoogleAccessRequest < 3) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7881 if (buildCounterTCPHealthCheck < 3) { | 7953 if (buildCounterTCPHealthCheck < 3) { |
| 7882 unittest.expect(o.port, unittest.equals(42)); | 7954 unittest.expect(o.port, unittest.equals(42)); |
| 7883 unittest.expect(o.portName, unittest.equals('foo')); | 7955 unittest.expect(o.portName, unittest.equals('foo')); |
| 7884 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 7956 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 7885 unittest.expect(o.request, unittest.equals('foo')); | 7957 unittest.expect(o.request, unittest.equals('foo')); |
| 7886 unittest.expect(o.response, unittest.equals('foo')); | 7958 unittest.expect(o.response, unittest.equals('foo')); |
| 7887 } | 7959 } |
| 7888 buildCounterTCPHealthCheck--; | 7960 buildCounterTCPHealthCheck--; |
| 7889 } | 7961 } |
| 7890 | 7962 |
| 7891 buildUnnamed2348() { | 7963 buildUnnamed2384() { |
| 7892 var o = new core.List<core.String>(); | 7964 var o = new core.List<core.String>(); |
| 7893 o.add("foo"); | 7965 o.add("foo"); |
| 7894 o.add("foo"); | 7966 o.add("foo"); |
| 7895 return o; | 7967 return o; |
| 7896 } | 7968 } |
| 7897 | 7969 |
| 7898 checkUnnamed2348(core.List<core.String> o) { | 7970 checkUnnamed2384(core.List<core.String> o) { |
| 7899 unittest.expect(o, unittest.hasLength(2)); | 7971 unittest.expect(o, unittest.hasLength(2)); |
| 7900 unittest.expect(o[0], unittest.equals('foo')); | 7972 unittest.expect(o[0], unittest.equals('foo')); |
| 7901 unittest.expect(o[1], unittest.equals('foo')); | 7973 unittest.expect(o[1], unittest.equals('foo')); |
| 7902 } | 7974 } |
| 7903 | 7975 |
| 7904 core.int buildCounterTags = 0; | 7976 core.int buildCounterTags = 0; |
| 7905 buildTags() { | 7977 buildTags() { |
| 7906 var o = new api.Tags(); | 7978 var o = new api.Tags(); |
| 7907 buildCounterTags++; | 7979 buildCounterTags++; |
| 7908 if (buildCounterTags < 3) { | 7980 if (buildCounterTags < 3) { |
| 7909 o.fingerprint = "foo"; | 7981 o.fingerprint = "foo"; |
| 7910 o.items = buildUnnamed2348(); | 7982 o.items = buildUnnamed2384(); |
| 7911 } | 7983 } |
| 7912 buildCounterTags--; | 7984 buildCounterTags--; |
| 7913 return o; | 7985 return o; |
| 7914 } | 7986 } |
| 7915 | 7987 |
| 7916 checkTags(api.Tags o) { | 7988 checkTags(api.Tags o) { |
| 7917 buildCounterTags++; | 7989 buildCounterTags++; |
| 7918 if (buildCounterTags < 3) { | 7990 if (buildCounterTags < 3) { |
| 7919 unittest.expect(o.fingerprint, unittest.equals('foo')); | 7991 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 7920 checkUnnamed2348(o.items); | 7992 checkUnnamed2384(o.items); |
| 7921 } | 7993 } |
| 7922 buildCounterTags--; | 7994 buildCounterTags--; |
| 7923 } | 7995 } |
| 7924 | 7996 |
| 7925 core.int buildCounterTargetHttpProxy = 0; | 7997 core.int buildCounterTargetHttpProxy = 0; |
| 7926 buildTargetHttpProxy() { | 7998 buildTargetHttpProxy() { |
| 7927 var o = new api.TargetHttpProxy(); | 7999 var o = new api.TargetHttpProxy(); |
| 7928 buildCounterTargetHttpProxy++; | 8000 buildCounterTargetHttpProxy++; |
| 7929 if (buildCounterTargetHttpProxy < 3) { | 8001 if (buildCounterTargetHttpProxy < 3) { |
| 7930 o.creationTimestamp = "foo"; | 8002 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 7946 unittest.expect(o.description, unittest.equals('foo')); | 8018 unittest.expect(o.description, unittest.equals('foo')); |
| 7947 unittest.expect(o.id, unittest.equals('foo')); | 8019 unittest.expect(o.id, unittest.equals('foo')); |
| 7948 unittest.expect(o.kind, unittest.equals('foo')); | 8020 unittest.expect(o.kind, unittest.equals('foo')); |
| 7949 unittest.expect(o.name, unittest.equals('foo')); | 8021 unittest.expect(o.name, unittest.equals('foo')); |
| 7950 unittest.expect(o.selfLink, unittest.equals('foo')); | 8022 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7951 unittest.expect(o.urlMap, unittest.equals('foo')); | 8023 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 7952 } | 8024 } |
| 7953 buildCounterTargetHttpProxy--; | 8025 buildCounterTargetHttpProxy--; |
| 7954 } | 8026 } |
| 7955 | 8027 |
| 7956 buildUnnamed2349() { | 8028 buildUnnamed2385() { |
| 7957 var o = new core.List<api.TargetHttpProxy>(); | 8029 var o = new core.List<api.TargetHttpProxy>(); |
| 7958 o.add(buildTargetHttpProxy()); | 8030 o.add(buildTargetHttpProxy()); |
| 7959 o.add(buildTargetHttpProxy()); | 8031 o.add(buildTargetHttpProxy()); |
| 7960 return o; | 8032 return o; |
| 7961 } | 8033 } |
| 7962 | 8034 |
| 7963 checkUnnamed2349(core.List<api.TargetHttpProxy> o) { | 8035 checkUnnamed2385(core.List<api.TargetHttpProxy> o) { |
| 7964 unittest.expect(o, unittest.hasLength(2)); | 8036 unittest.expect(o, unittest.hasLength(2)); |
| 7965 checkTargetHttpProxy(o[0]); | 8037 checkTargetHttpProxy(o[0]); |
| 7966 checkTargetHttpProxy(o[1]); | 8038 checkTargetHttpProxy(o[1]); |
| 7967 } | 8039 } |
| 7968 | 8040 |
| 7969 core.int buildCounterTargetHttpProxyList = 0; | 8041 core.int buildCounterTargetHttpProxyList = 0; |
| 7970 buildTargetHttpProxyList() { | 8042 buildTargetHttpProxyList() { |
| 7971 var o = new api.TargetHttpProxyList(); | 8043 var o = new api.TargetHttpProxyList(); |
| 7972 buildCounterTargetHttpProxyList++; | 8044 buildCounterTargetHttpProxyList++; |
| 7973 if (buildCounterTargetHttpProxyList < 3) { | 8045 if (buildCounterTargetHttpProxyList < 3) { |
| 7974 o.id = "foo"; | 8046 o.id = "foo"; |
| 7975 o.items = buildUnnamed2349(); | 8047 o.items = buildUnnamed2385(); |
| 7976 o.kind = "foo"; | 8048 o.kind = "foo"; |
| 7977 o.nextPageToken = "foo"; | 8049 o.nextPageToken = "foo"; |
| 7978 o.selfLink = "foo"; | 8050 o.selfLink = "foo"; |
| 7979 } | 8051 } |
| 7980 buildCounterTargetHttpProxyList--; | 8052 buildCounterTargetHttpProxyList--; |
| 7981 return o; | 8053 return o; |
| 7982 } | 8054 } |
| 7983 | 8055 |
| 7984 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 8056 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 7985 buildCounterTargetHttpProxyList++; | 8057 buildCounterTargetHttpProxyList++; |
| 7986 if (buildCounterTargetHttpProxyList < 3) { | 8058 if (buildCounterTargetHttpProxyList < 3) { |
| 7987 unittest.expect(o.id, unittest.equals('foo')); | 8059 unittest.expect(o.id, unittest.equals('foo')); |
| 7988 checkUnnamed2349(o.items); | 8060 checkUnnamed2385(o.items); |
| 7989 unittest.expect(o.kind, unittest.equals('foo')); | 8061 unittest.expect(o.kind, unittest.equals('foo')); |
| 7990 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8062 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7991 unittest.expect(o.selfLink, unittest.equals('foo')); | 8063 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7992 } | 8064 } |
| 7993 buildCounterTargetHttpProxyList--; | 8065 buildCounterTargetHttpProxyList--; |
| 7994 } | 8066 } |
| 7995 | 8067 |
| 7996 buildUnnamed2350() { | 8068 buildUnnamed2386() { |
| 7997 var o = new core.List<core.String>(); | 8069 var o = new core.List<core.String>(); |
| 7998 o.add("foo"); | 8070 o.add("foo"); |
| 7999 o.add("foo"); | 8071 o.add("foo"); |
| 8000 return o; | 8072 return o; |
| 8001 } | 8073 } |
| 8002 | 8074 |
| 8003 checkUnnamed2350(core.List<core.String> o) { | 8075 checkUnnamed2386(core.List<core.String> o) { |
| 8004 unittest.expect(o, unittest.hasLength(2)); | 8076 unittest.expect(o, unittest.hasLength(2)); |
| 8005 unittest.expect(o[0], unittest.equals('foo')); | 8077 unittest.expect(o[0], unittest.equals('foo')); |
| 8006 unittest.expect(o[1], unittest.equals('foo')); | 8078 unittest.expect(o[1], unittest.equals('foo')); |
| 8007 } | 8079 } |
| 8008 | 8080 |
| 8009 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; | 8081 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; |
| 8010 buildTargetHttpsProxiesSetSslCertificatesRequest() { | 8082 buildTargetHttpsProxiesSetSslCertificatesRequest() { |
| 8011 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); | 8083 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); |
| 8012 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 8084 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 8013 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 8085 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 8014 o.sslCertificates = buildUnnamed2350(); | 8086 o.sslCertificates = buildUnnamed2386(); |
| 8015 } | 8087 } |
| 8016 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 8088 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 8017 return o; | 8089 return o; |
| 8018 } | 8090 } |
| 8019 | 8091 |
| 8020 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { | 8092 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { |
| 8021 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 8093 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 8022 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 8094 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 8023 checkUnnamed2350(o.sslCertificates); | 8095 checkUnnamed2386(o.sslCertificates); |
| 8024 } | 8096 } |
| 8025 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 8097 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 8026 } | 8098 } |
| 8027 | 8099 |
| 8028 buildUnnamed2351() { | 8100 buildUnnamed2387() { |
| 8029 var o = new core.List<core.String>(); | 8101 var o = new core.List<core.String>(); |
| 8030 o.add("foo"); | 8102 o.add("foo"); |
| 8031 o.add("foo"); | 8103 o.add("foo"); |
| 8032 return o; | 8104 return o; |
| 8033 } | 8105 } |
| 8034 | 8106 |
| 8035 checkUnnamed2351(core.List<core.String> o) { | 8107 checkUnnamed2387(core.List<core.String> o) { |
| 8036 unittest.expect(o, unittest.hasLength(2)); | 8108 unittest.expect(o, unittest.hasLength(2)); |
| 8037 unittest.expect(o[0], unittest.equals('foo')); | 8109 unittest.expect(o[0], unittest.equals('foo')); |
| 8038 unittest.expect(o[1], unittest.equals('foo')); | 8110 unittest.expect(o[1], unittest.equals('foo')); |
| 8039 } | 8111 } |
| 8040 | 8112 |
| 8041 core.int buildCounterTargetHttpsProxy = 0; | 8113 core.int buildCounterTargetHttpsProxy = 0; |
| 8042 buildTargetHttpsProxy() { | 8114 buildTargetHttpsProxy() { |
| 8043 var o = new api.TargetHttpsProxy(); | 8115 var o = new api.TargetHttpsProxy(); |
| 8044 buildCounterTargetHttpsProxy++; | 8116 buildCounterTargetHttpsProxy++; |
| 8045 if (buildCounterTargetHttpsProxy < 3) { | 8117 if (buildCounterTargetHttpsProxy < 3) { |
| 8046 o.creationTimestamp = "foo"; | 8118 o.creationTimestamp = "foo"; |
| 8047 o.description = "foo"; | 8119 o.description = "foo"; |
| 8048 o.id = "foo"; | 8120 o.id = "foo"; |
| 8049 o.kind = "foo"; | 8121 o.kind = "foo"; |
| 8050 o.name = "foo"; | 8122 o.name = "foo"; |
| 8051 o.selfLink = "foo"; | 8123 o.selfLink = "foo"; |
| 8052 o.sslCertificates = buildUnnamed2351(); | 8124 o.sslCertificates = buildUnnamed2387(); |
| 8053 o.urlMap = "foo"; | 8125 o.urlMap = "foo"; |
| 8054 } | 8126 } |
| 8055 buildCounterTargetHttpsProxy--; | 8127 buildCounterTargetHttpsProxy--; |
| 8056 return o; | 8128 return o; |
| 8057 } | 8129 } |
| 8058 | 8130 |
| 8059 checkTargetHttpsProxy(api.TargetHttpsProxy o) { | 8131 checkTargetHttpsProxy(api.TargetHttpsProxy o) { |
| 8060 buildCounterTargetHttpsProxy++; | 8132 buildCounterTargetHttpsProxy++; |
| 8061 if (buildCounterTargetHttpsProxy < 3) { | 8133 if (buildCounterTargetHttpsProxy < 3) { |
| 8062 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 8134 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 8063 unittest.expect(o.description, unittest.equals('foo')); | 8135 unittest.expect(o.description, unittest.equals('foo')); |
| 8064 unittest.expect(o.id, unittest.equals('foo')); | 8136 unittest.expect(o.id, unittest.equals('foo')); |
| 8065 unittest.expect(o.kind, unittest.equals('foo')); | 8137 unittest.expect(o.kind, unittest.equals('foo')); |
| 8066 unittest.expect(o.name, unittest.equals('foo')); | 8138 unittest.expect(o.name, unittest.equals('foo')); |
| 8067 unittest.expect(o.selfLink, unittest.equals('foo')); | 8139 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8068 checkUnnamed2351(o.sslCertificates); | 8140 checkUnnamed2387(o.sslCertificates); |
| 8069 unittest.expect(o.urlMap, unittest.equals('foo')); | 8141 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 8070 } | 8142 } |
| 8071 buildCounterTargetHttpsProxy--; | 8143 buildCounterTargetHttpsProxy--; |
| 8072 } | 8144 } |
| 8073 | 8145 |
| 8074 buildUnnamed2352() { | 8146 buildUnnamed2388() { |
| 8075 var o = new core.List<api.TargetHttpsProxy>(); | 8147 var o = new core.List<api.TargetHttpsProxy>(); |
| 8076 o.add(buildTargetHttpsProxy()); | 8148 o.add(buildTargetHttpsProxy()); |
| 8077 o.add(buildTargetHttpsProxy()); | 8149 o.add(buildTargetHttpsProxy()); |
| 8078 return o; | 8150 return o; |
| 8079 } | 8151 } |
| 8080 | 8152 |
| 8081 checkUnnamed2352(core.List<api.TargetHttpsProxy> o) { | 8153 checkUnnamed2388(core.List<api.TargetHttpsProxy> o) { |
| 8082 unittest.expect(o, unittest.hasLength(2)); | 8154 unittest.expect(o, unittest.hasLength(2)); |
| 8083 checkTargetHttpsProxy(o[0]); | 8155 checkTargetHttpsProxy(o[0]); |
| 8084 checkTargetHttpsProxy(o[1]); | 8156 checkTargetHttpsProxy(o[1]); |
| 8085 } | 8157 } |
| 8086 | 8158 |
| 8087 core.int buildCounterTargetHttpsProxyList = 0; | 8159 core.int buildCounterTargetHttpsProxyList = 0; |
| 8088 buildTargetHttpsProxyList() { | 8160 buildTargetHttpsProxyList() { |
| 8089 var o = new api.TargetHttpsProxyList(); | 8161 var o = new api.TargetHttpsProxyList(); |
| 8090 buildCounterTargetHttpsProxyList++; | 8162 buildCounterTargetHttpsProxyList++; |
| 8091 if (buildCounterTargetHttpsProxyList < 3) { | 8163 if (buildCounterTargetHttpsProxyList < 3) { |
| 8092 o.id = "foo"; | 8164 o.id = "foo"; |
| 8093 o.items = buildUnnamed2352(); | 8165 o.items = buildUnnamed2388(); |
| 8094 o.kind = "foo"; | 8166 o.kind = "foo"; |
| 8095 o.nextPageToken = "foo"; | 8167 o.nextPageToken = "foo"; |
| 8096 o.selfLink = "foo"; | 8168 o.selfLink = "foo"; |
| 8097 } | 8169 } |
| 8098 buildCounterTargetHttpsProxyList--; | 8170 buildCounterTargetHttpsProxyList--; |
| 8099 return o; | 8171 return o; |
| 8100 } | 8172 } |
| 8101 | 8173 |
| 8102 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { | 8174 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { |
| 8103 buildCounterTargetHttpsProxyList++; | 8175 buildCounterTargetHttpsProxyList++; |
| 8104 if (buildCounterTargetHttpsProxyList < 3) { | 8176 if (buildCounterTargetHttpsProxyList < 3) { |
| 8105 unittest.expect(o.id, unittest.equals('foo')); | 8177 unittest.expect(o.id, unittest.equals('foo')); |
| 8106 checkUnnamed2352(o.items); | 8178 checkUnnamed2388(o.items); |
| 8107 unittest.expect(o.kind, unittest.equals('foo')); | 8179 unittest.expect(o.kind, unittest.equals('foo')); |
| 8108 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8180 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8109 unittest.expect(o.selfLink, unittest.equals('foo')); | 8181 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8110 } | 8182 } |
| 8111 buildCounterTargetHttpsProxyList--; | 8183 buildCounterTargetHttpsProxyList--; |
| 8112 } | 8184 } |
| 8113 | 8185 |
| 8114 core.int buildCounterTargetInstance = 0; | 8186 core.int buildCounterTargetInstance = 0; |
| 8115 buildTargetInstance() { | 8187 buildTargetInstance() { |
| 8116 var o = new api.TargetInstance(); | 8188 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 8139 unittest.expect(o.instance, unittest.equals('foo')); | 8211 unittest.expect(o.instance, unittest.equals('foo')); |
| 8140 unittest.expect(o.kind, unittest.equals('foo')); | 8212 unittest.expect(o.kind, unittest.equals('foo')); |
| 8141 unittest.expect(o.name, unittest.equals('foo')); | 8213 unittest.expect(o.name, unittest.equals('foo')); |
| 8142 unittest.expect(o.natPolicy, unittest.equals('foo')); | 8214 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 8143 unittest.expect(o.selfLink, unittest.equals('foo')); | 8215 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8144 unittest.expect(o.zone, unittest.equals('foo')); | 8216 unittest.expect(o.zone, unittest.equals('foo')); |
| 8145 } | 8217 } |
| 8146 buildCounterTargetInstance--; | 8218 buildCounterTargetInstance--; |
| 8147 } | 8219 } |
| 8148 | 8220 |
| 8149 buildUnnamed2353() { | 8221 buildUnnamed2389() { |
| 8150 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 8222 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 8151 o["x"] = buildTargetInstancesScopedList(); | 8223 o["x"] = buildTargetInstancesScopedList(); |
| 8152 o["y"] = buildTargetInstancesScopedList(); | 8224 o["y"] = buildTargetInstancesScopedList(); |
| 8153 return o; | 8225 return o; |
| 8154 } | 8226 } |
| 8155 | 8227 |
| 8156 checkUnnamed2353(core.Map<core.String, api.TargetInstancesScopedList> o) { | 8228 checkUnnamed2389(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 8157 unittest.expect(o, unittest.hasLength(2)); | 8229 unittest.expect(o, unittest.hasLength(2)); |
| 8158 checkTargetInstancesScopedList(o["x"]); | 8230 checkTargetInstancesScopedList(o["x"]); |
| 8159 checkTargetInstancesScopedList(o["y"]); | 8231 checkTargetInstancesScopedList(o["y"]); |
| 8160 } | 8232 } |
| 8161 | 8233 |
| 8162 core.int buildCounterTargetInstanceAggregatedList = 0; | 8234 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 8163 buildTargetInstanceAggregatedList() { | 8235 buildTargetInstanceAggregatedList() { |
| 8164 var o = new api.TargetInstanceAggregatedList(); | 8236 var o = new api.TargetInstanceAggregatedList(); |
| 8165 buildCounterTargetInstanceAggregatedList++; | 8237 buildCounterTargetInstanceAggregatedList++; |
| 8166 if (buildCounterTargetInstanceAggregatedList < 3) { | 8238 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 8167 o.id = "foo"; | 8239 o.id = "foo"; |
| 8168 o.items = buildUnnamed2353(); | 8240 o.items = buildUnnamed2389(); |
| 8169 o.kind = "foo"; | 8241 o.kind = "foo"; |
| 8170 o.nextPageToken = "foo"; | 8242 o.nextPageToken = "foo"; |
| 8171 o.selfLink = "foo"; | 8243 o.selfLink = "foo"; |
| 8172 } | 8244 } |
| 8173 buildCounterTargetInstanceAggregatedList--; | 8245 buildCounterTargetInstanceAggregatedList--; |
| 8174 return o; | 8246 return o; |
| 8175 } | 8247 } |
| 8176 | 8248 |
| 8177 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 8249 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 8178 buildCounterTargetInstanceAggregatedList++; | 8250 buildCounterTargetInstanceAggregatedList++; |
| 8179 if (buildCounterTargetInstanceAggregatedList < 3) { | 8251 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 8180 unittest.expect(o.id, unittest.equals('foo')); | 8252 unittest.expect(o.id, unittest.equals('foo')); |
| 8181 checkUnnamed2353(o.items); | 8253 checkUnnamed2389(o.items); |
| 8182 unittest.expect(o.kind, unittest.equals('foo')); | 8254 unittest.expect(o.kind, unittest.equals('foo')); |
| 8183 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8255 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8184 unittest.expect(o.selfLink, unittest.equals('foo')); | 8256 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8185 } | 8257 } |
| 8186 buildCounterTargetInstanceAggregatedList--; | 8258 buildCounterTargetInstanceAggregatedList--; |
| 8187 } | 8259 } |
| 8188 | 8260 |
| 8189 buildUnnamed2354() { | 8261 buildUnnamed2390() { |
| 8190 var o = new core.List<api.TargetInstance>(); | 8262 var o = new core.List<api.TargetInstance>(); |
| 8191 o.add(buildTargetInstance()); | 8263 o.add(buildTargetInstance()); |
| 8192 o.add(buildTargetInstance()); | 8264 o.add(buildTargetInstance()); |
| 8193 return o; | 8265 return o; |
| 8194 } | 8266 } |
| 8195 | 8267 |
| 8196 checkUnnamed2354(core.List<api.TargetInstance> o) { | 8268 checkUnnamed2390(core.List<api.TargetInstance> o) { |
| 8197 unittest.expect(o, unittest.hasLength(2)); | 8269 unittest.expect(o, unittest.hasLength(2)); |
| 8198 checkTargetInstance(o[0]); | 8270 checkTargetInstance(o[0]); |
| 8199 checkTargetInstance(o[1]); | 8271 checkTargetInstance(o[1]); |
| 8200 } | 8272 } |
| 8201 | 8273 |
| 8202 core.int buildCounterTargetInstanceList = 0; | 8274 core.int buildCounterTargetInstanceList = 0; |
| 8203 buildTargetInstanceList() { | 8275 buildTargetInstanceList() { |
| 8204 var o = new api.TargetInstanceList(); | 8276 var o = new api.TargetInstanceList(); |
| 8205 buildCounterTargetInstanceList++; | 8277 buildCounterTargetInstanceList++; |
| 8206 if (buildCounterTargetInstanceList < 3) { | 8278 if (buildCounterTargetInstanceList < 3) { |
| 8207 o.id = "foo"; | 8279 o.id = "foo"; |
| 8208 o.items = buildUnnamed2354(); | 8280 o.items = buildUnnamed2390(); |
| 8209 o.kind = "foo"; | 8281 o.kind = "foo"; |
| 8210 o.nextPageToken = "foo"; | 8282 o.nextPageToken = "foo"; |
| 8211 o.selfLink = "foo"; | 8283 o.selfLink = "foo"; |
| 8212 } | 8284 } |
| 8213 buildCounterTargetInstanceList--; | 8285 buildCounterTargetInstanceList--; |
| 8214 return o; | 8286 return o; |
| 8215 } | 8287 } |
| 8216 | 8288 |
| 8217 checkTargetInstanceList(api.TargetInstanceList o) { | 8289 checkTargetInstanceList(api.TargetInstanceList o) { |
| 8218 buildCounterTargetInstanceList++; | 8290 buildCounterTargetInstanceList++; |
| 8219 if (buildCounterTargetInstanceList < 3) { | 8291 if (buildCounterTargetInstanceList < 3) { |
| 8220 unittest.expect(o.id, unittest.equals('foo')); | 8292 unittest.expect(o.id, unittest.equals('foo')); |
| 8221 checkUnnamed2354(o.items); | 8293 checkUnnamed2390(o.items); |
| 8222 unittest.expect(o.kind, unittest.equals('foo')); | 8294 unittest.expect(o.kind, unittest.equals('foo')); |
| 8223 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8295 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8224 unittest.expect(o.selfLink, unittest.equals('foo')); | 8296 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8225 } | 8297 } |
| 8226 buildCounterTargetInstanceList--; | 8298 buildCounterTargetInstanceList--; |
| 8227 } | 8299 } |
| 8228 | 8300 |
| 8229 buildUnnamed2355() { | 8301 buildUnnamed2391() { |
| 8230 var o = new core.List<api.TargetInstance>(); | 8302 var o = new core.List<api.TargetInstance>(); |
| 8231 o.add(buildTargetInstance()); | 8303 o.add(buildTargetInstance()); |
| 8232 o.add(buildTargetInstance()); | 8304 o.add(buildTargetInstance()); |
| 8233 return o; | 8305 return o; |
| 8234 } | 8306 } |
| 8235 | 8307 |
| 8236 checkUnnamed2355(core.List<api.TargetInstance> o) { | 8308 checkUnnamed2391(core.List<api.TargetInstance> o) { |
| 8237 unittest.expect(o, unittest.hasLength(2)); | 8309 unittest.expect(o, unittest.hasLength(2)); |
| 8238 checkTargetInstance(o[0]); | 8310 checkTargetInstance(o[0]); |
| 8239 checkTargetInstance(o[1]); | 8311 checkTargetInstance(o[1]); |
| 8240 } | 8312 } |
| 8241 | 8313 |
| 8242 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 8314 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 8243 buildTargetInstancesScopedListWarningData() { | 8315 buildTargetInstancesScopedListWarningData() { |
| 8244 var o = new api.TargetInstancesScopedListWarningData(); | 8316 var o = new api.TargetInstancesScopedListWarningData(); |
| 8245 buildCounterTargetInstancesScopedListWarningData++; | 8317 buildCounterTargetInstancesScopedListWarningData++; |
| 8246 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 8318 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 8247 o.key = "foo"; | 8319 o.key = "foo"; |
| 8248 o.value = "foo"; | 8320 o.value = "foo"; |
| 8249 } | 8321 } |
| 8250 buildCounterTargetInstancesScopedListWarningData--; | 8322 buildCounterTargetInstancesScopedListWarningData--; |
| 8251 return o; | 8323 return o; |
| 8252 } | 8324 } |
| 8253 | 8325 |
| 8254 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 8326 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 8255 buildCounterTargetInstancesScopedListWarningData++; | 8327 buildCounterTargetInstancesScopedListWarningData++; |
| 8256 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 8328 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 8257 unittest.expect(o.key, unittest.equals('foo')); | 8329 unittest.expect(o.key, unittest.equals('foo')); |
| 8258 unittest.expect(o.value, unittest.equals('foo')); | 8330 unittest.expect(o.value, unittest.equals('foo')); |
| 8259 } | 8331 } |
| 8260 buildCounterTargetInstancesScopedListWarningData--; | 8332 buildCounterTargetInstancesScopedListWarningData--; |
| 8261 } | 8333 } |
| 8262 | 8334 |
| 8263 buildUnnamed2356() { | 8335 buildUnnamed2392() { |
| 8264 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 8336 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 8265 o.add(buildTargetInstancesScopedListWarningData()); | 8337 o.add(buildTargetInstancesScopedListWarningData()); |
| 8266 o.add(buildTargetInstancesScopedListWarningData()); | 8338 o.add(buildTargetInstancesScopedListWarningData()); |
| 8267 return o; | 8339 return o; |
| 8268 } | 8340 } |
| 8269 | 8341 |
| 8270 checkUnnamed2356(core.List<api.TargetInstancesScopedListWarningData> o) { | 8342 checkUnnamed2392(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 8271 unittest.expect(o, unittest.hasLength(2)); | 8343 unittest.expect(o, unittest.hasLength(2)); |
| 8272 checkTargetInstancesScopedListWarningData(o[0]); | 8344 checkTargetInstancesScopedListWarningData(o[0]); |
| 8273 checkTargetInstancesScopedListWarningData(o[1]); | 8345 checkTargetInstancesScopedListWarningData(o[1]); |
| 8274 } | 8346 } |
| 8275 | 8347 |
| 8276 core.int buildCounterTargetInstancesScopedListWarning = 0; | 8348 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 8277 buildTargetInstancesScopedListWarning() { | 8349 buildTargetInstancesScopedListWarning() { |
| 8278 var o = new api.TargetInstancesScopedListWarning(); | 8350 var o = new api.TargetInstancesScopedListWarning(); |
| 8279 buildCounterTargetInstancesScopedListWarning++; | 8351 buildCounterTargetInstancesScopedListWarning++; |
| 8280 if (buildCounterTargetInstancesScopedListWarning < 3) { | 8352 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 8281 o.code = "foo"; | 8353 o.code = "foo"; |
| 8282 o.data = buildUnnamed2356(); | 8354 o.data = buildUnnamed2392(); |
| 8283 o.message = "foo"; | 8355 o.message = "foo"; |
| 8284 } | 8356 } |
| 8285 buildCounterTargetInstancesScopedListWarning--; | 8357 buildCounterTargetInstancesScopedListWarning--; |
| 8286 return o; | 8358 return o; |
| 8287 } | 8359 } |
| 8288 | 8360 |
| 8289 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 8361 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 8290 buildCounterTargetInstancesScopedListWarning++; | 8362 buildCounterTargetInstancesScopedListWarning++; |
| 8291 if (buildCounterTargetInstancesScopedListWarning < 3) { | 8363 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 8292 unittest.expect(o.code, unittest.equals('foo')); | 8364 unittest.expect(o.code, unittest.equals('foo')); |
| 8293 checkUnnamed2356(o.data); | 8365 checkUnnamed2392(o.data); |
| 8294 unittest.expect(o.message, unittest.equals('foo')); | 8366 unittest.expect(o.message, unittest.equals('foo')); |
| 8295 } | 8367 } |
| 8296 buildCounterTargetInstancesScopedListWarning--; | 8368 buildCounterTargetInstancesScopedListWarning--; |
| 8297 } | 8369 } |
| 8298 | 8370 |
| 8299 core.int buildCounterTargetInstancesScopedList = 0; | 8371 core.int buildCounterTargetInstancesScopedList = 0; |
| 8300 buildTargetInstancesScopedList() { | 8372 buildTargetInstancesScopedList() { |
| 8301 var o = new api.TargetInstancesScopedList(); | 8373 var o = new api.TargetInstancesScopedList(); |
| 8302 buildCounterTargetInstancesScopedList++; | 8374 buildCounterTargetInstancesScopedList++; |
| 8303 if (buildCounterTargetInstancesScopedList < 3) { | 8375 if (buildCounterTargetInstancesScopedList < 3) { |
| 8304 o.targetInstances = buildUnnamed2355(); | 8376 o.targetInstances = buildUnnamed2391(); |
| 8305 o.warning = buildTargetInstancesScopedListWarning(); | 8377 o.warning = buildTargetInstancesScopedListWarning(); |
| 8306 } | 8378 } |
| 8307 buildCounterTargetInstancesScopedList--; | 8379 buildCounterTargetInstancesScopedList--; |
| 8308 return o; | 8380 return o; |
| 8309 } | 8381 } |
| 8310 | 8382 |
| 8311 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 8383 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 8312 buildCounterTargetInstancesScopedList++; | 8384 buildCounterTargetInstancesScopedList++; |
| 8313 if (buildCounterTargetInstancesScopedList < 3) { | 8385 if (buildCounterTargetInstancesScopedList < 3) { |
| 8314 checkUnnamed2355(o.targetInstances); | 8386 checkUnnamed2391(o.targetInstances); |
| 8315 checkTargetInstancesScopedListWarning(o.warning); | 8387 checkTargetInstancesScopedListWarning(o.warning); |
| 8316 } | 8388 } |
| 8317 buildCounterTargetInstancesScopedList--; | 8389 buildCounterTargetInstancesScopedList--; |
| 8318 } | 8390 } |
| 8319 | 8391 |
| 8320 buildUnnamed2357() { | 8392 buildUnnamed2393() { |
| 8321 var o = new core.List<core.String>(); | 8393 var o = new core.List<core.String>(); |
| 8322 o.add("foo"); | 8394 o.add("foo"); |
| 8323 o.add("foo"); | 8395 o.add("foo"); |
| 8324 return o; | 8396 return o; |
| 8325 } | 8397 } |
| 8326 | 8398 |
| 8327 checkUnnamed2357(core.List<core.String> o) { | 8399 checkUnnamed2393(core.List<core.String> o) { |
| 8328 unittest.expect(o, unittest.hasLength(2)); | 8400 unittest.expect(o, unittest.hasLength(2)); |
| 8329 unittest.expect(o[0], unittest.equals('foo')); | 8401 unittest.expect(o[0], unittest.equals('foo')); |
| 8330 unittest.expect(o[1], unittest.equals('foo')); | 8402 unittest.expect(o[1], unittest.equals('foo')); |
| 8331 } | 8403 } |
| 8332 | 8404 |
| 8333 buildUnnamed2358() { | 8405 buildUnnamed2394() { |
| 8334 var o = new core.List<core.String>(); | 8406 var o = new core.List<core.String>(); |
| 8335 o.add("foo"); | 8407 o.add("foo"); |
| 8336 o.add("foo"); | 8408 o.add("foo"); |
| 8337 return o; | 8409 return o; |
| 8338 } | 8410 } |
| 8339 | 8411 |
| 8340 checkUnnamed2358(core.List<core.String> o) { | 8412 checkUnnamed2394(core.List<core.String> o) { |
| 8341 unittest.expect(o, unittest.hasLength(2)); | 8413 unittest.expect(o, unittest.hasLength(2)); |
| 8342 unittest.expect(o[0], unittest.equals('foo')); | 8414 unittest.expect(o[0], unittest.equals('foo')); |
| 8343 unittest.expect(o[1], unittest.equals('foo')); | 8415 unittest.expect(o[1], unittest.equals('foo')); |
| 8344 } | 8416 } |
| 8345 | 8417 |
| 8346 core.int buildCounterTargetPool = 0; | 8418 core.int buildCounterTargetPool = 0; |
| 8347 buildTargetPool() { | 8419 buildTargetPool() { |
| 8348 var o = new api.TargetPool(); | 8420 var o = new api.TargetPool(); |
| 8349 buildCounterTargetPool++; | 8421 buildCounterTargetPool++; |
| 8350 if (buildCounterTargetPool < 3) { | 8422 if (buildCounterTargetPool < 3) { |
| 8351 o.backupPool = "foo"; | 8423 o.backupPool = "foo"; |
| 8352 o.creationTimestamp = "foo"; | 8424 o.creationTimestamp = "foo"; |
| 8353 o.description = "foo"; | 8425 o.description = "foo"; |
| 8354 o.failoverRatio = 42.0; | 8426 o.failoverRatio = 42.0; |
| 8355 o.healthChecks = buildUnnamed2357(); | 8427 o.healthChecks = buildUnnamed2393(); |
| 8356 o.id = "foo"; | 8428 o.id = "foo"; |
| 8357 o.instances = buildUnnamed2358(); | 8429 o.instances = buildUnnamed2394(); |
| 8358 o.kind = "foo"; | 8430 o.kind = "foo"; |
| 8359 o.name = "foo"; | 8431 o.name = "foo"; |
| 8360 o.region = "foo"; | 8432 o.region = "foo"; |
| 8361 o.selfLink = "foo"; | 8433 o.selfLink = "foo"; |
| 8362 o.sessionAffinity = "foo"; | 8434 o.sessionAffinity = "foo"; |
| 8363 } | 8435 } |
| 8364 buildCounterTargetPool--; | 8436 buildCounterTargetPool--; |
| 8365 return o; | 8437 return o; |
| 8366 } | 8438 } |
| 8367 | 8439 |
| 8368 checkTargetPool(api.TargetPool o) { | 8440 checkTargetPool(api.TargetPool o) { |
| 8369 buildCounterTargetPool++; | 8441 buildCounterTargetPool++; |
| 8370 if (buildCounterTargetPool < 3) { | 8442 if (buildCounterTargetPool < 3) { |
| 8371 unittest.expect(o.backupPool, unittest.equals('foo')); | 8443 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 8372 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 8444 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 8373 unittest.expect(o.description, unittest.equals('foo')); | 8445 unittest.expect(o.description, unittest.equals('foo')); |
| 8374 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 8446 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 8375 checkUnnamed2357(o.healthChecks); | 8447 checkUnnamed2393(o.healthChecks); |
| 8376 unittest.expect(o.id, unittest.equals('foo')); | 8448 unittest.expect(o.id, unittest.equals('foo')); |
| 8377 checkUnnamed2358(o.instances); | 8449 checkUnnamed2394(o.instances); |
| 8378 unittest.expect(o.kind, unittest.equals('foo')); | 8450 unittest.expect(o.kind, unittest.equals('foo')); |
| 8379 unittest.expect(o.name, unittest.equals('foo')); | 8451 unittest.expect(o.name, unittest.equals('foo')); |
| 8380 unittest.expect(o.region, unittest.equals('foo')); | 8452 unittest.expect(o.region, unittest.equals('foo')); |
| 8381 unittest.expect(o.selfLink, unittest.equals('foo')); | 8453 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8382 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 8454 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 8383 } | 8455 } |
| 8384 buildCounterTargetPool--; | 8456 buildCounterTargetPool--; |
| 8385 } | 8457 } |
| 8386 | 8458 |
| 8387 buildUnnamed2359() { | 8459 buildUnnamed2395() { |
| 8388 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 8460 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 8389 o["x"] = buildTargetPoolsScopedList(); | 8461 o["x"] = buildTargetPoolsScopedList(); |
| 8390 o["y"] = buildTargetPoolsScopedList(); | 8462 o["y"] = buildTargetPoolsScopedList(); |
| 8391 return o; | 8463 return o; |
| 8392 } | 8464 } |
| 8393 | 8465 |
| 8394 checkUnnamed2359(core.Map<core.String, api.TargetPoolsScopedList> o) { | 8466 checkUnnamed2395(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 8395 unittest.expect(o, unittest.hasLength(2)); | 8467 unittest.expect(o, unittest.hasLength(2)); |
| 8396 checkTargetPoolsScopedList(o["x"]); | 8468 checkTargetPoolsScopedList(o["x"]); |
| 8397 checkTargetPoolsScopedList(o["y"]); | 8469 checkTargetPoolsScopedList(o["y"]); |
| 8398 } | 8470 } |
| 8399 | 8471 |
| 8400 core.int buildCounterTargetPoolAggregatedList = 0; | 8472 core.int buildCounterTargetPoolAggregatedList = 0; |
| 8401 buildTargetPoolAggregatedList() { | 8473 buildTargetPoolAggregatedList() { |
| 8402 var o = new api.TargetPoolAggregatedList(); | 8474 var o = new api.TargetPoolAggregatedList(); |
| 8403 buildCounterTargetPoolAggregatedList++; | 8475 buildCounterTargetPoolAggregatedList++; |
| 8404 if (buildCounterTargetPoolAggregatedList < 3) { | 8476 if (buildCounterTargetPoolAggregatedList < 3) { |
| 8405 o.id = "foo"; | 8477 o.id = "foo"; |
| 8406 o.items = buildUnnamed2359(); | 8478 o.items = buildUnnamed2395(); |
| 8407 o.kind = "foo"; | 8479 o.kind = "foo"; |
| 8408 o.nextPageToken = "foo"; | 8480 o.nextPageToken = "foo"; |
| 8409 o.selfLink = "foo"; | 8481 o.selfLink = "foo"; |
| 8410 } | 8482 } |
| 8411 buildCounterTargetPoolAggregatedList--; | 8483 buildCounterTargetPoolAggregatedList--; |
| 8412 return o; | 8484 return o; |
| 8413 } | 8485 } |
| 8414 | 8486 |
| 8415 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 8487 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 8416 buildCounterTargetPoolAggregatedList++; | 8488 buildCounterTargetPoolAggregatedList++; |
| 8417 if (buildCounterTargetPoolAggregatedList < 3) { | 8489 if (buildCounterTargetPoolAggregatedList < 3) { |
| 8418 unittest.expect(o.id, unittest.equals('foo')); | 8490 unittest.expect(o.id, unittest.equals('foo')); |
| 8419 checkUnnamed2359(o.items); | 8491 checkUnnamed2395(o.items); |
| 8420 unittest.expect(o.kind, unittest.equals('foo')); | 8492 unittest.expect(o.kind, unittest.equals('foo')); |
| 8421 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8493 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8422 unittest.expect(o.selfLink, unittest.equals('foo')); | 8494 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8423 } | 8495 } |
| 8424 buildCounterTargetPoolAggregatedList--; | 8496 buildCounterTargetPoolAggregatedList--; |
| 8425 } | 8497 } |
| 8426 | 8498 |
| 8427 buildUnnamed2360() { | 8499 buildUnnamed2396() { |
| 8428 var o = new core.List<api.HealthStatus>(); | 8500 var o = new core.List<api.HealthStatus>(); |
| 8429 o.add(buildHealthStatus()); | 8501 o.add(buildHealthStatus()); |
| 8430 o.add(buildHealthStatus()); | 8502 o.add(buildHealthStatus()); |
| 8431 return o; | 8503 return o; |
| 8432 } | 8504 } |
| 8433 | 8505 |
| 8434 checkUnnamed2360(core.List<api.HealthStatus> o) { | 8506 checkUnnamed2396(core.List<api.HealthStatus> o) { |
| 8435 unittest.expect(o, unittest.hasLength(2)); | 8507 unittest.expect(o, unittest.hasLength(2)); |
| 8436 checkHealthStatus(o[0]); | 8508 checkHealthStatus(o[0]); |
| 8437 checkHealthStatus(o[1]); | 8509 checkHealthStatus(o[1]); |
| 8438 } | 8510 } |
| 8439 | 8511 |
| 8440 core.int buildCounterTargetPoolInstanceHealth = 0; | 8512 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 8441 buildTargetPoolInstanceHealth() { | 8513 buildTargetPoolInstanceHealth() { |
| 8442 var o = new api.TargetPoolInstanceHealth(); | 8514 var o = new api.TargetPoolInstanceHealth(); |
| 8443 buildCounterTargetPoolInstanceHealth++; | 8515 buildCounterTargetPoolInstanceHealth++; |
| 8444 if (buildCounterTargetPoolInstanceHealth < 3) { | 8516 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 8445 o.healthStatus = buildUnnamed2360(); | 8517 o.healthStatus = buildUnnamed2396(); |
| 8446 o.kind = "foo"; | 8518 o.kind = "foo"; |
| 8447 } | 8519 } |
| 8448 buildCounterTargetPoolInstanceHealth--; | 8520 buildCounterTargetPoolInstanceHealth--; |
| 8449 return o; | 8521 return o; |
| 8450 } | 8522 } |
| 8451 | 8523 |
| 8452 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 8524 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 8453 buildCounterTargetPoolInstanceHealth++; | 8525 buildCounterTargetPoolInstanceHealth++; |
| 8454 if (buildCounterTargetPoolInstanceHealth < 3) { | 8526 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 8455 checkUnnamed2360(o.healthStatus); | 8527 checkUnnamed2396(o.healthStatus); |
| 8456 unittest.expect(o.kind, unittest.equals('foo')); | 8528 unittest.expect(o.kind, unittest.equals('foo')); |
| 8457 } | 8529 } |
| 8458 buildCounterTargetPoolInstanceHealth--; | 8530 buildCounterTargetPoolInstanceHealth--; |
| 8459 } | 8531 } |
| 8460 | 8532 |
| 8461 buildUnnamed2361() { | 8533 buildUnnamed2397() { |
| 8462 var o = new core.List<api.TargetPool>(); | 8534 var o = new core.List<api.TargetPool>(); |
| 8463 o.add(buildTargetPool()); | 8535 o.add(buildTargetPool()); |
| 8464 o.add(buildTargetPool()); | 8536 o.add(buildTargetPool()); |
| 8465 return o; | 8537 return o; |
| 8466 } | 8538 } |
| 8467 | 8539 |
| 8468 checkUnnamed2361(core.List<api.TargetPool> o) { | 8540 checkUnnamed2397(core.List<api.TargetPool> o) { |
| 8469 unittest.expect(o, unittest.hasLength(2)); | 8541 unittest.expect(o, unittest.hasLength(2)); |
| 8470 checkTargetPool(o[0]); | 8542 checkTargetPool(o[0]); |
| 8471 checkTargetPool(o[1]); | 8543 checkTargetPool(o[1]); |
| 8472 } | 8544 } |
| 8473 | 8545 |
| 8474 core.int buildCounterTargetPoolList = 0; | 8546 core.int buildCounterTargetPoolList = 0; |
| 8475 buildTargetPoolList() { | 8547 buildTargetPoolList() { |
| 8476 var o = new api.TargetPoolList(); | 8548 var o = new api.TargetPoolList(); |
| 8477 buildCounterTargetPoolList++; | 8549 buildCounterTargetPoolList++; |
| 8478 if (buildCounterTargetPoolList < 3) { | 8550 if (buildCounterTargetPoolList < 3) { |
| 8479 o.id = "foo"; | 8551 o.id = "foo"; |
| 8480 o.items = buildUnnamed2361(); | 8552 o.items = buildUnnamed2397(); |
| 8481 o.kind = "foo"; | 8553 o.kind = "foo"; |
| 8482 o.nextPageToken = "foo"; | 8554 o.nextPageToken = "foo"; |
| 8483 o.selfLink = "foo"; | 8555 o.selfLink = "foo"; |
| 8484 } | 8556 } |
| 8485 buildCounterTargetPoolList--; | 8557 buildCounterTargetPoolList--; |
| 8486 return o; | 8558 return o; |
| 8487 } | 8559 } |
| 8488 | 8560 |
| 8489 checkTargetPoolList(api.TargetPoolList o) { | 8561 checkTargetPoolList(api.TargetPoolList o) { |
| 8490 buildCounterTargetPoolList++; | 8562 buildCounterTargetPoolList++; |
| 8491 if (buildCounterTargetPoolList < 3) { | 8563 if (buildCounterTargetPoolList < 3) { |
| 8492 unittest.expect(o.id, unittest.equals('foo')); | 8564 unittest.expect(o.id, unittest.equals('foo')); |
| 8493 checkUnnamed2361(o.items); | 8565 checkUnnamed2397(o.items); |
| 8494 unittest.expect(o.kind, unittest.equals('foo')); | 8566 unittest.expect(o.kind, unittest.equals('foo')); |
| 8495 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8567 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8496 unittest.expect(o.selfLink, unittest.equals('foo')); | 8568 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8497 } | 8569 } |
| 8498 buildCounterTargetPoolList--; | 8570 buildCounterTargetPoolList--; |
| 8499 } | 8571 } |
| 8500 | 8572 |
| 8501 buildUnnamed2362() { | 8573 buildUnnamed2398() { |
| 8502 var o = new core.List<api.HealthCheckReference>(); | 8574 var o = new core.List<api.HealthCheckReference>(); |
| 8503 o.add(buildHealthCheckReference()); | 8575 o.add(buildHealthCheckReference()); |
| 8504 o.add(buildHealthCheckReference()); | 8576 o.add(buildHealthCheckReference()); |
| 8505 return o; | 8577 return o; |
| 8506 } | 8578 } |
| 8507 | 8579 |
| 8508 checkUnnamed2362(core.List<api.HealthCheckReference> o) { | 8580 checkUnnamed2398(core.List<api.HealthCheckReference> o) { |
| 8509 unittest.expect(o, unittest.hasLength(2)); | 8581 unittest.expect(o, unittest.hasLength(2)); |
| 8510 checkHealthCheckReference(o[0]); | 8582 checkHealthCheckReference(o[0]); |
| 8511 checkHealthCheckReference(o[1]); | 8583 checkHealthCheckReference(o[1]); |
| 8512 } | 8584 } |
| 8513 | 8585 |
| 8514 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 8586 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 8515 buildTargetPoolsAddHealthCheckRequest() { | 8587 buildTargetPoolsAddHealthCheckRequest() { |
| 8516 var o = new api.TargetPoolsAddHealthCheckRequest(); | 8588 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 8517 buildCounterTargetPoolsAddHealthCheckRequest++; | 8589 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 8518 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 8590 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 8519 o.healthChecks = buildUnnamed2362(); | 8591 o.healthChecks = buildUnnamed2398(); |
| 8520 } | 8592 } |
| 8521 buildCounterTargetPoolsAddHealthCheckRequest--; | 8593 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 8522 return o; | 8594 return o; |
| 8523 } | 8595 } |
| 8524 | 8596 |
| 8525 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 8597 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 8526 buildCounterTargetPoolsAddHealthCheckRequest++; | 8598 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 8527 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 8599 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 8528 checkUnnamed2362(o.healthChecks); | 8600 checkUnnamed2398(o.healthChecks); |
| 8529 } | 8601 } |
| 8530 buildCounterTargetPoolsAddHealthCheckRequest--; | 8602 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 8531 } | 8603 } |
| 8532 | 8604 |
| 8533 buildUnnamed2363() { | 8605 buildUnnamed2399() { |
| 8534 var o = new core.List<api.InstanceReference>(); | 8606 var o = new core.List<api.InstanceReference>(); |
| 8535 o.add(buildInstanceReference()); | 8607 o.add(buildInstanceReference()); |
| 8536 o.add(buildInstanceReference()); | 8608 o.add(buildInstanceReference()); |
| 8537 return o; | 8609 return o; |
| 8538 } | 8610 } |
| 8539 | 8611 |
| 8540 checkUnnamed2363(core.List<api.InstanceReference> o) { | 8612 checkUnnamed2399(core.List<api.InstanceReference> o) { |
| 8541 unittest.expect(o, unittest.hasLength(2)); | 8613 unittest.expect(o, unittest.hasLength(2)); |
| 8542 checkInstanceReference(o[0]); | 8614 checkInstanceReference(o[0]); |
| 8543 checkInstanceReference(o[1]); | 8615 checkInstanceReference(o[1]); |
| 8544 } | 8616 } |
| 8545 | 8617 |
| 8546 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 8618 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 8547 buildTargetPoolsAddInstanceRequest() { | 8619 buildTargetPoolsAddInstanceRequest() { |
| 8548 var o = new api.TargetPoolsAddInstanceRequest(); | 8620 var o = new api.TargetPoolsAddInstanceRequest(); |
| 8549 buildCounterTargetPoolsAddInstanceRequest++; | 8621 buildCounterTargetPoolsAddInstanceRequest++; |
| 8550 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 8622 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 8551 o.instances = buildUnnamed2363(); | 8623 o.instances = buildUnnamed2399(); |
| 8552 } | 8624 } |
| 8553 buildCounterTargetPoolsAddInstanceRequest--; | 8625 buildCounterTargetPoolsAddInstanceRequest--; |
| 8554 return o; | 8626 return o; |
| 8555 } | 8627 } |
| 8556 | 8628 |
| 8557 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 8629 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 8558 buildCounterTargetPoolsAddInstanceRequest++; | 8630 buildCounterTargetPoolsAddInstanceRequest++; |
| 8559 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 8631 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 8560 checkUnnamed2363(o.instances); | 8632 checkUnnamed2399(o.instances); |
| 8561 } | 8633 } |
| 8562 buildCounterTargetPoolsAddInstanceRequest--; | 8634 buildCounterTargetPoolsAddInstanceRequest--; |
| 8563 } | 8635 } |
| 8564 | 8636 |
| 8565 buildUnnamed2364() { | 8637 buildUnnamed2400() { |
| 8566 var o = new core.List<api.HealthCheckReference>(); | 8638 var o = new core.List<api.HealthCheckReference>(); |
| 8567 o.add(buildHealthCheckReference()); | 8639 o.add(buildHealthCheckReference()); |
| 8568 o.add(buildHealthCheckReference()); | 8640 o.add(buildHealthCheckReference()); |
| 8569 return o; | 8641 return o; |
| 8570 } | 8642 } |
| 8571 | 8643 |
| 8572 checkUnnamed2364(core.List<api.HealthCheckReference> o) { | 8644 checkUnnamed2400(core.List<api.HealthCheckReference> o) { |
| 8573 unittest.expect(o, unittest.hasLength(2)); | 8645 unittest.expect(o, unittest.hasLength(2)); |
| 8574 checkHealthCheckReference(o[0]); | 8646 checkHealthCheckReference(o[0]); |
| 8575 checkHealthCheckReference(o[1]); | 8647 checkHealthCheckReference(o[1]); |
| 8576 } | 8648 } |
| 8577 | 8649 |
| 8578 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 8650 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 8579 buildTargetPoolsRemoveHealthCheckRequest() { | 8651 buildTargetPoolsRemoveHealthCheckRequest() { |
| 8580 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 8652 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 8581 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 8653 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 8582 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 8654 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 8583 o.healthChecks = buildUnnamed2364(); | 8655 o.healthChecks = buildUnnamed2400(); |
| 8584 } | 8656 } |
| 8585 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 8657 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 8586 return o; | 8658 return o; |
| 8587 } | 8659 } |
| 8588 | 8660 |
| 8589 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 8661 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 8590 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 8662 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 8591 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 8663 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 8592 checkUnnamed2364(o.healthChecks); | 8664 checkUnnamed2400(o.healthChecks); |
| 8593 } | 8665 } |
| 8594 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 8666 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 8595 } | 8667 } |
| 8596 | 8668 |
| 8597 buildUnnamed2365() { | 8669 buildUnnamed2401() { |
| 8598 var o = new core.List<api.InstanceReference>(); | 8670 var o = new core.List<api.InstanceReference>(); |
| 8599 o.add(buildInstanceReference()); | 8671 o.add(buildInstanceReference()); |
| 8600 o.add(buildInstanceReference()); | 8672 o.add(buildInstanceReference()); |
| 8601 return o; | 8673 return o; |
| 8602 } | 8674 } |
| 8603 | 8675 |
| 8604 checkUnnamed2365(core.List<api.InstanceReference> o) { | 8676 checkUnnamed2401(core.List<api.InstanceReference> o) { |
| 8605 unittest.expect(o, unittest.hasLength(2)); | 8677 unittest.expect(o, unittest.hasLength(2)); |
| 8606 checkInstanceReference(o[0]); | 8678 checkInstanceReference(o[0]); |
| 8607 checkInstanceReference(o[1]); | 8679 checkInstanceReference(o[1]); |
| 8608 } | 8680 } |
| 8609 | 8681 |
| 8610 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 8682 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 8611 buildTargetPoolsRemoveInstanceRequest() { | 8683 buildTargetPoolsRemoveInstanceRequest() { |
| 8612 var o = new api.TargetPoolsRemoveInstanceRequest(); | 8684 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 8613 buildCounterTargetPoolsRemoveInstanceRequest++; | 8685 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 8614 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 8686 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 8615 o.instances = buildUnnamed2365(); | 8687 o.instances = buildUnnamed2401(); |
| 8616 } | 8688 } |
| 8617 buildCounterTargetPoolsRemoveInstanceRequest--; | 8689 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 8618 return o; | 8690 return o; |
| 8619 } | 8691 } |
| 8620 | 8692 |
| 8621 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 8693 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 8622 buildCounterTargetPoolsRemoveInstanceRequest++; | 8694 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 8623 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 8695 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 8624 checkUnnamed2365(o.instances); | 8696 checkUnnamed2401(o.instances); |
| 8625 } | 8697 } |
| 8626 buildCounterTargetPoolsRemoveInstanceRequest--; | 8698 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 8627 } | 8699 } |
| 8628 | 8700 |
| 8629 buildUnnamed2366() { | 8701 buildUnnamed2402() { |
| 8630 var o = new core.List<api.TargetPool>(); | 8702 var o = new core.List<api.TargetPool>(); |
| 8631 o.add(buildTargetPool()); | 8703 o.add(buildTargetPool()); |
| 8632 o.add(buildTargetPool()); | 8704 o.add(buildTargetPool()); |
| 8633 return o; | 8705 return o; |
| 8634 } | 8706 } |
| 8635 | 8707 |
| 8636 checkUnnamed2366(core.List<api.TargetPool> o) { | 8708 checkUnnamed2402(core.List<api.TargetPool> o) { |
| 8637 unittest.expect(o, unittest.hasLength(2)); | 8709 unittest.expect(o, unittest.hasLength(2)); |
| 8638 checkTargetPool(o[0]); | 8710 checkTargetPool(o[0]); |
| 8639 checkTargetPool(o[1]); | 8711 checkTargetPool(o[1]); |
| 8640 } | 8712 } |
| 8641 | 8713 |
| 8642 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 8714 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 8643 buildTargetPoolsScopedListWarningData() { | 8715 buildTargetPoolsScopedListWarningData() { |
| 8644 var o = new api.TargetPoolsScopedListWarningData(); | 8716 var o = new api.TargetPoolsScopedListWarningData(); |
| 8645 buildCounterTargetPoolsScopedListWarningData++; | 8717 buildCounterTargetPoolsScopedListWarningData++; |
| 8646 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 8718 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 8647 o.key = "foo"; | 8719 o.key = "foo"; |
| 8648 o.value = "foo"; | 8720 o.value = "foo"; |
| 8649 } | 8721 } |
| 8650 buildCounterTargetPoolsScopedListWarningData--; | 8722 buildCounterTargetPoolsScopedListWarningData--; |
| 8651 return o; | 8723 return o; |
| 8652 } | 8724 } |
| 8653 | 8725 |
| 8654 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 8726 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 8655 buildCounterTargetPoolsScopedListWarningData++; | 8727 buildCounterTargetPoolsScopedListWarningData++; |
| 8656 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 8728 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 8657 unittest.expect(o.key, unittest.equals('foo')); | 8729 unittest.expect(o.key, unittest.equals('foo')); |
| 8658 unittest.expect(o.value, unittest.equals('foo')); | 8730 unittest.expect(o.value, unittest.equals('foo')); |
| 8659 } | 8731 } |
| 8660 buildCounterTargetPoolsScopedListWarningData--; | 8732 buildCounterTargetPoolsScopedListWarningData--; |
| 8661 } | 8733 } |
| 8662 | 8734 |
| 8663 buildUnnamed2367() { | 8735 buildUnnamed2403() { |
| 8664 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 8736 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 8665 o.add(buildTargetPoolsScopedListWarningData()); | 8737 o.add(buildTargetPoolsScopedListWarningData()); |
| 8666 o.add(buildTargetPoolsScopedListWarningData()); | 8738 o.add(buildTargetPoolsScopedListWarningData()); |
| 8667 return o; | 8739 return o; |
| 8668 } | 8740 } |
| 8669 | 8741 |
| 8670 checkUnnamed2367(core.List<api.TargetPoolsScopedListWarningData> o) { | 8742 checkUnnamed2403(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 8671 unittest.expect(o, unittest.hasLength(2)); | 8743 unittest.expect(o, unittest.hasLength(2)); |
| 8672 checkTargetPoolsScopedListWarningData(o[0]); | 8744 checkTargetPoolsScopedListWarningData(o[0]); |
| 8673 checkTargetPoolsScopedListWarningData(o[1]); | 8745 checkTargetPoolsScopedListWarningData(o[1]); |
| 8674 } | 8746 } |
| 8675 | 8747 |
| 8676 core.int buildCounterTargetPoolsScopedListWarning = 0; | 8748 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 8677 buildTargetPoolsScopedListWarning() { | 8749 buildTargetPoolsScopedListWarning() { |
| 8678 var o = new api.TargetPoolsScopedListWarning(); | 8750 var o = new api.TargetPoolsScopedListWarning(); |
| 8679 buildCounterTargetPoolsScopedListWarning++; | 8751 buildCounterTargetPoolsScopedListWarning++; |
| 8680 if (buildCounterTargetPoolsScopedListWarning < 3) { | 8752 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 8681 o.code = "foo"; | 8753 o.code = "foo"; |
| 8682 o.data = buildUnnamed2367(); | 8754 o.data = buildUnnamed2403(); |
| 8683 o.message = "foo"; | 8755 o.message = "foo"; |
| 8684 } | 8756 } |
| 8685 buildCounterTargetPoolsScopedListWarning--; | 8757 buildCounterTargetPoolsScopedListWarning--; |
| 8686 return o; | 8758 return o; |
| 8687 } | 8759 } |
| 8688 | 8760 |
| 8689 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 8761 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 8690 buildCounterTargetPoolsScopedListWarning++; | 8762 buildCounterTargetPoolsScopedListWarning++; |
| 8691 if (buildCounterTargetPoolsScopedListWarning < 3) { | 8763 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 8692 unittest.expect(o.code, unittest.equals('foo')); | 8764 unittest.expect(o.code, unittest.equals('foo')); |
| 8693 checkUnnamed2367(o.data); | 8765 checkUnnamed2403(o.data); |
| 8694 unittest.expect(o.message, unittest.equals('foo')); | 8766 unittest.expect(o.message, unittest.equals('foo')); |
| 8695 } | 8767 } |
| 8696 buildCounterTargetPoolsScopedListWarning--; | 8768 buildCounterTargetPoolsScopedListWarning--; |
| 8697 } | 8769 } |
| 8698 | 8770 |
| 8699 core.int buildCounterTargetPoolsScopedList = 0; | 8771 core.int buildCounterTargetPoolsScopedList = 0; |
| 8700 buildTargetPoolsScopedList() { | 8772 buildTargetPoolsScopedList() { |
| 8701 var o = new api.TargetPoolsScopedList(); | 8773 var o = new api.TargetPoolsScopedList(); |
| 8702 buildCounterTargetPoolsScopedList++; | 8774 buildCounterTargetPoolsScopedList++; |
| 8703 if (buildCounterTargetPoolsScopedList < 3) { | 8775 if (buildCounterTargetPoolsScopedList < 3) { |
| 8704 o.targetPools = buildUnnamed2366(); | 8776 o.targetPools = buildUnnamed2402(); |
| 8705 o.warning = buildTargetPoolsScopedListWarning(); | 8777 o.warning = buildTargetPoolsScopedListWarning(); |
| 8706 } | 8778 } |
| 8707 buildCounterTargetPoolsScopedList--; | 8779 buildCounterTargetPoolsScopedList--; |
| 8708 return o; | 8780 return o; |
| 8709 } | 8781 } |
| 8710 | 8782 |
| 8711 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 8783 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 8712 buildCounterTargetPoolsScopedList++; | 8784 buildCounterTargetPoolsScopedList++; |
| 8713 if (buildCounterTargetPoolsScopedList < 3) { | 8785 if (buildCounterTargetPoolsScopedList < 3) { |
| 8714 checkUnnamed2366(o.targetPools); | 8786 checkUnnamed2402(o.targetPools); |
| 8715 checkTargetPoolsScopedListWarning(o.warning); | 8787 checkTargetPoolsScopedListWarning(o.warning); |
| 8716 } | 8788 } |
| 8717 buildCounterTargetPoolsScopedList--; | 8789 buildCounterTargetPoolsScopedList--; |
| 8718 } | 8790 } |
| 8719 | 8791 |
| 8720 core.int buildCounterTargetReference = 0; | 8792 core.int buildCounterTargetReference = 0; |
| 8721 buildTargetReference() { | 8793 buildTargetReference() { |
| 8722 var o = new api.TargetReference(); | 8794 var o = new api.TargetReference(); |
| 8723 buildCounterTargetReference++; | 8795 buildCounterTargetReference++; |
| 8724 if (buildCounterTargetReference < 3) { | 8796 if (buildCounterTargetReference < 3) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8767 } | 8839 } |
| 8768 | 8840 |
| 8769 checkTargetSslProxiesSetProxyHeaderRequest(api.TargetSslProxiesSetProxyHeaderReq
uest o) { | 8841 checkTargetSslProxiesSetProxyHeaderRequest(api.TargetSslProxiesSetProxyHeaderReq
uest o) { |
| 8770 buildCounterTargetSslProxiesSetProxyHeaderRequest++; | 8842 buildCounterTargetSslProxiesSetProxyHeaderRequest++; |
| 8771 if (buildCounterTargetSslProxiesSetProxyHeaderRequest < 3) { | 8843 if (buildCounterTargetSslProxiesSetProxyHeaderRequest < 3) { |
| 8772 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 8844 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 8773 } | 8845 } |
| 8774 buildCounterTargetSslProxiesSetProxyHeaderRequest--; | 8846 buildCounterTargetSslProxiesSetProxyHeaderRequest--; |
| 8775 } | 8847 } |
| 8776 | 8848 |
| 8777 buildUnnamed2368() { | 8849 buildUnnamed2404() { |
| 8778 var o = new core.List<core.String>(); | 8850 var o = new core.List<core.String>(); |
| 8779 o.add("foo"); | 8851 o.add("foo"); |
| 8780 o.add("foo"); | 8852 o.add("foo"); |
| 8781 return o; | 8853 return o; |
| 8782 } | 8854 } |
| 8783 | 8855 |
| 8784 checkUnnamed2368(core.List<core.String> o) { | 8856 checkUnnamed2404(core.List<core.String> o) { |
| 8785 unittest.expect(o, unittest.hasLength(2)); | 8857 unittest.expect(o, unittest.hasLength(2)); |
| 8786 unittest.expect(o[0], unittest.equals('foo')); | 8858 unittest.expect(o[0], unittest.equals('foo')); |
| 8787 unittest.expect(o[1], unittest.equals('foo')); | 8859 unittest.expect(o[1], unittest.equals('foo')); |
| 8788 } | 8860 } |
| 8789 | 8861 |
| 8790 core.int buildCounterTargetSslProxiesSetSslCertificatesRequest = 0; | 8862 core.int buildCounterTargetSslProxiesSetSslCertificatesRequest = 0; |
| 8791 buildTargetSslProxiesSetSslCertificatesRequest() { | 8863 buildTargetSslProxiesSetSslCertificatesRequest() { |
| 8792 var o = new api.TargetSslProxiesSetSslCertificatesRequest(); | 8864 var o = new api.TargetSslProxiesSetSslCertificatesRequest(); |
| 8793 buildCounterTargetSslProxiesSetSslCertificatesRequest++; | 8865 buildCounterTargetSslProxiesSetSslCertificatesRequest++; |
| 8794 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { | 8866 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { |
| 8795 o.sslCertificates = buildUnnamed2368(); | 8867 o.sslCertificates = buildUnnamed2404(); |
| 8796 } | 8868 } |
| 8797 buildCounterTargetSslProxiesSetSslCertificatesRequest--; | 8869 buildCounterTargetSslProxiesSetSslCertificatesRequest--; |
| 8798 return o; | 8870 return o; |
| 8799 } | 8871 } |
| 8800 | 8872 |
| 8801 checkTargetSslProxiesSetSslCertificatesRequest(api.TargetSslProxiesSetSslCertifi
catesRequest o) { | 8873 checkTargetSslProxiesSetSslCertificatesRequest(api.TargetSslProxiesSetSslCertifi
catesRequest o) { |
| 8802 buildCounterTargetSslProxiesSetSslCertificatesRequest++; | 8874 buildCounterTargetSslProxiesSetSslCertificatesRequest++; |
| 8803 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { | 8875 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { |
| 8804 checkUnnamed2368(o.sslCertificates); | 8876 checkUnnamed2404(o.sslCertificates); |
| 8805 } | 8877 } |
| 8806 buildCounterTargetSslProxiesSetSslCertificatesRequest--; | 8878 buildCounterTargetSslProxiesSetSslCertificatesRequest--; |
| 8807 } | 8879 } |
| 8808 | 8880 |
| 8809 buildUnnamed2369() { | 8881 buildUnnamed2405() { |
| 8810 var o = new core.List<core.String>(); | 8882 var o = new core.List<core.String>(); |
| 8811 o.add("foo"); | 8883 o.add("foo"); |
| 8812 o.add("foo"); | 8884 o.add("foo"); |
| 8813 return o; | 8885 return o; |
| 8814 } | 8886 } |
| 8815 | 8887 |
| 8816 checkUnnamed2369(core.List<core.String> o) { | 8888 checkUnnamed2405(core.List<core.String> o) { |
| 8817 unittest.expect(o, unittest.hasLength(2)); | 8889 unittest.expect(o, unittest.hasLength(2)); |
| 8818 unittest.expect(o[0], unittest.equals('foo')); | 8890 unittest.expect(o[0], unittest.equals('foo')); |
| 8819 unittest.expect(o[1], unittest.equals('foo')); | 8891 unittest.expect(o[1], unittest.equals('foo')); |
| 8820 } | 8892 } |
| 8821 | 8893 |
| 8822 core.int buildCounterTargetSslProxy = 0; | 8894 core.int buildCounterTargetSslProxy = 0; |
| 8823 buildTargetSslProxy() { | 8895 buildTargetSslProxy() { |
| 8824 var o = new api.TargetSslProxy(); | 8896 var o = new api.TargetSslProxy(); |
| 8825 buildCounterTargetSslProxy++; | 8897 buildCounterTargetSslProxy++; |
| 8826 if (buildCounterTargetSslProxy < 3) { | 8898 if (buildCounterTargetSslProxy < 3) { |
| 8827 o.creationTimestamp = "foo"; | 8899 o.creationTimestamp = "foo"; |
| 8828 o.description = "foo"; | 8900 o.description = "foo"; |
| 8829 o.id = "foo"; | 8901 o.id = "foo"; |
| 8830 o.kind = "foo"; | 8902 o.kind = "foo"; |
| 8831 o.name = "foo"; | 8903 o.name = "foo"; |
| 8832 o.proxyHeader = "foo"; | 8904 o.proxyHeader = "foo"; |
| 8833 o.selfLink = "foo"; | 8905 o.selfLink = "foo"; |
| 8834 o.service = "foo"; | 8906 o.service = "foo"; |
| 8835 o.sslCertificates = buildUnnamed2369(); | 8907 o.sslCertificates = buildUnnamed2405(); |
| 8836 } | 8908 } |
| 8837 buildCounterTargetSslProxy--; | 8909 buildCounterTargetSslProxy--; |
| 8838 return o; | 8910 return o; |
| 8839 } | 8911 } |
| 8840 | 8912 |
| 8841 checkTargetSslProxy(api.TargetSslProxy o) { | 8913 checkTargetSslProxy(api.TargetSslProxy o) { |
| 8842 buildCounterTargetSslProxy++; | 8914 buildCounterTargetSslProxy++; |
| 8843 if (buildCounterTargetSslProxy < 3) { | 8915 if (buildCounterTargetSslProxy < 3) { |
| 8844 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 8916 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 8845 unittest.expect(o.description, unittest.equals('foo')); | 8917 unittest.expect(o.description, unittest.equals('foo')); |
| 8846 unittest.expect(o.id, unittest.equals('foo')); | 8918 unittest.expect(o.id, unittest.equals('foo')); |
| 8847 unittest.expect(o.kind, unittest.equals('foo')); | 8919 unittest.expect(o.kind, unittest.equals('foo')); |
| 8848 unittest.expect(o.name, unittest.equals('foo')); | 8920 unittest.expect(o.name, unittest.equals('foo')); |
| 8849 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 8921 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 8850 unittest.expect(o.selfLink, unittest.equals('foo')); | 8922 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8851 unittest.expect(o.service, unittest.equals('foo')); | 8923 unittest.expect(o.service, unittest.equals('foo')); |
| 8852 checkUnnamed2369(o.sslCertificates); | 8924 checkUnnamed2405(o.sslCertificates); |
| 8853 } | 8925 } |
| 8854 buildCounterTargetSslProxy--; | 8926 buildCounterTargetSslProxy--; |
| 8855 } | 8927 } |
| 8856 | 8928 |
| 8857 buildUnnamed2370() { | 8929 buildUnnamed2406() { |
| 8858 var o = new core.List<api.TargetSslProxy>(); | 8930 var o = new core.List<api.TargetSslProxy>(); |
| 8859 o.add(buildTargetSslProxy()); | 8931 o.add(buildTargetSslProxy()); |
| 8860 o.add(buildTargetSslProxy()); | 8932 o.add(buildTargetSslProxy()); |
| 8861 return o; | 8933 return o; |
| 8862 } | 8934 } |
| 8863 | 8935 |
| 8864 checkUnnamed2370(core.List<api.TargetSslProxy> o) { | 8936 checkUnnamed2406(core.List<api.TargetSslProxy> o) { |
| 8865 unittest.expect(o, unittest.hasLength(2)); | 8937 unittest.expect(o, unittest.hasLength(2)); |
| 8866 checkTargetSslProxy(o[0]); | 8938 checkTargetSslProxy(o[0]); |
| 8867 checkTargetSslProxy(o[1]); | 8939 checkTargetSslProxy(o[1]); |
| 8868 } | 8940 } |
| 8869 | 8941 |
| 8870 core.int buildCounterTargetSslProxyList = 0; | 8942 core.int buildCounterTargetSslProxyList = 0; |
| 8871 buildTargetSslProxyList() { | 8943 buildTargetSslProxyList() { |
| 8872 var o = new api.TargetSslProxyList(); | 8944 var o = new api.TargetSslProxyList(); |
| 8873 buildCounterTargetSslProxyList++; | 8945 buildCounterTargetSslProxyList++; |
| 8874 if (buildCounterTargetSslProxyList < 3) { | 8946 if (buildCounterTargetSslProxyList < 3) { |
| 8875 o.id = "foo"; | 8947 o.id = "foo"; |
| 8876 o.items = buildUnnamed2370(); | 8948 o.items = buildUnnamed2406(); |
| 8877 o.kind = "foo"; | 8949 o.kind = "foo"; |
| 8878 o.nextPageToken = "foo"; | 8950 o.nextPageToken = "foo"; |
| 8879 o.selfLink = "foo"; | 8951 o.selfLink = "foo"; |
| 8880 } | 8952 } |
| 8881 buildCounterTargetSslProxyList--; | 8953 buildCounterTargetSslProxyList--; |
| 8882 return o; | 8954 return o; |
| 8883 } | 8955 } |
| 8884 | 8956 |
| 8885 checkTargetSslProxyList(api.TargetSslProxyList o) { | 8957 checkTargetSslProxyList(api.TargetSslProxyList o) { |
| 8886 buildCounterTargetSslProxyList++; | 8958 buildCounterTargetSslProxyList++; |
| 8887 if (buildCounterTargetSslProxyList < 3) { | 8959 if (buildCounterTargetSslProxyList < 3) { |
| 8888 unittest.expect(o.id, unittest.equals('foo')); | 8960 unittest.expect(o.id, unittest.equals('foo')); |
| 8889 checkUnnamed2370(o.items); | 8961 checkUnnamed2406(o.items); |
| 8890 unittest.expect(o.kind, unittest.equals('foo')); | 8962 unittest.expect(o.kind, unittest.equals('foo')); |
| 8891 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8963 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8892 unittest.expect(o.selfLink, unittest.equals('foo')); | 8964 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8893 } | 8965 } |
| 8894 buildCounterTargetSslProxyList--; | 8966 buildCounterTargetSslProxyList--; |
| 8895 } | 8967 } |
| 8896 | 8968 |
| 8897 core.int buildCounterTargetTcpProxiesSetBackendServiceRequest = 0; | 8969 core.int buildCounterTargetTcpProxiesSetBackendServiceRequest = 0; |
| 8898 buildTargetTcpProxiesSetBackendServiceRequest() { | 8970 buildTargetTcpProxiesSetBackendServiceRequest() { |
| 8899 var o = new api.TargetTcpProxiesSetBackendServiceRequest(); | 8971 var o = new api.TargetTcpProxiesSetBackendServiceRequest(); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8958 unittest.expect(o.id, unittest.equals('foo')); | 9030 unittest.expect(o.id, unittest.equals('foo')); |
| 8959 unittest.expect(o.kind, unittest.equals('foo')); | 9031 unittest.expect(o.kind, unittest.equals('foo')); |
| 8960 unittest.expect(o.name, unittest.equals('foo')); | 9032 unittest.expect(o.name, unittest.equals('foo')); |
| 8961 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 9033 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 8962 unittest.expect(o.selfLink, unittest.equals('foo')); | 9034 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8963 unittest.expect(o.service, unittest.equals('foo')); | 9035 unittest.expect(o.service, unittest.equals('foo')); |
| 8964 } | 9036 } |
| 8965 buildCounterTargetTcpProxy--; | 9037 buildCounterTargetTcpProxy--; |
| 8966 } | 9038 } |
| 8967 | 9039 |
| 8968 buildUnnamed2371() { | 9040 buildUnnamed2407() { |
| 8969 var o = new core.List<api.TargetTcpProxy>(); | 9041 var o = new core.List<api.TargetTcpProxy>(); |
| 8970 o.add(buildTargetTcpProxy()); | 9042 o.add(buildTargetTcpProxy()); |
| 8971 o.add(buildTargetTcpProxy()); | 9043 o.add(buildTargetTcpProxy()); |
| 8972 return o; | 9044 return o; |
| 8973 } | 9045 } |
| 8974 | 9046 |
| 8975 checkUnnamed2371(core.List<api.TargetTcpProxy> o) { | 9047 checkUnnamed2407(core.List<api.TargetTcpProxy> o) { |
| 8976 unittest.expect(o, unittest.hasLength(2)); | 9048 unittest.expect(o, unittest.hasLength(2)); |
| 8977 checkTargetTcpProxy(o[0]); | 9049 checkTargetTcpProxy(o[0]); |
| 8978 checkTargetTcpProxy(o[1]); | 9050 checkTargetTcpProxy(o[1]); |
| 8979 } | 9051 } |
| 8980 | 9052 |
| 8981 core.int buildCounterTargetTcpProxyList = 0; | 9053 core.int buildCounterTargetTcpProxyList = 0; |
| 8982 buildTargetTcpProxyList() { | 9054 buildTargetTcpProxyList() { |
| 8983 var o = new api.TargetTcpProxyList(); | 9055 var o = new api.TargetTcpProxyList(); |
| 8984 buildCounterTargetTcpProxyList++; | 9056 buildCounterTargetTcpProxyList++; |
| 8985 if (buildCounterTargetTcpProxyList < 3) { | 9057 if (buildCounterTargetTcpProxyList < 3) { |
| 8986 o.id = "foo"; | 9058 o.id = "foo"; |
| 8987 o.items = buildUnnamed2371(); | 9059 o.items = buildUnnamed2407(); |
| 8988 o.kind = "foo"; | 9060 o.kind = "foo"; |
| 8989 o.nextPageToken = "foo"; | 9061 o.nextPageToken = "foo"; |
| 8990 o.selfLink = "foo"; | 9062 o.selfLink = "foo"; |
| 8991 } | 9063 } |
| 8992 buildCounterTargetTcpProxyList--; | 9064 buildCounterTargetTcpProxyList--; |
| 8993 return o; | 9065 return o; |
| 8994 } | 9066 } |
| 8995 | 9067 |
| 8996 checkTargetTcpProxyList(api.TargetTcpProxyList o) { | 9068 checkTargetTcpProxyList(api.TargetTcpProxyList o) { |
| 8997 buildCounterTargetTcpProxyList++; | 9069 buildCounterTargetTcpProxyList++; |
| 8998 if (buildCounterTargetTcpProxyList < 3) { | 9070 if (buildCounterTargetTcpProxyList < 3) { |
| 8999 unittest.expect(o.id, unittest.equals('foo')); | 9071 unittest.expect(o.id, unittest.equals('foo')); |
| 9000 checkUnnamed2371(o.items); | 9072 checkUnnamed2407(o.items); |
| 9001 unittest.expect(o.kind, unittest.equals('foo')); | 9073 unittest.expect(o.kind, unittest.equals('foo')); |
| 9002 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9074 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9003 unittest.expect(o.selfLink, unittest.equals('foo')); | 9075 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9004 } | 9076 } |
| 9005 buildCounterTargetTcpProxyList--; | 9077 buildCounterTargetTcpProxyList--; |
| 9006 } | 9078 } |
| 9007 | 9079 |
| 9008 buildUnnamed2372() { | 9080 buildUnnamed2408() { |
| 9009 var o = new core.List<core.String>(); | 9081 var o = new core.List<core.String>(); |
| 9010 o.add("foo"); | 9082 o.add("foo"); |
| 9011 o.add("foo"); | 9083 o.add("foo"); |
| 9012 return o; | 9084 return o; |
| 9013 } | 9085 } |
| 9014 | 9086 |
| 9015 checkUnnamed2372(core.List<core.String> o) { | 9087 checkUnnamed2408(core.List<core.String> o) { |
| 9016 unittest.expect(o, unittest.hasLength(2)); | 9088 unittest.expect(o, unittest.hasLength(2)); |
| 9017 unittest.expect(o[0], unittest.equals('foo')); | 9089 unittest.expect(o[0], unittest.equals('foo')); |
| 9018 unittest.expect(o[1], unittest.equals('foo')); | 9090 unittest.expect(o[1], unittest.equals('foo')); |
| 9019 } | 9091 } |
| 9020 | 9092 |
| 9021 buildUnnamed2373() { | 9093 buildUnnamed2409() { |
| 9022 var o = new core.List<core.String>(); | 9094 var o = new core.List<core.String>(); |
| 9023 o.add("foo"); | 9095 o.add("foo"); |
| 9024 o.add("foo"); | 9096 o.add("foo"); |
| 9025 return o; | 9097 return o; |
| 9026 } | 9098 } |
| 9027 | 9099 |
| 9028 checkUnnamed2373(core.List<core.String> o) { | 9100 checkUnnamed2409(core.List<core.String> o) { |
| 9029 unittest.expect(o, unittest.hasLength(2)); | 9101 unittest.expect(o, unittest.hasLength(2)); |
| 9030 unittest.expect(o[0], unittest.equals('foo')); | 9102 unittest.expect(o[0], unittest.equals('foo')); |
| 9031 unittest.expect(o[1], unittest.equals('foo')); | 9103 unittest.expect(o[1], unittest.equals('foo')); |
| 9032 } | 9104 } |
| 9033 | 9105 |
| 9034 core.int buildCounterTargetVpnGateway = 0; | 9106 core.int buildCounterTargetVpnGateway = 0; |
| 9035 buildTargetVpnGateway() { | 9107 buildTargetVpnGateway() { |
| 9036 var o = new api.TargetVpnGateway(); | 9108 var o = new api.TargetVpnGateway(); |
| 9037 buildCounterTargetVpnGateway++; | 9109 buildCounterTargetVpnGateway++; |
| 9038 if (buildCounterTargetVpnGateway < 3) { | 9110 if (buildCounterTargetVpnGateway < 3) { |
| 9039 o.creationTimestamp = "foo"; | 9111 o.creationTimestamp = "foo"; |
| 9040 o.description = "foo"; | 9112 o.description = "foo"; |
| 9041 o.forwardingRules = buildUnnamed2372(); | 9113 o.forwardingRules = buildUnnamed2408(); |
| 9042 o.id = "foo"; | 9114 o.id = "foo"; |
| 9043 o.kind = "foo"; | 9115 o.kind = "foo"; |
| 9044 o.name = "foo"; | 9116 o.name = "foo"; |
| 9045 o.network = "foo"; | 9117 o.network = "foo"; |
| 9046 o.region = "foo"; | 9118 o.region = "foo"; |
| 9047 o.selfLink = "foo"; | 9119 o.selfLink = "foo"; |
| 9048 o.status = "foo"; | 9120 o.status = "foo"; |
| 9049 o.tunnels = buildUnnamed2373(); | 9121 o.tunnels = buildUnnamed2409(); |
| 9050 } | 9122 } |
| 9051 buildCounterTargetVpnGateway--; | 9123 buildCounterTargetVpnGateway--; |
| 9052 return o; | 9124 return o; |
| 9053 } | 9125 } |
| 9054 | 9126 |
| 9055 checkTargetVpnGateway(api.TargetVpnGateway o) { | 9127 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 9056 buildCounterTargetVpnGateway++; | 9128 buildCounterTargetVpnGateway++; |
| 9057 if (buildCounterTargetVpnGateway < 3) { | 9129 if (buildCounterTargetVpnGateway < 3) { |
| 9058 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 9130 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 9059 unittest.expect(o.description, unittest.equals('foo')); | 9131 unittest.expect(o.description, unittest.equals('foo')); |
| 9060 checkUnnamed2372(o.forwardingRules); | 9132 checkUnnamed2408(o.forwardingRules); |
| 9061 unittest.expect(o.id, unittest.equals('foo')); | 9133 unittest.expect(o.id, unittest.equals('foo')); |
| 9062 unittest.expect(o.kind, unittest.equals('foo')); | 9134 unittest.expect(o.kind, unittest.equals('foo')); |
| 9063 unittest.expect(o.name, unittest.equals('foo')); | 9135 unittest.expect(o.name, unittest.equals('foo')); |
| 9064 unittest.expect(o.network, unittest.equals('foo')); | 9136 unittest.expect(o.network, unittest.equals('foo')); |
| 9065 unittest.expect(o.region, unittest.equals('foo')); | 9137 unittest.expect(o.region, unittest.equals('foo')); |
| 9066 unittest.expect(o.selfLink, unittest.equals('foo')); | 9138 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9067 unittest.expect(o.status, unittest.equals('foo')); | 9139 unittest.expect(o.status, unittest.equals('foo')); |
| 9068 checkUnnamed2373(o.tunnels); | 9140 checkUnnamed2409(o.tunnels); |
| 9069 } | 9141 } |
| 9070 buildCounterTargetVpnGateway--; | 9142 buildCounterTargetVpnGateway--; |
| 9071 } | 9143 } |
| 9072 | 9144 |
| 9073 buildUnnamed2374() { | 9145 buildUnnamed2410() { |
| 9074 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 9146 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 9075 o["x"] = buildTargetVpnGatewaysScopedList(); | 9147 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 9076 o["y"] = buildTargetVpnGatewaysScopedList(); | 9148 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 9077 return o; | 9149 return o; |
| 9078 } | 9150 } |
| 9079 | 9151 |
| 9080 checkUnnamed2374(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 9152 checkUnnamed2410(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 9081 unittest.expect(o, unittest.hasLength(2)); | 9153 unittest.expect(o, unittest.hasLength(2)); |
| 9082 checkTargetVpnGatewaysScopedList(o["x"]); | 9154 checkTargetVpnGatewaysScopedList(o["x"]); |
| 9083 checkTargetVpnGatewaysScopedList(o["y"]); | 9155 checkTargetVpnGatewaysScopedList(o["y"]); |
| 9084 } | 9156 } |
| 9085 | 9157 |
| 9086 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 9158 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 9087 buildTargetVpnGatewayAggregatedList() { | 9159 buildTargetVpnGatewayAggregatedList() { |
| 9088 var o = new api.TargetVpnGatewayAggregatedList(); | 9160 var o = new api.TargetVpnGatewayAggregatedList(); |
| 9089 buildCounterTargetVpnGatewayAggregatedList++; | 9161 buildCounterTargetVpnGatewayAggregatedList++; |
| 9090 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 9162 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 9091 o.id = "foo"; | 9163 o.id = "foo"; |
| 9092 o.items = buildUnnamed2374(); | 9164 o.items = buildUnnamed2410(); |
| 9093 o.kind = "foo"; | 9165 o.kind = "foo"; |
| 9094 o.nextPageToken = "foo"; | 9166 o.nextPageToken = "foo"; |
| 9095 o.selfLink = "foo"; | 9167 o.selfLink = "foo"; |
| 9096 } | 9168 } |
| 9097 buildCounterTargetVpnGatewayAggregatedList--; | 9169 buildCounterTargetVpnGatewayAggregatedList--; |
| 9098 return o; | 9170 return o; |
| 9099 } | 9171 } |
| 9100 | 9172 |
| 9101 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 9173 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 9102 buildCounterTargetVpnGatewayAggregatedList++; | 9174 buildCounterTargetVpnGatewayAggregatedList++; |
| 9103 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 9175 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 9104 unittest.expect(o.id, unittest.equals('foo')); | 9176 unittest.expect(o.id, unittest.equals('foo')); |
| 9105 checkUnnamed2374(o.items); | 9177 checkUnnamed2410(o.items); |
| 9106 unittest.expect(o.kind, unittest.equals('foo')); | 9178 unittest.expect(o.kind, unittest.equals('foo')); |
| 9107 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9179 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9108 unittest.expect(o.selfLink, unittest.equals('foo')); | 9180 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9109 } | 9181 } |
| 9110 buildCounterTargetVpnGatewayAggregatedList--; | 9182 buildCounterTargetVpnGatewayAggregatedList--; |
| 9111 } | 9183 } |
| 9112 | 9184 |
| 9113 buildUnnamed2375() { | 9185 buildUnnamed2411() { |
| 9114 var o = new core.List<api.TargetVpnGateway>(); | 9186 var o = new core.List<api.TargetVpnGateway>(); |
| 9115 o.add(buildTargetVpnGateway()); | 9187 o.add(buildTargetVpnGateway()); |
| 9116 o.add(buildTargetVpnGateway()); | 9188 o.add(buildTargetVpnGateway()); |
| 9117 return o; | 9189 return o; |
| 9118 } | 9190 } |
| 9119 | 9191 |
| 9120 checkUnnamed2375(core.List<api.TargetVpnGateway> o) { | 9192 checkUnnamed2411(core.List<api.TargetVpnGateway> o) { |
| 9121 unittest.expect(o, unittest.hasLength(2)); | 9193 unittest.expect(o, unittest.hasLength(2)); |
| 9122 checkTargetVpnGateway(o[0]); | 9194 checkTargetVpnGateway(o[0]); |
| 9123 checkTargetVpnGateway(o[1]); | 9195 checkTargetVpnGateway(o[1]); |
| 9124 } | 9196 } |
| 9125 | 9197 |
| 9126 core.int buildCounterTargetVpnGatewayList = 0; | 9198 core.int buildCounterTargetVpnGatewayList = 0; |
| 9127 buildTargetVpnGatewayList() { | 9199 buildTargetVpnGatewayList() { |
| 9128 var o = new api.TargetVpnGatewayList(); | 9200 var o = new api.TargetVpnGatewayList(); |
| 9129 buildCounterTargetVpnGatewayList++; | 9201 buildCounterTargetVpnGatewayList++; |
| 9130 if (buildCounterTargetVpnGatewayList < 3) { | 9202 if (buildCounterTargetVpnGatewayList < 3) { |
| 9131 o.id = "foo"; | 9203 o.id = "foo"; |
| 9132 o.items = buildUnnamed2375(); | 9204 o.items = buildUnnamed2411(); |
| 9133 o.kind = "foo"; | 9205 o.kind = "foo"; |
| 9134 o.nextPageToken = "foo"; | 9206 o.nextPageToken = "foo"; |
| 9135 o.selfLink = "foo"; | 9207 o.selfLink = "foo"; |
| 9136 } | 9208 } |
| 9137 buildCounterTargetVpnGatewayList--; | 9209 buildCounterTargetVpnGatewayList--; |
| 9138 return o; | 9210 return o; |
| 9139 } | 9211 } |
| 9140 | 9212 |
| 9141 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 9213 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 9142 buildCounterTargetVpnGatewayList++; | 9214 buildCounterTargetVpnGatewayList++; |
| 9143 if (buildCounterTargetVpnGatewayList < 3) { | 9215 if (buildCounterTargetVpnGatewayList < 3) { |
| 9144 unittest.expect(o.id, unittest.equals('foo')); | 9216 unittest.expect(o.id, unittest.equals('foo')); |
| 9145 checkUnnamed2375(o.items); | 9217 checkUnnamed2411(o.items); |
| 9146 unittest.expect(o.kind, unittest.equals('foo')); | 9218 unittest.expect(o.kind, unittest.equals('foo')); |
| 9147 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9219 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9148 unittest.expect(o.selfLink, unittest.equals('foo')); | 9220 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9149 } | 9221 } |
| 9150 buildCounterTargetVpnGatewayList--; | 9222 buildCounterTargetVpnGatewayList--; |
| 9151 } | 9223 } |
| 9152 | 9224 |
| 9153 buildUnnamed2376() { | 9225 buildUnnamed2412() { |
| 9154 var o = new core.List<api.TargetVpnGateway>(); | 9226 var o = new core.List<api.TargetVpnGateway>(); |
| 9155 o.add(buildTargetVpnGateway()); | 9227 o.add(buildTargetVpnGateway()); |
| 9156 o.add(buildTargetVpnGateway()); | 9228 o.add(buildTargetVpnGateway()); |
| 9157 return o; | 9229 return o; |
| 9158 } | 9230 } |
| 9159 | 9231 |
| 9160 checkUnnamed2376(core.List<api.TargetVpnGateway> o) { | 9232 checkUnnamed2412(core.List<api.TargetVpnGateway> o) { |
| 9161 unittest.expect(o, unittest.hasLength(2)); | 9233 unittest.expect(o, unittest.hasLength(2)); |
| 9162 checkTargetVpnGateway(o[0]); | 9234 checkTargetVpnGateway(o[0]); |
| 9163 checkTargetVpnGateway(o[1]); | 9235 checkTargetVpnGateway(o[1]); |
| 9164 } | 9236 } |
| 9165 | 9237 |
| 9166 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 9238 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 9167 buildTargetVpnGatewaysScopedListWarningData() { | 9239 buildTargetVpnGatewaysScopedListWarningData() { |
| 9168 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 9240 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 9169 buildCounterTargetVpnGatewaysScopedListWarningData++; | 9241 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 9170 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 9242 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 9171 o.key = "foo"; | 9243 o.key = "foo"; |
| 9172 o.value = "foo"; | 9244 o.value = "foo"; |
| 9173 } | 9245 } |
| 9174 buildCounterTargetVpnGatewaysScopedListWarningData--; | 9246 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 9175 return o; | 9247 return o; |
| 9176 } | 9248 } |
| 9177 | 9249 |
| 9178 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 9250 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 9179 buildCounterTargetVpnGatewaysScopedListWarningData++; | 9251 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 9180 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 9252 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 9181 unittest.expect(o.key, unittest.equals('foo')); | 9253 unittest.expect(o.key, unittest.equals('foo')); |
| 9182 unittest.expect(o.value, unittest.equals('foo')); | 9254 unittest.expect(o.value, unittest.equals('foo')); |
| 9183 } | 9255 } |
| 9184 buildCounterTargetVpnGatewaysScopedListWarningData--; | 9256 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 9185 } | 9257 } |
| 9186 | 9258 |
| 9187 buildUnnamed2377() { | 9259 buildUnnamed2413() { |
| 9188 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 9260 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 9189 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 9261 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 9190 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 9262 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 9191 return o; | 9263 return o; |
| 9192 } | 9264 } |
| 9193 | 9265 |
| 9194 checkUnnamed2377(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 9266 checkUnnamed2413(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 9195 unittest.expect(o, unittest.hasLength(2)); | 9267 unittest.expect(o, unittest.hasLength(2)); |
| 9196 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 9268 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 9197 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 9269 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 9198 } | 9270 } |
| 9199 | 9271 |
| 9200 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 9272 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 9201 buildTargetVpnGatewaysScopedListWarning() { | 9273 buildTargetVpnGatewaysScopedListWarning() { |
| 9202 var o = new api.TargetVpnGatewaysScopedListWarning(); | 9274 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 9203 buildCounterTargetVpnGatewaysScopedListWarning++; | 9275 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 9204 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 9276 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 9205 o.code = "foo"; | 9277 o.code = "foo"; |
| 9206 o.data = buildUnnamed2377(); | 9278 o.data = buildUnnamed2413(); |
| 9207 o.message = "foo"; | 9279 o.message = "foo"; |
| 9208 } | 9280 } |
| 9209 buildCounterTargetVpnGatewaysScopedListWarning--; | 9281 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 9210 return o; | 9282 return o; |
| 9211 } | 9283 } |
| 9212 | 9284 |
| 9213 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 9285 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 9214 buildCounterTargetVpnGatewaysScopedListWarning++; | 9286 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 9215 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 9287 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 9216 unittest.expect(o.code, unittest.equals('foo')); | 9288 unittest.expect(o.code, unittest.equals('foo')); |
| 9217 checkUnnamed2377(o.data); | 9289 checkUnnamed2413(o.data); |
| 9218 unittest.expect(o.message, unittest.equals('foo')); | 9290 unittest.expect(o.message, unittest.equals('foo')); |
| 9219 } | 9291 } |
| 9220 buildCounterTargetVpnGatewaysScopedListWarning--; | 9292 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 9221 } | 9293 } |
| 9222 | 9294 |
| 9223 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 9295 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 9224 buildTargetVpnGatewaysScopedList() { | 9296 buildTargetVpnGatewaysScopedList() { |
| 9225 var o = new api.TargetVpnGatewaysScopedList(); | 9297 var o = new api.TargetVpnGatewaysScopedList(); |
| 9226 buildCounterTargetVpnGatewaysScopedList++; | 9298 buildCounterTargetVpnGatewaysScopedList++; |
| 9227 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 9299 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 9228 o.targetVpnGateways = buildUnnamed2376(); | 9300 o.targetVpnGateways = buildUnnamed2412(); |
| 9229 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 9301 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 9230 } | 9302 } |
| 9231 buildCounterTargetVpnGatewaysScopedList--; | 9303 buildCounterTargetVpnGatewaysScopedList--; |
| 9232 return o; | 9304 return o; |
| 9233 } | 9305 } |
| 9234 | 9306 |
| 9235 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 9307 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 9236 buildCounterTargetVpnGatewaysScopedList++; | 9308 buildCounterTargetVpnGatewaysScopedList++; |
| 9237 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 9309 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 9238 checkUnnamed2376(o.targetVpnGateways); | 9310 checkUnnamed2412(o.targetVpnGateways); |
| 9239 checkTargetVpnGatewaysScopedListWarning(o.warning); | 9311 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 9240 } | 9312 } |
| 9241 buildCounterTargetVpnGatewaysScopedList--; | 9313 buildCounterTargetVpnGatewaysScopedList--; |
| 9242 } | 9314 } |
| 9243 | 9315 |
| 9244 core.int buildCounterTestFailure = 0; | 9316 core.int buildCounterTestFailure = 0; |
| 9245 buildTestFailure() { | 9317 buildTestFailure() { |
| 9246 var o = new api.TestFailure(); | 9318 var o = new api.TestFailure(); |
| 9247 buildCounterTestFailure++; | 9319 buildCounterTestFailure++; |
| 9248 if (buildCounterTestFailure < 3) { | 9320 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 9259 buildCounterTestFailure++; | 9331 buildCounterTestFailure++; |
| 9260 if (buildCounterTestFailure < 3) { | 9332 if (buildCounterTestFailure < 3) { |
| 9261 unittest.expect(o.actualService, unittest.equals('foo')); | 9333 unittest.expect(o.actualService, unittest.equals('foo')); |
| 9262 unittest.expect(o.expectedService, unittest.equals('foo')); | 9334 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 9263 unittest.expect(o.host, unittest.equals('foo')); | 9335 unittest.expect(o.host, unittest.equals('foo')); |
| 9264 unittest.expect(o.path, unittest.equals('foo')); | 9336 unittest.expect(o.path, unittest.equals('foo')); |
| 9265 } | 9337 } |
| 9266 buildCounterTestFailure--; | 9338 buildCounterTestFailure--; |
| 9267 } | 9339 } |
| 9268 | 9340 |
| 9269 buildUnnamed2378() { | 9341 buildUnnamed2414() { |
| 9270 var o = new core.List<api.HostRule>(); | 9342 var o = new core.List<api.HostRule>(); |
| 9271 o.add(buildHostRule()); | 9343 o.add(buildHostRule()); |
| 9272 o.add(buildHostRule()); | 9344 o.add(buildHostRule()); |
| 9273 return o; | 9345 return o; |
| 9274 } | 9346 } |
| 9275 | 9347 |
| 9276 checkUnnamed2378(core.List<api.HostRule> o) { | 9348 checkUnnamed2414(core.List<api.HostRule> o) { |
| 9277 unittest.expect(o, unittest.hasLength(2)); | 9349 unittest.expect(o, unittest.hasLength(2)); |
| 9278 checkHostRule(o[0]); | 9350 checkHostRule(o[0]); |
| 9279 checkHostRule(o[1]); | 9351 checkHostRule(o[1]); |
| 9280 } | 9352 } |
| 9281 | 9353 |
| 9282 buildUnnamed2379() { | 9354 buildUnnamed2415() { |
| 9283 var o = new core.List<api.PathMatcher>(); | 9355 var o = new core.List<api.PathMatcher>(); |
| 9284 o.add(buildPathMatcher()); | 9356 o.add(buildPathMatcher()); |
| 9285 o.add(buildPathMatcher()); | 9357 o.add(buildPathMatcher()); |
| 9286 return o; | 9358 return o; |
| 9287 } | 9359 } |
| 9288 | 9360 |
| 9289 checkUnnamed2379(core.List<api.PathMatcher> o) { | 9361 checkUnnamed2415(core.List<api.PathMatcher> o) { |
| 9290 unittest.expect(o, unittest.hasLength(2)); | 9362 unittest.expect(o, unittest.hasLength(2)); |
| 9291 checkPathMatcher(o[0]); | 9363 checkPathMatcher(o[0]); |
| 9292 checkPathMatcher(o[1]); | 9364 checkPathMatcher(o[1]); |
| 9293 } | 9365 } |
| 9294 | 9366 |
| 9295 buildUnnamed2380() { | 9367 buildUnnamed2416() { |
| 9296 var o = new core.List<api.UrlMapTest>(); | 9368 var o = new core.List<api.UrlMapTest>(); |
| 9297 o.add(buildUrlMapTest()); | 9369 o.add(buildUrlMapTest()); |
| 9298 o.add(buildUrlMapTest()); | 9370 o.add(buildUrlMapTest()); |
| 9299 return o; | 9371 return o; |
| 9300 } | 9372 } |
| 9301 | 9373 |
| 9302 checkUnnamed2380(core.List<api.UrlMapTest> o) { | 9374 checkUnnamed2416(core.List<api.UrlMapTest> o) { |
| 9303 unittest.expect(o, unittest.hasLength(2)); | 9375 unittest.expect(o, unittest.hasLength(2)); |
| 9304 checkUrlMapTest(o[0]); | 9376 checkUrlMapTest(o[0]); |
| 9305 checkUrlMapTest(o[1]); | 9377 checkUrlMapTest(o[1]); |
| 9306 } | 9378 } |
| 9307 | 9379 |
| 9308 core.int buildCounterUrlMap = 0; | 9380 core.int buildCounterUrlMap = 0; |
| 9309 buildUrlMap() { | 9381 buildUrlMap() { |
| 9310 var o = new api.UrlMap(); | 9382 var o = new api.UrlMap(); |
| 9311 buildCounterUrlMap++; | 9383 buildCounterUrlMap++; |
| 9312 if (buildCounterUrlMap < 3) { | 9384 if (buildCounterUrlMap < 3) { |
| 9313 o.creationTimestamp = "foo"; | 9385 o.creationTimestamp = "foo"; |
| 9314 o.defaultService = "foo"; | 9386 o.defaultService = "foo"; |
| 9315 o.description = "foo"; | 9387 o.description = "foo"; |
| 9316 o.fingerprint = "foo"; | 9388 o.fingerprint = "foo"; |
| 9317 o.hostRules = buildUnnamed2378(); | 9389 o.hostRules = buildUnnamed2414(); |
| 9318 o.id = "foo"; | 9390 o.id = "foo"; |
| 9319 o.kind = "foo"; | 9391 o.kind = "foo"; |
| 9320 o.name = "foo"; | 9392 o.name = "foo"; |
| 9321 o.pathMatchers = buildUnnamed2379(); | 9393 o.pathMatchers = buildUnnamed2415(); |
| 9322 o.selfLink = "foo"; | 9394 o.selfLink = "foo"; |
| 9323 o.tests = buildUnnamed2380(); | 9395 o.tests = buildUnnamed2416(); |
| 9324 } | 9396 } |
| 9325 buildCounterUrlMap--; | 9397 buildCounterUrlMap--; |
| 9326 return o; | 9398 return o; |
| 9327 } | 9399 } |
| 9328 | 9400 |
| 9329 checkUrlMap(api.UrlMap o) { | 9401 checkUrlMap(api.UrlMap o) { |
| 9330 buildCounterUrlMap++; | 9402 buildCounterUrlMap++; |
| 9331 if (buildCounterUrlMap < 3) { | 9403 if (buildCounterUrlMap < 3) { |
| 9332 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 9404 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 9333 unittest.expect(o.defaultService, unittest.equals('foo')); | 9405 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 9334 unittest.expect(o.description, unittest.equals('foo')); | 9406 unittest.expect(o.description, unittest.equals('foo')); |
| 9335 unittest.expect(o.fingerprint, unittest.equals('foo')); | 9407 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 9336 checkUnnamed2378(o.hostRules); | 9408 checkUnnamed2414(o.hostRules); |
| 9337 unittest.expect(o.id, unittest.equals('foo')); | 9409 unittest.expect(o.id, unittest.equals('foo')); |
| 9338 unittest.expect(o.kind, unittest.equals('foo')); | 9410 unittest.expect(o.kind, unittest.equals('foo')); |
| 9339 unittest.expect(o.name, unittest.equals('foo')); | 9411 unittest.expect(o.name, unittest.equals('foo')); |
| 9340 checkUnnamed2379(o.pathMatchers); | 9412 checkUnnamed2415(o.pathMatchers); |
| 9341 unittest.expect(o.selfLink, unittest.equals('foo')); | 9413 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9342 checkUnnamed2380(o.tests); | 9414 checkUnnamed2416(o.tests); |
| 9343 } | 9415 } |
| 9344 buildCounterUrlMap--; | 9416 buildCounterUrlMap--; |
| 9345 } | 9417 } |
| 9346 | 9418 |
| 9347 buildUnnamed2381() { | 9419 buildUnnamed2417() { |
| 9348 var o = new core.List<api.UrlMap>(); | 9420 var o = new core.List<api.UrlMap>(); |
| 9349 o.add(buildUrlMap()); | 9421 o.add(buildUrlMap()); |
| 9350 o.add(buildUrlMap()); | 9422 o.add(buildUrlMap()); |
| 9351 return o; | 9423 return o; |
| 9352 } | 9424 } |
| 9353 | 9425 |
| 9354 checkUnnamed2381(core.List<api.UrlMap> o) { | 9426 checkUnnamed2417(core.List<api.UrlMap> o) { |
| 9355 unittest.expect(o, unittest.hasLength(2)); | 9427 unittest.expect(o, unittest.hasLength(2)); |
| 9356 checkUrlMap(o[0]); | 9428 checkUrlMap(o[0]); |
| 9357 checkUrlMap(o[1]); | 9429 checkUrlMap(o[1]); |
| 9358 } | 9430 } |
| 9359 | 9431 |
| 9360 core.int buildCounterUrlMapList = 0; | 9432 core.int buildCounterUrlMapList = 0; |
| 9361 buildUrlMapList() { | 9433 buildUrlMapList() { |
| 9362 var o = new api.UrlMapList(); | 9434 var o = new api.UrlMapList(); |
| 9363 buildCounterUrlMapList++; | 9435 buildCounterUrlMapList++; |
| 9364 if (buildCounterUrlMapList < 3) { | 9436 if (buildCounterUrlMapList < 3) { |
| 9365 o.id = "foo"; | 9437 o.id = "foo"; |
| 9366 o.items = buildUnnamed2381(); | 9438 o.items = buildUnnamed2417(); |
| 9367 o.kind = "foo"; | 9439 o.kind = "foo"; |
| 9368 o.nextPageToken = "foo"; | 9440 o.nextPageToken = "foo"; |
| 9369 o.selfLink = "foo"; | 9441 o.selfLink = "foo"; |
| 9370 } | 9442 } |
| 9371 buildCounterUrlMapList--; | 9443 buildCounterUrlMapList--; |
| 9372 return o; | 9444 return o; |
| 9373 } | 9445 } |
| 9374 | 9446 |
| 9375 checkUrlMapList(api.UrlMapList o) { | 9447 checkUrlMapList(api.UrlMapList o) { |
| 9376 buildCounterUrlMapList++; | 9448 buildCounterUrlMapList++; |
| 9377 if (buildCounterUrlMapList < 3) { | 9449 if (buildCounterUrlMapList < 3) { |
| 9378 unittest.expect(o.id, unittest.equals('foo')); | 9450 unittest.expect(o.id, unittest.equals('foo')); |
| 9379 checkUnnamed2381(o.items); | 9451 checkUnnamed2417(o.items); |
| 9380 unittest.expect(o.kind, unittest.equals('foo')); | 9452 unittest.expect(o.kind, unittest.equals('foo')); |
| 9381 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9453 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9382 unittest.expect(o.selfLink, unittest.equals('foo')); | 9454 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9383 } | 9455 } |
| 9384 buildCounterUrlMapList--; | 9456 buildCounterUrlMapList--; |
| 9385 } | 9457 } |
| 9386 | 9458 |
| 9387 core.int buildCounterUrlMapReference = 0; | 9459 core.int buildCounterUrlMapReference = 0; |
| 9388 buildUrlMapReference() { | 9460 buildUrlMapReference() { |
| 9389 var o = new api.UrlMapReference(); | 9461 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9421 buildCounterUrlMapTest++; | 9493 buildCounterUrlMapTest++; |
| 9422 if (buildCounterUrlMapTest < 3) { | 9494 if (buildCounterUrlMapTest < 3) { |
| 9423 unittest.expect(o.description, unittest.equals('foo')); | 9495 unittest.expect(o.description, unittest.equals('foo')); |
| 9424 unittest.expect(o.host, unittest.equals('foo')); | 9496 unittest.expect(o.host, unittest.equals('foo')); |
| 9425 unittest.expect(o.path, unittest.equals('foo')); | 9497 unittest.expect(o.path, unittest.equals('foo')); |
| 9426 unittest.expect(o.service, unittest.equals('foo')); | 9498 unittest.expect(o.service, unittest.equals('foo')); |
| 9427 } | 9499 } |
| 9428 buildCounterUrlMapTest--; | 9500 buildCounterUrlMapTest--; |
| 9429 } | 9501 } |
| 9430 | 9502 |
| 9431 buildUnnamed2382() { | 9503 buildUnnamed2418() { |
| 9432 var o = new core.List<core.String>(); | 9504 var o = new core.List<core.String>(); |
| 9433 o.add("foo"); | 9505 o.add("foo"); |
| 9434 o.add("foo"); | 9506 o.add("foo"); |
| 9435 return o; | 9507 return o; |
| 9436 } | 9508 } |
| 9437 | 9509 |
| 9438 checkUnnamed2382(core.List<core.String> o) { | 9510 checkUnnamed2418(core.List<core.String> o) { |
| 9439 unittest.expect(o, unittest.hasLength(2)); | 9511 unittest.expect(o, unittest.hasLength(2)); |
| 9440 unittest.expect(o[0], unittest.equals('foo')); | 9512 unittest.expect(o[0], unittest.equals('foo')); |
| 9441 unittest.expect(o[1], unittest.equals('foo')); | 9513 unittest.expect(o[1], unittest.equals('foo')); |
| 9442 } | 9514 } |
| 9443 | 9515 |
| 9444 buildUnnamed2383() { | 9516 buildUnnamed2419() { |
| 9445 var o = new core.List<api.TestFailure>(); | 9517 var o = new core.List<api.TestFailure>(); |
| 9446 o.add(buildTestFailure()); | 9518 o.add(buildTestFailure()); |
| 9447 o.add(buildTestFailure()); | 9519 o.add(buildTestFailure()); |
| 9448 return o; | 9520 return o; |
| 9449 } | 9521 } |
| 9450 | 9522 |
| 9451 checkUnnamed2383(core.List<api.TestFailure> o) { | 9523 checkUnnamed2419(core.List<api.TestFailure> o) { |
| 9452 unittest.expect(o, unittest.hasLength(2)); | 9524 unittest.expect(o, unittest.hasLength(2)); |
| 9453 checkTestFailure(o[0]); | 9525 checkTestFailure(o[0]); |
| 9454 checkTestFailure(o[1]); | 9526 checkTestFailure(o[1]); |
| 9455 } | 9527 } |
| 9456 | 9528 |
| 9457 core.int buildCounterUrlMapValidationResult = 0; | 9529 core.int buildCounterUrlMapValidationResult = 0; |
| 9458 buildUrlMapValidationResult() { | 9530 buildUrlMapValidationResult() { |
| 9459 var o = new api.UrlMapValidationResult(); | 9531 var o = new api.UrlMapValidationResult(); |
| 9460 buildCounterUrlMapValidationResult++; | 9532 buildCounterUrlMapValidationResult++; |
| 9461 if (buildCounterUrlMapValidationResult < 3) { | 9533 if (buildCounterUrlMapValidationResult < 3) { |
| 9462 o.loadErrors = buildUnnamed2382(); | 9534 o.loadErrors = buildUnnamed2418(); |
| 9463 o.loadSucceeded = true; | 9535 o.loadSucceeded = true; |
| 9464 o.testFailures = buildUnnamed2383(); | 9536 o.testFailures = buildUnnamed2419(); |
| 9465 o.testPassed = true; | 9537 o.testPassed = true; |
| 9466 } | 9538 } |
| 9467 buildCounterUrlMapValidationResult--; | 9539 buildCounterUrlMapValidationResult--; |
| 9468 return o; | 9540 return o; |
| 9469 } | 9541 } |
| 9470 | 9542 |
| 9471 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 9543 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 9472 buildCounterUrlMapValidationResult++; | 9544 buildCounterUrlMapValidationResult++; |
| 9473 if (buildCounterUrlMapValidationResult < 3) { | 9545 if (buildCounterUrlMapValidationResult < 3) { |
| 9474 checkUnnamed2382(o.loadErrors); | 9546 checkUnnamed2418(o.loadErrors); |
| 9475 unittest.expect(o.loadSucceeded, unittest.isTrue); | 9547 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 9476 checkUnnamed2383(o.testFailures); | 9548 checkUnnamed2419(o.testFailures); |
| 9477 unittest.expect(o.testPassed, unittest.isTrue); | 9549 unittest.expect(o.testPassed, unittest.isTrue); |
| 9478 } | 9550 } |
| 9479 buildCounterUrlMapValidationResult--; | 9551 buildCounterUrlMapValidationResult--; |
| 9480 } | 9552 } |
| 9481 | 9553 |
| 9482 core.int buildCounterUrlMapsValidateRequest = 0; | 9554 core.int buildCounterUrlMapsValidateRequest = 0; |
| 9483 buildUrlMapsValidateRequest() { | 9555 buildUrlMapsValidateRequest() { |
| 9484 var o = new api.UrlMapsValidateRequest(); | 9556 var o = new api.UrlMapsValidateRequest(); |
| 9485 buildCounterUrlMapsValidateRequest++; | 9557 buildCounterUrlMapsValidateRequest++; |
| 9486 if (buildCounterUrlMapsValidateRequest < 3) { | 9558 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9531 | 9603 |
| 9532 checkUsageExportLocation(api.UsageExportLocation o) { | 9604 checkUsageExportLocation(api.UsageExportLocation o) { |
| 9533 buildCounterUsageExportLocation++; | 9605 buildCounterUsageExportLocation++; |
| 9534 if (buildCounterUsageExportLocation < 3) { | 9606 if (buildCounterUsageExportLocation < 3) { |
| 9535 unittest.expect(o.bucketName, unittest.equals('foo')); | 9607 unittest.expect(o.bucketName, unittest.equals('foo')); |
| 9536 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); | 9608 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); |
| 9537 } | 9609 } |
| 9538 buildCounterUsageExportLocation--; | 9610 buildCounterUsageExportLocation--; |
| 9539 } | 9611 } |
| 9540 | 9612 |
| 9541 buildUnnamed2384() { | 9613 buildUnnamed2420() { |
| 9542 var o = new core.List<core.String>(); | 9614 var o = new core.List<core.String>(); |
| 9543 o.add("foo"); | 9615 o.add("foo"); |
| 9544 o.add("foo"); | 9616 o.add("foo"); |
| 9545 return o; | 9617 return o; |
| 9546 } | 9618 } |
| 9547 | 9619 |
| 9548 checkUnnamed2384(core.List<core.String> o) { | 9620 checkUnnamed2420(core.List<core.String> o) { |
| 9549 unittest.expect(o, unittest.hasLength(2)); | 9621 unittest.expect(o, unittest.hasLength(2)); |
| 9550 unittest.expect(o[0], unittest.equals('foo')); | 9622 unittest.expect(o[0], unittest.equals('foo')); |
| 9551 unittest.expect(o[1], unittest.equals('foo')); | 9623 unittest.expect(o[1], unittest.equals('foo')); |
| 9552 } | 9624 } |
| 9553 | 9625 |
| 9554 buildUnnamed2385() { | 9626 buildUnnamed2421() { |
| 9555 var o = new core.List<core.String>(); | 9627 var o = new core.List<core.String>(); |
| 9556 o.add("foo"); | 9628 o.add("foo"); |
| 9557 o.add("foo"); | 9629 o.add("foo"); |
| 9558 return o; | 9630 return o; |
| 9559 } | 9631 } |
| 9560 | 9632 |
| 9561 checkUnnamed2385(core.List<core.String> o) { | 9633 checkUnnamed2421(core.List<core.String> o) { |
| 9562 unittest.expect(o, unittest.hasLength(2)); | 9634 unittest.expect(o, unittest.hasLength(2)); |
| 9563 unittest.expect(o[0], unittest.equals('foo')); | 9635 unittest.expect(o[0], unittest.equals('foo')); |
| 9564 unittest.expect(o[1], unittest.equals('foo')); | 9636 unittest.expect(o[1], unittest.equals('foo')); |
| 9565 } | 9637 } |
| 9566 | 9638 |
| 9567 core.int buildCounterVpnTunnel = 0; | 9639 core.int buildCounterVpnTunnel = 0; |
| 9568 buildVpnTunnel() { | 9640 buildVpnTunnel() { |
| 9569 var o = new api.VpnTunnel(); | 9641 var o = new api.VpnTunnel(); |
| 9570 buildCounterVpnTunnel++; | 9642 buildCounterVpnTunnel++; |
| 9571 if (buildCounterVpnTunnel < 3) { | 9643 if (buildCounterVpnTunnel < 3) { |
| 9572 o.creationTimestamp = "foo"; | 9644 o.creationTimestamp = "foo"; |
| 9573 o.description = "foo"; | 9645 o.description = "foo"; |
| 9574 o.detailedStatus = "foo"; | 9646 o.detailedStatus = "foo"; |
| 9575 o.id = "foo"; | 9647 o.id = "foo"; |
| 9576 o.ikeVersion = 42; | 9648 o.ikeVersion = 42; |
| 9577 o.kind = "foo"; | 9649 o.kind = "foo"; |
| 9578 o.localTrafficSelector = buildUnnamed2384(); | 9650 o.localTrafficSelector = buildUnnamed2420(); |
| 9579 o.name = "foo"; | 9651 o.name = "foo"; |
| 9580 o.peerIp = "foo"; | 9652 o.peerIp = "foo"; |
| 9581 o.region = "foo"; | 9653 o.region = "foo"; |
| 9582 o.remoteTrafficSelector = buildUnnamed2385(); | 9654 o.remoteTrafficSelector = buildUnnamed2421(); |
| 9583 o.router = "foo"; | 9655 o.router = "foo"; |
| 9584 o.selfLink = "foo"; | 9656 o.selfLink = "foo"; |
| 9585 o.sharedSecret = "foo"; | 9657 o.sharedSecret = "foo"; |
| 9586 o.sharedSecretHash = "foo"; | 9658 o.sharedSecretHash = "foo"; |
| 9587 o.status = "foo"; | 9659 o.status = "foo"; |
| 9588 o.targetVpnGateway = "foo"; | 9660 o.targetVpnGateway = "foo"; |
| 9589 } | 9661 } |
| 9590 buildCounterVpnTunnel--; | 9662 buildCounterVpnTunnel--; |
| 9591 return o; | 9663 return o; |
| 9592 } | 9664 } |
| 9593 | 9665 |
| 9594 checkVpnTunnel(api.VpnTunnel o) { | 9666 checkVpnTunnel(api.VpnTunnel o) { |
| 9595 buildCounterVpnTunnel++; | 9667 buildCounterVpnTunnel++; |
| 9596 if (buildCounterVpnTunnel < 3) { | 9668 if (buildCounterVpnTunnel < 3) { |
| 9597 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 9669 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 9598 unittest.expect(o.description, unittest.equals('foo')); | 9670 unittest.expect(o.description, unittest.equals('foo')); |
| 9599 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 9671 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 9600 unittest.expect(o.id, unittest.equals('foo')); | 9672 unittest.expect(o.id, unittest.equals('foo')); |
| 9601 unittest.expect(o.ikeVersion, unittest.equals(42)); | 9673 unittest.expect(o.ikeVersion, unittest.equals(42)); |
| 9602 unittest.expect(o.kind, unittest.equals('foo')); | 9674 unittest.expect(o.kind, unittest.equals('foo')); |
| 9603 checkUnnamed2384(o.localTrafficSelector); | 9675 checkUnnamed2420(o.localTrafficSelector); |
| 9604 unittest.expect(o.name, unittest.equals('foo')); | 9676 unittest.expect(o.name, unittest.equals('foo')); |
| 9605 unittest.expect(o.peerIp, unittest.equals('foo')); | 9677 unittest.expect(o.peerIp, unittest.equals('foo')); |
| 9606 unittest.expect(o.region, unittest.equals('foo')); | 9678 unittest.expect(o.region, unittest.equals('foo')); |
| 9607 checkUnnamed2385(o.remoteTrafficSelector); | 9679 checkUnnamed2421(o.remoteTrafficSelector); |
| 9608 unittest.expect(o.router, unittest.equals('foo')); | 9680 unittest.expect(o.router, unittest.equals('foo')); |
| 9609 unittest.expect(o.selfLink, unittest.equals('foo')); | 9681 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9610 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 9682 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 9611 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 9683 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 9612 unittest.expect(o.status, unittest.equals('foo')); | 9684 unittest.expect(o.status, unittest.equals('foo')); |
| 9613 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 9685 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 9614 } | 9686 } |
| 9615 buildCounterVpnTunnel--; | 9687 buildCounterVpnTunnel--; |
| 9616 } | 9688 } |
| 9617 | 9689 |
| 9618 buildUnnamed2386() { | 9690 buildUnnamed2422() { |
| 9619 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 9691 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 9620 o["x"] = buildVpnTunnelsScopedList(); | 9692 o["x"] = buildVpnTunnelsScopedList(); |
| 9621 o["y"] = buildVpnTunnelsScopedList(); | 9693 o["y"] = buildVpnTunnelsScopedList(); |
| 9622 return o; | 9694 return o; |
| 9623 } | 9695 } |
| 9624 | 9696 |
| 9625 checkUnnamed2386(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 9697 checkUnnamed2422(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 9626 unittest.expect(o, unittest.hasLength(2)); | 9698 unittest.expect(o, unittest.hasLength(2)); |
| 9627 checkVpnTunnelsScopedList(o["x"]); | 9699 checkVpnTunnelsScopedList(o["x"]); |
| 9628 checkVpnTunnelsScopedList(o["y"]); | 9700 checkVpnTunnelsScopedList(o["y"]); |
| 9629 } | 9701 } |
| 9630 | 9702 |
| 9631 core.int buildCounterVpnTunnelAggregatedList = 0; | 9703 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 9632 buildVpnTunnelAggregatedList() { | 9704 buildVpnTunnelAggregatedList() { |
| 9633 var o = new api.VpnTunnelAggregatedList(); | 9705 var o = new api.VpnTunnelAggregatedList(); |
| 9634 buildCounterVpnTunnelAggregatedList++; | 9706 buildCounterVpnTunnelAggregatedList++; |
| 9635 if (buildCounterVpnTunnelAggregatedList < 3) { | 9707 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 9636 o.id = "foo"; | 9708 o.id = "foo"; |
| 9637 o.items = buildUnnamed2386(); | 9709 o.items = buildUnnamed2422(); |
| 9638 o.kind = "foo"; | 9710 o.kind = "foo"; |
| 9639 o.nextPageToken = "foo"; | 9711 o.nextPageToken = "foo"; |
| 9640 o.selfLink = "foo"; | 9712 o.selfLink = "foo"; |
| 9641 } | 9713 } |
| 9642 buildCounterVpnTunnelAggregatedList--; | 9714 buildCounterVpnTunnelAggregatedList--; |
| 9643 return o; | 9715 return o; |
| 9644 } | 9716 } |
| 9645 | 9717 |
| 9646 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 9718 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 9647 buildCounterVpnTunnelAggregatedList++; | 9719 buildCounterVpnTunnelAggregatedList++; |
| 9648 if (buildCounterVpnTunnelAggregatedList < 3) { | 9720 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 9649 unittest.expect(o.id, unittest.equals('foo')); | 9721 unittest.expect(o.id, unittest.equals('foo')); |
| 9650 checkUnnamed2386(o.items); | 9722 checkUnnamed2422(o.items); |
| 9651 unittest.expect(o.kind, unittest.equals('foo')); | 9723 unittest.expect(o.kind, unittest.equals('foo')); |
| 9652 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9724 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9653 unittest.expect(o.selfLink, unittest.equals('foo')); | 9725 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9654 } | 9726 } |
| 9655 buildCounterVpnTunnelAggregatedList--; | 9727 buildCounterVpnTunnelAggregatedList--; |
| 9656 } | 9728 } |
| 9657 | 9729 |
| 9658 buildUnnamed2387() { | 9730 buildUnnamed2423() { |
| 9659 var o = new core.List<api.VpnTunnel>(); | 9731 var o = new core.List<api.VpnTunnel>(); |
| 9660 o.add(buildVpnTunnel()); | 9732 o.add(buildVpnTunnel()); |
| 9661 o.add(buildVpnTunnel()); | 9733 o.add(buildVpnTunnel()); |
| 9662 return o; | 9734 return o; |
| 9663 } | 9735 } |
| 9664 | 9736 |
| 9665 checkUnnamed2387(core.List<api.VpnTunnel> o) { | 9737 checkUnnamed2423(core.List<api.VpnTunnel> o) { |
| 9666 unittest.expect(o, unittest.hasLength(2)); | 9738 unittest.expect(o, unittest.hasLength(2)); |
| 9667 checkVpnTunnel(o[0]); | 9739 checkVpnTunnel(o[0]); |
| 9668 checkVpnTunnel(o[1]); | 9740 checkVpnTunnel(o[1]); |
| 9669 } | 9741 } |
| 9670 | 9742 |
| 9671 core.int buildCounterVpnTunnelList = 0; | 9743 core.int buildCounterVpnTunnelList = 0; |
| 9672 buildVpnTunnelList() { | 9744 buildVpnTunnelList() { |
| 9673 var o = new api.VpnTunnelList(); | 9745 var o = new api.VpnTunnelList(); |
| 9674 buildCounterVpnTunnelList++; | 9746 buildCounterVpnTunnelList++; |
| 9675 if (buildCounterVpnTunnelList < 3) { | 9747 if (buildCounterVpnTunnelList < 3) { |
| 9676 o.id = "foo"; | 9748 o.id = "foo"; |
| 9677 o.items = buildUnnamed2387(); | 9749 o.items = buildUnnamed2423(); |
| 9678 o.kind = "foo"; | 9750 o.kind = "foo"; |
| 9679 o.nextPageToken = "foo"; | 9751 o.nextPageToken = "foo"; |
| 9680 o.selfLink = "foo"; | 9752 o.selfLink = "foo"; |
| 9681 } | 9753 } |
| 9682 buildCounterVpnTunnelList--; | 9754 buildCounterVpnTunnelList--; |
| 9683 return o; | 9755 return o; |
| 9684 } | 9756 } |
| 9685 | 9757 |
| 9686 checkVpnTunnelList(api.VpnTunnelList o) { | 9758 checkVpnTunnelList(api.VpnTunnelList o) { |
| 9687 buildCounterVpnTunnelList++; | 9759 buildCounterVpnTunnelList++; |
| 9688 if (buildCounterVpnTunnelList < 3) { | 9760 if (buildCounterVpnTunnelList < 3) { |
| 9689 unittest.expect(o.id, unittest.equals('foo')); | 9761 unittest.expect(o.id, unittest.equals('foo')); |
| 9690 checkUnnamed2387(o.items); | 9762 checkUnnamed2423(o.items); |
| 9691 unittest.expect(o.kind, unittest.equals('foo')); | 9763 unittest.expect(o.kind, unittest.equals('foo')); |
| 9692 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9764 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9693 unittest.expect(o.selfLink, unittest.equals('foo')); | 9765 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9694 } | 9766 } |
| 9695 buildCounterVpnTunnelList--; | 9767 buildCounterVpnTunnelList--; |
| 9696 } | 9768 } |
| 9697 | 9769 |
| 9698 buildUnnamed2388() { | 9770 buildUnnamed2424() { |
| 9699 var o = new core.List<api.VpnTunnel>(); | 9771 var o = new core.List<api.VpnTunnel>(); |
| 9700 o.add(buildVpnTunnel()); | 9772 o.add(buildVpnTunnel()); |
| 9701 o.add(buildVpnTunnel()); | 9773 o.add(buildVpnTunnel()); |
| 9702 return o; | 9774 return o; |
| 9703 } | 9775 } |
| 9704 | 9776 |
| 9705 checkUnnamed2388(core.List<api.VpnTunnel> o) { | 9777 checkUnnamed2424(core.List<api.VpnTunnel> o) { |
| 9706 unittest.expect(o, unittest.hasLength(2)); | 9778 unittest.expect(o, unittest.hasLength(2)); |
| 9707 checkVpnTunnel(o[0]); | 9779 checkVpnTunnel(o[0]); |
| 9708 checkVpnTunnel(o[1]); | 9780 checkVpnTunnel(o[1]); |
| 9709 } | 9781 } |
| 9710 | 9782 |
| 9711 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 9783 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 9712 buildVpnTunnelsScopedListWarningData() { | 9784 buildVpnTunnelsScopedListWarningData() { |
| 9713 var o = new api.VpnTunnelsScopedListWarningData(); | 9785 var o = new api.VpnTunnelsScopedListWarningData(); |
| 9714 buildCounterVpnTunnelsScopedListWarningData++; | 9786 buildCounterVpnTunnelsScopedListWarningData++; |
| 9715 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 9787 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 9716 o.key = "foo"; | 9788 o.key = "foo"; |
| 9717 o.value = "foo"; | 9789 o.value = "foo"; |
| 9718 } | 9790 } |
| 9719 buildCounterVpnTunnelsScopedListWarningData--; | 9791 buildCounterVpnTunnelsScopedListWarningData--; |
| 9720 return o; | 9792 return o; |
| 9721 } | 9793 } |
| 9722 | 9794 |
| 9723 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 9795 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 9724 buildCounterVpnTunnelsScopedListWarningData++; | 9796 buildCounterVpnTunnelsScopedListWarningData++; |
| 9725 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 9797 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 9726 unittest.expect(o.key, unittest.equals('foo')); | 9798 unittest.expect(o.key, unittest.equals('foo')); |
| 9727 unittest.expect(o.value, unittest.equals('foo')); | 9799 unittest.expect(o.value, unittest.equals('foo')); |
| 9728 } | 9800 } |
| 9729 buildCounterVpnTunnelsScopedListWarningData--; | 9801 buildCounterVpnTunnelsScopedListWarningData--; |
| 9730 } | 9802 } |
| 9731 | 9803 |
| 9732 buildUnnamed2389() { | 9804 buildUnnamed2425() { |
| 9733 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 9805 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 9734 o.add(buildVpnTunnelsScopedListWarningData()); | 9806 o.add(buildVpnTunnelsScopedListWarningData()); |
| 9735 o.add(buildVpnTunnelsScopedListWarningData()); | 9807 o.add(buildVpnTunnelsScopedListWarningData()); |
| 9736 return o; | 9808 return o; |
| 9737 } | 9809 } |
| 9738 | 9810 |
| 9739 checkUnnamed2389(core.List<api.VpnTunnelsScopedListWarningData> o) { | 9811 checkUnnamed2425(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 9740 unittest.expect(o, unittest.hasLength(2)); | 9812 unittest.expect(o, unittest.hasLength(2)); |
| 9741 checkVpnTunnelsScopedListWarningData(o[0]); | 9813 checkVpnTunnelsScopedListWarningData(o[0]); |
| 9742 checkVpnTunnelsScopedListWarningData(o[1]); | 9814 checkVpnTunnelsScopedListWarningData(o[1]); |
| 9743 } | 9815 } |
| 9744 | 9816 |
| 9745 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 9817 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 9746 buildVpnTunnelsScopedListWarning() { | 9818 buildVpnTunnelsScopedListWarning() { |
| 9747 var o = new api.VpnTunnelsScopedListWarning(); | 9819 var o = new api.VpnTunnelsScopedListWarning(); |
| 9748 buildCounterVpnTunnelsScopedListWarning++; | 9820 buildCounterVpnTunnelsScopedListWarning++; |
| 9749 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 9821 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 9750 o.code = "foo"; | 9822 o.code = "foo"; |
| 9751 o.data = buildUnnamed2389(); | 9823 o.data = buildUnnamed2425(); |
| 9752 o.message = "foo"; | 9824 o.message = "foo"; |
| 9753 } | 9825 } |
| 9754 buildCounterVpnTunnelsScopedListWarning--; | 9826 buildCounterVpnTunnelsScopedListWarning--; |
| 9755 return o; | 9827 return o; |
| 9756 } | 9828 } |
| 9757 | 9829 |
| 9758 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 9830 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 9759 buildCounterVpnTunnelsScopedListWarning++; | 9831 buildCounterVpnTunnelsScopedListWarning++; |
| 9760 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 9832 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 9761 unittest.expect(o.code, unittest.equals('foo')); | 9833 unittest.expect(o.code, unittest.equals('foo')); |
| 9762 checkUnnamed2389(o.data); | 9834 checkUnnamed2425(o.data); |
| 9763 unittest.expect(o.message, unittest.equals('foo')); | 9835 unittest.expect(o.message, unittest.equals('foo')); |
| 9764 } | 9836 } |
| 9765 buildCounterVpnTunnelsScopedListWarning--; | 9837 buildCounterVpnTunnelsScopedListWarning--; |
| 9766 } | 9838 } |
| 9767 | 9839 |
| 9768 core.int buildCounterVpnTunnelsScopedList = 0; | 9840 core.int buildCounterVpnTunnelsScopedList = 0; |
| 9769 buildVpnTunnelsScopedList() { | 9841 buildVpnTunnelsScopedList() { |
| 9770 var o = new api.VpnTunnelsScopedList(); | 9842 var o = new api.VpnTunnelsScopedList(); |
| 9771 buildCounterVpnTunnelsScopedList++; | 9843 buildCounterVpnTunnelsScopedList++; |
| 9772 if (buildCounterVpnTunnelsScopedList < 3) { | 9844 if (buildCounterVpnTunnelsScopedList < 3) { |
| 9773 o.vpnTunnels = buildUnnamed2388(); | 9845 o.vpnTunnels = buildUnnamed2424(); |
| 9774 o.warning = buildVpnTunnelsScopedListWarning(); | 9846 o.warning = buildVpnTunnelsScopedListWarning(); |
| 9775 } | 9847 } |
| 9776 buildCounterVpnTunnelsScopedList--; | 9848 buildCounterVpnTunnelsScopedList--; |
| 9777 return o; | 9849 return o; |
| 9778 } | 9850 } |
| 9779 | 9851 |
| 9780 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 9852 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 9781 buildCounterVpnTunnelsScopedList++; | 9853 buildCounterVpnTunnelsScopedList++; |
| 9782 if (buildCounterVpnTunnelsScopedList < 3) { | 9854 if (buildCounterVpnTunnelsScopedList < 3) { |
| 9783 checkUnnamed2388(o.vpnTunnels); | 9855 checkUnnamed2424(o.vpnTunnels); |
| 9784 checkVpnTunnelsScopedListWarning(o.warning); | 9856 checkVpnTunnelsScopedListWarning(o.warning); |
| 9785 } | 9857 } |
| 9786 buildCounterVpnTunnelsScopedList--; | 9858 buildCounterVpnTunnelsScopedList--; |
| 9787 } | 9859 } |
| 9788 | 9860 |
| 9789 buildUnnamed2390() { | 9861 buildUnnamed2426() { |
| 9790 var o = new core.List<api.Project>(); | 9862 var o = new core.List<api.Project>(); |
| 9791 o.add(buildProject()); | 9863 o.add(buildProject()); |
| 9792 o.add(buildProject()); | 9864 o.add(buildProject()); |
| 9793 return o; | 9865 return o; |
| 9794 } | 9866 } |
| 9795 | 9867 |
| 9796 checkUnnamed2390(core.List<api.Project> o) { | 9868 checkUnnamed2426(core.List<api.Project> o) { |
| 9797 unittest.expect(o, unittest.hasLength(2)); | 9869 unittest.expect(o, unittest.hasLength(2)); |
| 9798 checkProject(o[0]); | 9870 checkProject(o[0]); |
| 9799 checkProject(o[1]); | 9871 checkProject(o[1]); |
| 9800 } | 9872 } |
| 9801 | 9873 |
| 9802 core.int buildCounterXpnHostList = 0; | 9874 core.int buildCounterXpnHostList = 0; |
| 9803 buildXpnHostList() { | 9875 buildXpnHostList() { |
| 9804 var o = new api.XpnHostList(); | 9876 var o = new api.XpnHostList(); |
| 9805 buildCounterXpnHostList++; | 9877 buildCounterXpnHostList++; |
| 9806 if (buildCounterXpnHostList < 3) { | 9878 if (buildCounterXpnHostList < 3) { |
| 9807 o.id = "foo"; | 9879 o.id = "foo"; |
| 9808 o.items = buildUnnamed2390(); | 9880 o.items = buildUnnamed2426(); |
| 9809 o.kind = "foo"; | 9881 o.kind = "foo"; |
| 9810 o.nextPageToken = "foo"; | 9882 o.nextPageToken = "foo"; |
| 9811 o.selfLink = "foo"; | 9883 o.selfLink = "foo"; |
| 9812 } | 9884 } |
| 9813 buildCounterXpnHostList--; | 9885 buildCounterXpnHostList--; |
| 9814 return o; | 9886 return o; |
| 9815 } | 9887 } |
| 9816 | 9888 |
| 9817 checkXpnHostList(api.XpnHostList o) { | 9889 checkXpnHostList(api.XpnHostList o) { |
| 9818 buildCounterXpnHostList++; | 9890 buildCounterXpnHostList++; |
| 9819 if (buildCounterXpnHostList < 3) { | 9891 if (buildCounterXpnHostList < 3) { |
| 9820 unittest.expect(o.id, unittest.equals('foo')); | 9892 unittest.expect(o.id, unittest.equals('foo')); |
| 9821 checkUnnamed2390(o.items); | 9893 checkUnnamed2426(o.items); |
| 9822 unittest.expect(o.kind, unittest.equals('foo')); | 9894 unittest.expect(o.kind, unittest.equals('foo')); |
| 9823 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9895 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9824 unittest.expect(o.selfLink, unittest.equals('foo')); | 9896 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9825 } | 9897 } |
| 9826 buildCounterXpnHostList--; | 9898 buildCounterXpnHostList--; |
| 9827 } | 9899 } |
| 9828 | 9900 |
| 9829 core.int buildCounterXpnResourceId = 0; | 9901 core.int buildCounterXpnResourceId = 0; |
| 9830 buildXpnResourceId() { | 9902 buildXpnResourceId() { |
| 9831 var o = new api.XpnResourceId(); | 9903 var o = new api.XpnResourceId(); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9875 unittest.expect(o.id, unittest.equals('foo')); | 9947 unittest.expect(o.id, unittest.equals('foo')); |
| 9876 unittest.expect(o.kind, unittest.equals('foo')); | 9948 unittest.expect(o.kind, unittest.equals('foo')); |
| 9877 unittest.expect(o.name, unittest.equals('foo')); | 9949 unittest.expect(o.name, unittest.equals('foo')); |
| 9878 unittest.expect(o.region, unittest.equals('foo')); | 9950 unittest.expect(o.region, unittest.equals('foo')); |
| 9879 unittest.expect(o.selfLink, unittest.equals('foo')); | 9951 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9880 unittest.expect(o.status, unittest.equals('foo')); | 9952 unittest.expect(o.status, unittest.equals('foo')); |
| 9881 } | 9953 } |
| 9882 buildCounterZone--; | 9954 buildCounterZone--; |
| 9883 } | 9955 } |
| 9884 | 9956 |
| 9885 buildUnnamed2391() { | 9957 buildUnnamed2427() { |
| 9886 var o = new core.List<api.Zone>(); | 9958 var o = new core.List<api.Zone>(); |
| 9887 o.add(buildZone()); | 9959 o.add(buildZone()); |
| 9888 o.add(buildZone()); | 9960 o.add(buildZone()); |
| 9889 return o; | 9961 return o; |
| 9890 } | 9962 } |
| 9891 | 9963 |
| 9892 checkUnnamed2391(core.List<api.Zone> o) { | 9964 checkUnnamed2427(core.List<api.Zone> o) { |
| 9893 unittest.expect(o, unittest.hasLength(2)); | 9965 unittest.expect(o, unittest.hasLength(2)); |
| 9894 checkZone(o[0]); | 9966 checkZone(o[0]); |
| 9895 checkZone(o[1]); | 9967 checkZone(o[1]); |
| 9896 } | 9968 } |
| 9897 | 9969 |
| 9898 core.int buildCounterZoneList = 0; | 9970 core.int buildCounterZoneList = 0; |
| 9899 buildZoneList() { | 9971 buildZoneList() { |
| 9900 var o = new api.ZoneList(); | 9972 var o = new api.ZoneList(); |
| 9901 buildCounterZoneList++; | 9973 buildCounterZoneList++; |
| 9902 if (buildCounterZoneList < 3) { | 9974 if (buildCounterZoneList < 3) { |
| 9903 o.id = "foo"; | 9975 o.id = "foo"; |
| 9904 o.items = buildUnnamed2391(); | 9976 o.items = buildUnnamed2427(); |
| 9905 o.kind = "foo"; | 9977 o.kind = "foo"; |
| 9906 o.nextPageToken = "foo"; | 9978 o.nextPageToken = "foo"; |
| 9907 o.selfLink = "foo"; | 9979 o.selfLink = "foo"; |
| 9908 } | 9980 } |
| 9909 buildCounterZoneList--; | 9981 buildCounterZoneList--; |
| 9910 return o; | 9982 return o; |
| 9911 } | 9983 } |
| 9912 | 9984 |
| 9913 checkZoneList(api.ZoneList o) { | 9985 checkZoneList(api.ZoneList o) { |
| 9914 buildCounterZoneList++; | 9986 buildCounterZoneList++; |
| 9915 if (buildCounterZoneList < 3) { | 9987 if (buildCounterZoneList < 3) { |
| 9916 unittest.expect(o.id, unittest.equals('foo')); | 9988 unittest.expect(o.id, unittest.equals('foo')); |
| 9917 checkUnnamed2391(o.items); | 9989 checkUnnamed2427(o.items); |
| 9918 unittest.expect(o.kind, unittest.equals('foo')); | 9990 unittest.expect(o.kind, unittest.equals('foo')); |
| 9919 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 9991 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 9920 unittest.expect(o.selfLink, unittest.equals('foo')); | 9992 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 9921 } | 9993 } |
| 9922 buildCounterZoneList--; | 9994 buildCounterZoneList--; |
| 9923 } | 9995 } |
| 9924 | 9996 |
| 9925 buildUnnamed2392() { | 9997 buildUnnamed2428() { |
| 9926 var o = new core.Map<core.String, core.String>(); | 9998 var o = new core.Map<core.String, core.String>(); |
| 9927 o["x"] = "foo"; | 9999 o["x"] = "foo"; |
| 9928 o["y"] = "foo"; | 10000 o["y"] = "foo"; |
| 9929 return o; | 10001 return o; |
| 9930 } | 10002 } |
| 9931 | 10003 |
| 9932 checkUnnamed2392(core.Map<core.String, core.String> o) { | 10004 checkUnnamed2428(core.Map<core.String, core.String> o) { |
| 9933 unittest.expect(o, unittest.hasLength(2)); | 10005 unittest.expect(o, unittest.hasLength(2)); |
| 9934 unittest.expect(o["x"], unittest.equals('foo')); | 10006 unittest.expect(o["x"], unittest.equals('foo')); |
| 9935 unittest.expect(o["y"], unittest.equals('foo')); | 10007 unittest.expect(o["y"], unittest.equals('foo')); |
| 9936 } | 10008 } |
| 9937 | 10009 |
| 9938 core.int buildCounterZoneSetLabelsRequest = 0; | 10010 core.int buildCounterZoneSetLabelsRequest = 0; |
| 9939 buildZoneSetLabelsRequest() { | 10011 buildZoneSetLabelsRequest() { |
| 9940 var o = new api.ZoneSetLabelsRequest(); | 10012 var o = new api.ZoneSetLabelsRequest(); |
| 9941 buildCounterZoneSetLabelsRequest++; | 10013 buildCounterZoneSetLabelsRequest++; |
| 9942 if (buildCounterZoneSetLabelsRequest < 3) { | 10014 if (buildCounterZoneSetLabelsRequest < 3) { |
| 9943 o.labelFingerprint = "foo"; | 10015 o.labelFingerprint = "foo"; |
| 9944 o.labels = buildUnnamed2392(); | 10016 o.labels = buildUnnamed2428(); |
| 9945 } | 10017 } |
| 9946 buildCounterZoneSetLabelsRequest--; | 10018 buildCounterZoneSetLabelsRequest--; |
| 9947 return o; | 10019 return o; |
| 9948 } | 10020 } |
| 9949 | 10021 |
| 9950 checkZoneSetLabelsRequest(api.ZoneSetLabelsRequest o) { | 10022 checkZoneSetLabelsRequest(api.ZoneSetLabelsRequest o) { |
| 9951 buildCounterZoneSetLabelsRequest++; | 10023 buildCounterZoneSetLabelsRequest++; |
| 9952 if (buildCounterZoneSetLabelsRequest < 3) { | 10024 if (buildCounterZoneSetLabelsRequest < 3) { |
| 9953 unittest.expect(o.labelFingerprint, unittest.equals('foo')); | 10025 unittest.expect(o.labelFingerprint, unittest.equals('foo')); |
| 9954 checkUnnamed2392(o.labels); | 10026 checkUnnamed2428(o.labels); |
| 9955 } | 10027 } |
| 9956 buildCounterZoneSetLabelsRequest--; | 10028 buildCounterZoneSetLabelsRequest--; |
| 9957 } | 10029 } |
| 9958 | 10030 |
| 9959 | 10031 |
| 9960 main() { | 10032 main() { |
| 9961 unittest.group("obj-schema-AcceleratorConfig", () { | 10033 unittest.group("obj-schema-AcceleratorConfig", () { |
| 9962 unittest.test("to-json--from-json", () { | 10034 unittest.test("to-json--from-json", () { |
| 9963 var o = buildAcceleratorConfig(); | 10035 var o = buildAcceleratorConfig(); |
| 9964 var od = new api.AcceleratorConfig.fromJson(o.toJson()); | 10036 var od = new api.AcceleratorConfig.fromJson(o.toJson()); |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10077 | 10149 |
| 10078 unittest.group("obj-schema-AddressesScopedList", () { | 10150 unittest.group("obj-schema-AddressesScopedList", () { |
| 10079 unittest.test("to-json--from-json", () { | 10151 unittest.test("to-json--from-json", () { |
| 10080 var o = buildAddressesScopedList(); | 10152 var o = buildAddressesScopedList(); |
| 10081 var od = new api.AddressesScopedList.fromJson(o.toJson()); | 10153 var od = new api.AddressesScopedList.fromJson(o.toJson()); |
| 10082 checkAddressesScopedList(od); | 10154 checkAddressesScopedList(od); |
| 10083 }); | 10155 }); |
| 10084 }); | 10156 }); |
| 10085 | 10157 |
| 10086 | 10158 |
| 10159 unittest.group("obj-schema-AliasIpRange", () { |
| 10160 unittest.test("to-json--from-json", () { |
| 10161 var o = buildAliasIpRange(); |
| 10162 var od = new api.AliasIpRange.fromJson(o.toJson()); |
| 10163 checkAliasIpRange(od); |
| 10164 }); |
| 10165 }); |
| 10166 |
| 10167 |
| 10087 unittest.group("obj-schema-AttachedDisk", () { | 10168 unittest.group("obj-schema-AttachedDisk", () { |
| 10088 unittest.test("to-json--from-json", () { | 10169 unittest.test("to-json--from-json", () { |
| 10089 var o = buildAttachedDisk(); | 10170 var o = buildAttachedDisk(); |
| 10090 var od = new api.AttachedDisk.fromJson(o.toJson()); | 10171 var od = new api.AttachedDisk.fromJson(o.toJson()); |
| 10091 checkAttachedDisk(od); | 10172 checkAttachedDisk(od); |
| 10092 }); | 10173 }); |
| 10093 }); | 10174 }); |
| 10094 | 10175 |
| 10095 | 10176 |
| 10096 unittest.group("obj-schema-AttachedDiskInitializeParams", () { | 10177 unittest.group("obj-schema-AttachedDiskInitializeParams", () { |
| (...skipping 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11877 | 11958 |
| 11878 unittest.group("obj-schema-SubnetworkList", () { | 11959 unittest.group("obj-schema-SubnetworkList", () { |
| 11879 unittest.test("to-json--from-json", () { | 11960 unittest.test("to-json--from-json", () { |
| 11880 var o = buildSubnetworkList(); | 11961 var o = buildSubnetworkList(); |
| 11881 var od = new api.SubnetworkList.fromJson(o.toJson()); | 11962 var od = new api.SubnetworkList.fromJson(o.toJson()); |
| 11882 checkSubnetworkList(od); | 11963 checkSubnetworkList(od); |
| 11883 }); | 11964 }); |
| 11884 }); | 11965 }); |
| 11885 | 11966 |
| 11886 | 11967 |
| 11968 unittest.group("obj-schema-SubnetworkSecondaryRange", () { |
| 11969 unittest.test("to-json--from-json", () { |
| 11970 var o = buildSubnetworkSecondaryRange(); |
| 11971 var od = new api.SubnetworkSecondaryRange.fromJson(o.toJson()); |
| 11972 checkSubnetworkSecondaryRange(od); |
| 11973 }); |
| 11974 }); |
| 11975 |
| 11976 |
| 11887 unittest.group("obj-schema-SubnetworksExpandIpCidrRangeRequest", () { | 11977 unittest.group("obj-schema-SubnetworksExpandIpCidrRangeRequest", () { |
| 11888 unittest.test("to-json--from-json", () { | 11978 unittest.test("to-json--from-json", () { |
| 11889 var o = buildSubnetworksExpandIpCidrRangeRequest(); | 11979 var o = buildSubnetworksExpandIpCidrRangeRequest(); |
| 11890 var od = new api.SubnetworksExpandIpCidrRangeRequest.fromJson(o.toJson()); | 11980 var od = new api.SubnetworksExpandIpCidrRangeRequest.fromJson(o.toJson()); |
| 11891 checkSubnetworksExpandIpCidrRangeRequest(od); | 11981 checkSubnetworksExpandIpCidrRangeRequest(od); |
| 11892 }); | 11982 }); |
| 11893 }); | 11983 }); |
| 11894 | 11984 |
| 11895 | 11985 |
| 11896 unittest.group("obj-schema-SubnetworksScopedListWarningData", () { | 11986 unittest.group("obj-schema-SubnetworksScopedListWarningData", () { |
| (...skipping 14239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 26136 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, orde
rBy: arg_orderBy, pageToken: arg_pageToken).then(unittest.expectAsync1(((api.Zon
eList response) { | 26226 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, orde
rBy: arg_orderBy, pageToken: arg_pageToken).then(unittest.expectAsync1(((api.Zon
eList response) { |
| 26137 checkZoneList(response); | 26227 checkZoneList(response); |
| 26138 }))); | 26228 }))); |
| 26139 }); | 26229 }); |
| 26140 | 26230 |
| 26141 }); | 26231 }); |
| 26142 | 26232 |
| 26143 | 26233 |
| 26144 } | 26234 } |
| 26145 | 26235 |
| OLD | NEW |