| OLD | NEW |
| 1 library googleapis.compute.v1.test; | 1 library googleapis.compute.v1.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 buildCounterAccessConfig++; | 69 buildCounterAccessConfig++; |
| 70 if (buildCounterAccessConfig < 3) { | 70 if (buildCounterAccessConfig < 3) { |
| 71 unittest.expect(o.kind, unittest.equals('foo')); | 71 unittest.expect(o.kind, unittest.equals('foo')); |
| 72 unittest.expect(o.name, unittest.equals('foo')); | 72 unittest.expect(o.name, unittest.equals('foo')); |
| 73 unittest.expect(o.natIP, unittest.equals('foo')); | 73 unittest.expect(o.natIP, unittest.equals('foo')); |
| 74 unittest.expect(o.type, unittest.equals('foo')); | 74 unittest.expect(o.type, unittest.equals('foo')); |
| 75 } | 75 } |
| 76 buildCounterAccessConfig--; | 76 buildCounterAccessConfig--; |
| 77 } | 77 } |
| 78 | 78 |
| 79 buildUnnamed1985() { | 79 buildUnnamed2079() { |
| 80 var o = new core.List<core.String>(); | 80 var o = new core.List<core.String>(); |
| 81 o.add("foo"); | 81 o.add("foo"); |
| 82 o.add("foo"); | 82 o.add("foo"); |
| 83 return o; | 83 return o; |
| 84 } | 84 } |
| 85 | 85 |
| 86 checkUnnamed1985(core.List<core.String> o) { | 86 checkUnnamed2079(core.List<core.String> o) { |
| 87 unittest.expect(o, unittest.hasLength(2)); | 87 unittest.expect(o, unittest.hasLength(2)); |
| 88 unittest.expect(o[0], unittest.equals('foo')); | 88 unittest.expect(o[0], unittest.equals('foo')); |
| 89 unittest.expect(o[1], unittest.equals('foo')); | 89 unittest.expect(o[1], unittest.equals('foo')); |
| 90 } | 90 } |
| 91 | 91 |
| 92 core.int buildCounterAddress = 0; | 92 core.int buildCounterAddress = 0; |
| 93 buildAddress() { | 93 buildAddress() { |
| 94 var o = new api.Address(); | 94 var o = new api.Address(); |
| 95 buildCounterAddress++; | 95 buildCounterAddress++; |
| 96 if (buildCounterAddress < 3) { | 96 if (buildCounterAddress < 3) { |
| 97 o.address = "foo"; | 97 o.address = "foo"; |
| 98 o.creationTimestamp = "foo"; | 98 o.creationTimestamp = "foo"; |
| 99 o.description = "foo"; | 99 o.description = "foo"; |
| 100 o.id = "foo"; | 100 o.id = "foo"; |
| 101 o.kind = "foo"; | 101 o.kind = "foo"; |
| 102 o.name = "foo"; | 102 o.name = "foo"; |
| 103 o.region = "foo"; | 103 o.region = "foo"; |
| 104 o.selfLink = "foo"; | 104 o.selfLink = "foo"; |
| 105 o.status = "foo"; | 105 o.status = "foo"; |
| 106 o.users = buildUnnamed1985(); | 106 o.users = buildUnnamed2079(); |
| 107 } | 107 } |
| 108 buildCounterAddress--; | 108 buildCounterAddress--; |
| 109 return o; | 109 return o; |
| 110 } | 110 } |
| 111 | 111 |
| 112 checkAddress(api.Address o) { | 112 checkAddress(api.Address o) { |
| 113 buildCounterAddress++; | 113 buildCounterAddress++; |
| 114 if (buildCounterAddress < 3) { | 114 if (buildCounterAddress < 3) { |
| 115 unittest.expect(o.address, unittest.equals('foo')); | 115 unittest.expect(o.address, unittest.equals('foo')); |
| 116 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 116 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 117 unittest.expect(o.description, unittest.equals('foo')); | 117 unittest.expect(o.description, unittest.equals('foo')); |
| 118 unittest.expect(o.id, unittest.equals('foo')); | 118 unittest.expect(o.id, unittest.equals('foo')); |
| 119 unittest.expect(o.kind, unittest.equals('foo')); | 119 unittest.expect(o.kind, unittest.equals('foo')); |
| 120 unittest.expect(o.name, unittest.equals('foo')); | 120 unittest.expect(o.name, unittest.equals('foo')); |
| 121 unittest.expect(o.region, unittest.equals('foo')); | 121 unittest.expect(o.region, unittest.equals('foo')); |
| 122 unittest.expect(o.selfLink, unittest.equals('foo')); | 122 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 123 unittest.expect(o.status, unittest.equals('foo')); | 123 unittest.expect(o.status, unittest.equals('foo')); |
| 124 checkUnnamed1985(o.users); | 124 checkUnnamed2079(o.users); |
| 125 } | 125 } |
| 126 buildCounterAddress--; | 126 buildCounterAddress--; |
| 127 } | 127 } |
| 128 | 128 |
| 129 buildUnnamed1986() { | 129 buildUnnamed2080() { |
| 130 var o = new core.Map<core.String, api.AddressesScopedList>(); | 130 var o = new core.Map<core.String, api.AddressesScopedList>(); |
| 131 o["x"] = buildAddressesScopedList(); | 131 o["x"] = buildAddressesScopedList(); |
| 132 o["y"] = buildAddressesScopedList(); | 132 o["y"] = buildAddressesScopedList(); |
| 133 return o; | 133 return o; |
| 134 } | 134 } |
| 135 | 135 |
| 136 checkUnnamed1986(core.Map<core.String, api.AddressesScopedList> o) { | 136 checkUnnamed2080(core.Map<core.String, api.AddressesScopedList> o) { |
| 137 unittest.expect(o, unittest.hasLength(2)); | 137 unittest.expect(o, unittest.hasLength(2)); |
| 138 checkAddressesScopedList(o["x"]); | 138 checkAddressesScopedList(o["x"]); |
| 139 checkAddressesScopedList(o["y"]); | 139 checkAddressesScopedList(o["y"]); |
| 140 } | 140 } |
| 141 | 141 |
| 142 core.int buildCounterAddressAggregatedList = 0; | 142 core.int buildCounterAddressAggregatedList = 0; |
| 143 buildAddressAggregatedList() { | 143 buildAddressAggregatedList() { |
| 144 var o = new api.AddressAggregatedList(); | 144 var o = new api.AddressAggregatedList(); |
| 145 buildCounterAddressAggregatedList++; | 145 buildCounterAddressAggregatedList++; |
| 146 if (buildCounterAddressAggregatedList < 3) { | 146 if (buildCounterAddressAggregatedList < 3) { |
| 147 o.id = "foo"; | 147 o.id = "foo"; |
| 148 o.items = buildUnnamed1986(); | 148 o.items = buildUnnamed2080(); |
| 149 o.kind = "foo"; | 149 o.kind = "foo"; |
| 150 o.nextPageToken = "foo"; | 150 o.nextPageToken = "foo"; |
| 151 o.selfLink = "foo"; | 151 o.selfLink = "foo"; |
| 152 } | 152 } |
| 153 buildCounterAddressAggregatedList--; | 153 buildCounterAddressAggregatedList--; |
| 154 return o; | 154 return o; |
| 155 } | 155 } |
| 156 | 156 |
| 157 checkAddressAggregatedList(api.AddressAggregatedList o) { | 157 checkAddressAggregatedList(api.AddressAggregatedList o) { |
| 158 buildCounterAddressAggregatedList++; | 158 buildCounterAddressAggregatedList++; |
| 159 if (buildCounterAddressAggregatedList < 3) { | 159 if (buildCounterAddressAggregatedList < 3) { |
| 160 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
| 161 checkUnnamed1986(o.items); | 161 checkUnnamed2080(o.items); |
| 162 unittest.expect(o.kind, unittest.equals('foo')); | 162 unittest.expect(o.kind, unittest.equals('foo')); |
| 163 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 163 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 164 unittest.expect(o.selfLink, unittest.equals('foo')); | 164 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 165 } | 165 } |
| 166 buildCounterAddressAggregatedList--; | 166 buildCounterAddressAggregatedList--; |
| 167 } | 167 } |
| 168 | 168 |
| 169 buildUnnamed1987() { | 169 buildUnnamed2081() { |
| 170 var o = new core.List<api.Address>(); | 170 var o = new core.List<api.Address>(); |
| 171 o.add(buildAddress()); | 171 o.add(buildAddress()); |
| 172 o.add(buildAddress()); | 172 o.add(buildAddress()); |
| 173 return o; | 173 return o; |
| 174 } | 174 } |
| 175 | 175 |
| 176 checkUnnamed1987(core.List<api.Address> o) { | 176 checkUnnamed2081(core.List<api.Address> o) { |
| 177 unittest.expect(o, unittest.hasLength(2)); | 177 unittest.expect(o, unittest.hasLength(2)); |
| 178 checkAddress(o[0]); | 178 checkAddress(o[0]); |
| 179 checkAddress(o[1]); | 179 checkAddress(o[1]); |
| 180 } | 180 } |
| 181 | 181 |
| 182 core.int buildCounterAddressList = 0; | 182 core.int buildCounterAddressList = 0; |
| 183 buildAddressList() { | 183 buildAddressList() { |
| 184 var o = new api.AddressList(); | 184 var o = new api.AddressList(); |
| 185 buildCounterAddressList++; | 185 buildCounterAddressList++; |
| 186 if (buildCounterAddressList < 3) { | 186 if (buildCounterAddressList < 3) { |
| 187 o.id = "foo"; | 187 o.id = "foo"; |
| 188 o.items = buildUnnamed1987(); | 188 o.items = buildUnnamed2081(); |
| 189 o.kind = "foo"; | 189 o.kind = "foo"; |
| 190 o.nextPageToken = "foo"; | 190 o.nextPageToken = "foo"; |
| 191 o.selfLink = "foo"; | 191 o.selfLink = "foo"; |
| 192 } | 192 } |
| 193 buildCounterAddressList--; | 193 buildCounterAddressList--; |
| 194 return o; | 194 return o; |
| 195 } | 195 } |
| 196 | 196 |
| 197 checkAddressList(api.AddressList o) { | 197 checkAddressList(api.AddressList o) { |
| 198 buildCounterAddressList++; | 198 buildCounterAddressList++; |
| 199 if (buildCounterAddressList < 3) { | 199 if (buildCounterAddressList < 3) { |
| 200 unittest.expect(o.id, unittest.equals('foo')); | 200 unittest.expect(o.id, unittest.equals('foo')); |
| 201 checkUnnamed1987(o.items); | 201 checkUnnamed2081(o.items); |
| 202 unittest.expect(o.kind, unittest.equals('foo')); | 202 unittest.expect(o.kind, unittest.equals('foo')); |
| 203 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 203 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 204 unittest.expect(o.selfLink, unittest.equals('foo')); | 204 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 205 } | 205 } |
| 206 buildCounterAddressList--; | 206 buildCounterAddressList--; |
| 207 } | 207 } |
| 208 | 208 |
| 209 buildUnnamed1988() { | 209 buildUnnamed2082() { |
| 210 var o = new core.List<api.Address>(); | 210 var o = new core.List<api.Address>(); |
| 211 o.add(buildAddress()); | 211 o.add(buildAddress()); |
| 212 o.add(buildAddress()); | 212 o.add(buildAddress()); |
| 213 return o; | 213 return o; |
| 214 } | 214 } |
| 215 | 215 |
| 216 checkUnnamed1988(core.List<api.Address> o) { | 216 checkUnnamed2082(core.List<api.Address> o) { |
| 217 unittest.expect(o, unittest.hasLength(2)); | 217 unittest.expect(o, unittest.hasLength(2)); |
| 218 checkAddress(o[0]); | 218 checkAddress(o[0]); |
| 219 checkAddress(o[1]); | 219 checkAddress(o[1]); |
| 220 } | 220 } |
| 221 | 221 |
| 222 core.int buildCounterAddressesScopedListWarningData = 0; | 222 core.int buildCounterAddressesScopedListWarningData = 0; |
| 223 buildAddressesScopedListWarningData() { | 223 buildAddressesScopedListWarningData() { |
| 224 var o = new api.AddressesScopedListWarningData(); | 224 var o = new api.AddressesScopedListWarningData(); |
| 225 buildCounterAddressesScopedListWarningData++; | 225 buildCounterAddressesScopedListWarningData++; |
| 226 if (buildCounterAddressesScopedListWarningData < 3) { | 226 if (buildCounterAddressesScopedListWarningData < 3) { |
| 227 o.key = "foo"; | 227 o.key = "foo"; |
| 228 o.value = "foo"; | 228 o.value = "foo"; |
| 229 } | 229 } |
| 230 buildCounterAddressesScopedListWarningData--; | 230 buildCounterAddressesScopedListWarningData--; |
| 231 return o; | 231 return o; |
| 232 } | 232 } |
| 233 | 233 |
| 234 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { | 234 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { |
| 235 buildCounterAddressesScopedListWarningData++; | 235 buildCounterAddressesScopedListWarningData++; |
| 236 if (buildCounterAddressesScopedListWarningData < 3) { | 236 if (buildCounterAddressesScopedListWarningData < 3) { |
| 237 unittest.expect(o.key, unittest.equals('foo')); | 237 unittest.expect(o.key, unittest.equals('foo')); |
| 238 unittest.expect(o.value, unittest.equals('foo')); | 238 unittest.expect(o.value, unittest.equals('foo')); |
| 239 } | 239 } |
| 240 buildCounterAddressesScopedListWarningData--; | 240 buildCounterAddressesScopedListWarningData--; |
| 241 } | 241 } |
| 242 | 242 |
| 243 buildUnnamed1989() { | 243 buildUnnamed2083() { |
| 244 var o = new core.List<api.AddressesScopedListWarningData>(); | 244 var o = new core.List<api.AddressesScopedListWarningData>(); |
| 245 o.add(buildAddressesScopedListWarningData()); | 245 o.add(buildAddressesScopedListWarningData()); |
| 246 o.add(buildAddressesScopedListWarningData()); | 246 o.add(buildAddressesScopedListWarningData()); |
| 247 return o; | 247 return o; |
| 248 } | 248 } |
| 249 | 249 |
| 250 checkUnnamed1989(core.List<api.AddressesScopedListWarningData> o) { | 250 checkUnnamed2083(core.List<api.AddressesScopedListWarningData> o) { |
| 251 unittest.expect(o, unittest.hasLength(2)); | 251 unittest.expect(o, unittest.hasLength(2)); |
| 252 checkAddressesScopedListWarningData(o[0]); | 252 checkAddressesScopedListWarningData(o[0]); |
| 253 checkAddressesScopedListWarningData(o[1]); | 253 checkAddressesScopedListWarningData(o[1]); |
| 254 } | 254 } |
| 255 | 255 |
| 256 core.int buildCounterAddressesScopedListWarning = 0; | 256 core.int buildCounterAddressesScopedListWarning = 0; |
| 257 buildAddressesScopedListWarning() { | 257 buildAddressesScopedListWarning() { |
| 258 var o = new api.AddressesScopedListWarning(); | 258 var o = new api.AddressesScopedListWarning(); |
| 259 buildCounterAddressesScopedListWarning++; | 259 buildCounterAddressesScopedListWarning++; |
| 260 if (buildCounterAddressesScopedListWarning < 3) { | 260 if (buildCounterAddressesScopedListWarning < 3) { |
| 261 o.code = "foo"; | 261 o.code = "foo"; |
| 262 o.data = buildUnnamed1989(); | 262 o.data = buildUnnamed2083(); |
| 263 o.message = "foo"; | 263 o.message = "foo"; |
| 264 } | 264 } |
| 265 buildCounterAddressesScopedListWarning--; | 265 buildCounterAddressesScopedListWarning--; |
| 266 return o; | 266 return o; |
| 267 } | 267 } |
| 268 | 268 |
| 269 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { | 269 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { |
| 270 buildCounterAddressesScopedListWarning++; | 270 buildCounterAddressesScopedListWarning++; |
| 271 if (buildCounterAddressesScopedListWarning < 3) { | 271 if (buildCounterAddressesScopedListWarning < 3) { |
| 272 unittest.expect(o.code, unittest.equals('foo')); | 272 unittest.expect(o.code, unittest.equals('foo')); |
| 273 checkUnnamed1989(o.data); | 273 checkUnnamed2083(o.data); |
| 274 unittest.expect(o.message, unittest.equals('foo')); | 274 unittest.expect(o.message, unittest.equals('foo')); |
| 275 } | 275 } |
| 276 buildCounterAddressesScopedListWarning--; | 276 buildCounterAddressesScopedListWarning--; |
| 277 } | 277 } |
| 278 | 278 |
| 279 core.int buildCounterAddressesScopedList = 0; | 279 core.int buildCounterAddressesScopedList = 0; |
| 280 buildAddressesScopedList() { | 280 buildAddressesScopedList() { |
| 281 var o = new api.AddressesScopedList(); | 281 var o = new api.AddressesScopedList(); |
| 282 buildCounterAddressesScopedList++; | 282 buildCounterAddressesScopedList++; |
| 283 if (buildCounterAddressesScopedList < 3) { | 283 if (buildCounterAddressesScopedList < 3) { |
| 284 o.addresses = buildUnnamed1988(); | 284 o.addresses = buildUnnamed2082(); |
| 285 o.warning = buildAddressesScopedListWarning(); | 285 o.warning = buildAddressesScopedListWarning(); |
| 286 } | 286 } |
| 287 buildCounterAddressesScopedList--; | 287 buildCounterAddressesScopedList--; |
| 288 return o; | 288 return o; |
| 289 } | 289 } |
| 290 | 290 |
| 291 checkAddressesScopedList(api.AddressesScopedList o) { | 291 checkAddressesScopedList(api.AddressesScopedList o) { |
| 292 buildCounterAddressesScopedList++; | 292 buildCounterAddressesScopedList++; |
| 293 if (buildCounterAddressesScopedList < 3) { | 293 if (buildCounterAddressesScopedList < 3) { |
| 294 checkUnnamed1988(o.addresses); | 294 checkUnnamed2082(o.addresses); |
| 295 checkAddressesScopedListWarning(o.warning); | 295 checkAddressesScopedListWarning(o.warning); |
| 296 } | 296 } |
| 297 buildCounterAddressesScopedList--; | 297 buildCounterAddressesScopedList--; |
| 298 } | 298 } |
| 299 | 299 |
| 300 buildUnnamed1990() { | 300 buildUnnamed2084() { |
| 301 var o = new core.List<core.String>(); | 301 var o = new core.List<core.String>(); |
| 302 o.add("foo"); | 302 o.add("foo"); |
| 303 o.add("foo"); | 303 o.add("foo"); |
| 304 return o; | 304 return o; |
| 305 } | 305 } |
| 306 | 306 |
| 307 checkUnnamed1990(core.List<core.String> o) { | 307 checkUnnamed2084(core.List<core.String> o) { |
| 308 unittest.expect(o, unittest.hasLength(2)); | 308 unittest.expect(o, unittest.hasLength(2)); |
| 309 unittest.expect(o[0], unittest.equals('foo')); | 309 unittest.expect(o[0], unittest.equals('foo')); |
| 310 unittest.expect(o[1], unittest.equals('foo')); | 310 unittest.expect(o[1], unittest.equals('foo')); |
| 311 } | 311 } |
| 312 | 312 |
| 313 core.int buildCounterAttachedDisk = 0; | 313 core.int buildCounterAttachedDisk = 0; |
| 314 buildAttachedDisk() { | 314 buildAttachedDisk() { |
| 315 var o = new api.AttachedDisk(); | 315 var o = new api.AttachedDisk(); |
| 316 buildCounterAttachedDisk++; | 316 buildCounterAttachedDisk++; |
| 317 if (buildCounterAttachedDisk < 3) { | 317 if (buildCounterAttachedDisk < 3) { |
| 318 o.autoDelete = true; | 318 o.autoDelete = true; |
| 319 o.boot = true; | 319 o.boot = true; |
| 320 o.deviceName = "foo"; | 320 o.deviceName = "foo"; |
| 321 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 321 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 322 o.index = 42; | 322 o.index = 42; |
| 323 o.initializeParams = buildAttachedDiskInitializeParams(); | 323 o.initializeParams = buildAttachedDiskInitializeParams(); |
| 324 o.interface = "foo"; | 324 o.interface = "foo"; |
| 325 o.kind = "foo"; | 325 o.kind = "foo"; |
| 326 o.licenses = buildUnnamed1990(); | 326 o.licenses = buildUnnamed2084(); |
| 327 o.mode = "foo"; | 327 o.mode = "foo"; |
| 328 o.source = "foo"; | 328 o.source = "foo"; |
| 329 o.type = "foo"; | 329 o.type = "foo"; |
| 330 } | 330 } |
| 331 buildCounterAttachedDisk--; | 331 buildCounterAttachedDisk--; |
| 332 return o; | 332 return o; |
| 333 } | 333 } |
| 334 | 334 |
| 335 checkAttachedDisk(api.AttachedDisk o) { | 335 checkAttachedDisk(api.AttachedDisk o) { |
| 336 buildCounterAttachedDisk++; | 336 buildCounterAttachedDisk++; |
| 337 if (buildCounterAttachedDisk < 3) { | 337 if (buildCounterAttachedDisk < 3) { |
| 338 unittest.expect(o.autoDelete, unittest.isTrue); | 338 unittest.expect(o.autoDelete, unittest.isTrue); |
| 339 unittest.expect(o.boot, unittest.isTrue); | 339 unittest.expect(o.boot, unittest.isTrue); |
| 340 unittest.expect(o.deviceName, unittest.equals('foo')); | 340 unittest.expect(o.deviceName, unittest.equals('foo')); |
| 341 checkCustomerEncryptionKey(o.diskEncryptionKey); | 341 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 342 unittest.expect(o.index, unittest.equals(42)); | 342 unittest.expect(o.index, unittest.equals(42)); |
| 343 checkAttachedDiskInitializeParams(o.initializeParams); | 343 checkAttachedDiskInitializeParams(o.initializeParams); |
| 344 unittest.expect(o.interface, unittest.equals('foo')); | 344 unittest.expect(o.interface, unittest.equals('foo')); |
| 345 unittest.expect(o.kind, unittest.equals('foo')); | 345 unittest.expect(o.kind, unittest.equals('foo')); |
| 346 checkUnnamed1990(o.licenses); | 346 checkUnnamed2084(o.licenses); |
| 347 unittest.expect(o.mode, unittest.equals('foo')); | 347 unittest.expect(o.mode, unittest.equals('foo')); |
| 348 unittest.expect(o.source, unittest.equals('foo')); | 348 unittest.expect(o.source, unittest.equals('foo')); |
| 349 unittest.expect(o.type, unittest.equals('foo')); | 349 unittest.expect(o.type, unittest.equals('foo')); |
| 350 } | 350 } |
| 351 buildCounterAttachedDisk--; | 351 buildCounterAttachedDisk--; |
| 352 } | 352 } |
| 353 | 353 |
| 354 core.int buildCounterAttachedDiskInitializeParams = 0; | 354 core.int buildCounterAttachedDiskInitializeParams = 0; |
| 355 buildAttachedDiskInitializeParams() { | 355 buildAttachedDiskInitializeParams() { |
| 356 var o = new api.AttachedDiskInitializeParams(); | 356 var o = new api.AttachedDiskInitializeParams(); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 unittest.expect(o.kind, unittest.equals('foo')); | 408 unittest.expect(o.kind, unittest.equals('foo')); |
| 409 unittest.expect(o.name, unittest.equals('foo')); | 409 unittest.expect(o.name, unittest.equals('foo')); |
| 410 unittest.expect(o.region, unittest.equals('foo')); | 410 unittest.expect(o.region, unittest.equals('foo')); |
| 411 unittest.expect(o.selfLink, unittest.equals('foo')); | 411 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 412 unittest.expect(o.target, unittest.equals('foo')); | 412 unittest.expect(o.target, unittest.equals('foo')); |
| 413 unittest.expect(o.zone, unittest.equals('foo')); | 413 unittest.expect(o.zone, unittest.equals('foo')); |
| 414 } | 414 } |
| 415 buildCounterAutoscaler--; | 415 buildCounterAutoscaler--; |
| 416 } | 416 } |
| 417 | 417 |
| 418 buildUnnamed1991() { | 418 buildUnnamed2085() { |
| 419 var o = new core.Map<core.String, api.AutoscalersScopedList>(); | 419 var o = new core.Map<core.String, api.AutoscalersScopedList>(); |
| 420 o["x"] = buildAutoscalersScopedList(); | 420 o["x"] = buildAutoscalersScopedList(); |
| 421 o["y"] = buildAutoscalersScopedList(); | 421 o["y"] = buildAutoscalersScopedList(); |
| 422 return o; | 422 return o; |
| 423 } | 423 } |
| 424 | 424 |
| 425 checkUnnamed1991(core.Map<core.String, api.AutoscalersScopedList> o) { | 425 checkUnnamed2085(core.Map<core.String, api.AutoscalersScopedList> o) { |
| 426 unittest.expect(o, unittest.hasLength(2)); | 426 unittest.expect(o, unittest.hasLength(2)); |
| 427 checkAutoscalersScopedList(o["x"]); | 427 checkAutoscalersScopedList(o["x"]); |
| 428 checkAutoscalersScopedList(o["y"]); | 428 checkAutoscalersScopedList(o["y"]); |
| 429 } | 429 } |
| 430 | 430 |
| 431 core.int buildCounterAutoscalerAggregatedList = 0; | 431 core.int buildCounterAutoscalerAggregatedList = 0; |
| 432 buildAutoscalerAggregatedList() { | 432 buildAutoscalerAggregatedList() { |
| 433 var o = new api.AutoscalerAggregatedList(); | 433 var o = new api.AutoscalerAggregatedList(); |
| 434 buildCounterAutoscalerAggregatedList++; | 434 buildCounterAutoscalerAggregatedList++; |
| 435 if (buildCounterAutoscalerAggregatedList < 3) { | 435 if (buildCounterAutoscalerAggregatedList < 3) { |
| 436 o.id = "foo"; | 436 o.id = "foo"; |
| 437 o.items = buildUnnamed1991(); | 437 o.items = buildUnnamed2085(); |
| 438 o.kind = "foo"; | 438 o.kind = "foo"; |
| 439 o.nextPageToken = "foo"; | 439 o.nextPageToken = "foo"; |
| 440 o.selfLink = "foo"; | 440 o.selfLink = "foo"; |
| 441 } | 441 } |
| 442 buildCounterAutoscalerAggregatedList--; | 442 buildCounterAutoscalerAggregatedList--; |
| 443 return o; | 443 return o; |
| 444 } | 444 } |
| 445 | 445 |
| 446 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { | 446 checkAutoscalerAggregatedList(api.AutoscalerAggregatedList o) { |
| 447 buildCounterAutoscalerAggregatedList++; | 447 buildCounterAutoscalerAggregatedList++; |
| 448 if (buildCounterAutoscalerAggregatedList < 3) { | 448 if (buildCounterAutoscalerAggregatedList < 3) { |
| 449 unittest.expect(o.id, unittest.equals('foo')); | 449 unittest.expect(o.id, unittest.equals('foo')); |
| 450 checkUnnamed1991(o.items); | 450 checkUnnamed2085(o.items); |
| 451 unittest.expect(o.kind, unittest.equals('foo')); | 451 unittest.expect(o.kind, unittest.equals('foo')); |
| 452 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 452 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 453 unittest.expect(o.selfLink, unittest.equals('foo')); | 453 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 454 } | 454 } |
| 455 buildCounterAutoscalerAggregatedList--; | 455 buildCounterAutoscalerAggregatedList--; |
| 456 } | 456 } |
| 457 | 457 |
| 458 buildUnnamed1992() { | 458 buildUnnamed2086() { |
| 459 var o = new core.List<api.Autoscaler>(); | 459 var o = new core.List<api.Autoscaler>(); |
| 460 o.add(buildAutoscaler()); | 460 o.add(buildAutoscaler()); |
| 461 o.add(buildAutoscaler()); | 461 o.add(buildAutoscaler()); |
| 462 return o; | 462 return o; |
| 463 } | 463 } |
| 464 | 464 |
| 465 checkUnnamed1992(core.List<api.Autoscaler> o) { | 465 checkUnnamed2086(core.List<api.Autoscaler> o) { |
| 466 unittest.expect(o, unittest.hasLength(2)); | 466 unittest.expect(o, unittest.hasLength(2)); |
| 467 checkAutoscaler(o[0]); | 467 checkAutoscaler(o[0]); |
| 468 checkAutoscaler(o[1]); | 468 checkAutoscaler(o[1]); |
| 469 } | 469 } |
| 470 | 470 |
| 471 core.int buildCounterAutoscalerList = 0; | 471 core.int buildCounterAutoscalerList = 0; |
| 472 buildAutoscalerList() { | 472 buildAutoscalerList() { |
| 473 var o = new api.AutoscalerList(); | 473 var o = new api.AutoscalerList(); |
| 474 buildCounterAutoscalerList++; | 474 buildCounterAutoscalerList++; |
| 475 if (buildCounterAutoscalerList < 3) { | 475 if (buildCounterAutoscalerList < 3) { |
| 476 o.id = "foo"; | 476 o.id = "foo"; |
| 477 o.items = buildUnnamed1992(); | 477 o.items = buildUnnamed2086(); |
| 478 o.kind = "foo"; | 478 o.kind = "foo"; |
| 479 o.nextPageToken = "foo"; | 479 o.nextPageToken = "foo"; |
| 480 o.selfLink = "foo"; | 480 o.selfLink = "foo"; |
| 481 } | 481 } |
| 482 buildCounterAutoscalerList--; | 482 buildCounterAutoscalerList--; |
| 483 return o; | 483 return o; |
| 484 } | 484 } |
| 485 | 485 |
| 486 checkAutoscalerList(api.AutoscalerList o) { | 486 checkAutoscalerList(api.AutoscalerList o) { |
| 487 buildCounterAutoscalerList++; | 487 buildCounterAutoscalerList++; |
| 488 if (buildCounterAutoscalerList < 3) { | 488 if (buildCounterAutoscalerList < 3) { |
| 489 unittest.expect(o.id, unittest.equals('foo')); | 489 unittest.expect(o.id, unittest.equals('foo')); |
| 490 checkUnnamed1992(o.items); | 490 checkUnnamed2086(o.items); |
| 491 unittest.expect(o.kind, unittest.equals('foo')); | 491 unittest.expect(o.kind, unittest.equals('foo')); |
| 492 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 492 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 493 unittest.expect(o.selfLink, unittest.equals('foo')); | 493 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 494 } | 494 } |
| 495 buildCounterAutoscalerList--; | 495 buildCounterAutoscalerList--; |
| 496 } | 496 } |
| 497 | 497 |
| 498 buildUnnamed1993() { | 498 buildUnnamed2087() { |
| 499 var o = new core.List<api.Autoscaler>(); | 499 var o = new core.List<api.Autoscaler>(); |
| 500 o.add(buildAutoscaler()); | 500 o.add(buildAutoscaler()); |
| 501 o.add(buildAutoscaler()); | 501 o.add(buildAutoscaler()); |
| 502 return o; | 502 return o; |
| 503 } | 503 } |
| 504 | 504 |
| 505 checkUnnamed1993(core.List<api.Autoscaler> o) { | 505 checkUnnamed2087(core.List<api.Autoscaler> o) { |
| 506 unittest.expect(o, unittest.hasLength(2)); | 506 unittest.expect(o, unittest.hasLength(2)); |
| 507 checkAutoscaler(o[0]); | 507 checkAutoscaler(o[0]); |
| 508 checkAutoscaler(o[1]); | 508 checkAutoscaler(o[1]); |
| 509 } | 509 } |
| 510 | 510 |
| 511 core.int buildCounterAutoscalersScopedListWarningData = 0; | 511 core.int buildCounterAutoscalersScopedListWarningData = 0; |
| 512 buildAutoscalersScopedListWarningData() { | 512 buildAutoscalersScopedListWarningData() { |
| 513 var o = new api.AutoscalersScopedListWarningData(); | 513 var o = new api.AutoscalersScopedListWarningData(); |
| 514 buildCounterAutoscalersScopedListWarningData++; | 514 buildCounterAutoscalersScopedListWarningData++; |
| 515 if (buildCounterAutoscalersScopedListWarningData < 3) { | 515 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 516 o.key = "foo"; | 516 o.key = "foo"; |
| 517 o.value = "foo"; | 517 o.value = "foo"; |
| 518 } | 518 } |
| 519 buildCounterAutoscalersScopedListWarningData--; | 519 buildCounterAutoscalersScopedListWarningData--; |
| 520 return o; | 520 return o; |
| 521 } | 521 } |
| 522 | 522 |
| 523 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { | 523 checkAutoscalersScopedListWarningData(api.AutoscalersScopedListWarningData o) { |
| 524 buildCounterAutoscalersScopedListWarningData++; | 524 buildCounterAutoscalersScopedListWarningData++; |
| 525 if (buildCounterAutoscalersScopedListWarningData < 3) { | 525 if (buildCounterAutoscalersScopedListWarningData < 3) { |
| 526 unittest.expect(o.key, unittest.equals('foo')); | 526 unittest.expect(o.key, unittest.equals('foo')); |
| 527 unittest.expect(o.value, unittest.equals('foo')); | 527 unittest.expect(o.value, unittest.equals('foo')); |
| 528 } | 528 } |
| 529 buildCounterAutoscalersScopedListWarningData--; | 529 buildCounterAutoscalersScopedListWarningData--; |
| 530 } | 530 } |
| 531 | 531 |
| 532 buildUnnamed1994() { | 532 buildUnnamed2088() { |
| 533 var o = new core.List<api.AutoscalersScopedListWarningData>(); | 533 var o = new core.List<api.AutoscalersScopedListWarningData>(); |
| 534 o.add(buildAutoscalersScopedListWarningData()); | 534 o.add(buildAutoscalersScopedListWarningData()); |
| 535 o.add(buildAutoscalersScopedListWarningData()); | 535 o.add(buildAutoscalersScopedListWarningData()); |
| 536 return o; | 536 return o; |
| 537 } | 537 } |
| 538 | 538 |
| 539 checkUnnamed1994(core.List<api.AutoscalersScopedListWarningData> o) { | 539 checkUnnamed2088(core.List<api.AutoscalersScopedListWarningData> o) { |
| 540 unittest.expect(o, unittest.hasLength(2)); | 540 unittest.expect(o, unittest.hasLength(2)); |
| 541 checkAutoscalersScopedListWarningData(o[0]); | 541 checkAutoscalersScopedListWarningData(o[0]); |
| 542 checkAutoscalersScopedListWarningData(o[1]); | 542 checkAutoscalersScopedListWarningData(o[1]); |
| 543 } | 543 } |
| 544 | 544 |
| 545 core.int buildCounterAutoscalersScopedListWarning = 0; | 545 core.int buildCounterAutoscalersScopedListWarning = 0; |
| 546 buildAutoscalersScopedListWarning() { | 546 buildAutoscalersScopedListWarning() { |
| 547 var o = new api.AutoscalersScopedListWarning(); | 547 var o = new api.AutoscalersScopedListWarning(); |
| 548 buildCounterAutoscalersScopedListWarning++; | 548 buildCounterAutoscalersScopedListWarning++; |
| 549 if (buildCounterAutoscalersScopedListWarning < 3) { | 549 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 550 o.code = "foo"; | 550 o.code = "foo"; |
| 551 o.data = buildUnnamed1994(); | 551 o.data = buildUnnamed2088(); |
| 552 o.message = "foo"; | 552 o.message = "foo"; |
| 553 } | 553 } |
| 554 buildCounterAutoscalersScopedListWarning--; | 554 buildCounterAutoscalersScopedListWarning--; |
| 555 return o; | 555 return o; |
| 556 } | 556 } |
| 557 | 557 |
| 558 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { | 558 checkAutoscalersScopedListWarning(api.AutoscalersScopedListWarning o) { |
| 559 buildCounterAutoscalersScopedListWarning++; | 559 buildCounterAutoscalersScopedListWarning++; |
| 560 if (buildCounterAutoscalersScopedListWarning < 3) { | 560 if (buildCounterAutoscalersScopedListWarning < 3) { |
| 561 unittest.expect(o.code, unittest.equals('foo')); | 561 unittest.expect(o.code, unittest.equals('foo')); |
| 562 checkUnnamed1994(o.data); | 562 checkUnnamed2088(o.data); |
| 563 unittest.expect(o.message, unittest.equals('foo')); | 563 unittest.expect(o.message, unittest.equals('foo')); |
| 564 } | 564 } |
| 565 buildCounterAutoscalersScopedListWarning--; | 565 buildCounterAutoscalersScopedListWarning--; |
| 566 } | 566 } |
| 567 | 567 |
| 568 core.int buildCounterAutoscalersScopedList = 0; | 568 core.int buildCounterAutoscalersScopedList = 0; |
| 569 buildAutoscalersScopedList() { | 569 buildAutoscalersScopedList() { |
| 570 var o = new api.AutoscalersScopedList(); | 570 var o = new api.AutoscalersScopedList(); |
| 571 buildCounterAutoscalersScopedList++; | 571 buildCounterAutoscalersScopedList++; |
| 572 if (buildCounterAutoscalersScopedList < 3) { | 572 if (buildCounterAutoscalersScopedList < 3) { |
| 573 o.autoscalers = buildUnnamed1993(); | 573 o.autoscalers = buildUnnamed2087(); |
| 574 o.warning = buildAutoscalersScopedListWarning(); | 574 o.warning = buildAutoscalersScopedListWarning(); |
| 575 } | 575 } |
| 576 buildCounterAutoscalersScopedList--; | 576 buildCounterAutoscalersScopedList--; |
| 577 return o; | 577 return o; |
| 578 } | 578 } |
| 579 | 579 |
| 580 checkAutoscalersScopedList(api.AutoscalersScopedList o) { | 580 checkAutoscalersScopedList(api.AutoscalersScopedList o) { |
| 581 buildCounterAutoscalersScopedList++; | 581 buildCounterAutoscalersScopedList++; |
| 582 if (buildCounterAutoscalersScopedList < 3) { | 582 if (buildCounterAutoscalersScopedList < 3) { |
| 583 checkUnnamed1993(o.autoscalers); | 583 checkUnnamed2087(o.autoscalers); |
| 584 checkAutoscalersScopedListWarning(o.warning); | 584 checkAutoscalersScopedListWarning(o.warning); |
| 585 } | 585 } |
| 586 buildCounterAutoscalersScopedList--; | 586 buildCounterAutoscalersScopedList--; |
| 587 } | 587 } |
| 588 | 588 |
| 589 buildUnnamed1995() { | 589 buildUnnamed2089() { |
| 590 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); | 590 var o = new core.List<api.AutoscalingPolicyCustomMetricUtilization>(); |
| 591 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 591 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 592 o.add(buildAutoscalingPolicyCustomMetricUtilization()); | 592 o.add(buildAutoscalingPolicyCustomMetricUtilization()); |
| 593 return o; | 593 return o; |
| 594 } | 594 } |
| 595 | 595 |
| 596 checkUnnamed1995(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { | 596 checkUnnamed2089(core.List<api.AutoscalingPolicyCustomMetricUtilization> o) { |
| 597 unittest.expect(o, unittest.hasLength(2)); | 597 unittest.expect(o, unittest.hasLength(2)); |
| 598 checkAutoscalingPolicyCustomMetricUtilization(o[0]); | 598 checkAutoscalingPolicyCustomMetricUtilization(o[0]); |
| 599 checkAutoscalingPolicyCustomMetricUtilization(o[1]); | 599 checkAutoscalingPolicyCustomMetricUtilization(o[1]); |
| 600 } | 600 } |
| 601 | 601 |
| 602 core.int buildCounterAutoscalingPolicy = 0; | 602 core.int buildCounterAutoscalingPolicy = 0; |
| 603 buildAutoscalingPolicy() { | 603 buildAutoscalingPolicy() { |
| 604 var o = new api.AutoscalingPolicy(); | 604 var o = new api.AutoscalingPolicy(); |
| 605 buildCounterAutoscalingPolicy++; | 605 buildCounterAutoscalingPolicy++; |
| 606 if (buildCounterAutoscalingPolicy < 3) { | 606 if (buildCounterAutoscalingPolicy < 3) { |
| 607 o.coolDownPeriodSec = 42; | 607 o.coolDownPeriodSec = 42; |
| 608 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); | 608 o.cpuUtilization = buildAutoscalingPolicyCpuUtilization(); |
| 609 o.customMetricUtilizations = buildUnnamed1995(); | 609 o.customMetricUtilizations = buildUnnamed2089(); |
| 610 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); | 610 o.loadBalancingUtilization = buildAutoscalingPolicyLoadBalancingUtilization(
); |
| 611 o.maxNumReplicas = 42; | 611 o.maxNumReplicas = 42; |
| 612 o.minNumReplicas = 42; | 612 o.minNumReplicas = 42; |
| 613 } | 613 } |
| 614 buildCounterAutoscalingPolicy--; | 614 buildCounterAutoscalingPolicy--; |
| 615 return o; | 615 return o; |
| 616 } | 616 } |
| 617 | 617 |
| 618 checkAutoscalingPolicy(api.AutoscalingPolicy o) { | 618 checkAutoscalingPolicy(api.AutoscalingPolicy o) { |
| 619 buildCounterAutoscalingPolicy++; | 619 buildCounterAutoscalingPolicy++; |
| 620 if (buildCounterAutoscalingPolicy < 3) { | 620 if (buildCounterAutoscalingPolicy < 3) { |
| 621 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); | 621 unittest.expect(o.coolDownPeriodSec, unittest.equals(42)); |
| 622 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); | 622 checkAutoscalingPolicyCpuUtilization(o.cpuUtilization); |
| 623 checkUnnamed1995(o.customMetricUtilizations); | 623 checkUnnamed2089(o.customMetricUtilizations); |
| 624 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); | 624 checkAutoscalingPolicyLoadBalancingUtilization(o.loadBalancingUtilization); |
| 625 unittest.expect(o.maxNumReplicas, unittest.equals(42)); | 625 unittest.expect(o.maxNumReplicas, unittest.equals(42)); |
| 626 unittest.expect(o.minNumReplicas, unittest.equals(42)); | 626 unittest.expect(o.minNumReplicas, unittest.equals(42)); |
| 627 } | 627 } |
| 628 buildCounterAutoscalingPolicy--; | 628 buildCounterAutoscalingPolicy--; |
| 629 } | 629 } |
| 630 | 630 |
| 631 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; | 631 core.int buildCounterAutoscalingPolicyCpuUtilization = 0; |
| 632 buildAutoscalingPolicyCpuUtilization() { | 632 buildAutoscalingPolicyCpuUtilization() { |
| 633 var o = new api.AutoscalingPolicyCpuUtilization(); | 633 var o = new api.AutoscalingPolicyCpuUtilization(); |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 unittest.expect(o.group, unittest.equals('foo')); | 717 unittest.expect(o.group, unittest.equals('foo')); |
| 718 unittest.expect(o.maxConnections, unittest.equals(42)); | 718 unittest.expect(o.maxConnections, unittest.equals(42)); |
| 719 unittest.expect(o.maxConnectionsPerInstance, unittest.equals(42)); | 719 unittest.expect(o.maxConnectionsPerInstance, unittest.equals(42)); |
| 720 unittest.expect(o.maxRate, unittest.equals(42)); | 720 unittest.expect(o.maxRate, unittest.equals(42)); |
| 721 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); | 721 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); |
| 722 unittest.expect(o.maxUtilization, unittest.equals(42.0)); | 722 unittest.expect(o.maxUtilization, unittest.equals(42.0)); |
| 723 } | 723 } |
| 724 buildCounterBackend--; | 724 buildCounterBackend--; |
| 725 } | 725 } |
| 726 | 726 |
| 727 buildUnnamed1996() { | 727 buildUnnamed2090() { |
| 728 var o = new core.List<api.Backend>(); | 728 var o = new core.List<api.Backend>(); |
| 729 o.add(buildBackend()); | 729 o.add(buildBackend()); |
| 730 o.add(buildBackend()); | 730 o.add(buildBackend()); |
| 731 return o; | 731 return o; |
| 732 } | 732 } |
| 733 | 733 |
| 734 checkUnnamed1996(core.List<api.Backend> o) { | 734 checkUnnamed2090(core.List<api.Backend> o) { |
| 735 unittest.expect(o, unittest.hasLength(2)); | 735 unittest.expect(o, unittest.hasLength(2)); |
| 736 checkBackend(o[0]); | 736 checkBackend(o[0]); |
| 737 checkBackend(o[1]); | 737 checkBackend(o[1]); |
| 738 } | 738 } |
| 739 | 739 |
| 740 buildUnnamed1997() { | 740 buildUnnamed2091() { |
| 741 var o = new core.List<core.String>(); | 741 var o = new core.List<core.String>(); |
| 742 o.add("foo"); | 742 o.add("foo"); |
| 743 o.add("foo"); | 743 o.add("foo"); |
| 744 return o; | 744 return o; |
| 745 } | 745 } |
| 746 | 746 |
| 747 checkUnnamed1997(core.List<core.String> o) { | 747 checkUnnamed2091(core.List<core.String> o) { |
| 748 unittest.expect(o, unittest.hasLength(2)); | 748 unittest.expect(o, unittest.hasLength(2)); |
| 749 unittest.expect(o[0], unittest.equals('foo')); | 749 unittest.expect(o[0], unittest.equals('foo')); |
| 750 unittest.expect(o[1], unittest.equals('foo')); | 750 unittest.expect(o[1], unittest.equals('foo')); |
| 751 } | 751 } |
| 752 | 752 |
| 753 core.int buildCounterBackendService = 0; | 753 core.int buildCounterBackendService = 0; |
| 754 buildBackendService() { | 754 buildBackendService() { |
| 755 var o = new api.BackendService(); | 755 var o = new api.BackendService(); |
| 756 buildCounterBackendService++; | 756 buildCounterBackendService++; |
| 757 if (buildCounterBackendService < 3) { | 757 if (buildCounterBackendService < 3) { |
| 758 o.affinityCookieTtlSec = 42; | 758 o.affinityCookieTtlSec = 42; |
| 759 o.backends = buildUnnamed1996(); | 759 o.backends = buildUnnamed2090(); |
| 760 o.connectionDraining = buildConnectionDraining(); | 760 o.connectionDraining = buildConnectionDraining(); |
| 761 o.creationTimestamp = "foo"; | 761 o.creationTimestamp = "foo"; |
| 762 o.description = "foo"; | 762 o.description = "foo"; |
| 763 o.enableCDN = true; | 763 o.enableCDN = true; |
| 764 o.fingerprint = "foo"; | 764 o.fingerprint = "foo"; |
| 765 o.healthChecks = buildUnnamed1997(); | 765 o.healthChecks = buildUnnamed2091(); |
| 766 o.id = "foo"; | 766 o.id = "foo"; |
| 767 o.kind = "foo"; | 767 o.kind = "foo"; |
| 768 o.loadBalancingScheme = "foo"; | 768 o.loadBalancingScheme = "foo"; |
| 769 o.name = "foo"; | 769 o.name = "foo"; |
| 770 o.port = 42; | 770 o.port = 42; |
| 771 o.portName = "foo"; | 771 o.portName = "foo"; |
| 772 o.protocol = "foo"; | 772 o.protocol = "foo"; |
| 773 o.region = "foo"; | 773 o.region = "foo"; |
| 774 o.selfLink = "foo"; | 774 o.selfLink = "foo"; |
| 775 o.sessionAffinity = "foo"; | 775 o.sessionAffinity = "foo"; |
| 776 o.timeoutSec = 42; | 776 o.timeoutSec = 42; |
| 777 } | 777 } |
| 778 buildCounterBackendService--; | 778 buildCounterBackendService--; |
| 779 return o; | 779 return o; |
| 780 } | 780 } |
| 781 | 781 |
| 782 checkBackendService(api.BackendService o) { | 782 checkBackendService(api.BackendService o) { |
| 783 buildCounterBackendService++; | 783 buildCounterBackendService++; |
| 784 if (buildCounterBackendService < 3) { | 784 if (buildCounterBackendService < 3) { |
| 785 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); | 785 unittest.expect(o.affinityCookieTtlSec, unittest.equals(42)); |
| 786 checkUnnamed1996(o.backends); | 786 checkUnnamed2090(o.backends); |
| 787 checkConnectionDraining(o.connectionDraining); | 787 checkConnectionDraining(o.connectionDraining); |
| 788 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 788 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 789 unittest.expect(o.description, unittest.equals('foo')); | 789 unittest.expect(o.description, unittest.equals('foo')); |
| 790 unittest.expect(o.enableCDN, unittest.isTrue); | 790 unittest.expect(o.enableCDN, unittest.isTrue); |
| 791 unittest.expect(o.fingerprint, unittest.equals('foo')); | 791 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 792 checkUnnamed1997(o.healthChecks); | 792 checkUnnamed2091(o.healthChecks); |
| 793 unittest.expect(o.id, unittest.equals('foo')); | 793 unittest.expect(o.id, unittest.equals('foo')); |
| 794 unittest.expect(o.kind, unittest.equals('foo')); | 794 unittest.expect(o.kind, unittest.equals('foo')); |
| 795 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); | 795 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); |
| 796 unittest.expect(o.name, unittest.equals('foo')); | 796 unittest.expect(o.name, unittest.equals('foo')); |
| 797 unittest.expect(o.port, unittest.equals(42)); | 797 unittest.expect(o.port, unittest.equals(42)); |
| 798 unittest.expect(o.portName, unittest.equals('foo')); | 798 unittest.expect(o.portName, unittest.equals('foo')); |
| 799 unittest.expect(o.protocol, unittest.equals('foo')); | 799 unittest.expect(o.protocol, unittest.equals('foo')); |
| 800 unittest.expect(o.region, unittest.equals('foo')); | 800 unittest.expect(o.region, unittest.equals('foo')); |
| 801 unittest.expect(o.selfLink, unittest.equals('foo')); | 801 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 802 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 802 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 803 unittest.expect(o.timeoutSec, unittest.equals(42)); | 803 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 804 } | 804 } |
| 805 buildCounterBackendService--; | 805 buildCounterBackendService--; |
| 806 } | 806 } |
| 807 | 807 |
| 808 buildUnnamed1998() { | 808 buildUnnamed2092() { |
| 809 var o = new core.Map<core.String, api.BackendServicesScopedList>(); | 809 var o = new core.Map<core.String, api.BackendServicesScopedList>(); |
| 810 o["x"] = buildBackendServicesScopedList(); | 810 o["x"] = buildBackendServicesScopedList(); |
| 811 o["y"] = buildBackendServicesScopedList(); | 811 o["y"] = buildBackendServicesScopedList(); |
| 812 return o; | 812 return o; |
| 813 } | 813 } |
| 814 | 814 |
| 815 checkUnnamed1998(core.Map<core.String, api.BackendServicesScopedList> o) { | 815 checkUnnamed2092(core.Map<core.String, api.BackendServicesScopedList> o) { |
| 816 unittest.expect(o, unittest.hasLength(2)); | 816 unittest.expect(o, unittest.hasLength(2)); |
| 817 checkBackendServicesScopedList(o["x"]); | 817 checkBackendServicesScopedList(o["x"]); |
| 818 checkBackendServicesScopedList(o["y"]); | 818 checkBackendServicesScopedList(o["y"]); |
| 819 } | 819 } |
| 820 | 820 |
| 821 core.int buildCounterBackendServiceAggregatedList = 0; | 821 core.int buildCounterBackendServiceAggregatedList = 0; |
| 822 buildBackendServiceAggregatedList() { | 822 buildBackendServiceAggregatedList() { |
| 823 var o = new api.BackendServiceAggregatedList(); | 823 var o = new api.BackendServiceAggregatedList(); |
| 824 buildCounterBackendServiceAggregatedList++; | 824 buildCounterBackendServiceAggregatedList++; |
| 825 if (buildCounterBackendServiceAggregatedList < 3) { | 825 if (buildCounterBackendServiceAggregatedList < 3) { |
| 826 o.id = "foo"; | 826 o.id = "foo"; |
| 827 o.items = buildUnnamed1998(); | 827 o.items = buildUnnamed2092(); |
| 828 o.kind = "foo"; | 828 o.kind = "foo"; |
| 829 o.nextPageToken = "foo"; | 829 o.nextPageToken = "foo"; |
| 830 o.selfLink = "foo"; | 830 o.selfLink = "foo"; |
| 831 } | 831 } |
| 832 buildCounterBackendServiceAggregatedList--; | 832 buildCounterBackendServiceAggregatedList--; |
| 833 return o; | 833 return o; |
| 834 } | 834 } |
| 835 | 835 |
| 836 checkBackendServiceAggregatedList(api.BackendServiceAggregatedList o) { | 836 checkBackendServiceAggregatedList(api.BackendServiceAggregatedList o) { |
| 837 buildCounterBackendServiceAggregatedList++; | 837 buildCounterBackendServiceAggregatedList++; |
| 838 if (buildCounterBackendServiceAggregatedList < 3) { | 838 if (buildCounterBackendServiceAggregatedList < 3) { |
| 839 unittest.expect(o.id, unittest.equals('foo')); | 839 unittest.expect(o.id, unittest.equals('foo')); |
| 840 checkUnnamed1998(o.items); | 840 checkUnnamed2092(o.items); |
| 841 unittest.expect(o.kind, unittest.equals('foo')); | 841 unittest.expect(o.kind, unittest.equals('foo')); |
| 842 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 842 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 843 unittest.expect(o.selfLink, unittest.equals('foo')); | 843 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 844 } | 844 } |
| 845 buildCounterBackendServiceAggregatedList--; | 845 buildCounterBackendServiceAggregatedList--; |
| 846 } | 846 } |
| 847 | 847 |
| 848 buildUnnamed1999() { | 848 buildUnnamed2093() { |
| 849 var o = new core.List<api.HealthStatus>(); | 849 var o = new core.List<api.HealthStatus>(); |
| 850 o.add(buildHealthStatus()); | 850 o.add(buildHealthStatus()); |
| 851 o.add(buildHealthStatus()); | 851 o.add(buildHealthStatus()); |
| 852 return o; | 852 return o; |
| 853 } | 853 } |
| 854 | 854 |
| 855 checkUnnamed1999(core.List<api.HealthStatus> o) { | 855 checkUnnamed2093(core.List<api.HealthStatus> o) { |
| 856 unittest.expect(o, unittest.hasLength(2)); | 856 unittest.expect(o, unittest.hasLength(2)); |
| 857 checkHealthStatus(o[0]); | 857 checkHealthStatus(o[0]); |
| 858 checkHealthStatus(o[1]); | 858 checkHealthStatus(o[1]); |
| 859 } | 859 } |
| 860 | 860 |
| 861 core.int buildCounterBackendServiceGroupHealth = 0; | 861 core.int buildCounterBackendServiceGroupHealth = 0; |
| 862 buildBackendServiceGroupHealth() { | 862 buildBackendServiceGroupHealth() { |
| 863 var o = new api.BackendServiceGroupHealth(); | 863 var o = new api.BackendServiceGroupHealth(); |
| 864 buildCounterBackendServiceGroupHealth++; | 864 buildCounterBackendServiceGroupHealth++; |
| 865 if (buildCounterBackendServiceGroupHealth < 3) { | 865 if (buildCounterBackendServiceGroupHealth < 3) { |
| 866 o.healthStatus = buildUnnamed1999(); | 866 o.healthStatus = buildUnnamed2093(); |
| 867 o.kind = "foo"; | 867 o.kind = "foo"; |
| 868 } | 868 } |
| 869 buildCounterBackendServiceGroupHealth--; | 869 buildCounterBackendServiceGroupHealth--; |
| 870 return o; | 870 return o; |
| 871 } | 871 } |
| 872 | 872 |
| 873 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 873 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 874 buildCounterBackendServiceGroupHealth++; | 874 buildCounterBackendServiceGroupHealth++; |
| 875 if (buildCounterBackendServiceGroupHealth < 3) { | 875 if (buildCounterBackendServiceGroupHealth < 3) { |
| 876 checkUnnamed1999(o.healthStatus); | 876 checkUnnamed2093(o.healthStatus); |
| 877 unittest.expect(o.kind, unittest.equals('foo')); | 877 unittest.expect(o.kind, unittest.equals('foo')); |
| 878 } | 878 } |
| 879 buildCounterBackendServiceGroupHealth--; | 879 buildCounterBackendServiceGroupHealth--; |
| 880 } | 880 } |
| 881 | 881 |
| 882 buildUnnamed2000() { | 882 buildUnnamed2094() { |
| 883 var o = new core.List<api.BackendService>(); | 883 var o = new core.List<api.BackendService>(); |
| 884 o.add(buildBackendService()); | 884 o.add(buildBackendService()); |
| 885 o.add(buildBackendService()); | 885 o.add(buildBackendService()); |
| 886 return o; | 886 return o; |
| 887 } | 887 } |
| 888 | 888 |
| 889 checkUnnamed2000(core.List<api.BackendService> o) { | 889 checkUnnamed2094(core.List<api.BackendService> o) { |
| 890 unittest.expect(o, unittest.hasLength(2)); | 890 unittest.expect(o, unittest.hasLength(2)); |
| 891 checkBackendService(o[0]); | 891 checkBackendService(o[0]); |
| 892 checkBackendService(o[1]); | 892 checkBackendService(o[1]); |
| 893 } | 893 } |
| 894 | 894 |
| 895 core.int buildCounterBackendServiceList = 0; | 895 core.int buildCounterBackendServiceList = 0; |
| 896 buildBackendServiceList() { | 896 buildBackendServiceList() { |
| 897 var o = new api.BackendServiceList(); | 897 var o = new api.BackendServiceList(); |
| 898 buildCounterBackendServiceList++; | 898 buildCounterBackendServiceList++; |
| 899 if (buildCounterBackendServiceList < 3) { | 899 if (buildCounterBackendServiceList < 3) { |
| 900 o.id = "foo"; | 900 o.id = "foo"; |
| 901 o.items = buildUnnamed2000(); | 901 o.items = buildUnnamed2094(); |
| 902 o.kind = "foo"; | 902 o.kind = "foo"; |
| 903 o.nextPageToken = "foo"; | 903 o.nextPageToken = "foo"; |
| 904 o.selfLink = "foo"; | 904 o.selfLink = "foo"; |
| 905 } | 905 } |
| 906 buildCounterBackendServiceList--; | 906 buildCounterBackendServiceList--; |
| 907 return o; | 907 return o; |
| 908 } | 908 } |
| 909 | 909 |
| 910 checkBackendServiceList(api.BackendServiceList o) { | 910 checkBackendServiceList(api.BackendServiceList o) { |
| 911 buildCounterBackendServiceList++; | 911 buildCounterBackendServiceList++; |
| 912 if (buildCounterBackendServiceList < 3) { | 912 if (buildCounterBackendServiceList < 3) { |
| 913 unittest.expect(o.id, unittest.equals('foo')); | 913 unittest.expect(o.id, unittest.equals('foo')); |
| 914 checkUnnamed2000(o.items); | 914 checkUnnamed2094(o.items); |
| 915 unittest.expect(o.kind, unittest.equals('foo')); | 915 unittest.expect(o.kind, unittest.equals('foo')); |
| 916 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 916 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 917 unittest.expect(o.selfLink, unittest.equals('foo')); | 917 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 918 } | 918 } |
| 919 buildCounterBackendServiceList--; | 919 buildCounterBackendServiceList--; |
| 920 } | 920 } |
| 921 | 921 |
| 922 buildUnnamed2001() { | 922 buildUnnamed2095() { |
| 923 var o = new core.List<api.BackendService>(); | 923 var o = new core.List<api.BackendService>(); |
| 924 o.add(buildBackendService()); | 924 o.add(buildBackendService()); |
| 925 o.add(buildBackendService()); | 925 o.add(buildBackendService()); |
| 926 return o; | 926 return o; |
| 927 } | 927 } |
| 928 | 928 |
| 929 checkUnnamed2001(core.List<api.BackendService> o) { | 929 checkUnnamed2095(core.List<api.BackendService> o) { |
| 930 unittest.expect(o, unittest.hasLength(2)); | 930 unittest.expect(o, unittest.hasLength(2)); |
| 931 checkBackendService(o[0]); | 931 checkBackendService(o[0]); |
| 932 checkBackendService(o[1]); | 932 checkBackendService(o[1]); |
| 933 } | 933 } |
| 934 | 934 |
| 935 core.int buildCounterBackendServicesScopedListWarningData = 0; | 935 core.int buildCounterBackendServicesScopedListWarningData = 0; |
| 936 buildBackendServicesScopedListWarningData() { | 936 buildBackendServicesScopedListWarningData() { |
| 937 var o = new api.BackendServicesScopedListWarningData(); | 937 var o = new api.BackendServicesScopedListWarningData(); |
| 938 buildCounterBackendServicesScopedListWarningData++; | 938 buildCounterBackendServicesScopedListWarningData++; |
| 939 if (buildCounterBackendServicesScopedListWarningData < 3) { | 939 if (buildCounterBackendServicesScopedListWarningData < 3) { |
| 940 o.key = "foo"; | 940 o.key = "foo"; |
| 941 o.value = "foo"; | 941 o.value = "foo"; |
| 942 } | 942 } |
| 943 buildCounterBackendServicesScopedListWarningData--; | 943 buildCounterBackendServicesScopedListWarningData--; |
| 944 return o; | 944 return o; |
| 945 } | 945 } |
| 946 | 946 |
| 947 checkBackendServicesScopedListWarningData(api.BackendServicesScopedListWarningDa
ta o) { | 947 checkBackendServicesScopedListWarningData(api.BackendServicesScopedListWarningDa
ta o) { |
| 948 buildCounterBackendServicesScopedListWarningData++; | 948 buildCounterBackendServicesScopedListWarningData++; |
| 949 if (buildCounterBackendServicesScopedListWarningData < 3) { | 949 if (buildCounterBackendServicesScopedListWarningData < 3) { |
| 950 unittest.expect(o.key, unittest.equals('foo')); | 950 unittest.expect(o.key, unittest.equals('foo')); |
| 951 unittest.expect(o.value, unittest.equals('foo')); | 951 unittest.expect(o.value, unittest.equals('foo')); |
| 952 } | 952 } |
| 953 buildCounterBackendServicesScopedListWarningData--; | 953 buildCounterBackendServicesScopedListWarningData--; |
| 954 } | 954 } |
| 955 | 955 |
| 956 buildUnnamed2002() { | 956 buildUnnamed2096() { |
| 957 var o = new core.List<api.BackendServicesScopedListWarningData>(); | 957 var o = new core.List<api.BackendServicesScopedListWarningData>(); |
| 958 o.add(buildBackendServicesScopedListWarningData()); | 958 o.add(buildBackendServicesScopedListWarningData()); |
| 959 o.add(buildBackendServicesScopedListWarningData()); | 959 o.add(buildBackendServicesScopedListWarningData()); |
| 960 return o; | 960 return o; |
| 961 } | 961 } |
| 962 | 962 |
| 963 checkUnnamed2002(core.List<api.BackendServicesScopedListWarningData> o) { | 963 checkUnnamed2096(core.List<api.BackendServicesScopedListWarningData> o) { |
| 964 unittest.expect(o, unittest.hasLength(2)); | 964 unittest.expect(o, unittest.hasLength(2)); |
| 965 checkBackendServicesScopedListWarningData(o[0]); | 965 checkBackendServicesScopedListWarningData(o[0]); |
| 966 checkBackendServicesScopedListWarningData(o[1]); | 966 checkBackendServicesScopedListWarningData(o[1]); |
| 967 } | 967 } |
| 968 | 968 |
| 969 core.int buildCounterBackendServicesScopedListWarning = 0; | 969 core.int buildCounterBackendServicesScopedListWarning = 0; |
| 970 buildBackendServicesScopedListWarning() { | 970 buildBackendServicesScopedListWarning() { |
| 971 var o = new api.BackendServicesScopedListWarning(); | 971 var o = new api.BackendServicesScopedListWarning(); |
| 972 buildCounterBackendServicesScopedListWarning++; | 972 buildCounterBackendServicesScopedListWarning++; |
| 973 if (buildCounterBackendServicesScopedListWarning < 3) { | 973 if (buildCounterBackendServicesScopedListWarning < 3) { |
| 974 o.code = "foo"; | 974 o.code = "foo"; |
| 975 o.data = buildUnnamed2002(); | 975 o.data = buildUnnamed2096(); |
| 976 o.message = "foo"; | 976 o.message = "foo"; |
| 977 } | 977 } |
| 978 buildCounterBackendServicesScopedListWarning--; | 978 buildCounterBackendServicesScopedListWarning--; |
| 979 return o; | 979 return o; |
| 980 } | 980 } |
| 981 | 981 |
| 982 checkBackendServicesScopedListWarning(api.BackendServicesScopedListWarning o) { | 982 checkBackendServicesScopedListWarning(api.BackendServicesScopedListWarning o) { |
| 983 buildCounterBackendServicesScopedListWarning++; | 983 buildCounterBackendServicesScopedListWarning++; |
| 984 if (buildCounterBackendServicesScopedListWarning < 3) { | 984 if (buildCounterBackendServicesScopedListWarning < 3) { |
| 985 unittest.expect(o.code, unittest.equals('foo')); | 985 unittest.expect(o.code, unittest.equals('foo')); |
| 986 checkUnnamed2002(o.data); | 986 checkUnnamed2096(o.data); |
| 987 unittest.expect(o.message, unittest.equals('foo')); | 987 unittest.expect(o.message, unittest.equals('foo')); |
| 988 } | 988 } |
| 989 buildCounterBackendServicesScopedListWarning--; | 989 buildCounterBackendServicesScopedListWarning--; |
| 990 } | 990 } |
| 991 | 991 |
| 992 core.int buildCounterBackendServicesScopedList = 0; | 992 core.int buildCounterBackendServicesScopedList = 0; |
| 993 buildBackendServicesScopedList() { | 993 buildBackendServicesScopedList() { |
| 994 var o = new api.BackendServicesScopedList(); | 994 var o = new api.BackendServicesScopedList(); |
| 995 buildCounterBackendServicesScopedList++; | 995 buildCounterBackendServicesScopedList++; |
| 996 if (buildCounterBackendServicesScopedList < 3) { | 996 if (buildCounterBackendServicesScopedList < 3) { |
| 997 o.backendServices = buildUnnamed2001(); | 997 o.backendServices = buildUnnamed2095(); |
| 998 o.warning = buildBackendServicesScopedListWarning(); | 998 o.warning = buildBackendServicesScopedListWarning(); |
| 999 } | 999 } |
| 1000 buildCounterBackendServicesScopedList--; | 1000 buildCounterBackendServicesScopedList--; |
| 1001 return o; | 1001 return o; |
| 1002 } | 1002 } |
| 1003 | 1003 |
| 1004 checkBackendServicesScopedList(api.BackendServicesScopedList o) { | 1004 checkBackendServicesScopedList(api.BackendServicesScopedList o) { |
| 1005 buildCounterBackendServicesScopedList++; | 1005 buildCounterBackendServicesScopedList++; |
| 1006 if (buildCounterBackendServicesScopedList < 3) { | 1006 if (buildCounterBackendServicesScopedList < 3) { |
| 1007 checkUnnamed2001(o.backendServices); | 1007 checkUnnamed2095(o.backendServices); |
| 1008 checkBackendServicesScopedListWarning(o.warning); | 1008 checkBackendServicesScopedListWarning(o.warning); |
| 1009 } | 1009 } |
| 1010 buildCounterBackendServicesScopedList--; | 1010 buildCounterBackendServicesScopedList--; |
| 1011 } | 1011 } |
| 1012 | 1012 |
| 1013 core.int buildCounterCacheInvalidationRule = 0; | 1013 core.int buildCounterCacheInvalidationRule = 0; |
| 1014 buildCacheInvalidationRule() { | 1014 buildCacheInvalidationRule() { |
| 1015 var o = new api.CacheInvalidationRule(); | 1015 var o = new api.CacheInvalidationRule(); |
| 1016 buildCounterCacheInvalidationRule++; | 1016 buildCounterCacheInvalidationRule++; |
| 1017 if (buildCounterCacheInvalidationRule < 3) { | 1017 if (buildCounterCacheInvalidationRule < 3) { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 if (buildCounterDeprecationStatus < 3) { | 1112 if (buildCounterDeprecationStatus < 3) { |
| 1113 unittest.expect(o.deleted, unittest.equals('foo')); | 1113 unittest.expect(o.deleted, unittest.equals('foo')); |
| 1114 unittest.expect(o.deprecated, unittest.equals('foo')); | 1114 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 1115 unittest.expect(o.obsolete, unittest.equals('foo')); | 1115 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 1116 unittest.expect(o.replacement, unittest.equals('foo')); | 1116 unittest.expect(o.replacement, unittest.equals('foo')); |
| 1117 unittest.expect(o.state, unittest.equals('foo')); | 1117 unittest.expect(o.state, unittest.equals('foo')); |
| 1118 } | 1118 } |
| 1119 buildCounterDeprecationStatus--; | 1119 buildCounterDeprecationStatus--; |
| 1120 } | 1120 } |
| 1121 | 1121 |
| 1122 buildUnnamed2003() { | 1122 buildUnnamed2097() { |
| 1123 var o = new core.List<core.String>(); | 1123 var o = new core.List<core.String>(); |
| 1124 o.add("foo"); | 1124 o.add("foo"); |
| 1125 o.add("foo"); | 1125 o.add("foo"); |
| 1126 return o; | 1126 return o; |
| 1127 } | 1127 } |
| 1128 | 1128 |
| 1129 checkUnnamed2003(core.List<core.String> o) { | 1129 checkUnnamed2097(core.List<core.String> o) { |
| 1130 unittest.expect(o, unittest.hasLength(2)); | 1130 unittest.expect(o, unittest.hasLength(2)); |
| 1131 unittest.expect(o[0], unittest.equals('foo')); | 1131 unittest.expect(o[0], unittest.equals('foo')); |
| 1132 unittest.expect(o[1], unittest.equals('foo')); | 1132 unittest.expect(o[1], unittest.equals('foo')); |
| 1133 } | 1133 } |
| 1134 | 1134 |
| 1135 buildUnnamed2004() { | 1135 buildUnnamed2098() { |
| 1136 var o = new core.List<core.String>(); | 1136 var o = new core.List<core.String>(); |
| 1137 o.add("foo"); | 1137 o.add("foo"); |
| 1138 o.add("foo"); | 1138 o.add("foo"); |
| 1139 return o; | 1139 return o; |
| 1140 } | 1140 } |
| 1141 | 1141 |
| 1142 checkUnnamed2004(core.List<core.String> o) { | 1142 checkUnnamed2098(core.List<core.String> o) { |
| 1143 unittest.expect(o, unittest.hasLength(2)); | 1143 unittest.expect(o, unittest.hasLength(2)); |
| 1144 unittest.expect(o[0], unittest.equals('foo')); | 1144 unittest.expect(o[0], unittest.equals('foo')); |
| 1145 unittest.expect(o[1], unittest.equals('foo')); | 1145 unittest.expect(o[1], unittest.equals('foo')); |
| 1146 } | 1146 } |
| 1147 | 1147 |
| 1148 core.int buildCounterDisk = 0; | 1148 core.int buildCounterDisk = 0; |
| 1149 buildDisk() { | 1149 buildDisk() { |
| 1150 var o = new api.Disk(); | 1150 var o = new api.Disk(); |
| 1151 buildCounterDisk++; | 1151 buildCounterDisk++; |
| 1152 if (buildCounterDisk < 3) { | 1152 if (buildCounterDisk < 3) { |
| 1153 o.creationTimestamp = "foo"; | 1153 o.creationTimestamp = "foo"; |
| 1154 o.description = "foo"; | 1154 o.description = "foo"; |
| 1155 o.diskEncryptionKey = buildCustomerEncryptionKey(); | 1155 o.diskEncryptionKey = buildCustomerEncryptionKey(); |
| 1156 o.id = "foo"; | 1156 o.id = "foo"; |
| 1157 o.kind = "foo"; | 1157 o.kind = "foo"; |
| 1158 o.lastAttachTimestamp = "foo"; | 1158 o.lastAttachTimestamp = "foo"; |
| 1159 o.lastDetachTimestamp = "foo"; | 1159 o.lastDetachTimestamp = "foo"; |
| 1160 o.licenses = buildUnnamed2003(); | 1160 o.licenses = buildUnnamed2097(); |
| 1161 o.name = "foo"; | 1161 o.name = "foo"; |
| 1162 o.options = "foo"; | 1162 o.options = "foo"; |
| 1163 o.selfLink = "foo"; | 1163 o.selfLink = "foo"; |
| 1164 o.sizeGb = "foo"; | 1164 o.sizeGb = "foo"; |
| 1165 o.sourceImage = "foo"; | 1165 o.sourceImage = "foo"; |
| 1166 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); | 1166 o.sourceImageEncryptionKey = buildCustomerEncryptionKey(); |
| 1167 o.sourceImageId = "foo"; | 1167 o.sourceImageId = "foo"; |
| 1168 o.sourceSnapshot = "foo"; | 1168 o.sourceSnapshot = "foo"; |
| 1169 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); | 1169 o.sourceSnapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 1170 o.sourceSnapshotId = "foo"; | 1170 o.sourceSnapshotId = "foo"; |
| 1171 o.status = "foo"; | 1171 o.status = "foo"; |
| 1172 o.type = "foo"; | 1172 o.type = "foo"; |
| 1173 o.users = buildUnnamed2004(); | 1173 o.users = buildUnnamed2098(); |
| 1174 o.zone = "foo"; | 1174 o.zone = "foo"; |
| 1175 } | 1175 } |
| 1176 buildCounterDisk--; | 1176 buildCounterDisk--; |
| 1177 return o; | 1177 return o; |
| 1178 } | 1178 } |
| 1179 | 1179 |
| 1180 checkDisk(api.Disk o) { | 1180 checkDisk(api.Disk o) { |
| 1181 buildCounterDisk++; | 1181 buildCounterDisk++; |
| 1182 if (buildCounterDisk < 3) { | 1182 if (buildCounterDisk < 3) { |
| 1183 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1183 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1184 unittest.expect(o.description, unittest.equals('foo')); | 1184 unittest.expect(o.description, unittest.equals('foo')); |
| 1185 checkCustomerEncryptionKey(o.diskEncryptionKey); | 1185 checkCustomerEncryptionKey(o.diskEncryptionKey); |
| 1186 unittest.expect(o.id, unittest.equals('foo')); | 1186 unittest.expect(o.id, unittest.equals('foo')); |
| 1187 unittest.expect(o.kind, unittest.equals('foo')); | 1187 unittest.expect(o.kind, unittest.equals('foo')); |
| 1188 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); | 1188 unittest.expect(o.lastAttachTimestamp, unittest.equals('foo')); |
| 1189 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); | 1189 unittest.expect(o.lastDetachTimestamp, unittest.equals('foo')); |
| 1190 checkUnnamed2003(o.licenses); | 1190 checkUnnamed2097(o.licenses); |
| 1191 unittest.expect(o.name, unittest.equals('foo')); | 1191 unittest.expect(o.name, unittest.equals('foo')); |
| 1192 unittest.expect(o.options, unittest.equals('foo')); | 1192 unittest.expect(o.options, unittest.equals('foo')); |
| 1193 unittest.expect(o.selfLink, unittest.equals('foo')); | 1193 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1194 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1194 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1195 unittest.expect(o.sourceImage, unittest.equals('foo')); | 1195 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 1196 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); | 1196 checkCustomerEncryptionKey(o.sourceImageEncryptionKey); |
| 1197 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 1197 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 1198 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 1198 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 1199 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); | 1199 checkCustomerEncryptionKey(o.sourceSnapshotEncryptionKey); |
| 1200 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 1200 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 1201 unittest.expect(o.status, unittest.equals('foo')); | 1201 unittest.expect(o.status, unittest.equals('foo')); |
| 1202 unittest.expect(o.type, unittest.equals('foo')); | 1202 unittest.expect(o.type, unittest.equals('foo')); |
| 1203 checkUnnamed2004(o.users); | 1203 checkUnnamed2098(o.users); |
| 1204 unittest.expect(o.zone, unittest.equals('foo')); | 1204 unittest.expect(o.zone, unittest.equals('foo')); |
| 1205 } | 1205 } |
| 1206 buildCounterDisk--; | 1206 buildCounterDisk--; |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 buildUnnamed2005() { | 1209 buildUnnamed2099() { |
| 1210 var o = new core.Map<core.String, api.DisksScopedList>(); | 1210 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 1211 o["x"] = buildDisksScopedList(); | 1211 o["x"] = buildDisksScopedList(); |
| 1212 o["y"] = buildDisksScopedList(); | 1212 o["y"] = buildDisksScopedList(); |
| 1213 return o; | 1213 return o; |
| 1214 } | 1214 } |
| 1215 | 1215 |
| 1216 checkUnnamed2005(core.Map<core.String, api.DisksScopedList> o) { | 1216 checkUnnamed2099(core.Map<core.String, api.DisksScopedList> o) { |
| 1217 unittest.expect(o, unittest.hasLength(2)); | 1217 unittest.expect(o, unittest.hasLength(2)); |
| 1218 checkDisksScopedList(o["x"]); | 1218 checkDisksScopedList(o["x"]); |
| 1219 checkDisksScopedList(o["y"]); | 1219 checkDisksScopedList(o["y"]); |
| 1220 } | 1220 } |
| 1221 | 1221 |
| 1222 core.int buildCounterDiskAggregatedList = 0; | 1222 core.int buildCounterDiskAggregatedList = 0; |
| 1223 buildDiskAggregatedList() { | 1223 buildDiskAggregatedList() { |
| 1224 var o = new api.DiskAggregatedList(); | 1224 var o = new api.DiskAggregatedList(); |
| 1225 buildCounterDiskAggregatedList++; | 1225 buildCounterDiskAggregatedList++; |
| 1226 if (buildCounterDiskAggregatedList < 3) { | 1226 if (buildCounterDiskAggregatedList < 3) { |
| 1227 o.id = "foo"; | 1227 o.id = "foo"; |
| 1228 o.items = buildUnnamed2005(); | 1228 o.items = buildUnnamed2099(); |
| 1229 o.kind = "foo"; | 1229 o.kind = "foo"; |
| 1230 o.nextPageToken = "foo"; | 1230 o.nextPageToken = "foo"; |
| 1231 o.selfLink = "foo"; | 1231 o.selfLink = "foo"; |
| 1232 } | 1232 } |
| 1233 buildCounterDiskAggregatedList--; | 1233 buildCounterDiskAggregatedList--; |
| 1234 return o; | 1234 return o; |
| 1235 } | 1235 } |
| 1236 | 1236 |
| 1237 checkDiskAggregatedList(api.DiskAggregatedList o) { | 1237 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 1238 buildCounterDiskAggregatedList++; | 1238 buildCounterDiskAggregatedList++; |
| 1239 if (buildCounterDiskAggregatedList < 3) { | 1239 if (buildCounterDiskAggregatedList < 3) { |
| 1240 unittest.expect(o.id, unittest.equals('foo')); | 1240 unittest.expect(o.id, unittest.equals('foo')); |
| 1241 checkUnnamed2005(o.items); | 1241 checkUnnamed2099(o.items); |
| 1242 unittest.expect(o.kind, unittest.equals('foo')); | 1242 unittest.expect(o.kind, unittest.equals('foo')); |
| 1243 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1243 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1244 unittest.expect(o.selfLink, unittest.equals('foo')); | 1244 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1245 } | 1245 } |
| 1246 buildCounterDiskAggregatedList--; | 1246 buildCounterDiskAggregatedList--; |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 buildUnnamed2006() { | 1249 buildUnnamed2100() { |
| 1250 var o = new core.List<api.Disk>(); | 1250 var o = new core.List<api.Disk>(); |
| 1251 o.add(buildDisk()); | 1251 o.add(buildDisk()); |
| 1252 o.add(buildDisk()); | 1252 o.add(buildDisk()); |
| 1253 return o; | 1253 return o; |
| 1254 } | 1254 } |
| 1255 | 1255 |
| 1256 checkUnnamed2006(core.List<api.Disk> o) { | 1256 checkUnnamed2100(core.List<api.Disk> o) { |
| 1257 unittest.expect(o, unittest.hasLength(2)); | 1257 unittest.expect(o, unittest.hasLength(2)); |
| 1258 checkDisk(o[0]); | 1258 checkDisk(o[0]); |
| 1259 checkDisk(o[1]); | 1259 checkDisk(o[1]); |
| 1260 } | 1260 } |
| 1261 | 1261 |
| 1262 core.int buildCounterDiskList = 0; | 1262 core.int buildCounterDiskList = 0; |
| 1263 buildDiskList() { | 1263 buildDiskList() { |
| 1264 var o = new api.DiskList(); | 1264 var o = new api.DiskList(); |
| 1265 buildCounterDiskList++; | 1265 buildCounterDiskList++; |
| 1266 if (buildCounterDiskList < 3) { | 1266 if (buildCounterDiskList < 3) { |
| 1267 o.id = "foo"; | 1267 o.id = "foo"; |
| 1268 o.items = buildUnnamed2006(); | 1268 o.items = buildUnnamed2100(); |
| 1269 o.kind = "foo"; | 1269 o.kind = "foo"; |
| 1270 o.nextPageToken = "foo"; | 1270 o.nextPageToken = "foo"; |
| 1271 o.selfLink = "foo"; | 1271 o.selfLink = "foo"; |
| 1272 } | 1272 } |
| 1273 buildCounterDiskList--; | 1273 buildCounterDiskList--; |
| 1274 return o; | 1274 return o; |
| 1275 } | 1275 } |
| 1276 | 1276 |
| 1277 checkDiskList(api.DiskList o) { | 1277 checkDiskList(api.DiskList o) { |
| 1278 buildCounterDiskList++; | 1278 buildCounterDiskList++; |
| 1279 if (buildCounterDiskList < 3) { | 1279 if (buildCounterDiskList < 3) { |
| 1280 unittest.expect(o.id, unittest.equals('foo')); | 1280 unittest.expect(o.id, unittest.equals('foo')); |
| 1281 checkUnnamed2006(o.items); | 1281 checkUnnamed2100(o.items); |
| 1282 unittest.expect(o.kind, unittest.equals('foo')); | 1282 unittest.expect(o.kind, unittest.equals('foo')); |
| 1283 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1283 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1284 unittest.expect(o.selfLink, unittest.equals('foo')); | 1284 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1285 } | 1285 } |
| 1286 buildCounterDiskList--; | 1286 buildCounterDiskList--; |
| 1287 } | 1287 } |
| 1288 | 1288 |
| 1289 core.int buildCounterDiskMoveRequest = 0; | 1289 core.int buildCounterDiskMoveRequest = 0; |
| 1290 buildDiskMoveRequest() { | 1290 buildDiskMoveRequest() { |
| 1291 var o = new api.DiskMoveRequest(); | 1291 var o = new api.DiskMoveRequest(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1337 unittest.expect(o.id, unittest.equals('foo')); | 1337 unittest.expect(o.id, unittest.equals('foo')); |
| 1338 unittest.expect(o.kind, unittest.equals('foo')); | 1338 unittest.expect(o.kind, unittest.equals('foo')); |
| 1339 unittest.expect(o.name, unittest.equals('foo')); | 1339 unittest.expect(o.name, unittest.equals('foo')); |
| 1340 unittest.expect(o.selfLink, unittest.equals('foo')); | 1340 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1341 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 1341 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 1342 unittest.expect(o.zone, unittest.equals('foo')); | 1342 unittest.expect(o.zone, unittest.equals('foo')); |
| 1343 } | 1343 } |
| 1344 buildCounterDiskType--; | 1344 buildCounterDiskType--; |
| 1345 } | 1345 } |
| 1346 | 1346 |
| 1347 buildUnnamed2007() { | 1347 buildUnnamed2101() { |
| 1348 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 1348 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 1349 o["x"] = buildDiskTypesScopedList(); | 1349 o["x"] = buildDiskTypesScopedList(); |
| 1350 o["y"] = buildDiskTypesScopedList(); | 1350 o["y"] = buildDiskTypesScopedList(); |
| 1351 return o; | 1351 return o; |
| 1352 } | 1352 } |
| 1353 | 1353 |
| 1354 checkUnnamed2007(core.Map<core.String, api.DiskTypesScopedList> o) { | 1354 checkUnnamed2101(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 1355 unittest.expect(o, unittest.hasLength(2)); | 1355 unittest.expect(o, unittest.hasLength(2)); |
| 1356 checkDiskTypesScopedList(o["x"]); | 1356 checkDiskTypesScopedList(o["x"]); |
| 1357 checkDiskTypesScopedList(o["y"]); | 1357 checkDiskTypesScopedList(o["y"]); |
| 1358 } | 1358 } |
| 1359 | 1359 |
| 1360 core.int buildCounterDiskTypeAggregatedList = 0; | 1360 core.int buildCounterDiskTypeAggregatedList = 0; |
| 1361 buildDiskTypeAggregatedList() { | 1361 buildDiskTypeAggregatedList() { |
| 1362 var o = new api.DiskTypeAggregatedList(); | 1362 var o = new api.DiskTypeAggregatedList(); |
| 1363 buildCounterDiskTypeAggregatedList++; | 1363 buildCounterDiskTypeAggregatedList++; |
| 1364 if (buildCounterDiskTypeAggregatedList < 3) { | 1364 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1365 o.id = "foo"; | 1365 o.id = "foo"; |
| 1366 o.items = buildUnnamed2007(); | 1366 o.items = buildUnnamed2101(); |
| 1367 o.kind = "foo"; | 1367 o.kind = "foo"; |
| 1368 o.nextPageToken = "foo"; | 1368 o.nextPageToken = "foo"; |
| 1369 o.selfLink = "foo"; | 1369 o.selfLink = "foo"; |
| 1370 } | 1370 } |
| 1371 buildCounterDiskTypeAggregatedList--; | 1371 buildCounterDiskTypeAggregatedList--; |
| 1372 return o; | 1372 return o; |
| 1373 } | 1373 } |
| 1374 | 1374 |
| 1375 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 1375 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 1376 buildCounterDiskTypeAggregatedList++; | 1376 buildCounterDiskTypeAggregatedList++; |
| 1377 if (buildCounterDiskTypeAggregatedList < 3) { | 1377 if (buildCounterDiskTypeAggregatedList < 3) { |
| 1378 unittest.expect(o.id, unittest.equals('foo')); | 1378 unittest.expect(o.id, unittest.equals('foo')); |
| 1379 checkUnnamed2007(o.items); | 1379 checkUnnamed2101(o.items); |
| 1380 unittest.expect(o.kind, unittest.equals('foo')); | 1380 unittest.expect(o.kind, unittest.equals('foo')); |
| 1381 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1381 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1382 unittest.expect(o.selfLink, unittest.equals('foo')); | 1382 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1383 } | 1383 } |
| 1384 buildCounterDiskTypeAggregatedList--; | 1384 buildCounterDiskTypeAggregatedList--; |
| 1385 } | 1385 } |
| 1386 | 1386 |
| 1387 buildUnnamed2008() { | 1387 buildUnnamed2102() { |
| 1388 var o = new core.List<api.DiskType>(); | 1388 var o = new core.List<api.DiskType>(); |
| 1389 o.add(buildDiskType()); | 1389 o.add(buildDiskType()); |
| 1390 o.add(buildDiskType()); | 1390 o.add(buildDiskType()); |
| 1391 return o; | 1391 return o; |
| 1392 } | 1392 } |
| 1393 | 1393 |
| 1394 checkUnnamed2008(core.List<api.DiskType> o) { | 1394 checkUnnamed2102(core.List<api.DiskType> o) { |
| 1395 unittest.expect(o, unittest.hasLength(2)); | 1395 unittest.expect(o, unittest.hasLength(2)); |
| 1396 checkDiskType(o[0]); | 1396 checkDiskType(o[0]); |
| 1397 checkDiskType(o[1]); | 1397 checkDiskType(o[1]); |
| 1398 } | 1398 } |
| 1399 | 1399 |
| 1400 core.int buildCounterDiskTypeList = 0; | 1400 core.int buildCounterDiskTypeList = 0; |
| 1401 buildDiskTypeList() { | 1401 buildDiskTypeList() { |
| 1402 var o = new api.DiskTypeList(); | 1402 var o = new api.DiskTypeList(); |
| 1403 buildCounterDiskTypeList++; | 1403 buildCounterDiskTypeList++; |
| 1404 if (buildCounterDiskTypeList < 3) { | 1404 if (buildCounterDiskTypeList < 3) { |
| 1405 o.id = "foo"; | 1405 o.id = "foo"; |
| 1406 o.items = buildUnnamed2008(); | 1406 o.items = buildUnnamed2102(); |
| 1407 o.kind = "foo"; | 1407 o.kind = "foo"; |
| 1408 o.nextPageToken = "foo"; | 1408 o.nextPageToken = "foo"; |
| 1409 o.selfLink = "foo"; | 1409 o.selfLink = "foo"; |
| 1410 } | 1410 } |
| 1411 buildCounterDiskTypeList--; | 1411 buildCounterDiskTypeList--; |
| 1412 return o; | 1412 return o; |
| 1413 } | 1413 } |
| 1414 | 1414 |
| 1415 checkDiskTypeList(api.DiskTypeList o) { | 1415 checkDiskTypeList(api.DiskTypeList o) { |
| 1416 buildCounterDiskTypeList++; | 1416 buildCounterDiskTypeList++; |
| 1417 if (buildCounterDiskTypeList < 3) { | 1417 if (buildCounterDiskTypeList < 3) { |
| 1418 unittest.expect(o.id, unittest.equals('foo')); | 1418 unittest.expect(o.id, unittest.equals('foo')); |
| 1419 checkUnnamed2008(o.items); | 1419 checkUnnamed2102(o.items); |
| 1420 unittest.expect(o.kind, unittest.equals('foo')); | 1420 unittest.expect(o.kind, unittest.equals('foo')); |
| 1421 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1421 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1422 unittest.expect(o.selfLink, unittest.equals('foo')); | 1422 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1423 } | 1423 } |
| 1424 buildCounterDiskTypeList--; | 1424 buildCounterDiskTypeList--; |
| 1425 } | 1425 } |
| 1426 | 1426 |
| 1427 buildUnnamed2009() { | 1427 buildUnnamed2103() { |
| 1428 var o = new core.List<api.DiskType>(); | 1428 var o = new core.List<api.DiskType>(); |
| 1429 o.add(buildDiskType()); | 1429 o.add(buildDiskType()); |
| 1430 o.add(buildDiskType()); | 1430 o.add(buildDiskType()); |
| 1431 return o; | 1431 return o; |
| 1432 } | 1432 } |
| 1433 | 1433 |
| 1434 checkUnnamed2009(core.List<api.DiskType> o) { | 1434 checkUnnamed2103(core.List<api.DiskType> o) { |
| 1435 unittest.expect(o, unittest.hasLength(2)); | 1435 unittest.expect(o, unittest.hasLength(2)); |
| 1436 checkDiskType(o[0]); | 1436 checkDiskType(o[0]); |
| 1437 checkDiskType(o[1]); | 1437 checkDiskType(o[1]); |
| 1438 } | 1438 } |
| 1439 | 1439 |
| 1440 core.int buildCounterDiskTypesScopedListWarningData = 0; | 1440 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 1441 buildDiskTypesScopedListWarningData() { | 1441 buildDiskTypesScopedListWarningData() { |
| 1442 var o = new api.DiskTypesScopedListWarningData(); | 1442 var o = new api.DiskTypesScopedListWarningData(); |
| 1443 buildCounterDiskTypesScopedListWarningData++; | 1443 buildCounterDiskTypesScopedListWarningData++; |
| 1444 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1444 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1445 o.key = "foo"; | 1445 o.key = "foo"; |
| 1446 o.value = "foo"; | 1446 o.value = "foo"; |
| 1447 } | 1447 } |
| 1448 buildCounterDiskTypesScopedListWarningData--; | 1448 buildCounterDiskTypesScopedListWarningData--; |
| 1449 return o; | 1449 return o; |
| 1450 } | 1450 } |
| 1451 | 1451 |
| 1452 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 1452 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 1453 buildCounterDiskTypesScopedListWarningData++; | 1453 buildCounterDiskTypesScopedListWarningData++; |
| 1454 if (buildCounterDiskTypesScopedListWarningData < 3) { | 1454 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 1455 unittest.expect(o.key, unittest.equals('foo')); | 1455 unittest.expect(o.key, unittest.equals('foo')); |
| 1456 unittest.expect(o.value, unittest.equals('foo')); | 1456 unittest.expect(o.value, unittest.equals('foo')); |
| 1457 } | 1457 } |
| 1458 buildCounterDiskTypesScopedListWarningData--; | 1458 buildCounterDiskTypesScopedListWarningData--; |
| 1459 } | 1459 } |
| 1460 | 1460 |
| 1461 buildUnnamed2010() { | 1461 buildUnnamed2104() { |
| 1462 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 1462 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 1463 o.add(buildDiskTypesScopedListWarningData()); | 1463 o.add(buildDiskTypesScopedListWarningData()); |
| 1464 o.add(buildDiskTypesScopedListWarningData()); | 1464 o.add(buildDiskTypesScopedListWarningData()); |
| 1465 return o; | 1465 return o; |
| 1466 } | 1466 } |
| 1467 | 1467 |
| 1468 checkUnnamed2010(core.List<api.DiskTypesScopedListWarningData> o) { | 1468 checkUnnamed2104(core.List<api.DiskTypesScopedListWarningData> o) { |
| 1469 unittest.expect(o, unittest.hasLength(2)); | 1469 unittest.expect(o, unittest.hasLength(2)); |
| 1470 checkDiskTypesScopedListWarningData(o[0]); | 1470 checkDiskTypesScopedListWarningData(o[0]); |
| 1471 checkDiskTypesScopedListWarningData(o[1]); | 1471 checkDiskTypesScopedListWarningData(o[1]); |
| 1472 } | 1472 } |
| 1473 | 1473 |
| 1474 core.int buildCounterDiskTypesScopedListWarning = 0; | 1474 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 1475 buildDiskTypesScopedListWarning() { | 1475 buildDiskTypesScopedListWarning() { |
| 1476 var o = new api.DiskTypesScopedListWarning(); | 1476 var o = new api.DiskTypesScopedListWarning(); |
| 1477 buildCounterDiskTypesScopedListWarning++; | 1477 buildCounterDiskTypesScopedListWarning++; |
| 1478 if (buildCounterDiskTypesScopedListWarning < 3) { | 1478 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1479 o.code = "foo"; | 1479 o.code = "foo"; |
| 1480 o.data = buildUnnamed2010(); | 1480 o.data = buildUnnamed2104(); |
| 1481 o.message = "foo"; | 1481 o.message = "foo"; |
| 1482 } | 1482 } |
| 1483 buildCounterDiskTypesScopedListWarning--; | 1483 buildCounterDiskTypesScopedListWarning--; |
| 1484 return o; | 1484 return o; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 1487 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 1488 buildCounterDiskTypesScopedListWarning++; | 1488 buildCounterDiskTypesScopedListWarning++; |
| 1489 if (buildCounterDiskTypesScopedListWarning < 3) { | 1489 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 1490 unittest.expect(o.code, unittest.equals('foo')); | 1490 unittest.expect(o.code, unittest.equals('foo')); |
| 1491 checkUnnamed2010(o.data); | 1491 checkUnnamed2104(o.data); |
| 1492 unittest.expect(o.message, unittest.equals('foo')); | 1492 unittest.expect(o.message, unittest.equals('foo')); |
| 1493 } | 1493 } |
| 1494 buildCounterDiskTypesScopedListWarning--; | 1494 buildCounterDiskTypesScopedListWarning--; |
| 1495 } | 1495 } |
| 1496 | 1496 |
| 1497 core.int buildCounterDiskTypesScopedList = 0; | 1497 core.int buildCounterDiskTypesScopedList = 0; |
| 1498 buildDiskTypesScopedList() { | 1498 buildDiskTypesScopedList() { |
| 1499 var o = new api.DiskTypesScopedList(); | 1499 var o = new api.DiskTypesScopedList(); |
| 1500 buildCounterDiskTypesScopedList++; | 1500 buildCounterDiskTypesScopedList++; |
| 1501 if (buildCounterDiskTypesScopedList < 3) { | 1501 if (buildCounterDiskTypesScopedList < 3) { |
| 1502 o.diskTypes = buildUnnamed2009(); | 1502 o.diskTypes = buildUnnamed2103(); |
| 1503 o.warning = buildDiskTypesScopedListWarning(); | 1503 o.warning = buildDiskTypesScopedListWarning(); |
| 1504 } | 1504 } |
| 1505 buildCounterDiskTypesScopedList--; | 1505 buildCounterDiskTypesScopedList--; |
| 1506 return o; | 1506 return o; |
| 1507 } | 1507 } |
| 1508 | 1508 |
| 1509 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 1509 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 1510 buildCounterDiskTypesScopedList++; | 1510 buildCounterDiskTypesScopedList++; |
| 1511 if (buildCounterDiskTypesScopedList < 3) { | 1511 if (buildCounterDiskTypesScopedList < 3) { |
| 1512 checkUnnamed2009(o.diskTypes); | 1512 checkUnnamed2103(o.diskTypes); |
| 1513 checkDiskTypesScopedListWarning(o.warning); | 1513 checkDiskTypesScopedListWarning(o.warning); |
| 1514 } | 1514 } |
| 1515 buildCounterDiskTypesScopedList--; | 1515 buildCounterDiskTypesScopedList--; |
| 1516 } | 1516 } |
| 1517 | 1517 |
| 1518 core.int buildCounterDisksResizeRequest = 0; | 1518 core.int buildCounterDisksResizeRequest = 0; |
| 1519 buildDisksResizeRequest() { | 1519 buildDisksResizeRequest() { |
| 1520 var o = new api.DisksResizeRequest(); | 1520 var o = new api.DisksResizeRequest(); |
| 1521 buildCounterDisksResizeRequest++; | 1521 buildCounterDisksResizeRequest++; |
| 1522 if (buildCounterDisksResizeRequest < 3) { | 1522 if (buildCounterDisksResizeRequest < 3) { |
| 1523 o.sizeGb = "foo"; | 1523 o.sizeGb = "foo"; |
| 1524 } | 1524 } |
| 1525 buildCounterDisksResizeRequest--; | 1525 buildCounterDisksResizeRequest--; |
| 1526 return o; | 1526 return o; |
| 1527 } | 1527 } |
| 1528 | 1528 |
| 1529 checkDisksResizeRequest(api.DisksResizeRequest o) { | 1529 checkDisksResizeRequest(api.DisksResizeRequest o) { |
| 1530 buildCounterDisksResizeRequest++; | 1530 buildCounterDisksResizeRequest++; |
| 1531 if (buildCounterDisksResizeRequest < 3) { | 1531 if (buildCounterDisksResizeRequest < 3) { |
| 1532 unittest.expect(o.sizeGb, unittest.equals('foo')); | 1532 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 1533 } | 1533 } |
| 1534 buildCounterDisksResizeRequest--; | 1534 buildCounterDisksResizeRequest--; |
| 1535 } | 1535 } |
| 1536 | 1536 |
| 1537 buildUnnamed2011() { | 1537 buildUnnamed2105() { |
| 1538 var o = new core.List<api.Disk>(); | 1538 var o = new core.List<api.Disk>(); |
| 1539 o.add(buildDisk()); | 1539 o.add(buildDisk()); |
| 1540 o.add(buildDisk()); | 1540 o.add(buildDisk()); |
| 1541 return o; | 1541 return o; |
| 1542 } | 1542 } |
| 1543 | 1543 |
| 1544 checkUnnamed2011(core.List<api.Disk> o) { | 1544 checkUnnamed2105(core.List<api.Disk> o) { |
| 1545 unittest.expect(o, unittest.hasLength(2)); | 1545 unittest.expect(o, unittest.hasLength(2)); |
| 1546 checkDisk(o[0]); | 1546 checkDisk(o[0]); |
| 1547 checkDisk(o[1]); | 1547 checkDisk(o[1]); |
| 1548 } | 1548 } |
| 1549 | 1549 |
| 1550 core.int buildCounterDisksScopedListWarningData = 0; | 1550 core.int buildCounterDisksScopedListWarningData = 0; |
| 1551 buildDisksScopedListWarningData() { | 1551 buildDisksScopedListWarningData() { |
| 1552 var o = new api.DisksScopedListWarningData(); | 1552 var o = new api.DisksScopedListWarningData(); |
| 1553 buildCounterDisksScopedListWarningData++; | 1553 buildCounterDisksScopedListWarningData++; |
| 1554 if (buildCounterDisksScopedListWarningData < 3) { | 1554 if (buildCounterDisksScopedListWarningData < 3) { |
| 1555 o.key = "foo"; | 1555 o.key = "foo"; |
| 1556 o.value = "foo"; | 1556 o.value = "foo"; |
| 1557 } | 1557 } |
| 1558 buildCounterDisksScopedListWarningData--; | 1558 buildCounterDisksScopedListWarningData--; |
| 1559 return o; | 1559 return o; |
| 1560 } | 1560 } |
| 1561 | 1561 |
| 1562 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 1562 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 1563 buildCounterDisksScopedListWarningData++; | 1563 buildCounterDisksScopedListWarningData++; |
| 1564 if (buildCounterDisksScopedListWarningData < 3) { | 1564 if (buildCounterDisksScopedListWarningData < 3) { |
| 1565 unittest.expect(o.key, unittest.equals('foo')); | 1565 unittest.expect(o.key, unittest.equals('foo')); |
| 1566 unittest.expect(o.value, unittest.equals('foo')); | 1566 unittest.expect(o.value, unittest.equals('foo')); |
| 1567 } | 1567 } |
| 1568 buildCounterDisksScopedListWarningData--; | 1568 buildCounterDisksScopedListWarningData--; |
| 1569 } | 1569 } |
| 1570 | 1570 |
| 1571 buildUnnamed2012() { | 1571 buildUnnamed2106() { |
| 1572 var o = new core.List<api.DisksScopedListWarningData>(); | 1572 var o = new core.List<api.DisksScopedListWarningData>(); |
| 1573 o.add(buildDisksScopedListWarningData()); | 1573 o.add(buildDisksScopedListWarningData()); |
| 1574 o.add(buildDisksScopedListWarningData()); | 1574 o.add(buildDisksScopedListWarningData()); |
| 1575 return o; | 1575 return o; |
| 1576 } | 1576 } |
| 1577 | 1577 |
| 1578 checkUnnamed2012(core.List<api.DisksScopedListWarningData> o) { | 1578 checkUnnamed2106(core.List<api.DisksScopedListWarningData> o) { |
| 1579 unittest.expect(o, unittest.hasLength(2)); | 1579 unittest.expect(o, unittest.hasLength(2)); |
| 1580 checkDisksScopedListWarningData(o[0]); | 1580 checkDisksScopedListWarningData(o[0]); |
| 1581 checkDisksScopedListWarningData(o[1]); | 1581 checkDisksScopedListWarningData(o[1]); |
| 1582 } | 1582 } |
| 1583 | 1583 |
| 1584 core.int buildCounterDisksScopedListWarning = 0; | 1584 core.int buildCounterDisksScopedListWarning = 0; |
| 1585 buildDisksScopedListWarning() { | 1585 buildDisksScopedListWarning() { |
| 1586 var o = new api.DisksScopedListWarning(); | 1586 var o = new api.DisksScopedListWarning(); |
| 1587 buildCounterDisksScopedListWarning++; | 1587 buildCounterDisksScopedListWarning++; |
| 1588 if (buildCounterDisksScopedListWarning < 3) { | 1588 if (buildCounterDisksScopedListWarning < 3) { |
| 1589 o.code = "foo"; | 1589 o.code = "foo"; |
| 1590 o.data = buildUnnamed2012(); | 1590 o.data = buildUnnamed2106(); |
| 1591 o.message = "foo"; | 1591 o.message = "foo"; |
| 1592 } | 1592 } |
| 1593 buildCounterDisksScopedListWarning--; | 1593 buildCounterDisksScopedListWarning--; |
| 1594 return o; | 1594 return o; |
| 1595 } | 1595 } |
| 1596 | 1596 |
| 1597 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 1597 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 1598 buildCounterDisksScopedListWarning++; | 1598 buildCounterDisksScopedListWarning++; |
| 1599 if (buildCounterDisksScopedListWarning < 3) { | 1599 if (buildCounterDisksScopedListWarning < 3) { |
| 1600 unittest.expect(o.code, unittest.equals('foo')); | 1600 unittest.expect(o.code, unittest.equals('foo')); |
| 1601 checkUnnamed2012(o.data); | 1601 checkUnnamed2106(o.data); |
| 1602 unittest.expect(o.message, unittest.equals('foo')); | 1602 unittest.expect(o.message, unittest.equals('foo')); |
| 1603 } | 1603 } |
| 1604 buildCounterDisksScopedListWarning--; | 1604 buildCounterDisksScopedListWarning--; |
| 1605 } | 1605 } |
| 1606 | 1606 |
| 1607 core.int buildCounterDisksScopedList = 0; | 1607 core.int buildCounterDisksScopedList = 0; |
| 1608 buildDisksScopedList() { | 1608 buildDisksScopedList() { |
| 1609 var o = new api.DisksScopedList(); | 1609 var o = new api.DisksScopedList(); |
| 1610 buildCounterDisksScopedList++; | 1610 buildCounterDisksScopedList++; |
| 1611 if (buildCounterDisksScopedList < 3) { | 1611 if (buildCounterDisksScopedList < 3) { |
| 1612 o.disks = buildUnnamed2011(); | 1612 o.disks = buildUnnamed2105(); |
| 1613 o.warning = buildDisksScopedListWarning(); | 1613 o.warning = buildDisksScopedListWarning(); |
| 1614 } | 1614 } |
| 1615 buildCounterDisksScopedList--; | 1615 buildCounterDisksScopedList--; |
| 1616 return o; | 1616 return o; |
| 1617 } | 1617 } |
| 1618 | 1618 |
| 1619 checkDisksScopedList(api.DisksScopedList o) { | 1619 checkDisksScopedList(api.DisksScopedList o) { |
| 1620 buildCounterDisksScopedList++; | 1620 buildCounterDisksScopedList++; |
| 1621 if (buildCounterDisksScopedList < 3) { | 1621 if (buildCounterDisksScopedList < 3) { |
| 1622 checkUnnamed2011(o.disks); | 1622 checkUnnamed2105(o.disks); |
| 1623 checkDisksScopedListWarning(o.warning); | 1623 checkDisksScopedListWarning(o.warning); |
| 1624 } | 1624 } |
| 1625 buildCounterDisksScopedList--; | 1625 buildCounterDisksScopedList--; |
| 1626 } | 1626 } |
| 1627 | 1627 |
| 1628 buildUnnamed2013() { | 1628 buildUnnamed2107() { |
| 1629 var o = new core.List<core.String>(); | 1629 var o = new core.List<core.String>(); |
| 1630 o.add("foo"); | 1630 o.add("foo"); |
| 1631 o.add("foo"); | 1631 o.add("foo"); |
| 1632 return o; | 1632 return o; |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 checkUnnamed2013(core.List<core.String> o) { | 1635 checkUnnamed2107(core.List<core.String> o) { |
| 1636 unittest.expect(o, unittest.hasLength(2)); | 1636 unittest.expect(o, unittest.hasLength(2)); |
| 1637 unittest.expect(o[0], unittest.equals('foo')); | 1637 unittest.expect(o[0], unittest.equals('foo')); |
| 1638 unittest.expect(o[1], unittest.equals('foo')); | 1638 unittest.expect(o[1], unittest.equals('foo')); |
| 1639 } | 1639 } |
| 1640 | 1640 |
| 1641 core.int buildCounterFirewallAllowed = 0; | 1641 core.int buildCounterFirewallAllowed = 0; |
| 1642 buildFirewallAllowed() { | 1642 buildFirewallAllowed() { |
| 1643 var o = new api.FirewallAllowed(); | 1643 var o = new api.FirewallAllowed(); |
| 1644 buildCounterFirewallAllowed++; | 1644 buildCounterFirewallAllowed++; |
| 1645 if (buildCounterFirewallAllowed < 3) { | 1645 if (buildCounterFirewallAllowed < 3) { |
| 1646 o.IPProtocol = "foo"; | 1646 o.IPProtocol = "foo"; |
| 1647 o.ports = buildUnnamed2013(); | 1647 o.ports = buildUnnamed2107(); |
| 1648 } | 1648 } |
| 1649 buildCounterFirewallAllowed--; | 1649 buildCounterFirewallAllowed--; |
| 1650 return o; | 1650 return o; |
| 1651 } | 1651 } |
| 1652 | 1652 |
| 1653 checkFirewallAllowed(api.FirewallAllowed o) { | 1653 checkFirewallAllowed(api.FirewallAllowed o) { |
| 1654 buildCounterFirewallAllowed++; | 1654 buildCounterFirewallAllowed++; |
| 1655 if (buildCounterFirewallAllowed < 3) { | 1655 if (buildCounterFirewallAllowed < 3) { |
| 1656 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1656 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1657 checkUnnamed2013(o.ports); | 1657 checkUnnamed2107(o.ports); |
| 1658 } | 1658 } |
| 1659 buildCounterFirewallAllowed--; | 1659 buildCounterFirewallAllowed--; |
| 1660 } | 1660 } |
| 1661 | 1661 |
| 1662 buildUnnamed2014() { | 1662 buildUnnamed2108() { |
| 1663 var o = new core.List<api.FirewallAllowed>(); | 1663 var o = new core.List<api.FirewallAllowed>(); |
| 1664 o.add(buildFirewallAllowed()); | 1664 o.add(buildFirewallAllowed()); |
| 1665 o.add(buildFirewallAllowed()); | 1665 o.add(buildFirewallAllowed()); |
| 1666 return o; | 1666 return o; |
| 1667 } | 1667 } |
| 1668 | 1668 |
| 1669 checkUnnamed2014(core.List<api.FirewallAllowed> o) { | 1669 checkUnnamed2108(core.List<api.FirewallAllowed> o) { |
| 1670 unittest.expect(o, unittest.hasLength(2)); | 1670 unittest.expect(o, unittest.hasLength(2)); |
| 1671 checkFirewallAllowed(o[0]); | 1671 checkFirewallAllowed(o[0]); |
| 1672 checkFirewallAllowed(o[1]); | 1672 checkFirewallAllowed(o[1]); |
| 1673 } | 1673 } |
| 1674 | 1674 |
| 1675 buildUnnamed2015() { | 1675 buildUnnamed2109() { |
| 1676 var o = new core.List<core.String>(); | 1676 var o = new core.List<core.String>(); |
| 1677 o.add("foo"); | 1677 o.add("foo"); |
| 1678 o.add("foo"); | 1678 o.add("foo"); |
| 1679 return o; | 1679 return o; |
| 1680 } | 1680 } |
| 1681 | 1681 |
| 1682 checkUnnamed2015(core.List<core.String> o) { | 1682 checkUnnamed2109(core.List<core.String> o) { |
| 1683 unittest.expect(o, unittest.hasLength(2)); | 1683 unittest.expect(o, unittest.hasLength(2)); |
| 1684 unittest.expect(o[0], unittest.equals('foo')); | 1684 unittest.expect(o[0], unittest.equals('foo')); |
| 1685 unittest.expect(o[1], unittest.equals('foo')); | 1685 unittest.expect(o[1], unittest.equals('foo')); |
| 1686 } | 1686 } |
| 1687 | 1687 |
| 1688 buildUnnamed2016() { | 1688 buildUnnamed2110() { |
| 1689 var o = new core.List<core.String>(); | 1689 var o = new core.List<core.String>(); |
| 1690 o.add("foo"); | 1690 o.add("foo"); |
| 1691 o.add("foo"); | 1691 o.add("foo"); |
| 1692 return o; | 1692 return o; |
| 1693 } | 1693 } |
| 1694 | 1694 |
| 1695 checkUnnamed2016(core.List<core.String> o) { | 1695 checkUnnamed2110(core.List<core.String> o) { |
| 1696 unittest.expect(o, unittest.hasLength(2)); | 1696 unittest.expect(o, unittest.hasLength(2)); |
| 1697 unittest.expect(o[0], unittest.equals('foo')); | 1697 unittest.expect(o[0], unittest.equals('foo')); |
| 1698 unittest.expect(o[1], unittest.equals('foo')); | 1698 unittest.expect(o[1], unittest.equals('foo')); |
| 1699 } | 1699 } |
| 1700 | 1700 |
| 1701 buildUnnamed2017() { | 1701 buildUnnamed2111() { |
| 1702 var o = new core.List<core.String>(); | 1702 var o = new core.List<core.String>(); |
| 1703 o.add("foo"); | 1703 o.add("foo"); |
| 1704 o.add("foo"); | 1704 o.add("foo"); |
| 1705 return o; | 1705 return o; |
| 1706 } | 1706 } |
| 1707 | 1707 |
| 1708 checkUnnamed2017(core.List<core.String> o) { | 1708 checkUnnamed2111(core.List<core.String> o) { |
| 1709 unittest.expect(o, unittest.hasLength(2)); | 1709 unittest.expect(o, unittest.hasLength(2)); |
| 1710 unittest.expect(o[0], unittest.equals('foo')); | 1710 unittest.expect(o[0], unittest.equals('foo')); |
| 1711 unittest.expect(o[1], unittest.equals('foo')); | 1711 unittest.expect(o[1], unittest.equals('foo')); |
| 1712 } | 1712 } |
| 1713 | 1713 |
| 1714 core.int buildCounterFirewall = 0; | 1714 core.int buildCounterFirewall = 0; |
| 1715 buildFirewall() { | 1715 buildFirewall() { |
| 1716 var o = new api.Firewall(); | 1716 var o = new api.Firewall(); |
| 1717 buildCounterFirewall++; | 1717 buildCounterFirewall++; |
| 1718 if (buildCounterFirewall < 3) { | 1718 if (buildCounterFirewall < 3) { |
| 1719 o.allowed = buildUnnamed2014(); | 1719 o.allowed = buildUnnamed2108(); |
| 1720 o.creationTimestamp = "foo"; | 1720 o.creationTimestamp = "foo"; |
| 1721 o.description = "foo"; | 1721 o.description = "foo"; |
| 1722 o.id = "foo"; | 1722 o.id = "foo"; |
| 1723 o.kind = "foo"; | 1723 o.kind = "foo"; |
| 1724 o.name = "foo"; | 1724 o.name = "foo"; |
| 1725 o.network = "foo"; | 1725 o.network = "foo"; |
| 1726 o.selfLink = "foo"; | 1726 o.selfLink = "foo"; |
| 1727 o.sourceRanges = buildUnnamed2015(); | 1727 o.sourceRanges = buildUnnamed2109(); |
| 1728 o.sourceTags = buildUnnamed2016(); | 1728 o.sourceTags = buildUnnamed2110(); |
| 1729 o.targetTags = buildUnnamed2017(); | 1729 o.targetTags = buildUnnamed2111(); |
| 1730 } | 1730 } |
| 1731 buildCounterFirewall--; | 1731 buildCounterFirewall--; |
| 1732 return o; | 1732 return o; |
| 1733 } | 1733 } |
| 1734 | 1734 |
| 1735 checkFirewall(api.Firewall o) { | 1735 checkFirewall(api.Firewall o) { |
| 1736 buildCounterFirewall++; | 1736 buildCounterFirewall++; |
| 1737 if (buildCounterFirewall < 3) { | 1737 if (buildCounterFirewall < 3) { |
| 1738 checkUnnamed2014(o.allowed); | 1738 checkUnnamed2108(o.allowed); |
| 1739 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1739 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1740 unittest.expect(o.description, unittest.equals('foo')); | 1740 unittest.expect(o.description, unittest.equals('foo')); |
| 1741 unittest.expect(o.id, unittest.equals('foo')); | 1741 unittest.expect(o.id, unittest.equals('foo')); |
| 1742 unittest.expect(o.kind, unittest.equals('foo')); | 1742 unittest.expect(o.kind, unittest.equals('foo')); |
| 1743 unittest.expect(o.name, unittest.equals('foo')); | 1743 unittest.expect(o.name, unittest.equals('foo')); |
| 1744 unittest.expect(o.network, unittest.equals('foo')); | 1744 unittest.expect(o.network, unittest.equals('foo')); |
| 1745 unittest.expect(o.selfLink, unittest.equals('foo')); | 1745 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1746 checkUnnamed2015(o.sourceRanges); | 1746 checkUnnamed2109(o.sourceRanges); |
| 1747 checkUnnamed2016(o.sourceTags); | 1747 checkUnnamed2110(o.sourceTags); |
| 1748 checkUnnamed2017(o.targetTags); | 1748 checkUnnamed2111(o.targetTags); |
| 1749 } | 1749 } |
| 1750 buildCounterFirewall--; | 1750 buildCounterFirewall--; |
| 1751 } | 1751 } |
| 1752 | 1752 |
| 1753 buildUnnamed2018() { | 1753 buildUnnamed2112() { |
| 1754 var o = new core.List<api.Firewall>(); | 1754 var o = new core.List<api.Firewall>(); |
| 1755 o.add(buildFirewall()); | 1755 o.add(buildFirewall()); |
| 1756 o.add(buildFirewall()); | 1756 o.add(buildFirewall()); |
| 1757 return o; | 1757 return o; |
| 1758 } | 1758 } |
| 1759 | 1759 |
| 1760 checkUnnamed2018(core.List<api.Firewall> o) { | 1760 checkUnnamed2112(core.List<api.Firewall> o) { |
| 1761 unittest.expect(o, unittest.hasLength(2)); | 1761 unittest.expect(o, unittest.hasLength(2)); |
| 1762 checkFirewall(o[0]); | 1762 checkFirewall(o[0]); |
| 1763 checkFirewall(o[1]); | 1763 checkFirewall(o[1]); |
| 1764 } | 1764 } |
| 1765 | 1765 |
| 1766 core.int buildCounterFirewallList = 0; | 1766 core.int buildCounterFirewallList = 0; |
| 1767 buildFirewallList() { | 1767 buildFirewallList() { |
| 1768 var o = new api.FirewallList(); | 1768 var o = new api.FirewallList(); |
| 1769 buildCounterFirewallList++; | 1769 buildCounterFirewallList++; |
| 1770 if (buildCounterFirewallList < 3) { | 1770 if (buildCounterFirewallList < 3) { |
| 1771 o.id = "foo"; | 1771 o.id = "foo"; |
| 1772 o.items = buildUnnamed2018(); | 1772 o.items = buildUnnamed2112(); |
| 1773 o.kind = "foo"; | 1773 o.kind = "foo"; |
| 1774 o.nextPageToken = "foo"; | 1774 o.nextPageToken = "foo"; |
| 1775 o.selfLink = "foo"; | 1775 o.selfLink = "foo"; |
| 1776 } | 1776 } |
| 1777 buildCounterFirewallList--; | 1777 buildCounterFirewallList--; |
| 1778 return o; | 1778 return o; |
| 1779 } | 1779 } |
| 1780 | 1780 |
| 1781 checkFirewallList(api.FirewallList o) { | 1781 checkFirewallList(api.FirewallList o) { |
| 1782 buildCounterFirewallList++; | 1782 buildCounterFirewallList++; |
| 1783 if (buildCounterFirewallList < 3) { | 1783 if (buildCounterFirewallList < 3) { |
| 1784 unittest.expect(o.id, unittest.equals('foo')); | 1784 unittest.expect(o.id, unittest.equals('foo')); |
| 1785 checkUnnamed2018(o.items); | 1785 checkUnnamed2112(o.items); |
| 1786 unittest.expect(o.kind, unittest.equals('foo')); | 1786 unittest.expect(o.kind, unittest.equals('foo')); |
| 1787 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1787 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1788 unittest.expect(o.selfLink, unittest.equals('foo')); | 1788 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1789 } | 1789 } |
| 1790 buildCounterFirewallList--; | 1790 buildCounterFirewallList--; |
| 1791 } | 1791 } |
| 1792 | 1792 |
| 1793 buildUnnamed2019() { | 1793 buildUnnamed2113() { |
| 1794 var o = new core.List<core.String>(); | 1794 var o = new core.List<core.String>(); |
| 1795 o.add("foo"); | 1795 o.add("foo"); |
| 1796 o.add("foo"); | 1796 o.add("foo"); |
| 1797 return o; | 1797 return o; |
| 1798 } | 1798 } |
| 1799 | 1799 |
| 1800 checkUnnamed2019(core.List<core.String> o) { | 1800 checkUnnamed2113(core.List<core.String> o) { |
| 1801 unittest.expect(o, unittest.hasLength(2)); | 1801 unittest.expect(o, unittest.hasLength(2)); |
| 1802 unittest.expect(o[0], unittest.equals('foo')); | 1802 unittest.expect(o[0], unittest.equals('foo')); |
| 1803 unittest.expect(o[1], unittest.equals('foo')); | 1803 unittest.expect(o[1], unittest.equals('foo')); |
| 1804 } | 1804 } |
| 1805 | 1805 |
| 1806 core.int buildCounterForwardingRule = 0; | 1806 core.int buildCounterForwardingRule = 0; |
| 1807 buildForwardingRule() { | 1807 buildForwardingRule() { |
| 1808 var o = new api.ForwardingRule(); | 1808 var o = new api.ForwardingRule(); |
| 1809 buildCounterForwardingRule++; | 1809 buildCounterForwardingRule++; |
| 1810 if (buildCounterForwardingRule < 3) { | 1810 if (buildCounterForwardingRule < 3) { |
| 1811 o.IPAddress = "foo"; | 1811 o.IPAddress = "foo"; |
| 1812 o.IPProtocol = "foo"; | 1812 o.IPProtocol = "foo"; |
| 1813 o.backendService = "foo"; | 1813 o.backendService = "foo"; |
| 1814 o.creationTimestamp = "foo"; | 1814 o.creationTimestamp = "foo"; |
| 1815 o.description = "foo"; | 1815 o.description = "foo"; |
| 1816 o.id = "foo"; | 1816 o.id = "foo"; |
| 1817 o.kind = "foo"; | 1817 o.kind = "foo"; |
| 1818 o.loadBalancingScheme = "foo"; | 1818 o.loadBalancingScheme = "foo"; |
| 1819 o.name = "foo"; | 1819 o.name = "foo"; |
| 1820 o.network = "foo"; | 1820 o.network = "foo"; |
| 1821 o.portRange = "foo"; | 1821 o.portRange = "foo"; |
| 1822 o.ports = buildUnnamed2019(); | 1822 o.ports = buildUnnamed2113(); |
| 1823 o.region = "foo"; | 1823 o.region = "foo"; |
| 1824 o.selfLink = "foo"; | 1824 o.selfLink = "foo"; |
| 1825 o.subnetwork = "foo"; | 1825 o.subnetwork = "foo"; |
| 1826 o.target = "foo"; | 1826 o.target = "foo"; |
| 1827 } | 1827 } |
| 1828 buildCounterForwardingRule--; | 1828 buildCounterForwardingRule--; |
| 1829 return o; | 1829 return o; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 checkForwardingRule(api.ForwardingRule o) { | 1832 checkForwardingRule(api.ForwardingRule o) { |
| 1833 buildCounterForwardingRule++; | 1833 buildCounterForwardingRule++; |
| 1834 if (buildCounterForwardingRule < 3) { | 1834 if (buildCounterForwardingRule < 3) { |
| 1835 unittest.expect(o.IPAddress, unittest.equals('foo')); | 1835 unittest.expect(o.IPAddress, unittest.equals('foo')); |
| 1836 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1836 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1837 unittest.expect(o.backendService, unittest.equals('foo')); | 1837 unittest.expect(o.backendService, unittest.equals('foo')); |
| 1838 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1838 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1839 unittest.expect(o.description, unittest.equals('foo')); | 1839 unittest.expect(o.description, unittest.equals('foo')); |
| 1840 unittest.expect(o.id, unittest.equals('foo')); | 1840 unittest.expect(o.id, unittest.equals('foo')); |
| 1841 unittest.expect(o.kind, unittest.equals('foo')); | 1841 unittest.expect(o.kind, unittest.equals('foo')); |
| 1842 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); | 1842 unittest.expect(o.loadBalancingScheme, unittest.equals('foo')); |
| 1843 unittest.expect(o.name, unittest.equals('foo')); | 1843 unittest.expect(o.name, unittest.equals('foo')); |
| 1844 unittest.expect(o.network, unittest.equals('foo')); | 1844 unittest.expect(o.network, unittest.equals('foo')); |
| 1845 unittest.expect(o.portRange, unittest.equals('foo')); | 1845 unittest.expect(o.portRange, unittest.equals('foo')); |
| 1846 checkUnnamed2019(o.ports); | 1846 checkUnnamed2113(o.ports); |
| 1847 unittest.expect(o.region, unittest.equals('foo')); | 1847 unittest.expect(o.region, unittest.equals('foo')); |
| 1848 unittest.expect(o.selfLink, unittest.equals('foo')); | 1848 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1849 unittest.expect(o.subnetwork, unittest.equals('foo')); | 1849 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 1850 unittest.expect(o.target, unittest.equals('foo')); | 1850 unittest.expect(o.target, unittest.equals('foo')); |
| 1851 } | 1851 } |
| 1852 buildCounterForwardingRule--; | 1852 buildCounterForwardingRule--; |
| 1853 } | 1853 } |
| 1854 | 1854 |
| 1855 buildUnnamed2020() { | 1855 buildUnnamed2114() { |
| 1856 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 1856 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 1857 o["x"] = buildForwardingRulesScopedList(); | 1857 o["x"] = buildForwardingRulesScopedList(); |
| 1858 o["y"] = buildForwardingRulesScopedList(); | 1858 o["y"] = buildForwardingRulesScopedList(); |
| 1859 return o; | 1859 return o; |
| 1860 } | 1860 } |
| 1861 | 1861 |
| 1862 checkUnnamed2020(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1862 checkUnnamed2114(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 1863 unittest.expect(o, unittest.hasLength(2)); | 1863 unittest.expect(o, unittest.hasLength(2)); |
| 1864 checkForwardingRulesScopedList(o["x"]); | 1864 checkForwardingRulesScopedList(o["x"]); |
| 1865 checkForwardingRulesScopedList(o["y"]); | 1865 checkForwardingRulesScopedList(o["y"]); |
| 1866 } | 1866 } |
| 1867 | 1867 |
| 1868 core.int buildCounterForwardingRuleAggregatedList = 0; | 1868 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 1869 buildForwardingRuleAggregatedList() { | 1869 buildForwardingRuleAggregatedList() { |
| 1870 var o = new api.ForwardingRuleAggregatedList(); | 1870 var o = new api.ForwardingRuleAggregatedList(); |
| 1871 buildCounterForwardingRuleAggregatedList++; | 1871 buildCounterForwardingRuleAggregatedList++; |
| 1872 if (buildCounterForwardingRuleAggregatedList < 3) { | 1872 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1873 o.id = "foo"; | 1873 o.id = "foo"; |
| 1874 o.items = buildUnnamed2020(); | 1874 o.items = buildUnnamed2114(); |
| 1875 o.kind = "foo"; | 1875 o.kind = "foo"; |
| 1876 o.nextPageToken = "foo"; | 1876 o.nextPageToken = "foo"; |
| 1877 o.selfLink = "foo"; | 1877 o.selfLink = "foo"; |
| 1878 } | 1878 } |
| 1879 buildCounterForwardingRuleAggregatedList--; | 1879 buildCounterForwardingRuleAggregatedList--; |
| 1880 return o; | 1880 return o; |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 1883 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 1884 buildCounterForwardingRuleAggregatedList++; | 1884 buildCounterForwardingRuleAggregatedList++; |
| 1885 if (buildCounterForwardingRuleAggregatedList < 3) { | 1885 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1886 unittest.expect(o.id, unittest.equals('foo')); | 1886 unittest.expect(o.id, unittest.equals('foo')); |
| 1887 checkUnnamed2020(o.items); | 1887 checkUnnamed2114(o.items); |
| 1888 unittest.expect(o.kind, unittest.equals('foo')); | 1888 unittest.expect(o.kind, unittest.equals('foo')); |
| 1889 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1889 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1890 unittest.expect(o.selfLink, unittest.equals('foo')); | 1890 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1891 } | 1891 } |
| 1892 buildCounterForwardingRuleAggregatedList--; | 1892 buildCounterForwardingRuleAggregatedList--; |
| 1893 } | 1893 } |
| 1894 | 1894 |
| 1895 buildUnnamed2021() { | 1895 buildUnnamed2115() { |
| 1896 var o = new core.List<api.ForwardingRule>(); | 1896 var o = new core.List<api.ForwardingRule>(); |
| 1897 o.add(buildForwardingRule()); | 1897 o.add(buildForwardingRule()); |
| 1898 o.add(buildForwardingRule()); | 1898 o.add(buildForwardingRule()); |
| 1899 return o; | 1899 return o; |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 checkUnnamed2021(core.List<api.ForwardingRule> o) { | 1902 checkUnnamed2115(core.List<api.ForwardingRule> o) { |
| 1903 unittest.expect(o, unittest.hasLength(2)); | 1903 unittest.expect(o, unittest.hasLength(2)); |
| 1904 checkForwardingRule(o[0]); | 1904 checkForwardingRule(o[0]); |
| 1905 checkForwardingRule(o[1]); | 1905 checkForwardingRule(o[1]); |
| 1906 } | 1906 } |
| 1907 | 1907 |
| 1908 core.int buildCounterForwardingRuleList = 0; | 1908 core.int buildCounterForwardingRuleList = 0; |
| 1909 buildForwardingRuleList() { | 1909 buildForwardingRuleList() { |
| 1910 var o = new api.ForwardingRuleList(); | 1910 var o = new api.ForwardingRuleList(); |
| 1911 buildCounterForwardingRuleList++; | 1911 buildCounterForwardingRuleList++; |
| 1912 if (buildCounterForwardingRuleList < 3) { | 1912 if (buildCounterForwardingRuleList < 3) { |
| 1913 o.id = "foo"; | 1913 o.id = "foo"; |
| 1914 o.items = buildUnnamed2021(); | 1914 o.items = buildUnnamed2115(); |
| 1915 o.kind = "foo"; | 1915 o.kind = "foo"; |
| 1916 o.nextPageToken = "foo"; | 1916 o.nextPageToken = "foo"; |
| 1917 o.selfLink = "foo"; | 1917 o.selfLink = "foo"; |
| 1918 } | 1918 } |
| 1919 buildCounterForwardingRuleList--; | 1919 buildCounterForwardingRuleList--; |
| 1920 return o; | 1920 return o; |
| 1921 } | 1921 } |
| 1922 | 1922 |
| 1923 checkForwardingRuleList(api.ForwardingRuleList o) { | 1923 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 1924 buildCounterForwardingRuleList++; | 1924 buildCounterForwardingRuleList++; |
| 1925 if (buildCounterForwardingRuleList < 3) { | 1925 if (buildCounterForwardingRuleList < 3) { |
| 1926 unittest.expect(o.id, unittest.equals('foo')); | 1926 unittest.expect(o.id, unittest.equals('foo')); |
| 1927 checkUnnamed2021(o.items); | 1927 checkUnnamed2115(o.items); |
| 1928 unittest.expect(o.kind, unittest.equals('foo')); | 1928 unittest.expect(o.kind, unittest.equals('foo')); |
| 1929 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1929 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1930 unittest.expect(o.selfLink, unittest.equals('foo')); | 1930 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1931 } | 1931 } |
| 1932 buildCounterForwardingRuleList--; | 1932 buildCounterForwardingRuleList--; |
| 1933 } | 1933 } |
| 1934 | 1934 |
| 1935 buildUnnamed2022() { | 1935 buildUnnamed2116() { |
| 1936 var o = new core.List<api.ForwardingRule>(); | 1936 var o = new core.List<api.ForwardingRule>(); |
| 1937 o.add(buildForwardingRule()); | 1937 o.add(buildForwardingRule()); |
| 1938 o.add(buildForwardingRule()); | 1938 o.add(buildForwardingRule()); |
| 1939 return o; | 1939 return o; |
| 1940 } | 1940 } |
| 1941 | 1941 |
| 1942 checkUnnamed2022(core.List<api.ForwardingRule> o) { | 1942 checkUnnamed2116(core.List<api.ForwardingRule> o) { |
| 1943 unittest.expect(o, unittest.hasLength(2)); | 1943 unittest.expect(o, unittest.hasLength(2)); |
| 1944 checkForwardingRule(o[0]); | 1944 checkForwardingRule(o[0]); |
| 1945 checkForwardingRule(o[1]); | 1945 checkForwardingRule(o[1]); |
| 1946 } | 1946 } |
| 1947 | 1947 |
| 1948 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 1948 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 1949 buildForwardingRulesScopedListWarningData() { | 1949 buildForwardingRulesScopedListWarningData() { |
| 1950 var o = new api.ForwardingRulesScopedListWarningData(); | 1950 var o = new api.ForwardingRulesScopedListWarningData(); |
| 1951 buildCounterForwardingRulesScopedListWarningData++; | 1951 buildCounterForwardingRulesScopedListWarningData++; |
| 1952 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1952 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1953 o.key = "foo"; | 1953 o.key = "foo"; |
| 1954 o.value = "foo"; | 1954 o.value = "foo"; |
| 1955 } | 1955 } |
| 1956 buildCounterForwardingRulesScopedListWarningData--; | 1956 buildCounterForwardingRulesScopedListWarningData--; |
| 1957 return o; | 1957 return o; |
| 1958 } | 1958 } |
| 1959 | 1959 |
| 1960 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 1960 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 1961 buildCounterForwardingRulesScopedListWarningData++; | 1961 buildCounterForwardingRulesScopedListWarningData++; |
| 1962 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1962 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1963 unittest.expect(o.key, unittest.equals('foo')); | 1963 unittest.expect(o.key, unittest.equals('foo')); |
| 1964 unittest.expect(o.value, unittest.equals('foo')); | 1964 unittest.expect(o.value, unittest.equals('foo')); |
| 1965 } | 1965 } |
| 1966 buildCounterForwardingRulesScopedListWarningData--; | 1966 buildCounterForwardingRulesScopedListWarningData--; |
| 1967 } | 1967 } |
| 1968 | 1968 |
| 1969 buildUnnamed2023() { | 1969 buildUnnamed2117() { |
| 1970 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 1970 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 1971 o.add(buildForwardingRulesScopedListWarningData()); | 1971 o.add(buildForwardingRulesScopedListWarningData()); |
| 1972 o.add(buildForwardingRulesScopedListWarningData()); | 1972 o.add(buildForwardingRulesScopedListWarningData()); |
| 1973 return o; | 1973 return o; |
| 1974 } | 1974 } |
| 1975 | 1975 |
| 1976 checkUnnamed2023(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1976 checkUnnamed2117(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 1977 unittest.expect(o, unittest.hasLength(2)); | 1977 unittest.expect(o, unittest.hasLength(2)); |
| 1978 checkForwardingRulesScopedListWarningData(o[0]); | 1978 checkForwardingRulesScopedListWarningData(o[0]); |
| 1979 checkForwardingRulesScopedListWarningData(o[1]); | 1979 checkForwardingRulesScopedListWarningData(o[1]); |
| 1980 } | 1980 } |
| 1981 | 1981 |
| 1982 core.int buildCounterForwardingRulesScopedListWarning = 0; | 1982 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 1983 buildForwardingRulesScopedListWarning() { | 1983 buildForwardingRulesScopedListWarning() { |
| 1984 var o = new api.ForwardingRulesScopedListWarning(); | 1984 var o = new api.ForwardingRulesScopedListWarning(); |
| 1985 buildCounterForwardingRulesScopedListWarning++; | 1985 buildCounterForwardingRulesScopedListWarning++; |
| 1986 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1986 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1987 o.code = "foo"; | 1987 o.code = "foo"; |
| 1988 o.data = buildUnnamed2023(); | 1988 o.data = buildUnnamed2117(); |
| 1989 o.message = "foo"; | 1989 o.message = "foo"; |
| 1990 } | 1990 } |
| 1991 buildCounterForwardingRulesScopedListWarning--; | 1991 buildCounterForwardingRulesScopedListWarning--; |
| 1992 return o; | 1992 return o; |
| 1993 } | 1993 } |
| 1994 | 1994 |
| 1995 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 1995 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 1996 buildCounterForwardingRulesScopedListWarning++; | 1996 buildCounterForwardingRulesScopedListWarning++; |
| 1997 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1997 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1998 unittest.expect(o.code, unittest.equals('foo')); | 1998 unittest.expect(o.code, unittest.equals('foo')); |
| 1999 checkUnnamed2023(o.data); | 1999 checkUnnamed2117(o.data); |
| 2000 unittest.expect(o.message, unittest.equals('foo')); | 2000 unittest.expect(o.message, unittest.equals('foo')); |
| 2001 } | 2001 } |
| 2002 buildCounterForwardingRulesScopedListWarning--; | 2002 buildCounterForwardingRulesScopedListWarning--; |
| 2003 } | 2003 } |
| 2004 | 2004 |
| 2005 core.int buildCounterForwardingRulesScopedList = 0; | 2005 core.int buildCounterForwardingRulesScopedList = 0; |
| 2006 buildForwardingRulesScopedList() { | 2006 buildForwardingRulesScopedList() { |
| 2007 var o = new api.ForwardingRulesScopedList(); | 2007 var o = new api.ForwardingRulesScopedList(); |
| 2008 buildCounterForwardingRulesScopedList++; | 2008 buildCounterForwardingRulesScopedList++; |
| 2009 if (buildCounterForwardingRulesScopedList < 3) { | 2009 if (buildCounterForwardingRulesScopedList < 3) { |
| 2010 o.forwardingRules = buildUnnamed2022(); | 2010 o.forwardingRules = buildUnnamed2116(); |
| 2011 o.warning = buildForwardingRulesScopedListWarning(); | 2011 o.warning = buildForwardingRulesScopedListWarning(); |
| 2012 } | 2012 } |
| 2013 buildCounterForwardingRulesScopedList--; | 2013 buildCounterForwardingRulesScopedList--; |
| 2014 return o; | 2014 return o; |
| 2015 } | 2015 } |
| 2016 | 2016 |
| 2017 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 2017 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 2018 buildCounterForwardingRulesScopedList++; | 2018 buildCounterForwardingRulesScopedList++; |
| 2019 if (buildCounterForwardingRulesScopedList < 3) { | 2019 if (buildCounterForwardingRulesScopedList < 3) { |
| 2020 checkUnnamed2022(o.forwardingRules); | 2020 checkUnnamed2116(o.forwardingRules); |
| 2021 checkForwardingRulesScopedListWarning(o.warning); | 2021 checkForwardingRulesScopedListWarning(o.warning); |
| 2022 } | 2022 } |
| 2023 buildCounterForwardingRulesScopedList--; | 2023 buildCounterForwardingRulesScopedList--; |
| 2024 } | 2024 } |
| 2025 | 2025 |
| 2026 core.int buildCounterGuestOsFeature = 0; | 2026 core.int buildCounterGuestOsFeature = 0; |
| 2027 buildGuestOsFeature() { | 2027 buildGuestOsFeature() { |
| 2028 var o = new api.GuestOsFeature(); | 2028 var o = new api.GuestOsFeature(); |
| 2029 buildCounterGuestOsFeature++; | 2029 buildCounterGuestOsFeature++; |
| 2030 if (buildCounterGuestOsFeature < 3) { | 2030 if (buildCounterGuestOsFeature < 3) { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2136 unittest.expect(o.selfLink, unittest.equals('foo')); | 2136 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2137 checkSSLHealthCheck(o.sslHealthCheck); | 2137 checkSSLHealthCheck(o.sslHealthCheck); |
| 2138 checkTCPHealthCheck(o.tcpHealthCheck); | 2138 checkTCPHealthCheck(o.tcpHealthCheck); |
| 2139 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2139 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2140 unittest.expect(o.type, unittest.equals('foo')); | 2140 unittest.expect(o.type, unittest.equals('foo')); |
| 2141 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2141 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2142 } | 2142 } |
| 2143 buildCounterHealthCheck--; | 2143 buildCounterHealthCheck--; |
| 2144 } | 2144 } |
| 2145 | 2145 |
| 2146 buildUnnamed2024() { | 2146 buildUnnamed2118() { |
| 2147 var o = new core.List<api.HealthCheck>(); | 2147 var o = new core.List<api.HealthCheck>(); |
| 2148 o.add(buildHealthCheck()); | 2148 o.add(buildHealthCheck()); |
| 2149 o.add(buildHealthCheck()); | 2149 o.add(buildHealthCheck()); |
| 2150 return o; | 2150 return o; |
| 2151 } | 2151 } |
| 2152 | 2152 |
| 2153 checkUnnamed2024(core.List<api.HealthCheck> o) { | 2153 checkUnnamed2118(core.List<api.HealthCheck> o) { |
| 2154 unittest.expect(o, unittest.hasLength(2)); | 2154 unittest.expect(o, unittest.hasLength(2)); |
| 2155 checkHealthCheck(o[0]); | 2155 checkHealthCheck(o[0]); |
| 2156 checkHealthCheck(o[1]); | 2156 checkHealthCheck(o[1]); |
| 2157 } | 2157 } |
| 2158 | 2158 |
| 2159 core.int buildCounterHealthCheckList = 0; | 2159 core.int buildCounterHealthCheckList = 0; |
| 2160 buildHealthCheckList() { | 2160 buildHealthCheckList() { |
| 2161 var o = new api.HealthCheckList(); | 2161 var o = new api.HealthCheckList(); |
| 2162 buildCounterHealthCheckList++; | 2162 buildCounterHealthCheckList++; |
| 2163 if (buildCounterHealthCheckList < 3) { | 2163 if (buildCounterHealthCheckList < 3) { |
| 2164 o.id = "foo"; | 2164 o.id = "foo"; |
| 2165 o.items = buildUnnamed2024(); | 2165 o.items = buildUnnamed2118(); |
| 2166 o.kind = "foo"; | 2166 o.kind = "foo"; |
| 2167 o.nextPageToken = "foo"; | 2167 o.nextPageToken = "foo"; |
| 2168 o.selfLink = "foo"; | 2168 o.selfLink = "foo"; |
| 2169 } | 2169 } |
| 2170 buildCounterHealthCheckList--; | 2170 buildCounterHealthCheckList--; |
| 2171 return o; | 2171 return o; |
| 2172 } | 2172 } |
| 2173 | 2173 |
| 2174 checkHealthCheckList(api.HealthCheckList o) { | 2174 checkHealthCheckList(api.HealthCheckList o) { |
| 2175 buildCounterHealthCheckList++; | 2175 buildCounterHealthCheckList++; |
| 2176 if (buildCounterHealthCheckList < 3) { | 2176 if (buildCounterHealthCheckList < 3) { |
| 2177 unittest.expect(o.id, unittest.equals('foo')); | 2177 unittest.expect(o.id, unittest.equals('foo')); |
| 2178 checkUnnamed2024(o.items); | 2178 checkUnnamed2118(o.items); |
| 2179 unittest.expect(o.kind, unittest.equals('foo')); | 2179 unittest.expect(o.kind, unittest.equals('foo')); |
| 2180 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2180 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2181 unittest.expect(o.selfLink, unittest.equals('foo')); | 2181 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2182 } | 2182 } |
| 2183 buildCounterHealthCheckList--; | 2183 buildCounterHealthCheckList--; |
| 2184 } | 2184 } |
| 2185 | 2185 |
| 2186 core.int buildCounterHealthCheckReference = 0; | 2186 core.int buildCounterHealthCheckReference = 0; |
| 2187 buildHealthCheckReference() { | 2187 buildHealthCheckReference() { |
| 2188 var o = new api.HealthCheckReference(); | 2188 var o = new api.HealthCheckReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2220 buildCounterHealthStatus++; | 2220 buildCounterHealthStatus++; |
| 2221 if (buildCounterHealthStatus < 3) { | 2221 if (buildCounterHealthStatus < 3) { |
| 2222 unittest.expect(o.healthState, unittest.equals('foo')); | 2222 unittest.expect(o.healthState, unittest.equals('foo')); |
| 2223 unittest.expect(o.instance, unittest.equals('foo')); | 2223 unittest.expect(o.instance, unittest.equals('foo')); |
| 2224 unittest.expect(o.ipAddress, unittest.equals('foo')); | 2224 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 2225 unittest.expect(o.port, unittest.equals(42)); | 2225 unittest.expect(o.port, unittest.equals(42)); |
| 2226 } | 2226 } |
| 2227 buildCounterHealthStatus--; | 2227 buildCounterHealthStatus--; |
| 2228 } | 2228 } |
| 2229 | 2229 |
| 2230 buildUnnamed2025() { | 2230 buildUnnamed2119() { |
| 2231 var o = new core.List<core.String>(); | 2231 var o = new core.List<core.String>(); |
| 2232 o.add("foo"); | 2232 o.add("foo"); |
| 2233 o.add("foo"); | 2233 o.add("foo"); |
| 2234 return o; | 2234 return o; |
| 2235 } | 2235 } |
| 2236 | 2236 |
| 2237 checkUnnamed2025(core.List<core.String> o) { | 2237 checkUnnamed2119(core.List<core.String> o) { |
| 2238 unittest.expect(o, unittest.hasLength(2)); | 2238 unittest.expect(o, unittest.hasLength(2)); |
| 2239 unittest.expect(o[0], unittest.equals('foo')); | 2239 unittest.expect(o[0], unittest.equals('foo')); |
| 2240 unittest.expect(o[1], unittest.equals('foo')); | 2240 unittest.expect(o[1], unittest.equals('foo')); |
| 2241 } | 2241 } |
| 2242 | 2242 |
| 2243 core.int buildCounterHostRule = 0; | 2243 core.int buildCounterHostRule = 0; |
| 2244 buildHostRule() { | 2244 buildHostRule() { |
| 2245 var o = new api.HostRule(); | 2245 var o = new api.HostRule(); |
| 2246 buildCounterHostRule++; | 2246 buildCounterHostRule++; |
| 2247 if (buildCounterHostRule < 3) { | 2247 if (buildCounterHostRule < 3) { |
| 2248 o.description = "foo"; | 2248 o.description = "foo"; |
| 2249 o.hosts = buildUnnamed2025(); | 2249 o.hosts = buildUnnamed2119(); |
| 2250 o.pathMatcher = "foo"; | 2250 o.pathMatcher = "foo"; |
| 2251 } | 2251 } |
| 2252 buildCounterHostRule--; | 2252 buildCounterHostRule--; |
| 2253 return o; | 2253 return o; |
| 2254 } | 2254 } |
| 2255 | 2255 |
| 2256 checkHostRule(api.HostRule o) { | 2256 checkHostRule(api.HostRule o) { |
| 2257 buildCounterHostRule++; | 2257 buildCounterHostRule++; |
| 2258 if (buildCounterHostRule < 3) { | 2258 if (buildCounterHostRule < 3) { |
| 2259 unittest.expect(o.description, unittest.equals('foo')); | 2259 unittest.expect(o.description, unittest.equals('foo')); |
| 2260 checkUnnamed2025(o.hosts); | 2260 checkUnnamed2119(o.hosts); |
| 2261 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 2261 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 2262 } | 2262 } |
| 2263 buildCounterHostRule--; | 2263 buildCounterHostRule--; |
| 2264 } | 2264 } |
| 2265 | 2265 |
| 2266 core.int buildCounterHttpHealthCheck = 0; | 2266 core.int buildCounterHttpHealthCheck = 0; |
| 2267 buildHttpHealthCheck() { | 2267 buildHttpHealthCheck() { |
| 2268 var o = new api.HttpHealthCheck(); | 2268 var o = new api.HttpHealthCheck(); |
| 2269 buildCounterHttpHealthCheck++; | 2269 buildCounterHttpHealthCheck++; |
| 2270 if (buildCounterHttpHealthCheck < 3) { | 2270 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 2299 unittest.expect(o.name, unittest.equals('foo')); | 2299 unittest.expect(o.name, unittest.equals('foo')); |
| 2300 unittest.expect(o.port, unittest.equals(42)); | 2300 unittest.expect(o.port, unittest.equals(42)); |
| 2301 unittest.expect(o.requestPath, unittest.equals('foo')); | 2301 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 2302 unittest.expect(o.selfLink, unittest.equals('foo')); | 2302 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2303 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2303 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2304 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2304 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2305 } | 2305 } |
| 2306 buildCounterHttpHealthCheck--; | 2306 buildCounterHttpHealthCheck--; |
| 2307 } | 2307 } |
| 2308 | 2308 |
| 2309 buildUnnamed2026() { | 2309 buildUnnamed2120() { |
| 2310 var o = new core.List<api.HttpHealthCheck>(); | 2310 var o = new core.List<api.HttpHealthCheck>(); |
| 2311 o.add(buildHttpHealthCheck()); | 2311 o.add(buildHttpHealthCheck()); |
| 2312 o.add(buildHttpHealthCheck()); | 2312 o.add(buildHttpHealthCheck()); |
| 2313 return o; | 2313 return o; |
| 2314 } | 2314 } |
| 2315 | 2315 |
| 2316 checkUnnamed2026(core.List<api.HttpHealthCheck> o) { | 2316 checkUnnamed2120(core.List<api.HttpHealthCheck> o) { |
| 2317 unittest.expect(o, unittest.hasLength(2)); | 2317 unittest.expect(o, unittest.hasLength(2)); |
| 2318 checkHttpHealthCheck(o[0]); | 2318 checkHttpHealthCheck(o[0]); |
| 2319 checkHttpHealthCheck(o[1]); | 2319 checkHttpHealthCheck(o[1]); |
| 2320 } | 2320 } |
| 2321 | 2321 |
| 2322 core.int buildCounterHttpHealthCheckList = 0; | 2322 core.int buildCounterHttpHealthCheckList = 0; |
| 2323 buildHttpHealthCheckList() { | 2323 buildHttpHealthCheckList() { |
| 2324 var o = new api.HttpHealthCheckList(); | 2324 var o = new api.HttpHealthCheckList(); |
| 2325 buildCounterHttpHealthCheckList++; | 2325 buildCounterHttpHealthCheckList++; |
| 2326 if (buildCounterHttpHealthCheckList < 3) { | 2326 if (buildCounterHttpHealthCheckList < 3) { |
| 2327 o.id = "foo"; | 2327 o.id = "foo"; |
| 2328 o.items = buildUnnamed2026(); | 2328 o.items = buildUnnamed2120(); |
| 2329 o.kind = "foo"; | 2329 o.kind = "foo"; |
| 2330 o.nextPageToken = "foo"; | 2330 o.nextPageToken = "foo"; |
| 2331 o.selfLink = "foo"; | 2331 o.selfLink = "foo"; |
| 2332 } | 2332 } |
| 2333 buildCounterHttpHealthCheckList--; | 2333 buildCounterHttpHealthCheckList--; |
| 2334 return o; | 2334 return o; |
| 2335 } | 2335 } |
| 2336 | 2336 |
| 2337 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 2337 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 2338 buildCounterHttpHealthCheckList++; | 2338 buildCounterHttpHealthCheckList++; |
| 2339 if (buildCounterHttpHealthCheckList < 3) { | 2339 if (buildCounterHttpHealthCheckList < 3) { |
| 2340 unittest.expect(o.id, unittest.equals('foo')); | 2340 unittest.expect(o.id, unittest.equals('foo')); |
| 2341 checkUnnamed2026(o.items); | 2341 checkUnnamed2120(o.items); |
| 2342 unittest.expect(o.kind, unittest.equals('foo')); | 2342 unittest.expect(o.kind, unittest.equals('foo')); |
| 2343 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2343 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2344 unittest.expect(o.selfLink, unittest.equals('foo')); | 2344 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2345 } | 2345 } |
| 2346 buildCounterHttpHealthCheckList--; | 2346 buildCounterHttpHealthCheckList--; |
| 2347 } | 2347 } |
| 2348 | 2348 |
| 2349 core.int buildCounterHttpsHealthCheck = 0; | 2349 core.int buildCounterHttpsHealthCheck = 0; |
| 2350 buildHttpsHealthCheck() { | 2350 buildHttpsHealthCheck() { |
| 2351 var o = new api.HttpsHealthCheck(); | 2351 var o = new api.HttpsHealthCheck(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 2382 unittest.expect(o.name, unittest.equals('foo')); | 2382 unittest.expect(o.name, unittest.equals('foo')); |
| 2383 unittest.expect(o.port, unittest.equals(42)); | 2383 unittest.expect(o.port, unittest.equals(42)); |
| 2384 unittest.expect(o.requestPath, unittest.equals('foo')); | 2384 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 2385 unittest.expect(o.selfLink, unittest.equals('foo')); | 2385 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2386 unittest.expect(o.timeoutSec, unittest.equals(42)); | 2386 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 2387 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 2387 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 2388 } | 2388 } |
| 2389 buildCounterHttpsHealthCheck--; | 2389 buildCounterHttpsHealthCheck--; |
| 2390 } | 2390 } |
| 2391 | 2391 |
| 2392 buildUnnamed2027() { | 2392 buildUnnamed2121() { |
| 2393 var o = new core.List<api.HttpsHealthCheck>(); | 2393 var o = new core.List<api.HttpsHealthCheck>(); |
| 2394 o.add(buildHttpsHealthCheck()); | 2394 o.add(buildHttpsHealthCheck()); |
| 2395 o.add(buildHttpsHealthCheck()); | 2395 o.add(buildHttpsHealthCheck()); |
| 2396 return o; | 2396 return o; |
| 2397 } | 2397 } |
| 2398 | 2398 |
| 2399 checkUnnamed2027(core.List<api.HttpsHealthCheck> o) { | 2399 checkUnnamed2121(core.List<api.HttpsHealthCheck> o) { |
| 2400 unittest.expect(o, unittest.hasLength(2)); | 2400 unittest.expect(o, unittest.hasLength(2)); |
| 2401 checkHttpsHealthCheck(o[0]); | 2401 checkHttpsHealthCheck(o[0]); |
| 2402 checkHttpsHealthCheck(o[1]); | 2402 checkHttpsHealthCheck(o[1]); |
| 2403 } | 2403 } |
| 2404 | 2404 |
| 2405 core.int buildCounterHttpsHealthCheckList = 0; | 2405 core.int buildCounterHttpsHealthCheckList = 0; |
| 2406 buildHttpsHealthCheckList() { | 2406 buildHttpsHealthCheckList() { |
| 2407 var o = new api.HttpsHealthCheckList(); | 2407 var o = new api.HttpsHealthCheckList(); |
| 2408 buildCounterHttpsHealthCheckList++; | 2408 buildCounterHttpsHealthCheckList++; |
| 2409 if (buildCounterHttpsHealthCheckList < 3) { | 2409 if (buildCounterHttpsHealthCheckList < 3) { |
| 2410 o.id = "foo"; | 2410 o.id = "foo"; |
| 2411 o.items = buildUnnamed2027(); | 2411 o.items = buildUnnamed2121(); |
| 2412 o.kind = "foo"; | 2412 o.kind = "foo"; |
| 2413 o.nextPageToken = "foo"; | 2413 o.nextPageToken = "foo"; |
| 2414 o.selfLink = "foo"; | 2414 o.selfLink = "foo"; |
| 2415 } | 2415 } |
| 2416 buildCounterHttpsHealthCheckList--; | 2416 buildCounterHttpsHealthCheckList--; |
| 2417 return o; | 2417 return o; |
| 2418 } | 2418 } |
| 2419 | 2419 |
| 2420 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { | 2420 checkHttpsHealthCheckList(api.HttpsHealthCheckList o) { |
| 2421 buildCounterHttpsHealthCheckList++; | 2421 buildCounterHttpsHealthCheckList++; |
| 2422 if (buildCounterHttpsHealthCheckList < 3) { | 2422 if (buildCounterHttpsHealthCheckList < 3) { |
| 2423 unittest.expect(o.id, unittest.equals('foo')); | 2423 unittest.expect(o.id, unittest.equals('foo')); |
| 2424 checkUnnamed2027(o.items); | 2424 checkUnnamed2121(o.items); |
| 2425 unittest.expect(o.kind, unittest.equals('foo')); | 2425 unittest.expect(o.kind, unittest.equals('foo')); |
| 2426 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2426 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2427 unittest.expect(o.selfLink, unittest.equals('foo')); | 2427 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2428 } | 2428 } |
| 2429 buildCounterHttpsHealthCheckList--; | 2429 buildCounterHttpsHealthCheckList--; |
| 2430 } | 2430 } |
| 2431 | 2431 |
| 2432 buildUnnamed2028() { | 2432 buildUnnamed2122() { |
| 2433 var o = new core.List<api.GuestOsFeature>(); | 2433 var o = new core.List<api.GuestOsFeature>(); |
| 2434 o.add(buildGuestOsFeature()); | 2434 o.add(buildGuestOsFeature()); |
| 2435 o.add(buildGuestOsFeature()); | 2435 o.add(buildGuestOsFeature()); |
| 2436 return o; | 2436 return o; |
| 2437 } | 2437 } |
| 2438 | 2438 |
| 2439 checkUnnamed2028(core.List<api.GuestOsFeature> o) { | 2439 checkUnnamed2122(core.List<api.GuestOsFeature> o) { |
| 2440 unittest.expect(o, unittest.hasLength(2)); | 2440 unittest.expect(o, unittest.hasLength(2)); |
| 2441 checkGuestOsFeature(o[0]); | 2441 checkGuestOsFeature(o[0]); |
| 2442 checkGuestOsFeature(o[1]); | 2442 checkGuestOsFeature(o[1]); |
| 2443 } | 2443 } |
| 2444 | 2444 |
| 2445 buildUnnamed2029() { | 2445 buildUnnamed2123() { |
| 2446 var o = new core.List<core.String>(); | 2446 var o = new core.List<core.String>(); |
| 2447 o.add("foo"); | 2447 o.add("foo"); |
| 2448 o.add("foo"); | 2448 o.add("foo"); |
| 2449 return o; | 2449 return o; |
| 2450 } | 2450 } |
| 2451 | 2451 |
| 2452 checkUnnamed2029(core.List<core.String> o) { | 2452 checkUnnamed2123(core.List<core.String> o) { |
| 2453 unittest.expect(o, unittest.hasLength(2)); | 2453 unittest.expect(o, unittest.hasLength(2)); |
| 2454 unittest.expect(o[0], unittest.equals('foo')); | 2454 unittest.expect(o[0], unittest.equals('foo')); |
| 2455 unittest.expect(o[1], unittest.equals('foo')); | 2455 unittest.expect(o[1], unittest.equals('foo')); |
| 2456 } | 2456 } |
| 2457 | 2457 |
| 2458 core.int buildCounterImageRawDisk = 0; | 2458 core.int buildCounterImageRawDisk = 0; |
| 2459 buildImageRawDisk() { | 2459 buildImageRawDisk() { |
| 2460 var o = new api.ImageRawDisk(); | 2460 var o = new api.ImageRawDisk(); |
| 2461 buildCounterImageRawDisk++; | 2461 buildCounterImageRawDisk++; |
| 2462 if (buildCounterImageRawDisk < 3) { | 2462 if (buildCounterImageRawDisk < 3) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 2482 buildImage() { | 2482 buildImage() { |
| 2483 var o = new api.Image(); | 2483 var o = new api.Image(); |
| 2484 buildCounterImage++; | 2484 buildCounterImage++; |
| 2485 if (buildCounterImage < 3) { | 2485 if (buildCounterImage < 3) { |
| 2486 o.archiveSizeBytes = "foo"; | 2486 o.archiveSizeBytes = "foo"; |
| 2487 o.creationTimestamp = "foo"; | 2487 o.creationTimestamp = "foo"; |
| 2488 o.deprecated = buildDeprecationStatus(); | 2488 o.deprecated = buildDeprecationStatus(); |
| 2489 o.description = "foo"; | 2489 o.description = "foo"; |
| 2490 o.diskSizeGb = "foo"; | 2490 o.diskSizeGb = "foo"; |
| 2491 o.family = "foo"; | 2491 o.family = "foo"; |
| 2492 o.guestOsFeatures = buildUnnamed2028(); | 2492 o.guestOsFeatures = buildUnnamed2122(); |
| 2493 o.id = "foo"; | 2493 o.id = "foo"; |
| 2494 o.imageEncryptionKey = buildCustomerEncryptionKey(); | 2494 o.imageEncryptionKey = buildCustomerEncryptionKey(); |
| 2495 o.kind = "foo"; | 2495 o.kind = "foo"; |
| 2496 o.licenses = buildUnnamed2029(); | 2496 o.licenses = buildUnnamed2123(); |
| 2497 o.name = "foo"; | 2497 o.name = "foo"; |
| 2498 o.rawDisk = buildImageRawDisk(); | 2498 o.rawDisk = buildImageRawDisk(); |
| 2499 o.selfLink = "foo"; | 2499 o.selfLink = "foo"; |
| 2500 o.sourceDisk = "foo"; | 2500 o.sourceDisk = "foo"; |
| 2501 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 2501 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 2502 o.sourceDiskId = "foo"; | 2502 o.sourceDiskId = "foo"; |
| 2503 o.sourceType = "foo"; | 2503 o.sourceType = "foo"; |
| 2504 o.status = "foo"; | 2504 o.status = "foo"; |
| 2505 } | 2505 } |
| 2506 buildCounterImage--; | 2506 buildCounterImage--; |
| 2507 return o; | 2507 return o; |
| 2508 } | 2508 } |
| 2509 | 2509 |
| 2510 checkImage(api.Image o) { | 2510 checkImage(api.Image o) { |
| 2511 buildCounterImage++; | 2511 buildCounterImage++; |
| 2512 if (buildCounterImage < 3) { | 2512 if (buildCounterImage < 3) { |
| 2513 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 2513 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 2514 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2514 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2515 checkDeprecationStatus(o.deprecated); | 2515 checkDeprecationStatus(o.deprecated); |
| 2516 unittest.expect(o.description, unittest.equals('foo')); | 2516 unittest.expect(o.description, unittest.equals('foo')); |
| 2517 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 2517 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 2518 unittest.expect(o.family, unittest.equals('foo')); | 2518 unittest.expect(o.family, unittest.equals('foo')); |
| 2519 checkUnnamed2028(o.guestOsFeatures); | 2519 checkUnnamed2122(o.guestOsFeatures); |
| 2520 unittest.expect(o.id, unittest.equals('foo')); | 2520 unittest.expect(o.id, unittest.equals('foo')); |
| 2521 checkCustomerEncryptionKey(o.imageEncryptionKey); | 2521 checkCustomerEncryptionKey(o.imageEncryptionKey); |
| 2522 unittest.expect(o.kind, unittest.equals('foo')); | 2522 unittest.expect(o.kind, unittest.equals('foo')); |
| 2523 checkUnnamed2029(o.licenses); | 2523 checkUnnamed2123(o.licenses); |
| 2524 unittest.expect(o.name, unittest.equals('foo')); | 2524 unittest.expect(o.name, unittest.equals('foo')); |
| 2525 checkImageRawDisk(o.rawDisk); | 2525 checkImageRawDisk(o.rawDisk); |
| 2526 unittest.expect(o.selfLink, unittest.equals('foo')); | 2526 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2527 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 2527 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 2528 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 2528 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 2529 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 2529 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 2530 unittest.expect(o.sourceType, unittest.equals('foo')); | 2530 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 2531 unittest.expect(o.status, unittest.equals('foo')); | 2531 unittest.expect(o.status, unittest.equals('foo')); |
| 2532 } | 2532 } |
| 2533 buildCounterImage--; | 2533 buildCounterImage--; |
| 2534 } | 2534 } |
| 2535 | 2535 |
| 2536 buildUnnamed2030() { | 2536 buildUnnamed2124() { |
| 2537 var o = new core.List<api.Image>(); | 2537 var o = new core.List<api.Image>(); |
| 2538 o.add(buildImage()); | 2538 o.add(buildImage()); |
| 2539 o.add(buildImage()); | 2539 o.add(buildImage()); |
| 2540 return o; | 2540 return o; |
| 2541 } | 2541 } |
| 2542 | 2542 |
| 2543 checkUnnamed2030(core.List<api.Image> o) { | 2543 checkUnnamed2124(core.List<api.Image> o) { |
| 2544 unittest.expect(o, unittest.hasLength(2)); | 2544 unittest.expect(o, unittest.hasLength(2)); |
| 2545 checkImage(o[0]); | 2545 checkImage(o[0]); |
| 2546 checkImage(o[1]); | 2546 checkImage(o[1]); |
| 2547 } | 2547 } |
| 2548 | 2548 |
| 2549 core.int buildCounterImageList = 0; | 2549 core.int buildCounterImageList = 0; |
| 2550 buildImageList() { | 2550 buildImageList() { |
| 2551 var o = new api.ImageList(); | 2551 var o = new api.ImageList(); |
| 2552 buildCounterImageList++; | 2552 buildCounterImageList++; |
| 2553 if (buildCounterImageList < 3) { | 2553 if (buildCounterImageList < 3) { |
| 2554 o.id = "foo"; | 2554 o.id = "foo"; |
| 2555 o.items = buildUnnamed2030(); | 2555 o.items = buildUnnamed2124(); |
| 2556 o.kind = "foo"; | 2556 o.kind = "foo"; |
| 2557 o.nextPageToken = "foo"; | 2557 o.nextPageToken = "foo"; |
| 2558 o.selfLink = "foo"; | 2558 o.selfLink = "foo"; |
| 2559 } | 2559 } |
| 2560 buildCounterImageList--; | 2560 buildCounterImageList--; |
| 2561 return o; | 2561 return o; |
| 2562 } | 2562 } |
| 2563 | 2563 |
| 2564 checkImageList(api.ImageList o) { | 2564 checkImageList(api.ImageList o) { |
| 2565 buildCounterImageList++; | 2565 buildCounterImageList++; |
| 2566 if (buildCounterImageList < 3) { | 2566 if (buildCounterImageList < 3) { |
| 2567 unittest.expect(o.id, unittest.equals('foo')); | 2567 unittest.expect(o.id, unittest.equals('foo')); |
| 2568 checkUnnamed2030(o.items); | 2568 checkUnnamed2124(o.items); |
| 2569 unittest.expect(o.kind, unittest.equals('foo')); | 2569 unittest.expect(o.kind, unittest.equals('foo')); |
| 2570 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2570 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2571 unittest.expect(o.selfLink, unittest.equals('foo')); | 2571 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2572 } | 2572 } |
| 2573 buildCounterImageList--; | 2573 buildCounterImageList--; |
| 2574 } | 2574 } |
| 2575 | 2575 |
| 2576 buildUnnamed2031() { | 2576 buildUnnamed2125() { |
| 2577 var o = new core.List<api.AttachedDisk>(); | 2577 var o = new core.List<api.AttachedDisk>(); |
| 2578 o.add(buildAttachedDisk()); | 2578 o.add(buildAttachedDisk()); |
| 2579 o.add(buildAttachedDisk()); | 2579 o.add(buildAttachedDisk()); |
| 2580 return o; | 2580 return o; |
| 2581 } | 2581 } |
| 2582 | 2582 |
| 2583 checkUnnamed2031(core.List<api.AttachedDisk> o) { | 2583 checkUnnamed2125(core.List<api.AttachedDisk> o) { |
| 2584 unittest.expect(o, unittest.hasLength(2)); | 2584 unittest.expect(o, unittest.hasLength(2)); |
| 2585 checkAttachedDisk(o[0]); | 2585 checkAttachedDisk(o[0]); |
| 2586 checkAttachedDisk(o[1]); | 2586 checkAttachedDisk(o[1]); |
| 2587 } | 2587 } |
| 2588 | 2588 |
| 2589 buildUnnamed2032() { | 2589 buildUnnamed2126() { |
| 2590 var o = new core.List<api.NetworkInterface>(); | 2590 var o = new core.List<api.NetworkInterface>(); |
| 2591 o.add(buildNetworkInterface()); | 2591 o.add(buildNetworkInterface()); |
| 2592 o.add(buildNetworkInterface()); | 2592 o.add(buildNetworkInterface()); |
| 2593 return o; | 2593 return o; |
| 2594 } | 2594 } |
| 2595 | 2595 |
| 2596 checkUnnamed2032(core.List<api.NetworkInterface> o) { | 2596 checkUnnamed2126(core.List<api.NetworkInterface> o) { |
| 2597 unittest.expect(o, unittest.hasLength(2)); | 2597 unittest.expect(o, unittest.hasLength(2)); |
| 2598 checkNetworkInterface(o[0]); | 2598 checkNetworkInterface(o[0]); |
| 2599 checkNetworkInterface(o[1]); | 2599 checkNetworkInterface(o[1]); |
| 2600 } | 2600 } |
| 2601 | 2601 |
| 2602 buildUnnamed2033() { | 2602 buildUnnamed2127() { |
| 2603 var o = new core.List<api.ServiceAccount>(); | 2603 var o = new core.List<api.ServiceAccount>(); |
| 2604 o.add(buildServiceAccount()); | 2604 o.add(buildServiceAccount()); |
| 2605 o.add(buildServiceAccount()); | 2605 o.add(buildServiceAccount()); |
| 2606 return o; | 2606 return o; |
| 2607 } | 2607 } |
| 2608 | 2608 |
| 2609 checkUnnamed2033(core.List<api.ServiceAccount> o) { | 2609 checkUnnamed2127(core.List<api.ServiceAccount> o) { |
| 2610 unittest.expect(o, unittest.hasLength(2)); | 2610 unittest.expect(o, unittest.hasLength(2)); |
| 2611 checkServiceAccount(o[0]); | 2611 checkServiceAccount(o[0]); |
| 2612 checkServiceAccount(o[1]); | 2612 checkServiceAccount(o[1]); |
| 2613 } | 2613 } |
| 2614 | 2614 |
| 2615 core.int buildCounterInstance = 0; | 2615 core.int buildCounterInstance = 0; |
| 2616 buildInstance() { | 2616 buildInstance() { |
| 2617 var o = new api.Instance(); | 2617 var o = new api.Instance(); |
| 2618 buildCounterInstance++; | 2618 buildCounterInstance++; |
| 2619 if (buildCounterInstance < 3) { | 2619 if (buildCounterInstance < 3) { |
| 2620 o.canIpForward = true; | 2620 o.canIpForward = true; |
| 2621 o.cpuPlatform = "foo"; | 2621 o.cpuPlatform = "foo"; |
| 2622 o.creationTimestamp = "foo"; | 2622 o.creationTimestamp = "foo"; |
| 2623 o.description = "foo"; | 2623 o.description = "foo"; |
| 2624 o.disks = buildUnnamed2031(); | 2624 o.disks = buildUnnamed2125(); |
| 2625 o.id = "foo"; | 2625 o.id = "foo"; |
| 2626 o.kind = "foo"; | 2626 o.kind = "foo"; |
| 2627 o.machineType = "foo"; | 2627 o.machineType = "foo"; |
| 2628 o.metadata = buildMetadata(); | 2628 o.metadata = buildMetadata(); |
| 2629 o.name = "foo"; | 2629 o.name = "foo"; |
| 2630 o.networkInterfaces = buildUnnamed2032(); | 2630 o.networkInterfaces = buildUnnamed2126(); |
| 2631 o.scheduling = buildScheduling(); | 2631 o.scheduling = buildScheduling(); |
| 2632 o.selfLink = "foo"; | 2632 o.selfLink = "foo"; |
| 2633 o.serviceAccounts = buildUnnamed2033(); | 2633 o.serviceAccounts = buildUnnamed2127(); |
| 2634 o.status = "foo"; | 2634 o.status = "foo"; |
| 2635 o.statusMessage = "foo"; | 2635 o.statusMessage = "foo"; |
| 2636 o.tags = buildTags(); | 2636 o.tags = buildTags(); |
| 2637 o.zone = "foo"; | 2637 o.zone = "foo"; |
| 2638 } | 2638 } |
| 2639 buildCounterInstance--; | 2639 buildCounterInstance--; |
| 2640 return o; | 2640 return o; |
| 2641 } | 2641 } |
| 2642 | 2642 |
| 2643 checkInstance(api.Instance o) { | 2643 checkInstance(api.Instance o) { |
| 2644 buildCounterInstance++; | 2644 buildCounterInstance++; |
| 2645 if (buildCounterInstance < 3) { | 2645 if (buildCounterInstance < 3) { |
| 2646 unittest.expect(o.canIpForward, unittest.isTrue); | 2646 unittest.expect(o.canIpForward, unittest.isTrue); |
| 2647 unittest.expect(o.cpuPlatform, unittest.equals('foo')); | 2647 unittest.expect(o.cpuPlatform, unittest.equals('foo')); |
| 2648 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2648 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2649 unittest.expect(o.description, unittest.equals('foo')); | 2649 unittest.expect(o.description, unittest.equals('foo')); |
| 2650 checkUnnamed2031(o.disks); | 2650 checkUnnamed2125(o.disks); |
| 2651 unittest.expect(o.id, unittest.equals('foo')); | 2651 unittest.expect(o.id, unittest.equals('foo')); |
| 2652 unittest.expect(o.kind, unittest.equals('foo')); | 2652 unittest.expect(o.kind, unittest.equals('foo')); |
| 2653 unittest.expect(o.machineType, unittest.equals('foo')); | 2653 unittest.expect(o.machineType, unittest.equals('foo')); |
| 2654 checkMetadata(o.metadata); | 2654 checkMetadata(o.metadata); |
| 2655 unittest.expect(o.name, unittest.equals('foo')); | 2655 unittest.expect(o.name, unittest.equals('foo')); |
| 2656 checkUnnamed2032(o.networkInterfaces); | 2656 checkUnnamed2126(o.networkInterfaces); |
| 2657 checkScheduling(o.scheduling); | 2657 checkScheduling(o.scheduling); |
| 2658 unittest.expect(o.selfLink, unittest.equals('foo')); | 2658 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2659 checkUnnamed2033(o.serviceAccounts); | 2659 checkUnnamed2127(o.serviceAccounts); |
| 2660 unittest.expect(o.status, unittest.equals('foo')); | 2660 unittest.expect(o.status, unittest.equals('foo')); |
| 2661 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2661 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2662 checkTags(o.tags); | 2662 checkTags(o.tags); |
| 2663 unittest.expect(o.zone, unittest.equals('foo')); | 2663 unittest.expect(o.zone, unittest.equals('foo')); |
| 2664 } | 2664 } |
| 2665 buildCounterInstance--; | 2665 buildCounterInstance--; |
| 2666 } | 2666 } |
| 2667 | 2667 |
| 2668 buildUnnamed2034() { | 2668 buildUnnamed2128() { |
| 2669 var o = new core.Map<core.String, api.InstancesScopedList>(); | 2669 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 2670 o["x"] = buildInstancesScopedList(); | 2670 o["x"] = buildInstancesScopedList(); |
| 2671 o["y"] = buildInstancesScopedList(); | 2671 o["y"] = buildInstancesScopedList(); |
| 2672 return o; | 2672 return o; |
| 2673 } | 2673 } |
| 2674 | 2674 |
| 2675 checkUnnamed2034(core.Map<core.String, api.InstancesScopedList> o) { | 2675 checkUnnamed2128(core.Map<core.String, api.InstancesScopedList> o) { |
| 2676 unittest.expect(o, unittest.hasLength(2)); | 2676 unittest.expect(o, unittest.hasLength(2)); |
| 2677 checkInstancesScopedList(o["x"]); | 2677 checkInstancesScopedList(o["x"]); |
| 2678 checkInstancesScopedList(o["y"]); | 2678 checkInstancesScopedList(o["y"]); |
| 2679 } | 2679 } |
| 2680 | 2680 |
| 2681 core.int buildCounterInstanceAggregatedList = 0; | 2681 core.int buildCounterInstanceAggregatedList = 0; |
| 2682 buildInstanceAggregatedList() { | 2682 buildInstanceAggregatedList() { |
| 2683 var o = new api.InstanceAggregatedList(); | 2683 var o = new api.InstanceAggregatedList(); |
| 2684 buildCounterInstanceAggregatedList++; | 2684 buildCounterInstanceAggregatedList++; |
| 2685 if (buildCounterInstanceAggregatedList < 3) { | 2685 if (buildCounterInstanceAggregatedList < 3) { |
| 2686 o.id = "foo"; | 2686 o.id = "foo"; |
| 2687 o.items = buildUnnamed2034(); | 2687 o.items = buildUnnamed2128(); |
| 2688 o.kind = "foo"; | 2688 o.kind = "foo"; |
| 2689 o.nextPageToken = "foo"; | 2689 o.nextPageToken = "foo"; |
| 2690 o.selfLink = "foo"; | 2690 o.selfLink = "foo"; |
| 2691 } | 2691 } |
| 2692 buildCounterInstanceAggregatedList--; | 2692 buildCounterInstanceAggregatedList--; |
| 2693 return o; | 2693 return o; |
| 2694 } | 2694 } |
| 2695 | 2695 |
| 2696 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 2696 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 2697 buildCounterInstanceAggregatedList++; | 2697 buildCounterInstanceAggregatedList++; |
| 2698 if (buildCounterInstanceAggregatedList < 3) { | 2698 if (buildCounterInstanceAggregatedList < 3) { |
| 2699 unittest.expect(o.id, unittest.equals('foo')); | 2699 unittest.expect(o.id, unittest.equals('foo')); |
| 2700 checkUnnamed2034(o.items); | 2700 checkUnnamed2128(o.items); |
| 2701 unittest.expect(o.kind, unittest.equals('foo')); | 2701 unittest.expect(o.kind, unittest.equals('foo')); |
| 2702 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2702 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2703 unittest.expect(o.selfLink, unittest.equals('foo')); | 2703 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2704 } | 2704 } |
| 2705 buildCounterInstanceAggregatedList--; | 2705 buildCounterInstanceAggregatedList--; |
| 2706 } | 2706 } |
| 2707 | 2707 |
| 2708 buildUnnamed2035() { | 2708 buildUnnamed2129() { |
| 2709 var o = new core.List<api.NamedPort>(); | 2709 var o = new core.List<api.NamedPort>(); |
| 2710 o.add(buildNamedPort()); | 2710 o.add(buildNamedPort()); |
| 2711 o.add(buildNamedPort()); | 2711 o.add(buildNamedPort()); |
| 2712 return o; | 2712 return o; |
| 2713 } | 2713 } |
| 2714 | 2714 |
| 2715 checkUnnamed2035(core.List<api.NamedPort> o) { | 2715 checkUnnamed2129(core.List<api.NamedPort> o) { |
| 2716 unittest.expect(o, unittest.hasLength(2)); | 2716 unittest.expect(o, unittest.hasLength(2)); |
| 2717 checkNamedPort(o[0]); | 2717 checkNamedPort(o[0]); |
| 2718 checkNamedPort(o[1]); | 2718 checkNamedPort(o[1]); |
| 2719 } | 2719 } |
| 2720 | 2720 |
| 2721 core.int buildCounterInstanceGroup = 0; | 2721 core.int buildCounterInstanceGroup = 0; |
| 2722 buildInstanceGroup() { | 2722 buildInstanceGroup() { |
| 2723 var o = new api.InstanceGroup(); | 2723 var o = new api.InstanceGroup(); |
| 2724 buildCounterInstanceGroup++; | 2724 buildCounterInstanceGroup++; |
| 2725 if (buildCounterInstanceGroup < 3) { | 2725 if (buildCounterInstanceGroup < 3) { |
| 2726 o.creationTimestamp = "foo"; | 2726 o.creationTimestamp = "foo"; |
| 2727 o.description = "foo"; | 2727 o.description = "foo"; |
| 2728 o.fingerprint = "foo"; | 2728 o.fingerprint = "foo"; |
| 2729 o.id = "foo"; | 2729 o.id = "foo"; |
| 2730 o.kind = "foo"; | 2730 o.kind = "foo"; |
| 2731 o.name = "foo"; | 2731 o.name = "foo"; |
| 2732 o.namedPorts = buildUnnamed2035(); | 2732 o.namedPorts = buildUnnamed2129(); |
| 2733 o.network = "foo"; | 2733 o.network = "foo"; |
| 2734 o.region = "foo"; | 2734 o.region = "foo"; |
| 2735 o.selfLink = "foo"; | 2735 o.selfLink = "foo"; |
| 2736 o.size = 42; | 2736 o.size = 42; |
| 2737 o.subnetwork = "foo"; | 2737 o.subnetwork = "foo"; |
| 2738 o.zone = "foo"; | 2738 o.zone = "foo"; |
| 2739 } | 2739 } |
| 2740 buildCounterInstanceGroup--; | 2740 buildCounterInstanceGroup--; |
| 2741 return o; | 2741 return o; |
| 2742 } | 2742 } |
| 2743 | 2743 |
| 2744 checkInstanceGroup(api.InstanceGroup o) { | 2744 checkInstanceGroup(api.InstanceGroup o) { |
| 2745 buildCounterInstanceGroup++; | 2745 buildCounterInstanceGroup++; |
| 2746 if (buildCounterInstanceGroup < 3) { | 2746 if (buildCounterInstanceGroup < 3) { |
| 2747 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2747 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2748 unittest.expect(o.description, unittest.equals('foo')); | 2748 unittest.expect(o.description, unittest.equals('foo')); |
| 2749 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2749 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2750 unittest.expect(o.id, unittest.equals('foo')); | 2750 unittest.expect(o.id, unittest.equals('foo')); |
| 2751 unittest.expect(o.kind, unittest.equals('foo')); | 2751 unittest.expect(o.kind, unittest.equals('foo')); |
| 2752 unittest.expect(o.name, unittest.equals('foo')); | 2752 unittest.expect(o.name, unittest.equals('foo')); |
| 2753 checkUnnamed2035(o.namedPorts); | 2753 checkUnnamed2129(o.namedPorts); |
| 2754 unittest.expect(o.network, unittest.equals('foo')); | 2754 unittest.expect(o.network, unittest.equals('foo')); |
| 2755 unittest.expect(o.region, unittest.equals('foo')); | 2755 unittest.expect(o.region, unittest.equals('foo')); |
| 2756 unittest.expect(o.selfLink, unittest.equals('foo')); | 2756 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2757 unittest.expect(o.size, unittest.equals(42)); | 2757 unittest.expect(o.size, unittest.equals(42)); |
| 2758 unittest.expect(o.subnetwork, unittest.equals('foo')); | 2758 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 2759 unittest.expect(o.zone, unittest.equals('foo')); | 2759 unittest.expect(o.zone, unittest.equals('foo')); |
| 2760 } | 2760 } |
| 2761 buildCounterInstanceGroup--; | 2761 buildCounterInstanceGroup--; |
| 2762 } | 2762 } |
| 2763 | 2763 |
| 2764 buildUnnamed2036() { | 2764 buildUnnamed2130() { |
| 2765 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); | 2765 var o = new core.Map<core.String, api.InstanceGroupsScopedList>(); |
| 2766 o["x"] = buildInstanceGroupsScopedList(); | 2766 o["x"] = buildInstanceGroupsScopedList(); |
| 2767 o["y"] = buildInstanceGroupsScopedList(); | 2767 o["y"] = buildInstanceGroupsScopedList(); |
| 2768 return o; | 2768 return o; |
| 2769 } | 2769 } |
| 2770 | 2770 |
| 2771 checkUnnamed2036(core.Map<core.String, api.InstanceGroupsScopedList> o) { | 2771 checkUnnamed2130(core.Map<core.String, api.InstanceGroupsScopedList> o) { |
| 2772 unittest.expect(o, unittest.hasLength(2)); | 2772 unittest.expect(o, unittest.hasLength(2)); |
| 2773 checkInstanceGroupsScopedList(o["x"]); | 2773 checkInstanceGroupsScopedList(o["x"]); |
| 2774 checkInstanceGroupsScopedList(o["y"]); | 2774 checkInstanceGroupsScopedList(o["y"]); |
| 2775 } | 2775 } |
| 2776 | 2776 |
| 2777 core.int buildCounterInstanceGroupAggregatedList = 0; | 2777 core.int buildCounterInstanceGroupAggregatedList = 0; |
| 2778 buildInstanceGroupAggregatedList() { | 2778 buildInstanceGroupAggregatedList() { |
| 2779 var o = new api.InstanceGroupAggregatedList(); | 2779 var o = new api.InstanceGroupAggregatedList(); |
| 2780 buildCounterInstanceGroupAggregatedList++; | 2780 buildCounterInstanceGroupAggregatedList++; |
| 2781 if (buildCounterInstanceGroupAggregatedList < 3) { | 2781 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2782 o.id = "foo"; | 2782 o.id = "foo"; |
| 2783 o.items = buildUnnamed2036(); | 2783 o.items = buildUnnamed2130(); |
| 2784 o.kind = "foo"; | 2784 o.kind = "foo"; |
| 2785 o.nextPageToken = "foo"; | 2785 o.nextPageToken = "foo"; |
| 2786 o.selfLink = "foo"; | 2786 o.selfLink = "foo"; |
| 2787 } | 2787 } |
| 2788 buildCounterInstanceGroupAggregatedList--; | 2788 buildCounterInstanceGroupAggregatedList--; |
| 2789 return o; | 2789 return o; |
| 2790 } | 2790 } |
| 2791 | 2791 |
| 2792 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { | 2792 checkInstanceGroupAggregatedList(api.InstanceGroupAggregatedList o) { |
| 2793 buildCounterInstanceGroupAggregatedList++; | 2793 buildCounterInstanceGroupAggregatedList++; |
| 2794 if (buildCounterInstanceGroupAggregatedList < 3) { | 2794 if (buildCounterInstanceGroupAggregatedList < 3) { |
| 2795 unittest.expect(o.id, unittest.equals('foo')); | 2795 unittest.expect(o.id, unittest.equals('foo')); |
| 2796 checkUnnamed2036(o.items); | 2796 checkUnnamed2130(o.items); |
| 2797 unittest.expect(o.kind, unittest.equals('foo')); | 2797 unittest.expect(o.kind, unittest.equals('foo')); |
| 2798 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2798 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2799 unittest.expect(o.selfLink, unittest.equals('foo')); | 2799 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2800 } | 2800 } |
| 2801 buildCounterInstanceGroupAggregatedList--; | 2801 buildCounterInstanceGroupAggregatedList--; |
| 2802 } | 2802 } |
| 2803 | 2803 |
| 2804 buildUnnamed2037() { | 2804 buildUnnamed2131() { |
| 2805 var o = new core.List<api.InstanceGroup>(); | 2805 var o = new core.List<api.InstanceGroup>(); |
| 2806 o.add(buildInstanceGroup()); | 2806 o.add(buildInstanceGroup()); |
| 2807 o.add(buildInstanceGroup()); | 2807 o.add(buildInstanceGroup()); |
| 2808 return o; | 2808 return o; |
| 2809 } | 2809 } |
| 2810 | 2810 |
| 2811 checkUnnamed2037(core.List<api.InstanceGroup> o) { | 2811 checkUnnamed2131(core.List<api.InstanceGroup> o) { |
| 2812 unittest.expect(o, unittest.hasLength(2)); | 2812 unittest.expect(o, unittest.hasLength(2)); |
| 2813 checkInstanceGroup(o[0]); | 2813 checkInstanceGroup(o[0]); |
| 2814 checkInstanceGroup(o[1]); | 2814 checkInstanceGroup(o[1]); |
| 2815 } | 2815 } |
| 2816 | 2816 |
| 2817 core.int buildCounterInstanceGroupList = 0; | 2817 core.int buildCounterInstanceGroupList = 0; |
| 2818 buildInstanceGroupList() { | 2818 buildInstanceGroupList() { |
| 2819 var o = new api.InstanceGroupList(); | 2819 var o = new api.InstanceGroupList(); |
| 2820 buildCounterInstanceGroupList++; | 2820 buildCounterInstanceGroupList++; |
| 2821 if (buildCounterInstanceGroupList < 3) { | 2821 if (buildCounterInstanceGroupList < 3) { |
| 2822 o.id = "foo"; | 2822 o.id = "foo"; |
| 2823 o.items = buildUnnamed2037(); | 2823 o.items = buildUnnamed2131(); |
| 2824 o.kind = "foo"; | 2824 o.kind = "foo"; |
| 2825 o.nextPageToken = "foo"; | 2825 o.nextPageToken = "foo"; |
| 2826 o.selfLink = "foo"; | 2826 o.selfLink = "foo"; |
| 2827 } | 2827 } |
| 2828 buildCounterInstanceGroupList--; | 2828 buildCounterInstanceGroupList--; |
| 2829 return o; | 2829 return o; |
| 2830 } | 2830 } |
| 2831 | 2831 |
| 2832 checkInstanceGroupList(api.InstanceGroupList o) { | 2832 checkInstanceGroupList(api.InstanceGroupList o) { |
| 2833 buildCounterInstanceGroupList++; | 2833 buildCounterInstanceGroupList++; |
| 2834 if (buildCounterInstanceGroupList < 3) { | 2834 if (buildCounterInstanceGroupList < 3) { |
| 2835 unittest.expect(o.id, unittest.equals('foo')); | 2835 unittest.expect(o.id, unittest.equals('foo')); |
| 2836 checkUnnamed2037(o.items); | 2836 checkUnnamed2131(o.items); |
| 2837 unittest.expect(o.kind, unittest.equals('foo')); | 2837 unittest.expect(o.kind, unittest.equals('foo')); |
| 2838 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2838 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2839 unittest.expect(o.selfLink, unittest.equals('foo')); | 2839 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2840 } | 2840 } |
| 2841 buildCounterInstanceGroupList--; | 2841 buildCounterInstanceGroupList--; |
| 2842 } | 2842 } |
| 2843 | 2843 |
| 2844 buildUnnamed2038() { | 2844 buildUnnamed2132() { |
| 2845 var o = new core.List<api.NamedPort>(); | 2845 var o = new core.List<api.NamedPort>(); |
| 2846 o.add(buildNamedPort()); | 2846 o.add(buildNamedPort()); |
| 2847 o.add(buildNamedPort()); | 2847 o.add(buildNamedPort()); |
| 2848 return o; | 2848 return o; |
| 2849 } | 2849 } |
| 2850 | 2850 |
| 2851 checkUnnamed2038(core.List<api.NamedPort> o) { | 2851 checkUnnamed2132(core.List<api.NamedPort> o) { |
| 2852 unittest.expect(o, unittest.hasLength(2)); | 2852 unittest.expect(o, unittest.hasLength(2)); |
| 2853 checkNamedPort(o[0]); | 2853 checkNamedPort(o[0]); |
| 2854 checkNamedPort(o[1]); | 2854 checkNamedPort(o[1]); |
| 2855 } | 2855 } |
| 2856 | 2856 |
| 2857 buildUnnamed2039() { | 2857 buildUnnamed2133() { |
| 2858 var o = new core.List<core.String>(); | 2858 var o = new core.List<core.String>(); |
| 2859 o.add("foo"); | 2859 o.add("foo"); |
| 2860 o.add("foo"); | 2860 o.add("foo"); |
| 2861 return o; | 2861 return o; |
| 2862 } | 2862 } |
| 2863 | 2863 |
| 2864 checkUnnamed2039(core.List<core.String> o) { | 2864 checkUnnamed2133(core.List<core.String> o) { |
| 2865 unittest.expect(o, unittest.hasLength(2)); | 2865 unittest.expect(o, unittest.hasLength(2)); |
| 2866 unittest.expect(o[0], unittest.equals('foo')); | 2866 unittest.expect(o[0], unittest.equals('foo')); |
| 2867 unittest.expect(o[1], unittest.equals('foo')); | 2867 unittest.expect(o[1], unittest.equals('foo')); |
| 2868 } | 2868 } |
| 2869 | 2869 |
| 2870 core.int buildCounterInstanceGroupManager = 0; | 2870 core.int buildCounterInstanceGroupManager = 0; |
| 2871 buildInstanceGroupManager() { | 2871 buildInstanceGroupManager() { |
| 2872 var o = new api.InstanceGroupManager(); | 2872 var o = new api.InstanceGroupManager(); |
| 2873 buildCounterInstanceGroupManager++; | 2873 buildCounterInstanceGroupManager++; |
| 2874 if (buildCounterInstanceGroupManager < 3) { | 2874 if (buildCounterInstanceGroupManager < 3) { |
| 2875 o.baseInstanceName = "foo"; | 2875 o.baseInstanceName = "foo"; |
| 2876 o.creationTimestamp = "foo"; | 2876 o.creationTimestamp = "foo"; |
| 2877 o.currentActions = buildInstanceGroupManagerActionsSummary(); | 2877 o.currentActions = buildInstanceGroupManagerActionsSummary(); |
| 2878 o.description = "foo"; | 2878 o.description = "foo"; |
| 2879 o.fingerprint = "foo"; | 2879 o.fingerprint = "foo"; |
| 2880 o.id = "foo"; | 2880 o.id = "foo"; |
| 2881 o.instanceGroup = "foo"; | 2881 o.instanceGroup = "foo"; |
| 2882 o.instanceTemplate = "foo"; | 2882 o.instanceTemplate = "foo"; |
| 2883 o.kind = "foo"; | 2883 o.kind = "foo"; |
| 2884 o.name = "foo"; | 2884 o.name = "foo"; |
| 2885 o.namedPorts = buildUnnamed2038(); | 2885 o.namedPorts = buildUnnamed2132(); |
| 2886 o.region = "foo"; | 2886 o.region = "foo"; |
| 2887 o.selfLink = "foo"; | 2887 o.selfLink = "foo"; |
| 2888 o.targetPools = buildUnnamed2039(); | 2888 o.targetPools = buildUnnamed2133(); |
| 2889 o.targetSize = 42; | 2889 o.targetSize = 42; |
| 2890 o.zone = "foo"; | 2890 o.zone = "foo"; |
| 2891 } | 2891 } |
| 2892 buildCounterInstanceGroupManager--; | 2892 buildCounterInstanceGroupManager--; |
| 2893 return o; | 2893 return o; |
| 2894 } | 2894 } |
| 2895 | 2895 |
| 2896 checkInstanceGroupManager(api.InstanceGroupManager o) { | 2896 checkInstanceGroupManager(api.InstanceGroupManager o) { |
| 2897 buildCounterInstanceGroupManager++; | 2897 buildCounterInstanceGroupManager++; |
| 2898 if (buildCounterInstanceGroupManager < 3) { | 2898 if (buildCounterInstanceGroupManager < 3) { |
| 2899 unittest.expect(o.baseInstanceName, unittest.equals('foo')); | 2899 unittest.expect(o.baseInstanceName, unittest.equals('foo')); |
| 2900 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2900 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2901 checkInstanceGroupManagerActionsSummary(o.currentActions); | 2901 checkInstanceGroupManagerActionsSummary(o.currentActions); |
| 2902 unittest.expect(o.description, unittest.equals('foo')); | 2902 unittest.expect(o.description, unittest.equals('foo')); |
| 2903 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2903 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2904 unittest.expect(o.id, unittest.equals('foo')); | 2904 unittest.expect(o.id, unittest.equals('foo')); |
| 2905 unittest.expect(o.instanceGroup, unittest.equals('foo')); | 2905 unittest.expect(o.instanceGroup, unittest.equals('foo')); |
| 2906 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 2906 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 2907 unittest.expect(o.kind, unittest.equals('foo')); | 2907 unittest.expect(o.kind, unittest.equals('foo')); |
| 2908 unittest.expect(o.name, unittest.equals('foo')); | 2908 unittest.expect(o.name, unittest.equals('foo')); |
| 2909 checkUnnamed2038(o.namedPorts); | 2909 checkUnnamed2132(o.namedPorts); |
| 2910 unittest.expect(o.region, unittest.equals('foo')); | 2910 unittest.expect(o.region, unittest.equals('foo')); |
| 2911 unittest.expect(o.selfLink, unittest.equals('foo')); | 2911 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2912 checkUnnamed2039(o.targetPools); | 2912 checkUnnamed2133(o.targetPools); |
| 2913 unittest.expect(o.targetSize, unittest.equals(42)); | 2913 unittest.expect(o.targetSize, unittest.equals(42)); |
| 2914 unittest.expect(o.zone, unittest.equals('foo')); | 2914 unittest.expect(o.zone, unittest.equals('foo')); |
| 2915 } | 2915 } |
| 2916 buildCounterInstanceGroupManager--; | 2916 buildCounterInstanceGroupManager--; |
| 2917 } | 2917 } |
| 2918 | 2918 |
| 2919 core.int buildCounterInstanceGroupManagerActionsSummary = 0; | 2919 core.int buildCounterInstanceGroupManagerActionsSummary = 0; |
| 2920 buildInstanceGroupManagerActionsSummary() { | 2920 buildInstanceGroupManagerActionsSummary() { |
| 2921 var o = new api.InstanceGroupManagerActionsSummary(); | 2921 var o = new api.InstanceGroupManagerActionsSummary(); |
| 2922 buildCounterInstanceGroupManagerActionsSummary++; | 2922 buildCounterInstanceGroupManagerActionsSummary++; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 2942 unittest.expect(o.creatingWithoutRetries, unittest.equals(42)); | 2942 unittest.expect(o.creatingWithoutRetries, unittest.equals(42)); |
| 2943 unittest.expect(o.deleting, unittest.equals(42)); | 2943 unittest.expect(o.deleting, unittest.equals(42)); |
| 2944 unittest.expect(o.none, unittest.equals(42)); | 2944 unittest.expect(o.none, unittest.equals(42)); |
| 2945 unittest.expect(o.recreating, unittest.equals(42)); | 2945 unittest.expect(o.recreating, unittest.equals(42)); |
| 2946 unittest.expect(o.refreshing, unittest.equals(42)); | 2946 unittest.expect(o.refreshing, unittest.equals(42)); |
| 2947 unittest.expect(o.restarting, unittest.equals(42)); | 2947 unittest.expect(o.restarting, unittest.equals(42)); |
| 2948 } | 2948 } |
| 2949 buildCounterInstanceGroupManagerActionsSummary--; | 2949 buildCounterInstanceGroupManagerActionsSummary--; |
| 2950 } | 2950 } |
| 2951 | 2951 |
| 2952 buildUnnamed2040() { | 2952 buildUnnamed2134() { |
| 2953 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); | 2953 var o = new core.Map<core.String, api.InstanceGroupManagersScopedList>(); |
| 2954 o["x"] = buildInstanceGroupManagersScopedList(); | 2954 o["x"] = buildInstanceGroupManagersScopedList(); |
| 2955 o["y"] = buildInstanceGroupManagersScopedList(); | 2955 o["y"] = buildInstanceGroupManagersScopedList(); |
| 2956 return o; | 2956 return o; |
| 2957 } | 2957 } |
| 2958 | 2958 |
| 2959 checkUnnamed2040(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { | 2959 checkUnnamed2134(core.Map<core.String, api.InstanceGroupManagersScopedList> o) { |
| 2960 unittest.expect(o, unittest.hasLength(2)); | 2960 unittest.expect(o, unittest.hasLength(2)); |
| 2961 checkInstanceGroupManagersScopedList(o["x"]); | 2961 checkInstanceGroupManagersScopedList(o["x"]); |
| 2962 checkInstanceGroupManagersScopedList(o["y"]); | 2962 checkInstanceGroupManagersScopedList(o["y"]); |
| 2963 } | 2963 } |
| 2964 | 2964 |
| 2965 core.int buildCounterInstanceGroupManagerAggregatedList = 0; | 2965 core.int buildCounterInstanceGroupManagerAggregatedList = 0; |
| 2966 buildInstanceGroupManagerAggregatedList() { | 2966 buildInstanceGroupManagerAggregatedList() { |
| 2967 var o = new api.InstanceGroupManagerAggregatedList(); | 2967 var o = new api.InstanceGroupManagerAggregatedList(); |
| 2968 buildCounterInstanceGroupManagerAggregatedList++; | 2968 buildCounterInstanceGroupManagerAggregatedList++; |
| 2969 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2969 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2970 o.id = "foo"; | 2970 o.id = "foo"; |
| 2971 o.items = buildUnnamed2040(); | 2971 o.items = buildUnnamed2134(); |
| 2972 o.kind = "foo"; | 2972 o.kind = "foo"; |
| 2973 o.nextPageToken = "foo"; | 2973 o.nextPageToken = "foo"; |
| 2974 o.selfLink = "foo"; | 2974 o.selfLink = "foo"; |
| 2975 } | 2975 } |
| 2976 buildCounterInstanceGroupManagerAggregatedList--; | 2976 buildCounterInstanceGroupManagerAggregatedList--; |
| 2977 return o; | 2977 return o; |
| 2978 } | 2978 } |
| 2979 | 2979 |
| 2980 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { | 2980 checkInstanceGroupManagerAggregatedList(api.InstanceGroupManagerAggregatedList o
) { |
| 2981 buildCounterInstanceGroupManagerAggregatedList++; | 2981 buildCounterInstanceGroupManagerAggregatedList++; |
| 2982 if (buildCounterInstanceGroupManagerAggregatedList < 3) { | 2982 if (buildCounterInstanceGroupManagerAggregatedList < 3) { |
| 2983 unittest.expect(o.id, unittest.equals('foo')); | 2983 unittest.expect(o.id, unittest.equals('foo')); |
| 2984 checkUnnamed2040(o.items); | 2984 checkUnnamed2134(o.items); |
| 2985 unittest.expect(o.kind, unittest.equals('foo')); | 2985 unittest.expect(o.kind, unittest.equals('foo')); |
| 2986 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2986 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2987 unittest.expect(o.selfLink, unittest.equals('foo')); | 2987 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2988 } | 2988 } |
| 2989 buildCounterInstanceGroupManagerAggregatedList--; | 2989 buildCounterInstanceGroupManagerAggregatedList--; |
| 2990 } | 2990 } |
| 2991 | 2991 |
| 2992 buildUnnamed2041() { | 2992 buildUnnamed2135() { |
| 2993 var o = new core.List<api.InstanceGroupManager>(); | 2993 var o = new core.List<api.InstanceGroupManager>(); |
| 2994 o.add(buildInstanceGroupManager()); | 2994 o.add(buildInstanceGroupManager()); |
| 2995 o.add(buildInstanceGroupManager()); | 2995 o.add(buildInstanceGroupManager()); |
| 2996 return o; | 2996 return o; |
| 2997 } | 2997 } |
| 2998 | 2998 |
| 2999 checkUnnamed2041(core.List<api.InstanceGroupManager> o) { | 2999 checkUnnamed2135(core.List<api.InstanceGroupManager> o) { |
| 3000 unittest.expect(o, unittest.hasLength(2)); | 3000 unittest.expect(o, unittest.hasLength(2)); |
| 3001 checkInstanceGroupManager(o[0]); | 3001 checkInstanceGroupManager(o[0]); |
| 3002 checkInstanceGroupManager(o[1]); | 3002 checkInstanceGroupManager(o[1]); |
| 3003 } | 3003 } |
| 3004 | 3004 |
| 3005 core.int buildCounterInstanceGroupManagerList = 0; | 3005 core.int buildCounterInstanceGroupManagerList = 0; |
| 3006 buildInstanceGroupManagerList() { | 3006 buildInstanceGroupManagerList() { |
| 3007 var o = new api.InstanceGroupManagerList(); | 3007 var o = new api.InstanceGroupManagerList(); |
| 3008 buildCounterInstanceGroupManagerList++; | 3008 buildCounterInstanceGroupManagerList++; |
| 3009 if (buildCounterInstanceGroupManagerList < 3) { | 3009 if (buildCounterInstanceGroupManagerList < 3) { |
| 3010 o.id = "foo"; | 3010 o.id = "foo"; |
| 3011 o.items = buildUnnamed2041(); | 3011 o.items = buildUnnamed2135(); |
| 3012 o.kind = "foo"; | 3012 o.kind = "foo"; |
| 3013 o.nextPageToken = "foo"; | 3013 o.nextPageToken = "foo"; |
| 3014 o.selfLink = "foo"; | 3014 o.selfLink = "foo"; |
| 3015 } | 3015 } |
| 3016 buildCounterInstanceGroupManagerList--; | 3016 buildCounterInstanceGroupManagerList--; |
| 3017 return o; | 3017 return o; |
| 3018 } | 3018 } |
| 3019 | 3019 |
| 3020 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { | 3020 checkInstanceGroupManagerList(api.InstanceGroupManagerList o) { |
| 3021 buildCounterInstanceGroupManagerList++; | 3021 buildCounterInstanceGroupManagerList++; |
| 3022 if (buildCounterInstanceGroupManagerList < 3) { | 3022 if (buildCounterInstanceGroupManagerList < 3) { |
| 3023 unittest.expect(o.id, unittest.equals('foo')); | 3023 unittest.expect(o.id, unittest.equals('foo')); |
| 3024 checkUnnamed2041(o.items); | 3024 checkUnnamed2135(o.items); |
| 3025 unittest.expect(o.kind, unittest.equals('foo')); | 3025 unittest.expect(o.kind, unittest.equals('foo')); |
| 3026 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3026 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3027 unittest.expect(o.selfLink, unittest.equals('foo')); | 3027 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3028 } | 3028 } |
| 3029 buildCounterInstanceGroupManagerList--; | 3029 buildCounterInstanceGroupManagerList--; |
| 3030 } | 3030 } |
| 3031 | 3031 |
| 3032 buildUnnamed2042() { | 3032 buildUnnamed2136() { |
| 3033 var o = new core.List<core.String>(); | 3033 var o = new core.List<core.String>(); |
| 3034 o.add("foo"); | 3034 o.add("foo"); |
| 3035 o.add("foo"); | 3035 o.add("foo"); |
| 3036 return o; | 3036 return o; |
| 3037 } | 3037 } |
| 3038 | 3038 |
| 3039 checkUnnamed2042(core.List<core.String> o) { | 3039 checkUnnamed2136(core.List<core.String> o) { |
| 3040 unittest.expect(o, unittest.hasLength(2)); | 3040 unittest.expect(o, unittest.hasLength(2)); |
| 3041 unittest.expect(o[0], unittest.equals('foo')); | 3041 unittest.expect(o[0], unittest.equals('foo')); |
| 3042 unittest.expect(o[1], unittest.equals('foo')); | 3042 unittest.expect(o[1], unittest.equals('foo')); |
| 3043 } | 3043 } |
| 3044 | 3044 |
| 3045 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; | 3045 core.int buildCounterInstanceGroupManagersAbandonInstancesRequest = 0; |
| 3046 buildInstanceGroupManagersAbandonInstancesRequest() { | 3046 buildInstanceGroupManagersAbandonInstancesRequest() { |
| 3047 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); | 3047 var o = new api.InstanceGroupManagersAbandonInstancesRequest(); |
| 3048 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 3048 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 3049 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 3049 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 3050 o.instances = buildUnnamed2042(); | 3050 o.instances = buildUnnamed2136(); |
| 3051 } | 3051 } |
| 3052 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 3052 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 3053 return o; | 3053 return o; |
| 3054 } | 3054 } |
| 3055 | 3055 |
| 3056 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { | 3056 checkInstanceGroupManagersAbandonInstancesRequest(api.InstanceGroupManagersAband
onInstancesRequest o) { |
| 3057 buildCounterInstanceGroupManagersAbandonInstancesRequest++; | 3057 buildCounterInstanceGroupManagersAbandonInstancesRequest++; |
| 3058 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { | 3058 if (buildCounterInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 3059 checkUnnamed2042(o.instances); | 3059 checkUnnamed2136(o.instances); |
| 3060 } | 3060 } |
| 3061 buildCounterInstanceGroupManagersAbandonInstancesRequest--; | 3061 buildCounterInstanceGroupManagersAbandonInstancesRequest--; |
| 3062 } | 3062 } |
| 3063 | 3063 |
| 3064 buildUnnamed2043() { | 3064 buildUnnamed2137() { |
| 3065 var o = new core.List<core.String>(); | 3065 var o = new core.List<core.String>(); |
| 3066 o.add("foo"); | 3066 o.add("foo"); |
| 3067 o.add("foo"); | 3067 o.add("foo"); |
| 3068 return o; | 3068 return o; |
| 3069 } | 3069 } |
| 3070 | 3070 |
| 3071 checkUnnamed2043(core.List<core.String> o) { | 3071 checkUnnamed2137(core.List<core.String> o) { |
| 3072 unittest.expect(o, unittest.hasLength(2)); | 3072 unittest.expect(o, unittest.hasLength(2)); |
| 3073 unittest.expect(o[0], unittest.equals('foo')); | 3073 unittest.expect(o[0], unittest.equals('foo')); |
| 3074 unittest.expect(o[1], unittest.equals('foo')); | 3074 unittest.expect(o[1], unittest.equals('foo')); |
| 3075 } | 3075 } |
| 3076 | 3076 |
| 3077 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; | 3077 core.int buildCounterInstanceGroupManagersDeleteInstancesRequest = 0; |
| 3078 buildInstanceGroupManagersDeleteInstancesRequest() { | 3078 buildInstanceGroupManagersDeleteInstancesRequest() { |
| 3079 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); | 3079 var o = new api.InstanceGroupManagersDeleteInstancesRequest(); |
| 3080 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 3080 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 3081 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 3081 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 3082 o.instances = buildUnnamed2043(); | 3082 o.instances = buildUnnamed2137(); |
| 3083 } | 3083 } |
| 3084 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 3084 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 3085 return o; | 3085 return o; |
| 3086 } | 3086 } |
| 3087 | 3087 |
| 3088 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { | 3088 checkInstanceGroupManagersDeleteInstancesRequest(api.InstanceGroupManagersDelete
InstancesRequest o) { |
| 3089 buildCounterInstanceGroupManagersDeleteInstancesRequest++; | 3089 buildCounterInstanceGroupManagersDeleteInstancesRequest++; |
| 3090 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { | 3090 if (buildCounterInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 3091 checkUnnamed2043(o.instances); | 3091 checkUnnamed2137(o.instances); |
| 3092 } | 3092 } |
| 3093 buildCounterInstanceGroupManagersDeleteInstancesRequest--; | 3093 buildCounterInstanceGroupManagersDeleteInstancesRequest--; |
| 3094 } | 3094 } |
| 3095 | 3095 |
| 3096 buildUnnamed2044() { | 3096 buildUnnamed2138() { |
| 3097 var o = new core.List<api.ManagedInstance>(); | 3097 var o = new core.List<api.ManagedInstance>(); |
| 3098 o.add(buildManagedInstance()); | 3098 o.add(buildManagedInstance()); |
| 3099 o.add(buildManagedInstance()); | 3099 o.add(buildManagedInstance()); |
| 3100 return o; | 3100 return o; |
| 3101 } | 3101 } |
| 3102 | 3102 |
| 3103 checkUnnamed2044(core.List<api.ManagedInstance> o) { | 3103 checkUnnamed2138(core.List<api.ManagedInstance> o) { |
| 3104 unittest.expect(o, unittest.hasLength(2)); | 3104 unittest.expect(o, unittest.hasLength(2)); |
| 3105 checkManagedInstance(o[0]); | 3105 checkManagedInstance(o[0]); |
| 3106 checkManagedInstance(o[1]); | 3106 checkManagedInstance(o[1]); |
| 3107 } | 3107 } |
| 3108 | 3108 |
| 3109 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; | 3109 core.int buildCounterInstanceGroupManagersListManagedInstancesResponse = 0; |
| 3110 buildInstanceGroupManagersListManagedInstancesResponse() { | 3110 buildInstanceGroupManagersListManagedInstancesResponse() { |
| 3111 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); | 3111 var o = new api.InstanceGroupManagersListManagedInstancesResponse(); |
| 3112 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 3112 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 3113 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 3113 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 3114 o.managedInstances = buildUnnamed2044(); | 3114 o.managedInstances = buildUnnamed2138(); |
| 3115 } | 3115 } |
| 3116 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 3116 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 3117 return o; | 3117 return o; |
| 3118 } | 3118 } |
| 3119 | 3119 |
| 3120 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { | 3120 checkInstanceGroupManagersListManagedInstancesResponse(api.InstanceGroupManagers
ListManagedInstancesResponse o) { |
| 3121 buildCounterInstanceGroupManagersListManagedInstancesResponse++; | 3121 buildCounterInstanceGroupManagersListManagedInstancesResponse++; |
| 3122 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { | 3122 if (buildCounterInstanceGroupManagersListManagedInstancesResponse < 3) { |
| 3123 checkUnnamed2044(o.managedInstances); | 3123 checkUnnamed2138(o.managedInstances); |
| 3124 } | 3124 } |
| 3125 buildCounterInstanceGroupManagersListManagedInstancesResponse--; | 3125 buildCounterInstanceGroupManagersListManagedInstancesResponse--; |
| 3126 } | 3126 } |
| 3127 | 3127 |
| 3128 buildUnnamed2045() { | 3128 buildUnnamed2139() { |
| 3129 var o = new core.List<core.String>(); | 3129 var o = new core.List<core.String>(); |
| 3130 o.add("foo"); | 3130 o.add("foo"); |
| 3131 o.add("foo"); | 3131 o.add("foo"); |
| 3132 return o; | 3132 return o; |
| 3133 } | 3133 } |
| 3134 | 3134 |
| 3135 checkUnnamed2045(core.List<core.String> o) { | 3135 checkUnnamed2139(core.List<core.String> o) { |
| 3136 unittest.expect(o, unittest.hasLength(2)); | 3136 unittest.expect(o, unittest.hasLength(2)); |
| 3137 unittest.expect(o[0], unittest.equals('foo')); | 3137 unittest.expect(o[0], unittest.equals('foo')); |
| 3138 unittest.expect(o[1], unittest.equals('foo')); | 3138 unittest.expect(o[1], unittest.equals('foo')); |
| 3139 } | 3139 } |
| 3140 | 3140 |
| 3141 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; | 3141 core.int buildCounterInstanceGroupManagersRecreateInstancesRequest = 0; |
| 3142 buildInstanceGroupManagersRecreateInstancesRequest() { | 3142 buildInstanceGroupManagersRecreateInstancesRequest() { |
| 3143 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); | 3143 var o = new api.InstanceGroupManagersRecreateInstancesRequest(); |
| 3144 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 3144 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 3145 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 3145 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 3146 o.instances = buildUnnamed2045(); | 3146 o.instances = buildUnnamed2139(); |
| 3147 } | 3147 } |
| 3148 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 3148 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 3149 return o; | 3149 return o; |
| 3150 } | 3150 } |
| 3151 | 3151 |
| 3152 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { | 3152 checkInstanceGroupManagersRecreateInstancesRequest(api.InstanceGroupManagersRecr
eateInstancesRequest o) { |
| 3153 buildCounterInstanceGroupManagersRecreateInstancesRequest++; | 3153 buildCounterInstanceGroupManagersRecreateInstancesRequest++; |
| 3154 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { | 3154 if (buildCounterInstanceGroupManagersRecreateInstancesRequest < 3) { |
| 3155 checkUnnamed2045(o.instances); | 3155 checkUnnamed2139(o.instances); |
| 3156 } | 3156 } |
| 3157 buildCounterInstanceGroupManagersRecreateInstancesRequest--; | 3157 buildCounterInstanceGroupManagersRecreateInstancesRequest--; |
| 3158 } | 3158 } |
| 3159 | 3159 |
| 3160 buildUnnamed2046() { | 3160 buildUnnamed2140() { |
| 3161 var o = new core.List<api.InstanceGroupManager>(); | 3161 var o = new core.List<api.InstanceGroupManager>(); |
| 3162 o.add(buildInstanceGroupManager()); | 3162 o.add(buildInstanceGroupManager()); |
| 3163 o.add(buildInstanceGroupManager()); | 3163 o.add(buildInstanceGroupManager()); |
| 3164 return o; | 3164 return o; |
| 3165 } | 3165 } |
| 3166 | 3166 |
| 3167 checkUnnamed2046(core.List<api.InstanceGroupManager> o) { | 3167 checkUnnamed2140(core.List<api.InstanceGroupManager> o) { |
| 3168 unittest.expect(o, unittest.hasLength(2)); | 3168 unittest.expect(o, unittest.hasLength(2)); |
| 3169 checkInstanceGroupManager(o[0]); | 3169 checkInstanceGroupManager(o[0]); |
| 3170 checkInstanceGroupManager(o[1]); | 3170 checkInstanceGroupManager(o[1]); |
| 3171 } | 3171 } |
| 3172 | 3172 |
| 3173 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; | 3173 core.int buildCounterInstanceGroupManagersScopedListWarningData = 0; |
| 3174 buildInstanceGroupManagersScopedListWarningData() { | 3174 buildInstanceGroupManagersScopedListWarningData() { |
| 3175 var o = new api.InstanceGroupManagersScopedListWarningData(); | 3175 var o = new api.InstanceGroupManagersScopedListWarningData(); |
| 3176 buildCounterInstanceGroupManagersScopedListWarningData++; | 3176 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 3177 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 3177 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 3178 o.key = "foo"; | 3178 o.key = "foo"; |
| 3179 o.value = "foo"; | 3179 o.value = "foo"; |
| 3180 } | 3180 } |
| 3181 buildCounterInstanceGroupManagersScopedListWarningData--; | 3181 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 3182 return o; | 3182 return o; |
| 3183 } | 3183 } |
| 3184 | 3184 |
| 3185 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { | 3185 checkInstanceGroupManagersScopedListWarningData(api.InstanceGroupManagersScopedL
istWarningData o) { |
| 3186 buildCounterInstanceGroupManagersScopedListWarningData++; | 3186 buildCounterInstanceGroupManagersScopedListWarningData++; |
| 3187 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { | 3187 if (buildCounterInstanceGroupManagersScopedListWarningData < 3) { |
| 3188 unittest.expect(o.key, unittest.equals('foo')); | 3188 unittest.expect(o.key, unittest.equals('foo')); |
| 3189 unittest.expect(o.value, unittest.equals('foo')); | 3189 unittest.expect(o.value, unittest.equals('foo')); |
| 3190 } | 3190 } |
| 3191 buildCounterInstanceGroupManagersScopedListWarningData--; | 3191 buildCounterInstanceGroupManagersScopedListWarningData--; |
| 3192 } | 3192 } |
| 3193 | 3193 |
| 3194 buildUnnamed2047() { | 3194 buildUnnamed2141() { |
| 3195 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); | 3195 var o = new core.List<api.InstanceGroupManagersScopedListWarningData>(); |
| 3196 o.add(buildInstanceGroupManagersScopedListWarningData()); | 3196 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 3197 o.add(buildInstanceGroupManagersScopedListWarningData()); | 3197 o.add(buildInstanceGroupManagersScopedListWarningData()); |
| 3198 return o; | 3198 return o; |
| 3199 } | 3199 } |
| 3200 | 3200 |
| 3201 checkUnnamed2047(core.List<api.InstanceGroupManagersScopedListWarningData> o) { | 3201 checkUnnamed2141(core.List<api.InstanceGroupManagersScopedListWarningData> o) { |
| 3202 unittest.expect(o, unittest.hasLength(2)); | 3202 unittest.expect(o, unittest.hasLength(2)); |
| 3203 checkInstanceGroupManagersScopedListWarningData(o[0]); | 3203 checkInstanceGroupManagersScopedListWarningData(o[0]); |
| 3204 checkInstanceGroupManagersScopedListWarningData(o[1]); | 3204 checkInstanceGroupManagersScopedListWarningData(o[1]); |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; | 3207 core.int buildCounterInstanceGroupManagersScopedListWarning = 0; |
| 3208 buildInstanceGroupManagersScopedListWarning() { | 3208 buildInstanceGroupManagersScopedListWarning() { |
| 3209 var o = new api.InstanceGroupManagersScopedListWarning(); | 3209 var o = new api.InstanceGroupManagersScopedListWarning(); |
| 3210 buildCounterInstanceGroupManagersScopedListWarning++; | 3210 buildCounterInstanceGroupManagersScopedListWarning++; |
| 3211 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 3211 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 3212 o.code = "foo"; | 3212 o.code = "foo"; |
| 3213 o.data = buildUnnamed2047(); | 3213 o.data = buildUnnamed2141(); |
| 3214 o.message = "foo"; | 3214 o.message = "foo"; |
| 3215 } | 3215 } |
| 3216 buildCounterInstanceGroupManagersScopedListWarning--; | 3216 buildCounterInstanceGroupManagersScopedListWarning--; |
| 3217 return o; | 3217 return o; |
| 3218 } | 3218 } |
| 3219 | 3219 |
| 3220 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { | 3220 checkInstanceGroupManagersScopedListWarning(api.InstanceGroupManagersScopedListW
arning o) { |
| 3221 buildCounterInstanceGroupManagersScopedListWarning++; | 3221 buildCounterInstanceGroupManagersScopedListWarning++; |
| 3222 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { | 3222 if (buildCounterInstanceGroupManagersScopedListWarning < 3) { |
| 3223 unittest.expect(o.code, unittest.equals('foo')); | 3223 unittest.expect(o.code, unittest.equals('foo')); |
| 3224 checkUnnamed2047(o.data); | 3224 checkUnnamed2141(o.data); |
| 3225 unittest.expect(o.message, unittest.equals('foo')); | 3225 unittest.expect(o.message, unittest.equals('foo')); |
| 3226 } | 3226 } |
| 3227 buildCounterInstanceGroupManagersScopedListWarning--; | 3227 buildCounterInstanceGroupManagersScopedListWarning--; |
| 3228 } | 3228 } |
| 3229 | 3229 |
| 3230 core.int buildCounterInstanceGroupManagersScopedList = 0; | 3230 core.int buildCounterInstanceGroupManagersScopedList = 0; |
| 3231 buildInstanceGroupManagersScopedList() { | 3231 buildInstanceGroupManagersScopedList() { |
| 3232 var o = new api.InstanceGroupManagersScopedList(); | 3232 var o = new api.InstanceGroupManagersScopedList(); |
| 3233 buildCounterInstanceGroupManagersScopedList++; | 3233 buildCounterInstanceGroupManagersScopedList++; |
| 3234 if (buildCounterInstanceGroupManagersScopedList < 3) { | 3234 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 3235 o.instanceGroupManagers = buildUnnamed2046(); | 3235 o.instanceGroupManagers = buildUnnamed2140(); |
| 3236 o.warning = buildInstanceGroupManagersScopedListWarning(); | 3236 o.warning = buildInstanceGroupManagersScopedListWarning(); |
| 3237 } | 3237 } |
| 3238 buildCounterInstanceGroupManagersScopedList--; | 3238 buildCounterInstanceGroupManagersScopedList--; |
| 3239 return o; | 3239 return o; |
| 3240 } | 3240 } |
| 3241 | 3241 |
| 3242 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { | 3242 checkInstanceGroupManagersScopedList(api.InstanceGroupManagersScopedList o) { |
| 3243 buildCounterInstanceGroupManagersScopedList++; | 3243 buildCounterInstanceGroupManagersScopedList++; |
| 3244 if (buildCounterInstanceGroupManagersScopedList < 3) { | 3244 if (buildCounterInstanceGroupManagersScopedList < 3) { |
| 3245 checkUnnamed2046(o.instanceGroupManagers); | 3245 checkUnnamed2140(o.instanceGroupManagers); |
| 3246 checkInstanceGroupManagersScopedListWarning(o.warning); | 3246 checkInstanceGroupManagersScopedListWarning(o.warning); |
| 3247 } | 3247 } |
| 3248 buildCounterInstanceGroupManagersScopedList--; | 3248 buildCounterInstanceGroupManagersScopedList--; |
| 3249 } | 3249 } |
| 3250 | 3250 |
| 3251 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; | 3251 core.int buildCounterInstanceGroupManagersSetInstanceTemplateRequest = 0; |
| 3252 buildInstanceGroupManagersSetInstanceTemplateRequest() { | 3252 buildInstanceGroupManagersSetInstanceTemplateRequest() { |
| 3253 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); | 3253 var o = new api.InstanceGroupManagersSetInstanceTemplateRequest(); |
| 3254 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 3254 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 3255 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 3255 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 3256 o.instanceTemplate = "foo"; | 3256 o.instanceTemplate = "foo"; |
| 3257 } | 3257 } |
| 3258 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 3258 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 3259 return o; | 3259 return o; |
| 3260 } | 3260 } |
| 3261 | 3261 |
| 3262 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { | 3262 checkInstanceGroupManagersSetInstanceTemplateRequest(api.InstanceGroupManagersSe
tInstanceTemplateRequest o) { |
| 3263 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; | 3263 buildCounterInstanceGroupManagersSetInstanceTemplateRequest++; |
| 3264 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { | 3264 if (buildCounterInstanceGroupManagersSetInstanceTemplateRequest < 3) { |
| 3265 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 3265 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 3266 } | 3266 } |
| 3267 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; | 3267 buildCounterInstanceGroupManagersSetInstanceTemplateRequest--; |
| 3268 } | 3268 } |
| 3269 | 3269 |
| 3270 buildUnnamed2048() { | 3270 buildUnnamed2142() { |
| 3271 var o = new core.List<core.String>(); | 3271 var o = new core.List<core.String>(); |
| 3272 o.add("foo"); | 3272 o.add("foo"); |
| 3273 o.add("foo"); | 3273 o.add("foo"); |
| 3274 return o; | 3274 return o; |
| 3275 } | 3275 } |
| 3276 | 3276 |
| 3277 checkUnnamed2048(core.List<core.String> o) { | 3277 checkUnnamed2142(core.List<core.String> o) { |
| 3278 unittest.expect(o, unittest.hasLength(2)); | 3278 unittest.expect(o, unittest.hasLength(2)); |
| 3279 unittest.expect(o[0], unittest.equals('foo')); | 3279 unittest.expect(o[0], unittest.equals('foo')); |
| 3280 unittest.expect(o[1], unittest.equals('foo')); | 3280 unittest.expect(o[1], unittest.equals('foo')); |
| 3281 } | 3281 } |
| 3282 | 3282 |
| 3283 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; | 3283 core.int buildCounterInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 3284 buildInstanceGroupManagersSetTargetPoolsRequest() { | 3284 buildInstanceGroupManagersSetTargetPoolsRequest() { |
| 3285 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); | 3285 var o = new api.InstanceGroupManagersSetTargetPoolsRequest(); |
| 3286 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 3286 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 3287 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 3287 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 3288 o.fingerprint = "foo"; | 3288 o.fingerprint = "foo"; |
| 3289 o.targetPools = buildUnnamed2048(); | 3289 o.targetPools = buildUnnamed2142(); |
| 3290 } | 3290 } |
| 3291 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 3291 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 3292 return o; | 3292 return o; |
| 3293 } | 3293 } |
| 3294 | 3294 |
| 3295 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { | 3295 checkInstanceGroupManagersSetTargetPoolsRequest(api.InstanceGroupManagersSetTarg
etPoolsRequest o) { |
| 3296 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; | 3296 buildCounterInstanceGroupManagersSetTargetPoolsRequest++; |
| 3297 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { | 3297 if (buildCounterInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 3298 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3298 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3299 checkUnnamed2048(o.targetPools); | 3299 checkUnnamed2142(o.targetPools); |
| 3300 } | 3300 } |
| 3301 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; | 3301 buildCounterInstanceGroupManagersSetTargetPoolsRequest--; |
| 3302 } | 3302 } |
| 3303 | 3303 |
| 3304 buildUnnamed2049() { | 3304 buildUnnamed2143() { |
| 3305 var o = new core.List<api.InstanceReference>(); | 3305 var o = new core.List<api.InstanceReference>(); |
| 3306 o.add(buildInstanceReference()); | 3306 o.add(buildInstanceReference()); |
| 3307 o.add(buildInstanceReference()); | 3307 o.add(buildInstanceReference()); |
| 3308 return o; | 3308 return o; |
| 3309 } | 3309 } |
| 3310 | 3310 |
| 3311 checkUnnamed2049(core.List<api.InstanceReference> o) { | 3311 checkUnnamed2143(core.List<api.InstanceReference> o) { |
| 3312 unittest.expect(o, unittest.hasLength(2)); | 3312 unittest.expect(o, unittest.hasLength(2)); |
| 3313 checkInstanceReference(o[0]); | 3313 checkInstanceReference(o[0]); |
| 3314 checkInstanceReference(o[1]); | 3314 checkInstanceReference(o[1]); |
| 3315 } | 3315 } |
| 3316 | 3316 |
| 3317 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; | 3317 core.int buildCounterInstanceGroupsAddInstancesRequest = 0; |
| 3318 buildInstanceGroupsAddInstancesRequest() { | 3318 buildInstanceGroupsAddInstancesRequest() { |
| 3319 var o = new api.InstanceGroupsAddInstancesRequest(); | 3319 var o = new api.InstanceGroupsAddInstancesRequest(); |
| 3320 buildCounterInstanceGroupsAddInstancesRequest++; | 3320 buildCounterInstanceGroupsAddInstancesRequest++; |
| 3321 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 3321 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 3322 o.instances = buildUnnamed2049(); | 3322 o.instances = buildUnnamed2143(); |
| 3323 } | 3323 } |
| 3324 buildCounterInstanceGroupsAddInstancesRequest--; | 3324 buildCounterInstanceGroupsAddInstancesRequest--; |
| 3325 return o; | 3325 return o; |
| 3326 } | 3326 } |
| 3327 | 3327 |
| 3328 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ | 3328 checkInstanceGroupsAddInstancesRequest(api.InstanceGroupsAddInstancesRequest o)
{ |
| 3329 buildCounterInstanceGroupsAddInstancesRequest++; | 3329 buildCounterInstanceGroupsAddInstancesRequest++; |
| 3330 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { | 3330 if (buildCounterInstanceGroupsAddInstancesRequest < 3) { |
| 3331 checkUnnamed2049(o.instances); | 3331 checkUnnamed2143(o.instances); |
| 3332 } | 3332 } |
| 3333 buildCounterInstanceGroupsAddInstancesRequest--; | 3333 buildCounterInstanceGroupsAddInstancesRequest--; |
| 3334 } | 3334 } |
| 3335 | 3335 |
| 3336 buildUnnamed2050() { | 3336 buildUnnamed2144() { |
| 3337 var o = new core.List<api.InstanceWithNamedPorts>(); | 3337 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 3338 o.add(buildInstanceWithNamedPorts()); | 3338 o.add(buildInstanceWithNamedPorts()); |
| 3339 o.add(buildInstanceWithNamedPorts()); | 3339 o.add(buildInstanceWithNamedPorts()); |
| 3340 return o; | 3340 return o; |
| 3341 } | 3341 } |
| 3342 | 3342 |
| 3343 checkUnnamed2050(core.List<api.InstanceWithNamedPorts> o) { | 3343 checkUnnamed2144(core.List<api.InstanceWithNamedPorts> o) { |
| 3344 unittest.expect(o, unittest.hasLength(2)); | 3344 unittest.expect(o, unittest.hasLength(2)); |
| 3345 checkInstanceWithNamedPorts(o[0]); | 3345 checkInstanceWithNamedPorts(o[0]); |
| 3346 checkInstanceWithNamedPorts(o[1]); | 3346 checkInstanceWithNamedPorts(o[1]); |
| 3347 } | 3347 } |
| 3348 | 3348 |
| 3349 core.int buildCounterInstanceGroupsListInstances = 0; | 3349 core.int buildCounterInstanceGroupsListInstances = 0; |
| 3350 buildInstanceGroupsListInstances() { | 3350 buildInstanceGroupsListInstances() { |
| 3351 var o = new api.InstanceGroupsListInstances(); | 3351 var o = new api.InstanceGroupsListInstances(); |
| 3352 buildCounterInstanceGroupsListInstances++; | 3352 buildCounterInstanceGroupsListInstances++; |
| 3353 if (buildCounterInstanceGroupsListInstances < 3) { | 3353 if (buildCounterInstanceGroupsListInstances < 3) { |
| 3354 o.id = "foo"; | 3354 o.id = "foo"; |
| 3355 o.items = buildUnnamed2050(); | 3355 o.items = buildUnnamed2144(); |
| 3356 o.kind = "foo"; | 3356 o.kind = "foo"; |
| 3357 o.nextPageToken = "foo"; | 3357 o.nextPageToken = "foo"; |
| 3358 o.selfLink = "foo"; | 3358 o.selfLink = "foo"; |
| 3359 } | 3359 } |
| 3360 buildCounterInstanceGroupsListInstances--; | 3360 buildCounterInstanceGroupsListInstances--; |
| 3361 return o; | 3361 return o; |
| 3362 } | 3362 } |
| 3363 | 3363 |
| 3364 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { | 3364 checkInstanceGroupsListInstances(api.InstanceGroupsListInstances o) { |
| 3365 buildCounterInstanceGroupsListInstances++; | 3365 buildCounterInstanceGroupsListInstances++; |
| 3366 if (buildCounterInstanceGroupsListInstances < 3) { | 3366 if (buildCounterInstanceGroupsListInstances < 3) { |
| 3367 unittest.expect(o.id, unittest.equals('foo')); | 3367 unittest.expect(o.id, unittest.equals('foo')); |
| 3368 checkUnnamed2050(o.items); | 3368 checkUnnamed2144(o.items); |
| 3369 unittest.expect(o.kind, unittest.equals('foo')); | 3369 unittest.expect(o.kind, unittest.equals('foo')); |
| 3370 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3370 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3371 unittest.expect(o.selfLink, unittest.equals('foo')); | 3371 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3372 } | 3372 } |
| 3373 buildCounterInstanceGroupsListInstances--; | 3373 buildCounterInstanceGroupsListInstances--; |
| 3374 } | 3374 } |
| 3375 | 3375 |
| 3376 core.int buildCounterInstanceGroupsListInstancesRequest = 0; | 3376 core.int buildCounterInstanceGroupsListInstancesRequest = 0; |
| 3377 buildInstanceGroupsListInstancesRequest() { | 3377 buildInstanceGroupsListInstancesRequest() { |
| 3378 var o = new api.InstanceGroupsListInstancesRequest(); | 3378 var o = new api.InstanceGroupsListInstancesRequest(); |
| 3379 buildCounterInstanceGroupsListInstancesRequest++; | 3379 buildCounterInstanceGroupsListInstancesRequest++; |
| 3380 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3380 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3381 o.instanceState = "foo"; | 3381 o.instanceState = "foo"; |
| 3382 } | 3382 } |
| 3383 buildCounterInstanceGroupsListInstancesRequest--; | 3383 buildCounterInstanceGroupsListInstancesRequest--; |
| 3384 return o; | 3384 return o; |
| 3385 } | 3385 } |
| 3386 | 3386 |
| 3387 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { | 3387 checkInstanceGroupsListInstancesRequest(api.InstanceGroupsListInstancesRequest o
) { |
| 3388 buildCounterInstanceGroupsListInstancesRequest++; | 3388 buildCounterInstanceGroupsListInstancesRequest++; |
| 3389 if (buildCounterInstanceGroupsListInstancesRequest < 3) { | 3389 if (buildCounterInstanceGroupsListInstancesRequest < 3) { |
| 3390 unittest.expect(o.instanceState, unittest.equals('foo')); | 3390 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 3391 } | 3391 } |
| 3392 buildCounterInstanceGroupsListInstancesRequest--; | 3392 buildCounterInstanceGroupsListInstancesRequest--; |
| 3393 } | 3393 } |
| 3394 | 3394 |
| 3395 buildUnnamed2051() { | 3395 buildUnnamed2145() { |
| 3396 var o = new core.List<api.InstanceReference>(); | 3396 var o = new core.List<api.InstanceReference>(); |
| 3397 o.add(buildInstanceReference()); | 3397 o.add(buildInstanceReference()); |
| 3398 o.add(buildInstanceReference()); | 3398 o.add(buildInstanceReference()); |
| 3399 return o; | 3399 return o; |
| 3400 } | 3400 } |
| 3401 | 3401 |
| 3402 checkUnnamed2051(core.List<api.InstanceReference> o) { | 3402 checkUnnamed2145(core.List<api.InstanceReference> o) { |
| 3403 unittest.expect(o, unittest.hasLength(2)); | 3403 unittest.expect(o, unittest.hasLength(2)); |
| 3404 checkInstanceReference(o[0]); | 3404 checkInstanceReference(o[0]); |
| 3405 checkInstanceReference(o[1]); | 3405 checkInstanceReference(o[1]); |
| 3406 } | 3406 } |
| 3407 | 3407 |
| 3408 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; | 3408 core.int buildCounterInstanceGroupsRemoveInstancesRequest = 0; |
| 3409 buildInstanceGroupsRemoveInstancesRequest() { | 3409 buildInstanceGroupsRemoveInstancesRequest() { |
| 3410 var o = new api.InstanceGroupsRemoveInstancesRequest(); | 3410 var o = new api.InstanceGroupsRemoveInstancesRequest(); |
| 3411 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3411 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3412 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3412 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3413 o.instances = buildUnnamed2051(); | 3413 o.instances = buildUnnamed2145(); |
| 3414 } | 3414 } |
| 3415 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3415 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3416 return o; | 3416 return o; |
| 3417 } | 3417 } |
| 3418 | 3418 |
| 3419 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { | 3419 checkInstanceGroupsRemoveInstancesRequest(api.InstanceGroupsRemoveInstancesReque
st o) { |
| 3420 buildCounterInstanceGroupsRemoveInstancesRequest++; | 3420 buildCounterInstanceGroupsRemoveInstancesRequest++; |
| 3421 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { | 3421 if (buildCounterInstanceGroupsRemoveInstancesRequest < 3) { |
| 3422 checkUnnamed2051(o.instances); | 3422 checkUnnamed2145(o.instances); |
| 3423 } | 3423 } |
| 3424 buildCounterInstanceGroupsRemoveInstancesRequest--; | 3424 buildCounterInstanceGroupsRemoveInstancesRequest--; |
| 3425 } | 3425 } |
| 3426 | 3426 |
| 3427 buildUnnamed2052() { | 3427 buildUnnamed2146() { |
| 3428 var o = new core.List<api.InstanceGroup>(); | 3428 var o = new core.List<api.InstanceGroup>(); |
| 3429 o.add(buildInstanceGroup()); | 3429 o.add(buildInstanceGroup()); |
| 3430 o.add(buildInstanceGroup()); | 3430 o.add(buildInstanceGroup()); |
| 3431 return o; | 3431 return o; |
| 3432 } | 3432 } |
| 3433 | 3433 |
| 3434 checkUnnamed2052(core.List<api.InstanceGroup> o) { | 3434 checkUnnamed2146(core.List<api.InstanceGroup> o) { |
| 3435 unittest.expect(o, unittest.hasLength(2)); | 3435 unittest.expect(o, unittest.hasLength(2)); |
| 3436 checkInstanceGroup(o[0]); | 3436 checkInstanceGroup(o[0]); |
| 3437 checkInstanceGroup(o[1]); | 3437 checkInstanceGroup(o[1]); |
| 3438 } | 3438 } |
| 3439 | 3439 |
| 3440 core.int buildCounterInstanceGroupsScopedListWarningData = 0; | 3440 core.int buildCounterInstanceGroupsScopedListWarningData = 0; |
| 3441 buildInstanceGroupsScopedListWarningData() { | 3441 buildInstanceGroupsScopedListWarningData() { |
| 3442 var o = new api.InstanceGroupsScopedListWarningData(); | 3442 var o = new api.InstanceGroupsScopedListWarningData(); |
| 3443 buildCounterInstanceGroupsScopedListWarningData++; | 3443 buildCounterInstanceGroupsScopedListWarningData++; |
| 3444 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3444 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3445 o.key = "foo"; | 3445 o.key = "foo"; |
| 3446 o.value = "foo"; | 3446 o.value = "foo"; |
| 3447 } | 3447 } |
| 3448 buildCounterInstanceGroupsScopedListWarningData--; | 3448 buildCounterInstanceGroupsScopedListWarningData--; |
| 3449 return o; | 3449 return o; |
| 3450 } | 3450 } |
| 3451 | 3451 |
| 3452 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { | 3452 checkInstanceGroupsScopedListWarningData(api.InstanceGroupsScopedListWarningData
o) { |
| 3453 buildCounterInstanceGroupsScopedListWarningData++; | 3453 buildCounterInstanceGroupsScopedListWarningData++; |
| 3454 if (buildCounterInstanceGroupsScopedListWarningData < 3) { | 3454 if (buildCounterInstanceGroupsScopedListWarningData < 3) { |
| 3455 unittest.expect(o.key, unittest.equals('foo')); | 3455 unittest.expect(o.key, unittest.equals('foo')); |
| 3456 unittest.expect(o.value, unittest.equals('foo')); | 3456 unittest.expect(o.value, unittest.equals('foo')); |
| 3457 } | 3457 } |
| 3458 buildCounterInstanceGroupsScopedListWarningData--; | 3458 buildCounterInstanceGroupsScopedListWarningData--; |
| 3459 } | 3459 } |
| 3460 | 3460 |
| 3461 buildUnnamed2053() { | 3461 buildUnnamed2147() { |
| 3462 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); | 3462 var o = new core.List<api.InstanceGroupsScopedListWarningData>(); |
| 3463 o.add(buildInstanceGroupsScopedListWarningData()); | 3463 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3464 o.add(buildInstanceGroupsScopedListWarningData()); | 3464 o.add(buildInstanceGroupsScopedListWarningData()); |
| 3465 return o; | 3465 return o; |
| 3466 } | 3466 } |
| 3467 | 3467 |
| 3468 checkUnnamed2053(core.List<api.InstanceGroupsScopedListWarningData> o) { | 3468 checkUnnamed2147(core.List<api.InstanceGroupsScopedListWarningData> o) { |
| 3469 unittest.expect(o, unittest.hasLength(2)); | 3469 unittest.expect(o, unittest.hasLength(2)); |
| 3470 checkInstanceGroupsScopedListWarningData(o[0]); | 3470 checkInstanceGroupsScopedListWarningData(o[0]); |
| 3471 checkInstanceGroupsScopedListWarningData(o[1]); | 3471 checkInstanceGroupsScopedListWarningData(o[1]); |
| 3472 } | 3472 } |
| 3473 | 3473 |
| 3474 core.int buildCounterInstanceGroupsScopedListWarning = 0; | 3474 core.int buildCounterInstanceGroupsScopedListWarning = 0; |
| 3475 buildInstanceGroupsScopedListWarning() { | 3475 buildInstanceGroupsScopedListWarning() { |
| 3476 var o = new api.InstanceGroupsScopedListWarning(); | 3476 var o = new api.InstanceGroupsScopedListWarning(); |
| 3477 buildCounterInstanceGroupsScopedListWarning++; | 3477 buildCounterInstanceGroupsScopedListWarning++; |
| 3478 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3478 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3479 o.code = "foo"; | 3479 o.code = "foo"; |
| 3480 o.data = buildUnnamed2053(); | 3480 o.data = buildUnnamed2147(); |
| 3481 o.message = "foo"; | 3481 o.message = "foo"; |
| 3482 } | 3482 } |
| 3483 buildCounterInstanceGroupsScopedListWarning--; | 3483 buildCounterInstanceGroupsScopedListWarning--; |
| 3484 return o; | 3484 return o; |
| 3485 } | 3485 } |
| 3486 | 3486 |
| 3487 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { | 3487 checkInstanceGroupsScopedListWarning(api.InstanceGroupsScopedListWarning o) { |
| 3488 buildCounterInstanceGroupsScopedListWarning++; | 3488 buildCounterInstanceGroupsScopedListWarning++; |
| 3489 if (buildCounterInstanceGroupsScopedListWarning < 3) { | 3489 if (buildCounterInstanceGroupsScopedListWarning < 3) { |
| 3490 unittest.expect(o.code, unittest.equals('foo')); | 3490 unittest.expect(o.code, unittest.equals('foo')); |
| 3491 checkUnnamed2053(o.data); | 3491 checkUnnamed2147(o.data); |
| 3492 unittest.expect(o.message, unittest.equals('foo')); | 3492 unittest.expect(o.message, unittest.equals('foo')); |
| 3493 } | 3493 } |
| 3494 buildCounterInstanceGroupsScopedListWarning--; | 3494 buildCounterInstanceGroupsScopedListWarning--; |
| 3495 } | 3495 } |
| 3496 | 3496 |
| 3497 core.int buildCounterInstanceGroupsScopedList = 0; | 3497 core.int buildCounterInstanceGroupsScopedList = 0; |
| 3498 buildInstanceGroupsScopedList() { | 3498 buildInstanceGroupsScopedList() { |
| 3499 var o = new api.InstanceGroupsScopedList(); | 3499 var o = new api.InstanceGroupsScopedList(); |
| 3500 buildCounterInstanceGroupsScopedList++; | 3500 buildCounterInstanceGroupsScopedList++; |
| 3501 if (buildCounterInstanceGroupsScopedList < 3) { | 3501 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3502 o.instanceGroups = buildUnnamed2052(); | 3502 o.instanceGroups = buildUnnamed2146(); |
| 3503 o.warning = buildInstanceGroupsScopedListWarning(); | 3503 o.warning = buildInstanceGroupsScopedListWarning(); |
| 3504 } | 3504 } |
| 3505 buildCounterInstanceGroupsScopedList--; | 3505 buildCounterInstanceGroupsScopedList--; |
| 3506 return o; | 3506 return o; |
| 3507 } | 3507 } |
| 3508 | 3508 |
| 3509 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { | 3509 checkInstanceGroupsScopedList(api.InstanceGroupsScopedList o) { |
| 3510 buildCounterInstanceGroupsScopedList++; | 3510 buildCounterInstanceGroupsScopedList++; |
| 3511 if (buildCounterInstanceGroupsScopedList < 3) { | 3511 if (buildCounterInstanceGroupsScopedList < 3) { |
| 3512 checkUnnamed2052(o.instanceGroups); | 3512 checkUnnamed2146(o.instanceGroups); |
| 3513 checkInstanceGroupsScopedListWarning(o.warning); | 3513 checkInstanceGroupsScopedListWarning(o.warning); |
| 3514 } | 3514 } |
| 3515 buildCounterInstanceGroupsScopedList--; | 3515 buildCounterInstanceGroupsScopedList--; |
| 3516 } | 3516 } |
| 3517 | 3517 |
| 3518 buildUnnamed2054() { | 3518 buildUnnamed2148() { |
| 3519 var o = new core.List<api.NamedPort>(); | 3519 var o = new core.List<api.NamedPort>(); |
| 3520 o.add(buildNamedPort()); | 3520 o.add(buildNamedPort()); |
| 3521 o.add(buildNamedPort()); | 3521 o.add(buildNamedPort()); |
| 3522 return o; | 3522 return o; |
| 3523 } | 3523 } |
| 3524 | 3524 |
| 3525 checkUnnamed2054(core.List<api.NamedPort> o) { | 3525 checkUnnamed2148(core.List<api.NamedPort> o) { |
| 3526 unittest.expect(o, unittest.hasLength(2)); | 3526 unittest.expect(o, unittest.hasLength(2)); |
| 3527 checkNamedPort(o[0]); | 3527 checkNamedPort(o[0]); |
| 3528 checkNamedPort(o[1]); | 3528 checkNamedPort(o[1]); |
| 3529 } | 3529 } |
| 3530 | 3530 |
| 3531 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; | 3531 core.int buildCounterInstanceGroupsSetNamedPortsRequest = 0; |
| 3532 buildInstanceGroupsSetNamedPortsRequest() { | 3532 buildInstanceGroupsSetNamedPortsRequest() { |
| 3533 var o = new api.InstanceGroupsSetNamedPortsRequest(); | 3533 var o = new api.InstanceGroupsSetNamedPortsRequest(); |
| 3534 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3534 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3535 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3535 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3536 o.fingerprint = "foo"; | 3536 o.fingerprint = "foo"; |
| 3537 o.namedPorts = buildUnnamed2054(); | 3537 o.namedPorts = buildUnnamed2148(); |
| 3538 } | 3538 } |
| 3539 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3539 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3540 return o; | 3540 return o; |
| 3541 } | 3541 } |
| 3542 | 3542 |
| 3543 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { | 3543 checkInstanceGroupsSetNamedPortsRequest(api.InstanceGroupsSetNamedPortsRequest o
) { |
| 3544 buildCounterInstanceGroupsSetNamedPortsRequest++; | 3544 buildCounterInstanceGroupsSetNamedPortsRequest++; |
| 3545 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { | 3545 if (buildCounterInstanceGroupsSetNamedPortsRequest < 3) { |
| 3546 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3546 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3547 checkUnnamed2054(o.namedPorts); | 3547 checkUnnamed2148(o.namedPorts); |
| 3548 } | 3548 } |
| 3549 buildCounterInstanceGroupsSetNamedPortsRequest--; | 3549 buildCounterInstanceGroupsSetNamedPortsRequest--; |
| 3550 } | 3550 } |
| 3551 | 3551 |
| 3552 buildUnnamed2055() { | 3552 buildUnnamed2149() { |
| 3553 var o = new core.List<api.Instance>(); | 3553 var o = new core.List<api.Instance>(); |
| 3554 o.add(buildInstance()); | 3554 o.add(buildInstance()); |
| 3555 o.add(buildInstance()); | 3555 o.add(buildInstance()); |
| 3556 return o; | 3556 return o; |
| 3557 } | 3557 } |
| 3558 | 3558 |
| 3559 checkUnnamed2055(core.List<api.Instance> o) { | 3559 checkUnnamed2149(core.List<api.Instance> o) { |
| 3560 unittest.expect(o, unittest.hasLength(2)); | 3560 unittest.expect(o, unittest.hasLength(2)); |
| 3561 checkInstance(o[0]); | 3561 checkInstance(o[0]); |
| 3562 checkInstance(o[1]); | 3562 checkInstance(o[1]); |
| 3563 } | 3563 } |
| 3564 | 3564 |
| 3565 core.int buildCounterInstanceList = 0; | 3565 core.int buildCounterInstanceList = 0; |
| 3566 buildInstanceList() { | 3566 buildInstanceList() { |
| 3567 var o = new api.InstanceList(); | 3567 var o = new api.InstanceList(); |
| 3568 buildCounterInstanceList++; | 3568 buildCounterInstanceList++; |
| 3569 if (buildCounterInstanceList < 3) { | 3569 if (buildCounterInstanceList < 3) { |
| 3570 o.id = "foo"; | 3570 o.id = "foo"; |
| 3571 o.items = buildUnnamed2055(); | 3571 o.items = buildUnnamed2149(); |
| 3572 o.kind = "foo"; | 3572 o.kind = "foo"; |
| 3573 o.nextPageToken = "foo"; | 3573 o.nextPageToken = "foo"; |
| 3574 o.selfLink = "foo"; | 3574 o.selfLink = "foo"; |
| 3575 } | 3575 } |
| 3576 buildCounterInstanceList--; | 3576 buildCounterInstanceList--; |
| 3577 return o; | 3577 return o; |
| 3578 } | 3578 } |
| 3579 | 3579 |
| 3580 checkInstanceList(api.InstanceList o) { | 3580 checkInstanceList(api.InstanceList o) { |
| 3581 buildCounterInstanceList++; | 3581 buildCounterInstanceList++; |
| 3582 if (buildCounterInstanceList < 3) { | 3582 if (buildCounterInstanceList < 3) { |
| 3583 unittest.expect(o.id, unittest.equals('foo')); | 3583 unittest.expect(o.id, unittest.equals('foo')); |
| 3584 checkUnnamed2055(o.items); | 3584 checkUnnamed2149(o.items); |
| 3585 unittest.expect(o.kind, unittest.equals('foo')); | 3585 unittest.expect(o.kind, unittest.equals('foo')); |
| 3586 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3586 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3587 unittest.expect(o.selfLink, unittest.equals('foo')); | 3587 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3588 } | 3588 } |
| 3589 buildCounterInstanceList--; | 3589 buildCounterInstanceList--; |
| 3590 } | 3590 } |
| 3591 | 3591 |
| 3592 core.int buildCounterInstanceMoveRequest = 0; | 3592 core.int buildCounterInstanceMoveRequest = 0; |
| 3593 buildInstanceMoveRequest() { | 3593 buildInstanceMoveRequest() { |
| 3594 var o = new api.InstanceMoveRequest(); | 3594 var o = new api.InstanceMoveRequest(); |
| 3595 buildCounterInstanceMoveRequest++; | 3595 buildCounterInstanceMoveRequest++; |
| 3596 if (buildCounterInstanceMoveRequest < 3) { | 3596 if (buildCounterInstanceMoveRequest < 3) { |
| 3597 o.destinationZone = "foo"; | 3597 o.destinationZone = "foo"; |
| 3598 o.targetInstance = "foo"; | 3598 o.targetInstance = "foo"; |
| 3599 } | 3599 } |
| 3600 buildCounterInstanceMoveRequest--; | 3600 buildCounterInstanceMoveRequest--; |
| 3601 return o; | 3601 return o; |
| 3602 } | 3602 } |
| 3603 | 3603 |
| 3604 checkInstanceMoveRequest(api.InstanceMoveRequest o) { | 3604 checkInstanceMoveRequest(api.InstanceMoveRequest o) { |
| 3605 buildCounterInstanceMoveRequest++; | 3605 buildCounterInstanceMoveRequest++; |
| 3606 if (buildCounterInstanceMoveRequest < 3) { | 3606 if (buildCounterInstanceMoveRequest < 3) { |
| 3607 unittest.expect(o.destinationZone, unittest.equals('foo')); | 3607 unittest.expect(o.destinationZone, unittest.equals('foo')); |
| 3608 unittest.expect(o.targetInstance, unittest.equals('foo')); | 3608 unittest.expect(o.targetInstance, unittest.equals('foo')); |
| 3609 } | 3609 } |
| 3610 buildCounterInstanceMoveRequest--; | 3610 buildCounterInstanceMoveRequest--; |
| 3611 } | 3611 } |
| 3612 | 3612 |
| 3613 buildUnnamed2056() { | 3613 buildUnnamed2150() { |
| 3614 var o = new core.List<api.AttachedDisk>(); | 3614 var o = new core.List<api.AttachedDisk>(); |
| 3615 o.add(buildAttachedDisk()); | 3615 o.add(buildAttachedDisk()); |
| 3616 o.add(buildAttachedDisk()); | 3616 o.add(buildAttachedDisk()); |
| 3617 return o; | 3617 return o; |
| 3618 } | 3618 } |
| 3619 | 3619 |
| 3620 checkUnnamed2056(core.List<api.AttachedDisk> o) { | 3620 checkUnnamed2150(core.List<api.AttachedDisk> o) { |
| 3621 unittest.expect(o, unittest.hasLength(2)); | 3621 unittest.expect(o, unittest.hasLength(2)); |
| 3622 checkAttachedDisk(o[0]); | 3622 checkAttachedDisk(o[0]); |
| 3623 checkAttachedDisk(o[1]); | 3623 checkAttachedDisk(o[1]); |
| 3624 } | 3624 } |
| 3625 | 3625 |
| 3626 buildUnnamed2057() { | 3626 buildUnnamed2151() { |
| 3627 var o = new core.List<api.NetworkInterface>(); | 3627 var o = new core.List<api.NetworkInterface>(); |
| 3628 o.add(buildNetworkInterface()); | 3628 o.add(buildNetworkInterface()); |
| 3629 o.add(buildNetworkInterface()); | 3629 o.add(buildNetworkInterface()); |
| 3630 return o; | 3630 return o; |
| 3631 } | 3631 } |
| 3632 | 3632 |
| 3633 checkUnnamed2057(core.List<api.NetworkInterface> o) { | 3633 checkUnnamed2151(core.List<api.NetworkInterface> o) { |
| 3634 unittest.expect(o, unittest.hasLength(2)); | 3634 unittest.expect(o, unittest.hasLength(2)); |
| 3635 checkNetworkInterface(o[0]); | 3635 checkNetworkInterface(o[0]); |
| 3636 checkNetworkInterface(o[1]); | 3636 checkNetworkInterface(o[1]); |
| 3637 } | 3637 } |
| 3638 | 3638 |
| 3639 buildUnnamed2058() { | 3639 buildUnnamed2152() { |
| 3640 var o = new core.List<api.ServiceAccount>(); | 3640 var o = new core.List<api.ServiceAccount>(); |
| 3641 o.add(buildServiceAccount()); | 3641 o.add(buildServiceAccount()); |
| 3642 o.add(buildServiceAccount()); | 3642 o.add(buildServiceAccount()); |
| 3643 return o; | 3643 return o; |
| 3644 } | 3644 } |
| 3645 | 3645 |
| 3646 checkUnnamed2058(core.List<api.ServiceAccount> o) { | 3646 checkUnnamed2152(core.List<api.ServiceAccount> o) { |
| 3647 unittest.expect(o, unittest.hasLength(2)); | 3647 unittest.expect(o, unittest.hasLength(2)); |
| 3648 checkServiceAccount(o[0]); | 3648 checkServiceAccount(o[0]); |
| 3649 checkServiceAccount(o[1]); | 3649 checkServiceAccount(o[1]); |
| 3650 } | 3650 } |
| 3651 | 3651 |
| 3652 core.int buildCounterInstanceProperties = 0; | 3652 core.int buildCounterInstanceProperties = 0; |
| 3653 buildInstanceProperties() { | 3653 buildInstanceProperties() { |
| 3654 var o = new api.InstanceProperties(); | 3654 var o = new api.InstanceProperties(); |
| 3655 buildCounterInstanceProperties++; | 3655 buildCounterInstanceProperties++; |
| 3656 if (buildCounterInstanceProperties < 3) { | 3656 if (buildCounterInstanceProperties < 3) { |
| 3657 o.canIpForward = true; | 3657 o.canIpForward = true; |
| 3658 o.description = "foo"; | 3658 o.description = "foo"; |
| 3659 o.disks = buildUnnamed2056(); | 3659 o.disks = buildUnnamed2150(); |
| 3660 o.machineType = "foo"; | 3660 o.machineType = "foo"; |
| 3661 o.metadata = buildMetadata(); | 3661 o.metadata = buildMetadata(); |
| 3662 o.networkInterfaces = buildUnnamed2057(); | 3662 o.networkInterfaces = buildUnnamed2151(); |
| 3663 o.scheduling = buildScheduling(); | 3663 o.scheduling = buildScheduling(); |
| 3664 o.serviceAccounts = buildUnnamed2058(); | 3664 o.serviceAccounts = buildUnnamed2152(); |
| 3665 o.tags = buildTags(); | 3665 o.tags = buildTags(); |
| 3666 } | 3666 } |
| 3667 buildCounterInstanceProperties--; | 3667 buildCounterInstanceProperties--; |
| 3668 return o; | 3668 return o; |
| 3669 } | 3669 } |
| 3670 | 3670 |
| 3671 checkInstanceProperties(api.InstanceProperties o) { | 3671 checkInstanceProperties(api.InstanceProperties o) { |
| 3672 buildCounterInstanceProperties++; | 3672 buildCounterInstanceProperties++; |
| 3673 if (buildCounterInstanceProperties < 3) { | 3673 if (buildCounterInstanceProperties < 3) { |
| 3674 unittest.expect(o.canIpForward, unittest.isTrue); | 3674 unittest.expect(o.canIpForward, unittest.isTrue); |
| 3675 unittest.expect(o.description, unittest.equals('foo')); | 3675 unittest.expect(o.description, unittest.equals('foo')); |
| 3676 checkUnnamed2056(o.disks); | 3676 checkUnnamed2150(o.disks); |
| 3677 unittest.expect(o.machineType, unittest.equals('foo')); | 3677 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3678 checkMetadata(o.metadata); | 3678 checkMetadata(o.metadata); |
| 3679 checkUnnamed2057(o.networkInterfaces); | 3679 checkUnnamed2151(o.networkInterfaces); |
| 3680 checkScheduling(o.scheduling); | 3680 checkScheduling(o.scheduling); |
| 3681 checkUnnamed2058(o.serviceAccounts); | 3681 checkUnnamed2152(o.serviceAccounts); |
| 3682 checkTags(o.tags); | 3682 checkTags(o.tags); |
| 3683 } | 3683 } |
| 3684 buildCounterInstanceProperties--; | 3684 buildCounterInstanceProperties--; |
| 3685 } | 3685 } |
| 3686 | 3686 |
| 3687 core.int buildCounterInstanceReference = 0; | 3687 core.int buildCounterInstanceReference = 0; |
| 3688 buildInstanceReference() { | 3688 buildInstanceReference() { |
| 3689 var o = new api.InstanceReference(); | 3689 var o = new api.InstanceReference(); |
| 3690 buildCounterInstanceReference++; | 3690 buildCounterInstanceReference++; |
| 3691 if (buildCounterInstanceReference < 3) { | 3691 if (buildCounterInstanceReference < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3727 unittest.expect(o.description, unittest.equals('foo')); | 3727 unittest.expect(o.description, unittest.equals('foo')); |
| 3728 unittest.expect(o.id, unittest.equals('foo')); | 3728 unittest.expect(o.id, unittest.equals('foo')); |
| 3729 unittest.expect(o.kind, unittest.equals('foo')); | 3729 unittest.expect(o.kind, unittest.equals('foo')); |
| 3730 unittest.expect(o.name, unittest.equals('foo')); | 3730 unittest.expect(o.name, unittest.equals('foo')); |
| 3731 checkInstanceProperties(o.properties); | 3731 checkInstanceProperties(o.properties); |
| 3732 unittest.expect(o.selfLink, unittest.equals('foo')); | 3732 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3733 } | 3733 } |
| 3734 buildCounterInstanceTemplate--; | 3734 buildCounterInstanceTemplate--; |
| 3735 } | 3735 } |
| 3736 | 3736 |
| 3737 buildUnnamed2059() { | 3737 buildUnnamed2153() { |
| 3738 var o = new core.List<api.InstanceTemplate>(); | 3738 var o = new core.List<api.InstanceTemplate>(); |
| 3739 o.add(buildInstanceTemplate()); | 3739 o.add(buildInstanceTemplate()); |
| 3740 o.add(buildInstanceTemplate()); | 3740 o.add(buildInstanceTemplate()); |
| 3741 return o; | 3741 return o; |
| 3742 } | 3742 } |
| 3743 | 3743 |
| 3744 checkUnnamed2059(core.List<api.InstanceTemplate> o) { | 3744 checkUnnamed2153(core.List<api.InstanceTemplate> o) { |
| 3745 unittest.expect(o, unittest.hasLength(2)); | 3745 unittest.expect(o, unittest.hasLength(2)); |
| 3746 checkInstanceTemplate(o[0]); | 3746 checkInstanceTemplate(o[0]); |
| 3747 checkInstanceTemplate(o[1]); | 3747 checkInstanceTemplate(o[1]); |
| 3748 } | 3748 } |
| 3749 | 3749 |
| 3750 core.int buildCounterInstanceTemplateList = 0; | 3750 core.int buildCounterInstanceTemplateList = 0; |
| 3751 buildInstanceTemplateList() { | 3751 buildInstanceTemplateList() { |
| 3752 var o = new api.InstanceTemplateList(); | 3752 var o = new api.InstanceTemplateList(); |
| 3753 buildCounterInstanceTemplateList++; | 3753 buildCounterInstanceTemplateList++; |
| 3754 if (buildCounterInstanceTemplateList < 3) { | 3754 if (buildCounterInstanceTemplateList < 3) { |
| 3755 o.id = "foo"; | 3755 o.id = "foo"; |
| 3756 o.items = buildUnnamed2059(); | 3756 o.items = buildUnnamed2153(); |
| 3757 o.kind = "foo"; | 3757 o.kind = "foo"; |
| 3758 o.nextPageToken = "foo"; | 3758 o.nextPageToken = "foo"; |
| 3759 o.selfLink = "foo"; | 3759 o.selfLink = "foo"; |
| 3760 } | 3760 } |
| 3761 buildCounterInstanceTemplateList--; | 3761 buildCounterInstanceTemplateList--; |
| 3762 return o; | 3762 return o; |
| 3763 } | 3763 } |
| 3764 | 3764 |
| 3765 checkInstanceTemplateList(api.InstanceTemplateList o) { | 3765 checkInstanceTemplateList(api.InstanceTemplateList o) { |
| 3766 buildCounterInstanceTemplateList++; | 3766 buildCounterInstanceTemplateList++; |
| 3767 if (buildCounterInstanceTemplateList < 3) { | 3767 if (buildCounterInstanceTemplateList < 3) { |
| 3768 unittest.expect(o.id, unittest.equals('foo')); | 3768 unittest.expect(o.id, unittest.equals('foo')); |
| 3769 checkUnnamed2059(o.items); | 3769 checkUnnamed2153(o.items); |
| 3770 unittest.expect(o.kind, unittest.equals('foo')); | 3770 unittest.expect(o.kind, unittest.equals('foo')); |
| 3771 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3771 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3772 unittest.expect(o.selfLink, unittest.equals('foo')); | 3772 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3773 } | 3773 } |
| 3774 buildCounterInstanceTemplateList--; | 3774 buildCounterInstanceTemplateList--; |
| 3775 } | 3775 } |
| 3776 | 3776 |
| 3777 buildUnnamed2060() { | 3777 buildUnnamed2154() { |
| 3778 var o = new core.List<api.NamedPort>(); | 3778 var o = new core.List<api.NamedPort>(); |
| 3779 o.add(buildNamedPort()); | 3779 o.add(buildNamedPort()); |
| 3780 o.add(buildNamedPort()); | 3780 o.add(buildNamedPort()); |
| 3781 return o; | 3781 return o; |
| 3782 } | 3782 } |
| 3783 | 3783 |
| 3784 checkUnnamed2060(core.List<api.NamedPort> o) { | 3784 checkUnnamed2154(core.List<api.NamedPort> o) { |
| 3785 unittest.expect(o, unittest.hasLength(2)); | 3785 unittest.expect(o, unittest.hasLength(2)); |
| 3786 checkNamedPort(o[0]); | 3786 checkNamedPort(o[0]); |
| 3787 checkNamedPort(o[1]); | 3787 checkNamedPort(o[1]); |
| 3788 } | 3788 } |
| 3789 | 3789 |
| 3790 core.int buildCounterInstanceWithNamedPorts = 0; | 3790 core.int buildCounterInstanceWithNamedPorts = 0; |
| 3791 buildInstanceWithNamedPorts() { | 3791 buildInstanceWithNamedPorts() { |
| 3792 var o = new api.InstanceWithNamedPorts(); | 3792 var o = new api.InstanceWithNamedPorts(); |
| 3793 buildCounterInstanceWithNamedPorts++; | 3793 buildCounterInstanceWithNamedPorts++; |
| 3794 if (buildCounterInstanceWithNamedPorts < 3) { | 3794 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3795 o.instance = "foo"; | 3795 o.instance = "foo"; |
| 3796 o.namedPorts = buildUnnamed2060(); | 3796 o.namedPorts = buildUnnamed2154(); |
| 3797 o.status = "foo"; | 3797 o.status = "foo"; |
| 3798 } | 3798 } |
| 3799 buildCounterInstanceWithNamedPorts--; | 3799 buildCounterInstanceWithNamedPorts--; |
| 3800 return o; | 3800 return o; |
| 3801 } | 3801 } |
| 3802 | 3802 |
| 3803 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { | 3803 checkInstanceWithNamedPorts(api.InstanceWithNamedPorts o) { |
| 3804 buildCounterInstanceWithNamedPorts++; | 3804 buildCounterInstanceWithNamedPorts++; |
| 3805 if (buildCounterInstanceWithNamedPorts < 3) { | 3805 if (buildCounterInstanceWithNamedPorts < 3) { |
| 3806 unittest.expect(o.instance, unittest.equals('foo')); | 3806 unittest.expect(o.instance, unittest.equals('foo')); |
| 3807 checkUnnamed2060(o.namedPorts); | 3807 checkUnnamed2154(o.namedPorts); |
| 3808 unittest.expect(o.status, unittest.equals('foo')); | 3808 unittest.expect(o.status, unittest.equals('foo')); |
| 3809 } | 3809 } |
| 3810 buildCounterInstanceWithNamedPorts--; | 3810 buildCounterInstanceWithNamedPorts--; |
| 3811 } | 3811 } |
| 3812 | 3812 |
| 3813 buildUnnamed2061() { | 3813 buildUnnamed2155() { |
| 3814 var o = new core.List<api.Instance>(); | 3814 var o = new core.List<api.Instance>(); |
| 3815 o.add(buildInstance()); | 3815 o.add(buildInstance()); |
| 3816 o.add(buildInstance()); | 3816 o.add(buildInstance()); |
| 3817 return o; | 3817 return o; |
| 3818 } | 3818 } |
| 3819 | 3819 |
| 3820 checkUnnamed2061(core.List<api.Instance> o) { | 3820 checkUnnamed2155(core.List<api.Instance> o) { |
| 3821 unittest.expect(o, unittest.hasLength(2)); | 3821 unittest.expect(o, unittest.hasLength(2)); |
| 3822 checkInstance(o[0]); | 3822 checkInstance(o[0]); |
| 3823 checkInstance(o[1]); | 3823 checkInstance(o[1]); |
| 3824 } | 3824 } |
| 3825 | 3825 |
| 3826 core.int buildCounterInstancesScopedListWarningData = 0; | 3826 core.int buildCounterInstancesScopedListWarningData = 0; |
| 3827 buildInstancesScopedListWarningData() { | 3827 buildInstancesScopedListWarningData() { |
| 3828 var o = new api.InstancesScopedListWarningData(); | 3828 var o = new api.InstancesScopedListWarningData(); |
| 3829 buildCounterInstancesScopedListWarningData++; | 3829 buildCounterInstancesScopedListWarningData++; |
| 3830 if (buildCounterInstancesScopedListWarningData < 3) { | 3830 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3831 o.key = "foo"; | 3831 o.key = "foo"; |
| 3832 o.value = "foo"; | 3832 o.value = "foo"; |
| 3833 } | 3833 } |
| 3834 buildCounterInstancesScopedListWarningData--; | 3834 buildCounterInstancesScopedListWarningData--; |
| 3835 return o; | 3835 return o; |
| 3836 } | 3836 } |
| 3837 | 3837 |
| 3838 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 3838 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 3839 buildCounterInstancesScopedListWarningData++; | 3839 buildCounterInstancesScopedListWarningData++; |
| 3840 if (buildCounterInstancesScopedListWarningData < 3) { | 3840 if (buildCounterInstancesScopedListWarningData < 3) { |
| 3841 unittest.expect(o.key, unittest.equals('foo')); | 3841 unittest.expect(o.key, unittest.equals('foo')); |
| 3842 unittest.expect(o.value, unittest.equals('foo')); | 3842 unittest.expect(o.value, unittest.equals('foo')); |
| 3843 } | 3843 } |
| 3844 buildCounterInstancesScopedListWarningData--; | 3844 buildCounterInstancesScopedListWarningData--; |
| 3845 } | 3845 } |
| 3846 | 3846 |
| 3847 buildUnnamed2062() { | 3847 buildUnnamed2156() { |
| 3848 var o = new core.List<api.InstancesScopedListWarningData>(); | 3848 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 3849 o.add(buildInstancesScopedListWarningData()); | 3849 o.add(buildInstancesScopedListWarningData()); |
| 3850 o.add(buildInstancesScopedListWarningData()); | 3850 o.add(buildInstancesScopedListWarningData()); |
| 3851 return o; | 3851 return o; |
| 3852 } | 3852 } |
| 3853 | 3853 |
| 3854 checkUnnamed2062(core.List<api.InstancesScopedListWarningData> o) { | 3854 checkUnnamed2156(core.List<api.InstancesScopedListWarningData> o) { |
| 3855 unittest.expect(o, unittest.hasLength(2)); | 3855 unittest.expect(o, unittest.hasLength(2)); |
| 3856 checkInstancesScopedListWarningData(o[0]); | 3856 checkInstancesScopedListWarningData(o[0]); |
| 3857 checkInstancesScopedListWarningData(o[1]); | 3857 checkInstancesScopedListWarningData(o[1]); |
| 3858 } | 3858 } |
| 3859 | 3859 |
| 3860 core.int buildCounterInstancesScopedListWarning = 0; | 3860 core.int buildCounterInstancesScopedListWarning = 0; |
| 3861 buildInstancesScopedListWarning() { | 3861 buildInstancesScopedListWarning() { |
| 3862 var o = new api.InstancesScopedListWarning(); | 3862 var o = new api.InstancesScopedListWarning(); |
| 3863 buildCounterInstancesScopedListWarning++; | 3863 buildCounterInstancesScopedListWarning++; |
| 3864 if (buildCounterInstancesScopedListWarning < 3) { | 3864 if (buildCounterInstancesScopedListWarning < 3) { |
| 3865 o.code = "foo"; | 3865 o.code = "foo"; |
| 3866 o.data = buildUnnamed2062(); | 3866 o.data = buildUnnamed2156(); |
| 3867 o.message = "foo"; | 3867 o.message = "foo"; |
| 3868 } | 3868 } |
| 3869 buildCounterInstancesScopedListWarning--; | 3869 buildCounterInstancesScopedListWarning--; |
| 3870 return o; | 3870 return o; |
| 3871 } | 3871 } |
| 3872 | 3872 |
| 3873 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 3873 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 3874 buildCounterInstancesScopedListWarning++; | 3874 buildCounterInstancesScopedListWarning++; |
| 3875 if (buildCounterInstancesScopedListWarning < 3) { | 3875 if (buildCounterInstancesScopedListWarning < 3) { |
| 3876 unittest.expect(o.code, unittest.equals('foo')); | 3876 unittest.expect(o.code, unittest.equals('foo')); |
| 3877 checkUnnamed2062(o.data); | 3877 checkUnnamed2156(o.data); |
| 3878 unittest.expect(o.message, unittest.equals('foo')); | 3878 unittest.expect(o.message, unittest.equals('foo')); |
| 3879 } | 3879 } |
| 3880 buildCounterInstancesScopedListWarning--; | 3880 buildCounterInstancesScopedListWarning--; |
| 3881 } | 3881 } |
| 3882 | 3882 |
| 3883 core.int buildCounterInstancesScopedList = 0; | 3883 core.int buildCounterInstancesScopedList = 0; |
| 3884 buildInstancesScopedList() { | 3884 buildInstancesScopedList() { |
| 3885 var o = new api.InstancesScopedList(); | 3885 var o = new api.InstancesScopedList(); |
| 3886 buildCounterInstancesScopedList++; | 3886 buildCounterInstancesScopedList++; |
| 3887 if (buildCounterInstancesScopedList < 3) { | 3887 if (buildCounterInstancesScopedList < 3) { |
| 3888 o.instances = buildUnnamed2061(); | 3888 o.instances = buildUnnamed2155(); |
| 3889 o.warning = buildInstancesScopedListWarning(); | 3889 o.warning = buildInstancesScopedListWarning(); |
| 3890 } | 3890 } |
| 3891 buildCounterInstancesScopedList--; | 3891 buildCounterInstancesScopedList--; |
| 3892 return o; | 3892 return o; |
| 3893 } | 3893 } |
| 3894 | 3894 |
| 3895 checkInstancesScopedList(api.InstancesScopedList o) { | 3895 checkInstancesScopedList(api.InstancesScopedList o) { |
| 3896 buildCounterInstancesScopedList++; | 3896 buildCounterInstancesScopedList++; |
| 3897 if (buildCounterInstancesScopedList < 3) { | 3897 if (buildCounterInstancesScopedList < 3) { |
| 3898 checkUnnamed2061(o.instances); | 3898 checkUnnamed2155(o.instances); |
| 3899 checkInstancesScopedListWarning(o.warning); | 3899 checkInstancesScopedListWarning(o.warning); |
| 3900 } | 3900 } |
| 3901 buildCounterInstancesScopedList--; | 3901 buildCounterInstancesScopedList--; |
| 3902 } | 3902 } |
| 3903 | 3903 |
| 3904 core.int buildCounterInstancesSetMachineTypeRequest = 0; | 3904 core.int buildCounterInstancesSetMachineTypeRequest = 0; |
| 3905 buildInstancesSetMachineTypeRequest() { | 3905 buildInstancesSetMachineTypeRequest() { |
| 3906 var o = new api.InstancesSetMachineTypeRequest(); | 3906 var o = new api.InstancesSetMachineTypeRequest(); |
| 3907 buildCounterInstancesSetMachineTypeRequest++; | 3907 buildCounterInstancesSetMachineTypeRequest++; |
| 3908 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3908 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3909 o.machineType = "foo"; | 3909 o.machineType = "foo"; |
| 3910 } | 3910 } |
| 3911 buildCounterInstancesSetMachineTypeRequest--; | 3911 buildCounterInstancesSetMachineTypeRequest--; |
| 3912 return o; | 3912 return o; |
| 3913 } | 3913 } |
| 3914 | 3914 |
| 3915 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { | 3915 checkInstancesSetMachineTypeRequest(api.InstancesSetMachineTypeRequest o) { |
| 3916 buildCounterInstancesSetMachineTypeRequest++; | 3916 buildCounterInstancesSetMachineTypeRequest++; |
| 3917 if (buildCounterInstancesSetMachineTypeRequest < 3) { | 3917 if (buildCounterInstancesSetMachineTypeRequest < 3) { |
| 3918 unittest.expect(o.machineType, unittest.equals('foo')); | 3918 unittest.expect(o.machineType, unittest.equals('foo')); |
| 3919 } | 3919 } |
| 3920 buildCounterInstancesSetMachineTypeRequest--; | 3920 buildCounterInstancesSetMachineTypeRequest--; |
| 3921 } | 3921 } |
| 3922 | 3922 |
| 3923 buildUnnamed2063() { | 3923 buildUnnamed2157() { |
| 3924 var o = new core.List<core.String>(); | 3924 var o = new core.List<core.String>(); |
| 3925 o.add("foo"); | 3925 o.add("foo"); |
| 3926 o.add("foo"); | 3926 o.add("foo"); |
| 3927 return o; | 3927 return o; |
| 3928 } | 3928 } |
| 3929 | 3929 |
| 3930 checkUnnamed2063(core.List<core.String> o) { | 3930 checkUnnamed2157(core.List<core.String> o) { |
| 3931 unittest.expect(o, unittest.hasLength(2)); | 3931 unittest.expect(o, unittest.hasLength(2)); |
| 3932 unittest.expect(o[0], unittest.equals('foo')); | 3932 unittest.expect(o[0], unittest.equals('foo')); |
| 3933 unittest.expect(o[1], unittest.equals('foo')); | 3933 unittest.expect(o[1], unittest.equals('foo')); |
| 3934 } | 3934 } |
| 3935 | 3935 |
| 3936 core.int buildCounterInstancesSetServiceAccountRequest = 0; | 3936 core.int buildCounterInstancesSetServiceAccountRequest = 0; |
| 3937 buildInstancesSetServiceAccountRequest() { | 3937 buildInstancesSetServiceAccountRequest() { |
| 3938 var o = new api.InstancesSetServiceAccountRequest(); | 3938 var o = new api.InstancesSetServiceAccountRequest(); |
| 3939 buildCounterInstancesSetServiceAccountRequest++; | 3939 buildCounterInstancesSetServiceAccountRequest++; |
| 3940 if (buildCounterInstancesSetServiceAccountRequest < 3) { | 3940 if (buildCounterInstancesSetServiceAccountRequest < 3) { |
| 3941 o.email = "foo"; | 3941 o.email = "foo"; |
| 3942 o.scopes = buildUnnamed2063(); | 3942 o.scopes = buildUnnamed2157(); |
| 3943 } | 3943 } |
| 3944 buildCounterInstancesSetServiceAccountRequest--; | 3944 buildCounterInstancesSetServiceAccountRequest--; |
| 3945 return o; | 3945 return o; |
| 3946 } | 3946 } |
| 3947 | 3947 |
| 3948 checkInstancesSetServiceAccountRequest(api.InstancesSetServiceAccountRequest o)
{ | 3948 checkInstancesSetServiceAccountRequest(api.InstancesSetServiceAccountRequest o)
{ |
| 3949 buildCounterInstancesSetServiceAccountRequest++; | 3949 buildCounterInstancesSetServiceAccountRequest++; |
| 3950 if (buildCounterInstancesSetServiceAccountRequest < 3) { | 3950 if (buildCounterInstancesSetServiceAccountRequest < 3) { |
| 3951 unittest.expect(o.email, unittest.equals('foo')); | 3951 unittest.expect(o.email, unittest.equals('foo')); |
| 3952 checkUnnamed2063(o.scopes); | 3952 checkUnnamed2157(o.scopes); |
| 3953 } | 3953 } |
| 3954 buildCounterInstancesSetServiceAccountRequest--; | 3954 buildCounterInstancesSetServiceAccountRequest--; |
| 3955 } | 3955 } |
| 3956 | 3956 |
| 3957 buildUnnamed2064() { | 3957 buildUnnamed2158() { |
| 3958 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); | 3958 var o = new core.List<api.CustomerEncryptionKeyProtectedDisk>(); |
| 3959 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3959 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3960 o.add(buildCustomerEncryptionKeyProtectedDisk()); | 3960 o.add(buildCustomerEncryptionKeyProtectedDisk()); |
| 3961 return o; | 3961 return o; |
| 3962 } | 3962 } |
| 3963 | 3963 |
| 3964 checkUnnamed2064(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { | 3964 checkUnnamed2158(core.List<api.CustomerEncryptionKeyProtectedDisk> o) { |
| 3965 unittest.expect(o, unittest.hasLength(2)); | 3965 unittest.expect(o, unittest.hasLength(2)); |
| 3966 checkCustomerEncryptionKeyProtectedDisk(o[0]); | 3966 checkCustomerEncryptionKeyProtectedDisk(o[0]); |
| 3967 checkCustomerEncryptionKeyProtectedDisk(o[1]); | 3967 checkCustomerEncryptionKeyProtectedDisk(o[1]); |
| 3968 } | 3968 } |
| 3969 | 3969 |
| 3970 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; | 3970 core.int buildCounterInstancesStartWithEncryptionKeyRequest = 0; |
| 3971 buildInstancesStartWithEncryptionKeyRequest() { | 3971 buildInstancesStartWithEncryptionKeyRequest() { |
| 3972 var o = new api.InstancesStartWithEncryptionKeyRequest(); | 3972 var o = new api.InstancesStartWithEncryptionKeyRequest(); |
| 3973 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3973 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3974 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3974 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3975 o.disks = buildUnnamed2064(); | 3975 o.disks = buildUnnamed2158(); |
| 3976 } | 3976 } |
| 3977 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3977 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3978 return o; | 3978 return o; |
| 3979 } | 3979 } |
| 3980 | 3980 |
| 3981 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { | 3981 checkInstancesStartWithEncryptionKeyRequest(api.InstancesStartWithEncryptionKeyR
equest o) { |
| 3982 buildCounterInstancesStartWithEncryptionKeyRequest++; | 3982 buildCounterInstancesStartWithEncryptionKeyRequest++; |
| 3983 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { | 3983 if (buildCounterInstancesStartWithEncryptionKeyRequest < 3) { |
| 3984 checkUnnamed2064(o.disks); | 3984 checkUnnamed2158(o.disks); |
| 3985 } | 3985 } |
| 3986 buildCounterInstancesStartWithEncryptionKeyRequest--; | 3986 buildCounterInstancesStartWithEncryptionKeyRequest--; |
| 3987 } | 3987 } |
| 3988 | 3988 |
| 3989 core.int buildCounterLicense = 0; | 3989 core.int buildCounterLicense = 0; |
| 3990 buildLicense() { | 3990 buildLicense() { |
| 3991 var o = new api.License(); | 3991 var o = new api.License(); |
| 3992 buildCounterLicense++; | 3992 buildCounterLicense++; |
| 3993 if (buildCounterLicense < 3) { | 3993 if (buildCounterLicense < 3) { |
| 3994 o.chargesUseFee = true; | 3994 o.chargesUseFee = true; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 4023 } | 4023 } |
| 4024 | 4024 |
| 4025 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 4025 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 4026 buildCounterMachineTypeScratchDisks++; | 4026 buildCounterMachineTypeScratchDisks++; |
| 4027 if (buildCounterMachineTypeScratchDisks < 3) { | 4027 if (buildCounterMachineTypeScratchDisks < 3) { |
| 4028 unittest.expect(o.diskGb, unittest.equals(42)); | 4028 unittest.expect(o.diskGb, unittest.equals(42)); |
| 4029 } | 4029 } |
| 4030 buildCounterMachineTypeScratchDisks--; | 4030 buildCounterMachineTypeScratchDisks--; |
| 4031 } | 4031 } |
| 4032 | 4032 |
| 4033 buildUnnamed2065() { | 4033 buildUnnamed2159() { |
| 4034 var o = new core.List<api.MachineTypeScratchDisks>(); | 4034 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 4035 o.add(buildMachineTypeScratchDisks()); | 4035 o.add(buildMachineTypeScratchDisks()); |
| 4036 o.add(buildMachineTypeScratchDisks()); | 4036 o.add(buildMachineTypeScratchDisks()); |
| 4037 return o; | 4037 return o; |
| 4038 } | 4038 } |
| 4039 | 4039 |
| 4040 checkUnnamed2065(core.List<api.MachineTypeScratchDisks> o) { | 4040 checkUnnamed2159(core.List<api.MachineTypeScratchDisks> o) { |
| 4041 unittest.expect(o, unittest.hasLength(2)); | 4041 unittest.expect(o, unittest.hasLength(2)); |
| 4042 checkMachineTypeScratchDisks(o[0]); | 4042 checkMachineTypeScratchDisks(o[0]); |
| 4043 checkMachineTypeScratchDisks(o[1]); | 4043 checkMachineTypeScratchDisks(o[1]); |
| 4044 } | 4044 } |
| 4045 | 4045 |
| 4046 core.int buildCounterMachineType = 0; | 4046 core.int buildCounterMachineType = 0; |
| 4047 buildMachineType() { | 4047 buildMachineType() { |
| 4048 var o = new api.MachineType(); | 4048 var o = new api.MachineType(); |
| 4049 buildCounterMachineType++; | 4049 buildCounterMachineType++; |
| 4050 if (buildCounterMachineType < 3) { | 4050 if (buildCounterMachineType < 3) { |
| 4051 o.creationTimestamp = "foo"; | 4051 o.creationTimestamp = "foo"; |
| 4052 o.deprecated = buildDeprecationStatus(); | 4052 o.deprecated = buildDeprecationStatus(); |
| 4053 o.description = "foo"; | 4053 o.description = "foo"; |
| 4054 o.guestCpus = 42; | 4054 o.guestCpus = 42; |
| 4055 o.id = "foo"; | 4055 o.id = "foo"; |
| 4056 o.imageSpaceGb = 42; | 4056 o.imageSpaceGb = 42; |
| 4057 o.isSharedCpu = true; | 4057 o.isSharedCpu = true; |
| 4058 o.kind = "foo"; | 4058 o.kind = "foo"; |
| 4059 o.maximumPersistentDisks = 42; | 4059 o.maximumPersistentDisks = 42; |
| 4060 o.maximumPersistentDisksSizeGb = "foo"; | 4060 o.maximumPersistentDisksSizeGb = "foo"; |
| 4061 o.memoryMb = 42; | 4061 o.memoryMb = 42; |
| 4062 o.name = "foo"; | 4062 o.name = "foo"; |
| 4063 o.scratchDisks = buildUnnamed2065(); | 4063 o.scratchDisks = buildUnnamed2159(); |
| 4064 o.selfLink = "foo"; | 4064 o.selfLink = "foo"; |
| 4065 o.zone = "foo"; | 4065 o.zone = "foo"; |
| 4066 } | 4066 } |
| 4067 buildCounterMachineType--; | 4067 buildCounterMachineType--; |
| 4068 return o; | 4068 return o; |
| 4069 } | 4069 } |
| 4070 | 4070 |
| 4071 checkMachineType(api.MachineType o) { | 4071 checkMachineType(api.MachineType o) { |
| 4072 buildCounterMachineType++; | 4072 buildCounterMachineType++; |
| 4073 if (buildCounterMachineType < 3) { | 4073 if (buildCounterMachineType < 3) { |
| 4074 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4074 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4075 checkDeprecationStatus(o.deprecated); | 4075 checkDeprecationStatus(o.deprecated); |
| 4076 unittest.expect(o.description, unittest.equals('foo')); | 4076 unittest.expect(o.description, unittest.equals('foo')); |
| 4077 unittest.expect(o.guestCpus, unittest.equals(42)); | 4077 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 4078 unittest.expect(o.id, unittest.equals('foo')); | 4078 unittest.expect(o.id, unittest.equals('foo')); |
| 4079 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 4079 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 4080 unittest.expect(o.isSharedCpu, unittest.isTrue); | 4080 unittest.expect(o.isSharedCpu, unittest.isTrue); |
| 4081 unittest.expect(o.kind, unittest.equals('foo')); | 4081 unittest.expect(o.kind, unittest.equals('foo')); |
| 4082 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 4082 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 4083 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 4083 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 4084 unittest.expect(o.memoryMb, unittest.equals(42)); | 4084 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 4085 unittest.expect(o.name, unittest.equals('foo')); | 4085 unittest.expect(o.name, unittest.equals('foo')); |
| 4086 checkUnnamed2065(o.scratchDisks); | 4086 checkUnnamed2159(o.scratchDisks); |
| 4087 unittest.expect(o.selfLink, unittest.equals('foo')); | 4087 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4088 unittest.expect(o.zone, unittest.equals('foo')); | 4088 unittest.expect(o.zone, unittest.equals('foo')); |
| 4089 } | 4089 } |
| 4090 buildCounterMachineType--; | 4090 buildCounterMachineType--; |
| 4091 } | 4091 } |
| 4092 | 4092 |
| 4093 buildUnnamed2066() { | 4093 buildUnnamed2160() { |
| 4094 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 4094 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 4095 o["x"] = buildMachineTypesScopedList(); | 4095 o["x"] = buildMachineTypesScopedList(); |
| 4096 o["y"] = buildMachineTypesScopedList(); | 4096 o["y"] = buildMachineTypesScopedList(); |
| 4097 return o; | 4097 return o; |
| 4098 } | 4098 } |
| 4099 | 4099 |
| 4100 checkUnnamed2066(core.Map<core.String, api.MachineTypesScopedList> o) { | 4100 checkUnnamed2160(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 4101 unittest.expect(o, unittest.hasLength(2)); | 4101 unittest.expect(o, unittest.hasLength(2)); |
| 4102 checkMachineTypesScopedList(o["x"]); | 4102 checkMachineTypesScopedList(o["x"]); |
| 4103 checkMachineTypesScopedList(o["y"]); | 4103 checkMachineTypesScopedList(o["y"]); |
| 4104 } | 4104 } |
| 4105 | 4105 |
| 4106 core.int buildCounterMachineTypeAggregatedList = 0; | 4106 core.int buildCounterMachineTypeAggregatedList = 0; |
| 4107 buildMachineTypeAggregatedList() { | 4107 buildMachineTypeAggregatedList() { |
| 4108 var o = new api.MachineTypeAggregatedList(); | 4108 var o = new api.MachineTypeAggregatedList(); |
| 4109 buildCounterMachineTypeAggregatedList++; | 4109 buildCounterMachineTypeAggregatedList++; |
| 4110 if (buildCounterMachineTypeAggregatedList < 3) { | 4110 if (buildCounterMachineTypeAggregatedList < 3) { |
| 4111 o.id = "foo"; | 4111 o.id = "foo"; |
| 4112 o.items = buildUnnamed2066(); | 4112 o.items = buildUnnamed2160(); |
| 4113 o.kind = "foo"; | 4113 o.kind = "foo"; |
| 4114 o.nextPageToken = "foo"; | 4114 o.nextPageToken = "foo"; |
| 4115 o.selfLink = "foo"; | 4115 o.selfLink = "foo"; |
| 4116 } | 4116 } |
| 4117 buildCounterMachineTypeAggregatedList--; | 4117 buildCounterMachineTypeAggregatedList--; |
| 4118 return o; | 4118 return o; |
| 4119 } | 4119 } |
| 4120 | 4120 |
| 4121 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 4121 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 4122 buildCounterMachineTypeAggregatedList++; | 4122 buildCounterMachineTypeAggregatedList++; |
| 4123 if (buildCounterMachineTypeAggregatedList < 3) { | 4123 if (buildCounterMachineTypeAggregatedList < 3) { |
| 4124 unittest.expect(o.id, unittest.equals('foo')); | 4124 unittest.expect(o.id, unittest.equals('foo')); |
| 4125 checkUnnamed2066(o.items); | 4125 checkUnnamed2160(o.items); |
| 4126 unittest.expect(o.kind, unittest.equals('foo')); | 4126 unittest.expect(o.kind, unittest.equals('foo')); |
| 4127 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4127 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4128 unittest.expect(o.selfLink, unittest.equals('foo')); | 4128 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4129 } | 4129 } |
| 4130 buildCounterMachineTypeAggregatedList--; | 4130 buildCounterMachineTypeAggregatedList--; |
| 4131 } | 4131 } |
| 4132 | 4132 |
| 4133 buildUnnamed2067() { | 4133 buildUnnamed2161() { |
| 4134 var o = new core.List<api.MachineType>(); | 4134 var o = new core.List<api.MachineType>(); |
| 4135 o.add(buildMachineType()); | 4135 o.add(buildMachineType()); |
| 4136 o.add(buildMachineType()); | 4136 o.add(buildMachineType()); |
| 4137 return o; | 4137 return o; |
| 4138 } | 4138 } |
| 4139 | 4139 |
| 4140 checkUnnamed2067(core.List<api.MachineType> o) { | 4140 checkUnnamed2161(core.List<api.MachineType> o) { |
| 4141 unittest.expect(o, unittest.hasLength(2)); | 4141 unittest.expect(o, unittest.hasLength(2)); |
| 4142 checkMachineType(o[0]); | 4142 checkMachineType(o[0]); |
| 4143 checkMachineType(o[1]); | 4143 checkMachineType(o[1]); |
| 4144 } | 4144 } |
| 4145 | 4145 |
| 4146 core.int buildCounterMachineTypeList = 0; | 4146 core.int buildCounterMachineTypeList = 0; |
| 4147 buildMachineTypeList() { | 4147 buildMachineTypeList() { |
| 4148 var o = new api.MachineTypeList(); | 4148 var o = new api.MachineTypeList(); |
| 4149 buildCounterMachineTypeList++; | 4149 buildCounterMachineTypeList++; |
| 4150 if (buildCounterMachineTypeList < 3) { | 4150 if (buildCounterMachineTypeList < 3) { |
| 4151 o.id = "foo"; | 4151 o.id = "foo"; |
| 4152 o.items = buildUnnamed2067(); | 4152 o.items = buildUnnamed2161(); |
| 4153 o.kind = "foo"; | 4153 o.kind = "foo"; |
| 4154 o.nextPageToken = "foo"; | 4154 o.nextPageToken = "foo"; |
| 4155 o.selfLink = "foo"; | 4155 o.selfLink = "foo"; |
| 4156 } | 4156 } |
| 4157 buildCounterMachineTypeList--; | 4157 buildCounterMachineTypeList--; |
| 4158 return o; | 4158 return o; |
| 4159 } | 4159 } |
| 4160 | 4160 |
| 4161 checkMachineTypeList(api.MachineTypeList o) { | 4161 checkMachineTypeList(api.MachineTypeList o) { |
| 4162 buildCounterMachineTypeList++; | 4162 buildCounterMachineTypeList++; |
| 4163 if (buildCounterMachineTypeList < 3) { | 4163 if (buildCounterMachineTypeList < 3) { |
| 4164 unittest.expect(o.id, unittest.equals('foo')); | 4164 unittest.expect(o.id, unittest.equals('foo')); |
| 4165 checkUnnamed2067(o.items); | 4165 checkUnnamed2161(o.items); |
| 4166 unittest.expect(o.kind, unittest.equals('foo')); | 4166 unittest.expect(o.kind, unittest.equals('foo')); |
| 4167 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4167 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4168 unittest.expect(o.selfLink, unittest.equals('foo')); | 4168 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4169 } | 4169 } |
| 4170 buildCounterMachineTypeList--; | 4170 buildCounterMachineTypeList--; |
| 4171 } | 4171 } |
| 4172 | 4172 |
| 4173 buildUnnamed2068() { | 4173 buildUnnamed2162() { |
| 4174 var o = new core.List<api.MachineType>(); | 4174 var o = new core.List<api.MachineType>(); |
| 4175 o.add(buildMachineType()); | 4175 o.add(buildMachineType()); |
| 4176 o.add(buildMachineType()); | 4176 o.add(buildMachineType()); |
| 4177 return o; | 4177 return o; |
| 4178 } | 4178 } |
| 4179 | 4179 |
| 4180 checkUnnamed2068(core.List<api.MachineType> o) { | 4180 checkUnnamed2162(core.List<api.MachineType> o) { |
| 4181 unittest.expect(o, unittest.hasLength(2)); | 4181 unittest.expect(o, unittest.hasLength(2)); |
| 4182 checkMachineType(o[0]); | 4182 checkMachineType(o[0]); |
| 4183 checkMachineType(o[1]); | 4183 checkMachineType(o[1]); |
| 4184 } | 4184 } |
| 4185 | 4185 |
| 4186 core.int buildCounterMachineTypesScopedListWarningData = 0; | 4186 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 4187 buildMachineTypesScopedListWarningData() { | 4187 buildMachineTypesScopedListWarningData() { |
| 4188 var o = new api.MachineTypesScopedListWarningData(); | 4188 var o = new api.MachineTypesScopedListWarningData(); |
| 4189 buildCounterMachineTypesScopedListWarningData++; | 4189 buildCounterMachineTypesScopedListWarningData++; |
| 4190 if (buildCounterMachineTypesScopedListWarningData < 3) { | 4190 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 4191 o.key = "foo"; | 4191 o.key = "foo"; |
| 4192 o.value = "foo"; | 4192 o.value = "foo"; |
| 4193 } | 4193 } |
| 4194 buildCounterMachineTypesScopedListWarningData--; | 4194 buildCounterMachineTypesScopedListWarningData--; |
| 4195 return o; | 4195 return o; |
| 4196 } | 4196 } |
| 4197 | 4197 |
| 4198 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 4198 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 4199 buildCounterMachineTypesScopedListWarningData++; | 4199 buildCounterMachineTypesScopedListWarningData++; |
| 4200 if (buildCounterMachineTypesScopedListWarningData < 3) { | 4200 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 4201 unittest.expect(o.key, unittest.equals('foo')); | 4201 unittest.expect(o.key, unittest.equals('foo')); |
| 4202 unittest.expect(o.value, unittest.equals('foo')); | 4202 unittest.expect(o.value, unittest.equals('foo')); |
| 4203 } | 4203 } |
| 4204 buildCounterMachineTypesScopedListWarningData--; | 4204 buildCounterMachineTypesScopedListWarningData--; |
| 4205 } | 4205 } |
| 4206 | 4206 |
| 4207 buildUnnamed2069() { | 4207 buildUnnamed2163() { |
| 4208 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 4208 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 4209 o.add(buildMachineTypesScopedListWarningData()); | 4209 o.add(buildMachineTypesScopedListWarningData()); |
| 4210 o.add(buildMachineTypesScopedListWarningData()); | 4210 o.add(buildMachineTypesScopedListWarningData()); |
| 4211 return o; | 4211 return o; |
| 4212 } | 4212 } |
| 4213 | 4213 |
| 4214 checkUnnamed2069(core.List<api.MachineTypesScopedListWarningData> o) { | 4214 checkUnnamed2163(core.List<api.MachineTypesScopedListWarningData> o) { |
| 4215 unittest.expect(o, unittest.hasLength(2)); | 4215 unittest.expect(o, unittest.hasLength(2)); |
| 4216 checkMachineTypesScopedListWarningData(o[0]); | 4216 checkMachineTypesScopedListWarningData(o[0]); |
| 4217 checkMachineTypesScopedListWarningData(o[1]); | 4217 checkMachineTypesScopedListWarningData(o[1]); |
| 4218 } | 4218 } |
| 4219 | 4219 |
| 4220 core.int buildCounterMachineTypesScopedListWarning = 0; | 4220 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 4221 buildMachineTypesScopedListWarning() { | 4221 buildMachineTypesScopedListWarning() { |
| 4222 var o = new api.MachineTypesScopedListWarning(); | 4222 var o = new api.MachineTypesScopedListWarning(); |
| 4223 buildCounterMachineTypesScopedListWarning++; | 4223 buildCounterMachineTypesScopedListWarning++; |
| 4224 if (buildCounterMachineTypesScopedListWarning < 3) { | 4224 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 4225 o.code = "foo"; | 4225 o.code = "foo"; |
| 4226 o.data = buildUnnamed2069(); | 4226 o.data = buildUnnamed2163(); |
| 4227 o.message = "foo"; | 4227 o.message = "foo"; |
| 4228 } | 4228 } |
| 4229 buildCounterMachineTypesScopedListWarning--; | 4229 buildCounterMachineTypesScopedListWarning--; |
| 4230 return o; | 4230 return o; |
| 4231 } | 4231 } |
| 4232 | 4232 |
| 4233 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 4233 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 4234 buildCounterMachineTypesScopedListWarning++; | 4234 buildCounterMachineTypesScopedListWarning++; |
| 4235 if (buildCounterMachineTypesScopedListWarning < 3) { | 4235 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 4236 unittest.expect(o.code, unittest.equals('foo')); | 4236 unittest.expect(o.code, unittest.equals('foo')); |
| 4237 checkUnnamed2069(o.data); | 4237 checkUnnamed2163(o.data); |
| 4238 unittest.expect(o.message, unittest.equals('foo')); | 4238 unittest.expect(o.message, unittest.equals('foo')); |
| 4239 } | 4239 } |
| 4240 buildCounterMachineTypesScopedListWarning--; | 4240 buildCounterMachineTypesScopedListWarning--; |
| 4241 } | 4241 } |
| 4242 | 4242 |
| 4243 core.int buildCounterMachineTypesScopedList = 0; | 4243 core.int buildCounterMachineTypesScopedList = 0; |
| 4244 buildMachineTypesScopedList() { | 4244 buildMachineTypesScopedList() { |
| 4245 var o = new api.MachineTypesScopedList(); | 4245 var o = new api.MachineTypesScopedList(); |
| 4246 buildCounterMachineTypesScopedList++; | 4246 buildCounterMachineTypesScopedList++; |
| 4247 if (buildCounterMachineTypesScopedList < 3) { | 4247 if (buildCounterMachineTypesScopedList < 3) { |
| 4248 o.machineTypes = buildUnnamed2068(); | 4248 o.machineTypes = buildUnnamed2162(); |
| 4249 o.warning = buildMachineTypesScopedListWarning(); | 4249 o.warning = buildMachineTypesScopedListWarning(); |
| 4250 } | 4250 } |
| 4251 buildCounterMachineTypesScopedList--; | 4251 buildCounterMachineTypesScopedList--; |
| 4252 return o; | 4252 return o; |
| 4253 } | 4253 } |
| 4254 | 4254 |
| 4255 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 4255 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 4256 buildCounterMachineTypesScopedList++; | 4256 buildCounterMachineTypesScopedList++; |
| 4257 if (buildCounterMachineTypesScopedList < 3) { | 4257 if (buildCounterMachineTypesScopedList < 3) { |
| 4258 checkUnnamed2068(o.machineTypes); | 4258 checkUnnamed2162(o.machineTypes); |
| 4259 checkMachineTypesScopedListWarning(o.warning); | 4259 checkMachineTypesScopedListWarning(o.warning); |
| 4260 } | 4260 } |
| 4261 buildCounterMachineTypesScopedList--; | 4261 buildCounterMachineTypesScopedList--; |
| 4262 } | 4262 } |
| 4263 | 4263 |
| 4264 core.int buildCounterManagedInstance = 0; | 4264 core.int buildCounterManagedInstance = 0; |
| 4265 buildManagedInstance() { | 4265 buildManagedInstance() { |
| 4266 var o = new api.ManagedInstance(); | 4266 var o = new api.ManagedInstance(); |
| 4267 buildCounterManagedInstance++; | 4267 buildCounterManagedInstance++; |
| 4268 if (buildCounterManagedInstance < 3) { | 4268 if (buildCounterManagedInstance < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4304 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { | 4304 checkManagedInstanceLastAttemptErrorsErrors(api.ManagedInstanceLastAttemptErrors
Errors o) { |
| 4305 buildCounterManagedInstanceLastAttemptErrorsErrors++; | 4305 buildCounterManagedInstanceLastAttemptErrorsErrors++; |
| 4306 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { | 4306 if (buildCounterManagedInstanceLastAttemptErrorsErrors < 3) { |
| 4307 unittest.expect(o.code, unittest.equals('foo')); | 4307 unittest.expect(o.code, unittest.equals('foo')); |
| 4308 unittest.expect(o.location, unittest.equals('foo')); | 4308 unittest.expect(o.location, unittest.equals('foo')); |
| 4309 unittest.expect(o.message, unittest.equals('foo')); | 4309 unittest.expect(o.message, unittest.equals('foo')); |
| 4310 } | 4310 } |
| 4311 buildCounterManagedInstanceLastAttemptErrorsErrors--; | 4311 buildCounterManagedInstanceLastAttemptErrorsErrors--; |
| 4312 } | 4312 } |
| 4313 | 4313 |
| 4314 buildUnnamed2070() { | 4314 buildUnnamed2164() { |
| 4315 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); | 4315 var o = new core.List<api.ManagedInstanceLastAttemptErrorsErrors>(); |
| 4316 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 4316 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 4317 o.add(buildManagedInstanceLastAttemptErrorsErrors()); | 4317 o.add(buildManagedInstanceLastAttemptErrorsErrors()); |
| 4318 return o; | 4318 return o; |
| 4319 } | 4319 } |
| 4320 | 4320 |
| 4321 checkUnnamed2070(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { | 4321 checkUnnamed2164(core.List<api.ManagedInstanceLastAttemptErrorsErrors> o) { |
| 4322 unittest.expect(o, unittest.hasLength(2)); | 4322 unittest.expect(o, unittest.hasLength(2)); |
| 4323 checkManagedInstanceLastAttemptErrorsErrors(o[0]); | 4323 checkManagedInstanceLastAttemptErrorsErrors(o[0]); |
| 4324 checkManagedInstanceLastAttemptErrorsErrors(o[1]); | 4324 checkManagedInstanceLastAttemptErrorsErrors(o[1]); |
| 4325 } | 4325 } |
| 4326 | 4326 |
| 4327 core.int buildCounterManagedInstanceLastAttemptErrors = 0; | 4327 core.int buildCounterManagedInstanceLastAttemptErrors = 0; |
| 4328 buildManagedInstanceLastAttemptErrors() { | 4328 buildManagedInstanceLastAttemptErrors() { |
| 4329 var o = new api.ManagedInstanceLastAttemptErrors(); | 4329 var o = new api.ManagedInstanceLastAttemptErrors(); |
| 4330 buildCounterManagedInstanceLastAttemptErrors++; | 4330 buildCounterManagedInstanceLastAttemptErrors++; |
| 4331 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 4331 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 4332 o.errors = buildUnnamed2070(); | 4332 o.errors = buildUnnamed2164(); |
| 4333 } | 4333 } |
| 4334 buildCounterManagedInstanceLastAttemptErrors--; | 4334 buildCounterManagedInstanceLastAttemptErrors--; |
| 4335 return o; | 4335 return o; |
| 4336 } | 4336 } |
| 4337 | 4337 |
| 4338 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { | 4338 checkManagedInstanceLastAttemptErrors(api.ManagedInstanceLastAttemptErrors o) { |
| 4339 buildCounterManagedInstanceLastAttemptErrors++; | 4339 buildCounterManagedInstanceLastAttemptErrors++; |
| 4340 if (buildCounterManagedInstanceLastAttemptErrors < 3) { | 4340 if (buildCounterManagedInstanceLastAttemptErrors < 3) { |
| 4341 checkUnnamed2070(o.errors); | 4341 checkUnnamed2164(o.errors); |
| 4342 } | 4342 } |
| 4343 buildCounterManagedInstanceLastAttemptErrors--; | 4343 buildCounterManagedInstanceLastAttemptErrors--; |
| 4344 } | 4344 } |
| 4345 | 4345 |
| 4346 core.int buildCounterManagedInstanceLastAttempt = 0; | 4346 core.int buildCounterManagedInstanceLastAttempt = 0; |
| 4347 buildManagedInstanceLastAttempt() { | 4347 buildManagedInstanceLastAttempt() { |
| 4348 var o = new api.ManagedInstanceLastAttempt(); | 4348 var o = new api.ManagedInstanceLastAttempt(); |
| 4349 buildCounterManagedInstanceLastAttempt++; | 4349 buildCounterManagedInstanceLastAttempt++; |
| 4350 if (buildCounterManagedInstanceLastAttempt < 3) { | 4350 if (buildCounterManagedInstanceLastAttempt < 3) { |
| 4351 o.errors = buildManagedInstanceLastAttemptErrors(); | 4351 o.errors = buildManagedInstanceLastAttemptErrors(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 4376 | 4376 |
| 4377 checkMetadataItems(api.MetadataItems o) { | 4377 checkMetadataItems(api.MetadataItems o) { |
| 4378 buildCounterMetadataItems++; | 4378 buildCounterMetadataItems++; |
| 4379 if (buildCounterMetadataItems < 3) { | 4379 if (buildCounterMetadataItems < 3) { |
| 4380 unittest.expect(o.key, unittest.equals('foo')); | 4380 unittest.expect(o.key, unittest.equals('foo')); |
| 4381 unittest.expect(o.value, unittest.equals('foo')); | 4381 unittest.expect(o.value, unittest.equals('foo')); |
| 4382 } | 4382 } |
| 4383 buildCounterMetadataItems--; | 4383 buildCounterMetadataItems--; |
| 4384 } | 4384 } |
| 4385 | 4385 |
| 4386 buildUnnamed2071() { | 4386 buildUnnamed2165() { |
| 4387 var o = new core.List<api.MetadataItems>(); | 4387 var o = new core.List<api.MetadataItems>(); |
| 4388 o.add(buildMetadataItems()); | 4388 o.add(buildMetadataItems()); |
| 4389 o.add(buildMetadataItems()); | 4389 o.add(buildMetadataItems()); |
| 4390 return o; | 4390 return o; |
| 4391 } | 4391 } |
| 4392 | 4392 |
| 4393 checkUnnamed2071(core.List<api.MetadataItems> o) { | 4393 checkUnnamed2165(core.List<api.MetadataItems> o) { |
| 4394 unittest.expect(o, unittest.hasLength(2)); | 4394 unittest.expect(o, unittest.hasLength(2)); |
| 4395 checkMetadataItems(o[0]); | 4395 checkMetadataItems(o[0]); |
| 4396 checkMetadataItems(o[1]); | 4396 checkMetadataItems(o[1]); |
| 4397 } | 4397 } |
| 4398 | 4398 |
| 4399 core.int buildCounterMetadata = 0; | 4399 core.int buildCounterMetadata = 0; |
| 4400 buildMetadata() { | 4400 buildMetadata() { |
| 4401 var o = new api.Metadata(); | 4401 var o = new api.Metadata(); |
| 4402 buildCounterMetadata++; | 4402 buildCounterMetadata++; |
| 4403 if (buildCounterMetadata < 3) { | 4403 if (buildCounterMetadata < 3) { |
| 4404 o.fingerprint = "foo"; | 4404 o.fingerprint = "foo"; |
| 4405 o.items = buildUnnamed2071(); | 4405 o.items = buildUnnamed2165(); |
| 4406 o.kind = "foo"; | 4406 o.kind = "foo"; |
| 4407 } | 4407 } |
| 4408 buildCounterMetadata--; | 4408 buildCounterMetadata--; |
| 4409 return o; | 4409 return o; |
| 4410 } | 4410 } |
| 4411 | 4411 |
| 4412 checkMetadata(api.Metadata o) { | 4412 checkMetadata(api.Metadata o) { |
| 4413 buildCounterMetadata++; | 4413 buildCounterMetadata++; |
| 4414 if (buildCounterMetadata < 3) { | 4414 if (buildCounterMetadata < 3) { |
| 4415 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4415 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4416 checkUnnamed2071(o.items); | 4416 checkUnnamed2165(o.items); |
| 4417 unittest.expect(o.kind, unittest.equals('foo')); | 4417 unittest.expect(o.kind, unittest.equals('foo')); |
| 4418 } | 4418 } |
| 4419 buildCounterMetadata--; | 4419 buildCounterMetadata--; |
| 4420 } | 4420 } |
| 4421 | 4421 |
| 4422 core.int buildCounterNamedPort = 0; | 4422 core.int buildCounterNamedPort = 0; |
| 4423 buildNamedPort() { | 4423 buildNamedPort() { |
| 4424 var o = new api.NamedPort(); | 4424 var o = new api.NamedPort(); |
| 4425 buildCounterNamedPort++; | 4425 buildCounterNamedPort++; |
| 4426 if (buildCounterNamedPort < 3) { | 4426 if (buildCounterNamedPort < 3) { |
| 4427 o.name = "foo"; | 4427 o.name = "foo"; |
| 4428 o.port = 42; | 4428 o.port = 42; |
| 4429 } | 4429 } |
| 4430 buildCounterNamedPort--; | 4430 buildCounterNamedPort--; |
| 4431 return o; | 4431 return o; |
| 4432 } | 4432 } |
| 4433 | 4433 |
| 4434 checkNamedPort(api.NamedPort o) { | 4434 checkNamedPort(api.NamedPort o) { |
| 4435 buildCounterNamedPort++; | 4435 buildCounterNamedPort++; |
| 4436 if (buildCounterNamedPort < 3) { | 4436 if (buildCounterNamedPort < 3) { |
| 4437 unittest.expect(o.name, unittest.equals('foo')); | 4437 unittest.expect(o.name, unittest.equals('foo')); |
| 4438 unittest.expect(o.port, unittest.equals(42)); | 4438 unittest.expect(o.port, unittest.equals(42)); |
| 4439 } | 4439 } |
| 4440 buildCounterNamedPort--; | 4440 buildCounterNamedPort--; |
| 4441 } | 4441 } |
| 4442 | 4442 |
| 4443 buildUnnamed2072() { | 4443 buildUnnamed2166() { |
| 4444 var o = new core.List<core.String>(); | 4444 var o = new core.List<core.String>(); |
| 4445 o.add("foo"); | 4445 o.add("foo"); |
| 4446 o.add("foo"); | 4446 o.add("foo"); |
| 4447 return o; | 4447 return o; |
| 4448 } | 4448 } |
| 4449 | 4449 |
| 4450 checkUnnamed2072(core.List<core.String> o) { | 4450 checkUnnamed2166(core.List<core.String> o) { |
| 4451 unittest.expect(o, unittest.hasLength(2)); | 4451 unittest.expect(o, unittest.hasLength(2)); |
| 4452 unittest.expect(o[0], unittest.equals('foo')); | 4452 unittest.expect(o[0], unittest.equals('foo')); |
| 4453 unittest.expect(o[1], unittest.equals('foo')); | 4453 unittest.expect(o[1], unittest.equals('foo')); |
| 4454 } | 4454 } |
| 4455 | 4455 |
| 4456 core.int buildCounterNetwork = 0; | 4456 core.int buildCounterNetwork = 0; |
| 4457 buildNetwork() { | 4457 buildNetwork() { |
| 4458 var o = new api.Network(); | 4458 var o = new api.Network(); |
| 4459 buildCounterNetwork++; | 4459 buildCounterNetwork++; |
| 4460 if (buildCounterNetwork < 3) { | 4460 if (buildCounterNetwork < 3) { |
| 4461 o.IPv4Range = "foo"; | 4461 o.IPv4Range = "foo"; |
| 4462 o.autoCreateSubnetworks = true; | 4462 o.autoCreateSubnetworks = true; |
| 4463 o.creationTimestamp = "foo"; | 4463 o.creationTimestamp = "foo"; |
| 4464 o.description = "foo"; | 4464 o.description = "foo"; |
| 4465 o.gatewayIPv4 = "foo"; | 4465 o.gatewayIPv4 = "foo"; |
| 4466 o.id = "foo"; | 4466 o.id = "foo"; |
| 4467 o.kind = "foo"; | 4467 o.kind = "foo"; |
| 4468 o.name = "foo"; | 4468 o.name = "foo"; |
| 4469 o.selfLink = "foo"; | 4469 o.selfLink = "foo"; |
| 4470 o.subnetworks = buildUnnamed2072(); | 4470 o.subnetworks = buildUnnamed2166(); |
| 4471 } | 4471 } |
| 4472 buildCounterNetwork--; | 4472 buildCounterNetwork--; |
| 4473 return o; | 4473 return o; |
| 4474 } | 4474 } |
| 4475 | 4475 |
| 4476 checkNetwork(api.Network o) { | 4476 checkNetwork(api.Network o) { |
| 4477 buildCounterNetwork++; | 4477 buildCounterNetwork++; |
| 4478 if (buildCounterNetwork < 3) { | 4478 if (buildCounterNetwork < 3) { |
| 4479 unittest.expect(o.IPv4Range, unittest.equals('foo')); | 4479 unittest.expect(o.IPv4Range, unittest.equals('foo')); |
| 4480 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); | 4480 unittest.expect(o.autoCreateSubnetworks, unittest.isTrue); |
| 4481 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4481 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4482 unittest.expect(o.description, unittest.equals('foo')); | 4482 unittest.expect(o.description, unittest.equals('foo')); |
| 4483 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 4483 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 4484 unittest.expect(o.id, unittest.equals('foo')); | 4484 unittest.expect(o.id, unittest.equals('foo')); |
| 4485 unittest.expect(o.kind, unittest.equals('foo')); | 4485 unittest.expect(o.kind, unittest.equals('foo')); |
| 4486 unittest.expect(o.name, unittest.equals('foo')); | 4486 unittest.expect(o.name, unittest.equals('foo')); |
| 4487 unittest.expect(o.selfLink, unittest.equals('foo')); | 4487 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4488 checkUnnamed2072(o.subnetworks); | 4488 checkUnnamed2166(o.subnetworks); |
| 4489 } | 4489 } |
| 4490 buildCounterNetwork--; | 4490 buildCounterNetwork--; |
| 4491 } | 4491 } |
| 4492 | 4492 |
| 4493 buildUnnamed2073() { | 4493 buildUnnamed2167() { |
| 4494 var o = new core.List<api.AccessConfig>(); | 4494 var o = new core.List<api.AccessConfig>(); |
| 4495 o.add(buildAccessConfig()); | 4495 o.add(buildAccessConfig()); |
| 4496 o.add(buildAccessConfig()); | 4496 o.add(buildAccessConfig()); |
| 4497 return o; | 4497 return o; |
| 4498 } | 4498 } |
| 4499 | 4499 |
| 4500 checkUnnamed2073(core.List<api.AccessConfig> o) { | 4500 checkUnnamed2167(core.List<api.AccessConfig> o) { |
| 4501 unittest.expect(o, unittest.hasLength(2)); | 4501 unittest.expect(o, unittest.hasLength(2)); |
| 4502 checkAccessConfig(o[0]); | 4502 checkAccessConfig(o[0]); |
| 4503 checkAccessConfig(o[1]); | 4503 checkAccessConfig(o[1]); |
| 4504 } | 4504 } |
| 4505 | 4505 |
| 4506 core.int buildCounterNetworkInterface = 0; | 4506 core.int buildCounterNetworkInterface = 0; |
| 4507 buildNetworkInterface() { | 4507 buildNetworkInterface() { |
| 4508 var o = new api.NetworkInterface(); | 4508 var o = new api.NetworkInterface(); |
| 4509 buildCounterNetworkInterface++; | 4509 buildCounterNetworkInterface++; |
| 4510 if (buildCounterNetworkInterface < 3) { | 4510 if (buildCounterNetworkInterface < 3) { |
| 4511 o.accessConfigs = buildUnnamed2073(); | 4511 o.accessConfigs = buildUnnamed2167(); |
| 4512 o.kind = "foo"; | 4512 o.kind = "foo"; |
| 4513 o.name = "foo"; | 4513 o.name = "foo"; |
| 4514 o.network = "foo"; | 4514 o.network = "foo"; |
| 4515 o.networkIP = "foo"; | 4515 o.networkIP = "foo"; |
| 4516 o.subnetwork = "foo"; | 4516 o.subnetwork = "foo"; |
| 4517 } | 4517 } |
| 4518 buildCounterNetworkInterface--; | 4518 buildCounterNetworkInterface--; |
| 4519 return o; | 4519 return o; |
| 4520 } | 4520 } |
| 4521 | 4521 |
| 4522 checkNetworkInterface(api.NetworkInterface o) { | 4522 checkNetworkInterface(api.NetworkInterface o) { |
| 4523 buildCounterNetworkInterface++; | 4523 buildCounterNetworkInterface++; |
| 4524 if (buildCounterNetworkInterface < 3) { | 4524 if (buildCounterNetworkInterface < 3) { |
| 4525 checkUnnamed2073(o.accessConfigs); | 4525 checkUnnamed2167(o.accessConfigs); |
| 4526 unittest.expect(o.kind, unittest.equals('foo')); | 4526 unittest.expect(o.kind, unittest.equals('foo')); |
| 4527 unittest.expect(o.name, unittest.equals('foo')); | 4527 unittest.expect(o.name, unittest.equals('foo')); |
| 4528 unittest.expect(o.network, unittest.equals('foo')); | 4528 unittest.expect(o.network, unittest.equals('foo')); |
| 4529 unittest.expect(o.networkIP, unittest.equals('foo')); | 4529 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 4530 unittest.expect(o.subnetwork, unittest.equals('foo')); | 4530 unittest.expect(o.subnetwork, unittest.equals('foo')); |
| 4531 } | 4531 } |
| 4532 buildCounterNetworkInterface--; | 4532 buildCounterNetworkInterface--; |
| 4533 } | 4533 } |
| 4534 | 4534 |
| 4535 buildUnnamed2074() { | 4535 buildUnnamed2168() { |
| 4536 var o = new core.List<api.Network>(); | 4536 var o = new core.List<api.Network>(); |
| 4537 o.add(buildNetwork()); | 4537 o.add(buildNetwork()); |
| 4538 o.add(buildNetwork()); | 4538 o.add(buildNetwork()); |
| 4539 return o; | 4539 return o; |
| 4540 } | 4540 } |
| 4541 | 4541 |
| 4542 checkUnnamed2074(core.List<api.Network> o) { | 4542 checkUnnamed2168(core.List<api.Network> o) { |
| 4543 unittest.expect(o, unittest.hasLength(2)); | 4543 unittest.expect(o, unittest.hasLength(2)); |
| 4544 checkNetwork(o[0]); | 4544 checkNetwork(o[0]); |
| 4545 checkNetwork(o[1]); | 4545 checkNetwork(o[1]); |
| 4546 } | 4546 } |
| 4547 | 4547 |
| 4548 core.int buildCounterNetworkList = 0; | 4548 core.int buildCounterNetworkList = 0; |
| 4549 buildNetworkList() { | 4549 buildNetworkList() { |
| 4550 var o = new api.NetworkList(); | 4550 var o = new api.NetworkList(); |
| 4551 buildCounterNetworkList++; | 4551 buildCounterNetworkList++; |
| 4552 if (buildCounterNetworkList < 3) { | 4552 if (buildCounterNetworkList < 3) { |
| 4553 o.id = "foo"; | 4553 o.id = "foo"; |
| 4554 o.items = buildUnnamed2074(); | 4554 o.items = buildUnnamed2168(); |
| 4555 o.kind = "foo"; | 4555 o.kind = "foo"; |
| 4556 o.nextPageToken = "foo"; | 4556 o.nextPageToken = "foo"; |
| 4557 o.selfLink = "foo"; | 4557 o.selfLink = "foo"; |
| 4558 } | 4558 } |
| 4559 buildCounterNetworkList--; | 4559 buildCounterNetworkList--; |
| 4560 return o; | 4560 return o; |
| 4561 } | 4561 } |
| 4562 | 4562 |
| 4563 checkNetworkList(api.NetworkList o) { | 4563 checkNetworkList(api.NetworkList o) { |
| 4564 buildCounterNetworkList++; | 4564 buildCounterNetworkList++; |
| 4565 if (buildCounterNetworkList < 3) { | 4565 if (buildCounterNetworkList < 3) { |
| 4566 unittest.expect(o.id, unittest.equals('foo')); | 4566 unittest.expect(o.id, unittest.equals('foo')); |
| 4567 checkUnnamed2074(o.items); | 4567 checkUnnamed2168(o.items); |
| 4568 unittest.expect(o.kind, unittest.equals('foo')); | 4568 unittest.expect(o.kind, unittest.equals('foo')); |
| 4569 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4569 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4570 unittest.expect(o.selfLink, unittest.equals('foo')); | 4570 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4571 } | 4571 } |
| 4572 buildCounterNetworkList--; | 4572 buildCounterNetworkList--; |
| 4573 } | 4573 } |
| 4574 | 4574 |
| 4575 core.int buildCounterOperationErrorErrors = 0; | 4575 core.int buildCounterOperationErrorErrors = 0; |
| 4576 buildOperationErrorErrors() { | 4576 buildOperationErrorErrors() { |
| 4577 var o = new api.OperationErrorErrors(); | 4577 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4588 checkOperationErrorErrors(api.OperationErrorErrors o) { | 4588 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 4589 buildCounterOperationErrorErrors++; | 4589 buildCounterOperationErrorErrors++; |
| 4590 if (buildCounterOperationErrorErrors < 3) { | 4590 if (buildCounterOperationErrorErrors < 3) { |
| 4591 unittest.expect(o.code, unittest.equals('foo')); | 4591 unittest.expect(o.code, unittest.equals('foo')); |
| 4592 unittest.expect(o.location, unittest.equals('foo')); | 4592 unittest.expect(o.location, unittest.equals('foo')); |
| 4593 unittest.expect(o.message, unittest.equals('foo')); | 4593 unittest.expect(o.message, unittest.equals('foo')); |
| 4594 } | 4594 } |
| 4595 buildCounterOperationErrorErrors--; | 4595 buildCounterOperationErrorErrors--; |
| 4596 } | 4596 } |
| 4597 | 4597 |
| 4598 buildUnnamed2075() { | 4598 buildUnnamed2169() { |
| 4599 var o = new core.List<api.OperationErrorErrors>(); | 4599 var o = new core.List<api.OperationErrorErrors>(); |
| 4600 o.add(buildOperationErrorErrors()); | 4600 o.add(buildOperationErrorErrors()); |
| 4601 o.add(buildOperationErrorErrors()); | 4601 o.add(buildOperationErrorErrors()); |
| 4602 return o; | 4602 return o; |
| 4603 } | 4603 } |
| 4604 | 4604 |
| 4605 checkUnnamed2075(core.List<api.OperationErrorErrors> o) { | 4605 checkUnnamed2169(core.List<api.OperationErrorErrors> o) { |
| 4606 unittest.expect(o, unittest.hasLength(2)); | 4606 unittest.expect(o, unittest.hasLength(2)); |
| 4607 checkOperationErrorErrors(o[0]); | 4607 checkOperationErrorErrors(o[0]); |
| 4608 checkOperationErrorErrors(o[1]); | 4608 checkOperationErrorErrors(o[1]); |
| 4609 } | 4609 } |
| 4610 | 4610 |
| 4611 core.int buildCounterOperationError = 0; | 4611 core.int buildCounterOperationError = 0; |
| 4612 buildOperationError() { | 4612 buildOperationError() { |
| 4613 var o = new api.OperationError(); | 4613 var o = new api.OperationError(); |
| 4614 buildCounterOperationError++; | 4614 buildCounterOperationError++; |
| 4615 if (buildCounterOperationError < 3) { | 4615 if (buildCounterOperationError < 3) { |
| 4616 o.errors = buildUnnamed2075(); | 4616 o.errors = buildUnnamed2169(); |
| 4617 } | 4617 } |
| 4618 buildCounterOperationError--; | 4618 buildCounterOperationError--; |
| 4619 return o; | 4619 return o; |
| 4620 } | 4620 } |
| 4621 | 4621 |
| 4622 checkOperationError(api.OperationError o) { | 4622 checkOperationError(api.OperationError o) { |
| 4623 buildCounterOperationError++; | 4623 buildCounterOperationError++; |
| 4624 if (buildCounterOperationError < 3) { | 4624 if (buildCounterOperationError < 3) { |
| 4625 checkUnnamed2075(o.errors); | 4625 checkUnnamed2169(o.errors); |
| 4626 } | 4626 } |
| 4627 buildCounterOperationError--; | 4627 buildCounterOperationError--; |
| 4628 } | 4628 } |
| 4629 | 4629 |
| 4630 core.int buildCounterOperationWarningsData = 0; | 4630 core.int buildCounterOperationWarningsData = 0; |
| 4631 buildOperationWarningsData() { | 4631 buildOperationWarningsData() { |
| 4632 var o = new api.OperationWarningsData(); | 4632 var o = new api.OperationWarningsData(); |
| 4633 buildCounterOperationWarningsData++; | 4633 buildCounterOperationWarningsData++; |
| 4634 if (buildCounterOperationWarningsData < 3) { | 4634 if (buildCounterOperationWarningsData < 3) { |
| 4635 o.key = "foo"; | 4635 o.key = "foo"; |
| 4636 o.value = "foo"; | 4636 o.value = "foo"; |
| 4637 } | 4637 } |
| 4638 buildCounterOperationWarningsData--; | 4638 buildCounterOperationWarningsData--; |
| 4639 return o; | 4639 return o; |
| 4640 } | 4640 } |
| 4641 | 4641 |
| 4642 checkOperationWarningsData(api.OperationWarningsData o) { | 4642 checkOperationWarningsData(api.OperationWarningsData o) { |
| 4643 buildCounterOperationWarningsData++; | 4643 buildCounterOperationWarningsData++; |
| 4644 if (buildCounterOperationWarningsData < 3) { | 4644 if (buildCounterOperationWarningsData < 3) { |
| 4645 unittest.expect(o.key, unittest.equals('foo')); | 4645 unittest.expect(o.key, unittest.equals('foo')); |
| 4646 unittest.expect(o.value, unittest.equals('foo')); | 4646 unittest.expect(o.value, unittest.equals('foo')); |
| 4647 } | 4647 } |
| 4648 buildCounterOperationWarningsData--; | 4648 buildCounterOperationWarningsData--; |
| 4649 } | 4649 } |
| 4650 | 4650 |
| 4651 buildUnnamed2076() { | 4651 buildUnnamed2170() { |
| 4652 var o = new core.List<api.OperationWarningsData>(); | 4652 var o = new core.List<api.OperationWarningsData>(); |
| 4653 o.add(buildOperationWarningsData()); | 4653 o.add(buildOperationWarningsData()); |
| 4654 o.add(buildOperationWarningsData()); | 4654 o.add(buildOperationWarningsData()); |
| 4655 return o; | 4655 return o; |
| 4656 } | 4656 } |
| 4657 | 4657 |
| 4658 checkUnnamed2076(core.List<api.OperationWarningsData> o) { | 4658 checkUnnamed2170(core.List<api.OperationWarningsData> o) { |
| 4659 unittest.expect(o, unittest.hasLength(2)); | 4659 unittest.expect(o, unittest.hasLength(2)); |
| 4660 checkOperationWarningsData(o[0]); | 4660 checkOperationWarningsData(o[0]); |
| 4661 checkOperationWarningsData(o[1]); | 4661 checkOperationWarningsData(o[1]); |
| 4662 } | 4662 } |
| 4663 | 4663 |
| 4664 core.int buildCounterOperationWarnings = 0; | 4664 core.int buildCounterOperationWarnings = 0; |
| 4665 buildOperationWarnings() { | 4665 buildOperationWarnings() { |
| 4666 var o = new api.OperationWarnings(); | 4666 var o = new api.OperationWarnings(); |
| 4667 buildCounterOperationWarnings++; | 4667 buildCounterOperationWarnings++; |
| 4668 if (buildCounterOperationWarnings < 3) { | 4668 if (buildCounterOperationWarnings < 3) { |
| 4669 o.code = "foo"; | 4669 o.code = "foo"; |
| 4670 o.data = buildUnnamed2076(); | 4670 o.data = buildUnnamed2170(); |
| 4671 o.message = "foo"; | 4671 o.message = "foo"; |
| 4672 } | 4672 } |
| 4673 buildCounterOperationWarnings--; | 4673 buildCounterOperationWarnings--; |
| 4674 return o; | 4674 return o; |
| 4675 } | 4675 } |
| 4676 | 4676 |
| 4677 checkOperationWarnings(api.OperationWarnings o) { | 4677 checkOperationWarnings(api.OperationWarnings o) { |
| 4678 buildCounterOperationWarnings++; | 4678 buildCounterOperationWarnings++; |
| 4679 if (buildCounterOperationWarnings < 3) { | 4679 if (buildCounterOperationWarnings < 3) { |
| 4680 unittest.expect(o.code, unittest.equals('foo')); | 4680 unittest.expect(o.code, unittest.equals('foo')); |
| 4681 checkUnnamed2076(o.data); | 4681 checkUnnamed2170(o.data); |
| 4682 unittest.expect(o.message, unittest.equals('foo')); | 4682 unittest.expect(o.message, unittest.equals('foo')); |
| 4683 } | 4683 } |
| 4684 buildCounterOperationWarnings--; | 4684 buildCounterOperationWarnings--; |
| 4685 } | 4685 } |
| 4686 | 4686 |
| 4687 buildUnnamed2077() { | 4687 buildUnnamed2171() { |
| 4688 var o = new core.List<api.OperationWarnings>(); | 4688 var o = new core.List<api.OperationWarnings>(); |
| 4689 o.add(buildOperationWarnings()); | 4689 o.add(buildOperationWarnings()); |
| 4690 o.add(buildOperationWarnings()); | 4690 o.add(buildOperationWarnings()); |
| 4691 return o; | 4691 return o; |
| 4692 } | 4692 } |
| 4693 | 4693 |
| 4694 checkUnnamed2077(core.List<api.OperationWarnings> o) { | 4694 checkUnnamed2171(core.List<api.OperationWarnings> o) { |
| 4695 unittest.expect(o, unittest.hasLength(2)); | 4695 unittest.expect(o, unittest.hasLength(2)); |
| 4696 checkOperationWarnings(o[0]); | 4696 checkOperationWarnings(o[0]); |
| 4697 checkOperationWarnings(o[1]); | 4697 checkOperationWarnings(o[1]); |
| 4698 } | 4698 } |
| 4699 | 4699 |
| 4700 core.int buildCounterOperation = 0; | 4700 core.int buildCounterOperation = 0; |
| 4701 buildOperation() { | 4701 buildOperation() { |
| 4702 var o = new api.Operation(); | 4702 var o = new api.Operation(); |
| 4703 buildCounterOperation++; | 4703 buildCounterOperation++; |
| 4704 if (buildCounterOperation < 3) { | 4704 if (buildCounterOperation < 3) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4716 o.operationType = "foo"; | 4716 o.operationType = "foo"; |
| 4717 o.progress = 42; | 4717 o.progress = 42; |
| 4718 o.region = "foo"; | 4718 o.region = "foo"; |
| 4719 o.selfLink = "foo"; | 4719 o.selfLink = "foo"; |
| 4720 o.startTime = "foo"; | 4720 o.startTime = "foo"; |
| 4721 o.status = "foo"; | 4721 o.status = "foo"; |
| 4722 o.statusMessage = "foo"; | 4722 o.statusMessage = "foo"; |
| 4723 o.targetId = "foo"; | 4723 o.targetId = "foo"; |
| 4724 o.targetLink = "foo"; | 4724 o.targetLink = "foo"; |
| 4725 o.user = "foo"; | 4725 o.user = "foo"; |
| 4726 o.warnings = buildUnnamed2077(); | 4726 o.warnings = buildUnnamed2171(); |
| 4727 o.zone = "foo"; | 4727 o.zone = "foo"; |
| 4728 } | 4728 } |
| 4729 buildCounterOperation--; | 4729 buildCounterOperation--; |
| 4730 return o; | 4730 return o; |
| 4731 } | 4731 } |
| 4732 | 4732 |
| 4733 checkOperation(api.Operation o) { | 4733 checkOperation(api.Operation o) { |
| 4734 buildCounterOperation++; | 4734 buildCounterOperation++; |
| 4735 if (buildCounterOperation < 3) { | 4735 if (buildCounterOperation < 3) { |
| 4736 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 4736 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4747 unittest.expect(o.operationType, unittest.equals('foo')); | 4747 unittest.expect(o.operationType, unittest.equals('foo')); |
| 4748 unittest.expect(o.progress, unittest.equals(42)); | 4748 unittest.expect(o.progress, unittest.equals(42)); |
| 4749 unittest.expect(o.region, unittest.equals('foo')); | 4749 unittest.expect(o.region, unittest.equals('foo')); |
| 4750 unittest.expect(o.selfLink, unittest.equals('foo')); | 4750 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4751 unittest.expect(o.startTime, unittest.equals('foo')); | 4751 unittest.expect(o.startTime, unittest.equals('foo')); |
| 4752 unittest.expect(o.status, unittest.equals('foo')); | 4752 unittest.expect(o.status, unittest.equals('foo')); |
| 4753 unittest.expect(o.statusMessage, unittest.equals('foo')); | 4753 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 4754 unittest.expect(o.targetId, unittest.equals('foo')); | 4754 unittest.expect(o.targetId, unittest.equals('foo')); |
| 4755 unittest.expect(o.targetLink, unittest.equals('foo')); | 4755 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 4756 unittest.expect(o.user, unittest.equals('foo')); | 4756 unittest.expect(o.user, unittest.equals('foo')); |
| 4757 checkUnnamed2077(o.warnings); | 4757 checkUnnamed2171(o.warnings); |
| 4758 unittest.expect(o.zone, unittest.equals('foo')); | 4758 unittest.expect(o.zone, unittest.equals('foo')); |
| 4759 } | 4759 } |
| 4760 buildCounterOperation--; | 4760 buildCounterOperation--; |
| 4761 } | 4761 } |
| 4762 | 4762 |
| 4763 buildUnnamed2078() { | 4763 buildUnnamed2172() { |
| 4764 var o = new core.Map<core.String, api.OperationsScopedList>(); | 4764 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 4765 o["x"] = buildOperationsScopedList(); | 4765 o["x"] = buildOperationsScopedList(); |
| 4766 o["y"] = buildOperationsScopedList(); | 4766 o["y"] = buildOperationsScopedList(); |
| 4767 return o; | 4767 return o; |
| 4768 } | 4768 } |
| 4769 | 4769 |
| 4770 checkUnnamed2078(core.Map<core.String, api.OperationsScopedList> o) { | 4770 checkUnnamed2172(core.Map<core.String, api.OperationsScopedList> o) { |
| 4771 unittest.expect(o, unittest.hasLength(2)); | 4771 unittest.expect(o, unittest.hasLength(2)); |
| 4772 checkOperationsScopedList(o["x"]); | 4772 checkOperationsScopedList(o["x"]); |
| 4773 checkOperationsScopedList(o["y"]); | 4773 checkOperationsScopedList(o["y"]); |
| 4774 } | 4774 } |
| 4775 | 4775 |
| 4776 core.int buildCounterOperationAggregatedList = 0; | 4776 core.int buildCounterOperationAggregatedList = 0; |
| 4777 buildOperationAggregatedList() { | 4777 buildOperationAggregatedList() { |
| 4778 var o = new api.OperationAggregatedList(); | 4778 var o = new api.OperationAggregatedList(); |
| 4779 buildCounterOperationAggregatedList++; | 4779 buildCounterOperationAggregatedList++; |
| 4780 if (buildCounterOperationAggregatedList < 3) { | 4780 if (buildCounterOperationAggregatedList < 3) { |
| 4781 o.id = "foo"; | 4781 o.id = "foo"; |
| 4782 o.items = buildUnnamed2078(); | 4782 o.items = buildUnnamed2172(); |
| 4783 o.kind = "foo"; | 4783 o.kind = "foo"; |
| 4784 o.nextPageToken = "foo"; | 4784 o.nextPageToken = "foo"; |
| 4785 o.selfLink = "foo"; | 4785 o.selfLink = "foo"; |
| 4786 } | 4786 } |
| 4787 buildCounterOperationAggregatedList--; | 4787 buildCounterOperationAggregatedList--; |
| 4788 return o; | 4788 return o; |
| 4789 } | 4789 } |
| 4790 | 4790 |
| 4791 checkOperationAggregatedList(api.OperationAggregatedList o) { | 4791 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 4792 buildCounterOperationAggregatedList++; | 4792 buildCounterOperationAggregatedList++; |
| 4793 if (buildCounterOperationAggregatedList < 3) { | 4793 if (buildCounterOperationAggregatedList < 3) { |
| 4794 unittest.expect(o.id, unittest.equals('foo')); | 4794 unittest.expect(o.id, unittest.equals('foo')); |
| 4795 checkUnnamed2078(o.items); | 4795 checkUnnamed2172(o.items); |
| 4796 unittest.expect(o.kind, unittest.equals('foo')); | 4796 unittest.expect(o.kind, unittest.equals('foo')); |
| 4797 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4797 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4798 unittest.expect(o.selfLink, unittest.equals('foo')); | 4798 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4799 } | 4799 } |
| 4800 buildCounterOperationAggregatedList--; | 4800 buildCounterOperationAggregatedList--; |
| 4801 } | 4801 } |
| 4802 | 4802 |
| 4803 buildUnnamed2079() { | 4803 buildUnnamed2173() { |
| 4804 var o = new core.List<api.Operation>(); | 4804 var o = new core.List<api.Operation>(); |
| 4805 o.add(buildOperation()); | 4805 o.add(buildOperation()); |
| 4806 o.add(buildOperation()); | 4806 o.add(buildOperation()); |
| 4807 return o; | 4807 return o; |
| 4808 } | 4808 } |
| 4809 | 4809 |
| 4810 checkUnnamed2079(core.List<api.Operation> o) { | 4810 checkUnnamed2173(core.List<api.Operation> o) { |
| 4811 unittest.expect(o, unittest.hasLength(2)); | 4811 unittest.expect(o, unittest.hasLength(2)); |
| 4812 checkOperation(o[0]); | 4812 checkOperation(o[0]); |
| 4813 checkOperation(o[1]); | 4813 checkOperation(o[1]); |
| 4814 } | 4814 } |
| 4815 | 4815 |
| 4816 core.int buildCounterOperationList = 0; | 4816 core.int buildCounterOperationList = 0; |
| 4817 buildOperationList() { | 4817 buildOperationList() { |
| 4818 var o = new api.OperationList(); | 4818 var o = new api.OperationList(); |
| 4819 buildCounterOperationList++; | 4819 buildCounterOperationList++; |
| 4820 if (buildCounterOperationList < 3) { | 4820 if (buildCounterOperationList < 3) { |
| 4821 o.id = "foo"; | 4821 o.id = "foo"; |
| 4822 o.items = buildUnnamed2079(); | 4822 o.items = buildUnnamed2173(); |
| 4823 o.kind = "foo"; | 4823 o.kind = "foo"; |
| 4824 o.nextPageToken = "foo"; | 4824 o.nextPageToken = "foo"; |
| 4825 o.selfLink = "foo"; | 4825 o.selfLink = "foo"; |
| 4826 } | 4826 } |
| 4827 buildCounterOperationList--; | 4827 buildCounterOperationList--; |
| 4828 return o; | 4828 return o; |
| 4829 } | 4829 } |
| 4830 | 4830 |
| 4831 checkOperationList(api.OperationList o) { | 4831 checkOperationList(api.OperationList o) { |
| 4832 buildCounterOperationList++; | 4832 buildCounterOperationList++; |
| 4833 if (buildCounterOperationList < 3) { | 4833 if (buildCounterOperationList < 3) { |
| 4834 unittest.expect(o.id, unittest.equals('foo')); | 4834 unittest.expect(o.id, unittest.equals('foo')); |
| 4835 checkUnnamed2079(o.items); | 4835 checkUnnamed2173(o.items); |
| 4836 unittest.expect(o.kind, unittest.equals('foo')); | 4836 unittest.expect(o.kind, unittest.equals('foo')); |
| 4837 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4837 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4838 unittest.expect(o.selfLink, unittest.equals('foo')); | 4838 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4839 } | 4839 } |
| 4840 buildCounterOperationList--; | 4840 buildCounterOperationList--; |
| 4841 } | 4841 } |
| 4842 | 4842 |
| 4843 buildUnnamed2080() { | 4843 buildUnnamed2174() { |
| 4844 var o = new core.List<api.Operation>(); | 4844 var o = new core.List<api.Operation>(); |
| 4845 o.add(buildOperation()); | 4845 o.add(buildOperation()); |
| 4846 o.add(buildOperation()); | 4846 o.add(buildOperation()); |
| 4847 return o; | 4847 return o; |
| 4848 } | 4848 } |
| 4849 | 4849 |
| 4850 checkUnnamed2080(core.List<api.Operation> o) { | 4850 checkUnnamed2174(core.List<api.Operation> o) { |
| 4851 unittest.expect(o, unittest.hasLength(2)); | 4851 unittest.expect(o, unittest.hasLength(2)); |
| 4852 checkOperation(o[0]); | 4852 checkOperation(o[0]); |
| 4853 checkOperation(o[1]); | 4853 checkOperation(o[1]); |
| 4854 } | 4854 } |
| 4855 | 4855 |
| 4856 core.int buildCounterOperationsScopedListWarningData = 0; | 4856 core.int buildCounterOperationsScopedListWarningData = 0; |
| 4857 buildOperationsScopedListWarningData() { | 4857 buildOperationsScopedListWarningData() { |
| 4858 var o = new api.OperationsScopedListWarningData(); | 4858 var o = new api.OperationsScopedListWarningData(); |
| 4859 buildCounterOperationsScopedListWarningData++; | 4859 buildCounterOperationsScopedListWarningData++; |
| 4860 if (buildCounterOperationsScopedListWarningData < 3) { | 4860 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4861 o.key = "foo"; | 4861 o.key = "foo"; |
| 4862 o.value = "foo"; | 4862 o.value = "foo"; |
| 4863 } | 4863 } |
| 4864 buildCounterOperationsScopedListWarningData--; | 4864 buildCounterOperationsScopedListWarningData--; |
| 4865 return o; | 4865 return o; |
| 4866 } | 4866 } |
| 4867 | 4867 |
| 4868 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 4868 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 4869 buildCounterOperationsScopedListWarningData++; | 4869 buildCounterOperationsScopedListWarningData++; |
| 4870 if (buildCounterOperationsScopedListWarningData < 3) { | 4870 if (buildCounterOperationsScopedListWarningData < 3) { |
| 4871 unittest.expect(o.key, unittest.equals('foo')); | 4871 unittest.expect(o.key, unittest.equals('foo')); |
| 4872 unittest.expect(o.value, unittest.equals('foo')); | 4872 unittest.expect(o.value, unittest.equals('foo')); |
| 4873 } | 4873 } |
| 4874 buildCounterOperationsScopedListWarningData--; | 4874 buildCounterOperationsScopedListWarningData--; |
| 4875 } | 4875 } |
| 4876 | 4876 |
| 4877 buildUnnamed2081() { | 4877 buildUnnamed2175() { |
| 4878 var o = new core.List<api.OperationsScopedListWarningData>(); | 4878 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 4879 o.add(buildOperationsScopedListWarningData()); | 4879 o.add(buildOperationsScopedListWarningData()); |
| 4880 o.add(buildOperationsScopedListWarningData()); | 4880 o.add(buildOperationsScopedListWarningData()); |
| 4881 return o; | 4881 return o; |
| 4882 } | 4882 } |
| 4883 | 4883 |
| 4884 checkUnnamed2081(core.List<api.OperationsScopedListWarningData> o) { | 4884 checkUnnamed2175(core.List<api.OperationsScopedListWarningData> o) { |
| 4885 unittest.expect(o, unittest.hasLength(2)); | 4885 unittest.expect(o, unittest.hasLength(2)); |
| 4886 checkOperationsScopedListWarningData(o[0]); | 4886 checkOperationsScopedListWarningData(o[0]); |
| 4887 checkOperationsScopedListWarningData(o[1]); | 4887 checkOperationsScopedListWarningData(o[1]); |
| 4888 } | 4888 } |
| 4889 | 4889 |
| 4890 core.int buildCounterOperationsScopedListWarning = 0; | 4890 core.int buildCounterOperationsScopedListWarning = 0; |
| 4891 buildOperationsScopedListWarning() { | 4891 buildOperationsScopedListWarning() { |
| 4892 var o = new api.OperationsScopedListWarning(); | 4892 var o = new api.OperationsScopedListWarning(); |
| 4893 buildCounterOperationsScopedListWarning++; | 4893 buildCounterOperationsScopedListWarning++; |
| 4894 if (buildCounterOperationsScopedListWarning < 3) { | 4894 if (buildCounterOperationsScopedListWarning < 3) { |
| 4895 o.code = "foo"; | 4895 o.code = "foo"; |
| 4896 o.data = buildUnnamed2081(); | 4896 o.data = buildUnnamed2175(); |
| 4897 o.message = "foo"; | 4897 o.message = "foo"; |
| 4898 } | 4898 } |
| 4899 buildCounterOperationsScopedListWarning--; | 4899 buildCounterOperationsScopedListWarning--; |
| 4900 return o; | 4900 return o; |
| 4901 } | 4901 } |
| 4902 | 4902 |
| 4903 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 4903 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 4904 buildCounterOperationsScopedListWarning++; | 4904 buildCounterOperationsScopedListWarning++; |
| 4905 if (buildCounterOperationsScopedListWarning < 3) { | 4905 if (buildCounterOperationsScopedListWarning < 3) { |
| 4906 unittest.expect(o.code, unittest.equals('foo')); | 4906 unittest.expect(o.code, unittest.equals('foo')); |
| 4907 checkUnnamed2081(o.data); | 4907 checkUnnamed2175(o.data); |
| 4908 unittest.expect(o.message, unittest.equals('foo')); | 4908 unittest.expect(o.message, unittest.equals('foo')); |
| 4909 } | 4909 } |
| 4910 buildCounterOperationsScopedListWarning--; | 4910 buildCounterOperationsScopedListWarning--; |
| 4911 } | 4911 } |
| 4912 | 4912 |
| 4913 core.int buildCounterOperationsScopedList = 0; | 4913 core.int buildCounterOperationsScopedList = 0; |
| 4914 buildOperationsScopedList() { | 4914 buildOperationsScopedList() { |
| 4915 var o = new api.OperationsScopedList(); | 4915 var o = new api.OperationsScopedList(); |
| 4916 buildCounterOperationsScopedList++; | 4916 buildCounterOperationsScopedList++; |
| 4917 if (buildCounterOperationsScopedList < 3) { | 4917 if (buildCounterOperationsScopedList < 3) { |
| 4918 o.operations = buildUnnamed2080(); | 4918 o.operations = buildUnnamed2174(); |
| 4919 o.warning = buildOperationsScopedListWarning(); | 4919 o.warning = buildOperationsScopedListWarning(); |
| 4920 } | 4920 } |
| 4921 buildCounterOperationsScopedList--; | 4921 buildCounterOperationsScopedList--; |
| 4922 return o; | 4922 return o; |
| 4923 } | 4923 } |
| 4924 | 4924 |
| 4925 checkOperationsScopedList(api.OperationsScopedList o) { | 4925 checkOperationsScopedList(api.OperationsScopedList o) { |
| 4926 buildCounterOperationsScopedList++; | 4926 buildCounterOperationsScopedList++; |
| 4927 if (buildCounterOperationsScopedList < 3) { | 4927 if (buildCounterOperationsScopedList < 3) { |
| 4928 checkUnnamed2080(o.operations); | 4928 checkUnnamed2174(o.operations); |
| 4929 checkOperationsScopedListWarning(o.warning); | 4929 checkOperationsScopedListWarning(o.warning); |
| 4930 } | 4930 } |
| 4931 buildCounterOperationsScopedList--; | 4931 buildCounterOperationsScopedList--; |
| 4932 } | 4932 } |
| 4933 | 4933 |
| 4934 buildUnnamed2082() { | 4934 buildUnnamed2176() { |
| 4935 var o = new core.List<api.PathRule>(); | 4935 var o = new core.List<api.PathRule>(); |
| 4936 o.add(buildPathRule()); | 4936 o.add(buildPathRule()); |
| 4937 o.add(buildPathRule()); | 4937 o.add(buildPathRule()); |
| 4938 return o; | 4938 return o; |
| 4939 } | 4939 } |
| 4940 | 4940 |
| 4941 checkUnnamed2082(core.List<api.PathRule> o) { | 4941 checkUnnamed2176(core.List<api.PathRule> o) { |
| 4942 unittest.expect(o, unittest.hasLength(2)); | 4942 unittest.expect(o, unittest.hasLength(2)); |
| 4943 checkPathRule(o[0]); | 4943 checkPathRule(o[0]); |
| 4944 checkPathRule(o[1]); | 4944 checkPathRule(o[1]); |
| 4945 } | 4945 } |
| 4946 | 4946 |
| 4947 core.int buildCounterPathMatcher = 0; | 4947 core.int buildCounterPathMatcher = 0; |
| 4948 buildPathMatcher() { | 4948 buildPathMatcher() { |
| 4949 var o = new api.PathMatcher(); | 4949 var o = new api.PathMatcher(); |
| 4950 buildCounterPathMatcher++; | 4950 buildCounterPathMatcher++; |
| 4951 if (buildCounterPathMatcher < 3) { | 4951 if (buildCounterPathMatcher < 3) { |
| 4952 o.defaultService = "foo"; | 4952 o.defaultService = "foo"; |
| 4953 o.description = "foo"; | 4953 o.description = "foo"; |
| 4954 o.name = "foo"; | 4954 o.name = "foo"; |
| 4955 o.pathRules = buildUnnamed2082(); | 4955 o.pathRules = buildUnnamed2176(); |
| 4956 } | 4956 } |
| 4957 buildCounterPathMatcher--; | 4957 buildCounterPathMatcher--; |
| 4958 return o; | 4958 return o; |
| 4959 } | 4959 } |
| 4960 | 4960 |
| 4961 checkPathMatcher(api.PathMatcher o) { | 4961 checkPathMatcher(api.PathMatcher o) { |
| 4962 buildCounterPathMatcher++; | 4962 buildCounterPathMatcher++; |
| 4963 if (buildCounterPathMatcher < 3) { | 4963 if (buildCounterPathMatcher < 3) { |
| 4964 unittest.expect(o.defaultService, unittest.equals('foo')); | 4964 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4965 unittest.expect(o.description, unittest.equals('foo')); | 4965 unittest.expect(o.description, unittest.equals('foo')); |
| 4966 unittest.expect(o.name, unittest.equals('foo')); | 4966 unittest.expect(o.name, unittest.equals('foo')); |
| 4967 checkUnnamed2082(o.pathRules); | 4967 checkUnnamed2176(o.pathRules); |
| 4968 } | 4968 } |
| 4969 buildCounterPathMatcher--; | 4969 buildCounterPathMatcher--; |
| 4970 } | 4970 } |
| 4971 | 4971 |
| 4972 buildUnnamed2083() { | 4972 buildUnnamed2177() { |
| 4973 var o = new core.List<core.String>(); | 4973 var o = new core.List<core.String>(); |
| 4974 o.add("foo"); | 4974 o.add("foo"); |
| 4975 o.add("foo"); | 4975 o.add("foo"); |
| 4976 return o; | 4976 return o; |
| 4977 } | 4977 } |
| 4978 | 4978 |
| 4979 checkUnnamed2083(core.List<core.String> o) { | 4979 checkUnnamed2177(core.List<core.String> o) { |
| 4980 unittest.expect(o, unittest.hasLength(2)); | 4980 unittest.expect(o, unittest.hasLength(2)); |
| 4981 unittest.expect(o[0], unittest.equals('foo')); | 4981 unittest.expect(o[0], unittest.equals('foo')); |
| 4982 unittest.expect(o[1], unittest.equals('foo')); | 4982 unittest.expect(o[1], unittest.equals('foo')); |
| 4983 } | 4983 } |
| 4984 | 4984 |
| 4985 core.int buildCounterPathRule = 0; | 4985 core.int buildCounterPathRule = 0; |
| 4986 buildPathRule() { | 4986 buildPathRule() { |
| 4987 var o = new api.PathRule(); | 4987 var o = new api.PathRule(); |
| 4988 buildCounterPathRule++; | 4988 buildCounterPathRule++; |
| 4989 if (buildCounterPathRule < 3) { | 4989 if (buildCounterPathRule < 3) { |
| 4990 o.paths = buildUnnamed2083(); | 4990 o.paths = buildUnnamed2177(); |
| 4991 o.service = "foo"; | 4991 o.service = "foo"; |
| 4992 } | 4992 } |
| 4993 buildCounterPathRule--; | 4993 buildCounterPathRule--; |
| 4994 return o; | 4994 return o; |
| 4995 } | 4995 } |
| 4996 | 4996 |
| 4997 checkPathRule(api.PathRule o) { | 4997 checkPathRule(api.PathRule o) { |
| 4998 buildCounterPathRule++; | 4998 buildCounterPathRule++; |
| 4999 if (buildCounterPathRule < 3) { | 4999 if (buildCounterPathRule < 3) { |
| 5000 checkUnnamed2083(o.paths); | 5000 checkUnnamed2177(o.paths); |
| 5001 unittest.expect(o.service, unittest.equals('foo')); | 5001 unittest.expect(o.service, unittest.equals('foo')); |
| 5002 } | 5002 } |
| 5003 buildCounterPathRule--; | 5003 buildCounterPathRule--; |
| 5004 } | 5004 } |
| 5005 | 5005 |
| 5006 buildUnnamed2084() { | 5006 buildUnnamed2178() { |
| 5007 var o = new core.List<core.String>(); | 5007 var o = new core.List<core.String>(); |
| 5008 o.add("foo"); | 5008 o.add("foo"); |
| 5009 o.add("foo"); | 5009 o.add("foo"); |
| 5010 return o; | 5010 return o; |
| 5011 } | 5011 } |
| 5012 | 5012 |
| 5013 checkUnnamed2084(core.List<core.String> o) { | 5013 checkUnnamed2178(core.List<core.String> o) { |
| 5014 unittest.expect(o, unittest.hasLength(2)); | 5014 unittest.expect(o, unittest.hasLength(2)); |
| 5015 unittest.expect(o[0], unittest.equals('foo')); | 5015 unittest.expect(o[0], unittest.equals('foo')); |
| 5016 unittest.expect(o[1], unittest.equals('foo')); | 5016 unittest.expect(o[1], unittest.equals('foo')); |
| 5017 } | 5017 } |
| 5018 | 5018 |
| 5019 buildUnnamed2085() { | 5019 buildUnnamed2179() { |
| 5020 var o = new core.List<api.Quota>(); | 5020 var o = new core.List<api.Quota>(); |
| 5021 o.add(buildQuota()); | 5021 o.add(buildQuota()); |
| 5022 o.add(buildQuota()); | 5022 o.add(buildQuota()); |
| 5023 return o; | 5023 return o; |
| 5024 } | 5024 } |
| 5025 | 5025 |
| 5026 checkUnnamed2085(core.List<api.Quota> o) { | 5026 checkUnnamed2179(core.List<api.Quota> o) { |
| 5027 unittest.expect(o, unittest.hasLength(2)); | 5027 unittest.expect(o, unittest.hasLength(2)); |
| 5028 checkQuota(o[0]); | 5028 checkQuota(o[0]); |
| 5029 checkQuota(o[1]); | 5029 checkQuota(o[1]); |
| 5030 } | 5030 } |
| 5031 | 5031 |
| 5032 core.int buildCounterProject = 0; | 5032 core.int buildCounterProject = 0; |
| 5033 buildProject() { | 5033 buildProject() { |
| 5034 var o = new api.Project(); | 5034 var o = new api.Project(); |
| 5035 buildCounterProject++; | 5035 buildCounterProject++; |
| 5036 if (buildCounterProject < 3) { | 5036 if (buildCounterProject < 3) { |
| 5037 o.commonInstanceMetadata = buildMetadata(); | 5037 o.commonInstanceMetadata = buildMetadata(); |
| 5038 o.creationTimestamp = "foo"; | 5038 o.creationTimestamp = "foo"; |
| 5039 o.defaultServiceAccount = "foo"; | 5039 o.defaultServiceAccount = "foo"; |
| 5040 o.description = "foo"; | 5040 o.description = "foo"; |
| 5041 o.enabledFeatures = buildUnnamed2084(); | 5041 o.enabledFeatures = buildUnnamed2178(); |
| 5042 o.id = "foo"; | 5042 o.id = "foo"; |
| 5043 o.kind = "foo"; | 5043 o.kind = "foo"; |
| 5044 o.name = "foo"; | 5044 o.name = "foo"; |
| 5045 o.quotas = buildUnnamed2085(); | 5045 o.quotas = buildUnnamed2179(); |
| 5046 o.selfLink = "foo"; | 5046 o.selfLink = "foo"; |
| 5047 o.usageExportLocation = buildUsageExportLocation(); | 5047 o.usageExportLocation = buildUsageExportLocation(); |
| 5048 } | 5048 } |
| 5049 buildCounterProject--; | 5049 buildCounterProject--; |
| 5050 return o; | 5050 return o; |
| 5051 } | 5051 } |
| 5052 | 5052 |
| 5053 checkProject(api.Project o) { | 5053 checkProject(api.Project o) { |
| 5054 buildCounterProject++; | 5054 buildCounterProject++; |
| 5055 if (buildCounterProject < 3) { | 5055 if (buildCounterProject < 3) { |
| 5056 checkMetadata(o.commonInstanceMetadata); | 5056 checkMetadata(o.commonInstanceMetadata); |
| 5057 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5057 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5058 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); | 5058 unittest.expect(o.defaultServiceAccount, unittest.equals('foo')); |
| 5059 unittest.expect(o.description, unittest.equals('foo')); | 5059 unittest.expect(o.description, unittest.equals('foo')); |
| 5060 checkUnnamed2084(o.enabledFeatures); | 5060 checkUnnamed2178(o.enabledFeatures); |
| 5061 unittest.expect(o.id, unittest.equals('foo')); | 5061 unittest.expect(o.id, unittest.equals('foo')); |
| 5062 unittest.expect(o.kind, unittest.equals('foo')); | 5062 unittest.expect(o.kind, unittest.equals('foo')); |
| 5063 unittest.expect(o.name, unittest.equals('foo')); | 5063 unittest.expect(o.name, unittest.equals('foo')); |
| 5064 checkUnnamed2085(o.quotas); | 5064 checkUnnamed2179(o.quotas); |
| 5065 unittest.expect(o.selfLink, unittest.equals('foo')); | 5065 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5066 checkUsageExportLocation(o.usageExportLocation); | 5066 checkUsageExportLocation(o.usageExportLocation); |
| 5067 } | 5067 } |
| 5068 buildCounterProject--; | 5068 buildCounterProject--; |
| 5069 } | 5069 } |
| 5070 | 5070 |
| 5071 core.int buildCounterQuota = 0; | 5071 core.int buildCounterQuota = 0; |
| 5072 buildQuota() { | 5072 buildQuota() { |
| 5073 var o = new api.Quota(); | 5073 var o = new api.Quota(); |
| 5074 buildCounterQuota++; | 5074 buildCounterQuota++; |
| 5075 if (buildCounterQuota < 3) { | 5075 if (buildCounterQuota < 3) { |
| 5076 o.limit = 42.0; | 5076 o.limit = 42.0; |
| 5077 o.metric = "foo"; | 5077 o.metric = "foo"; |
| 5078 o.usage = 42.0; | 5078 o.usage = 42.0; |
| 5079 } | 5079 } |
| 5080 buildCounterQuota--; | 5080 buildCounterQuota--; |
| 5081 return o; | 5081 return o; |
| 5082 } | 5082 } |
| 5083 | 5083 |
| 5084 checkQuota(api.Quota o) { | 5084 checkQuota(api.Quota o) { |
| 5085 buildCounterQuota++; | 5085 buildCounterQuota++; |
| 5086 if (buildCounterQuota < 3) { | 5086 if (buildCounterQuota < 3) { |
| 5087 unittest.expect(o.limit, unittest.equals(42.0)); | 5087 unittest.expect(o.limit, unittest.equals(42.0)); |
| 5088 unittest.expect(o.metric, unittest.equals('foo')); | 5088 unittest.expect(o.metric, unittest.equals('foo')); |
| 5089 unittest.expect(o.usage, unittest.equals(42.0)); | 5089 unittest.expect(o.usage, unittest.equals(42.0)); |
| 5090 } | 5090 } |
| 5091 buildCounterQuota--; | 5091 buildCounterQuota--; |
| 5092 } | 5092 } |
| 5093 | 5093 |
| 5094 buildUnnamed2086() { | 5094 buildUnnamed2180() { |
| 5095 var o = new core.List<api.Quota>(); | 5095 var o = new core.List<api.Quota>(); |
| 5096 o.add(buildQuota()); | 5096 o.add(buildQuota()); |
| 5097 o.add(buildQuota()); | 5097 o.add(buildQuota()); |
| 5098 return o; | 5098 return o; |
| 5099 } | 5099 } |
| 5100 | 5100 |
| 5101 checkUnnamed2086(core.List<api.Quota> o) { | 5101 checkUnnamed2180(core.List<api.Quota> o) { |
| 5102 unittest.expect(o, unittest.hasLength(2)); | 5102 unittest.expect(o, unittest.hasLength(2)); |
| 5103 checkQuota(o[0]); | 5103 checkQuota(o[0]); |
| 5104 checkQuota(o[1]); | 5104 checkQuota(o[1]); |
| 5105 } | 5105 } |
| 5106 | 5106 |
| 5107 buildUnnamed2087() { | 5107 buildUnnamed2181() { |
| 5108 var o = new core.List<core.String>(); | 5108 var o = new core.List<core.String>(); |
| 5109 o.add("foo"); | 5109 o.add("foo"); |
| 5110 o.add("foo"); | 5110 o.add("foo"); |
| 5111 return o; | 5111 return o; |
| 5112 } | 5112 } |
| 5113 | 5113 |
| 5114 checkUnnamed2087(core.List<core.String> o) { | 5114 checkUnnamed2181(core.List<core.String> o) { |
| 5115 unittest.expect(o, unittest.hasLength(2)); | 5115 unittest.expect(o, unittest.hasLength(2)); |
| 5116 unittest.expect(o[0], unittest.equals('foo')); | 5116 unittest.expect(o[0], unittest.equals('foo')); |
| 5117 unittest.expect(o[1], unittest.equals('foo')); | 5117 unittest.expect(o[1], unittest.equals('foo')); |
| 5118 } | 5118 } |
| 5119 | 5119 |
| 5120 core.int buildCounterRegion = 0; | 5120 core.int buildCounterRegion = 0; |
| 5121 buildRegion() { | 5121 buildRegion() { |
| 5122 var o = new api.Region(); | 5122 var o = new api.Region(); |
| 5123 buildCounterRegion++; | 5123 buildCounterRegion++; |
| 5124 if (buildCounterRegion < 3) { | 5124 if (buildCounterRegion < 3) { |
| 5125 o.creationTimestamp = "foo"; | 5125 o.creationTimestamp = "foo"; |
| 5126 o.deprecated = buildDeprecationStatus(); | 5126 o.deprecated = buildDeprecationStatus(); |
| 5127 o.description = "foo"; | 5127 o.description = "foo"; |
| 5128 o.id = "foo"; | 5128 o.id = "foo"; |
| 5129 o.kind = "foo"; | 5129 o.kind = "foo"; |
| 5130 o.name = "foo"; | 5130 o.name = "foo"; |
| 5131 o.quotas = buildUnnamed2086(); | 5131 o.quotas = buildUnnamed2180(); |
| 5132 o.selfLink = "foo"; | 5132 o.selfLink = "foo"; |
| 5133 o.status = "foo"; | 5133 o.status = "foo"; |
| 5134 o.zones = buildUnnamed2087(); | 5134 o.zones = buildUnnamed2181(); |
| 5135 } | 5135 } |
| 5136 buildCounterRegion--; | 5136 buildCounterRegion--; |
| 5137 return o; | 5137 return o; |
| 5138 } | 5138 } |
| 5139 | 5139 |
| 5140 checkRegion(api.Region o) { | 5140 checkRegion(api.Region o) { |
| 5141 buildCounterRegion++; | 5141 buildCounterRegion++; |
| 5142 if (buildCounterRegion < 3) { | 5142 if (buildCounterRegion < 3) { |
| 5143 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5143 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5144 checkDeprecationStatus(o.deprecated); | 5144 checkDeprecationStatus(o.deprecated); |
| 5145 unittest.expect(o.description, unittest.equals('foo')); | 5145 unittest.expect(o.description, unittest.equals('foo')); |
| 5146 unittest.expect(o.id, unittest.equals('foo')); | 5146 unittest.expect(o.id, unittest.equals('foo')); |
| 5147 unittest.expect(o.kind, unittest.equals('foo')); | 5147 unittest.expect(o.kind, unittest.equals('foo')); |
| 5148 unittest.expect(o.name, unittest.equals('foo')); | 5148 unittest.expect(o.name, unittest.equals('foo')); |
| 5149 checkUnnamed2086(o.quotas); | 5149 checkUnnamed2180(o.quotas); |
| 5150 unittest.expect(o.selfLink, unittest.equals('foo')); | 5150 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5151 unittest.expect(o.status, unittest.equals('foo')); | 5151 unittest.expect(o.status, unittest.equals('foo')); |
| 5152 checkUnnamed2087(o.zones); | 5152 checkUnnamed2181(o.zones); |
| 5153 } | 5153 } |
| 5154 buildCounterRegion--; | 5154 buildCounterRegion--; |
| 5155 } | 5155 } |
| 5156 | 5156 |
| 5157 buildUnnamed2088() { | 5157 buildUnnamed2182() { |
| 5158 var o = new core.List<api.Autoscaler>(); | 5158 var o = new core.List<api.Autoscaler>(); |
| 5159 o.add(buildAutoscaler()); | 5159 o.add(buildAutoscaler()); |
| 5160 o.add(buildAutoscaler()); | 5160 o.add(buildAutoscaler()); |
| 5161 return o; | 5161 return o; |
| 5162 } | 5162 } |
| 5163 | 5163 |
| 5164 checkUnnamed2088(core.List<api.Autoscaler> o) { | 5164 checkUnnamed2182(core.List<api.Autoscaler> o) { |
| 5165 unittest.expect(o, unittest.hasLength(2)); | 5165 unittest.expect(o, unittest.hasLength(2)); |
| 5166 checkAutoscaler(o[0]); | 5166 checkAutoscaler(o[0]); |
| 5167 checkAutoscaler(o[1]); | 5167 checkAutoscaler(o[1]); |
| 5168 } | 5168 } |
| 5169 | 5169 |
| 5170 core.int buildCounterRegionAutoscalerList = 0; | 5170 core.int buildCounterRegionAutoscalerList = 0; |
| 5171 buildRegionAutoscalerList() { | 5171 buildRegionAutoscalerList() { |
| 5172 var o = new api.RegionAutoscalerList(); | 5172 var o = new api.RegionAutoscalerList(); |
| 5173 buildCounterRegionAutoscalerList++; | 5173 buildCounterRegionAutoscalerList++; |
| 5174 if (buildCounterRegionAutoscalerList < 3) { | 5174 if (buildCounterRegionAutoscalerList < 3) { |
| 5175 o.id = "foo"; | 5175 o.id = "foo"; |
| 5176 o.items = buildUnnamed2088(); | 5176 o.items = buildUnnamed2182(); |
| 5177 o.kind = "foo"; | 5177 o.kind = "foo"; |
| 5178 o.nextPageToken = "foo"; | 5178 o.nextPageToken = "foo"; |
| 5179 o.selfLink = "foo"; | 5179 o.selfLink = "foo"; |
| 5180 } | 5180 } |
| 5181 buildCounterRegionAutoscalerList--; | 5181 buildCounterRegionAutoscalerList--; |
| 5182 return o; | 5182 return o; |
| 5183 } | 5183 } |
| 5184 | 5184 |
| 5185 checkRegionAutoscalerList(api.RegionAutoscalerList o) { | 5185 checkRegionAutoscalerList(api.RegionAutoscalerList o) { |
| 5186 buildCounterRegionAutoscalerList++; | 5186 buildCounterRegionAutoscalerList++; |
| 5187 if (buildCounterRegionAutoscalerList < 3) { | 5187 if (buildCounterRegionAutoscalerList < 3) { |
| 5188 unittest.expect(o.id, unittest.equals('foo')); | 5188 unittest.expect(o.id, unittest.equals('foo')); |
| 5189 checkUnnamed2088(o.items); | 5189 checkUnnamed2182(o.items); |
| 5190 unittest.expect(o.kind, unittest.equals('foo')); | 5190 unittest.expect(o.kind, unittest.equals('foo')); |
| 5191 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5191 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5192 unittest.expect(o.selfLink, unittest.equals('foo')); | 5192 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5193 } | 5193 } |
| 5194 buildCounterRegionAutoscalerList--; | 5194 buildCounterRegionAutoscalerList--; |
| 5195 } | 5195 } |
| 5196 | 5196 |
| 5197 buildUnnamed2089() { | 5197 buildUnnamed2183() { |
| 5198 var o = new core.List<api.InstanceGroup>(); | 5198 var o = new core.List<api.InstanceGroup>(); |
| 5199 o.add(buildInstanceGroup()); | 5199 o.add(buildInstanceGroup()); |
| 5200 o.add(buildInstanceGroup()); | 5200 o.add(buildInstanceGroup()); |
| 5201 return o; | 5201 return o; |
| 5202 } | 5202 } |
| 5203 | 5203 |
| 5204 checkUnnamed2089(core.List<api.InstanceGroup> o) { | 5204 checkUnnamed2183(core.List<api.InstanceGroup> o) { |
| 5205 unittest.expect(o, unittest.hasLength(2)); | 5205 unittest.expect(o, unittest.hasLength(2)); |
| 5206 checkInstanceGroup(o[0]); | 5206 checkInstanceGroup(o[0]); |
| 5207 checkInstanceGroup(o[1]); | 5207 checkInstanceGroup(o[1]); |
| 5208 } | 5208 } |
| 5209 | 5209 |
| 5210 core.int buildCounterRegionInstanceGroupList = 0; | 5210 core.int buildCounterRegionInstanceGroupList = 0; |
| 5211 buildRegionInstanceGroupList() { | 5211 buildRegionInstanceGroupList() { |
| 5212 var o = new api.RegionInstanceGroupList(); | 5212 var o = new api.RegionInstanceGroupList(); |
| 5213 buildCounterRegionInstanceGroupList++; | 5213 buildCounterRegionInstanceGroupList++; |
| 5214 if (buildCounterRegionInstanceGroupList < 3) { | 5214 if (buildCounterRegionInstanceGroupList < 3) { |
| 5215 o.id = "foo"; | 5215 o.id = "foo"; |
| 5216 o.items = buildUnnamed2089(); | 5216 o.items = buildUnnamed2183(); |
| 5217 o.kind = "foo"; | 5217 o.kind = "foo"; |
| 5218 o.nextPageToken = "foo"; | 5218 o.nextPageToken = "foo"; |
| 5219 o.selfLink = "foo"; | 5219 o.selfLink = "foo"; |
| 5220 } | 5220 } |
| 5221 buildCounterRegionInstanceGroupList--; | 5221 buildCounterRegionInstanceGroupList--; |
| 5222 return o; | 5222 return o; |
| 5223 } | 5223 } |
| 5224 | 5224 |
| 5225 checkRegionInstanceGroupList(api.RegionInstanceGroupList o) { | 5225 checkRegionInstanceGroupList(api.RegionInstanceGroupList o) { |
| 5226 buildCounterRegionInstanceGroupList++; | 5226 buildCounterRegionInstanceGroupList++; |
| 5227 if (buildCounterRegionInstanceGroupList < 3) { | 5227 if (buildCounterRegionInstanceGroupList < 3) { |
| 5228 unittest.expect(o.id, unittest.equals('foo')); | 5228 unittest.expect(o.id, unittest.equals('foo')); |
| 5229 checkUnnamed2089(o.items); | 5229 checkUnnamed2183(o.items); |
| 5230 unittest.expect(o.kind, unittest.equals('foo')); | 5230 unittest.expect(o.kind, unittest.equals('foo')); |
| 5231 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5231 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5232 unittest.expect(o.selfLink, unittest.equals('foo')); | 5232 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5233 } | 5233 } |
| 5234 buildCounterRegionInstanceGroupList--; | 5234 buildCounterRegionInstanceGroupList--; |
| 5235 } | 5235 } |
| 5236 | 5236 |
| 5237 buildUnnamed2090() { | 5237 buildUnnamed2184() { |
| 5238 var o = new core.List<api.InstanceGroupManager>(); | 5238 var o = new core.List<api.InstanceGroupManager>(); |
| 5239 o.add(buildInstanceGroupManager()); | 5239 o.add(buildInstanceGroupManager()); |
| 5240 o.add(buildInstanceGroupManager()); | 5240 o.add(buildInstanceGroupManager()); |
| 5241 return o; | 5241 return o; |
| 5242 } | 5242 } |
| 5243 | 5243 |
| 5244 checkUnnamed2090(core.List<api.InstanceGroupManager> o) { | 5244 checkUnnamed2184(core.List<api.InstanceGroupManager> o) { |
| 5245 unittest.expect(o, unittest.hasLength(2)); | 5245 unittest.expect(o, unittest.hasLength(2)); |
| 5246 checkInstanceGroupManager(o[0]); | 5246 checkInstanceGroupManager(o[0]); |
| 5247 checkInstanceGroupManager(o[1]); | 5247 checkInstanceGroupManager(o[1]); |
| 5248 } | 5248 } |
| 5249 | 5249 |
| 5250 core.int buildCounterRegionInstanceGroupManagerList = 0; | 5250 core.int buildCounterRegionInstanceGroupManagerList = 0; |
| 5251 buildRegionInstanceGroupManagerList() { | 5251 buildRegionInstanceGroupManagerList() { |
| 5252 var o = new api.RegionInstanceGroupManagerList(); | 5252 var o = new api.RegionInstanceGroupManagerList(); |
| 5253 buildCounterRegionInstanceGroupManagerList++; | 5253 buildCounterRegionInstanceGroupManagerList++; |
| 5254 if (buildCounterRegionInstanceGroupManagerList < 3) { | 5254 if (buildCounterRegionInstanceGroupManagerList < 3) { |
| 5255 o.id = "foo"; | 5255 o.id = "foo"; |
| 5256 o.items = buildUnnamed2090(); | 5256 o.items = buildUnnamed2184(); |
| 5257 o.kind = "foo"; | 5257 o.kind = "foo"; |
| 5258 o.nextPageToken = "foo"; | 5258 o.nextPageToken = "foo"; |
| 5259 o.selfLink = "foo"; | 5259 o.selfLink = "foo"; |
| 5260 } | 5260 } |
| 5261 buildCounterRegionInstanceGroupManagerList--; | 5261 buildCounterRegionInstanceGroupManagerList--; |
| 5262 return o; | 5262 return o; |
| 5263 } | 5263 } |
| 5264 | 5264 |
| 5265 checkRegionInstanceGroupManagerList(api.RegionInstanceGroupManagerList o) { | 5265 checkRegionInstanceGroupManagerList(api.RegionInstanceGroupManagerList o) { |
| 5266 buildCounterRegionInstanceGroupManagerList++; | 5266 buildCounterRegionInstanceGroupManagerList++; |
| 5267 if (buildCounterRegionInstanceGroupManagerList < 3) { | 5267 if (buildCounterRegionInstanceGroupManagerList < 3) { |
| 5268 unittest.expect(o.id, unittest.equals('foo')); | 5268 unittest.expect(o.id, unittest.equals('foo')); |
| 5269 checkUnnamed2090(o.items); | 5269 checkUnnamed2184(o.items); |
| 5270 unittest.expect(o.kind, unittest.equals('foo')); | 5270 unittest.expect(o.kind, unittest.equals('foo')); |
| 5271 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5271 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5272 unittest.expect(o.selfLink, unittest.equals('foo')); | 5272 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5273 } | 5273 } |
| 5274 buildCounterRegionInstanceGroupManagerList--; | 5274 buildCounterRegionInstanceGroupManagerList--; |
| 5275 } | 5275 } |
| 5276 | 5276 |
| 5277 buildUnnamed2091() { | 5277 buildUnnamed2185() { |
| 5278 var o = new core.List<core.String>(); | 5278 var o = new core.List<core.String>(); |
| 5279 o.add("foo"); | 5279 o.add("foo"); |
| 5280 o.add("foo"); | 5280 o.add("foo"); |
| 5281 return o; | 5281 return o; |
| 5282 } | 5282 } |
| 5283 | 5283 |
| 5284 checkUnnamed2091(core.List<core.String> o) { | 5284 checkUnnamed2185(core.List<core.String> o) { |
| 5285 unittest.expect(o, unittest.hasLength(2)); | 5285 unittest.expect(o, unittest.hasLength(2)); |
| 5286 unittest.expect(o[0], unittest.equals('foo')); | 5286 unittest.expect(o[0], unittest.equals('foo')); |
| 5287 unittest.expect(o[1], unittest.equals('foo')); | 5287 unittest.expect(o[1], unittest.equals('foo')); |
| 5288 } | 5288 } |
| 5289 | 5289 |
| 5290 core.int buildCounterRegionInstanceGroupManagersAbandonInstancesRequest = 0; | 5290 core.int buildCounterRegionInstanceGroupManagersAbandonInstancesRequest = 0; |
| 5291 buildRegionInstanceGroupManagersAbandonInstancesRequest() { | 5291 buildRegionInstanceGroupManagersAbandonInstancesRequest() { |
| 5292 var o = new api.RegionInstanceGroupManagersAbandonInstancesRequest(); | 5292 var o = new api.RegionInstanceGroupManagersAbandonInstancesRequest(); |
| 5293 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; | 5293 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; |
| 5294 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { | 5294 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 5295 o.instances = buildUnnamed2091(); | 5295 o.instances = buildUnnamed2185(); |
| 5296 } | 5296 } |
| 5297 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; | 5297 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; |
| 5298 return o; | 5298 return o; |
| 5299 } | 5299 } |
| 5300 | 5300 |
| 5301 checkRegionInstanceGroupManagersAbandonInstancesRequest(api.RegionInstanceGroupM
anagersAbandonInstancesRequest o) { | 5301 checkRegionInstanceGroupManagersAbandonInstancesRequest(api.RegionInstanceGroupM
anagersAbandonInstancesRequest o) { |
| 5302 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; | 5302 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest++; |
| 5303 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { | 5303 if (buildCounterRegionInstanceGroupManagersAbandonInstancesRequest < 3) { |
| 5304 checkUnnamed2091(o.instances); | 5304 checkUnnamed2185(o.instances); |
| 5305 } | 5305 } |
| 5306 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; | 5306 buildCounterRegionInstanceGroupManagersAbandonInstancesRequest--; |
| 5307 } | 5307 } |
| 5308 | 5308 |
| 5309 buildUnnamed2092() { | 5309 buildUnnamed2186() { |
| 5310 var o = new core.List<core.String>(); | 5310 var o = new core.List<core.String>(); |
| 5311 o.add("foo"); | 5311 o.add("foo"); |
| 5312 o.add("foo"); | 5312 o.add("foo"); |
| 5313 return o; | 5313 return o; |
| 5314 } | 5314 } |
| 5315 | 5315 |
| 5316 checkUnnamed2092(core.List<core.String> o) { | 5316 checkUnnamed2186(core.List<core.String> o) { |
| 5317 unittest.expect(o, unittest.hasLength(2)); | 5317 unittest.expect(o, unittest.hasLength(2)); |
| 5318 unittest.expect(o[0], unittest.equals('foo')); | 5318 unittest.expect(o[0], unittest.equals('foo')); |
| 5319 unittest.expect(o[1], unittest.equals('foo')); | 5319 unittest.expect(o[1], unittest.equals('foo')); |
| 5320 } | 5320 } |
| 5321 | 5321 |
| 5322 core.int buildCounterRegionInstanceGroupManagersDeleteInstancesRequest = 0; | 5322 core.int buildCounterRegionInstanceGroupManagersDeleteInstancesRequest = 0; |
| 5323 buildRegionInstanceGroupManagersDeleteInstancesRequest() { | 5323 buildRegionInstanceGroupManagersDeleteInstancesRequest() { |
| 5324 var o = new api.RegionInstanceGroupManagersDeleteInstancesRequest(); | 5324 var o = new api.RegionInstanceGroupManagersDeleteInstancesRequest(); |
| 5325 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; | 5325 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; |
| 5326 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { | 5326 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 5327 o.instances = buildUnnamed2092(); | 5327 o.instances = buildUnnamed2186(); |
| 5328 } | 5328 } |
| 5329 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; | 5329 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; |
| 5330 return o; | 5330 return o; |
| 5331 } | 5331 } |
| 5332 | 5332 |
| 5333 checkRegionInstanceGroupManagersDeleteInstancesRequest(api.RegionInstanceGroupMa
nagersDeleteInstancesRequest o) { | 5333 checkRegionInstanceGroupManagersDeleteInstancesRequest(api.RegionInstanceGroupMa
nagersDeleteInstancesRequest o) { |
| 5334 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; | 5334 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest++; |
| 5335 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { | 5335 if (buildCounterRegionInstanceGroupManagersDeleteInstancesRequest < 3) { |
| 5336 checkUnnamed2092(o.instances); | 5336 checkUnnamed2186(o.instances); |
| 5337 } | 5337 } |
| 5338 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; | 5338 buildCounterRegionInstanceGroupManagersDeleteInstancesRequest--; |
| 5339 } | 5339 } |
| 5340 | 5340 |
| 5341 buildUnnamed2093() { | 5341 buildUnnamed2187() { |
| 5342 var o = new core.List<api.ManagedInstance>(); | 5342 var o = new core.List<api.ManagedInstance>(); |
| 5343 o.add(buildManagedInstance()); | 5343 o.add(buildManagedInstance()); |
| 5344 o.add(buildManagedInstance()); | 5344 o.add(buildManagedInstance()); |
| 5345 return o; | 5345 return o; |
| 5346 } | 5346 } |
| 5347 | 5347 |
| 5348 checkUnnamed2093(core.List<api.ManagedInstance> o) { | 5348 checkUnnamed2187(core.List<api.ManagedInstance> o) { |
| 5349 unittest.expect(o, unittest.hasLength(2)); | 5349 unittest.expect(o, unittest.hasLength(2)); |
| 5350 checkManagedInstance(o[0]); | 5350 checkManagedInstance(o[0]); |
| 5351 checkManagedInstance(o[1]); | 5351 checkManagedInstance(o[1]); |
| 5352 } | 5352 } |
| 5353 | 5353 |
| 5354 core.int buildCounterRegionInstanceGroupManagersListInstancesResponse = 0; | 5354 core.int buildCounterRegionInstanceGroupManagersListInstancesResponse = 0; |
| 5355 buildRegionInstanceGroupManagersListInstancesResponse() { | 5355 buildRegionInstanceGroupManagersListInstancesResponse() { |
| 5356 var o = new api.RegionInstanceGroupManagersListInstancesResponse(); | 5356 var o = new api.RegionInstanceGroupManagersListInstancesResponse(); |
| 5357 buildCounterRegionInstanceGroupManagersListInstancesResponse++; | 5357 buildCounterRegionInstanceGroupManagersListInstancesResponse++; |
| 5358 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { | 5358 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { |
| 5359 o.managedInstances = buildUnnamed2093(); | 5359 o.managedInstances = buildUnnamed2187(); |
| 5360 } | 5360 } |
| 5361 buildCounterRegionInstanceGroupManagersListInstancesResponse--; | 5361 buildCounterRegionInstanceGroupManagersListInstancesResponse--; |
| 5362 return o; | 5362 return o; |
| 5363 } | 5363 } |
| 5364 | 5364 |
| 5365 checkRegionInstanceGroupManagersListInstancesResponse(api.RegionInstanceGroupMan
agersListInstancesResponse o) { | 5365 checkRegionInstanceGroupManagersListInstancesResponse(api.RegionInstanceGroupMan
agersListInstancesResponse o) { |
| 5366 buildCounterRegionInstanceGroupManagersListInstancesResponse++; | 5366 buildCounterRegionInstanceGroupManagersListInstancesResponse++; |
| 5367 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { | 5367 if (buildCounterRegionInstanceGroupManagersListInstancesResponse < 3) { |
| 5368 checkUnnamed2093(o.managedInstances); | 5368 checkUnnamed2187(o.managedInstances); |
| 5369 } | 5369 } |
| 5370 buildCounterRegionInstanceGroupManagersListInstancesResponse--; | 5370 buildCounterRegionInstanceGroupManagersListInstancesResponse--; |
| 5371 } | 5371 } |
| 5372 | 5372 |
| 5373 buildUnnamed2094() { | 5373 buildUnnamed2188() { |
| 5374 var o = new core.List<core.String>(); | 5374 var o = new core.List<core.String>(); |
| 5375 o.add("foo"); | 5375 o.add("foo"); |
| 5376 o.add("foo"); | 5376 o.add("foo"); |
| 5377 return o; | 5377 return o; |
| 5378 } | 5378 } |
| 5379 | 5379 |
| 5380 checkUnnamed2094(core.List<core.String> o) { | 5380 checkUnnamed2188(core.List<core.String> o) { |
| 5381 unittest.expect(o, unittest.hasLength(2)); | 5381 unittest.expect(o, unittest.hasLength(2)); |
| 5382 unittest.expect(o[0], unittest.equals('foo')); | 5382 unittest.expect(o[0], unittest.equals('foo')); |
| 5383 unittest.expect(o[1], unittest.equals('foo')); | 5383 unittest.expect(o[1], unittest.equals('foo')); |
| 5384 } | 5384 } |
| 5385 | 5385 |
| 5386 core.int buildCounterRegionInstanceGroupManagersRecreateRequest = 0; | 5386 core.int buildCounterRegionInstanceGroupManagersRecreateRequest = 0; |
| 5387 buildRegionInstanceGroupManagersRecreateRequest() { | 5387 buildRegionInstanceGroupManagersRecreateRequest() { |
| 5388 var o = new api.RegionInstanceGroupManagersRecreateRequest(); | 5388 var o = new api.RegionInstanceGroupManagersRecreateRequest(); |
| 5389 buildCounterRegionInstanceGroupManagersRecreateRequest++; | 5389 buildCounterRegionInstanceGroupManagersRecreateRequest++; |
| 5390 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { | 5390 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { |
| 5391 o.instances = buildUnnamed2094(); | 5391 o.instances = buildUnnamed2188(); |
| 5392 } | 5392 } |
| 5393 buildCounterRegionInstanceGroupManagersRecreateRequest--; | 5393 buildCounterRegionInstanceGroupManagersRecreateRequest--; |
| 5394 return o; | 5394 return o; |
| 5395 } | 5395 } |
| 5396 | 5396 |
| 5397 checkRegionInstanceGroupManagersRecreateRequest(api.RegionInstanceGroupManagersR
ecreateRequest o) { | 5397 checkRegionInstanceGroupManagersRecreateRequest(api.RegionInstanceGroupManagersR
ecreateRequest o) { |
| 5398 buildCounterRegionInstanceGroupManagersRecreateRequest++; | 5398 buildCounterRegionInstanceGroupManagersRecreateRequest++; |
| 5399 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { | 5399 if (buildCounterRegionInstanceGroupManagersRecreateRequest < 3) { |
| 5400 checkUnnamed2094(o.instances); | 5400 checkUnnamed2188(o.instances); |
| 5401 } | 5401 } |
| 5402 buildCounterRegionInstanceGroupManagersRecreateRequest--; | 5402 buildCounterRegionInstanceGroupManagersRecreateRequest--; |
| 5403 } | 5403 } |
| 5404 | 5404 |
| 5405 buildUnnamed2095() { | 5405 buildUnnamed2189() { |
| 5406 var o = new core.List<core.String>(); | 5406 var o = new core.List<core.String>(); |
| 5407 o.add("foo"); | 5407 o.add("foo"); |
| 5408 o.add("foo"); | 5408 o.add("foo"); |
| 5409 return o; | 5409 return o; |
| 5410 } | 5410 } |
| 5411 | 5411 |
| 5412 checkUnnamed2095(core.List<core.String> o) { | 5412 checkUnnamed2189(core.List<core.String> o) { |
| 5413 unittest.expect(o, unittest.hasLength(2)); | 5413 unittest.expect(o, unittest.hasLength(2)); |
| 5414 unittest.expect(o[0], unittest.equals('foo')); | 5414 unittest.expect(o[0], unittest.equals('foo')); |
| 5415 unittest.expect(o[1], unittest.equals('foo')); | 5415 unittest.expect(o[1], unittest.equals('foo')); |
| 5416 } | 5416 } |
| 5417 | 5417 |
| 5418 core.int buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest = 0; | 5418 core.int buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest = 0; |
| 5419 buildRegionInstanceGroupManagersSetTargetPoolsRequest() { | 5419 buildRegionInstanceGroupManagersSetTargetPoolsRequest() { |
| 5420 var o = new api.RegionInstanceGroupManagersSetTargetPoolsRequest(); | 5420 var o = new api.RegionInstanceGroupManagersSetTargetPoolsRequest(); |
| 5421 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; | 5421 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; |
| 5422 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { | 5422 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 5423 o.fingerprint = "foo"; | 5423 o.fingerprint = "foo"; |
| 5424 o.targetPools = buildUnnamed2095(); | 5424 o.targetPools = buildUnnamed2189(); |
| 5425 } | 5425 } |
| 5426 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; | 5426 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; |
| 5427 return o; | 5427 return o; |
| 5428 } | 5428 } |
| 5429 | 5429 |
| 5430 checkRegionInstanceGroupManagersSetTargetPoolsRequest(api.RegionInstanceGroupMan
agersSetTargetPoolsRequest o) { | 5430 checkRegionInstanceGroupManagersSetTargetPoolsRequest(api.RegionInstanceGroupMan
agersSetTargetPoolsRequest o) { |
| 5431 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; | 5431 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest++; |
| 5432 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { | 5432 if (buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest < 3) { |
| 5433 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5433 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5434 checkUnnamed2095(o.targetPools); | 5434 checkUnnamed2189(o.targetPools); |
| 5435 } | 5435 } |
| 5436 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; | 5436 buildCounterRegionInstanceGroupManagersSetTargetPoolsRequest--; |
| 5437 } | 5437 } |
| 5438 | 5438 |
| 5439 core.int buildCounterRegionInstanceGroupManagersSetTemplateRequest = 0; | 5439 core.int buildCounterRegionInstanceGroupManagersSetTemplateRequest = 0; |
| 5440 buildRegionInstanceGroupManagersSetTemplateRequest() { | 5440 buildRegionInstanceGroupManagersSetTemplateRequest() { |
| 5441 var o = new api.RegionInstanceGroupManagersSetTemplateRequest(); | 5441 var o = new api.RegionInstanceGroupManagersSetTemplateRequest(); |
| 5442 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; | 5442 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; |
| 5443 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { | 5443 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { |
| 5444 o.instanceTemplate = "foo"; | 5444 o.instanceTemplate = "foo"; |
| 5445 } | 5445 } |
| 5446 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; | 5446 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; |
| 5447 return o; | 5447 return o; |
| 5448 } | 5448 } |
| 5449 | 5449 |
| 5450 checkRegionInstanceGroupManagersSetTemplateRequest(api.RegionInstanceGroupManage
rsSetTemplateRequest o) { | 5450 checkRegionInstanceGroupManagersSetTemplateRequest(api.RegionInstanceGroupManage
rsSetTemplateRequest o) { |
| 5451 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; | 5451 buildCounterRegionInstanceGroupManagersSetTemplateRequest++; |
| 5452 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { | 5452 if (buildCounterRegionInstanceGroupManagersSetTemplateRequest < 3) { |
| 5453 unittest.expect(o.instanceTemplate, unittest.equals('foo')); | 5453 unittest.expect(o.instanceTemplate, unittest.equals('foo')); |
| 5454 } | 5454 } |
| 5455 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; | 5455 buildCounterRegionInstanceGroupManagersSetTemplateRequest--; |
| 5456 } | 5456 } |
| 5457 | 5457 |
| 5458 buildUnnamed2096() { | 5458 buildUnnamed2190() { |
| 5459 var o = new core.List<api.InstanceWithNamedPorts>(); | 5459 var o = new core.List<api.InstanceWithNamedPorts>(); |
| 5460 o.add(buildInstanceWithNamedPorts()); | 5460 o.add(buildInstanceWithNamedPorts()); |
| 5461 o.add(buildInstanceWithNamedPorts()); | 5461 o.add(buildInstanceWithNamedPorts()); |
| 5462 return o; | 5462 return o; |
| 5463 } | 5463 } |
| 5464 | 5464 |
| 5465 checkUnnamed2096(core.List<api.InstanceWithNamedPorts> o) { | 5465 checkUnnamed2190(core.List<api.InstanceWithNamedPorts> o) { |
| 5466 unittest.expect(o, unittest.hasLength(2)); | 5466 unittest.expect(o, unittest.hasLength(2)); |
| 5467 checkInstanceWithNamedPorts(o[0]); | 5467 checkInstanceWithNamedPorts(o[0]); |
| 5468 checkInstanceWithNamedPorts(o[1]); | 5468 checkInstanceWithNamedPorts(o[1]); |
| 5469 } | 5469 } |
| 5470 | 5470 |
| 5471 core.int buildCounterRegionInstanceGroupsListInstances = 0; | 5471 core.int buildCounterRegionInstanceGroupsListInstances = 0; |
| 5472 buildRegionInstanceGroupsListInstances() { | 5472 buildRegionInstanceGroupsListInstances() { |
| 5473 var o = new api.RegionInstanceGroupsListInstances(); | 5473 var o = new api.RegionInstanceGroupsListInstances(); |
| 5474 buildCounterRegionInstanceGroupsListInstances++; | 5474 buildCounterRegionInstanceGroupsListInstances++; |
| 5475 if (buildCounterRegionInstanceGroupsListInstances < 3) { | 5475 if (buildCounterRegionInstanceGroupsListInstances < 3) { |
| 5476 o.id = "foo"; | 5476 o.id = "foo"; |
| 5477 o.items = buildUnnamed2096(); | 5477 o.items = buildUnnamed2190(); |
| 5478 o.kind = "foo"; | 5478 o.kind = "foo"; |
| 5479 o.nextPageToken = "foo"; | 5479 o.nextPageToken = "foo"; |
| 5480 o.selfLink = "foo"; | 5480 o.selfLink = "foo"; |
| 5481 } | 5481 } |
| 5482 buildCounterRegionInstanceGroupsListInstances--; | 5482 buildCounterRegionInstanceGroupsListInstances--; |
| 5483 return o; | 5483 return o; |
| 5484 } | 5484 } |
| 5485 | 5485 |
| 5486 checkRegionInstanceGroupsListInstances(api.RegionInstanceGroupsListInstances o)
{ | 5486 checkRegionInstanceGroupsListInstances(api.RegionInstanceGroupsListInstances o)
{ |
| 5487 buildCounterRegionInstanceGroupsListInstances++; | 5487 buildCounterRegionInstanceGroupsListInstances++; |
| 5488 if (buildCounterRegionInstanceGroupsListInstances < 3) { | 5488 if (buildCounterRegionInstanceGroupsListInstances < 3) { |
| 5489 unittest.expect(o.id, unittest.equals('foo')); | 5489 unittest.expect(o.id, unittest.equals('foo')); |
| 5490 checkUnnamed2096(o.items); | 5490 checkUnnamed2190(o.items); |
| 5491 unittest.expect(o.kind, unittest.equals('foo')); | 5491 unittest.expect(o.kind, unittest.equals('foo')); |
| 5492 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5492 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5493 unittest.expect(o.selfLink, unittest.equals('foo')); | 5493 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5494 } | 5494 } |
| 5495 buildCounterRegionInstanceGroupsListInstances--; | 5495 buildCounterRegionInstanceGroupsListInstances--; |
| 5496 } | 5496 } |
| 5497 | 5497 |
| 5498 core.int buildCounterRegionInstanceGroupsListInstancesRequest = 0; | 5498 core.int buildCounterRegionInstanceGroupsListInstancesRequest = 0; |
| 5499 buildRegionInstanceGroupsListInstancesRequest() { | 5499 buildRegionInstanceGroupsListInstancesRequest() { |
| 5500 var o = new api.RegionInstanceGroupsListInstancesRequest(); | 5500 var o = new api.RegionInstanceGroupsListInstancesRequest(); |
| 5501 buildCounterRegionInstanceGroupsListInstancesRequest++; | 5501 buildCounterRegionInstanceGroupsListInstancesRequest++; |
| 5502 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { | 5502 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { |
| 5503 o.instanceState = "foo"; | 5503 o.instanceState = "foo"; |
| 5504 o.portName = "foo"; | 5504 o.portName = "foo"; |
| 5505 } | 5505 } |
| 5506 buildCounterRegionInstanceGroupsListInstancesRequest--; | 5506 buildCounterRegionInstanceGroupsListInstancesRequest--; |
| 5507 return o; | 5507 return o; |
| 5508 } | 5508 } |
| 5509 | 5509 |
| 5510 checkRegionInstanceGroupsListInstancesRequest(api.RegionInstanceGroupsListInstan
cesRequest o) { | 5510 checkRegionInstanceGroupsListInstancesRequest(api.RegionInstanceGroupsListInstan
cesRequest o) { |
| 5511 buildCounterRegionInstanceGroupsListInstancesRequest++; | 5511 buildCounterRegionInstanceGroupsListInstancesRequest++; |
| 5512 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { | 5512 if (buildCounterRegionInstanceGroupsListInstancesRequest < 3) { |
| 5513 unittest.expect(o.instanceState, unittest.equals('foo')); | 5513 unittest.expect(o.instanceState, unittest.equals('foo')); |
| 5514 unittest.expect(o.portName, unittest.equals('foo')); | 5514 unittest.expect(o.portName, unittest.equals('foo')); |
| 5515 } | 5515 } |
| 5516 buildCounterRegionInstanceGroupsListInstancesRequest--; | 5516 buildCounterRegionInstanceGroupsListInstancesRequest--; |
| 5517 } | 5517 } |
| 5518 | 5518 |
| 5519 buildUnnamed2097() { | 5519 buildUnnamed2191() { |
| 5520 var o = new core.List<api.NamedPort>(); | 5520 var o = new core.List<api.NamedPort>(); |
| 5521 o.add(buildNamedPort()); | 5521 o.add(buildNamedPort()); |
| 5522 o.add(buildNamedPort()); | 5522 o.add(buildNamedPort()); |
| 5523 return o; | 5523 return o; |
| 5524 } | 5524 } |
| 5525 | 5525 |
| 5526 checkUnnamed2097(core.List<api.NamedPort> o) { | 5526 checkUnnamed2191(core.List<api.NamedPort> o) { |
| 5527 unittest.expect(o, unittest.hasLength(2)); | 5527 unittest.expect(o, unittest.hasLength(2)); |
| 5528 checkNamedPort(o[0]); | 5528 checkNamedPort(o[0]); |
| 5529 checkNamedPort(o[1]); | 5529 checkNamedPort(o[1]); |
| 5530 } | 5530 } |
| 5531 | 5531 |
| 5532 core.int buildCounterRegionInstanceGroupsSetNamedPortsRequest = 0; | 5532 core.int buildCounterRegionInstanceGroupsSetNamedPortsRequest = 0; |
| 5533 buildRegionInstanceGroupsSetNamedPortsRequest() { | 5533 buildRegionInstanceGroupsSetNamedPortsRequest() { |
| 5534 var o = new api.RegionInstanceGroupsSetNamedPortsRequest(); | 5534 var o = new api.RegionInstanceGroupsSetNamedPortsRequest(); |
| 5535 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; | 5535 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; |
| 5536 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { | 5536 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { |
| 5537 o.fingerprint = "foo"; | 5537 o.fingerprint = "foo"; |
| 5538 o.namedPorts = buildUnnamed2097(); | 5538 o.namedPorts = buildUnnamed2191(); |
| 5539 } | 5539 } |
| 5540 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; | 5540 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; |
| 5541 return o; | 5541 return o; |
| 5542 } | 5542 } |
| 5543 | 5543 |
| 5544 checkRegionInstanceGroupsSetNamedPortsRequest(api.RegionInstanceGroupsSetNamedPo
rtsRequest o) { | 5544 checkRegionInstanceGroupsSetNamedPortsRequest(api.RegionInstanceGroupsSetNamedPo
rtsRequest o) { |
| 5545 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; | 5545 buildCounterRegionInstanceGroupsSetNamedPortsRequest++; |
| 5546 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { | 5546 if (buildCounterRegionInstanceGroupsSetNamedPortsRequest < 3) { |
| 5547 unittest.expect(o.fingerprint, unittest.equals('foo')); | 5547 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 5548 checkUnnamed2097(o.namedPorts); | 5548 checkUnnamed2191(o.namedPorts); |
| 5549 } | 5549 } |
| 5550 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; | 5550 buildCounterRegionInstanceGroupsSetNamedPortsRequest--; |
| 5551 } | 5551 } |
| 5552 | 5552 |
| 5553 buildUnnamed2098() { | 5553 buildUnnamed2192() { |
| 5554 var o = new core.List<api.Region>(); | 5554 var o = new core.List<api.Region>(); |
| 5555 o.add(buildRegion()); | 5555 o.add(buildRegion()); |
| 5556 o.add(buildRegion()); | 5556 o.add(buildRegion()); |
| 5557 return o; | 5557 return o; |
| 5558 } | 5558 } |
| 5559 | 5559 |
| 5560 checkUnnamed2098(core.List<api.Region> o) { | 5560 checkUnnamed2192(core.List<api.Region> o) { |
| 5561 unittest.expect(o, unittest.hasLength(2)); | 5561 unittest.expect(o, unittest.hasLength(2)); |
| 5562 checkRegion(o[0]); | 5562 checkRegion(o[0]); |
| 5563 checkRegion(o[1]); | 5563 checkRegion(o[1]); |
| 5564 } | 5564 } |
| 5565 | 5565 |
| 5566 core.int buildCounterRegionList = 0; | 5566 core.int buildCounterRegionList = 0; |
| 5567 buildRegionList() { | 5567 buildRegionList() { |
| 5568 var o = new api.RegionList(); | 5568 var o = new api.RegionList(); |
| 5569 buildCounterRegionList++; | 5569 buildCounterRegionList++; |
| 5570 if (buildCounterRegionList < 3) { | 5570 if (buildCounterRegionList < 3) { |
| 5571 o.id = "foo"; | 5571 o.id = "foo"; |
| 5572 o.items = buildUnnamed2098(); | 5572 o.items = buildUnnamed2192(); |
| 5573 o.kind = "foo"; | 5573 o.kind = "foo"; |
| 5574 o.nextPageToken = "foo"; | 5574 o.nextPageToken = "foo"; |
| 5575 o.selfLink = "foo"; | 5575 o.selfLink = "foo"; |
| 5576 } | 5576 } |
| 5577 buildCounterRegionList--; | 5577 buildCounterRegionList--; |
| 5578 return o; | 5578 return o; |
| 5579 } | 5579 } |
| 5580 | 5580 |
| 5581 checkRegionList(api.RegionList o) { | 5581 checkRegionList(api.RegionList o) { |
| 5582 buildCounterRegionList++; | 5582 buildCounterRegionList++; |
| 5583 if (buildCounterRegionList < 3) { | 5583 if (buildCounterRegionList < 3) { |
| 5584 unittest.expect(o.id, unittest.equals('foo')); | 5584 unittest.expect(o.id, unittest.equals('foo')); |
| 5585 checkUnnamed2098(o.items); | 5585 checkUnnamed2192(o.items); |
| 5586 unittest.expect(o.kind, unittest.equals('foo')); | 5586 unittest.expect(o.kind, unittest.equals('foo')); |
| 5587 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5587 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5588 unittest.expect(o.selfLink, unittest.equals('foo')); | 5588 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5589 } | 5589 } |
| 5590 buildCounterRegionList--; | 5590 buildCounterRegionList--; |
| 5591 } | 5591 } |
| 5592 | 5592 |
| 5593 core.int buildCounterResourceGroupReference = 0; | 5593 core.int buildCounterResourceGroupReference = 0; |
| 5594 buildResourceGroupReference() { | 5594 buildResourceGroupReference() { |
| 5595 var o = new api.ResourceGroupReference(); | 5595 var o = new api.ResourceGroupReference(); |
| 5596 buildCounterResourceGroupReference++; | 5596 buildCounterResourceGroupReference++; |
| 5597 if (buildCounterResourceGroupReference < 3) { | 5597 if (buildCounterResourceGroupReference < 3) { |
| 5598 o.group = "foo"; | 5598 o.group = "foo"; |
| 5599 } | 5599 } |
| 5600 buildCounterResourceGroupReference--; | 5600 buildCounterResourceGroupReference--; |
| 5601 return o; | 5601 return o; |
| 5602 } | 5602 } |
| 5603 | 5603 |
| 5604 checkResourceGroupReference(api.ResourceGroupReference o) { | 5604 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 5605 buildCounterResourceGroupReference++; | 5605 buildCounterResourceGroupReference++; |
| 5606 if (buildCounterResourceGroupReference < 3) { | 5606 if (buildCounterResourceGroupReference < 3) { |
| 5607 unittest.expect(o.group, unittest.equals('foo')); | 5607 unittest.expect(o.group, unittest.equals('foo')); |
| 5608 } | 5608 } |
| 5609 buildCounterResourceGroupReference--; | 5609 buildCounterResourceGroupReference--; |
| 5610 } | 5610 } |
| 5611 | 5611 |
| 5612 buildUnnamed2099() { | 5612 buildUnnamed2193() { |
| 5613 var o = new core.List<core.String>(); | 5613 var o = new core.List<core.String>(); |
| 5614 o.add("foo"); | 5614 o.add("foo"); |
| 5615 o.add("foo"); | 5615 o.add("foo"); |
| 5616 return o; | 5616 return o; |
| 5617 } | 5617 } |
| 5618 | 5618 |
| 5619 checkUnnamed2099(core.List<core.String> o) { | 5619 checkUnnamed2193(core.List<core.String> o) { |
| 5620 unittest.expect(o, unittest.hasLength(2)); | 5620 unittest.expect(o, unittest.hasLength(2)); |
| 5621 unittest.expect(o[0], unittest.equals('foo')); | 5621 unittest.expect(o[0], unittest.equals('foo')); |
| 5622 unittest.expect(o[1], unittest.equals('foo')); | 5622 unittest.expect(o[1], unittest.equals('foo')); |
| 5623 } | 5623 } |
| 5624 | 5624 |
| 5625 core.int buildCounterRouteWarningsData = 0; | 5625 core.int buildCounterRouteWarningsData = 0; |
| 5626 buildRouteWarningsData() { | 5626 buildRouteWarningsData() { |
| 5627 var o = new api.RouteWarningsData(); | 5627 var o = new api.RouteWarningsData(); |
| 5628 buildCounterRouteWarningsData++; | 5628 buildCounterRouteWarningsData++; |
| 5629 if (buildCounterRouteWarningsData < 3) { | 5629 if (buildCounterRouteWarningsData < 3) { |
| 5630 o.key = "foo"; | 5630 o.key = "foo"; |
| 5631 o.value = "foo"; | 5631 o.value = "foo"; |
| 5632 } | 5632 } |
| 5633 buildCounterRouteWarningsData--; | 5633 buildCounterRouteWarningsData--; |
| 5634 return o; | 5634 return o; |
| 5635 } | 5635 } |
| 5636 | 5636 |
| 5637 checkRouteWarningsData(api.RouteWarningsData o) { | 5637 checkRouteWarningsData(api.RouteWarningsData o) { |
| 5638 buildCounterRouteWarningsData++; | 5638 buildCounterRouteWarningsData++; |
| 5639 if (buildCounterRouteWarningsData < 3) { | 5639 if (buildCounterRouteWarningsData < 3) { |
| 5640 unittest.expect(o.key, unittest.equals('foo')); | 5640 unittest.expect(o.key, unittest.equals('foo')); |
| 5641 unittest.expect(o.value, unittest.equals('foo')); | 5641 unittest.expect(o.value, unittest.equals('foo')); |
| 5642 } | 5642 } |
| 5643 buildCounterRouteWarningsData--; | 5643 buildCounterRouteWarningsData--; |
| 5644 } | 5644 } |
| 5645 | 5645 |
| 5646 buildUnnamed2100() { | 5646 buildUnnamed2194() { |
| 5647 var o = new core.List<api.RouteWarningsData>(); | 5647 var o = new core.List<api.RouteWarningsData>(); |
| 5648 o.add(buildRouteWarningsData()); | 5648 o.add(buildRouteWarningsData()); |
| 5649 o.add(buildRouteWarningsData()); | 5649 o.add(buildRouteWarningsData()); |
| 5650 return o; | 5650 return o; |
| 5651 } | 5651 } |
| 5652 | 5652 |
| 5653 checkUnnamed2100(core.List<api.RouteWarningsData> o) { | 5653 checkUnnamed2194(core.List<api.RouteWarningsData> o) { |
| 5654 unittest.expect(o, unittest.hasLength(2)); | 5654 unittest.expect(o, unittest.hasLength(2)); |
| 5655 checkRouteWarningsData(o[0]); | 5655 checkRouteWarningsData(o[0]); |
| 5656 checkRouteWarningsData(o[1]); | 5656 checkRouteWarningsData(o[1]); |
| 5657 } | 5657 } |
| 5658 | 5658 |
| 5659 core.int buildCounterRouteWarnings = 0; | 5659 core.int buildCounterRouteWarnings = 0; |
| 5660 buildRouteWarnings() { | 5660 buildRouteWarnings() { |
| 5661 var o = new api.RouteWarnings(); | 5661 var o = new api.RouteWarnings(); |
| 5662 buildCounterRouteWarnings++; | 5662 buildCounterRouteWarnings++; |
| 5663 if (buildCounterRouteWarnings < 3) { | 5663 if (buildCounterRouteWarnings < 3) { |
| 5664 o.code = "foo"; | 5664 o.code = "foo"; |
| 5665 o.data = buildUnnamed2100(); | 5665 o.data = buildUnnamed2194(); |
| 5666 o.message = "foo"; | 5666 o.message = "foo"; |
| 5667 } | 5667 } |
| 5668 buildCounterRouteWarnings--; | 5668 buildCounterRouteWarnings--; |
| 5669 return o; | 5669 return o; |
| 5670 } | 5670 } |
| 5671 | 5671 |
| 5672 checkRouteWarnings(api.RouteWarnings o) { | 5672 checkRouteWarnings(api.RouteWarnings o) { |
| 5673 buildCounterRouteWarnings++; | 5673 buildCounterRouteWarnings++; |
| 5674 if (buildCounterRouteWarnings < 3) { | 5674 if (buildCounterRouteWarnings < 3) { |
| 5675 unittest.expect(o.code, unittest.equals('foo')); | 5675 unittest.expect(o.code, unittest.equals('foo')); |
| 5676 checkUnnamed2100(o.data); | 5676 checkUnnamed2194(o.data); |
| 5677 unittest.expect(o.message, unittest.equals('foo')); | 5677 unittest.expect(o.message, unittest.equals('foo')); |
| 5678 } | 5678 } |
| 5679 buildCounterRouteWarnings--; | 5679 buildCounterRouteWarnings--; |
| 5680 } | 5680 } |
| 5681 | 5681 |
| 5682 buildUnnamed2101() { | 5682 buildUnnamed2195() { |
| 5683 var o = new core.List<api.RouteWarnings>(); | 5683 var o = new core.List<api.RouteWarnings>(); |
| 5684 o.add(buildRouteWarnings()); | 5684 o.add(buildRouteWarnings()); |
| 5685 o.add(buildRouteWarnings()); | 5685 o.add(buildRouteWarnings()); |
| 5686 return o; | 5686 return o; |
| 5687 } | 5687 } |
| 5688 | 5688 |
| 5689 checkUnnamed2101(core.List<api.RouteWarnings> o) { | 5689 checkUnnamed2195(core.List<api.RouteWarnings> o) { |
| 5690 unittest.expect(o, unittest.hasLength(2)); | 5690 unittest.expect(o, unittest.hasLength(2)); |
| 5691 checkRouteWarnings(o[0]); | 5691 checkRouteWarnings(o[0]); |
| 5692 checkRouteWarnings(o[1]); | 5692 checkRouteWarnings(o[1]); |
| 5693 } | 5693 } |
| 5694 | 5694 |
| 5695 core.int buildCounterRoute = 0; | 5695 core.int buildCounterRoute = 0; |
| 5696 buildRoute() { | 5696 buildRoute() { |
| 5697 var o = new api.Route(); | 5697 var o = new api.Route(); |
| 5698 buildCounterRoute++; | 5698 buildCounterRoute++; |
| 5699 if (buildCounterRoute < 3) { | 5699 if (buildCounterRoute < 3) { |
| 5700 o.creationTimestamp = "foo"; | 5700 o.creationTimestamp = "foo"; |
| 5701 o.description = "foo"; | 5701 o.description = "foo"; |
| 5702 o.destRange = "foo"; | 5702 o.destRange = "foo"; |
| 5703 o.id = "foo"; | 5703 o.id = "foo"; |
| 5704 o.kind = "foo"; | 5704 o.kind = "foo"; |
| 5705 o.name = "foo"; | 5705 o.name = "foo"; |
| 5706 o.network = "foo"; | 5706 o.network = "foo"; |
| 5707 o.nextHopGateway = "foo"; | 5707 o.nextHopGateway = "foo"; |
| 5708 o.nextHopInstance = "foo"; | 5708 o.nextHopInstance = "foo"; |
| 5709 o.nextHopIp = "foo"; | 5709 o.nextHopIp = "foo"; |
| 5710 o.nextHopNetwork = "foo"; | 5710 o.nextHopNetwork = "foo"; |
| 5711 o.nextHopVpnTunnel = "foo"; | 5711 o.nextHopVpnTunnel = "foo"; |
| 5712 o.priority = 42; | 5712 o.priority = 42; |
| 5713 o.selfLink = "foo"; | 5713 o.selfLink = "foo"; |
| 5714 o.tags = buildUnnamed2099(); | 5714 o.tags = buildUnnamed2193(); |
| 5715 o.warnings = buildUnnamed2101(); | 5715 o.warnings = buildUnnamed2195(); |
| 5716 } | 5716 } |
| 5717 buildCounterRoute--; | 5717 buildCounterRoute--; |
| 5718 return o; | 5718 return o; |
| 5719 } | 5719 } |
| 5720 | 5720 |
| 5721 checkRoute(api.Route o) { | 5721 checkRoute(api.Route o) { |
| 5722 buildCounterRoute++; | 5722 buildCounterRoute++; |
| 5723 if (buildCounterRoute < 3) { | 5723 if (buildCounterRoute < 3) { |
| 5724 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5724 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5725 unittest.expect(o.description, unittest.equals('foo')); | 5725 unittest.expect(o.description, unittest.equals('foo')); |
| 5726 unittest.expect(o.destRange, unittest.equals('foo')); | 5726 unittest.expect(o.destRange, unittest.equals('foo')); |
| 5727 unittest.expect(o.id, unittest.equals('foo')); | 5727 unittest.expect(o.id, unittest.equals('foo')); |
| 5728 unittest.expect(o.kind, unittest.equals('foo')); | 5728 unittest.expect(o.kind, unittest.equals('foo')); |
| 5729 unittest.expect(o.name, unittest.equals('foo')); | 5729 unittest.expect(o.name, unittest.equals('foo')); |
| 5730 unittest.expect(o.network, unittest.equals('foo')); | 5730 unittest.expect(o.network, unittest.equals('foo')); |
| 5731 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 5731 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 5732 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 5732 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 5733 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 5733 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 5734 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 5734 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 5735 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); | 5735 unittest.expect(o.nextHopVpnTunnel, unittest.equals('foo')); |
| 5736 unittest.expect(o.priority, unittest.equals(42)); | 5736 unittest.expect(o.priority, unittest.equals(42)); |
| 5737 unittest.expect(o.selfLink, unittest.equals('foo')); | 5737 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5738 checkUnnamed2099(o.tags); | 5738 checkUnnamed2193(o.tags); |
| 5739 checkUnnamed2101(o.warnings); | 5739 checkUnnamed2195(o.warnings); |
| 5740 } | 5740 } |
| 5741 buildCounterRoute--; | 5741 buildCounterRoute--; |
| 5742 } | 5742 } |
| 5743 | 5743 |
| 5744 buildUnnamed2102() { | 5744 buildUnnamed2196() { |
| 5745 var o = new core.List<api.Route>(); | 5745 var o = new core.List<api.Route>(); |
| 5746 o.add(buildRoute()); | 5746 o.add(buildRoute()); |
| 5747 o.add(buildRoute()); | 5747 o.add(buildRoute()); |
| 5748 return o; | 5748 return o; |
| 5749 } | 5749 } |
| 5750 | 5750 |
| 5751 checkUnnamed2102(core.List<api.Route> o) { | 5751 checkUnnamed2196(core.List<api.Route> o) { |
| 5752 unittest.expect(o, unittest.hasLength(2)); | 5752 unittest.expect(o, unittest.hasLength(2)); |
| 5753 checkRoute(o[0]); | 5753 checkRoute(o[0]); |
| 5754 checkRoute(o[1]); | 5754 checkRoute(o[1]); |
| 5755 } | 5755 } |
| 5756 | 5756 |
| 5757 core.int buildCounterRouteList = 0; | 5757 core.int buildCounterRouteList = 0; |
| 5758 buildRouteList() { | 5758 buildRouteList() { |
| 5759 var o = new api.RouteList(); | 5759 var o = new api.RouteList(); |
| 5760 buildCounterRouteList++; | 5760 buildCounterRouteList++; |
| 5761 if (buildCounterRouteList < 3) { | 5761 if (buildCounterRouteList < 3) { |
| 5762 o.id = "foo"; | 5762 o.id = "foo"; |
| 5763 o.items = buildUnnamed2102(); | 5763 o.items = buildUnnamed2196(); |
| 5764 o.kind = "foo"; | 5764 o.kind = "foo"; |
| 5765 o.nextPageToken = "foo"; | 5765 o.nextPageToken = "foo"; |
| 5766 o.selfLink = "foo"; | 5766 o.selfLink = "foo"; |
| 5767 } | 5767 } |
| 5768 buildCounterRouteList--; | 5768 buildCounterRouteList--; |
| 5769 return o; | 5769 return o; |
| 5770 } | 5770 } |
| 5771 | 5771 |
| 5772 checkRouteList(api.RouteList o) { | 5772 checkRouteList(api.RouteList o) { |
| 5773 buildCounterRouteList++; | 5773 buildCounterRouteList++; |
| 5774 if (buildCounterRouteList < 3) { | 5774 if (buildCounterRouteList < 3) { |
| 5775 unittest.expect(o.id, unittest.equals('foo')); | 5775 unittest.expect(o.id, unittest.equals('foo')); |
| 5776 checkUnnamed2102(o.items); | 5776 checkUnnamed2196(o.items); |
| 5777 unittest.expect(o.kind, unittest.equals('foo')); | 5777 unittest.expect(o.kind, unittest.equals('foo')); |
| 5778 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5778 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5779 unittest.expect(o.selfLink, unittest.equals('foo')); | 5779 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5780 } | 5780 } |
| 5781 buildCounterRouteList--; | 5781 buildCounterRouteList--; |
| 5782 } | 5782 } |
| 5783 | 5783 |
| 5784 buildUnnamed2103() { | 5784 buildUnnamed2197() { |
| 5785 var o = new core.List<api.RouterBgpPeer>(); | 5785 var o = new core.List<api.RouterBgpPeer>(); |
| 5786 o.add(buildRouterBgpPeer()); | 5786 o.add(buildRouterBgpPeer()); |
| 5787 o.add(buildRouterBgpPeer()); | 5787 o.add(buildRouterBgpPeer()); |
| 5788 return o; | 5788 return o; |
| 5789 } | 5789 } |
| 5790 | 5790 |
| 5791 checkUnnamed2103(core.List<api.RouterBgpPeer> o) { | 5791 checkUnnamed2197(core.List<api.RouterBgpPeer> o) { |
| 5792 unittest.expect(o, unittest.hasLength(2)); | 5792 unittest.expect(o, unittest.hasLength(2)); |
| 5793 checkRouterBgpPeer(o[0]); | 5793 checkRouterBgpPeer(o[0]); |
| 5794 checkRouterBgpPeer(o[1]); | 5794 checkRouterBgpPeer(o[1]); |
| 5795 } | 5795 } |
| 5796 | 5796 |
| 5797 buildUnnamed2104() { | 5797 buildUnnamed2198() { |
| 5798 var o = new core.List<api.RouterInterface>(); | 5798 var o = new core.List<api.RouterInterface>(); |
| 5799 o.add(buildRouterInterface()); | 5799 o.add(buildRouterInterface()); |
| 5800 o.add(buildRouterInterface()); | 5800 o.add(buildRouterInterface()); |
| 5801 return o; | 5801 return o; |
| 5802 } | 5802 } |
| 5803 | 5803 |
| 5804 checkUnnamed2104(core.List<api.RouterInterface> o) { | 5804 checkUnnamed2198(core.List<api.RouterInterface> o) { |
| 5805 unittest.expect(o, unittest.hasLength(2)); | 5805 unittest.expect(o, unittest.hasLength(2)); |
| 5806 checkRouterInterface(o[0]); | 5806 checkRouterInterface(o[0]); |
| 5807 checkRouterInterface(o[1]); | 5807 checkRouterInterface(o[1]); |
| 5808 } | 5808 } |
| 5809 | 5809 |
| 5810 core.int buildCounterRouter = 0; | 5810 core.int buildCounterRouter = 0; |
| 5811 buildRouter() { | 5811 buildRouter() { |
| 5812 var o = new api.Router(); | 5812 var o = new api.Router(); |
| 5813 buildCounterRouter++; | 5813 buildCounterRouter++; |
| 5814 if (buildCounterRouter < 3) { | 5814 if (buildCounterRouter < 3) { |
| 5815 o.bgp = buildRouterBgp(); | 5815 o.bgp = buildRouterBgp(); |
| 5816 o.bgpPeers = buildUnnamed2103(); | 5816 o.bgpPeers = buildUnnamed2197(); |
| 5817 o.creationTimestamp = "foo"; | 5817 o.creationTimestamp = "foo"; |
| 5818 o.description = "foo"; | 5818 o.description = "foo"; |
| 5819 o.id = "foo"; | 5819 o.id = "foo"; |
| 5820 o.interfaces = buildUnnamed2104(); | 5820 o.interfaces = buildUnnamed2198(); |
| 5821 o.kind = "foo"; | 5821 o.kind = "foo"; |
| 5822 o.name = "foo"; | 5822 o.name = "foo"; |
| 5823 o.network = "foo"; | 5823 o.network = "foo"; |
| 5824 o.region = "foo"; | 5824 o.region = "foo"; |
| 5825 o.selfLink = "foo"; | 5825 o.selfLink = "foo"; |
| 5826 } | 5826 } |
| 5827 buildCounterRouter--; | 5827 buildCounterRouter--; |
| 5828 return o; | 5828 return o; |
| 5829 } | 5829 } |
| 5830 | 5830 |
| 5831 checkRouter(api.Router o) { | 5831 checkRouter(api.Router o) { |
| 5832 buildCounterRouter++; | 5832 buildCounterRouter++; |
| 5833 if (buildCounterRouter < 3) { | 5833 if (buildCounterRouter < 3) { |
| 5834 checkRouterBgp(o.bgp); | 5834 checkRouterBgp(o.bgp); |
| 5835 checkUnnamed2103(o.bgpPeers); | 5835 checkUnnamed2197(o.bgpPeers); |
| 5836 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 5836 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 5837 unittest.expect(o.description, unittest.equals('foo')); | 5837 unittest.expect(o.description, unittest.equals('foo')); |
| 5838 unittest.expect(o.id, unittest.equals('foo')); | 5838 unittest.expect(o.id, unittest.equals('foo')); |
| 5839 checkUnnamed2104(o.interfaces); | 5839 checkUnnamed2198(o.interfaces); |
| 5840 unittest.expect(o.kind, unittest.equals('foo')); | 5840 unittest.expect(o.kind, unittest.equals('foo')); |
| 5841 unittest.expect(o.name, unittest.equals('foo')); | 5841 unittest.expect(o.name, unittest.equals('foo')); |
| 5842 unittest.expect(o.network, unittest.equals('foo')); | 5842 unittest.expect(o.network, unittest.equals('foo')); |
| 5843 unittest.expect(o.region, unittest.equals('foo')); | 5843 unittest.expect(o.region, unittest.equals('foo')); |
| 5844 unittest.expect(o.selfLink, unittest.equals('foo')); | 5844 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5845 } | 5845 } |
| 5846 buildCounterRouter--; | 5846 buildCounterRouter--; |
| 5847 } | 5847 } |
| 5848 | 5848 |
| 5849 buildUnnamed2105() { | 5849 buildUnnamed2199() { |
| 5850 var o = new core.Map<core.String, api.RoutersScopedList>(); | 5850 var o = new core.Map<core.String, api.RoutersScopedList>(); |
| 5851 o["x"] = buildRoutersScopedList(); | 5851 o["x"] = buildRoutersScopedList(); |
| 5852 o["y"] = buildRoutersScopedList(); | 5852 o["y"] = buildRoutersScopedList(); |
| 5853 return o; | 5853 return o; |
| 5854 } | 5854 } |
| 5855 | 5855 |
| 5856 checkUnnamed2105(core.Map<core.String, api.RoutersScopedList> o) { | 5856 checkUnnamed2199(core.Map<core.String, api.RoutersScopedList> o) { |
| 5857 unittest.expect(o, unittest.hasLength(2)); | 5857 unittest.expect(o, unittest.hasLength(2)); |
| 5858 checkRoutersScopedList(o["x"]); | 5858 checkRoutersScopedList(o["x"]); |
| 5859 checkRoutersScopedList(o["y"]); | 5859 checkRoutersScopedList(o["y"]); |
| 5860 } | 5860 } |
| 5861 | 5861 |
| 5862 core.int buildCounterRouterAggregatedList = 0; | 5862 core.int buildCounterRouterAggregatedList = 0; |
| 5863 buildRouterAggregatedList() { | 5863 buildRouterAggregatedList() { |
| 5864 var o = new api.RouterAggregatedList(); | 5864 var o = new api.RouterAggregatedList(); |
| 5865 buildCounterRouterAggregatedList++; | 5865 buildCounterRouterAggregatedList++; |
| 5866 if (buildCounterRouterAggregatedList < 3) { | 5866 if (buildCounterRouterAggregatedList < 3) { |
| 5867 o.id = "foo"; | 5867 o.id = "foo"; |
| 5868 o.items = buildUnnamed2105(); | 5868 o.items = buildUnnamed2199(); |
| 5869 o.kind = "foo"; | 5869 o.kind = "foo"; |
| 5870 o.nextPageToken = "foo"; | 5870 o.nextPageToken = "foo"; |
| 5871 o.selfLink = "foo"; | 5871 o.selfLink = "foo"; |
| 5872 } | 5872 } |
| 5873 buildCounterRouterAggregatedList--; | 5873 buildCounterRouterAggregatedList--; |
| 5874 return o; | 5874 return o; |
| 5875 } | 5875 } |
| 5876 | 5876 |
| 5877 checkRouterAggregatedList(api.RouterAggregatedList o) { | 5877 checkRouterAggregatedList(api.RouterAggregatedList o) { |
| 5878 buildCounterRouterAggregatedList++; | 5878 buildCounterRouterAggregatedList++; |
| 5879 if (buildCounterRouterAggregatedList < 3) { | 5879 if (buildCounterRouterAggregatedList < 3) { |
| 5880 unittest.expect(o.id, unittest.equals('foo')); | 5880 unittest.expect(o.id, unittest.equals('foo')); |
| 5881 checkUnnamed2105(o.items); | 5881 checkUnnamed2199(o.items); |
| 5882 unittest.expect(o.kind, unittest.equals('foo')); | 5882 unittest.expect(o.kind, unittest.equals('foo')); |
| 5883 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5883 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5884 unittest.expect(o.selfLink, unittest.equals('foo')); | 5884 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5885 } | 5885 } |
| 5886 buildCounterRouterAggregatedList--; | 5886 buildCounterRouterAggregatedList--; |
| 5887 } | 5887 } |
| 5888 | 5888 |
| 5889 core.int buildCounterRouterBgp = 0; | 5889 core.int buildCounterRouterBgp = 0; |
| 5890 buildRouterBgp() { | 5890 buildRouterBgp() { |
| 5891 var o = new api.RouterBgp(); | 5891 var o = new api.RouterBgp(); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5950 checkRouterInterface(api.RouterInterface o) { | 5950 checkRouterInterface(api.RouterInterface o) { |
| 5951 buildCounterRouterInterface++; | 5951 buildCounterRouterInterface++; |
| 5952 if (buildCounterRouterInterface < 3) { | 5952 if (buildCounterRouterInterface < 3) { |
| 5953 unittest.expect(o.ipRange, unittest.equals('foo')); | 5953 unittest.expect(o.ipRange, unittest.equals('foo')); |
| 5954 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 5954 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 5955 unittest.expect(o.name, unittest.equals('foo')); | 5955 unittest.expect(o.name, unittest.equals('foo')); |
| 5956 } | 5956 } |
| 5957 buildCounterRouterInterface--; | 5957 buildCounterRouterInterface--; |
| 5958 } | 5958 } |
| 5959 | 5959 |
| 5960 buildUnnamed2106() { | 5960 buildUnnamed2200() { |
| 5961 var o = new core.List<api.Router>(); | 5961 var o = new core.List<api.Router>(); |
| 5962 o.add(buildRouter()); | 5962 o.add(buildRouter()); |
| 5963 o.add(buildRouter()); | 5963 o.add(buildRouter()); |
| 5964 return o; | 5964 return o; |
| 5965 } | 5965 } |
| 5966 | 5966 |
| 5967 checkUnnamed2106(core.List<api.Router> o) { | 5967 checkUnnamed2200(core.List<api.Router> o) { |
| 5968 unittest.expect(o, unittest.hasLength(2)); | 5968 unittest.expect(o, unittest.hasLength(2)); |
| 5969 checkRouter(o[0]); | 5969 checkRouter(o[0]); |
| 5970 checkRouter(o[1]); | 5970 checkRouter(o[1]); |
| 5971 } | 5971 } |
| 5972 | 5972 |
| 5973 core.int buildCounterRouterList = 0; | 5973 core.int buildCounterRouterList = 0; |
| 5974 buildRouterList() { | 5974 buildRouterList() { |
| 5975 var o = new api.RouterList(); | 5975 var o = new api.RouterList(); |
| 5976 buildCounterRouterList++; | 5976 buildCounterRouterList++; |
| 5977 if (buildCounterRouterList < 3) { | 5977 if (buildCounterRouterList < 3) { |
| 5978 o.id = "foo"; | 5978 o.id = "foo"; |
| 5979 o.items = buildUnnamed2106(); | 5979 o.items = buildUnnamed2200(); |
| 5980 o.kind = "foo"; | 5980 o.kind = "foo"; |
| 5981 o.nextPageToken = "foo"; | 5981 o.nextPageToken = "foo"; |
| 5982 o.selfLink = "foo"; | 5982 o.selfLink = "foo"; |
| 5983 } | 5983 } |
| 5984 buildCounterRouterList--; | 5984 buildCounterRouterList--; |
| 5985 return o; | 5985 return o; |
| 5986 } | 5986 } |
| 5987 | 5987 |
| 5988 checkRouterList(api.RouterList o) { | 5988 checkRouterList(api.RouterList o) { |
| 5989 buildCounterRouterList++; | 5989 buildCounterRouterList++; |
| 5990 if (buildCounterRouterList < 3) { | 5990 if (buildCounterRouterList < 3) { |
| 5991 unittest.expect(o.id, unittest.equals('foo')); | 5991 unittest.expect(o.id, unittest.equals('foo')); |
| 5992 checkUnnamed2106(o.items); | 5992 checkUnnamed2200(o.items); |
| 5993 unittest.expect(o.kind, unittest.equals('foo')); | 5993 unittest.expect(o.kind, unittest.equals('foo')); |
| 5994 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5994 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5995 unittest.expect(o.selfLink, unittest.equals('foo')); | 5995 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 5996 } | 5996 } |
| 5997 buildCounterRouterList--; | 5997 buildCounterRouterList--; |
| 5998 } | 5998 } |
| 5999 | 5999 |
| 6000 buildUnnamed2107() { | 6000 buildUnnamed2201() { |
| 6001 var o = new core.List<api.Route>(); | 6001 var o = new core.List<api.Route>(); |
| 6002 o.add(buildRoute()); | 6002 o.add(buildRoute()); |
| 6003 o.add(buildRoute()); | 6003 o.add(buildRoute()); |
| 6004 return o; | 6004 return o; |
| 6005 } | 6005 } |
| 6006 | 6006 |
| 6007 checkUnnamed2107(core.List<api.Route> o) { | 6007 checkUnnamed2201(core.List<api.Route> o) { |
| 6008 unittest.expect(o, unittest.hasLength(2)); | 6008 unittest.expect(o, unittest.hasLength(2)); |
| 6009 checkRoute(o[0]); | 6009 checkRoute(o[0]); |
| 6010 checkRoute(o[1]); | 6010 checkRoute(o[1]); |
| 6011 } | 6011 } |
| 6012 | 6012 |
| 6013 buildUnnamed2108() { | 6013 buildUnnamed2202() { |
| 6014 var o = new core.List<api.RouterStatusBgpPeerStatus>(); | 6014 var o = new core.List<api.RouterStatusBgpPeerStatus>(); |
| 6015 o.add(buildRouterStatusBgpPeerStatus()); | 6015 o.add(buildRouterStatusBgpPeerStatus()); |
| 6016 o.add(buildRouterStatusBgpPeerStatus()); | 6016 o.add(buildRouterStatusBgpPeerStatus()); |
| 6017 return o; | 6017 return o; |
| 6018 } | 6018 } |
| 6019 | 6019 |
| 6020 checkUnnamed2108(core.List<api.RouterStatusBgpPeerStatus> o) { | 6020 checkUnnamed2202(core.List<api.RouterStatusBgpPeerStatus> o) { |
| 6021 unittest.expect(o, unittest.hasLength(2)); | 6021 unittest.expect(o, unittest.hasLength(2)); |
| 6022 checkRouterStatusBgpPeerStatus(o[0]); | 6022 checkRouterStatusBgpPeerStatus(o[0]); |
| 6023 checkRouterStatusBgpPeerStatus(o[1]); | 6023 checkRouterStatusBgpPeerStatus(o[1]); |
| 6024 } | 6024 } |
| 6025 | 6025 |
| 6026 core.int buildCounterRouterStatus = 0; | 6026 core.int buildCounterRouterStatus = 0; |
| 6027 buildRouterStatus() { | 6027 buildRouterStatus() { |
| 6028 var o = new api.RouterStatus(); | 6028 var o = new api.RouterStatus(); |
| 6029 buildCounterRouterStatus++; | 6029 buildCounterRouterStatus++; |
| 6030 if (buildCounterRouterStatus < 3) { | 6030 if (buildCounterRouterStatus < 3) { |
| 6031 o.bestRoutes = buildUnnamed2107(); | 6031 o.bestRoutes = buildUnnamed2201(); |
| 6032 o.bgpPeerStatus = buildUnnamed2108(); | 6032 o.bgpPeerStatus = buildUnnamed2202(); |
| 6033 o.network = "foo"; | 6033 o.network = "foo"; |
| 6034 } | 6034 } |
| 6035 buildCounterRouterStatus--; | 6035 buildCounterRouterStatus--; |
| 6036 return o; | 6036 return o; |
| 6037 } | 6037 } |
| 6038 | 6038 |
| 6039 checkRouterStatus(api.RouterStatus o) { | 6039 checkRouterStatus(api.RouterStatus o) { |
| 6040 buildCounterRouterStatus++; | 6040 buildCounterRouterStatus++; |
| 6041 if (buildCounterRouterStatus < 3) { | 6041 if (buildCounterRouterStatus < 3) { |
| 6042 checkUnnamed2107(o.bestRoutes); | 6042 checkUnnamed2201(o.bestRoutes); |
| 6043 checkUnnamed2108(o.bgpPeerStatus); | 6043 checkUnnamed2202(o.bgpPeerStatus); |
| 6044 unittest.expect(o.network, unittest.equals('foo')); | 6044 unittest.expect(o.network, unittest.equals('foo')); |
| 6045 } | 6045 } |
| 6046 buildCounterRouterStatus--; | 6046 buildCounterRouterStatus--; |
| 6047 } | 6047 } |
| 6048 | 6048 |
| 6049 buildUnnamed2109() { | 6049 buildUnnamed2203() { |
| 6050 var o = new core.List<api.Route>(); | 6050 var o = new core.List<api.Route>(); |
| 6051 o.add(buildRoute()); | 6051 o.add(buildRoute()); |
| 6052 o.add(buildRoute()); | 6052 o.add(buildRoute()); |
| 6053 return o; | 6053 return o; |
| 6054 } | 6054 } |
| 6055 | 6055 |
| 6056 checkUnnamed2109(core.List<api.Route> o) { | 6056 checkUnnamed2203(core.List<api.Route> o) { |
| 6057 unittest.expect(o, unittest.hasLength(2)); | 6057 unittest.expect(o, unittest.hasLength(2)); |
| 6058 checkRoute(o[0]); | 6058 checkRoute(o[0]); |
| 6059 checkRoute(o[1]); | 6059 checkRoute(o[1]); |
| 6060 } | 6060 } |
| 6061 | 6061 |
| 6062 core.int buildCounterRouterStatusBgpPeerStatus = 0; | 6062 core.int buildCounterRouterStatusBgpPeerStatus = 0; |
| 6063 buildRouterStatusBgpPeerStatus() { | 6063 buildRouterStatusBgpPeerStatus() { |
| 6064 var o = new api.RouterStatusBgpPeerStatus(); | 6064 var o = new api.RouterStatusBgpPeerStatus(); |
| 6065 buildCounterRouterStatusBgpPeerStatus++; | 6065 buildCounterRouterStatusBgpPeerStatus++; |
| 6066 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 6066 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 6067 o.advertisedRoutes = buildUnnamed2109(); | 6067 o.advertisedRoutes = buildUnnamed2203(); |
| 6068 o.ipAddress = "foo"; | 6068 o.ipAddress = "foo"; |
| 6069 o.linkedVpnTunnel = "foo"; | 6069 o.linkedVpnTunnel = "foo"; |
| 6070 o.name = "foo"; | 6070 o.name = "foo"; |
| 6071 o.numLearnedRoutes = 42; | 6071 o.numLearnedRoutes = 42; |
| 6072 o.peerIpAddress = "foo"; | 6072 o.peerIpAddress = "foo"; |
| 6073 o.state = "foo"; | 6073 o.state = "foo"; |
| 6074 o.status = "foo"; | 6074 o.status = "foo"; |
| 6075 o.uptime = "foo"; | 6075 o.uptime = "foo"; |
| 6076 o.uptimeSeconds = "foo"; | 6076 o.uptimeSeconds = "foo"; |
| 6077 } | 6077 } |
| 6078 buildCounterRouterStatusBgpPeerStatus--; | 6078 buildCounterRouterStatusBgpPeerStatus--; |
| 6079 return o; | 6079 return o; |
| 6080 } | 6080 } |
| 6081 | 6081 |
| 6082 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { | 6082 checkRouterStatusBgpPeerStatus(api.RouterStatusBgpPeerStatus o) { |
| 6083 buildCounterRouterStatusBgpPeerStatus++; | 6083 buildCounterRouterStatusBgpPeerStatus++; |
| 6084 if (buildCounterRouterStatusBgpPeerStatus < 3) { | 6084 if (buildCounterRouterStatusBgpPeerStatus < 3) { |
| 6085 checkUnnamed2109(o.advertisedRoutes); | 6085 checkUnnamed2203(o.advertisedRoutes); |
| 6086 unittest.expect(o.ipAddress, unittest.equals('foo')); | 6086 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 6087 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); | 6087 unittest.expect(o.linkedVpnTunnel, unittest.equals('foo')); |
| 6088 unittest.expect(o.name, unittest.equals('foo')); | 6088 unittest.expect(o.name, unittest.equals('foo')); |
| 6089 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); | 6089 unittest.expect(o.numLearnedRoutes, unittest.equals(42)); |
| 6090 unittest.expect(o.peerIpAddress, unittest.equals('foo')); | 6090 unittest.expect(o.peerIpAddress, unittest.equals('foo')); |
| 6091 unittest.expect(o.state, unittest.equals('foo')); | 6091 unittest.expect(o.state, unittest.equals('foo')); |
| 6092 unittest.expect(o.status, unittest.equals('foo')); | 6092 unittest.expect(o.status, unittest.equals('foo')); |
| 6093 unittest.expect(o.uptime, unittest.equals('foo')); | 6093 unittest.expect(o.uptime, unittest.equals('foo')); |
| 6094 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); | 6094 unittest.expect(o.uptimeSeconds, unittest.equals('foo')); |
| 6095 } | 6095 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6129 } | 6129 } |
| 6130 | 6130 |
| 6131 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { | 6131 checkRoutersPreviewResponse(api.RoutersPreviewResponse o) { |
| 6132 buildCounterRoutersPreviewResponse++; | 6132 buildCounterRoutersPreviewResponse++; |
| 6133 if (buildCounterRoutersPreviewResponse < 3) { | 6133 if (buildCounterRoutersPreviewResponse < 3) { |
| 6134 checkRouter(o.resource); | 6134 checkRouter(o.resource); |
| 6135 } | 6135 } |
| 6136 buildCounterRoutersPreviewResponse--; | 6136 buildCounterRoutersPreviewResponse--; |
| 6137 } | 6137 } |
| 6138 | 6138 |
| 6139 buildUnnamed2110() { | 6139 buildUnnamed2204() { |
| 6140 var o = new core.List<api.Router>(); | 6140 var o = new core.List<api.Router>(); |
| 6141 o.add(buildRouter()); | 6141 o.add(buildRouter()); |
| 6142 o.add(buildRouter()); | 6142 o.add(buildRouter()); |
| 6143 return o; | 6143 return o; |
| 6144 } | 6144 } |
| 6145 | 6145 |
| 6146 checkUnnamed2110(core.List<api.Router> o) { | 6146 checkUnnamed2204(core.List<api.Router> o) { |
| 6147 unittest.expect(o, unittest.hasLength(2)); | 6147 unittest.expect(o, unittest.hasLength(2)); |
| 6148 checkRouter(o[0]); | 6148 checkRouter(o[0]); |
| 6149 checkRouter(o[1]); | 6149 checkRouter(o[1]); |
| 6150 } | 6150 } |
| 6151 | 6151 |
| 6152 core.int buildCounterRoutersScopedListWarningData = 0; | 6152 core.int buildCounterRoutersScopedListWarningData = 0; |
| 6153 buildRoutersScopedListWarningData() { | 6153 buildRoutersScopedListWarningData() { |
| 6154 var o = new api.RoutersScopedListWarningData(); | 6154 var o = new api.RoutersScopedListWarningData(); |
| 6155 buildCounterRoutersScopedListWarningData++; | 6155 buildCounterRoutersScopedListWarningData++; |
| 6156 if (buildCounterRoutersScopedListWarningData < 3) { | 6156 if (buildCounterRoutersScopedListWarningData < 3) { |
| 6157 o.key = "foo"; | 6157 o.key = "foo"; |
| 6158 o.value = "foo"; | 6158 o.value = "foo"; |
| 6159 } | 6159 } |
| 6160 buildCounterRoutersScopedListWarningData--; | 6160 buildCounterRoutersScopedListWarningData--; |
| 6161 return o; | 6161 return o; |
| 6162 } | 6162 } |
| 6163 | 6163 |
| 6164 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { | 6164 checkRoutersScopedListWarningData(api.RoutersScopedListWarningData o) { |
| 6165 buildCounterRoutersScopedListWarningData++; | 6165 buildCounterRoutersScopedListWarningData++; |
| 6166 if (buildCounterRoutersScopedListWarningData < 3) { | 6166 if (buildCounterRoutersScopedListWarningData < 3) { |
| 6167 unittest.expect(o.key, unittest.equals('foo')); | 6167 unittest.expect(o.key, unittest.equals('foo')); |
| 6168 unittest.expect(o.value, unittest.equals('foo')); | 6168 unittest.expect(o.value, unittest.equals('foo')); |
| 6169 } | 6169 } |
| 6170 buildCounterRoutersScopedListWarningData--; | 6170 buildCounterRoutersScopedListWarningData--; |
| 6171 } | 6171 } |
| 6172 | 6172 |
| 6173 buildUnnamed2111() { | 6173 buildUnnamed2205() { |
| 6174 var o = new core.List<api.RoutersScopedListWarningData>(); | 6174 var o = new core.List<api.RoutersScopedListWarningData>(); |
| 6175 o.add(buildRoutersScopedListWarningData()); | 6175 o.add(buildRoutersScopedListWarningData()); |
| 6176 o.add(buildRoutersScopedListWarningData()); | 6176 o.add(buildRoutersScopedListWarningData()); |
| 6177 return o; | 6177 return o; |
| 6178 } | 6178 } |
| 6179 | 6179 |
| 6180 checkUnnamed2111(core.List<api.RoutersScopedListWarningData> o) { | 6180 checkUnnamed2205(core.List<api.RoutersScopedListWarningData> o) { |
| 6181 unittest.expect(o, unittest.hasLength(2)); | 6181 unittest.expect(o, unittest.hasLength(2)); |
| 6182 checkRoutersScopedListWarningData(o[0]); | 6182 checkRoutersScopedListWarningData(o[0]); |
| 6183 checkRoutersScopedListWarningData(o[1]); | 6183 checkRoutersScopedListWarningData(o[1]); |
| 6184 } | 6184 } |
| 6185 | 6185 |
| 6186 core.int buildCounterRoutersScopedListWarning = 0; | 6186 core.int buildCounterRoutersScopedListWarning = 0; |
| 6187 buildRoutersScopedListWarning() { | 6187 buildRoutersScopedListWarning() { |
| 6188 var o = new api.RoutersScopedListWarning(); | 6188 var o = new api.RoutersScopedListWarning(); |
| 6189 buildCounterRoutersScopedListWarning++; | 6189 buildCounterRoutersScopedListWarning++; |
| 6190 if (buildCounterRoutersScopedListWarning < 3) { | 6190 if (buildCounterRoutersScopedListWarning < 3) { |
| 6191 o.code = "foo"; | 6191 o.code = "foo"; |
| 6192 o.data = buildUnnamed2111(); | 6192 o.data = buildUnnamed2205(); |
| 6193 o.message = "foo"; | 6193 o.message = "foo"; |
| 6194 } | 6194 } |
| 6195 buildCounterRoutersScopedListWarning--; | 6195 buildCounterRoutersScopedListWarning--; |
| 6196 return o; | 6196 return o; |
| 6197 } | 6197 } |
| 6198 | 6198 |
| 6199 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { | 6199 checkRoutersScopedListWarning(api.RoutersScopedListWarning o) { |
| 6200 buildCounterRoutersScopedListWarning++; | 6200 buildCounterRoutersScopedListWarning++; |
| 6201 if (buildCounterRoutersScopedListWarning < 3) { | 6201 if (buildCounterRoutersScopedListWarning < 3) { |
| 6202 unittest.expect(o.code, unittest.equals('foo')); | 6202 unittest.expect(o.code, unittest.equals('foo')); |
| 6203 checkUnnamed2111(o.data); | 6203 checkUnnamed2205(o.data); |
| 6204 unittest.expect(o.message, unittest.equals('foo')); | 6204 unittest.expect(o.message, unittest.equals('foo')); |
| 6205 } | 6205 } |
| 6206 buildCounterRoutersScopedListWarning--; | 6206 buildCounterRoutersScopedListWarning--; |
| 6207 } | 6207 } |
| 6208 | 6208 |
| 6209 core.int buildCounterRoutersScopedList = 0; | 6209 core.int buildCounterRoutersScopedList = 0; |
| 6210 buildRoutersScopedList() { | 6210 buildRoutersScopedList() { |
| 6211 var o = new api.RoutersScopedList(); | 6211 var o = new api.RoutersScopedList(); |
| 6212 buildCounterRoutersScopedList++; | 6212 buildCounterRoutersScopedList++; |
| 6213 if (buildCounterRoutersScopedList < 3) { | 6213 if (buildCounterRoutersScopedList < 3) { |
| 6214 o.routers = buildUnnamed2110(); | 6214 o.routers = buildUnnamed2204(); |
| 6215 o.warning = buildRoutersScopedListWarning(); | 6215 o.warning = buildRoutersScopedListWarning(); |
| 6216 } | 6216 } |
| 6217 buildCounterRoutersScopedList--; | 6217 buildCounterRoutersScopedList--; |
| 6218 return o; | 6218 return o; |
| 6219 } | 6219 } |
| 6220 | 6220 |
| 6221 checkRoutersScopedList(api.RoutersScopedList o) { | 6221 checkRoutersScopedList(api.RoutersScopedList o) { |
| 6222 buildCounterRoutersScopedList++; | 6222 buildCounterRoutersScopedList++; |
| 6223 if (buildCounterRoutersScopedList < 3) { | 6223 if (buildCounterRoutersScopedList < 3) { |
| 6224 checkUnnamed2110(o.routers); | 6224 checkUnnamed2204(o.routers); |
| 6225 checkRoutersScopedListWarning(o.warning); | 6225 checkRoutersScopedListWarning(o.warning); |
| 6226 } | 6226 } |
| 6227 buildCounterRoutersScopedList--; | 6227 buildCounterRoutersScopedList--; |
| 6228 } | 6228 } |
| 6229 | 6229 |
| 6230 core.int buildCounterSSLHealthCheck = 0; | 6230 core.int buildCounterSSLHealthCheck = 0; |
| 6231 buildSSLHealthCheck() { | 6231 buildSSLHealthCheck() { |
| 6232 var o = new api.SSLHealthCheck(); | 6232 var o = new api.SSLHealthCheck(); |
| 6233 buildCounterSSLHealthCheck++; | 6233 buildCounterSSLHealthCheck++; |
| 6234 if (buildCounterSSLHealthCheck < 3) { | 6234 if (buildCounterSSLHealthCheck < 3) { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6297 if (buildCounterSerialPortOutput < 3) { | 6297 if (buildCounterSerialPortOutput < 3) { |
| 6298 unittest.expect(o.contents, unittest.equals('foo')); | 6298 unittest.expect(o.contents, unittest.equals('foo')); |
| 6299 unittest.expect(o.kind, unittest.equals('foo')); | 6299 unittest.expect(o.kind, unittest.equals('foo')); |
| 6300 unittest.expect(o.next, unittest.equals('foo')); | 6300 unittest.expect(o.next, unittest.equals('foo')); |
| 6301 unittest.expect(o.selfLink, unittest.equals('foo')); | 6301 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6302 unittest.expect(o.start, unittest.equals('foo')); | 6302 unittest.expect(o.start, unittest.equals('foo')); |
| 6303 } | 6303 } |
| 6304 buildCounterSerialPortOutput--; | 6304 buildCounterSerialPortOutput--; |
| 6305 } | 6305 } |
| 6306 | 6306 |
| 6307 buildUnnamed2112() { | 6307 buildUnnamed2206() { |
| 6308 var o = new core.List<core.String>(); | 6308 var o = new core.List<core.String>(); |
| 6309 o.add("foo"); | 6309 o.add("foo"); |
| 6310 o.add("foo"); | 6310 o.add("foo"); |
| 6311 return o; | 6311 return o; |
| 6312 } | 6312 } |
| 6313 | 6313 |
| 6314 checkUnnamed2112(core.List<core.String> o) { | 6314 checkUnnamed2206(core.List<core.String> o) { |
| 6315 unittest.expect(o, unittest.hasLength(2)); | 6315 unittest.expect(o, unittest.hasLength(2)); |
| 6316 unittest.expect(o[0], unittest.equals('foo')); | 6316 unittest.expect(o[0], unittest.equals('foo')); |
| 6317 unittest.expect(o[1], unittest.equals('foo')); | 6317 unittest.expect(o[1], unittest.equals('foo')); |
| 6318 } | 6318 } |
| 6319 | 6319 |
| 6320 core.int buildCounterServiceAccount = 0; | 6320 core.int buildCounterServiceAccount = 0; |
| 6321 buildServiceAccount() { | 6321 buildServiceAccount() { |
| 6322 var o = new api.ServiceAccount(); | 6322 var o = new api.ServiceAccount(); |
| 6323 buildCounterServiceAccount++; | 6323 buildCounterServiceAccount++; |
| 6324 if (buildCounterServiceAccount < 3) { | 6324 if (buildCounterServiceAccount < 3) { |
| 6325 o.email = "foo"; | 6325 o.email = "foo"; |
| 6326 o.scopes = buildUnnamed2112(); | 6326 o.scopes = buildUnnamed2206(); |
| 6327 } | 6327 } |
| 6328 buildCounterServiceAccount--; | 6328 buildCounterServiceAccount--; |
| 6329 return o; | 6329 return o; |
| 6330 } | 6330 } |
| 6331 | 6331 |
| 6332 checkServiceAccount(api.ServiceAccount o) { | 6332 checkServiceAccount(api.ServiceAccount o) { |
| 6333 buildCounterServiceAccount++; | 6333 buildCounterServiceAccount++; |
| 6334 if (buildCounterServiceAccount < 3) { | 6334 if (buildCounterServiceAccount < 3) { |
| 6335 unittest.expect(o.email, unittest.equals('foo')); | 6335 unittest.expect(o.email, unittest.equals('foo')); |
| 6336 checkUnnamed2112(o.scopes); | 6336 checkUnnamed2206(o.scopes); |
| 6337 } | 6337 } |
| 6338 buildCounterServiceAccount--; | 6338 buildCounterServiceAccount--; |
| 6339 } | 6339 } |
| 6340 | 6340 |
| 6341 buildUnnamed2113() { | 6341 buildUnnamed2207() { |
| 6342 var o = new core.List<core.String>(); | 6342 var o = new core.List<core.String>(); |
| 6343 o.add("foo"); | 6343 o.add("foo"); |
| 6344 o.add("foo"); | 6344 o.add("foo"); |
| 6345 return o; | 6345 return o; |
| 6346 } | 6346 } |
| 6347 | 6347 |
| 6348 checkUnnamed2113(core.List<core.String> o) { | 6348 checkUnnamed2207(core.List<core.String> o) { |
| 6349 unittest.expect(o, unittest.hasLength(2)); | 6349 unittest.expect(o, unittest.hasLength(2)); |
| 6350 unittest.expect(o[0], unittest.equals('foo')); | 6350 unittest.expect(o[0], unittest.equals('foo')); |
| 6351 unittest.expect(o[1], unittest.equals('foo')); | 6351 unittest.expect(o[1], unittest.equals('foo')); |
| 6352 } | 6352 } |
| 6353 | 6353 |
| 6354 core.int buildCounterSnapshot = 0; | 6354 core.int buildCounterSnapshot = 0; |
| 6355 buildSnapshot() { | 6355 buildSnapshot() { |
| 6356 var o = new api.Snapshot(); | 6356 var o = new api.Snapshot(); |
| 6357 buildCounterSnapshot++; | 6357 buildCounterSnapshot++; |
| 6358 if (buildCounterSnapshot < 3) { | 6358 if (buildCounterSnapshot < 3) { |
| 6359 o.creationTimestamp = "foo"; | 6359 o.creationTimestamp = "foo"; |
| 6360 o.description = "foo"; | 6360 o.description = "foo"; |
| 6361 o.diskSizeGb = "foo"; | 6361 o.diskSizeGb = "foo"; |
| 6362 o.id = "foo"; | 6362 o.id = "foo"; |
| 6363 o.kind = "foo"; | 6363 o.kind = "foo"; |
| 6364 o.licenses = buildUnnamed2113(); | 6364 o.licenses = buildUnnamed2207(); |
| 6365 o.name = "foo"; | 6365 o.name = "foo"; |
| 6366 o.selfLink = "foo"; | 6366 o.selfLink = "foo"; |
| 6367 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); | 6367 o.snapshotEncryptionKey = buildCustomerEncryptionKey(); |
| 6368 o.sourceDisk = "foo"; | 6368 o.sourceDisk = "foo"; |
| 6369 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); | 6369 o.sourceDiskEncryptionKey = buildCustomerEncryptionKey(); |
| 6370 o.sourceDiskId = "foo"; | 6370 o.sourceDiskId = "foo"; |
| 6371 o.status = "foo"; | 6371 o.status = "foo"; |
| 6372 o.storageBytes = "foo"; | 6372 o.storageBytes = "foo"; |
| 6373 o.storageBytesStatus = "foo"; | 6373 o.storageBytesStatus = "foo"; |
| 6374 } | 6374 } |
| 6375 buildCounterSnapshot--; | 6375 buildCounterSnapshot--; |
| 6376 return o; | 6376 return o; |
| 6377 } | 6377 } |
| 6378 | 6378 |
| 6379 checkSnapshot(api.Snapshot o) { | 6379 checkSnapshot(api.Snapshot o) { |
| 6380 buildCounterSnapshot++; | 6380 buildCounterSnapshot++; |
| 6381 if (buildCounterSnapshot < 3) { | 6381 if (buildCounterSnapshot < 3) { |
| 6382 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6382 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6383 unittest.expect(o.description, unittest.equals('foo')); | 6383 unittest.expect(o.description, unittest.equals('foo')); |
| 6384 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 6384 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 6385 unittest.expect(o.id, unittest.equals('foo')); | 6385 unittest.expect(o.id, unittest.equals('foo')); |
| 6386 unittest.expect(o.kind, unittest.equals('foo')); | 6386 unittest.expect(o.kind, unittest.equals('foo')); |
| 6387 checkUnnamed2113(o.licenses); | 6387 checkUnnamed2207(o.licenses); |
| 6388 unittest.expect(o.name, unittest.equals('foo')); | 6388 unittest.expect(o.name, unittest.equals('foo')); |
| 6389 unittest.expect(o.selfLink, unittest.equals('foo')); | 6389 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6390 checkCustomerEncryptionKey(o.snapshotEncryptionKey); | 6390 checkCustomerEncryptionKey(o.snapshotEncryptionKey); |
| 6391 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 6391 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 6392 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); | 6392 checkCustomerEncryptionKey(o.sourceDiskEncryptionKey); |
| 6393 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 6393 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 6394 unittest.expect(o.status, unittest.equals('foo')); | 6394 unittest.expect(o.status, unittest.equals('foo')); |
| 6395 unittest.expect(o.storageBytes, unittest.equals('foo')); | 6395 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 6396 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 6396 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 6397 } | 6397 } |
| 6398 buildCounterSnapshot--; | 6398 buildCounterSnapshot--; |
| 6399 } | 6399 } |
| 6400 | 6400 |
| 6401 buildUnnamed2114() { | 6401 buildUnnamed2208() { |
| 6402 var o = new core.List<api.Snapshot>(); | 6402 var o = new core.List<api.Snapshot>(); |
| 6403 o.add(buildSnapshot()); | 6403 o.add(buildSnapshot()); |
| 6404 o.add(buildSnapshot()); | 6404 o.add(buildSnapshot()); |
| 6405 return o; | 6405 return o; |
| 6406 } | 6406 } |
| 6407 | 6407 |
| 6408 checkUnnamed2114(core.List<api.Snapshot> o) { | 6408 checkUnnamed2208(core.List<api.Snapshot> o) { |
| 6409 unittest.expect(o, unittest.hasLength(2)); | 6409 unittest.expect(o, unittest.hasLength(2)); |
| 6410 checkSnapshot(o[0]); | 6410 checkSnapshot(o[0]); |
| 6411 checkSnapshot(o[1]); | 6411 checkSnapshot(o[1]); |
| 6412 } | 6412 } |
| 6413 | 6413 |
| 6414 core.int buildCounterSnapshotList = 0; | 6414 core.int buildCounterSnapshotList = 0; |
| 6415 buildSnapshotList() { | 6415 buildSnapshotList() { |
| 6416 var o = new api.SnapshotList(); | 6416 var o = new api.SnapshotList(); |
| 6417 buildCounterSnapshotList++; | 6417 buildCounterSnapshotList++; |
| 6418 if (buildCounterSnapshotList < 3) { | 6418 if (buildCounterSnapshotList < 3) { |
| 6419 o.id = "foo"; | 6419 o.id = "foo"; |
| 6420 o.items = buildUnnamed2114(); | 6420 o.items = buildUnnamed2208(); |
| 6421 o.kind = "foo"; | 6421 o.kind = "foo"; |
| 6422 o.nextPageToken = "foo"; | 6422 o.nextPageToken = "foo"; |
| 6423 o.selfLink = "foo"; | 6423 o.selfLink = "foo"; |
| 6424 } | 6424 } |
| 6425 buildCounterSnapshotList--; | 6425 buildCounterSnapshotList--; |
| 6426 return o; | 6426 return o; |
| 6427 } | 6427 } |
| 6428 | 6428 |
| 6429 checkSnapshotList(api.SnapshotList o) { | 6429 checkSnapshotList(api.SnapshotList o) { |
| 6430 buildCounterSnapshotList++; | 6430 buildCounterSnapshotList++; |
| 6431 if (buildCounterSnapshotList < 3) { | 6431 if (buildCounterSnapshotList < 3) { |
| 6432 unittest.expect(o.id, unittest.equals('foo')); | 6432 unittest.expect(o.id, unittest.equals('foo')); |
| 6433 checkUnnamed2114(o.items); | 6433 checkUnnamed2208(o.items); |
| 6434 unittest.expect(o.kind, unittest.equals('foo')); | 6434 unittest.expect(o.kind, unittest.equals('foo')); |
| 6435 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6435 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6436 unittest.expect(o.selfLink, unittest.equals('foo')); | 6436 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6437 } | 6437 } |
| 6438 buildCounterSnapshotList--; | 6438 buildCounterSnapshotList--; |
| 6439 } | 6439 } |
| 6440 | 6440 |
| 6441 core.int buildCounterSslCertificate = 0; | 6441 core.int buildCounterSslCertificate = 0; |
| 6442 buildSslCertificate() { | 6442 buildSslCertificate() { |
| 6443 var o = new api.SslCertificate(); | 6443 var o = new api.SslCertificate(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 6464 unittest.expect(o.description, unittest.equals('foo')); | 6464 unittest.expect(o.description, unittest.equals('foo')); |
| 6465 unittest.expect(o.id, unittest.equals('foo')); | 6465 unittest.expect(o.id, unittest.equals('foo')); |
| 6466 unittest.expect(o.kind, unittest.equals('foo')); | 6466 unittest.expect(o.kind, unittest.equals('foo')); |
| 6467 unittest.expect(o.name, unittest.equals('foo')); | 6467 unittest.expect(o.name, unittest.equals('foo')); |
| 6468 unittest.expect(o.privateKey, unittest.equals('foo')); | 6468 unittest.expect(o.privateKey, unittest.equals('foo')); |
| 6469 unittest.expect(o.selfLink, unittest.equals('foo')); | 6469 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6470 } | 6470 } |
| 6471 buildCounterSslCertificate--; | 6471 buildCounterSslCertificate--; |
| 6472 } | 6472 } |
| 6473 | 6473 |
| 6474 buildUnnamed2115() { | 6474 buildUnnamed2209() { |
| 6475 var o = new core.List<api.SslCertificate>(); | 6475 var o = new core.List<api.SslCertificate>(); |
| 6476 o.add(buildSslCertificate()); | 6476 o.add(buildSslCertificate()); |
| 6477 o.add(buildSslCertificate()); | 6477 o.add(buildSslCertificate()); |
| 6478 return o; | 6478 return o; |
| 6479 } | 6479 } |
| 6480 | 6480 |
| 6481 checkUnnamed2115(core.List<api.SslCertificate> o) { | 6481 checkUnnamed2209(core.List<api.SslCertificate> o) { |
| 6482 unittest.expect(o, unittest.hasLength(2)); | 6482 unittest.expect(o, unittest.hasLength(2)); |
| 6483 checkSslCertificate(o[0]); | 6483 checkSslCertificate(o[0]); |
| 6484 checkSslCertificate(o[1]); | 6484 checkSslCertificate(o[1]); |
| 6485 } | 6485 } |
| 6486 | 6486 |
| 6487 core.int buildCounterSslCertificateList = 0; | 6487 core.int buildCounterSslCertificateList = 0; |
| 6488 buildSslCertificateList() { | 6488 buildSslCertificateList() { |
| 6489 var o = new api.SslCertificateList(); | 6489 var o = new api.SslCertificateList(); |
| 6490 buildCounterSslCertificateList++; | 6490 buildCounterSslCertificateList++; |
| 6491 if (buildCounterSslCertificateList < 3) { | 6491 if (buildCounterSslCertificateList < 3) { |
| 6492 o.id = "foo"; | 6492 o.id = "foo"; |
| 6493 o.items = buildUnnamed2115(); | 6493 o.items = buildUnnamed2209(); |
| 6494 o.kind = "foo"; | 6494 o.kind = "foo"; |
| 6495 o.nextPageToken = "foo"; | 6495 o.nextPageToken = "foo"; |
| 6496 o.selfLink = "foo"; | 6496 o.selfLink = "foo"; |
| 6497 } | 6497 } |
| 6498 buildCounterSslCertificateList--; | 6498 buildCounterSslCertificateList--; |
| 6499 return o; | 6499 return o; |
| 6500 } | 6500 } |
| 6501 | 6501 |
| 6502 checkSslCertificateList(api.SslCertificateList o) { | 6502 checkSslCertificateList(api.SslCertificateList o) { |
| 6503 buildCounterSslCertificateList++; | 6503 buildCounterSslCertificateList++; |
| 6504 if (buildCounterSslCertificateList < 3) { | 6504 if (buildCounterSslCertificateList < 3) { |
| 6505 unittest.expect(o.id, unittest.equals('foo')); | 6505 unittest.expect(o.id, unittest.equals('foo')); |
| 6506 checkUnnamed2115(o.items); | 6506 checkUnnamed2209(o.items); |
| 6507 unittest.expect(o.kind, unittest.equals('foo')); | 6507 unittest.expect(o.kind, unittest.equals('foo')); |
| 6508 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6508 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6509 unittest.expect(o.selfLink, unittest.equals('foo')); | 6509 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6510 } | 6510 } |
| 6511 buildCounterSslCertificateList--; | 6511 buildCounterSslCertificateList--; |
| 6512 } | 6512 } |
| 6513 | 6513 |
| 6514 core.int buildCounterSubnetwork = 0; | 6514 core.int buildCounterSubnetwork = 0; |
| 6515 buildSubnetwork() { | 6515 buildSubnetwork() { |
| 6516 var o = new api.Subnetwork(); | 6516 var o = new api.Subnetwork(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 6541 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 6541 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 6542 unittest.expect(o.kind, unittest.equals('foo')); | 6542 unittest.expect(o.kind, unittest.equals('foo')); |
| 6543 unittest.expect(o.name, unittest.equals('foo')); | 6543 unittest.expect(o.name, unittest.equals('foo')); |
| 6544 unittest.expect(o.network, unittest.equals('foo')); | 6544 unittest.expect(o.network, unittest.equals('foo')); |
| 6545 unittest.expect(o.region, unittest.equals('foo')); | 6545 unittest.expect(o.region, unittest.equals('foo')); |
| 6546 unittest.expect(o.selfLink, unittest.equals('foo')); | 6546 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6547 } | 6547 } |
| 6548 buildCounterSubnetwork--; | 6548 buildCounterSubnetwork--; |
| 6549 } | 6549 } |
| 6550 | 6550 |
| 6551 buildUnnamed2116() { | 6551 buildUnnamed2210() { |
| 6552 var o = new core.Map<core.String, api.SubnetworksScopedList>(); | 6552 var o = new core.Map<core.String, api.SubnetworksScopedList>(); |
| 6553 o["x"] = buildSubnetworksScopedList(); | 6553 o["x"] = buildSubnetworksScopedList(); |
| 6554 o["y"] = buildSubnetworksScopedList(); | 6554 o["y"] = buildSubnetworksScopedList(); |
| 6555 return o; | 6555 return o; |
| 6556 } | 6556 } |
| 6557 | 6557 |
| 6558 checkUnnamed2116(core.Map<core.String, api.SubnetworksScopedList> o) { | 6558 checkUnnamed2210(core.Map<core.String, api.SubnetworksScopedList> o) { |
| 6559 unittest.expect(o, unittest.hasLength(2)); | 6559 unittest.expect(o, unittest.hasLength(2)); |
| 6560 checkSubnetworksScopedList(o["x"]); | 6560 checkSubnetworksScopedList(o["x"]); |
| 6561 checkSubnetworksScopedList(o["y"]); | 6561 checkSubnetworksScopedList(o["y"]); |
| 6562 } | 6562 } |
| 6563 | 6563 |
| 6564 core.int buildCounterSubnetworkAggregatedList = 0; | 6564 core.int buildCounterSubnetworkAggregatedList = 0; |
| 6565 buildSubnetworkAggregatedList() { | 6565 buildSubnetworkAggregatedList() { |
| 6566 var o = new api.SubnetworkAggregatedList(); | 6566 var o = new api.SubnetworkAggregatedList(); |
| 6567 buildCounterSubnetworkAggregatedList++; | 6567 buildCounterSubnetworkAggregatedList++; |
| 6568 if (buildCounterSubnetworkAggregatedList < 3) { | 6568 if (buildCounterSubnetworkAggregatedList < 3) { |
| 6569 o.id = "foo"; | 6569 o.id = "foo"; |
| 6570 o.items = buildUnnamed2116(); | 6570 o.items = buildUnnamed2210(); |
| 6571 o.kind = "foo"; | 6571 o.kind = "foo"; |
| 6572 o.nextPageToken = "foo"; | 6572 o.nextPageToken = "foo"; |
| 6573 o.selfLink = "foo"; | 6573 o.selfLink = "foo"; |
| 6574 } | 6574 } |
| 6575 buildCounterSubnetworkAggregatedList--; | 6575 buildCounterSubnetworkAggregatedList--; |
| 6576 return o; | 6576 return o; |
| 6577 } | 6577 } |
| 6578 | 6578 |
| 6579 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { | 6579 checkSubnetworkAggregatedList(api.SubnetworkAggregatedList o) { |
| 6580 buildCounterSubnetworkAggregatedList++; | 6580 buildCounterSubnetworkAggregatedList++; |
| 6581 if (buildCounterSubnetworkAggregatedList < 3) { | 6581 if (buildCounterSubnetworkAggregatedList < 3) { |
| 6582 unittest.expect(o.id, unittest.equals('foo')); | 6582 unittest.expect(o.id, unittest.equals('foo')); |
| 6583 checkUnnamed2116(o.items); | 6583 checkUnnamed2210(o.items); |
| 6584 unittest.expect(o.kind, unittest.equals('foo')); | 6584 unittest.expect(o.kind, unittest.equals('foo')); |
| 6585 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6585 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6586 unittest.expect(o.selfLink, unittest.equals('foo')); | 6586 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6587 } | 6587 } |
| 6588 buildCounterSubnetworkAggregatedList--; | 6588 buildCounterSubnetworkAggregatedList--; |
| 6589 } | 6589 } |
| 6590 | 6590 |
| 6591 buildUnnamed2117() { | 6591 buildUnnamed2211() { |
| 6592 var o = new core.List<api.Subnetwork>(); | 6592 var o = new core.List<api.Subnetwork>(); |
| 6593 o.add(buildSubnetwork()); | 6593 o.add(buildSubnetwork()); |
| 6594 o.add(buildSubnetwork()); | 6594 o.add(buildSubnetwork()); |
| 6595 return o; | 6595 return o; |
| 6596 } | 6596 } |
| 6597 | 6597 |
| 6598 checkUnnamed2117(core.List<api.Subnetwork> o) { | 6598 checkUnnamed2211(core.List<api.Subnetwork> o) { |
| 6599 unittest.expect(o, unittest.hasLength(2)); | 6599 unittest.expect(o, unittest.hasLength(2)); |
| 6600 checkSubnetwork(o[0]); | 6600 checkSubnetwork(o[0]); |
| 6601 checkSubnetwork(o[1]); | 6601 checkSubnetwork(o[1]); |
| 6602 } | 6602 } |
| 6603 | 6603 |
| 6604 core.int buildCounterSubnetworkList = 0; | 6604 core.int buildCounterSubnetworkList = 0; |
| 6605 buildSubnetworkList() { | 6605 buildSubnetworkList() { |
| 6606 var o = new api.SubnetworkList(); | 6606 var o = new api.SubnetworkList(); |
| 6607 buildCounterSubnetworkList++; | 6607 buildCounterSubnetworkList++; |
| 6608 if (buildCounterSubnetworkList < 3) { | 6608 if (buildCounterSubnetworkList < 3) { |
| 6609 o.id = "foo"; | 6609 o.id = "foo"; |
| 6610 o.items = buildUnnamed2117(); | 6610 o.items = buildUnnamed2211(); |
| 6611 o.kind = "foo"; | 6611 o.kind = "foo"; |
| 6612 o.nextPageToken = "foo"; | 6612 o.nextPageToken = "foo"; |
| 6613 o.selfLink = "foo"; | 6613 o.selfLink = "foo"; |
| 6614 } | 6614 } |
| 6615 buildCounterSubnetworkList--; | 6615 buildCounterSubnetworkList--; |
| 6616 return o; | 6616 return o; |
| 6617 } | 6617 } |
| 6618 | 6618 |
| 6619 checkSubnetworkList(api.SubnetworkList o) { | 6619 checkSubnetworkList(api.SubnetworkList o) { |
| 6620 buildCounterSubnetworkList++; | 6620 buildCounterSubnetworkList++; |
| 6621 if (buildCounterSubnetworkList < 3) { | 6621 if (buildCounterSubnetworkList < 3) { |
| 6622 unittest.expect(o.id, unittest.equals('foo')); | 6622 unittest.expect(o.id, unittest.equals('foo')); |
| 6623 checkUnnamed2117(o.items); | 6623 checkUnnamed2211(o.items); |
| 6624 unittest.expect(o.kind, unittest.equals('foo')); | 6624 unittest.expect(o.kind, unittest.equals('foo')); |
| 6625 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6625 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6626 unittest.expect(o.selfLink, unittest.equals('foo')); | 6626 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6627 } | 6627 } |
| 6628 buildCounterSubnetworkList--; | 6628 buildCounterSubnetworkList--; |
| 6629 } | 6629 } |
| 6630 | 6630 |
| 6631 core.int buildCounterSubnetworksExpandIpCidrRangeRequest = 0; | 6631 core.int buildCounterSubnetworksExpandIpCidrRangeRequest = 0; |
| 6632 buildSubnetworksExpandIpCidrRangeRequest() { | 6632 buildSubnetworksExpandIpCidrRangeRequest() { |
| 6633 var o = new api.SubnetworksExpandIpCidrRangeRequest(); | 6633 var o = new api.SubnetworksExpandIpCidrRangeRequest(); |
| 6634 buildCounterSubnetworksExpandIpCidrRangeRequest++; | 6634 buildCounterSubnetworksExpandIpCidrRangeRequest++; |
| 6635 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { | 6635 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { |
| 6636 o.ipCidrRange = "foo"; | 6636 o.ipCidrRange = "foo"; |
| 6637 } | 6637 } |
| 6638 buildCounterSubnetworksExpandIpCidrRangeRequest--; | 6638 buildCounterSubnetworksExpandIpCidrRangeRequest--; |
| 6639 return o; | 6639 return o; |
| 6640 } | 6640 } |
| 6641 | 6641 |
| 6642 checkSubnetworksExpandIpCidrRangeRequest(api.SubnetworksExpandIpCidrRangeRequest
o) { | 6642 checkSubnetworksExpandIpCidrRangeRequest(api.SubnetworksExpandIpCidrRangeRequest
o) { |
| 6643 buildCounterSubnetworksExpandIpCidrRangeRequest++; | 6643 buildCounterSubnetworksExpandIpCidrRangeRequest++; |
| 6644 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { | 6644 if (buildCounterSubnetworksExpandIpCidrRangeRequest < 3) { |
| 6645 unittest.expect(o.ipCidrRange, unittest.equals('foo')); | 6645 unittest.expect(o.ipCidrRange, unittest.equals('foo')); |
| 6646 } | 6646 } |
| 6647 buildCounterSubnetworksExpandIpCidrRangeRequest--; | 6647 buildCounterSubnetworksExpandIpCidrRangeRequest--; |
| 6648 } | 6648 } |
| 6649 | 6649 |
| 6650 buildUnnamed2118() { | 6650 buildUnnamed2212() { |
| 6651 var o = new core.List<api.Subnetwork>(); | 6651 var o = new core.List<api.Subnetwork>(); |
| 6652 o.add(buildSubnetwork()); | 6652 o.add(buildSubnetwork()); |
| 6653 o.add(buildSubnetwork()); | 6653 o.add(buildSubnetwork()); |
| 6654 return o; | 6654 return o; |
| 6655 } | 6655 } |
| 6656 | 6656 |
| 6657 checkUnnamed2118(core.List<api.Subnetwork> o) { | 6657 checkUnnamed2212(core.List<api.Subnetwork> o) { |
| 6658 unittest.expect(o, unittest.hasLength(2)); | 6658 unittest.expect(o, unittest.hasLength(2)); |
| 6659 checkSubnetwork(o[0]); | 6659 checkSubnetwork(o[0]); |
| 6660 checkSubnetwork(o[1]); | 6660 checkSubnetwork(o[1]); |
| 6661 } | 6661 } |
| 6662 | 6662 |
| 6663 core.int buildCounterSubnetworksScopedListWarningData = 0; | 6663 core.int buildCounterSubnetworksScopedListWarningData = 0; |
| 6664 buildSubnetworksScopedListWarningData() { | 6664 buildSubnetworksScopedListWarningData() { |
| 6665 var o = new api.SubnetworksScopedListWarningData(); | 6665 var o = new api.SubnetworksScopedListWarningData(); |
| 6666 buildCounterSubnetworksScopedListWarningData++; | 6666 buildCounterSubnetworksScopedListWarningData++; |
| 6667 if (buildCounterSubnetworksScopedListWarningData < 3) { | 6667 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 6668 o.key = "foo"; | 6668 o.key = "foo"; |
| 6669 o.value = "foo"; | 6669 o.value = "foo"; |
| 6670 } | 6670 } |
| 6671 buildCounterSubnetworksScopedListWarningData--; | 6671 buildCounterSubnetworksScopedListWarningData--; |
| 6672 return o; | 6672 return o; |
| 6673 } | 6673 } |
| 6674 | 6674 |
| 6675 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { | 6675 checkSubnetworksScopedListWarningData(api.SubnetworksScopedListWarningData o) { |
| 6676 buildCounterSubnetworksScopedListWarningData++; | 6676 buildCounterSubnetworksScopedListWarningData++; |
| 6677 if (buildCounterSubnetworksScopedListWarningData < 3) { | 6677 if (buildCounterSubnetworksScopedListWarningData < 3) { |
| 6678 unittest.expect(o.key, unittest.equals('foo')); | 6678 unittest.expect(o.key, unittest.equals('foo')); |
| 6679 unittest.expect(o.value, unittest.equals('foo')); | 6679 unittest.expect(o.value, unittest.equals('foo')); |
| 6680 } | 6680 } |
| 6681 buildCounterSubnetworksScopedListWarningData--; | 6681 buildCounterSubnetworksScopedListWarningData--; |
| 6682 } | 6682 } |
| 6683 | 6683 |
| 6684 buildUnnamed2119() { | 6684 buildUnnamed2213() { |
| 6685 var o = new core.List<api.SubnetworksScopedListWarningData>(); | 6685 var o = new core.List<api.SubnetworksScopedListWarningData>(); |
| 6686 o.add(buildSubnetworksScopedListWarningData()); | 6686 o.add(buildSubnetworksScopedListWarningData()); |
| 6687 o.add(buildSubnetworksScopedListWarningData()); | 6687 o.add(buildSubnetworksScopedListWarningData()); |
| 6688 return o; | 6688 return o; |
| 6689 } | 6689 } |
| 6690 | 6690 |
| 6691 checkUnnamed2119(core.List<api.SubnetworksScopedListWarningData> o) { | 6691 checkUnnamed2213(core.List<api.SubnetworksScopedListWarningData> o) { |
| 6692 unittest.expect(o, unittest.hasLength(2)); | 6692 unittest.expect(o, unittest.hasLength(2)); |
| 6693 checkSubnetworksScopedListWarningData(o[0]); | 6693 checkSubnetworksScopedListWarningData(o[0]); |
| 6694 checkSubnetworksScopedListWarningData(o[1]); | 6694 checkSubnetworksScopedListWarningData(o[1]); |
| 6695 } | 6695 } |
| 6696 | 6696 |
| 6697 core.int buildCounterSubnetworksScopedListWarning = 0; | 6697 core.int buildCounterSubnetworksScopedListWarning = 0; |
| 6698 buildSubnetworksScopedListWarning() { | 6698 buildSubnetworksScopedListWarning() { |
| 6699 var o = new api.SubnetworksScopedListWarning(); | 6699 var o = new api.SubnetworksScopedListWarning(); |
| 6700 buildCounterSubnetworksScopedListWarning++; | 6700 buildCounterSubnetworksScopedListWarning++; |
| 6701 if (buildCounterSubnetworksScopedListWarning < 3) { | 6701 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 6702 o.code = "foo"; | 6702 o.code = "foo"; |
| 6703 o.data = buildUnnamed2119(); | 6703 o.data = buildUnnamed2213(); |
| 6704 o.message = "foo"; | 6704 o.message = "foo"; |
| 6705 } | 6705 } |
| 6706 buildCounterSubnetworksScopedListWarning--; | 6706 buildCounterSubnetworksScopedListWarning--; |
| 6707 return o; | 6707 return o; |
| 6708 } | 6708 } |
| 6709 | 6709 |
| 6710 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { | 6710 checkSubnetworksScopedListWarning(api.SubnetworksScopedListWarning o) { |
| 6711 buildCounterSubnetworksScopedListWarning++; | 6711 buildCounterSubnetworksScopedListWarning++; |
| 6712 if (buildCounterSubnetworksScopedListWarning < 3) { | 6712 if (buildCounterSubnetworksScopedListWarning < 3) { |
| 6713 unittest.expect(o.code, unittest.equals('foo')); | 6713 unittest.expect(o.code, unittest.equals('foo')); |
| 6714 checkUnnamed2119(o.data); | 6714 checkUnnamed2213(o.data); |
| 6715 unittest.expect(o.message, unittest.equals('foo')); | 6715 unittest.expect(o.message, unittest.equals('foo')); |
| 6716 } | 6716 } |
| 6717 buildCounterSubnetworksScopedListWarning--; | 6717 buildCounterSubnetworksScopedListWarning--; |
| 6718 } | 6718 } |
| 6719 | 6719 |
| 6720 core.int buildCounterSubnetworksScopedList = 0; | 6720 core.int buildCounterSubnetworksScopedList = 0; |
| 6721 buildSubnetworksScopedList() { | 6721 buildSubnetworksScopedList() { |
| 6722 var o = new api.SubnetworksScopedList(); | 6722 var o = new api.SubnetworksScopedList(); |
| 6723 buildCounterSubnetworksScopedList++; | 6723 buildCounterSubnetworksScopedList++; |
| 6724 if (buildCounterSubnetworksScopedList < 3) { | 6724 if (buildCounterSubnetworksScopedList < 3) { |
| 6725 o.subnetworks = buildUnnamed2118(); | 6725 o.subnetworks = buildUnnamed2212(); |
| 6726 o.warning = buildSubnetworksScopedListWarning(); | 6726 o.warning = buildSubnetworksScopedListWarning(); |
| 6727 } | 6727 } |
| 6728 buildCounterSubnetworksScopedList--; | 6728 buildCounterSubnetworksScopedList--; |
| 6729 return o; | 6729 return o; |
| 6730 } | 6730 } |
| 6731 | 6731 |
| 6732 checkSubnetworksScopedList(api.SubnetworksScopedList o) { | 6732 checkSubnetworksScopedList(api.SubnetworksScopedList o) { |
| 6733 buildCounterSubnetworksScopedList++; | 6733 buildCounterSubnetworksScopedList++; |
| 6734 if (buildCounterSubnetworksScopedList < 3) { | 6734 if (buildCounterSubnetworksScopedList < 3) { |
| 6735 checkUnnamed2118(o.subnetworks); | 6735 checkUnnamed2212(o.subnetworks); |
| 6736 checkSubnetworksScopedListWarning(o.warning); | 6736 checkSubnetworksScopedListWarning(o.warning); |
| 6737 } | 6737 } |
| 6738 buildCounterSubnetworksScopedList--; | 6738 buildCounterSubnetworksScopedList--; |
| 6739 } | 6739 } |
| 6740 | 6740 |
| 6741 core.int buildCounterTCPHealthCheck = 0; | 6741 core.int buildCounterTCPHealthCheck = 0; |
| 6742 buildTCPHealthCheck() { | 6742 buildTCPHealthCheck() { |
| 6743 var o = new api.TCPHealthCheck(); | 6743 var o = new api.TCPHealthCheck(); |
| 6744 buildCounterTCPHealthCheck++; | 6744 buildCounterTCPHealthCheck++; |
| 6745 if (buildCounterTCPHealthCheck < 3) { | 6745 if (buildCounterTCPHealthCheck < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 6758 if (buildCounterTCPHealthCheck < 3) { | 6758 if (buildCounterTCPHealthCheck < 3) { |
| 6759 unittest.expect(o.port, unittest.equals(42)); | 6759 unittest.expect(o.port, unittest.equals(42)); |
| 6760 unittest.expect(o.portName, unittest.equals('foo')); | 6760 unittest.expect(o.portName, unittest.equals('foo')); |
| 6761 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 6761 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 6762 unittest.expect(o.request, unittest.equals('foo')); | 6762 unittest.expect(o.request, unittest.equals('foo')); |
| 6763 unittest.expect(o.response, unittest.equals('foo')); | 6763 unittest.expect(o.response, unittest.equals('foo')); |
| 6764 } | 6764 } |
| 6765 buildCounterTCPHealthCheck--; | 6765 buildCounterTCPHealthCheck--; |
| 6766 } | 6766 } |
| 6767 | 6767 |
| 6768 buildUnnamed2120() { | 6768 buildUnnamed2214() { |
| 6769 var o = new core.List<core.String>(); | 6769 var o = new core.List<core.String>(); |
| 6770 o.add("foo"); | 6770 o.add("foo"); |
| 6771 o.add("foo"); | 6771 o.add("foo"); |
| 6772 return o; | 6772 return o; |
| 6773 } | 6773 } |
| 6774 | 6774 |
| 6775 checkUnnamed2120(core.List<core.String> o) { | 6775 checkUnnamed2214(core.List<core.String> o) { |
| 6776 unittest.expect(o, unittest.hasLength(2)); | 6776 unittest.expect(o, unittest.hasLength(2)); |
| 6777 unittest.expect(o[0], unittest.equals('foo')); | 6777 unittest.expect(o[0], unittest.equals('foo')); |
| 6778 unittest.expect(o[1], unittest.equals('foo')); | 6778 unittest.expect(o[1], unittest.equals('foo')); |
| 6779 } | 6779 } |
| 6780 | 6780 |
| 6781 core.int buildCounterTags = 0; | 6781 core.int buildCounterTags = 0; |
| 6782 buildTags() { | 6782 buildTags() { |
| 6783 var o = new api.Tags(); | 6783 var o = new api.Tags(); |
| 6784 buildCounterTags++; | 6784 buildCounterTags++; |
| 6785 if (buildCounterTags < 3) { | 6785 if (buildCounterTags < 3) { |
| 6786 o.fingerprint = "foo"; | 6786 o.fingerprint = "foo"; |
| 6787 o.items = buildUnnamed2120(); | 6787 o.items = buildUnnamed2214(); |
| 6788 } | 6788 } |
| 6789 buildCounterTags--; | 6789 buildCounterTags--; |
| 6790 return o; | 6790 return o; |
| 6791 } | 6791 } |
| 6792 | 6792 |
| 6793 checkTags(api.Tags o) { | 6793 checkTags(api.Tags o) { |
| 6794 buildCounterTags++; | 6794 buildCounterTags++; |
| 6795 if (buildCounterTags < 3) { | 6795 if (buildCounterTags < 3) { |
| 6796 unittest.expect(o.fingerprint, unittest.equals('foo')); | 6796 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 6797 checkUnnamed2120(o.items); | 6797 checkUnnamed2214(o.items); |
| 6798 } | 6798 } |
| 6799 buildCounterTags--; | 6799 buildCounterTags--; |
| 6800 } | 6800 } |
| 6801 | 6801 |
| 6802 core.int buildCounterTargetHttpProxy = 0; | 6802 core.int buildCounterTargetHttpProxy = 0; |
| 6803 buildTargetHttpProxy() { | 6803 buildTargetHttpProxy() { |
| 6804 var o = new api.TargetHttpProxy(); | 6804 var o = new api.TargetHttpProxy(); |
| 6805 buildCounterTargetHttpProxy++; | 6805 buildCounterTargetHttpProxy++; |
| 6806 if (buildCounterTargetHttpProxy < 3) { | 6806 if (buildCounterTargetHttpProxy < 3) { |
| 6807 o.creationTimestamp = "foo"; | 6807 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 6823 unittest.expect(o.description, unittest.equals('foo')); | 6823 unittest.expect(o.description, unittest.equals('foo')); |
| 6824 unittest.expect(o.id, unittest.equals('foo')); | 6824 unittest.expect(o.id, unittest.equals('foo')); |
| 6825 unittest.expect(o.kind, unittest.equals('foo')); | 6825 unittest.expect(o.kind, unittest.equals('foo')); |
| 6826 unittest.expect(o.name, unittest.equals('foo')); | 6826 unittest.expect(o.name, unittest.equals('foo')); |
| 6827 unittest.expect(o.selfLink, unittest.equals('foo')); | 6827 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6828 unittest.expect(o.urlMap, unittest.equals('foo')); | 6828 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 6829 } | 6829 } |
| 6830 buildCounterTargetHttpProxy--; | 6830 buildCounterTargetHttpProxy--; |
| 6831 } | 6831 } |
| 6832 | 6832 |
| 6833 buildUnnamed2121() { | 6833 buildUnnamed2215() { |
| 6834 var o = new core.List<api.TargetHttpProxy>(); | 6834 var o = new core.List<api.TargetHttpProxy>(); |
| 6835 o.add(buildTargetHttpProxy()); | 6835 o.add(buildTargetHttpProxy()); |
| 6836 o.add(buildTargetHttpProxy()); | 6836 o.add(buildTargetHttpProxy()); |
| 6837 return o; | 6837 return o; |
| 6838 } | 6838 } |
| 6839 | 6839 |
| 6840 checkUnnamed2121(core.List<api.TargetHttpProxy> o) { | 6840 checkUnnamed2215(core.List<api.TargetHttpProxy> o) { |
| 6841 unittest.expect(o, unittest.hasLength(2)); | 6841 unittest.expect(o, unittest.hasLength(2)); |
| 6842 checkTargetHttpProxy(o[0]); | 6842 checkTargetHttpProxy(o[0]); |
| 6843 checkTargetHttpProxy(o[1]); | 6843 checkTargetHttpProxy(o[1]); |
| 6844 } | 6844 } |
| 6845 | 6845 |
| 6846 core.int buildCounterTargetHttpProxyList = 0; | 6846 core.int buildCounterTargetHttpProxyList = 0; |
| 6847 buildTargetHttpProxyList() { | 6847 buildTargetHttpProxyList() { |
| 6848 var o = new api.TargetHttpProxyList(); | 6848 var o = new api.TargetHttpProxyList(); |
| 6849 buildCounterTargetHttpProxyList++; | 6849 buildCounterTargetHttpProxyList++; |
| 6850 if (buildCounterTargetHttpProxyList < 3) { | 6850 if (buildCounterTargetHttpProxyList < 3) { |
| 6851 o.id = "foo"; | 6851 o.id = "foo"; |
| 6852 o.items = buildUnnamed2121(); | 6852 o.items = buildUnnamed2215(); |
| 6853 o.kind = "foo"; | 6853 o.kind = "foo"; |
| 6854 o.nextPageToken = "foo"; | 6854 o.nextPageToken = "foo"; |
| 6855 o.selfLink = "foo"; | 6855 o.selfLink = "foo"; |
| 6856 } | 6856 } |
| 6857 buildCounterTargetHttpProxyList--; | 6857 buildCounterTargetHttpProxyList--; |
| 6858 return o; | 6858 return o; |
| 6859 } | 6859 } |
| 6860 | 6860 |
| 6861 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 6861 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 6862 buildCounterTargetHttpProxyList++; | 6862 buildCounterTargetHttpProxyList++; |
| 6863 if (buildCounterTargetHttpProxyList < 3) { | 6863 if (buildCounterTargetHttpProxyList < 3) { |
| 6864 unittest.expect(o.id, unittest.equals('foo')); | 6864 unittest.expect(o.id, unittest.equals('foo')); |
| 6865 checkUnnamed2121(o.items); | 6865 checkUnnamed2215(o.items); |
| 6866 unittest.expect(o.kind, unittest.equals('foo')); | 6866 unittest.expect(o.kind, unittest.equals('foo')); |
| 6867 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6867 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6868 unittest.expect(o.selfLink, unittest.equals('foo')); | 6868 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6869 } | 6869 } |
| 6870 buildCounterTargetHttpProxyList--; | 6870 buildCounterTargetHttpProxyList--; |
| 6871 } | 6871 } |
| 6872 | 6872 |
| 6873 buildUnnamed2122() { | 6873 buildUnnamed2216() { |
| 6874 var o = new core.List<core.String>(); | 6874 var o = new core.List<core.String>(); |
| 6875 o.add("foo"); | 6875 o.add("foo"); |
| 6876 o.add("foo"); | 6876 o.add("foo"); |
| 6877 return o; | 6877 return o; |
| 6878 } | 6878 } |
| 6879 | 6879 |
| 6880 checkUnnamed2122(core.List<core.String> o) { | 6880 checkUnnamed2216(core.List<core.String> o) { |
| 6881 unittest.expect(o, unittest.hasLength(2)); | 6881 unittest.expect(o, unittest.hasLength(2)); |
| 6882 unittest.expect(o[0], unittest.equals('foo')); | 6882 unittest.expect(o[0], unittest.equals('foo')); |
| 6883 unittest.expect(o[1], unittest.equals('foo')); | 6883 unittest.expect(o[1], unittest.equals('foo')); |
| 6884 } | 6884 } |
| 6885 | 6885 |
| 6886 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; | 6886 core.int buildCounterTargetHttpsProxiesSetSslCertificatesRequest = 0; |
| 6887 buildTargetHttpsProxiesSetSslCertificatesRequest() { | 6887 buildTargetHttpsProxiesSetSslCertificatesRequest() { |
| 6888 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); | 6888 var o = new api.TargetHttpsProxiesSetSslCertificatesRequest(); |
| 6889 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 6889 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 6890 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 6890 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 6891 o.sslCertificates = buildUnnamed2122(); | 6891 o.sslCertificates = buildUnnamed2216(); |
| 6892 } | 6892 } |
| 6893 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 6893 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 6894 return o; | 6894 return o; |
| 6895 } | 6895 } |
| 6896 | 6896 |
| 6897 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { | 6897 checkTargetHttpsProxiesSetSslCertificatesRequest(api.TargetHttpsProxiesSetSslCer
tificatesRequest o) { |
| 6898 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; | 6898 buildCounterTargetHttpsProxiesSetSslCertificatesRequest++; |
| 6899 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { | 6899 if (buildCounterTargetHttpsProxiesSetSslCertificatesRequest < 3) { |
| 6900 checkUnnamed2122(o.sslCertificates); | 6900 checkUnnamed2216(o.sslCertificates); |
| 6901 } | 6901 } |
| 6902 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; | 6902 buildCounterTargetHttpsProxiesSetSslCertificatesRequest--; |
| 6903 } | 6903 } |
| 6904 | 6904 |
| 6905 buildUnnamed2123() { | 6905 buildUnnamed2217() { |
| 6906 var o = new core.List<core.String>(); | 6906 var o = new core.List<core.String>(); |
| 6907 o.add("foo"); | 6907 o.add("foo"); |
| 6908 o.add("foo"); | 6908 o.add("foo"); |
| 6909 return o; | 6909 return o; |
| 6910 } | 6910 } |
| 6911 | 6911 |
| 6912 checkUnnamed2123(core.List<core.String> o) { | 6912 checkUnnamed2217(core.List<core.String> o) { |
| 6913 unittest.expect(o, unittest.hasLength(2)); | 6913 unittest.expect(o, unittest.hasLength(2)); |
| 6914 unittest.expect(o[0], unittest.equals('foo')); | 6914 unittest.expect(o[0], unittest.equals('foo')); |
| 6915 unittest.expect(o[1], unittest.equals('foo')); | 6915 unittest.expect(o[1], unittest.equals('foo')); |
| 6916 } | 6916 } |
| 6917 | 6917 |
| 6918 core.int buildCounterTargetHttpsProxy = 0; | 6918 core.int buildCounterTargetHttpsProxy = 0; |
| 6919 buildTargetHttpsProxy() { | 6919 buildTargetHttpsProxy() { |
| 6920 var o = new api.TargetHttpsProxy(); | 6920 var o = new api.TargetHttpsProxy(); |
| 6921 buildCounterTargetHttpsProxy++; | 6921 buildCounterTargetHttpsProxy++; |
| 6922 if (buildCounterTargetHttpsProxy < 3) { | 6922 if (buildCounterTargetHttpsProxy < 3) { |
| 6923 o.creationTimestamp = "foo"; | 6923 o.creationTimestamp = "foo"; |
| 6924 o.description = "foo"; | 6924 o.description = "foo"; |
| 6925 o.id = "foo"; | 6925 o.id = "foo"; |
| 6926 o.kind = "foo"; | 6926 o.kind = "foo"; |
| 6927 o.name = "foo"; | 6927 o.name = "foo"; |
| 6928 o.selfLink = "foo"; | 6928 o.selfLink = "foo"; |
| 6929 o.sslCertificates = buildUnnamed2123(); | 6929 o.sslCertificates = buildUnnamed2217(); |
| 6930 o.urlMap = "foo"; | 6930 o.urlMap = "foo"; |
| 6931 } | 6931 } |
| 6932 buildCounterTargetHttpsProxy--; | 6932 buildCounterTargetHttpsProxy--; |
| 6933 return o; | 6933 return o; |
| 6934 } | 6934 } |
| 6935 | 6935 |
| 6936 checkTargetHttpsProxy(api.TargetHttpsProxy o) { | 6936 checkTargetHttpsProxy(api.TargetHttpsProxy o) { |
| 6937 buildCounterTargetHttpsProxy++; | 6937 buildCounterTargetHttpsProxy++; |
| 6938 if (buildCounterTargetHttpsProxy < 3) { | 6938 if (buildCounterTargetHttpsProxy < 3) { |
| 6939 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 6939 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 6940 unittest.expect(o.description, unittest.equals('foo')); | 6940 unittest.expect(o.description, unittest.equals('foo')); |
| 6941 unittest.expect(o.id, unittest.equals('foo')); | 6941 unittest.expect(o.id, unittest.equals('foo')); |
| 6942 unittest.expect(o.kind, unittest.equals('foo')); | 6942 unittest.expect(o.kind, unittest.equals('foo')); |
| 6943 unittest.expect(o.name, unittest.equals('foo')); | 6943 unittest.expect(o.name, unittest.equals('foo')); |
| 6944 unittest.expect(o.selfLink, unittest.equals('foo')); | 6944 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6945 checkUnnamed2123(o.sslCertificates); | 6945 checkUnnamed2217(o.sslCertificates); |
| 6946 unittest.expect(o.urlMap, unittest.equals('foo')); | 6946 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 6947 } | 6947 } |
| 6948 buildCounterTargetHttpsProxy--; | 6948 buildCounterTargetHttpsProxy--; |
| 6949 } | 6949 } |
| 6950 | 6950 |
| 6951 buildUnnamed2124() { | 6951 buildUnnamed2218() { |
| 6952 var o = new core.List<api.TargetHttpsProxy>(); | 6952 var o = new core.List<api.TargetHttpsProxy>(); |
| 6953 o.add(buildTargetHttpsProxy()); | 6953 o.add(buildTargetHttpsProxy()); |
| 6954 o.add(buildTargetHttpsProxy()); | 6954 o.add(buildTargetHttpsProxy()); |
| 6955 return o; | 6955 return o; |
| 6956 } | 6956 } |
| 6957 | 6957 |
| 6958 checkUnnamed2124(core.List<api.TargetHttpsProxy> o) { | 6958 checkUnnamed2218(core.List<api.TargetHttpsProxy> o) { |
| 6959 unittest.expect(o, unittest.hasLength(2)); | 6959 unittest.expect(o, unittest.hasLength(2)); |
| 6960 checkTargetHttpsProxy(o[0]); | 6960 checkTargetHttpsProxy(o[0]); |
| 6961 checkTargetHttpsProxy(o[1]); | 6961 checkTargetHttpsProxy(o[1]); |
| 6962 } | 6962 } |
| 6963 | 6963 |
| 6964 core.int buildCounterTargetHttpsProxyList = 0; | 6964 core.int buildCounterTargetHttpsProxyList = 0; |
| 6965 buildTargetHttpsProxyList() { | 6965 buildTargetHttpsProxyList() { |
| 6966 var o = new api.TargetHttpsProxyList(); | 6966 var o = new api.TargetHttpsProxyList(); |
| 6967 buildCounterTargetHttpsProxyList++; | 6967 buildCounterTargetHttpsProxyList++; |
| 6968 if (buildCounterTargetHttpsProxyList < 3) { | 6968 if (buildCounterTargetHttpsProxyList < 3) { |
| 6969 o.id = "foo"; | 6969 o.id = "foo"; |
| 6970 o.items = buildUnnamed2124(); | 6970 o.items = buildUnnamed2218(); |
| 6971 o.kind = "foo"; | 6971 o.kind = "foo"; |
| 6972 o.nextPageToken = "foo"; | 6972 o.nextPageToken = "foo"; |
| 6973 o.selfLink = "foo"; | 6973 o.selfLink = "foo"; |
| 6974 } | 6974 } |
| 6975 buildCounterTargetHttpsProxyList--; | 6975 buildCounterTargetHttpsProxyList--; |
| 6976 return o; | 6976 return o; |
| 6977 } | 6977 } |
| 6978 | 6978 |
| 6979 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { | 6979 checkTargetHttpsProxyList(api.TargetHttpsProxyList o) { |
| 6980 buildCounterTargetHttpsProxyList++; | 6980 buildCounterTargetHttpsProxyList++; |
| 6981 if (buildCounterTargetHttpsProxyList < 3) { | 6981 if (buildCounterTargetHttpsProxyList < 3) { |
| 6982 unittest.expect(o.id, unittest.equals('foo')); | 6982 unittest.expect(o.id, unittest.equals('foo')); |
| 6983 checkUnnamed2124(o.items); | 6983 checkUnnamed2218(o.items); |
| 6984 unittest.expect(o.kind, unittest.equals('foo')); | 6984 unittest.expect(o.kind, unittest.equals('foo')); |
| 6985 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6985 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6986 unittest.expect(o.selfLink, unittest.equals('foo')); | 6986 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 6987 } | 6987 } |
| 6988 buildCounterTargetHttpsProxyList--; | 6988 buildCounterTargetHttpsProxyList--; |
| 6989 } | 6989 } |
| 6990 | 6990 |
| 6991 core.int buildCounterTargetInstance = 0; | 6991 core.int buildCounterTargetInstance = 0; |
| 6992 buildTargetInstance() { | 6992 buildTargetInstance() { |
| 6993 var o = new api.TargetInstance(); | 6993 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 7016 unittest.expect(o.instance, unittest.equals('foo')); | 7016 unittest.expect(o.instance, unittest.equals('foo')); |
| 7017 unittest.expect(o.kind, unittest.equals('foo')); | 7017 unittest.expect(o.kind, unittest.equals('foo')); |
| 7018 unittest.expect(o.name, unittest.equals('foo')); | 7018 unittest.expect(o.name, unittest.equals('foo')); |
| 7019 unittest.expect(o.natPolicy, unittest.equals('foo')); | 7019 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 7020 unittest.expect(o.selfLink, unittest.equals('foo')); | 7020 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7021 unittest.expect(o.zone, unittest.equals('foo')); | 7021 unittest.expect(o.zone, unittest.equals('foo')); |
| 7022 } | 7022 } |
| 7023 buildCounterTargetInstance--; | 7023 buildCounterTargetInstance--; |
| 7024 } | 7024 } |
| 7025 | 7025 |
| 7026 buildUnnamed2125() { | 7026 buildUnnamed2219() { |
| 7027 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 7027 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 7028 o["x"] = buildTargetInstancesScopedList(); | 7028 o["x"] = buildTargetInstancesScopedList(); |
| 7029 o["y"] = buildTargetInstancesScopedList(); | 7029 o["y"] = buildTargetInstancesScopedList(); |
| 7030 return o; | 7030 return o; |
| 7031 } | 7031 } |
| 7032 | 7032 |
| 7033 checkUnnamed2125(core.Map<core.String, api.TargetInstancesScopedList> o) { | 7033 checkUnnamed2219(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 7034 unittest.expect(o, unittest.hasLength(2)); | 7034 unittest.expect(o, unittest.hasLength(2)); |
| 7035 checkTargetInstancesScopedList(o["x"]); | 7035 checkTargetInstancesScopedList(o["x"]); |
| 7036 checkTargetInstancesScopedList(o["y"]); | 7036 checkTargetInstancesScopedList(o["y"]); |
| 7037 } | 7037 } |
| 7038 | 7038 |
| 7039 core.int buildCounterTargetInstanceAggregatedList = 0; | 7039 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 7040 buildTargetInstanceAggregatedList() { | 7040 buildTargetInstanceAggregatedList() { |
| 7041 var o = new api.TargetInstanceAggregatedList(); | 7041 var o = new api.TargetInstanceAggregatedList(); |
| 7042 buildCounterTargetInstanceAggregatedList++; | 7042 buildCounterTargetInstanceAggregatedList++; |
| 7043 if (buildCounterTargetInstanceAggregatedList < 3) { | 7043 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 7044 o.id = "foo"; | 7044 o.id = "foo"; |
| 7045 o.items = buildUnnamed2125(); | 7045 o.items = buildUnnamed2219(); |
| 7046 o.kind = "foo"; | 7046 o.kind = "foo"; |
| 7047 o.nextPageToken = "foo"; | 7047 o.nextPageToken = "foo"; |
| 7048 o.selfLink = "foo"; | 7048 o.selfLink = "foo"; |
| 7049 } | 7049 } |
| 7050 buildCounterTargetInstanceAggregatedList--; | 7050 buildCounterTargetInstanceAggregatedList--; |
| 7051 return o; | 7051 return o; |
| 7052 } | 7052 } |
| 7053 | 7053 |
| 7054 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 7054 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 7055 buildCounterTargetInstanceAggregatedList++; | 7055 buildCounterTargetInstanceAggregatedList++; |
| 7056 if (buildCounterTargetInstanceAggregatedList < 3) { | 7056 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 7057 unittest.expect(o.id, unittest.equals('foo')); | 7057 unittest.expect(o.id, unittest.equals('foo')); |
| 7058 checkUnnamed2125(o.items); | 7058 checkUnnamed2219(o.items); |
| 7059 unittest.expect(o.kind, unittest.equals('foo')); | 7059 unittest.expect(o.kind, unittest.equals('foo')); |
| 7060 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7060 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7061 unittest.expect(o.selfLink, unittest.equals('foo')); | 7061 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7062 } | 7062 } |
| 7063 buildCounterTargetInstanceAggregatedList--; | 7063 buildCounterTargetInstanceAggregatedList--; |
| 7064 } | 7064 } |
| 7065 | 7065 |
| 7066 buildUnnamed2126() { | 7066 buildUnnamed2220() { |
| 7067 var o = new core.List<api.TargetInstance>(); | 7067 var o = new core.List<api.TargetInstance>(); |
| 7068 o.add(buildTargetInstance()); | 7068 o.add(buildTargetInstance()); |
| 7069 o.add(buildTargetInstance()); | 7069 o.add(buildTargetInstance()); |
| 7070 return o; | 7070 return o; |
| 7071 } | 7071 } |
| 7072 | 7072 |
| 7073 checkUnnamed2126(core.List<api.TargetInstance> o) { | 7073 checkUnnamed2220(core.List<api.TargetInstance> o) { |
| 7074 unittest.expect(o, unittest.hasLength(2)); | 7074 unittest.expect(o, unittest.hasLength(2)); |
| 7075 checkTargetInstance(o[0]); | 7075 checkTargetInstance(o[0]); |
| 7076 checkTargetInstance(o[1]); | 7076 checkTargetInstance(o[1]); |
| 7077 } | 7077 } |
| 7078 | 7078 |
| 7079 core.int buildCounterTargetInstanceList = 0; | 7079 core.int buildCounterTargetInstanceList = 0; |
| 7080 buildTargetInstanceList() { | 7080 buildTargetInstanceList() { |
| 7081 var o = new api.TargetInstanceList(); | 7081 var o = new api.TargetInstanceList(); |
| 7082 buildCounterTargetInstanceList++; | 7082 buildCounterTargetInstanceList++; |
| 7083 if (buildCounterTargetInstanceList < 3) { | 7083 if (buildCounterTargetInstanceList < 3) { |
| 7084 o.id = "foo"; | 7084 o.id = "foo"; |
| 7085 o.items = buildUnnamed2126(); | 7085 o.items = buildUnnamed2220(); |
| 7086 o.kind = "foo"; | 7086 o.kind = "foo"; |
| 7087 o.nextPageToken = "foo"; | 7087 o.nextPageToken = "foo"; |
| 7088 o.selfLink = "foo"; | 7088 o.selfLink = "foo"; |
| 7089 } | 7089 } |
| 7090 buildCounterTargetInstanceList--; | 7090 buildCounterTargetInstanceList--; |
| 7091 return o; | 7091 return o; |
| 7092 } | 7092 } |
| 7093 | 7093 |
| 7094 checkTargetInstanceList(api.TargetInstanceList o) { | 7094 checkTargetInstanceList(api.TargetInstanceList o) { |
| 7095 buildCounterTargetInstanceList++; | 7095 buildCounterTargetInstanceList++; |
| 7096 if (buildCounterTargetInstanceList < 3) { | 7096 if (buildCounterTargetInstanceList < 3) { |
| 7097 unittest.expect(o.id, unittest.equals('foo')); | 7097 unittest.expect(o.id, unittest.equals('foo')); |
| 7098 checkUnnamed2126(o.items); | 7098 checkUnnamed2220(o.items); |
| 7099 unittest.expect(o.kind, unittest.equals('foo')); | 7099 unittest.expect(o.kind, unittest.equals('foo')); |
| 7100 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7100 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7101 unittest.expect(o.selfLink, unittest.equals('foo')); | 7101 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7102 } | 7102 } |
| 7103 buildCounterTargetInstanceList--; | 7103 buildCounterTargetInstanceList--; |
| 7104 } | 7104 } |
| 7105 | 7105 |
| 7106 buildUnnamed2127() { | 7106 buildUnnamed2221() { |
| 7107 var o = new core.List<api.TargetInstance>(); | 7107 var o = new core.List<api.TargetInstance>(); |
| 7108 o.add(buildTargetInstance()); | 7108 o.add(buildTargetInstance()); |
| 7109 o.add(buildTargetInstance()); | 7109 o.add(buildTargetInstance()); |
| 7110 return o; | 7110 return o; |
| 7111 } | 7111 } |
| 7112 | 7112 |
| 7113 checkUnnamed2127(core.List<api.TargetInstance> o) { | 7113 checkUnnamed2221(core.List<api.TargetInstance> o) { |
| 7114 unittest.expect(o, unittest.hasLength(2)); | 7114 unittest.expect(o, unittest.hasLength(2)); |
| 7115 checkTargetInstance(o[0]); | 7115 checkTargetInstance(o[0]); |
| 7116 checkTargetInstance(o[1]); | 7116 checkTargetInstance(o[1]); |
| 7117 } | 7117 } |
| 7118 | 7118 |
| 7119 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 7119 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 7120 buildTargetInstancesScopedListWarningData() { | 7120 buildTargetInstancesScopedListWarningData() { |
| 7121 var o = new api.TargetInstancesScopedListWarningData(); | 7121 var o = new api.TargetInstancesScopedListWarningData(); |
| 7122 buildCounterTargetInstancesScopedListWarningData++; | 7122 buildCounterTargetInstancesScopedListWarningData++; |
| 7123 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 7123 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 7124 o.key = "foo"; | 7124 o.key = "foo"; |
| 7125 o.value = "foo"; | 7125 o.value = "foo"; |
| 7126 } | 7126 } |
| 7127 buildCounterTargetInstancesScopedListWarningData--; | 7127 buildCounterTargetInstancesScopedListWarningData--; |
| 7128 return o; | 7128 return o; |
| 7129 } | 7129 } |
| 7130 | 7130 |
| 7131 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 7131 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 7132 buildCounterTargetInstancesScopedListWarningData++; | 7132 buildCounterTargetInstancesScopedListWarningData++; |
| 7133 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 7133 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 7134 unittest.expect(o.key, unittest.equals('foo')); | 7134 unittest.expect(o.key, unittest.equals('foo')); |
| 7135 unittest.expect(o.value, unittest.equals('foo')); | 7135 unittest.expect(o.value, unittest.equals('foo')); |
| 7136 } | 7136 } |
| 7137 buildCounterTargetInstancesScopedListWarningData--; | 7137 buildCounterTargetInstancesScopedListWarningData--; |
| 7138 } | 7138 } |
| 7139 | 7139 |
| 7140 buildUnnamed2128() { | 7140 buildUnnamed2222() { |
| 7141 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 7141 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 7142 o.add(buildTargetInstancesScopedListWarningData()); | 7142 o.add(buildTargetInstancesScopedListWarningData()); |
| 7143 o.add(buildTargetInstancesScopedListWarningData()); | 7143 o.add(buildTargetInstancesScopedListWarningData()); |
| 7144 return o; | 7144 return o; |
| 7145 } | 7145 } |
| 7146 | 7146 |
| 7147 checkUnnamed2128(core.List<api.TargetInstancesScopedListWarningData> o) { | 7147 checkUnnamed2222(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 7148 unittest.expect(o, unittest.hasLength(2)); | 7148 unittest.expect(o, unittest.hasLength(2)); |
| 7149 checkTargetInstancesScopedListWarningData(o[0]); | 7149 checkTargetInstancesScopedListWarningData(o[0]); |
| 7150 checkTargetInstancesScopedListWarningData(o[1]); | 7150 checkTargetInstancesScopedListWarningData(o[1]); |
| 7151 } | 7151 } |
| 7152 | 7152 |
| 7153 core.int buildCounterTargetInstancesScopedListWarning = 0; | 7153 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 7154 buildTargetInstancesScopedListWarning() { | 7154 buildTargetInstancesScopedListWarning() { |
| 7155 var o = new api.TargetInstancesScopedListWarning(); | 7155 var o = new api.TargetInstancesScopedListWarning(); |
| 7156 buildCounterTargetInstancesScopedListWarning++; | 7156 buildCounterTargetInstancesScopedListWarning++; |
| 7157 if (buildCounterTargetInstancesScopedListWarning < 3) { | 7157 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 7158 o.code = "foo"; | 7158 o.code = "foo"; |
| 7159 o.data = buildUnnamed2128(); | 7159 o.data = buildUnnamed2222(); |
| 7160 o.message = "foo"; | 7160 o.message = "foo"; |
| 7161 } | 7161 } |
| 7162 buildCounterTargetInstancesScopedListWarning--; | 7162 buildCounterTargetInstancesScopedListWarning--; |
| 7163 return o; | 7163 return o; |
| 7164 } | 7164 } |
| 7165 | 7165 |
| 7166 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 7166 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 7167 buildCounterTargetInstancesScopedListWarning++; | 7167 buildCounterTargetInstancesScopedListWarning++; |
| 7168 if (buildCounterTargetInstancesScopedListWarning < 3) { | 7168 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 7169 unittest.expect(o.code, unittest.equals('foo')); | 7169 unittest.expect(o.code, unittest.equals('foo')); |
| 7170 checkUnnamed2128(o.data); | 7170 checkUnnamed2222(o.data); |
| 7171 unittest.expect(o.message, unittest.equals('foo')); | 7171 unittest.expect(o.message, unittest.equals('foo')); |
| 7172 } | 7172 } |
| 7173 buildCounterTargetInstancesScopedListWarning--; | 7173 buildCounterTargetInstancesScopedListWarning--; |
| 7174 } | 7174 } |
| 7175 | 7175 |
| 7176 core.int buildCounterTargetInstancesScopedList = 0; | 7176 core.int buildCounterTargetInstancesScopedList = 0; |
| 7177 buildTargetInstancesScopedList() { | 7177 buildTargetInstancesScopedList() { |
| 7178 var o = new api.TargetInstancesScopedList(); | 7178 var o = new api.TargetInstancesScopedList(); |
| 7179 buildCounterTargetInstancesScopedList++; | 7179 buildCounterTargetInstancesScopedList++; |
| 7180 if (buildCounterTargetInstancesScopedList < 3) { | 7180 if (buildCounterTargetInstancesScopedList < 3) { |
| 7181 o.targetInstances = buildUnnamed2127(); | 7181 o.targetInstances = buildUnnamed2221(); |
| 7182 o.warning = buildTargetInstancesScopedListWarning(); | 7182 o.warning = buildTargetInstancesScopedListWarning(); |
| 7183 } | 7183 } |
| 7184 buildCounterTargetInstancesScopedList--; | 7184 buildCounterTargetInstancesScopedList--; |
| 7185 return o; | 7185 return o; |
| 7186 } | 7186 } |
| 7187 | 7187 |
| 7188 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 7188 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 7189 buildCounterTargetInstancesScopedList++; | 7189 buildCounterTargetInstancesScopedList++; |
| 7190 if (buildCounterTargetInstancesScopedList < 3) { | 7190 if (buildCounterTargetInstancesScopedList < 3) { |
| 7191 checkUnnamed2127(o.targetInstances); | 7191 checkUnnamed2221(o.targetInstances); |
| 7192 checkTargetInstancesScopedListWarning(o.warning); | 7192 checkTargetInstancesScopedListWarning(o.warning); |
| 7193 } | 7193 } |
| 7194 buildCounterTargetInstancesScopedList--; | 7194 buildCounterTargetInstancesScopedList--; |
| 7195 } | 7195 } |
| 7196 | 7196 |
| 7197 buildUnnamed2129() { | 7197 buildUnnamed2223() { |
| 7198 var o = new core.List<core.String>(); | 7198 var o = new core.List<core.String>(); |
| 7199 o.add("foo"); | 7199 o.add("foo"); |
| 7200 o.add("foo"); | 7200 o.add("foo"); |
| 7201 return o; | 7201 return o; |
| 7202 } | 7202 } |
| 7203 | 7203 |
| 7204 checkUnnamed2129(core.List<core.String> o) { | 7204 checkUnnamed2223(core.List<core.String> o) { |
| 7205 unittest.expect(o, unittest.hasLength(2)); | 7205 unittest.expect(o, unittest.hasLength(2)); |
| 7206 unittest.expect(o[0], unittest.equals('foo')); | 7206 unittest.expect(o[0], unittest.equals('foo')); |
| 7207 unittest.expect(o[1], unittest.equals('foo')); | 7207 unittest.expect(o[1], unittest.equals('foo')); |
| 7208 } | 7208 } |
| 7209 | 7209 |
| 7210 buildUnnamed2130() { | 7210 buildUnnamed2224() { |
| 7211 var o = new core.List<core.String>(); | 7211 var o = new core.List<core.String>(); |
| 7212 o.add("foo"); | 7212 o.add("foo"); |
| 7213 o.add("foo"); | 7213 o.add("foo"); |
| 7214 return o; | 7214 return o; |
| 7215 } | 7215 } |
| 7216 | 7216 |
| 7217 checkUnnamed2130(core.List<core.String> o) { | 7217 checkUnnamed2224(core.List<core.String> o) { |
| 7218 unittest.expect(o, unittest.hasLength(2)); | 7218 unittest.expect(o, unittest.hasLength(2)); |
| 7219 unittest.expect(o[0], unittest.equals('foo')); | 7219 unittest.expect(o[0], unittest.equals('foo')); |
| 7220 unittest.expect(o[1], unittest.equals('foo')); | 7220 unittest.expect(o[1], unittest.equals('foo')); |
| 7221 } | 7221 } |
| 7222 | 7222 |
| 7223 core.int buildCounterTargetPool = 0; | 7223 core.int buildCounterTargetPool = 0; |
| 7224 buildTargetPool() { | 7224 buildTargetPool() { |
| 7225 var o = new api.TargetPool(); | 7225 var o = new api.TargetPool(); |
| 7226 buildCounterTargetPool++; | 7226 buildCounterTargetPool++; |
| 7227 if (buildCounterTargetPool < 3) { | 7227 if (buildCounterTargetPool < 3) { |
| 7228 o.backupPool = "foo"; | 7228 o.backupPool = "foo"; |
| 7229 o.creationTimestamp = "foo"; | 7229 o.creationTimestamp = "foo"; |
| 7230 o.description = "foo"; | 7230 o.description = "foo"; |
| 7231 o.failoverRatio = 42.0; | 7231 o.failoverRatio = 42.0; |
| 7232 o.healthChecks = buildUnnamed2129(); | 7232 o.healthChecks = buildUnnamed2223(); |
| 7233 o.id = "foo"; | 7233 o.id = "foo"; |
| 7234 o.instances = buildUnnamed2130(); | 7234 o.instances = buildUnnamed2224(); |
| 7235 o.kind = "foo"; | 7235 o.kind = "foo"; |
| 7236 o.name = "foo"; | 7236 o.name = "foo"; |
| 7237 o.region = "foo"; | 7237 o.region = "foo"; |
| 7238 o.selfLink = "foo"; | 7238 o.selfLink = "foo"; |
| 7239 o.sessionAffinity = "foo"; | 7239 o.sessionAffinity = "foo"; |
| 7240 } | 7240 } |
| 7241 buildCounterTargetPool--; | 7241 buildCounterTargetPool--; |
| 7242 return o; | 7242 return o; |
| 7243 } | 7243 } |
| 7244 | 7244 |
| 7245 checkTargetPool(api.TargetPool o) { | 7245 checkTargetPool(api.TargetPool o) { |
| 7246 buildCounterTargetPool++; | 7246 buildCounterTargetPool++; |
| 7247 if (buildCounterTargetPool < 3) { | 7247 if (buildCounterTargetPool < 3) { |
| 7248 unittest.expect(o.backupPool, unittest.equals('foo')); | 7248 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 7249 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7249 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7250 unittest.expect(o.description, unittest.equals('foo')); | 7250 unittest.expect(o.description, unittest.equals('foo')); |
| 7251 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 7251 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 7252 checkUnnamed2129(o.healthChecks); | 7252 checkUnnamed2223(o.healthChecks); |
| 7253 unittest.expect(o.id, unittest.equals('foo')); | 7253 unittest.expect(o.id, unittest.equals('foo')); |
| 7254 checkUnnamed2130(o.instances); | 7254 checkUnnamed2224(o.instances); |
| 7255 unittest.expect(o.kind, unittest.equals('foo')); | 7255 unittest.expect(o.kind, unittest.equals('foo')); |
| 7256 unittest.expect(o.name, unittest.equals('foo')); | 7256 unittest.expect(o.name, unittest.equals('foo')); |
| 7257 unittest.expect(o.region, unittest.equals('foo')); | 7257 unittest.expect(o.region, unittest.equals('foo')); |
| 7258 unittest.expect(o.selfLink, unittest.equals('foo')); | 7258 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7259 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 7259 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 7260 } | 7260 } |
| 7261 buildCounterTargetPool--; | 7261 buildCounterTargetPool--; |
| 7262 } | 7262 } |
| 7263 | 7263 |
| 7264 buildUnnamed2131() { | 7264 buildUnnamed2225() { |
| 7265 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 7265 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 7266 o["x"] = buildTargetPoolsScopedList(); | 7266 o["x"] = buildTargetPoolsScopedList(); |
| 7267 o["y"] = buildTargetPoolsScopedList(); | 7267 o["y"] = buildTargetPoolsScopedList(); |
| 7268 return o; | 7268 return o; |
| 7269 } | 7269 } |
| 7270 | 7270 |
| 7271 checkUnnamed2131(core.Map<core.String, api.TargetPoolsScopedList> o) { | 7271 checkUnnamed2225(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 7272 unittest.expect(o, unittest.hasLength(2)); | 7272 unittest.expect(o, unittest.hasLength(2)); |
| 7273 checkTargetPoolsScopedList(o["x"]); | 7273 checkTargetPoolsScopedList(o["x"]); |
| 7274 checkTargetPoolsScopedList(o["y"]); | 7274 checkTargetPoolsScopedList(o["y"]); |
| 7275 } | 7275 } |
| 7276 | 7276 |
| 7277 core.int buildCounterTargetPoolAggregatedList = 0; | 7277 core.int buildCounterTargetPoolAggregatedList = 0; |
| 7278 buildTargetPoolAggregatedList() { | 7278 buildTargetPoolAggregatedList() { |
| 7279 var o = new api.TargetPoolAggregatedList(); | 7279 var o = new api.TargetPoolAggregatedList(); |
| 7280 buildCounterTargetPoolAggregatedList++; | 7280 buildCounterTargetPoolAggregatedList++; |
| 7281 if (buildCounterTargetPoolAggregatedList < 3) { | 7281 if (buildCounterTargetPoolAggregatedList < 3) { |
| 7282 o.id = "foo"; | 7282 o.id = "foo"; |
| 7283 o.items = buildUnnamed2131(); | 7283 o.items = buildUnnamed2225(); |
| 7284 o.kind = "foo"; | 7284 o.kind = "foo"; |
| 7285 o.nextPageToken = "foo"; | 7285 o.nextPageToken = "foo"; |
| 7286 o.selfLink = "foo"; | 7286 o.selfLink = "foo"; |
| 7287 } | 7287 } |
| 7288 buildCounterTargetPoolAggregatedList--; | 7288 buildCounterTargetPoolAggregatedList--; |
| 7289 return o; | 7289 return o; |
| 7290 } | 7290 } |
| 7291 | 7291 |
| 7292 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 7292 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 7293 buildCounterTargetPoolAggregatedList++; | 7293 buildCounterTargetPoolAggregatedList++; |
| 7294 if (buildCounterTargetPoolAggregatedList < 3) { | 7294 if (buildCounterTargetPoolAggregatedList < 3) { |
| 7295 unittest.expect(o.id, unittest.equals('foo')); | 7295 unittest.expect(o.id, unittest.equals('foo')); |
| 7296 checkUnnamed2131(o.items); | 7296 checkUnnamed2225(o.items); |
| 7297 unittest.expect(o.kind, unittest.equals('foo')); | 7297 unittest.expect(o.kind, unittest.equals('foo')); |
| 7298 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7298 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7299 unittest.expect(o.selfLink, unittest.equals('foo')); | 7299 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7300 } | 7300 } |
| 7301 buildCounterTargetPoolAggregatedList--; | 7301 buildCounterTargetPoolAggregatedList--; |
| 7302 } | 7302 } |
| 7303 | 7303 |
| 7304 buildUnnamed2132() { | 7304 buildUnnamed2226() { |
| 7305 var o = new core.List<api.HealthStatus>(); | 7305 var o = new core.List<api.HealthStatus>(); |
| 7306 o.add(buildHealthStatus()); | 7306 o.add(buildHealthStatus()); |
| 7307 o.add(buildHealthStatus()); | 7307 o.add(buildHealthStatus()); |
| 7308 return o; | 7308 return o; |
| 7309 } | 7309 } |
| 7310 | 7310 |
| 7311 checkUnnamed2132(core.List<api.HealthStatus> o) { | 7311 checkUnnamed2226(core.List<api.HealthStatus> o) { |
| 7312 unittest.expect(o, unittest.hasLength(2)); | 7312 unittest.expect(o, unittest.hasLength(2)); |
| 7313 checkHealthStatus(o[0]); | 7313 checkHealthStatus(o[0]); |
| 7314 checkHealthStatus(o[1]); | 7314 checkHealthStatus(o[1]); |
| 7315 } | 7315 } |
| 7316 | 7316 |
| 7317 core.int buildCounterTargetPoolInstanceHealth = 0; | 7317 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 7318 buildTargetPoolInstanceHealth() { | 7318 buildTargetPoolInstanceHealth() { |
| 7319 var o = new api.TargetPoolInstanceHealth(); | 7319 var o = new api.TargetPoolInstanceHealth(); |
| 7320 buildCounterTargetPoolInstanceHealth++; | 7320 buildCounterTargetPoolInstanceHealth++; |
| 7321 if (buildCounterTargetPoolInstanceHealth < 3) { | 7321 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 7322 o.healthStatus = buildUnnamed2132(); | 7322 o.healthStatus = buildUnnamed2226(); |
| 7323 o.kind = "foo"; | 7323 o.kind = "foo"; |
| 7324 } | 7324 } |
| 7325 buildCounterTargetPoolInstanceHealth--; | 7325 buildCounterTargetPoolInstanceHealth--; |
| 7326 return o; | 7326 return o; |
| 7327 } | 7327 } |
| 7328 | 7328 |
| 7329 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 7329 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 7330 buildCounterTargetPoolInstanceHealth++; | 7330 buildCounterTargetPoolInstanceHealth++; |
| 7331 if (buildCounterTargetPoolInstanceHealth < 3) { | 7331 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 7332 checkUnnamed2132(o.healthStatus); | 7332 checkUnnamed2226(o.healthStatus); |
| 7333 unittest.expect(o.kind, unittest.equals('foo')); | 7333 unittest.expect(o.kind, unittest.equals('foo')); |
| 7334 } | 7334 } |
| 7335 buildCounterTargetPoolInstanceHealth--; | 7335 buildCounterTargetPoolInstanceHealth--; |
| 7336 } | 7336 } |
| 7337 | 7337 |
| 7338 buildUnnamed2133() { | 7338 buildUnnamed2227() { |
| 7339 var o = new core.List<api.TargetPool>(); | 7339 var o = new core.List<api.TargetPool>(); |
| 7340 o.add(buildTargetPool()); | 7340 o.add(buildTargetPool()); |
| 7341 o.add(buildTargetPool()); | 7341 o.add(buildTargetPool()); |
| 7342 return o; | 7342 return o; |
| 7343 } | 7343 } |
| 7344 | 7344 |
| 7345 checkUnnamed2133(core.List<api.TargetPool> o) { | 7345 checkUnnamed2227(core.List<api.TargetPool> o) { |
| 7346 unittest.expect(o, unittest.hasLength(2)); | 7346 unittest.expect(o, unittest.hasLength(2)); |
| 7347 checkTargetPool(o[0]); | 7347 checkTargetPool(o[0]); |
| 7348 checkTargetPool(o[1]); | 7348 checkTargetPool(o[1]); |
| 7349 } | 7349 } |
| 7350 | 7350 |
| 7351 core.int buildCounterTargetPoolList = 0; | 7351 core.int buildCounterTargetPoolList = 0; |
| 7352 buildTargetPoolList() { | 7352 buildTargetPoolList() { |
| 7353 var o = new api.TargetPoolList(); | 7353 var o = new api.TargetPoolList(); |
| 7354 buildCounterTargetPoolList++; | 7354 buildCounterTargetPoolList++; |
| 7355 if (buildCounterTargetPoolList < 3) { | 7355 if (buildCounterTargetPoolList < 3) { |
| 7356 o.id = "foo"; | 7356 o.id = "foo"; |
| 7357 o.items = buildUnnamed2133(); | 7357 o.items = buildUnnamed2227(); |
| 7358 o.kind = "foo"; | 7358 o.kind = "foo"; |
| 7359 o.nextPageToken = "foo"; | 7359 o.nextPageToken = "foo"; |
| 7360 o.selfLink = "foo"; | 7360 o.selfLink = "foo"; |
| 7361 } | 7361 } |
| 7362 buildCounterTargetPoolList--; | 7362 buildCounterTargetPoolList--; |
| 7363 return o; | 7363 return o; |
| 7364 } | 7364 } |
| 7365 | 7365 |
| 7366 checkTargetPoolList(api.TargetPoolList o) { | 7366 checkTargetPoolList(api.TargetPoolList o) { |
| 7367 buildCounterTargetPoolList++; | 7367 buildCounterTargetPoolList++; |
| 7368 if (buildCounterTargetPoolList < 3) { | 7368 if (buildCounterTargetPoolList < 3) { |
| 7369 unittest.expect(o.id, unittest.equals('foo')); | 7369 unittest.expect(o.id, unittest.equals('foo')); |
| 7370 checkUnnamed2133(o.items); | 7370 checkUnnamed2227(o.items); |
| 7371 unittest.expect(o.kind, unittest.equals('foo')); | 7371 unittest.expect(o.kind, unittest.equals('foo')); |
| 7372 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7372 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7373 unittest.expect(o.selfLink, unittest.equals('foo')); | 7373 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7374 } | 7374 } |
| 7375 buildCounterTargetPoolList--; | 7375 buildCounterTargetPoolList--; |
| 7376 } | 7376 } |
| 7377 | 7377 |
| 7378 buildUnnamed2134() { | 7378 buildUnnamed2228() { |
| 7379 var o = new core.List<api.HealthCheckReference>(); | 7379 var o = new core.List<api.HealthCheckReference>(); |
| 7380 o.add(buildHealthCheckReference()); | 7380 o.add(buildHealthCheckReference()); |
| 7381 o.add(buildHealthCheckReference()); | 7381 o.add(buildHealthCheckReference()); |
| 7382 return o; | 7382 return o; |
| 7383 } | 7383 } |
| 7384 | 7384 |
| 7385 checkUnnamed2134(core.List<api.HealthCheckReference> o) { | 7385 checkUnnamed2228(core.List<api.HealthCheckReference> o) { |
| 7386 unittest.expect(o, unittest.hasLength(2)); | 7386 unittest.expect(o, unittest.hasLength(2)); |
| 7387 checkHealthCheckReference(o[0]); | 7387 checkHealthCheckReference(o[0]); |
| 7388 checkHealthCheckReference(o[1]); | 7388 checkHealthCheckReference(o[1]); |
| 7389 } | 7389 } |
| 7390 | 7390 |
| 7391 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 7391 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 7392 buildTargetPoolsAddHealthCheckRequest() { | 7392 buildTargetPoolsAddHealthCheckRequest() { |
| 7393 var o = new api.TargetPoolsAddHealthCheckRequest(); | 7393 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 7394 buildCounterTargetPoolsAddHealthCheckRequest++; | 7394 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 7395 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 7395 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 7396 o.healthChecks = buildUnnamed2134(); | 7396 o.healthChecks = buildUnnamed2228(); |
| 7397 } | 7397 } |
| 7398 buildCounterTargetPoolsAddHealthCheckRequest--; | 7398 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 7399 return o; | 7399 return o; |
| 7400 } | 7400 } |
| 7401 | 7401 |
| 7402 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 7402 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 7403 buildCounterTargetPoolsAddHealthCheckRequest++; | 7403 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 7404 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 7404 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 7405 checkUnnamed2134(o.healthChecks); | 7405 checkUnnamed2228(o.healthChecks); |
| 7406 } | 7406 } |
| 7407 buildCounterTargetPoolsAddHealthCheckRequest--; | 7407 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 7408 } | 7408 } |
| 7409 | 7409 |
| 7410 buildUnnamed2135() { | 7410 buildUnnamed2229() { |
| 7411 var o = new core.List<api.InstanceReference>(); | 7411 var o = new core.List<api.InstanceReference>(); |
| 7412 o.add(buildInstanceReference()); | 7412 o.add(buildInstanceReference()); |
| 7413 o.add(buildInstanceReference()); | 7413 o.add(buildInstanceReference()); |
| 7414 return o; | 7414 return o; |
| 7415 } | 7415 } |
| 7416 | 7416 |
| 7417 checkUnnamed2135(core.List<api.InstanceReference> o) { | 7417 checkUnnamed2229(core.List<api.InstanceReference> o) { |
| 7418 unittest.expect(o, unittest.hasLength(2)); | 7418 unittest.expect(o, unittest.hasLength(2)); |
| 7419 checkInstanceReference(o[0]); | 7419 checkInstanceReference(o[0]); |
| 7420 checkInstanceReference(o[1]); | 7420 checkInstanceReference(o[1]); |
| 7421 } | 7421 } |
| 7422 | 7422 |
| 7423 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 7423 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 7424 buildTargetPoolsAddInstanceRequest() { | 7424 buildTargetPoolsAddInstanceRequest() { |
| 7425 var o = new api.TargetPoolsAddInstanceRequest(); | 7425 var o = new api.TargetPoolsAddInstanceRequest(); |
| 7426 buildCounterTargetPoolsAddInstanceRequest++; | 7426 buildCounterTargetPoolsAddInstanceRequest++; |
| 7427 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 7427 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 7428 o.instances = buildUnnamed2135(); | 7428 o.instances = buildUnnamed2229(); |
| 7429 } | 7429 } |
| 7430 buildCounterTargetPoolsAddInstanceRequest--; | 7430 buildCounterTargetPoolsAddInstanceRequest--; |
| 7431 return o; | 7431 return o; |
| 7432 } | 7432 } |
| 7433 | 7433 |
| 7434 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 7434 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 7435 buildCounterTargetPoolsAddInstanceRequest++; | 7435 buildCounterTargetPoolsAddInstanceRequest++; |
| 7436 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 7436 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 7437 checkUnnamed2135(o.instances); | 7437 checkUnnamed2229(o.instances); |
| 7438 } | 7438 } |
| 7439 buildCounterTargetPoolsAddInstanceRequest--; | 7439 buildCounterTargetPoolsAddInstanceRequest--; |
| 7440 } | 7440 } |
| 7441 | 7441 |
| 7442 buildUnnamed2136() { | 7442 buildUnnamed2230() { |
| 7443 var o = new core.List<api.HealthCheckReference>(); | 7443 var o = new core.List<api.HealthCheckReference>(); |
| 7444 o.add(buildHealthCheckReference()); | 7444 o.add(buildHealthCheckReference()); |
| 7445 o.add(buildHealthCheckReference()); | 7445 o.add(buildHealthCheckReference()); |
| 7446 return o; | 7446 return o; |
| 7447 } | 7447 } |
| 7448 | 7448 |
| 7449 checkUnnamed2136(core.List<api.HealthCheckReference> o) { | 7449 checkUnnamed2230(core.List<api.HealthCheckReference> o) { |
| 7450 unittest.expect(o, unittest.hasLength(2)); | 7450 unittest.expect(o, unittest.hasLength(2)); |
| 7451 checkHealthCheckReference(o[0]); | 7451 checkHealthCheckReference(o[0]); |
| 7452 checkHealthCheckReference(o[1]); | 7452 checkHealthCheckReference(o[1]); |
| 7453 } | 7453 } |
| 7454 | 7454 |
| 7455 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 7455 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 7456 buildTargetPoolsRemoveHealthCheckRequest() { | 7456 buildTargetPoolsRemoveHealthCheckRequest() { |
| 7457 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 7457 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 7458 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 7458 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 7459 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 7459 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 7460 o.healthChecks = buildUnnamed2136(); | 7460 o.healthChecks = buildUnnamed2230(); |
| 7461 } | 7461 } |
| 7462 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 7462 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 7463 return o; | 7463 return o; |
| 7464 } | 7464 } |
| 7465 | 7465 |
| 7466 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 7466 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 7467 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 7467 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 7468 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 7468 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 7469 checkUnnamed2136(o.healthChecks); | 7469 checkUnnamed2230(o.healthChecks); |
| 7470 } | 7470 } |
| 7471 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 7471 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 7472 } | 7472 } |
| 7473 | 7473 |
| 7474 buildUnnamed2137() { | 7474 buildUnnamed2231() { |
| 7475 var o = new core.List<api.InstanceReference>(); | 7475 var o = new core.List<api.InstanceReference>(); |
| 7476 o.add(buildInstanceReference()); | 7476 o.add(buildInstanceReference()); |
| 7477 o.add(buildInstanceReference()); | 7477 o.add(buildInstanceReference()); |
| 7478 return o; | 7478 return o; |
| 7479 } | 7479 } |
| 7480 | 7480 |
| 7481 checkUnnamed2137(core.List<api.InstanceReference> o) { | 7481 checkUnnamed2231(core.List<api.InstanceReference> o) { |
| 7482 unittest.expect(o, unittest.hasLength(2)); | 7482 unittest.expect(o, unittest.hasLength(2)); |
| 7483 checkInstanceReference(o[0]); | 7483 checkInstanceReference(o[0]); |
| 7484 checkInstanceReference(o[1]); | 7484 checkInstanceReference(o[1]); |
| 7485 } | 7485 } |
| 7486 | 7486 |
| 7487 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 7487 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 7488 buildTargetPoolsRemoveInstanceRequest() { | 7488 buildTargetPoolsRemoveInstanceRequest() { |
| 7489 var o = new api.TargetPoolsRemoveInstanceRequest(); | 7489 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 7490 buildCounterTargetPoolsRemoveInstanceRequest++; | 7490 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 7491 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 7491 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 7492 o.instances = buildUnnamed2137(); | 7492 o.instances = buildUnnamed2231(); |
| 7493 } | 7493 } |
| 7494 buildCounterTargetPoolsRemoveInstanceRequest--; | 7494 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 7495 return o; | 7495 return o; |
| 7496 } | 7496 } |
| 7497 | 7497 |
| 7498 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 7498 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 7499 buildCounterTargetPoolsRemoveInstanceRequest++; | 7499 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 7500 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 7500 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 7501 checkUnnamed2137(o.instances); | 7501 checkUnnamed2231(o.instances); |
| 7502 } | 7502 } |
| 7503 buildCounterTargetPoolsRemoveInstanceRequest--; | 7503 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 7504 } | 7504 } |
| 7505 | 7505 |
| 7506 buildUnnamed2138() { | 7506 buildUnnamed2232() { |
| 7507 var o = new core.List<api.TargetPool>(); | 7507 var o = new core.List<api.TargetPool>(); |
| 7508 o.add(buildTargetPool()); | 7508 o.add(buildTargetPool()); |
| 7509 o.add(buildTargetPool()); | 7509 o.add(buildTargetPool()); |
| 7510 return o; | 7510 return o; |
| 7511 } | 7511 } |
| 7512 | 7512 |
| 7513 checkUnnamed2138(core.List<api.TargetPool> o) { | 7513 checkUnnamed2232(core.List<api.TargetPool> o) { |
| 7514 unittest.expect(o, unittest.hasLength(2)); | 7514 unittest.expect(o, unittest.hasLength(2)); |
| 7515 checkTargetPool(o[0]); | 7515 checkTargetPool(o[0]); |
| 7516 checkTargetPool(o[1]); | 7516 checkTargetPool(o[1]); |
| 7517 } | 7517 } |
| 7518 | 7518 |
| 7519 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 7519 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 7520 buildTargetPoolsScopedListWarningData() { | 7520 buildTargetPoolsScopedListWarningData() { |
| 7521 var o = new api.TargetPoolsScopedListWarningData(); | 7521 var o = new api.TargetPoolsScopedListWarningData(); |
| 7522 buildCounterTargetPoolsScopedListWarningData++; | 7522 buildCounterTargetPoolsScopedListWarningData++; |
| 7523 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 7523 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 7524 o.key = "foo"; | 7524 o.key = "foo"; |
| 7525 o.value = "foo"; | 7525 o.value = "foo"; |
| 7526 } | 7526 } |
| 7527 buildCounterTargetPoolsScopedListWarningData--; | 7527 buildCounterTargetPoolsScopedListWarningData--; |
| 7528 return o; | 7528 return o; |
| 7529 } | 7529 } |
| 7530 | 7530 |
| 7531 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 7531 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 7532 buildCounterTargetPoolsScopedListWarningData++; | 7532 buildCounterTargetPoolsScopedListWarningData++; |
| 7533 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 7533 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 7534 unittest.expect(o.key, unittest.equals('foo')); | 7534 unittest.expect(o.key, unittest.equals('foo')); |
| 7535 unittest.expect(o.value, unittest.equals('foo')); | 7535 unittest.expect(o.value, unittest.equals('foo')); |
| 7536 } | 7536 } |
| 7537 buildCounterTargetPoolsScopedListWarningData--; | 7537 buildCounterTargetPoolsScopedListWarningData--; |
| 7538 } | 7538 } |
| 7539 | 7539 |
| 7540 buildUnnamed2139() { | 7540 buildUnnamed2233() { |
| 7541 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 7541 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 7542 o.add(buildTargetPoolsScopedListWarningData()); | 7542 o.add(buildTargetPoolsScopedListWarningData()); |
| 7543 o.add(buildTargetPoolsScopedListWarningData()); | 7543 o.add(buildTargetPoolsScopedListWarningData()); |
| 7544 return o; | 7544 return o; |
| 7545 } | 7545 } |
| 7546 | 7546 |
| 7547 checkUnnamed2139(core.List<api.TargetPoolsScopedListWarningData> o) { | 7547 checkUnnamed2233(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 7548 unittest.expect(o, unittest.hasLength(2)); | 7548 unittest.expect(o, unittest.hasLength(2)); |
| 7549 checkTargetPoolsScopedListWarningData(o[0]); | 7549 checkTargetPoolsScopedListWarningData(o[0]); |
| 7550 checkTargetPoolsScopedListWarningData(o[1]); | 7550 checkTargetPoolsScopedListWarningData(o[1]); |
| 7551 } | 7551 } |
| 7552 | 7552 |
| 7553 core.int buildCounterTargetPoolsScopedListWarning = 0; | 7553 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 7554 buildTargetPoolsScopedListWarning() { | 7554 buildTargetPoolsScopedListWarning() { |
| 7555 var o = new api.TargetPoolsScopedListWarning(); | 7555 var o = new api.TargetPoolsScopedListWarning(); |
| 7556 buildCounterTargetPoolsScopedListWarning++; | 7556 buildCounterTargetPoolsScopedListWarning++; |
| 7557 if (buildCounterTargetPoolsScopedListWarning < 3) { | 7557 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 7558 o.code = "foo"; | 7558 o.code = "foo"; |
| 7559 o.data = buildUnnamed2139(); | 7559 o.data = buildUnnamed2233(); |
| 7560 o.message = "foo"; | 7560 o.message = "foo"; |
| 7561 } | 7561 } |
| 7562 buildCounterTargetPoolsScopedListWarning--; | 7562 buildCounterTargetPoolsScopedListWarning--; |
| 7563 return o; | 7563 return o; |
| 7564 } | 7564 } |
| 7565 | 7565 |
| 7566 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 7566 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 7567 buildCounterTargetPoolsScopedListWarning++; | 7567 buildCounterTargetPoolsScopedListWarning++; |
| 7568 if (buildCounterTargetPoolsScopedListWarning < 3) { | 7568 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 7569 unittest.expect(o.code, unittest.equals('foo')); | 7569 unittest.expect(o.code, unittest.equals('foo')); |
| 7570 checkUnnamed2139(o.data); | 7570 checkUnnamed2233(o.data); |
| 7571 unittest.expect(o.message, unittest.equals('foo')); | 7571 unittest.expect(o.message, unittest.equals('foo')); |
| 7572 } | 7572 } |
| 7573 buildCounterTargetPoolsScopedListWarning--; | 7573 buildCounterTargetPoolsScopedListWarning--; |
| 7574 } | 7574 } |
| 7575 | 7575 |
| 7576 core.int buildCounterTargetPoolsScopedList = 0; | 7576 core.int buildCounterTargetPoolsScopedList = 0; |
| 7577 buildTargetPoolsScopedList() { | 7577 buildTargetPoolsScopedList() { |
| 7578 var o = new api.TargetPoolsScopedList(); | 7578 var o = new api.TargetPoolsScopedList(); |
| 7579 buildCounterTargetPoolsScopedList++; | 7579 buildCounterTargetPoolsScopedList++; |
| 7580 if (buildCounterTargetPoolsScopedList < 3) { | 7580 if (buildCounterTargetPoolsScopedList < 3) { |
| 7581 o.targetPools = buildUnnamed2138(); | 7581 o.targetPools = buildUnnamed2232(); |
| 7582 o.warning = buildTargetPoolsScopedListWarning(); | 7582 o.warning = buildTargetPoolsScopedListWarning(); |
| 7583 } | 7583 } |
| 7584 buildCounterTargetPoolsScopedList--; | 7584 buildCounterTargetPoolsScopedList--; |
| 7585 return o; | 7585 return o; |
| 7586 } | 7586 } |
| 7587 | 7587 |
| 7588 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 7588 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 7589 buildCounterTargetPoolsScopedList++; | 7589 buildCounterTargetPoolsScopedList++; |
| 7590 if (buildCounterTargetPoolsScopedList < 3) { | 7590 if (buildCounterTargetPoolsScopedList < 3) { |
| 7591 checkUnnamed2138(o.targetPools); | 7591 checkUnnamed2232(o.targetPools); |
| 7592 checkTargetPoolsScopedListWarning(o.warning); | 7592 checkTargetPoolsScopedListWarning(o.warning); |
| 7593 } | 7593 } |
| 7594 buildCounterTargetPoolsScopedList--; | 7594 buildCounterTargetPoolsScopedList--; |
| 7595 } | 7595 } |
| 7596 | 7596 |
| 7597 core.int buildCounterTargetReference = 0; | 7597 core.int buildCounterTargetReference = 0; |
| 7598 buildTargetReference() { | 7598 buildTargetReference() { |
| 7599 var o = new api.TargetReference(); | 7599 var o = new api.TargetReference(); |
| 7600 buildCounterTargetReference++; | 7600 buildCounterTargetReference++; |
| 7601 if (buildCounterTargetReference < 3) { | 7601 if (buildCounterTargetReference < 3) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7644 } | 7644 } |
| 7645 | 7645 |
| 7646 checkTargetSslProxiesSetProxyHeaderRequest(api.TargetSslProxiesSetProxyHeaderReq
uest o) { | 7646 checkTargetSslProxiesSetProxyHeaderRequest(api.TargetSslProxiesSetProxyHeaderReq
uest o) { |
| 7647 buildCounterTargetSslProxiesSetProxyHeaderRequest++; | 7647 buildCounterTargetSslProxiesSetProxyHeaderRequest++; |
| 7648 if (buildCounterTargetSslProxiesSetProxyHeaderRequest < 3) { | 7648 if (buildCounterTargetSslProxiesSetProxyHeaderRequest < 3) { |
| 7649 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 7649 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 7650 } | 7650 } |
| 7651 buildCounterTargetSslProxiesSetProxyHeaderRequest--; | 7651 buildCounterTargetSslProxiesSetProxyHeaderRequest--; |
| 7652 } | 7652 } |
| 7653 | 7653 |
| 7654 buildUnnamed2140() { | 7654 buildUnnamed2234() { |
| 7655 var o = new core.List<core.String>(); | 7655 var o = new core.List<core.String>(); |
| 7656 o.add("foo"); | 7656 o.add("foo"); |
| 7657 o.add("foo"); | 7657 o.add("foo"); |
| 7658 return o; | 7658 return o; |
| 7659 } | 7659 } |
| 7660 | 7660 |
| 7661 checkUnnamed2140(core.List<core.String> o) { | 7661 checkUnnamed2234(core.List<core.String> o) { |
| 7662 unittest.expect(o, unittest.hasLength(2)); | 7662 unittest.expect(o, unittest.hasLength(2)); |
| 7663 unittest.expect(o[0], unittest.equals('foo')); | 7663 unittest.expect(o[0], unittest.equals('foo')); |
| 7664 unittest.expect(o[1], unittest.equals('foo')); | 7664 unittest.expect(o[1], unittest.equals('foo')); |
| 7665 } | 7665 } |
| 7666 | 7666 |
| 7667 core.int buildCounterTargetSslProxiesSetSslCertificatesRequest = 0; | 7667 core.int buildCounterTargetSslProxiesSetSslCertificatesRequest = 0; |
| 7668 buildTargetSslProxiesSetSslCertificatesRequest() { | 7668 buildTargetSslProxiesSetSslCertificatesRequest() { |
| 7669 var o = new api.TargetSslProxiesSetSslCertificatesRequest(); | 7669 var o = new api.TargetSslProxiesSetSslCertificatesRequest(); |
| 7670 buildCounterTargetSslProxiesSetSslCertificatesRequest++; | 7670 buildCounterTargetSslProxiesSetSslCertificatesRequest++; |
| 7671 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { | 7671 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { |
| 7672 o.sslCertificates = buildUnnamed2140(); | 7672 o.sslCertificates = buildUnnamed2234(); |
| 7673 } | 7673 } |
| 7674 buildCounterTargetSslProxiesSetSslCertificatesRequest--; | 7674 buildCounterTargetSslProxiesSetSslCertificatesRequest--; |
| 7675 return o; | 7675 return o; |
| 7676 } | 7676 } |
| 7677 | 7677 |
| 7678 checkTargetSslProxiesSetSslCertificatesRequest(api.TargetSslProxiesSetSslCertifi
catesRequest o) { | 7678 checkTargetSslProxiesSetSslCertificatesRequest(api.TargetSslProxiesSetSslCertifi
catesRequest o) { |
| 7679 buildCounterTargetSslProxiesSetSslCertificatesRequest++; | 7679 buildCounterTargetSslProxiesSetSslCertificatesRequest++; |
| 7680 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { | 7680 if (buildCounterTargetSslProxiesSetSslCertificatesRequest < 3) { |
| 7681 checkUnnamed2140(o.sslCertificates); | 7681 checkUnnamed2234(o.sslCertificates); |
| 7682 } | 7682 } |
| 7683 buildCounterTargetSslProxiesSetSslCertificatesRequest--; | 7683 buildCounterTargetSslProxiesSetSslCertificatesRequest--; |
| 7684 } | 7684 } |
| 7685 | 7685 |
| 7686 buildUnnamed2141() { | 7686 buildUnnamed2235() { |
| 7687 var o = new core.List<core.String>(); | 7687 var o = new core.List<core.String>(); |
| 7688 o.add("foo"); | 7688 o.add("foo"); |
| 7689 o.add("foo"); | 7689 o.add("foo"); |
| 7690 return o; | 7690 return o; |
| 7691 } | 7691 } |
| 7692 | 7692 |
| 7693 checkUnnamed2141(core.List<core.String> o) { | 7693 checkUnnamed2235(core.List<core.String> o) { |
| 7694 unittest.expect(o, unittest.hasLength(2)); | 7694 unittest.expect(o, unittest.hasLength(2)); |
| 7695 unittest.expect(o[0], unittest.equals('foo')); | 7695 unittest.expect(o[0], unittest.equals('foo')); |
| 7696 unittest.expect(o[1], unittest.equals('foo')); | 7696 unittest.expect(o[1], unittest.equals('foo')); |
| 7697 } | 7697 } |
| 7698 | 7698 |
| 7699 core.int buildCounterTargetSslProxy = 0; | 7699 core.int buildCounterTargetSslProxy = 0; |
| 7700 buildTargetSslProxy() { | 7700 buildTargetSslProxy() { |
| 7701 var o = new api.TargetSslProxy(); | 7701 var o = new api.TargetSslProxy(); |
| 7702 buildCounterTargetSslProxy++; | 7702 buildCounterTargetSslProxy++; |
| 7703 if (buildCounterTargetSslProxy < 3) { | 7703 if (buildCounterTargetSslProxy < 3) { |
| 7704 o.creationTimestamp = "foo"; | 7704 o.creationTimestamp = "foo"; |
| 7705 o.description = "foo"; | 7705 o.description = "foo"; |
| 7706 o.id = "foo"; | 7706 o.id = "foo"; |
| 7707 o.kind = "foo"; | 7707 o.kind = "foo"; |
| 7708 o.name = "foo"; | 7708 o.name = "foo"; |
| 7709 o.proxyHeader = "foo"; | 7709 o.proxyHeader = "foo"; |
| 7710 o.selfLink = "foo"; | 7710 o.selfLink = "foo"; |
| 7711 o.service = "foo"; | 7711 o.service = "foo"; |
| 7712 o.sslCertificates = buildUnnamed2141(); | 7712 o.sslCertificates = buildUnnamed2235(); |
| 7713 } | 7713 } |
| 7714 buildCounterTargetSslProxy--; | 7714 buildCounterTargetSslProxy--; |
| 7715 return o; | 7715 return o; |
| 7716 } | 7716 } |
| 7717 | 7717 |
| 7718 checkTargetSslProxy(api.TargetSslProxy o) { | 7718 checkTargetSslProxy(api.TargetSslProxy o) { |
| 7719 buildCounterTargetSslProxy++; | 7719 buildCounterTargetSslProxy++; |
| 7720 if (buildCounterTargetSslProxy < 3) { | 7720 if (buildCounterTargetSslProxy < 3) { |
| 7721 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7721 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7722 unittest.expect(o.description, unittest.equals('foo')); | 7722 unittest.expect(o.description, unittest.equals('foo')); |
| 7723 unittest.expect(o.id, unittest.equals('foo')); | 7723 unittest.expect(o.id, unittest.equals('foo')); |
| 7724 unittest.expect(o.kind, unittest.equals('foo')); | 7724 unittest.expect(o.kind, unittest.equals('foo')); |
| 7725 unittest.expect(o.name, unittest.equals('foo')); | 7725 unittest.expect(o.name, unittest.equals('foo')); |
| 7726 unittest.expect(o.proxyHeader, unittest.equals('foo')); | 7726 unittest.expect(o.proxyHeader, unittest.equals('foo')); |
| 7727 unittest.expect(o.selfLink, unittest.equals('foo')); | 7727 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7728 unittest.expect(o.service, unittest.equals('foo')); | 7728 unittest.expect(o.service, unittest.equals('foo')); |
| 7729 checkUnnamed2141(o.sslCertificates); | 7729 checkUnnamed2235(o.sslCertificates); |
| 7730 } | 7730 } |
| 7731 buildCounterTargetSslProxy--; | 7731 buildCounterTargetSslProxy--; |
| 7732 } | 7732 } |
| 7733 | 7733 |
| 7734 buildUnnamed2142() { | 7734 buildUnnamed2236() { |
| 7735 var o = new core.List<api.TargetSslProxy>(); | 7735 var o = new core.List<api.TargetSslProxy>(); |
| 7736 o.add(buildTargetSslProxy()); | 7736 o.add(buildTargetSslProxy()); |
| 7737 o.add(buildTargetSslProxy()); | 7737 o.add(buildTargetSslProxy()); |
| 7738 return o; | 7738 return o; |
| 7739 } | 7739 } |
| 7740 | 7740 |
| 7741 checkUnnamed2142(core.List<api.TargetSslProxy> o) { | 7741 checkUnnamed2236(core.List<api.TargetSslProxy> o) { |
| 7742 unittest.expect(o, unittest.hasLength(2)); | 7742 unittest.expect(o, unittest.hasLength(2)); |
| 7743 checkTargetSslProxy(o[0]); | 7743 checkTargetSslProxy(o[0]); |
| 7744 checkTargetSslProxy(o[1]); | 7744 checkTargetSslProxy(o[1]); |
| 7745 } | 7745 } |
| 7746 | 7746 |
| 7747 core.int buildCounterTargetSslProxyList = 0; | 7747 core.int buildCounterTargetSslProxyList = 0; |
| 7748 buildTargetSslProxyList() { | 7748 buildTargetSslProxyList() { |
| 7749 var o = new api.TargetSslProxyList(); | 7749 var o = new api.TargetSslProxyList(); |
| 7750 buildCounterTargetSslProxyList++; | 7750 buildCounterTargetSslProxyList++; |
| 7751 if (buildCounterTargetSslProxyList < 3) { | 7751 if (buildCounterTargetSslProxyList < 3) { |
| 7752 o.id = "foo"; | 7752 o.id = "foo"; |
| 7753 o.items = buildUnnamed2142(); | 7753 o.items = buildUnnamed2236(); |
| 7754 o.kind = "foo"; | 7754 o.kind = "foo"; |
| 7755 o.nextPageToken = "foo"; | 7755 o.nextPageToken = "foo"; |
| 7756 o.selfLink = "foo"; | 7756 o.selfLink = "foo"; |
| 7757 } | 7757 } |
| 7758 buildCounterTargetSslProxyList--; | 7758 buildCounterTargetSslProxyList--; |
| 7759 return o; | 7759 return o; |
| 7760 } | 7760 } |
| 7761 | 7761 |
| 7762 checkTargetSslProxyList(api.TargetSslProxyList o) { | 7762 checkTargetSslProxyList(api.TargetSslProxyList o) { |
| 7763 buildCounterTargetSslProxyList++; | 7763 buildCounterTargetSslProxyList++; |
| 7764 if (buildCounterTargetSslProxyList < 3) { | 7764 if (buildCounterTargetSslProxyList < 3) { |
| 7765 unittest.expect(o.id, unittest.equals('foo')); | 7765 unittest.expect(o.id, unittest.equals('foo')); |
| 7766 checkUnnamed2142(o.items); | 7766 checkUnnamed2236(o.items); |
| 7767 unittest.expect(o.kind, unittest.equals('foo')); | 7767 unittest.expect(o.kind, unittest.equals('foo')); |
| 7768 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7768 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7769 unittest.expect(o.selfLink, unittest.equals('foo')); | 7769 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7770 } | 7770 } |
| 7771 buildCounterTargetSslProxyList--; | 7771 buildCounterTargetSslProxyList--; |
| 7772 } | 7772 } |
| 7773 | 7773 |
| 7774 buildUnnamed2143() { | 7774 buildUnnamed2237() { |
| 7775 var o = new core.List<core.String>(); | 7775 var o = new core.List<core.String>(); |
| 7776 o.add("foo"); | 7776 o.add("foo"); |
| 7777 o.add("foo"); | 7777 o.add("foo"); |
| 7778 return o; | 7778 return o; |
| 7779 } | 7779 } |
| 7780 | 7780 |
| 7781 checkUnnamed2143(core.List<core.String> o) { | 7781 checkUnnamed2237(core.List<core.String> o) { |
| 7782 unittest.expect(o, unittest.hasLength(2)); | 7782 unittest.expect(o, unittest.hasLength(2)); |
| 7783 unittest.expect(o[0], unittest.equals('foo')); | 7783 unittest.expect(o[0], unittest.equals('foo')); |
| 7784 unittest.expect(o[1], unittest.equals('foo')); | 7784 unittest.expect(o[1], unittest.equals('foo')); |
| 7785 } | 7785 } |
| 7786 | 7786 |
| 7787 buildUnnamed2144() { | 7787 buildUnnamed2238() { |
| 7788 var o = new core.List<core.String>(); | 7788 var o = new core.List<core.String>(); |
| 7789 o.add("foo"); | 7789 o.add("foo"); |
| 7790 o.add("foo"); | 7790 o.add("foo"); |
| 7791 return o; | 7791 return o; |
| 7792 } | 7792 } |
| 7793 | 7793 |
| 7794 checkUnnamed2144(core.List<core.String> o) { | 7794 checkUnnamed2238(core.List<core.String> o) { |
| 7795 unittest.expect(o, unittest.hasLength(2)); | 7795 unittest.expect(o, unittest.hasLength(2)); |
| 7796 unittest.expect(o[0], unittest.equals('foo')); | 7796 unittest.expect(o[0], unittest.equals('foo')); |
| 7797 unittest.expect(o[1], unittest.equals('foo')); | 7797 unittest.expect(o[1], unittest.equals('foo')); |
| 7798 } | 7798 } |
| 7799 | 7799 |
| 7800 core.int buildCounterTargetVpnGateway = 0; | 7800 core.int buildCounterTargetVpnGateway = 0; |
| 7801 buildTargetVpnGateway() { | 7801 buildTargetVpnGateway() { |
| 7802 var o = new api.TargetVpnGateway(); | 7802 var o = new api.TargetVpnGateway(); |
| 7803 buildCounterTargetVpnGateway++; | 7803 buildCounterTargetVpnGateway++; |
| 7804 if (buildCounterTargetVpnGateway < 3) { | 7804 if (buildCounterTargetVpnGateway < 3) { |
| 7805 o.creationTimestamp = "foo"; | 7805 o.creationTimestamp = "foo"; |
| 7806 o.description = "foo"; | 7806 o.description = "foo"; |
| 7807 o.forwardingRules = buildUnnamed2143(); | 7807 o.forwardingRules = buildUnnamed2237(); |
| 7808 o.id = "foo"; | 7808 o.id = "foo"; |
| 7809 o.kind = "foo"; | 7809 o.kind = "foo"; |
| 7810 o.name = "foo"; | 7810 o.name = "foo"; |
| 7811 o.network = "foo"; | 7811 o.network = "foo"; |
| 7812 o.region = "foo"; | 7812 o.region = "foo"; |
| 7813 o.selfLink = "foo"; | 7813 o.selfLink = "foo"; |
| 7814 o.status = "foo"; | 7814 o.status = "foo"; |
| 7815 o.tunnels = buildUnnamed2144(); | 7815 o.tunnels = buildUnnamed2238(); |
| 7816 } | 7816 } |
| 7817 buildCounterTargetVpnGateway--; | 7817 buildCounterTargetVpnGateway--; |
| 7818 return o; | 7818 return o; |
| 7819 } | 7819 } |
| 7820 | 7820 |
| 7821 checkTargetVpnGateway(api.TargetVpnGateway o) { | 7821 checkTargetVpnGateway(api.TargetVpnGateway o) { |
| 7822 buildCounterTargetVpnGateway++; | 7822 buildCounterTargetVpnGateway++; |
| 7823 if (buildCounterTargetVpnGateway < 3) { | 7823 if (buildCounterTargetVpnGateway < 3) { |
| 7824 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 7824 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 7825 unittest.expect(o.description, unittest.equals('foo')); | 7825 unittest.expect(o.description, unittest.equals('foo')); |
| 7826 checkUnnamed2143(o.forwardingRules); | 7826 checkUnnamed2237(o.forwardingRules); |
| 7827 unittest.expect(o.id, unittest.equals('foo')); | 7827 unittest.expect(o.id, unittest.equals('foo')); |
| 7828 unittest.expect(o.kind, unittest.equals('foo')); | 7828 unittest.expect(o.kind, unittest.equals('foo')); |
| 7829 unittest.expect(o.name, unittest.equals('foo')); | 7829 unittest.expect(o.name, unittest.equals('foo')); |
| 7830 unittest.expect(o.network, unittest.equals('foo')); | 7830 unittest.expect(o.network, unittest.equals('foo')); |
| 7831 unittest.expect(o.region, unittest.equals('foo')); | 7831 unittest.expect(o.region, unittest.equals('foo')); |
| 7832 unittest.expect(o.selfLink, unittest.equals('foo')); | 7832 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7833 unittest.expect(o.status, unittest.equals('foo')); | 7833 unittest.expect(o.status, unittest.equals('foo')); |
| 7834 checkUnnamed2144(o.tunnels); | 7834 checkUnnamed2238(o.tunnels); |
| 7835 } | 7835 } |
| 7836 buildCounterTargetVpnGateway--; | 7836 buildCounterTargetVpnGateway--; |
| 7837 } | 7837 } |
| 7838 | 7838 |
| 7839 buildUnnamed2145() { | 7839 buildUnnamed2239() { |
| 7840 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); | 7840 var o = new core.Map<core.String, api.TargetVpnGatewaysScopedList>(); |
| 7841 o["x"] = buildTargetVpnGatewaysScopedList(); | 7841 o["x"] = buildTargetVpnGatewaysScopedList(); |
| 7842 o["y"] = buildTargetVpnGatewaysScopedList(); | 7842 o["y"] = buildTargetVpnGatewaysScopedList(); |
| 7843 return o; | 7843 return o; |
| 7844 } | 7844 } |
| 7845 | 7845 |
| 7846 checkUnnamed2145(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { | 7846 checkUnnamed2239(core.Map<core.String, api.TargetVpnGatewaysScopedList> o) { |
| 7847 unittest.expect(o, unittest.hasLength(2)); | 7847 unittest.expect(o, unittest.hasLength(2)); |
| 7848 checkTargetVpnGatewaysScopedList(o["x"]); | 7848 checkTargetVpnGatewaysScopedList(o["x"]); |
| 7849 checkTargetVpnGatewaysScopedList(o["y"]); | 7849 checkTargetVpnGatewaysScopedList(o["y"]); |
| 7850 } | 7850 } |
| 7851 | 7851 |
| 7852 core.int buildCounterTargetVpnGatewayAggregatedList = 0; | 7852 core.int buildCounterTargetVpnGatewayAggregatedList = 0; |
| 7853 buildTargetVpnGatewayAggregatedList() { | 7853 buildTargetVpnGatewayAggregatedList() { |
| 7854 var o = new api.TargetVpnGatewayAggregatedList(); | 7854 var o = new api.TargetVpnGatewayAggregatedList(); |
| 7855 buildCounterTargetVpnGatewayAggregatedList++; | 7855 buildCounterTargetVpnGatewayAggregatedList++; |
| 7856 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 7856 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 7857 o.id = "foo"; | 7857 o.id = "foo"; |
| 7858 o.items = buildUnnamed2145(); | 7858 o.items = buildUnnamed2239(); |
| 7859 o.kind = "foo"; | 7859 o.kind = "foo"; |
| 7860 o.nextPageToken = "foo"; | 7860 o.nextPageToken = "foo"; |
| 7861 o.selfLink = "foo"; | 7861 o.selfLink = "foo"; |
| 7862 } | 7862 } |
| 7863 buildCounterTargetVpnGatewayAggregatedList--; | 7863 buildCounterTargetVpnGatewayAggregatedList--; |
| 7864 return o; | 7864 return o; |
| 7865 } | 7865 } |
| 7866 | 7866 |
| 7867 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { | 7867 checkTargetVpnGatewayAggregatedList(api.TargetVpnGatewayAggregatedList o) { |
| 7868 buildCounterTargetVpnGatewayAggregatedList++; | 7868 buildCounterTargetVpnGatewayAggregatedList++; |
| 7869 if (buildCounterTargetVpnGatewayAggregatedList < 3) { | 7869 if (buildCounterTargetVpnGatewayAggregatedList < 3) { |
| 7870 unittest.expect(o.id, unittest.equals('foo')); | 7870 unittest.expect(o.id, unittest.equals('foo')); |
| 7871 checkUnnamed2145(o.items); | 7871 checkUnnamed2239(o.items); |
| 7872 unittest.expect(o.kind, unittest.equals('foo')); | 7872 unittest.expect(o.kind, unittest.equals('foo')); |
| 7873 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7873 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7874 unittest.expect(o.selfLink, unittest.equals('foo')); | 7874 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7875 } | 7875 } |
| 7876 buildCounterTargetVpnGatewayAggregatedList--; | 7876 buildCounterTargetVpnGatewayAggregatedList--; |
| 7877 } | 7877 } |
| 7878 | 7878 |
| 7879 buildUnnamed2146() { | 7879 buildUnnamed2240() { |
| 7880 var o = new core.List<api.TargetVpnGateway>(); | 7880 var o = new core.List<api.TargetVpnGateway>(); |
| 7881 o.add(buildTargetVpnGateway()); | 7881 o.add(buildTargetVpnGateway()); |
| 7882 o.add(buildTargetVpnGateway()); | 7882 o.add(buildTargetVpnGateway()); |
| 7883 return o; | 7883 return o; |
| 7884 } | 7884 } |
| 7885 | 7885 |
| 7886 checkUnnamed2146(core.List<api.TargetVpnGateway> o) { | 7886 checkUnnamed2240(core.List<api.TargetVpnGateway> o) { |
| 7887 unittest.expect(o, unittest.hasLength(2)); | 7887 unittest.expect(o, unittest.hasLength(2)); |
| 7888 checkTargetVpnGateway(o[0]); | 7888 checkTargetVpnGateway(o[0]); |
| 7889 checkTargetVpnGateway(o[1]); | 7889 checkTargetVpnGateway(o[1]); |
| 7890 } | 7890 } |
| 7891 | 7891 |
| 7892 core.int buildCounterTargetVpnGatewayList = 0; | 7892 core.int buildCounterTargetVpnGatewayList = 0; |
| 7893 buildTargetVpnGatewayList() { | 7893 buildTargetVpnGatewayList() { |
| 7894 var o = new api.TargetVpnGatewayList(); | 7894 var o = new api.TargetVpnGatewayList(); |
| 7895 buildCounterTargetVpnGatewayList++; | 7895 buildCounterTargetVpnGatewayList++; |
| 7896 if (buildCounterTargetVpnGatewayList < 3) { | 7896 if (buildCounterTargetVpnGatewayList < 3) { |
| 7897 o.id = "foo"; | 7897 o.id = "foo"; |
| 7898 o.items = buildUnnamed2146(); | 7898 o.items = buildUnnamed2240(); |
| 7899 o.kind = "foo"; | 7899 o.kind = "foo"; |
| 7900 o.nextPageToken = "foo"; | 7900 o.nextPageToken = "foo"; |
| 7901 o.selfLink = "foo"; | 7901 o.selfLink = "foo"; |
| 7902 } | 7902 } |
| 7903 buildCounterTargetVpnGatewayList--; | 7903 buildCounterTargetVpnGatewayList--; |
| 7904 return o; | 7904 return o; |
| 7905 } | 7905 } |
| 7906 | 7906 |
| 7907 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { | 7907 checkTargetVpnGatewayList(api.TargetVpnGatewayList o) { |
| 7908 buildCounterTargetVpnGatewayList++; | 7908 buildCounterTargetVpnGatewayList++; |
| 7909 if (buildCounterTargetVpnGatewayList < 3) { | 7909 if (buildCounterTargetVpnGatewayList < 3) { |
| 7910 unittest.expect(o.id, unittest.equals('foo')); | 7910 unittest.expect(o.id, unittest.equals('foo')); |
| 7911 checkUnnamed2146(o.items); | 7911 checkUnnamed2240(o.items); |
| 7912 unittest.expect(o.kind, unittest.equals('foo')); | 7912 unittest.expect(o.kind, unittest.equals('foo')); |
| 7913 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7913 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7914 unittest.expect(o.selfLink, unittest.equals('foo')); | 7914 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 7915 } | 7915 } |
| 7916 buildCounterTargetVpnGatewayList--; | 7916 buildCounterTargetVpnGatewayList--; |
| 7917 } | 7917 } |
| 7918 | 7918 |
| 7919 buildUnnamed2147() { | 7919 buildUnnamed2241() { |
| 7920 var o = new core.List<api.TargetVpnGateway>(); | 7920 var o = new core.List<api.TargetVpnGateway>(); |
| 7921 o.add(buildTargetVpnGateway()); | 7921 o.add(buildTargetVpnGateway()); |
| 7922 o.add(buildTargetVpnGateway()); | 7922 o.add(buildTargetVpnGateway()); |
| 7923 return o; | 7923 return o; |
| 7924 } | 7924 } |
| 7925 | 7925 |
| 7926 checkUnnamed2147(core.List<api.TargetVpnGateway> o) { | 7926 checkUnnamed2241(core.List<api.TargetVpnGateway> o) { |
| 7927 unittest.expect(o, unittest.hasLength(2)); | 7927 unittest.expect(o, unittest.hasLength(2)); |
| 7928 checkTargetVpnGateway(o[0]); | 7928 checkTargetVpnGateway(o[0]); |
| 7929 checkTargetVpnGateway(o[1]); | 7929 checkTargetVpnGateway(o[1]); |
| 7930 } | 7930 } |
| 7931 | 7931 |
| 7932 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; | 7932 core.int buildCounterTargetVpnGatewaysScopedListWarningData = 0; |
| 7933 buildTargetVpnGatewaysScopedListWarningData() { | 7933 buildTargetVpnGatewaysScopedListWarningData() { |
| 7934 var o = new api.TargetVpnGatewaysScopedListWarningData(); | 7934 var o = new api.TargetVpnGatewaysScopedListWarningData(); |
| 7935 buildCounterTargetVpnGatewaysScopedListWarningData++; | 7935 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 7936 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 7936 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 7937 o.key = "foo"; | 7937 o.key = "foo"; |
| 7938 o.value = "foo"; | 7938 o.value = "foo"; |
| 7939 } | 7939 } |
| 7940 buildCounterTargetVpnGatewaysScopedListWarningData--; | 7940 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 7941 return o; | 7941 return o; |
| 7942 } | 7942 } |
| 7943 | 7943 |
| 7944 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { | 7944 checkTargetVpnGatewaysScopedListWarningData(api.TargetVpnGatewaysScopedListWarni
ngData o) { |
| 7945 buildCounterTargetVpnGatewaysScopedListWarningData++; | 7945 buildCounterTargetVpnGatewaysScopedListWarningData++; |
| 7946 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { | 7946 if (buildCounterTargetVpnGatewaysScopedListWarningData < 3) { |
| 7947 unittest.expect(o.key, unittest.equals('foo')); | 7947 unittest.expect(o.key, unittest.equals('foo')); |
| 7948 unittest.expect(o.value, unittest.equals('foo')); | 7948 unittest.expect(o.value, unittest.equals('foo')); |
| 7949 } | 7949 } |
| 7950 buildCounterTargetVpnGatewaysScopedListWarningData--; | 7950 buildCounterTargetVpnGatewaysScopedListWarningData--; |
| 7951 } | 7951 } |
| 7952 | 7952 |
| 7953 buildUnnamed2148() { | 7953 buildUnnamed2242() { |
| 7954 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); | 7954 var o = new core.List<api.TargetVpnGatewaysScopedListWarningData>(); |
| 7955 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 7955 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 7956 o.add(buildTargetVpnGatewaysScopedListWarningData()); | 7956 o.add(buildTargetVpnGatewaysScopedListWarningData()); |
| 7957 return o; | 7957 return o; |
| 7958 } | 7958 } |
| 7959 | 7959 |
| 7960 checkUnnamed2148(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { | 7960 checkUnnamed2242(core.List<api.TargetVpnGatewaysScopedListWarningData> o) { |
| 7961 unittest.expect(o, unittest.hasLength(2)); | 7961 unittest.expect(o, unittest.hasLength(2)); |
| 7962 checkTargetVpnGatewaysScopedListWarningData(o[0]); | 7962 checkTargetVpnGatewaysScopedListWarningData(o[0]); |
| 7963 checkTargetVpnGatewaysScopedListWarningData(o[1]); | 7963 checkTargetVpnGatewaysScopedListWarningData(o[1]); |
| 7964 } | 7964 } |
| 7965 | 7965 |
| 7966 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; | 7966 core.int buildCounterTargetVpnGatewaysScopedListWarning = 0; |
| 7967 buildTargetVpnGatewaysScopedListWarning() { | 7967 buildTargetVpnGatewaysScopedListWarning() { |
| 7968 var o = new api.TargetVpnGatewaysScopedListWarning(); | 7968 var o = new api.TargetVpnGatewaysScopedListWarning(); |
| 7969 buildCounterTargetVpnGatewaysScopedListWarning++; | 7969 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 7970 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 7970 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 7971 o.code = "foo"; | 7971 o.code = "foo"; |
| 7972 o.data = buildUnnamed2148(); | 7972 o.data = buildUnnamed2242(); |
| 7973 o.message = "foo"; | 7973 o.message = "foo"; |
| 7974 } | 7974 } |
| 7975 buildCounterTargetVpnGatewaysScopedListWarning--; | 7975 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 7976 return o; | 7976 return o; |
| 7977 } | 7977 } |
| 7978 | 7978 |
| 7979 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { | 7979 checkTargetVpnGatewaysScopedListWarning(api.TargetVpnGatewaysScopedListWarning o
) { |
| 7980 buildCounterTargetVpnGatewaysScopedListWarning++; | 7980 buildCounterTargetVpnGatewaysScopedListWarning++; |
| 7981 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { | 7981 if (buildCounterTargetVpnGatewaysScopedListWarning < 3) { |
| 7982 unittest.expect(o.code, unittest.equals('foo')); | 7982 unittest.expect(o.code, unittest.equals('foo')); |
| 7983 checkUnnamed2148(o.data); | 7983 checkUnnamed2242(o.data); |
| 7984 unittest.expect(o.message, unittest.equals('foo')); | 7984 unittest.expect(o.message, unittest.equals('foo')); |
| 7985 } | 7985 } |
| 7986 buildCounterTargetVpnGatewaysScopedListWarning--; | 7986 buildCounterTargetVpnGatewaysScopedListWarning--; |
| 7987 } | 7987 } |
| 7988 | 7988 |
| 7989 core.int buildCounterTargetVpnGatewaysScopedList = 0; | 7989 core.int buildCounterTargetVpnGatewaysScopedList = 0; |
| 7990 buildTargetVpnGatewaysScopedList() { | 7990 buildTargetVpnGatewaysScopedList() { |
| 7991 var o = new api.TargetVpnGatewaysScopedList(); | 7991 var o = new api.TargetVpnGatewaysScopedList(); |
| 7992 buildCounterTargetVpnGatewaysScopedList++; | 7992 buildCounterTargetVpnGatewaysScopedList++; |
| 7993 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 7993 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 7994 o.targetVpnGateways = buildUnnamed2147(); | 7994 o.targetVpnGateways = buildUnnamed2241(); |
| 7995 o.warning = buildTargetVpnGatewaysScopedListWarning(); | 7995 o.warning = buildTargetVpnGatewaysScopedListWarning(); |
| 7996 } | 7996 } |
| 7997 buildCounterTargetVpnGatewaysScopedList--; | 7997 buildCounterTargetVpnGatewaysScopedList--; |
| 7998 return o; | 7998 return o; |
| 7999 } | 7999 } |
| 8000 | 8000 |
| 8001 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { | 8001 checkTargetVpnGatewaysScopedList(api.TargetVpnGatewaysScopedList o) { |
| 8002 buildCounterTargetVpnGatewaysScopedList++; | 8002 buildCounterTargetVpnGatewaysScopedList++; |
| 8003 if (buildCounterTargetVpnGatewaysScopedList < 3) { | 8003 if (buildCounterTargetVpnGatewaysScopedList < 3) { |
| 8004 checkUnnamed2147(o.targetVpnGateways); | 8004 checkUnnamed2241(o.targetVpnGateways); |
| 8005 checkTargetVpnGatewaysScopedListWarning(o.warning); | 8005 checkTargetVpnGatewaysScopedListWarning(o.warning); |
| 8006 } | 8006 } |
| 8007 buildCounterTargetVpnGatewaysScopedList--; | 8007 buildCounterTargetVpnGatewaysScopedList--; |
| 8008 } | 8008 } |
| 8009 | 8009 |
| 8010 core.int buildCounterTestFailure = 0; | 8010 core.int buildCounterTestFailure = 0; |
| 8011 buildTestFailure() { | 8011 buildTestFailure() { |
| 8012 var o = new api.TestFailure(); | 8012 var o = new api.TestFailure(); |
| 8013 buildCounterTestFailure++; | 8013 buildCounterTestFailure++; |
| 8014 if (buildCounterTestFailure < 3) { | 8014 if (buildCounterTestFailure < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 8025 buildCounterTestFailure++; | 8025 buildCounterTestFailure++; |
| 8026 if (buildCounterTestFailure < 3) { | 8026 if (buildCounterTestFailure < 3) { |
| 8027 unittest.expect(o.actualService, unittest.equals('foo')); | 8027 unittest.expect(o.actualService, unittest.equals('foo')); |
| 8028 unittest.expect(o.expectedService, unittest.equals('foo')); | 8028 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 8029 unittest.expect(o.host, unittest.equals('foo')); | 8029 unittest.expect(o.host, unittest.equals('foo')); |
| 8030 unittest.expect(o.path, unittest.equals('foo')); | 8030 unittest.expect(o.path, unittest.equals('foo')); |
| 8031 } | 8031 } |
| 8032 buildCounterTestFailure--; | 8032 buildCounterTestFailure--; |
| 8033 } | 8033 } |
| 8034 | 8034 |
| 8035 buildUnnamed2149() { | 8035 buildUnnamed2243() { |
| 8036 var o = new core.List<api.HostRule>(); | 8036 var o = new core.List<api.HostRule>(); |
| 8037 o.add(buildHostRule()); | 8037 o.add(buildHostRule()); |
| 8038 o.add(buildHostRule()); | 8038 o.add(buildHostRule()); |
| 8039 return o; | 8039 return o; |
| 8040 } | 8040 } |
| 8041 | 8041 |
| 8042 checkUnnamed2149(core.List<api.HostRule> o) { | 8042 checkUnnamed2243(core.List<api.HostRule> o) { |
| 8043 unittest.expect(o, unittest.hasLength(2)); | 8043 unittest.expect(o, unittest.hasLength(2)); |
| 8044 checkHostRule(o[0]); | 8044 checkHostRule(o[0]); |
| 8045 checkHostRule(o[1]); | 8045 checkHostRule(o[1]); |
| 8046 } | 8046 } |
| 8047 | 8047 |
| 8048 buildUnnamed2150() { | 8048 buildUnnamed2244() { |
| 8049 var o = new core.List<api.PathMatcher>(); | 8049 var o = new core.List<api.PathMatcher>(); |
| 8050 o.add(buildPathMatcher()); | 8050 o.add(buildPathMatcher()); |
| 8051 o.add(buildPathMatcher()); | 8051 o.add(buildPathMatcher()); |
| 8052 return o; | 8052 return o; |
| 8053 } | 8053 } |
| 8054 | 8054 |
| 8055 checkUnnamed2150(core.List<api.PathMatcher> o) { | 8055 checkUnnamed2244(core.List<api.PathMatcher> o) { |
| 8056 unittest.expect(o, unittest.hasLength(2)); | 8056 unittest.expect(o, unittest.hasLength(2)); |
| 8057 checkPathMatcher(o[0]); | 8057 checkPathMatcher(o[0]); |
| 8058 checkPathMatcher(o[1]); | 8058 checkPathMatcher(o[1]); |
| 8059 } | 8059 } |
| 8060 | 8060 |
| 8061 buildUnnamed2151() { | 8061 buildUnnamed2245() { |
| 8062 var o = new core.List<api.UrlMapTest>(); | 8062 var o = new core.List<api.UrlMapTest>(); |
| 8063 o.add(buildUrlMapTest()); | 8063 o.add(buildUrlMapTest()); |
| 8064 o.add(buildUrlMapTest()); | 8064 o.add(buildUrlMapTest()); |
| 8065 return o; | 8065 return o; |
| 8066 } | 8066 } |
| 8067 | 8067 |
| 8068 checkUnnamed2151(core.List<api.UrlMapTest> o) { | 8068 checkUnnamed2245(core.List<api.UrlMapTest> o) { |
| 8069 unittest.expect(o, unittest.hasLength(2)); | 8069 unittest.expect(o, unittest.hasLength(2)); |
| 8070 checkUrlMapTest(o[0]); | 8070 checkUrlMapTest(o[0]); |
| 8071 checkUrlMapTest(o[1]); | 8071 checkUrlMapTest(o[1]); |
| 8072 } | 8072 } |
| 8073 | 8073 |
| 8074 core.int buildCounterUrlMap = 0; | 8074 core.int buildCounterUrlMap = 0; |
| 8075 buildUrlMap() { | 8075 buildUrlMap() { |
| 8076 var o = new api.UrlMap(); | 8076 var o = new api.UrlMap(); |
| 8077 buildCounterUrlMap++; | 8077 buildCounterUrlMap++; |
| 8078 if (buildCounterUrlMap < 3) { | 8078 if (buildCounterUrlMap < 3) { |
| 8079 o.creationTimestamp = "foo"; | 8079 o.creationTimestamp = "foo"; |
| 8080 o.defaultService = "foo"; | 8080 o.defaultService = "foo"; |
| 8081 o.description = "foo"; | 8081 o.description = "foo"; |
| 8082 o.fingerprint = "foo"; | 8082 o.fingerprint = "foo"; |
| 8083 o.hostRules = buildUnnamed2149(); | 8083 o.hostRules = buildUnnamed2243(); |
| 8084 o.id = "foo"; | 8084 o.id = "foo"; |
| 8085 o.kind = "foo"; | 8085 o.kind = "foo"; |
| 8086 o.name = "foo"; | 8086 o.name = "foo"; |
| 8087 o.pathMatchers = buildUnnamed2150(); | 8087 o.pathMatchers = buildUnnamed2244(); |
| 8088 o.selfLink = "foo"; | 8088 o.selfLink = "foo"; |
| 8089 o.tests = buildUnnamed2151(); | 8089 o.tests = buildUnnamed2245(); |
| 8090 } | 8090 } |
| 8091 buildCounterUrlMap--; | 8091 buildCounterUrlMap--; |
| 8092 return o; | 8092 return o; |
| 8093 } | 8093 } |
| 8094 | 8094 |
| 8095 checkUrlMap(api.UrlMap o) { | 8095 checkUrlMap(api.UrlMap o) { |
| 8096 buildCounterUrlMap++; | 8096 buildCounterUrlMap++; |
| 8097 if (buildCounterUrlMap < 3) { | 8097 if (buildCounterUrlMap < 3) { |
| 8098 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 8098 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 8099 unittest.expect(o.defaultService, unittest.equals('foo')); | 8099 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 8100 unittest.expect(o.description, unittest.equals('foo')); | 8100 unittest.expect(o.description, unittest.equals('foo')); |
| 8101 unittest.expect(o.fingerprint, unittest.equals('foo')); | 8101 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 8102 checkUnnamed2149(o.hostRules); | 8102 checkUnnamed2243(o.hostRules); |
| 8103 unittest.expect(o.id, unittest.equals('foo')); | 8103 unittest.expect(o.id, unittest.equals('foo')); |
| 8104 unittest.expect(o.kind, unittest.equals('foo')); | 8104 unittest.expect(o.kind, unittest.equals('foo')); |
| 8105 unittest.expect(o.name, unittest.equals('foo')); | 8105 unittest.expect(o.name, unittest.equals('foo')); |
| 8106 checkUnnamed2150(o.pathMatchers); | 8106 checkUnnamed2244(o.pathMatchers); |
| 8107 unittest.expect(o.selfLink, unittest.equals('foo')); | 8107 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8108 checkUnnamed2151(o.tests); | 8108 checkUnnamed2245(o.tests); |
| 8109 } | 8109 } |
| 8110 buildCounterUrlMap--; | 8110 buildCounterUrlMap--; |
| 8111 } | 8111 } |
| 8112 | 8112 |
| 8113 buildUnnamed2152() { | 8113 buildUnnamed2246() { |
| 8114 var o = new core.List<api.UrlMap>(); | 8114 var o = new core.List<api.UrlMap>(); |
| 8115 o.add(buildUrlMap()); | 8115 o.add(buildUrlMap()); |
| 8116 o.add(buildUrlMap()); | 8116 o.add(buildUrlMap()); |
| 8117 return o; | 8117 return o; |
| 8118 } | 8118 } |
| 8119 | 8119 |
| 8120 checkUnnamed2152(core.List<api.UrlMap> o) { | 8120 checkUnnamed2246(core.List<api.UrlMap> o) { |
| 8121 unittest.expect(o, unittest.hasLength(2)); | 8121 unittest.expect(o, unittest.hasLength(2)); |
| 8122 checkUrlMap(o[0]); | 8122 checkUrlMap(o[0]); |
| 8123 checkUrlMap(o[1]); | 8123 checkUrlMap(o[1]); |
| 8124 } | 8124 } |
| 8125 | 8125 |
| 8126 core.int buildCounterUrlMapList = 0; | 8126 core.int buildCounterUrlMapList = 0; |
| 8127 buildUrlMapList() { | 8127 buildUrlMapList() { |
| 8128 var o = new api.UrlMapList(); | 8128 var o = new api.UrlMapList(); |
| 8129 buildCounterUrlMapList++; | 8129 buildCounterUrlMapList++; |
| 8130 if (buildCounterUrlMapList < 3) { | 8130 if (buildCounterUrlMapList < 3) { |
| 8131 o.id = "foo"; | 8131 o.id = "foo"; |
| 8132 o.items = buildUnnamed2152(); | 8132 o.items = buildUnnamed2246(); |
| 8133 o.kind = "foo"; | 8133 o.kind = "foo"; |
| 8134 o.nextPageToken = "foo"; | 8134 o.nextPageToken = "foo"; |
| 8135 o.selfLink = "foo"; | 8135 o.selfLink = "foo"; |
| 8136 } | 8136 } |
| 8137 buildCounterUrlMapList--; | 8137 buildCounterUrlMapList--; |
| 8138 return o; | 8138 return o; |
| 8139 } | 8139 } |
| 8140 | 8140 |
| 8141 checkUrlMapList(api.UrlMapList o) { | 8141 checkUrlMapList(api.UrlMapList o) { |
| 8142 buildCounterUrlMapList++; | 8142 buildCounterUrlMapList++; |
| 8143 if (buildCounterUrlMapList < 3) { | 8143 if (buildCounterUrlMapList < 3) { |
| 8144 unittest.expect(o.id, unittest.equals('foo')); | 8144 unittest.expect(o.id, unittest.equals('foo')); |
| 8145 checkUnnamed2152(o.items); | 8145 checkUnnamed2246(o.items); |
| 8146 unittest.expect(o.kind, unittest.equals('foo')); | 8146 unittest.expect(o.kind, unittest.equals('foo')); |
| 8147 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8147 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8148 unittest.expect(o.selfLink, unittest.equals('foo')); | 8148 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8149 } | 8149 } |
| 8150 buildCounterUrlMapList--; | 8150 buildCounterUrlMapList--; |
| 8151 } | 8151 } |
| 8152 | 8152 |
| 8153 core.int buildCounterUrlMapReference = 0; | 8153 core.int buildCounterUrlMapReference = 0; |
| 8154 buildUrlMapReference() { | 8154 buildUrlMapReference() { |
| 8155 var o = new api.UrlMapReference(); | 8155 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8187 buildCounterUrlMapTest++; | 8187 buildCounterUrlMapTest++; |
| 8188 if (buildCounterUrlMapTest < 3) { | 8188 if (buildCounterUrlMapTest < 3) { |
| 8189 unittest.expect(o.description, unittest.equals('foo')); | 8189 unittest.expect(o.description, unittest.equals('foo')); |
| 8190 unittest.expect(o.host, unittest.equals('foo')); | 8190 unittest.expect(o.host, unittest.equals('foo')); |
| 8191 unittest.expect(o.path, unittest.equals('foo')); | 8191 unittest.expect(o.path, unittest.equals('foo')); |
| 8192 unittest.expect(o.service, unittest.equals('foo')); | 8192 unittest.expect(o.service, unittest.equals('foo')); |
| 8193 } | 8193 } |
| 8194 buildCounterUrlMapTest--; | 8194 buildCounterUrlMapTest--; |
| 8195 } | 8195 } |
| 8196 | 8196 |
| 8197 buildUnnamed2153() { | 8197 buildUnnamed2247() { |
| 8198 var o = new core.List<core.String>(); | 8198 var o = new core.List<core.String>(); |
| 8199 o.add("foo"); | 8199 o.add("foo"); |
| 8200 o.add("foo"); | 8200 o.add("foo"); |
| 8201 return o; | 8201 return o; |
| 8202 } | 8202 } |
| 8203 | 8203 |
| 8204 checkUnnamed2153(core.List<core.String> o) { | 8204 checkUnnamed2247(core.List<core.String> o) { |
| 8205 unittest.expect(o, unittest.hasLength(2)); | 8205 unittest.expect(o, unittest.hasLength(2)); |
| 8206 unittest.expect(o[0], unittest.equals('foo')); | 8206 unittest.expect(o[0], unittest.equals('foo')); |
| 8207 unittest.expect(o[1], unittest.equals('foo')); | 8207 unittest.expect(o[1], unittest.equals('foo')); |
| 8208 } | 8208 } |
| 8209 | 8209 |
| 8210 buildUnnamed2154() { | 8210 buildUnnamed2248() { |
| 8211 var o = new core.List<api.TestFailure>(); | 8211 var o = new core.List<api.TestFailure>(); |
| 8212 o.add(buildTestFailure()); | 8212 o.add(buildTestFailure()); |
| 8213 o.add(buildTestFailure()); | 8213 o.add(buildTestFailure()); |
| 8214 return o; | 8214 return o; |
| 8215 } | 8215 } |
| 8216 | 8216 |
| 8217 checkUnnamed2154(core.List<api.TestFailure> o) { | 8217 checkUnnamed2248(core.List<api.TestFailure> o) { |
| 8218 unittest.expect(o, unittest.hasLength(2)); | 8218 unittest.expect(o, unittest.hasLength(2)); |
| 8219 checkTestFailure(o[0]); | 8219 checkTestFailure(o[0]); |
| 8220 checkTestFailure(o[1]); | 8220 checkTestFailure(o[1]); |
| 8221 } | 8221 } |
| 8222 | 8222 |
| 8223 core.int buildCounterUrlMapValidationResult = 0; | 8223 core.int buildCounterUrlMapValidationResult = 0; |
| 8224 buildUrlMapValidationResult() { | 8224 buildUrlMapValidationResult() { |
| 8225 var o = new api.UrlMapValidationResult(); | 8225 var o = new api.UrlMapValidationResult(); |
| 8226 buildCounterUrlMapValidationResult++; | 8226 buildCounterUrlMapValidationResult++; |
| 8227 if (buildCounterUrlMapValidationResult < 3) { | 8227 if (buildCounterUrlMapValidationResult < 3) { |
| 8228 o.loadErrors = buildUnnamed2153(); | 8228 o.loadErrors = buildUnnamed2247(); |
| 8229 o.loadSucceeded = true; | 8229 o.loadSucceeded = true; |
| 8230 o.testFailures = buildUnnamed2154(); | 8230 o.testFailures = buildUnnamed2248(); |
| 8231 o.testPassed = true; | 8231 o.testPassed = true; |
| 8232 } | 8232 } |
| 8233 buildCounterUrlMapValidationResult--; | 8233 buildCounterUrlMapValidationResult--; |
| 8234 return o; | 8234 return o; |
| 8235 } | 8235 } |
| 8236 | 8236 |
| 8237 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 8237 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 8238 buildCounterUrlMapValidationResult++; | 8238 buildCounterUrlMapValidationResult++; |
| 8239 if (buildCounterUrlMapValidationResult < 3) { | 8239 if (buildCounterUrlMapValidationResult < 3) { |
| 8240 checkUnnamed2153(o.loadErrors); | 8240 checkUnnamed2247(o.loadErrors); |
| 8241 unittest.expect(o.loadSucceeded, unittest.isTrue); | 8241 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 8242 checkUnnamed2154(o.testFailures); | 8242 checkUnnamed2248(o.testFailures); |
| 8243 unittest.expect(o.testPassed, unittest.isTrue); | 8243 unittest.expect(o.testPassed, unittest.isTrue); |
| 8244 } | 8244 } |
| 8245 buildCounterUrlMapValidationResult--; | 8245 buildCounterUrlMapValidationResult--; |
| 8246 } | 8246 } |
| 8247 | 8247 |
| 8248 core.int buildCounterUrlMapsValidateRequest = 0; | 8248 core.int buildCounterUrlMapsValidateRequest = 0; |
| 8249 buildUrlMapsValidateRequest() { | 8249 buildUrlMapsValidateRequest() { |
| 8250 var o = new api.UrlMapsValidateRequest(); | 8250 var o = new api.UrlMapsValidateRequest(); |
| 8251 buildCounterUrlMapsValidateRequest++; | 8251 buildCounterUrlMapsValidateRequest++; |
| 8252 if (buildCounterUrlMapsValidateRequest < 3) { | 8252 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8297 | 8297 |
| 8298 checkUsageExportLocation(api.UsageExportLocation o) { | 8298 checkUsageExportLocation(api.UsageExportLocation o) { |
| 8299 buildCounterUsageExportLocation++; | 8299 buildCounterUsageExportLocation++; |
| 8300 if (buildCounterUsageExportLocation < 3) { | 8300 if (buildCounterUsageExportLocation < 3) { |
| 8301 unittest.expect(o.bucketName, unittest.equals('foo')); | 8301 unittest.expect(o.bucketName, unittest.equals('foo')); |
| 8302 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); | 8302 unittest.expect(o.reportNamePrefix, unittest.equals('foo')); |
| 8303 } | 8303 } |
| 8304 buildCounterUsageExportLocation--; | 8304 buildCounterUsageExportLocation--; |
| 8305 } | 8305 } |
| 8306 | 8306 |
| 8307 buildUnnamed2155() { | 8307 buildUnnamed2249() { |
| 8308 var o = new core.List<core.String>(); | 8308 var o = new core.List<core.String>(); |
| 8309 o.add("foo"); | 8309 o.add("foo"); |
| 8310 o.add("foo"); | 8310 o.add("foo"); |
| 8311 return o; | 8311 return o; |
| 8312 } | 8312 } |
| 8313 | 8313 |
| 8314 checkUnnamed2155(core.List<core.String> o) { | 8314 checkUnnamed2249(core.List<core.String> o) { |
| 8315 unittest.expect(o, unittest.hasLength(2)); | 8315 unittest.expect(o, unittest.hasLength(2)); |
| 8316 unittest.expect(o[0], unittest.equals('foo')); | 8316 unittest.expect(o[0], unittest.equals('foo')); |
| 8317 unittest.expect(o[1], unittest.equals('foo')); | 8317 unittest.expect(o[1], unittest.equals('foo')); |
| 8318 } | 8318 } |
| 8319 | 8319 |
| 8320 buildUnnamed2156() { | 8320 buildUnnamed2250() { |
| 8321 var o = new core.List<core.String>(); | 8321 var o = new core.List<core.String>(); |
| 8322 o.add("foo"); | 8322 o.add("foo"); |
| 8323 o.add("foo"); | 8323 o.add("foo"); |
| 8324 return o; | 8324 return o; |
| 8325 } | 8325 } |
| 8326 | 8326 |
| 8327 checkUnnamed2156(core.List<core.String> o) { | 8327 checkUnnamed2250(core.List<core.String> o) { |
| 8328 unittest.expect(o, unittest.hasLength(2)); | 8328 unittest.expect(o, unittest.hasLength(2)); |
| 8329 unittest.expect(o[0], unittest.equals('foo')); | 8329 unittest.expect(o[0], unittest.equals('foo')); |
| 8330 unittest.expect(o[1], unittest.equals('foo')); | 8330 unittest.expect(o[1], unittest.equals('foo')); |
| 8331 } | 8331 } |
| 8332 | 8332 |
| 8333 core.int buildCounterVpnTunnel = 0; | 8333 core.int buildCounterVpnTunnel = 0; |
| 8334 buildVpnTunnel() { | 8334 buildVpnTunnel() { |
| 8335 var o = new api.VpnTunnel(); | 8335 var o = new api.VpnTunnel(); |
| 8336 buildCounterVpnTunnel++; | 8336 buildCounterVpnTunnel++; |
| 8337 if (buildCounterVpnTunnel < 3) { | 8337 if (buildCounterVpnTunnel < 3) { |
| 8338 o.creationTimestamp = "foo"; | 8338 o.creationTimestamp = "foo"; |
| 8339 o.description = "foo"; | 8339 o.description = "foo"; |
| 8340 o.detailedStatus = "foo"; | 8340 o.detailedStatus = "foo"; |
| 8341 o.id = "foo"; | 8341 o.id = "foo"; |
| 8342 o.ikeVersion = 42; | 8342 o.ikeVersion = 42; |
| 8343 o.kind = "foo"; | 8343 o.kind = "foo"; |
| 8344 o.localTrafficSelector = buildUnnamed2155(); | 8344 o.localTrafficSelector = buildUnnamed2249(); |
| 8345 o.name = "foo"; | 8345 o.name = "foo"; |
| 8346 o.peerIp = "foo"; | 8346 o.peerIp = "foo"; |
| 8347 o.region = "foo"; | 8347 o.region = "foo"; |
| 8348 o.remoteTrafficSelector = buildUnnamed2156(); | 8348 o.remoteTrafficSelector = buildUnnamed2250(); |
| 8349 o.router = "foo"; | 8349 o.router = "foo"; |
| 8350 o.selfLink = "foo"; | 8350 o.selfLink = "foo"; |
| 8351 o.sharedSecret = "foo"; | 8351 o.sharedSecret = "foo"; |
| 8352 o.sharedSecretHash = "foo"; | 8352 o.sharedSecretHash = "foo"; |
| 8353 o.status = "foo"; | 8353 o.status = "foo"; |
| 8354 o.targetVpnGateway = "foo"; | 8354 o.targetVpnGateway = "foo"; |
| 8355 } | 8355 } |
| 8356 buildCounterVpnTunnel--; | 8356 buildCounterVpnTunnel--; |
| 8357 return o; | 8357 return o; |
| 8358 } | 8358 } |
| 8359 | 8359 |
| 8360 checkVpnTunnel(api.VpnTunnel o) { | 8360 checkVpnTunnel(api.VpnTunnel o) { |
| 8361 buildCounterVpnTunnel++; | 8361 buildCounterVpnTunnel++; |
| 8362 if (buildCounterVpnTunnel < 3) { | 8362 if (buildCounterVpnTunnel < 3) { |
| 8363 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 8363 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 8364 unittest.expect(o.description, unittest.equals('foo')); | 8364 unittest.expect(o.description, unittest.equals('foo')); |
| 8365 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 8365 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 8366 unittest.expect(o.id, unittest.equals('foo')); | 8366 unittest.expect(o.id, unittest.equals('foo')); |
| 8367 unittest.expect(o.ikeVersion, unittest.equals(42)); | 8367 unittest.expect(o.ikeVersion, unittest.equals(42)); |
| 8368 unittest.expect(o.kind, unittest.equals('foo')); | 8368 unittest.expect(o.kind, unittest.equals('foo')); |
| 8369 checkUnnamed2155(o.localTrafficSelector); | 8369 checkUnnamed2249(o.localTrafficSelector); |
| 8370 unittest.expect(o.name, unittest.equals('foo')); | 8370 unittest.expect(o.name, unittest.equals('foo')); |
| 8371 unittest.expect(o.peerIp, unittest.equals('foo')); | 8371 unittest.expect(o.peerIp, unittest.equals('foo')); |
| 8372 unittest.expect(o.region, unittest.equals('foo')); | 8372 unittest.expect(o.region, unittest.equals('foo')); |
| 8373 checkUnnamed2156(o.remoteTrafficSelector); | 8373 checkUnnamed2250(o.remoteTrafficSelector); |
| 8374 unittest.expect(o.router, unittest.equals('foo')); | 8374 unittest.expect(o.router, unittest.equals('foo')); |
| 8375 unittest.expect(o.selfLink, unittest.equals('foo')); | 8375 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8376 unittest.expect(o.sharedSecret, unittest.equals('foo')); | 8376 unittest.expect(o.sharedSecret, unittest.equals('foo')); |
| 8377 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); | 8377 unittest.expect(o.sharedSecretHash, unittest.equals('foo')); |
| 8378 unittest.expect(o.status, unittest.equals('foo')); | 8378 unittest.expect(o.status, unittest.equals('foo')); |
| 8379 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); | 8379 unittest.expect(o.targetVpnGateway, unittest.equals('foo')); |
| 8380 } | 8380 } |
| 8381 buildCounterVpnTunnel--; | 8381 buildCounterVpnTunnel--; |
| 8382 } | 8382 } |
| 8383 | 8383 |
| 8384 buildUnnamed2157() { | 8384 buildUnnamed2251() { |
| 8385 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); | 8385 var o = new core.Map<core.String, api.VpnTunnelsScopedList>(); |
| 8386 o["x"] = buildVpnTunnelsScopedList(); | 8386 o["x"] = buildVpnTunnelsScopedList(); |
| 8387 o["y"] = buildVpnTunnelsScopedList(); | 8387 o["y"] = buildVpnTunnelsScopedList(); |
| 8388 return o; | 8388 return o; |
| 8389 } | 8389 } |
| 8390 | 8390 |
| 8391 checkUnnamed2157(core.Map<core.String, api.VpnTunnelsScopedList> o) { | 8391 checkUnnamed2251(core.Map<core.String, api.VpnTunnelsScopedList> o) { |
| 8392 unittest.expect(o, unittest.hasLength(2)); | 8392 unittest.expect(o, unittest.hasLength(2)); |
| 8393 checkVpnTunnelsScopedList(o["x"]); | 8393 checkVpnTunnelsScopedList(o["x"]); |
| 8394 checkVpnTunnelsScopedList(o["y"]); | 8394 checkVpnTunnelsScopedList(o["y"]); |
| 8395 } | 8395 } |
| 8396 | 8396 |
| 8397 core.int buildCounterVpnTunnelAggregatedList = 0; | 8397 core.int buildCounterVpnTunnelAggregatedList = 0; |
| 8398 buildVpnTunnelAggregatedList() { | 8398 buildVpnTunnelAggregatedList() { |
| 8399 var o = new api.VpnTunnelAggregatedList(); | 8399 var o = new api.VpnTunnelAggregatedList(); |
| 8400 buildCounterVpnTunnelAggregatedList++; | 8400 buildCounterVpnTunnelAggregatedList++; |
| 8401 if (buildCounterVpnTunnelAggregatedList < 3) { | 8401 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 8402 o.id = "foo"; | 8402 o.id = "foo"; |
| 8403 o.items = buildUnnamed2157(); | 8403 o.items = buildUnnamed2251(); |
| 8404 o.kind = "foo"; | 8404 o.kind = "foo"; |
| 8405 o.nextPageToken = "foo"; | 8405 o.nextPageToken = "foo"; |
| 8406 o.selfLink = "foo"; | 8406 o.selfLink = "foo"; |
| 8407 } | 8407 } |
| 8408 buildCounterVpnTunnelAggregatedList--; | 8408 buildCounterVpnTunnelAggregatedList--; |
| 8409 return o; | 8409 return o; |
| 8410 } | 8410 } |
| 8411 | 8411 |
| 8412 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { | 8412 checkVpnTunnelAggregatedList(api.VpnTunnelAggregatedList o) { |
| 8413 buildCounterVpnTunnelAggregatedList++; | 8413 buildCounterVpnTunnelAggregatedList++; |
| 8414 if (buildCounterVpnTunnelAggregatedList < 3) { | 8414 if (buildCounterVpnTunnelAggregatedList < 3) { |
| 8415 unittest.expect(o.id, unittest.equals('foo')); | 8415 unittest.expect(o.id, unittest.equals('foo')); |
| 8416 checkUnnamed2157(o.items); | 8416 checkUnnamed2251(o.items); |
| 8417 unittest.expect(o.kind, unittest.equals('foo')); | 8417 unittest.expect(o.kind, unittest.equals('foo')); |
| 8418 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8418 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8419 unittest.expect(o.selfLink, unittest.equals('foo')); | 8419 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8420 } | 8420 } |
| 8421 buildCounterVpnTunnelAggregatedList--; | 8421 buildCounterVpnTunnelAggregatedList--; |
| 8422 } | 8422 } |
| 8423 | 8423 |
| 8424 buildUnnamed2158() { | 8424 buildUnnamed2252() { |
| 8425 var o = new core.List<api.VpnTunnel>(); | 8425 var o = new core.List<api.VpnTunnel>(); |
| 8426 o.add(buildVpnTunnel()); | 8426 o.add(buildVpnTunnel()); |
| 8427 o.add(buildVpnTunnel()); | 8427 o.add(buildVpnTunnel()); |
| 8428 return o; | 8428 return o; |
| 8429 } | 8429 } |
| 8430 | 8430 |
| 8431 checkUnnamed2158(core.List<api.VpnTunnel> o) { | 8431 checkUnnamed2252(core.List<api.VpnTunnel> o) { |
| 8432 unittest.expect(o, unittest.hasLength(2)); | 8432 unittest.expect(o, unittest.hasLength(2)); |
| 8433 checkVpnTunnel(o[0]); | 8433 checkVpnTunnel(o[0]); |
| 8434 checkVpnTunnel(o[1]); | 8434 checkVpnTunnel(o[1]); |
| 8435 } | 8435 } |
| 8436 | 8436 |
| 8437 core.int buildCounterVpnTunnelList = 0; | 8437 core.int buildCounterVpnTunnelList = 0; |
| 8438 buildVpnTunnelList() { | 8438 buildVpnTunnelList() { |
| 8439 var o = new api.VpnTunnelList(); | 8439 var o = new api.VpnTunnelList(); |
| 8440 buildCounterVpnTunnelList++; | 8440 buildCounterVpnTunnelList++; |
| 8441 if (buildCounterVpnTunnelList < 3) { | 8441 if (buildCounterVpnTunnelList < 3) { |
| 8442 o.id = "foo"; | 8442 o.id = "foo"; |
| 8443 o.items = buildUnnamed2158(); | 8443 o.items = buildUnnamed2252(); |
| 8444 o.kind = "foo"; | 8444 o.kind = "foo"; |
| 8445 o.nextPageToken = "foo"; | 8445 o.nextPageToken = "foo"; |
| 8446 o.selfLink = "foo"; | 8446 o.selfLink = "foo"; |
| 8447 } | 8447 } |
| 8448 buildCounterVpnTunnelList--; | 8448 buildCounterVpnTunnelList--; |
| 8449 return o; | 8449 return o; |
| 8450 } | 8450 } |
| 8451 | 8451 |
| 8452 checkVpnTunnelList(api.VpnTunnelList o) { | 8452 checkVpnTunnelList(api.VpnTunnelList o) { |
| 8453 buildCounterVpnTunnelList++; | 8453 buildCounterVpnTunnelList++; |
| 8454 if (buildCounterVpnTunnelList < 3) { | 8454 if (buildCounterVpnTunnelList < 3) { |
| 8455 unittest.expect(o.id, unittest.equals('foo')); | 8455 unittest.expect(o.id, unittest.equals('foo')); |
| 8456 checkUnnamed2158(o.items); | 8456 checkUnnamed2252(o.items); |
| 8457 unittest.expect(o.kind, unittest.equals('foo')); | 8457 unittest.expect(o.kind, unittest.equals('foo')); |
| 8458 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8458 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8459 unittest.expect(o.selfLink, unittest.equals('foo')); | 8459 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8460 } | 8460 } |
| 8461 buildCounterVpnTunnelList--; | 8461 buildCounterVpnTunnelList--; |
| 8462 } | 8462 } |
| 8463 | 8463 |
| 8464 buildUnnamed2159() { | 8464 buildUnnamed2253() { |
| 8465 var o = new core.List<api.VpnTunnel>(); | 8465 var o = new core.List<api.VpnTunnel>(); |
| 8466 o.add(buildVpnTunnel()); | 8466 o.add(buildVpnTunnel()); |
| 8467 o.add(buildVpnTunnel()); | 8467 o.add(buildVpnTunnel()); |
| 8468 return o; | 8468 return o; |
| 8469 } | 8469 } |
| 8470 | 8470 |
| 8471 checkUnnamed2159(core.List<api.VpnTunnel> o) { | 8471 checkUnnamed2253(core.List<api.VpnTunnel> o) { |
| 8472 unittest.expect(o, unittest.hasLength(2)); | 8472 unittest.expect(o, unittest.hasLength(2)); |
| 8473 checkVpnTunnel(o[0]); | 8473 checkVpnTunnel(o[0]); |
| 8474 checkVpnTunnel(o[1]); | 8474 checkVpnTunnel(o[1]); |
| 8475 } | 8475 } |
| 8476 | 8476 |
| 8477 core.int buildCounterVpnTunnelsScopedListWarningData = 0; | 8477 core.int buildCounterVpnTunnelsScopedListWarningData = 0; |
| 8478 buildVpnTunnelsScopedListWarningData() { | 8478 buildVpnTunnelsScopedListWarningData() { |
| 8479 var o = new api.VpnTunnelsScopedListWarningData(); | 8479 var o = new api.VpnTunnelsScopedListWarningData(); |
| 8480 buildCounterVpnTunnelsScopedListWarningData++; | 8480 buildCounterVpnTunnelsScopedListWarningData++; |
| 8481 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 8481 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 8482 o.key = "foo"; | 8482 o.key = "foo"; |
| 8483 o.value = "foo"; | 8483 o.value = "foo"; |
| 8484 } | 8484 } |
| 8485 buildCounterVpnTunnelsScopedListWarningData--; | 8485 buildCounterVpnTunnelsScopedListWarningData--; |
| 8486 return o; | 8486 return o; |
| 8487 } | 8487 } |
| 8488 | 8488 |
| 8489 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { | 8489 checkVpnTunnelsScopedListWarningData(api.VpnTunnelsScopedListWarningData o) { |
| 8490 buildCounterVpnTunnelsScopedListWarningData++; | 8490 buildCounterVpnTunnelsScopedListWarningData++; |
| 8491 if (buildCounterVpnTunnelsScopedListWarningData < 3) { | 8491 if (buildCounterVpnTunnelsScopedListWarningData < 3) { |
| 8492 unittest.expect(o.key, unittest.equals('foo')); | 8492 unittest.expect(o.key, unittest.equals('foo')); |
| 8493 unittest.expect(o.value, unittest.equals('foo')); | 8493 unittest.expect(o.value, unittest.equals('foo')); |
| 8494 } | 8494 } |
| 8495 buildCounterVpnTunnelsScopedListWarningData--; | 8495 buildCounterVpnTunnelsScopedListWarningData--; |
| 8496 } | 8496 } |
| 8497 | 8497 |
| 8498 buildUnnamed2160() { | 8498 buildUnnamed2254() { |
| 8499 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); | 8499 var o = new core.List<api.VpnTunnelsScopedListWarningData>(); |
| 8500 o.add(buildVpnTunnelsScopedListWarningData()); | 8500 o.add(buildVpnTunnelsScopedListWarningData()); |
| 8501 o.add(buildVpnTunnelsScopedListWarningData()); | 8501 o.add(buildVpnTunnelsScopedListWarningData()); |
| 8502 return o; | 8502 return o; |
| 8503 } | 8503 } |
| 8504 | 8504 |
| 8505 checkUnnamed2160(core.List<api.VpnTunnelsScopedListWarningData> o) { | 8505 checkUnnamed2254(core.List<api.VpnTunnelsScopedListWarningData> o) { |
| 8506 unittest.expect(o, unittest.hasLength(2)); | 8506 unittest.expect(o, unittest.hasLength(2)); |
| 8507 checkVpnTunnelsScopedListWarningData(o[0]); | 8507 checkVpnTunnelsScopedListWarningData(o[0]); |
| 8508 checkVpnTunnelsScopedListWarningData(o[1]); | 8508 checkVpnTunnelsScopedListWarningData(o[1]); |
| 8509 } | 8509 } |
| 8510 | 8510 |
| 8511 core.int buildCounterVpnTunnelsScopedListWarning = 0; | 8511 core.int buildCounterVpnTunnelsScopedListWarning = 0; |
| 8512 buildVpnTunnelsScopedListWarning() { | 8512 buildVpnTunnelsScopedListWarning() { |
| 8513 var o = new api.VpnTunnelsScopedListWarning(); | 8513 var o = new api.VpnTunnelsScopedListWarning(); |
| 8514 buildCounterVpnTunnelsScopedListWarning++; | 8514 buildCounterVpnTunnelsScopedListWarning++; |
| 8515 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 8515 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 8516 o.code = "foo"; | 8516 o.code = "foo"; |
| 8517 o.data = buildUnnamed2160(); | 8517 o.data = buildUnnamed2254(); |
| 8518 o.message = "foo"; | 8518 o.message = "foo"; |
| 8519 } | 8519 } |
| 8520 buildCounterVpnTunnelsScopedListWarning--; | 8520 buildCounterVpnTunnelsScopedListWarning--; |
| 8521 return o; | 8521 return o; |
| 8522 } | 8522 } |
| 8523 | 8523 |
| 8524 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { | 8524 checkVpnTunnelsScopedListWarning(api.VpnTunnelsScopedListWarning o) { |
| 8525 buildCounterVpnTunnelsScopedListWarning++; | 8525 buildCounterVpnTunnelsScopedListWarning++; |
| 8526 if (buildCounterVpnTunnelsScopedListWarning < 3) { | 8526 if (buildCounterVpnTunnelsScopedListWarning < 3) { |
| 8527 unittest.expect(o.code, unittest.equals('foo')); | 8527 unittest.expect(o.code, unittest.equals('foo')); |
| 8528 checkUnnamed2160(o.data); | 8528 checkUnnamed2254(o.data); |
| 8529 unittest.expect(o.message, unittest.equals('foo')); | 8529 unittest.expect(o.message, unittest.equals('foo')); |
| 8530 } | 8530 } |
| 8531 buildCounterVpnTunnelsScopedListWarning--; | 8531 buildCounterVpnTunnelsScopedListWarning--; |
| 8532 } | 8532 } |
| 8533 | 8533 |
| 8534 core.int buildCounterVpnTunnelsScopedList = 0; | 8534 core.int buildCounterVpnTunnelsScopedList = 0; |
| 8535 buildVpnTunnelsScopedList() { | 8535 buildVpnTunnelsScopedList() { |
| 8536 var o = new api.VpnTunnelsScopedList(); | 8536 var o = new api.VpnTunnelsScopedList(); |
| 8537 buildCounterVpnTunnelsScopedList++; | 8537 buildCounterVpnTunnelsScopedList++; |
| 8538 if (buildCounterVpnTunnelsScopedList < 3) { | 8538 if (buildCounterVpnTunnelsScopedList < 3) { |
| 8539 o.vpnTunnels = buildUnnamed2159(); | 8539 o.vpnTunnels = buildUnnamed2253(); |
| 8540 o.warning = buildVpnTunnelsScopedListWarning(); | 8540 o.warning = buildVpnTunnelsScopedListWarning(); |
| 8541 } | 8541 } |
| 8542 buildCounterVpnTunnelsScopedList--; | 8542 buildCounterVpnTunnelsScopedList--; |
| 8543 return o; | 8543 return o; |
| 8544 } | 8544 } |
| 8545 | 8545 |
| 8546 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { | 8546 checkVpnTunnelsScopedList(api.VpnTunnelsScopedList o) { |
| 8547 buildCounterVpnTunnelsScopedList++; | 8547 buildCounterVpnTunnelsScopedList++; |
| 8548 if (buildCounterVpnTunnelsScopedList < 3) { | 8548 if (buildCounterVpnTunnelsScopedList < 3) { |
| 8549 checkUnnamed2159(o.vpnTunnels); | 8549 checkUnnamed2253(o.vpnTunnels); |
| 8550 checkVpnTunnelsScopedListWarning(o.warning); | 8550 checkVpnTunnelsScopedListWarning(o.warning); |
| 8551 } | 8551 } |
| 8552 buildCounterVpnTunnelsScopedList--; | 8552 buildCounterVpnTunnelsScopedList--; |
| 8553 } | 8553 } |
| 8554 | 8554 |
| 8555 core.int buildCounterZone = 0; | 8555 core.int buildCounterZone = 0; |
| 8556 buildZone() { | 8556 buildZone() { |
| 8557 var o = new api.Zone(); | 8557 var o = new api.Zone(); |
| 8558 buildCounterZone++; | 8558 buildCounterZone++; |
| 8559 if (buildCounterZone < 3) { | 8559 if (buildCounterZone < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 8580 unittest.expect(o.id, unittest.equals('foo')); | 8580 unittest.expect(o.id, unittest.equals('foo')); |
| 8581 unittest.expect(o.kind, unittest.equals('foo')); | 8581 unittest.expect(o.kind, unittest.equals('foo')); |
| 8582 unittest.expect(o.name, unittest.equals('foo')); | 8582 unittest.expect(o.name, unittest.equals('foo')); |
| 8583 unittest.expect(o.region, unittest.equals('foo')); | 8583 unittest.expect(o.region, unittest.equals('foo')); |
| 8584 unittest.expect(o.selfLink, unittest.equals('foo')); | 8584 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8585 unittest.expect(o.status, unittest.equals('foo')); | 8585 unittest.expect(o.status, unittest.equals('foo')); |
| 8586 } | 8586 } |
| 8587 buildCounterZone--; | 8587 buildCounterZone--; |
| 8588 } | 8588 } |
| 8589 | 8589 |
| 8590 buildUnnamed2161() { | 8590 buildUnnamed2255() { |
| 8591 var o = new core.List<api.Zone>(); | 8591 var o = new core.List<api.Zone>(); |
| 8592 o.add(buildZone()); | 8592 o.add(buildZone()); |
| 8593 o.add(buildZone()); | 8593 o.add(buildZone()); |
| 8594 return o; | 8594 return o; |
| 8595 } | 8595 } |
| 8596 | 8596 |
| 8597 checkUnnamed2161(core.List<api.Zone> o) { | 8597 checkUnnamed2255(core.List<api.Zone> o) { |
| 8598 unittest.expect(o, unittest.hasLength(2)); | 8598 unittest.expect(o, unittest.hasLength(2)); |
| 8599 checkZone(o[0]); | 8599 checkZone(o[0]); |
| 8600 checkZone(o[1]); | 8600 checkZone(o[1]); |
| 8601 } | 8601 } |
| 8602 | 8602 |
| 8603 core.int buildCounterZoneList = 0; | 8603 core.int buildCounterZoneList = 0; |
| 8604 buildZoneList() { | 8604 buildZoneList() { |
| 8605 var o = new api.ZoneList(); | 8605 var o = new api.ZoneList(); |
| 8606 buildCounterZoneList++; | 8606 buildCounterZoneList++; |
| 8607 if (buildCounterZoneList < 3) { | 8607 if (buildCounterZoneList < 3) { |
| 8608 o.id = "foo"; | 8608 o.id = "foo"; |
| 8609 o.items = buildUnnamed2161(); | 8609 o.items = buildUnnamed2255(); |
| 8610 o.kind = "foo"; | 8610 o.kind = "foo"; |
| 8611 o.nextPageToken = "foo"; | 8611 o.nextPageToken = "foo"; |
| 8612 o.selfLink = "foo"; | 8612 o.selfLink = "foo"; |
| 8613 } | 8613 } |
| 8614 buildCounterZoneList--; | 8614 buildCounterZoneList--; |
| 8615 return o; | 8615 return o; |
| 8616 } | 8616 } |
| 8617 | 8617 |
| 8618 checkZoneList(api.ZoneList o) { | 8618 checkZoneList(api.ZoneList o) { |
| 8619 buildCounterZoneList++; | 8619 buildCounterZoneList++; |
| 8620 if (buildCounterZoneList < 3) { | 8620 if (buildCounterZoneList < 3) { |
| 8621 unittest.expect(o.id, unittest.equals('foo')); | 8621 unittest.expect(o.id, unittest.equals('foo')); |
| 8622 checkUnnamed2161(o.items); | 8622 checkUnnamed2255(o.items); |
| 8623 unittest.expect(o.kind, unittest.equals('foo')); | 8623 unittest.expect(o.kind, unittest.equals('foo')); |
| 8624 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8624 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8625 unittest.expect(o.selfLink, unittest.equals('foo')); | 8625 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 8626 } | 8626 } |
| 8627 buildCounterZoneList--; | 8627 buildCounterZoneList--; |
| 8628 } | 8628 } |
| 8629 | 8629 |
| 8630 | 8630 |
| 8631 main() { | 8631 main() { |
| 8632 unittest.group("obj-schema-AccessConfig", () { | 8632 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 14221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22854 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, orde
rBy: arg_orderBy, pageToken: arg_pageToken).then(unittest.expectAsync(((api.Zone
List response) { | 22854 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, orde
rBy: arg_orderBy, pageToken: arg_pageToken).then(unittest.expectAsync(((api.Zone
List response) { |
| 22855 checkZoneList(response); | 22855 checkZoneList(response); |
| 22856 }))); | 22856 }))); |
| 22857 }); | 22857 }); |
| 22858 | 22858 |
| 22859 }); | 22859 }); |
| 22860 | 22860 |
| 22861 | 22861 |
| 22862 } | 22862 } |
| 22863 | 22863 |
| OLD | NEW |