| 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 23 matching lines...) Expand all Loading... |
| 34 buildCounterAccessConfig++; | 34 buildCounterAccessConfig++; |
| 35 if (buildCounterAccessConfig < 3) { | 35 if (buildCounterAccessConfig < 3) { |
| 36 unittest.expect(o.kind, unittest.equals('foo')); | 36 unittest.expect(o.kind, unittest.equals('foo')); |
| 37 unittest.expect(o.name, unittest.equals('foo')); | 37 unittest.expect(o.name, unittest.equals('foo')); |
| 38 unittest.expect(o.natIP, unittest.equals('foo')); | 38 unittest.expect(o.natIP, unittest.equals('foo')); |
| 39 unittest.expect(o.type, unittest.equals('foo')); | 39 unittest.expect(o.type, unittest.equals('foo')); |
| 40 } | 40 } |
| 41 buildCounterAccessConfig--; | 41 buildCounterAccessConfig--; |
| 42 } | 42 } |
| 43 | 43 |
| 44 buildUnnamed867() { | 44 buildUnnamed848() { |
| 45 var o = new core.List<core.String>(); | 45 var o = new core.List<core.String>(); |
| 46 o.add("foo"); | 46 o.add("foo"); |
| 47 o.add("foo"); | 47 o.add("foo"); |
| 48 return o; | 48 return o; |
| 49 } | 49 } |
| 50 | 50 |
| 51 checkUnnamed867(core.List<core.String> o) { | 51 checkUnnamed848(core.List<core.String> o) { |
| 52 unittest.expect(o, unittest.hasLength(2)); | 52 unittest.expect(o, unittest.hasLength(2)); |
| 53 unittest.expect(o[0], unittest.equals('foo')); | 53 unittest.expect(o[0], unittest.equals('foo')); |
| 54 unittest.expect(o[1], unittest.equals('foo')); | 54 unittest.expect(o[1], unittest.equals('foo')); |
| 55 } | 55 } |
| 56 | 56 |
| 57 core.int buildCounterAddress = 0; | 57 core.int buildCounterAddress = 0; |
| 58 buildAddress() { | 58 buildAddress() { |
| 59 var o = new api.Address(); | 59 var o = new api.Address(); |
| 60 buildCounterAddress++; | 60 buildCounterAddress++; |
| 61 if (buildCounterAddress < 3) { | 61 if (buildCounterAddress < 3) { |
| 62 o.address = "foo"; | 62 o.address = "foo"; |
| 63 o.creationTimestamp = "foo"; | 63 o.creationTimestamp = "foo"; |
| 64 o.description = "foo"; | 64 o.description = "foo"; |
| 65 o.id = "foo"; | 65 o.id = "foo"; |
| 66 o.kind = "foo"; | 66 o.kind = "foo"; |
| 67 o.name = "foo"; | 67 o.name = "foo"; |
| 68 o.region = "foo"; | 68 o.region = "foo"; |
| 69 o.selfLink = "foo"; | 69 o.selfLink = "foo"; |
| 70 o.status = "foo"; | 70 o.status = "foo"; |
| 71 o.users = buildUnnamed867(); | 71 o.users = buildUnnamed848(); |
| 72 } | 72 } |
| 73 buildCounterAddress--; | 73 buildCounterAddress--; |
| 74 return o; | 74 return o; |
| 75 } | 75 } |
| 76 | 76 |
| 77 checkAddress(api.Address o) { | 77 checkAddress(api.Address o) { |
| 78 buildCounterAddress++; | 78 buildCounterAddress++; |
| 79 if (buildCounterAddress < 3) { | 79 if (buildCounterAddress < 3) { |
| 80 unittest.expect(o.address, unittest.equals('foo')); | 80 unittest.expect(o.address, unittest.equals('foo')); |
| 81 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 81 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 82 unittest.expect(o.description, unittest.equals('foo')); | 82 unittest.expect(o.description, unittest.equals('foo')); |
| 83 unittest.expect(o.id, unittest.equals('foo')); | 83 unittest.expect(o.id, unittest.equals('foo')); |
| 84 unittest.expect(o.kind, unittest.equals('foo')); | 84 unittest.expect(o.kind, unittest.equals('foo')); |
| 85 unittest.expect(o.name, unittest.equals('foo')); | 85 unittest.expect(o.name, unittest.equals('foo')); |
| 86 unittest.expect(o.region, unittest.equals('foo')); | 86 unittest.expect(o.region, unittest.equals('foo')); |
| 87 unittest.expect(o.selfLink, unittest.equals('foo')); | 87 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 88 unittest.expect(o.status, unittest.equals('foo')); | 88 unittest.expect(o.status, unittest.equals('foo')); |
| 89 checkUnnamed867(o.users); | 89 checkUnnamed848(o.users); |
| 90 } | 90 } |
| 91 buildCounterAddress--; | 91 buildCounterAddress--; |
| 92 } | 92 } |
| 93 | 93 |
| 94 buildUnnamed868() { | 94 buildUnnamed849() { |
| 95 var o = new core.Map<core.String, api.AddressesScopedList>(); | 95 var o = new core.Map<core.String, api.AddressesScopedList>(); |
| 96 o["x"] = buildAddressesScopedList(); | 96 o["x"] = buildAddressesScopedList(); |
| 97 o["y"] = buildAddressesScopedList(); | 97 o["y"] = buildAddressesScopedList(); |
| 98 return o; | 98 return o; |
| 99 } | 99 } |
| 100 | 100 |
| 101 checkUnnamed868(core.Map<core.String, api.AddressesScopedList> o) { | 101 checkUnnamed849(core.Map<core.String, api.AddressesScopedList> o) { |
| 102 unittest.expect(o, unittest.hasLength(2)); | 102 unittest.expect(o, unittest.hasLength(2)); |
| 103 checkAddressesScopedList(o["x"]); | 103 checkAddressesScopedList(o["x"]); |
| 104 checkAddressesScopedList(o["y"]); | 104 checkAddressesScopedList(o["y"]); |
| 105 } | 105 } |
| 106 | 106 |
| 107 core.int buildCounterAddressAggregatedList = 0; | 107 core.int buildCounterAddressAggregatedList = 0; |
| 108 buildAddressAggregatedList() { | 108 buildAddressAggregatedList() { |
| 109 var o = new api.AddressAggregatedList(); | 109 var o = new api.AddressAggregatedList(); |
| 110 buildCounterAddressAggregatedList++; | 110 buildCounterAddressAggregatedList++; |
| 111 if (buildCounterAddressAggregatedList < 3) { | 111 if (buildCounterAddressAggregatedList < 3) { |
| 112 o.id = "foo"; | 112 o.id = "foo"; |
| 113 o.items = buildUnnamed868(); | 113 o.items = buildUnnamed849(); |
| 114 o.kind = "foo"; | 114 o.kind = "foo"; |
| 115 o.nextPageToken = "foo"; | 115 o.nextPageToken = "foo"; |
| 116 o.selfLink = "foo"; | 116 o.selfLink = "foo"; |
| 117 } | 117 } |
| 118 buildCounterAddressAggregatedList--; | 118 buildCounterAddressAggregatedList--; |
| 119 return o; | 119 return o; |
| 120 } | 120 } |
| 121 | 121 |
| 122 checkAddressAggregatedList(api.AddressAggregatedList o) { | 122 checkAddressAggregatedList(api.AddressAggregatedList o) { |
| 123 buildCounterAddressAggregatedList++; | 123 buildCounterAddressAggregatedList++; |
| 124 if (buildCounterAddressAggregatedList < 3) { | 124 if (buildCounterAddressAggregatedList < 3) { |
| 125 unittest.expect(o.id, unittest.equals('foo')); | 125 unittest.expect(o.id, unittest.equals('foo')); |
| 126 checkUnnamed868(o.items); | 126 checkUnnamed849(o.items); |
| 127 unittest.expect(o.kind, unittest.equals('foo')); | 127 unittest.expect(o.kind, unittest.equals('foo')); |
| 128 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 128 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 129 unittest.expect(o.selfLink, unittest.equals('foo')); | 129 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 130 } | 130 } |
| 131 buildCounterAddressAggregatedList--; | 131 buildCounterAddressAggregatedList--; |
| 132 } | 132 } |
| 133 | 133 |
| 134 buildUnnamed869() { | 134 buildUnnamed850() { |
| 135 var o = new core.List<api.Address>(); | 135 var o = new core.List<api.Address>(); |
| 136 o.add(buildAddress()); | 136 o.add(buildAddress()); |
| 137 o.add(buildAddress()); | 137 o.add(buildAddress()); |
| 138 return o; | 138 return o; |
| 139 } | 139 } |
| 140 | 140 |
| 141 checkUnnamed869(core.List<api.Address> o) { | 141 checkUnnamed850(core.List<api.Address> o) { |
| 142 unittest.expect(o, unittest.hasLength(2)); | 142 unittest.expect(o, unittest.hasLength(2)); |
| 143 checkAddress(o[0]); | 143 checkAddress(o[0]); |
| 144 checkAddress(o[1]); | 144 checkAddress(o[1]); |
| 145 } | 145 } |
| 146 | 146 |
| 147 core.int buildCounterAddressList = 0; | 147 core.int buildCounterAddressList = 0; |
| 148 buildAddressList() { | 148 buildAddressList() { |
| 149 var o = new api.AddressList(); | 149 var o = new api.AddressList(); |
| 150 buildCounterAddressList++; | 150 buildCounterAddressList++; |
| 151 if (buildCounterAddressList < 3) { | 151 if (buildCounterAddressList < 3) { |
| 152 o.id = "foo"; | 152 o.id = "foo"; |
| 153 o.items = buildUnnamed869(); | 153 o.items = buildUnnamed850(); |
| 154 o.kind = "foo"; | 154 o.kind = "foo"; |
| 155 o.nextPageToken = "foo"; | 155 o.nextPageToken = "foo"; |
| 156 o.selfLink = "foo"; | 156 o.selfLink = "foo"; |
| 157 } | 157 } |
| 158 buildCounterAddressList--; | 158 buildCounterAddressList--; |
| 159 return o; | 159 return o; |
| 160 } | 160 } |
| 161 | 161 |
| 162 checkAddressList(api.AddressList o) { | 162 checkAddressList(api.AddressList o) { |
| 163 buildCounterAddressList++; | 163 buildCounterAddressList++; |
| 164 if (buildCounterAddressList < 3) { | 164 if (buildCounterAddressList < 3) { |
| 165 unittest.expect(o.id, unittest.equals('foo')); | 165 unittest.expect(o.id, unittest.equals('foo')); |
| 166 checkUnnamed869(o.items); | 166 checkUnnamed850(o.items); |
| 167 unittest.expect(o.kind, unittest.equals('foo')); | 167 unittest.expect(o.kind, unittest.equals('foo')); |
| 168 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 168 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 169 unittest.expect(o.selfLink, unittest.equals('foo')); | 169 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 170 } | 170 } |
| 171 buildCounterAddressList--; | 171 buildCounterAddressList--; |
| 172 } | 172 } |
| 173 | 173 |
| 174 buildUnnamed870() { | 174 buildUnnamed851() { |
| 175 var o = new core.List<api.Address>(); | 175 var o = new core.List<api.Address>(); |
| 176 o.add(buildAddress()); | 176 o.add(buildAddress()); |
| 177 o.add(buildAddress()); | 177 o.add(buildAddress()); |
| 178 return o; | 178 return o; |
| 179 } | 179 } |
| 180 | 180 |
| 181 checkUnnamed870(core.List<api.Address> o) { | 181 checkUnnamed851(core.List<api.Address> o) { |
| 182 unittest.expect(o, unittest.hasLength(2)); | 182 unittest.expect(o, unittest.hasLength(2)); |
| 183 checkAddress(o[0]); | 183 checkAddress(o[0]); |
| 184 checkAddress(o[1]); | 184 checkAddress(o[1]); |
| 185 } | 185 } |
| 186 | 186 |
| 187 core.int buildCounterAddressesScopedListWarningData = 0; | 187 core.int buildCounterAddressesScopedListWarningData = 0; |
| 188 buildAddressesScopedListWarningData() { | 188 buildAddressesScopedListWarningData() { |
| 189 var o = new api.AddressesScopedListWarningData(); | 189 var o = new api.AddressesScopedListWarningData(); |
| 190 buildCounterAddressesScopedListWarningData++; | 190 buildCounterAddressesScopedListWarningData++; |
| 191 if (buildCounterAddressesScopedListWarningData < 3) { | 191 if (buildCounterAddressesScopedListWarningData < 3) { |
| 192 o.key = "foo"; | 192 o.key = "foo"; |
| 193 o.value = "foo"; | 193 o.value = "foo"; |
| 194 } | 194 } |
| 195 buildCounterAddressesScopedListWarningData--; | 195 buildCounterAddressesScopedListWarningData--; |
| 196 return o; | 196 return o; |
| 197 } | 197 } |
| 198 | 198 |
| 199 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { | 199 checkAddressesScopedListWarningData(api.AddressesScopedListWarningData o) { |
| 200 buildCounterAddressesScopedListWarningData++; | 200 buildCounterAddressesScopedListWarningData++; |
| 201 if (buildCounterAddressesScopedListWarningData < 3) { | 201 if (buildCounterAddressesScopedListWarningData < 3) { |
| 202 unittest.expect(o.key, unittest.equals('foo')); | 202 unittest.expect(o.key, unittest.equals('foo')); |
| 203 unittest.expect(o.value, unittest.equals('foo')); | 203 unittest.expect(o.value, unittest.equals('foo')); |
| 204 } | 204 } |
| 205 buildCounterAddressesScopedListWarningData--; | 205 buildCounterAddressesScopedListWarningData--; |
| 206 } | 206 } |
| 207 | 207 |
| 208 buildUnnamed871() { | 208 buildUnnamed852() { |
| 209 var o = new core.List<api.AddressesScopedListWarningData>(); | 209 var o = new core.List<api.AddressesScopedListWarningData>(); |
| 210 o.add(buildAddressesScopedListWarningData()); | 210 o.add(buildAddressesScopedListWarningData()); |
| 211 o.add(buildAddressesScopedListWarningData()); | 211 o.add(buildAddressesScopedListWarningData()); |
| 212 return o; | 212 return o; |
| 213 } | 213 } |
| 214 | 214 |
| 215 checkUnnamed871(core.List<api.AddressesScopedListWarningData> o) { | 215 checkUnnamed852(core.List<api.AddressesScopedListWarningData> o) { |
| 216 unittest.expect(o, unittest.hasLength(2)); | 216 unittest.expect(o, unittest.hasLength(2)); |
| 217 checkAddressesScopedListWarningData(o[0]); | 217 checkAddressesScopedListWarningData(o[0]); |
| 218 checkAddressesScopedListWarningData(o[1]); | 218 checkAddressesScopedListWarningData(o[1]); |
| 219 } | 219 } |
| 220 | 220 |
| 221 core.int buildCounterAddressesScopedListWarning = 0; | 221 core.int buildCounterAddressesScopedListWarning = 0; |
| 222 buildAddressesScopedListWarning() { | 222 buildAddressesScopedListWarning() { |
| 223 var o = new api.AddressesScopedListWarning(); | 223 var o = new api.AddressesScopedListWarning(); |
| 224 buildCounterAddressesScopedListWarning++; | 224 buildCounterAddressesScopedListWarning++; |
| 225 if (buildCounterAddressesScopedListWarning < 3) { | 225 if (buildCounterAddressesScopedListWarning < 3) { |
| 226 o.code = "foo"; | 226 o.code = "foo"; |
| 227 o.data = buildUnnamed871(); | 227 o.data = buildUnnamed852(); |
| 228 o.message = "foo"; | 228 o.message = "foo"; |
| 229 } | 229 } |
| 230 buildCounterAddressesScopedListWarning--; | 230 buildCounterAddressesScopedListWarning--; |
| 231 return o; | 231 return o; |
| 232 } | 232 } |
| 233 | 233 |
| 234 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { | 234 checkAddressesScopedListWarning(api.AddressesScopedListWarning o) { |
| 235 buildCounterAddressesScopedListWarning++; | 235 buildCounterAddressesScopedListWarning++; |
| 236 if (buildCounterAddressesScopedListWarning < 3) { | 236 if (buildCounterAddressesScopedListWarning < 3) { |
| 237 unittest.expect(o.code, unittest.equals('foo')); | 237 unittest.expect(o.code, unittest.equals('foo')); |
| 238 checkUnnamed871(o.data); | 238 checkUnnamed852(o.data); |
| 239 unittest.expect(o.message, unittest.equals('foo')); | 239 unittest.expect(o.message, unittest.equals('foo')); |
| 240 } | 240 } |
| 241 buildCounterAddressesScopedListWarning--; | 241 buildCounterAddressesScopedListWarning--; |
| 242 } | 242 } |
| 243 | 243 |
| 244 core.int buildCounterAddressesScopedList = 0; | 244 core.int buildCounterAddressesScopedList = 0; |
| 245 buildAddressesScopedList() { | 245 buildAddressesScopedList() { |
| 246 var o = new api.AddressesScopedList(); | 246 var o = new api.AddressesScopedList(); |
| 247 buildCounterAddressesScopedList++; | 247 buildCounterAddressesScopedList++; |
| 248 if (buildCounterAddressesScopedList < 3) { | 248 if (buildCounterAddressesScopedList < 3) { |
| 249 o.addresses = buildUnnamed870(); | 249 o.addresses = buildUnnamed851(); |
| 250 o.warning = buildAddressesScopedListWarning(); | 250 o.warning = buildAddressesScopedListWarning(); |
| 251 } | 251 } |
| 252 buildCounterAddressesScopedList--; | 252 buildCounterAddressesScopedList--; |
| 253 return o; | 253 return o; |
| 254 } | 254 } |
| 255 | 255 |
| 256 checkAddressesScopedList(api.AddressesScopedList o) { | 256 checkAddressesScopedList(api.AddressesScopedList o) { |
| 257 buildCounterAddressesScopedList++; | 257 buildCounterAddressesScopedList++; |
| 258 if (buildCounterAddressesScopedList < 3) { | 258 if (buildCounterAddressesScopedList < 3) { |
| 259 checkUnnamed870(o.addresses); | 259 checkUnnamed851(o.addresses); |
| 260 checkAddressesScopedListWarning(o.warning); | 260 checkAddressesScopedListWarning(o.warning); |
| 261 } | 261 } |
| 262 buildCounterAddressesScopedList--; | 262 buildCounterAddressesScopedList--; |
| 263 } | 263 } |
| 264 | 264 |
| 265 buildUnnamed872() { | 265 buildUnnamed853() { |
| 266 var o = new core.List<core.String>(); | 266 var o = new core.List<core.String>(); |
| 267 o.add("foo"); | 267 o.add("foo"); |
| 268 o.add("foo"); | 268 o.add("foo"); |
| 269 return o; | 269 return o; |
| 270 } | 270 } |
| 271 | 271 |
| 272 checkUnnamed872(core.List<core.String> o) { | 272 checkUnnamed853(core.List<core.String> o) { |
| 273 unittest.expect(o, unittest.hasLength(2)); | 273 unittest.expect(o, unittest.hasLength(2)); |
| 274 unittest.expect(o[0], unittest.equals('foo')); | 274 unittest.expect(o[0], unittest.equals('foo')); |
| 275 unittest.expect(o[1], unittest.equals('foo')); | 275 unittest.expect(o[1], unittest.equals('foo')); |
| 276 } | 276 } |
| 277 | 277 |
| 278 core.int buildCounterAttachedDisk = 0; | 278 core.int buildCounterAttachedDisk = 0; |
| 279 buildAttachedDisk() { | 279 buildAttachedDisk() { |
| 280 var o = new api.AttachedDisk(); | 280 var o = new api.AttachedDisk(); |
| 281 buildCounterAttachedDisk++; | 281 buildCounterAttachedDisk++; |
| 282 if (buildCounterAttachedDisk < 3) { | 282 if (buildCounterAttachedDisk < 3) { |
| 283 o.autoDelete = true; | 283 o.autoDelete = true; |
| 284 o.boot = true; | 284 o.boot = true; |
| 285 o.deviceName = "foo"; | 285 o.deviceName = "foo"; |
| 286 o.index = 42; | 286 o.index = 42; |
| 287 o.initializeParams = buildAttachedDiskInitializeParams(); | 287 o.initializeParams = buildAttachedDiskInitializeParams(); |
| 288 o.kind = "foo"; | 288 o.kind = "foo"; |
| 289 o.licenses = buildUnnamed872(); | 289 o.licenses = buildUnnamed853(); |
| 290 o.mode = "foo"; | 290 o.mode = "foo"; |
| 291 o.source = "foo"; | 291 o.source = "foo"; |
| 292 o.type = "foo"; | 292 o.type = "foo"; |
| 293 } | 293 } |
| 294 buildCounterAttachedDisk--; | 294 buildCounterAttachedDisk--; |
| 295 return o; | 295 return o; |
| 296 } | 296 } |
| 297 | 297 |
| 298 checkAttachedDisk(api.AttachedDisk o) { | 298 checkAttachedDisk(api.AttachedDisk o) { |
| 299 buildCounterAttachedDisk++; | 299 buildCounterAttachedDisk++; |
| 300 if (buildCounterAttachedDisk < 3) { | 300 if (buildCounterAttachedDisk < 3) { |
| 301 unittest.expect(o.autoDelete, unittest.isTrue); | 301 unittest.expect(o.autoDelete, unittest.isTrue); |
| 302 unittest.expect(o.boot, unittest.isTrue); | 302 unittest.expect(o.boot, unittest.isTrue); |
| 303 unittest.expect(o.deviceName, unittest.equals('foo')); | 303 unittest.expect(o.deviceName, unittest.equals('foo')); |
| 304 unittest.expect(o.index, unittest.equals(42)); | 304 unittest.expect(o.index, unittest.equals(42)); |
| 305 checkAttachedDiskInitializeParams(o.initializeParams); | 305 checkAttachedDiskInitializeParams(o.initializeParams); |
| 306 unittest.expect(o.kind, unittest.equals('foo')); | 306 unittest.expect(o.kind, unittest.equals('foo')); |
| 307 checkUnnamed872(o.licenses); | 307 checkUnnamed853(o.licenses); |
| 308 unittest.expect(o.mode, unittest.equals('foo')); | 308 unittest.expect(o.mode, unittest.equals('foo')); |
| 309 unittest.expect(o.source, unittest.equals('foo')); | 309 unittest.expect(o.source, unittest.equals('foo')); |
| 310 unittest.expect(o.type, unittest.equals('foo')); | 310 unittest.expect(o.type, unittest.equals('foo')); |
| 311 } | 311 } |
| 312 buildCounterAttachedDisk--; | 312 buildCounterAttachedDisk--; |
| 313 } | 313 } |
| 314 | 314 |
| 315 core.int buildCounterAttachedDiskInitializeParams = 0; | 315 core.int buildCounterAttachedDiskInitializeParams = 0; |
| 316 buildAttachedDiskInitializeParams() { | 316 buildAttachedDiskInitializeParams() { |
| 317 var o = new api.AttachedDiskInitializeParams(); | 317 var o = new api.AttachedDiskInitializeParams(); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 unittest.expect(o.capacityScaler, unittest.equals(42.0)); | 361 unittest.expect(o.capacityScaler, unittest.equals(42.0)); |
| 362 unittest.expect(o.description, unittest.equals('foo')); | 362 unittest.expect(o.description, unittest.equals('foo')); |
| 363 unittest.expect(o.group, unittest.equals('foo')); | 363 unittest.expect(o.group, unittest.equals('foo')); |
| 364 unittest.expect(o.maxRate, unittest.equals(42)); | 364 unittest.expect(o.maxRate, unittest.equals(42)); |
| 365 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); | 365 unittest.expect(o.maxRatePerInstance, unittest.equals(42.0)); |
| 366 unittest.expect(o.maxUtilization, unittest.equals(42.0)); | 366 unittest.expect(o.maxUtilization, unittest.equals(42.0)); |
| 367 } | 367 } |
| 368 buildCounterBackend--; | 368 buildCounterBackend--; |
| 369 } | 369 } |
| 370 | 370 |
| 371 buildUnnamed873() { | 371 buildUnnamed854() { |
| 372 var o = new core.List<api.Backend>(); | 372 var o = new core.List<api.Backend>(); |
| 373 o.add(buildBackend()); | 373 o.add(buildBackend()); |
| 374 o.add(buildBackend()); | 374 o.add(buildBackend()); |
| 375 return o; | 375 return o; |
| 376 } | 376 } |
| 377 | 377 |
| 378 checkUnnamed873(core.List<api.Backend> o) { | 378 checkUnnamed854(core.List<api.Backend> o) { |
| 379 unittest.expect(o, unittest.hasLength(2)); | 379 unittest.expect(o, unittest.hasLength(2)); |
| 380 checkBackend(o[0]); | 380 checkBackend(o[0]); |
| 381 checkBackend(o[1]); | 381 checkBackend(o[1]); |
| 382 } | 382 } |
| 383 | 383 |
| 384 buildUnnamed874() { | 384 buildUnnamed855() { |
| 385 var o = new core.List<core.String>(); | 385 var o = new core.List<core.String>(); |
| 386 o.add("foo"); | 386 o.add("foo"); |
| 387 o.add("foo"); | 387 o.add("foo"); |
| 388 return o; | 388 return o; |
| 389 } | 389 } |
| 390 | 390 |
| 391 checkUnnamed874(core.List<core.String> o) { | 391 checkUnnamed855(core.List<core.String> o) { |
| 392 unittest.expect(o, unittest.hasLength(2)); | 392 unittest.expect(o, unittest.hasLength(2)); |
| 393 unittest.expect(o[0], unittest.equals('foo')); | 393 unittest.expect(o[0], unittest.equals('foo')); |
| 394 unittest.expect(o[1], unittest.equals('foo')); | 394 unittest.expect(o[1], unittest.equals('foo')); |
| 395 } | 395 } |
| 396 | 396 |
| 397 core.int buildCounterBackendService = 0; | 397 core.int buildCounterBackendService = 0; |
| 398 buildBackendService() { | 398 buildBackendService() { |
| 399 var o = new api.BackendService(); | 399 var o = new api.BackendService(); |
| 400 buildCounterBackendService++; | 400 buildCounterBackendService++; |
| 401 if (buildCounterBackendService < 3) { | 401 if (buildCounterBackendService < 3) { |
| 402 o.backends = buildUnnamed873(); | 402 o.backends = buildUnnamed854(); |
| 403 o.creationTimestamp = "foo"; | 403 o.creationTimestamp = "foo"; |
| 404 o.description = "foo"; | 404 o.description = "foo"; |
| 405 o.fingerprint = "foo"; | 405 o.fingerprint = "foo"; |
| 406 o.healthChecks = buildUnnamed874(); | 406 o.healthChecks = buildUnnamed855(); |
| 407 o.id = "foo"; | 407 o.id = "foo"; |
| 408 o.kind = "foo"; | 408 o.kind = "foo"; |
| 409 o.name = "foo"; | 409 o.name = "foo"; |
| 410 o.port = 42; | 410 o.port = 42; |
| 411 o.portName = "foo"; | 411 o.portName = "foo"; |
| 412 o.protocol = "foo"; | 412 o.protocol = "foo"; |
| 413 o.selfLink = "foo"; | 413 o.selfLink = "foo"; |
| 414 o.timeoutSec = 42; | 414 o.timeoutSec = 42; |
| 415 } | 415 } |
| 416 buildCounterBackendService--; | 416 buildCounterBackendService--; |
| 417 return o; | 417 return o; |
| 418 } | 418 } |
| 419 | 419 |
| 420 checkBackendService(api.BackendService o) { | 420 checkBackendService(api.BackendService o) { |
| 421 buildCounterBackendService++; | 421 buildCounterBackendService++; |
| 422 if (buildCounterBackendService < 3) { | 422 if (buildCounterBackendService < 3) { |
| 423 checkUnnamed873(o.backends); | 423 checkUnnamed854(o.backends); |
| 424 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 424 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 425 unittest.expect(o.description, unittest.equals('foo')); | 425 unittest.expect(o.description, unittest.equals('foo')); |
| 426 unittest.expect(o.fingerprint, unittest.equals('foo')); | 426 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 427 checkUnnamed874(o.healthChecks); | 427 checkUnnamed855(o.healthChecks); |
| 428 unittest.expect(o.id, unittest.equals('foo')); | 428 unittest.expect(o.id, unittest.equals('foo')); |
| 429 unittest.expect(o.kind, unittest.equals('foo')); | 429 unittest.expect(o.kind, unittest.equals('foo')); |
| 430 unittest.expect(o.name, unittest.equals('foo')); | 430 unittest.expect(o.name, unittest.equals('foo')); |
| 431 unittest.expect(o.port, unittest.equals(42)); | 431 unittest.expect(o.port, unittest.equals(42)); |
| 432 unittest.expect(o.portName, unittest.equals('foo')); | 432 unittest.expect(o.portName, unittest.equals('foo')); |
| 433 unittest.expect(o.protocol, unittest.equals('foo')); | 433 unittest.expect(o.protocol, unittest.equals('foo')); |
| 434 unittest.expect(o.selfLink, unittest.equals('foo')); | 434 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 435 unittest.expect(o.timeoutSec, unittest.equals(42)); | 435 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 436 } | 436 } |
| 437 buildCounterBackendService--; | 437 buildCounterBackendService--; |
| 438 } | 438 } |
| 439 | 439 |
| 440 buildUnnamed875() { | 440 buildUnnamed856() { |
| 441 var o = new core.List<api.HealthStatus>(); | 441 var o = new core.List<api.HealthStatus>(); |
| 442 o.add(buildHealthStatus()); | 442 o.add(buildHealthStatus()); |
| 443 o.add(buildHealthStatus()); | 443 o.add(buildHealthStatus()); |
| 444 return o; | 444 return o; |
| 445 } | 445 } |
| 446 | 446 |
| 447 checkUnnamed875(core.List<api.HealthStatus> o) { | 447 checkUnnamed856(core.List<api.HealthStatus> o) { |
| 448 unittest.expect(o, unittest.hasLength(2)); | 448 unittest.expect(o, unittest.hasLength(2)); |
| 449 checkHealthStatus(o[0]); | 449 checkHealthStatus(o[0]); |
| 450 checkHealthStatus(o[1]); | 450 checkHealthStatus(o[1]); |
| 451 } | 451 } |
| 452 | 452 |
| 453 core.int buildCounterBackendServiceGroupHealth = 0; | 453 core.int buildCounterBackendServiceGroupHealth = 0; |
| 454 buildBackendServiceGroupHealth() { | 454 buildBackendServiceGroupHealth() { |
| 455 var o = new api.BackendServiceGroupHealth(); | 455 var o = new api.BackendServiceGroupHealth(); |
| 456 buildCounterBackendServiceGroupHealth++; | 456 buildCounterBackendServiceGroupHealth++; |
| 457 if (buildCounterBackendServiceGroupHealth < 3) { | 457 if (buildCounterBackendServiceGroupHealth < 3) { |
| 458 o.healthStatus = buildUnnamed875(); | 458 o.healthStatus = buildUnnamed856(); |
| 459 o.kind = "foo"; | 459 o.kind = "foo"; |
| 460 } | 460 } |
| 461 buildCounterBackendServiceGroupHealth--; | 461 buildCounterBackendServiceGroupHealth--; |
| 462 return o; | 462 return o; |
| 463 } | 463 } |
| 464 | 464 |
| 465 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { | 465 checkBackendServiceGroupHealth(api.BackendServiceGroupHealth o) { |
| 466 buildCounterBackendServiceGroupHealth++; | 466 buildCounterBackendServiceGroupHealth++; |
| 467 if (buildCounterBackendServiceGroupHealth < 3) { | 467 if (buildCounterBackendServiceGroupHealth < 3) { |
| 468 checkUnnamed875(o.healthStatus); | 468 checkUnnamed856(o.healthStatus); |
| 469 unittest.expect(o.kind, unittest.equals('foo')); | 469 unittest.expect(o.kind, unittest.equals('foo')); |
| 470 } | 470 } |
| 471 buildCounterBackendServiceGroupHealth--; | 471 buildCounterBackendServiceGroupHealth--; |
| 472 } | 472 } |
| 473 | 473 |
| 474 buildUnnamed876() { | 474 buildUnnamed857() { |
| 475 var o = new core.List<api.BackendService>(); | 475 var o = new core.List<api.BackendService>(); |
| 476 o.add(buildBackendService()); | 476 o.add(buildBackendService()); |
| 477 o.add(buildBackendService()); | 477 o.add(buildBackendService()); |
| 478 return o; | 478 return o; |
| 479 } | 479 } |
| 480 | 480 |
| 481 checkUnnamed876(core.List<api.BackendService> o) { | 481 checkUnnamed857(core.List<api.BackendService> o) { |
| 482 unittest.expect(o, unittest.hasLength(2)); | 482 unittest.expect(o, unittest.hasLength(2)); |
| 483 checkBackendService(o[0]); | 483 checkBackendService(o[0]); |
| 484 checkBackendService(o[1]); | 484 checkBackendService(o[1]); |
| 485 } | 485 } |
| 486 | 486 |
| 487 core.int buildCounterBackendServiceList = 0; | 487 core.int buildCounterBackendServiceList = 0; |
| 488 buildBackendServiceList() { | 488 buildBackendServiceList() { |
| 489 var o = new api.BackendServiceList(); | 489 var o = new api.BackendServiceList(); |
| 490 buildCounterBackendServiceList++; | 490 buildCounterBackendServiceList++; |
| 491 if (buildCounterBackendServiceList < 3) { | 491 if (buildCounterBackendServiceList < 3) { |
| 492 o.id = "foo"; | 492 o.id = "foo"; |
| 493 o.items = buildUnnamed876(); | 493 o.items = buildUnnamed857(); |
| 494 o.kind = "foo"; | 494 o.kind = "foo"; |
| 495 o.nextPageToken = "foo"; | 495 o.nextPageToken = "foo"; |
| 496 o.selfLink = "foo"; | 496 o.selfLink = "foo"; |
| 497 } | 497 } |
| 498 buildCounterBackendServiceList--; | 498 buildCounterBackendServiceList--; |
| 499 return o; | 499 return o; |
| 500 } | 500 } |
| 501 | 501 |
| 502 checkBackendServiceList(api.BackendServiceList o) { | 502 checkBackendServiceList(api.BackendServiceList o) { |
| 503 buildCounterBackendServiceList++; | 503 buildCounterBackendServiceList++; |
| 504 if (buildCounterBackendServiceList < 3) { | 504 if (buildCounterBackendServiceList < 3) { |
| 505 unittest.expect(o.id, unittest.equals('foo')); | 505 unittest.expect(o.id, unittest.equals('foo')); |
| 506 checkUnnamed876(o.items); | 506 checkUnnamed857(o.items); |
| 507 unittest.expect(o.kind, unittest.equals('foo')); | 507 unittest.expect(o.kind, unittest.equals('foo')); |
| 508 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 508 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 509 unittest.expect(o.selfLink, unittest.equals('foo')); | 509 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 510 } | 510 } |
| 511 buildCounterBackendServiceList--; | 511 buildCounterBackendServiceList--; |
| 512 } | 512 } |
| 513 | 513 |
| 514 core.int buildCounterDeprecationStatus = 0; | 514 core.int buildCounterDeprecationStatus = 0; |
| 515 buildDeprecationStatus() { | 515 buildDeprecationStatus() { |
| 516 var o = new api.DeprecationStatus(); | 516 var o = new api.DeprecationStatus(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 531 if (buildCounterDeprecationStatus < 3) { | 531 if (buildCounterDeprecationStatus < 3) { |
| 532 unittest.expect(o.deleted, unittest.equals('foo')); | 532 unittest.expect(o.deleted, unittest.equals('foo')); |
| 533 unittest.expect(o.deprecated, unittest.equals('foo')); | 533 unittest.expect(o.deprecated, unittest.equals('foo')); |
| 534 unittest.expect(o.obsolete, unittest.equals('foo')); | 534 unittest.expect(o.obsolete, unittest.equals('foo')); |
| 535 unittest.expect(o.replacement, unittest.equals('foo')); | 535 unittest.expect(o.replacement, unittest.equals('foo')); |
| 536 unittest.expect(o.state, unittest.equals('foo')); | 536 unittest.expect(o.state, unittest.equals('foo')); |
| 537 } | 537 } |
| 538 buildCounterDeprecationStatus--; | 538 buildCounterDeprecationStatus--; |
| 539 } | 539 } |
| 540 | 540 |
| 541 buildUnnamed877() { | 541 buildUnnamed858() { |
| 542 var o = new core.List<core.String>(); | 542 var o = new core.List<core.String>(); |
| 543 o.add("foo"); | 543 o.add("foo"); |
| 544 o.add("foo"); | 544 o.add("foo"); |
| 545 return o; | 545 return o; |
| 546 } | 546 } |
| 547 | 547 |
| 548 checkUnnamed877(core.List<core.String> o) { | 548 checkUnnamed858(core.List<core.String> o) { |
| 549 unittest.expect(o, unittest.hasLength(2)); | 549 unittest.expect(o, unittest.hasLength(2)); |
| 550 unittest.expect(o[0], unittest.equals('foo')); | 550 unittest.expect(o[0], unittest.equals('foo')); |
| 551 unittest.expect(o[1], unittest.equals('foo')); | 551 unittest.expect(o[1], unittest.equals('foo')); |
| 552 } | 552 } |
| 553 | 553 |
| 554 core.int buildCounterDisk = 0; | 554 core.int buildCounterDisk = 0; |
| 555 buildDisk() { | 555 buildDisk() { |
| 556 var o = new api.Disk(); | 556 var o = new api.Disk(); |
| 557 buildCounterDisk++; | 557 buildCounterDisk++; |
| 558 if (buildCounterDisk < 3) { | 558 if (buildCounterDisk < 3) { |
| 559 o.creationTimestamp = "foo"; | 559 o.creationTimestamp = "foo"; |
| 560 o.description = "foo"; | 560 o.description = "foo"; |
| 561 o.id = "foo"; | 561 o.id = "foo"; |
| 562 o.kind = "foo"; | 562 o.kind = "foo"; |
| 563 o.licenses = buildUnnamed877(); | 563 o.licenses = buildUnnamed858(); |
| 564 o.name = "foo"; | 564 o.name = "foo"; |
| 565 o.options = "foo"; | 565 o.options = "foo"; |
| 566 o.selfLink = "foo"; | 566 o.selfLink = "foo"; |
| 567 o.sizeGb = "foo"; | 567 o.sizeGb = "foo"; |
| 568 o.sourceImage = "foo"; | 568 o.sourceImage = "foo"; |
| 569 o.sourceImageId = "foo"; | 569 o.sourceImageId = "foo"; |
| 570 o.sourceSnapshot = "foo"; | 570 o.sourceSnapshot = "foo"; |
| 571 o.sourceSnapshotId = "foo"; | 571 o.sourceSnapshotId = "foo"; |
| 572 o.status = "foo"; | 572 o.status = "foo"; |
| 573 o.type = "foo"; | 573 o.type = "foo"; |
| 574 o.zone = "foo"; | 574 o.zone = "foo"; |
| 575 } | 575 } |
| 576 buildCounterDisk--; | 576 buildCounterDisk--; |
| 577 return o; | 577 return o; |
| 578 } | 578 } |
| 579 | 579 |
| 580 checkDisk(api.Disk o) { | 580 checkDisk(api.Disk o) { |
| 581 buildCounterDisk++; | 581 buildCounterDisk++; |
| 582 if (buildCounterDisk < 3) { | 582 if (buildCounterDisk < 3) { |
| 583 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 583 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 584 unittest.expect(o.description, unittest.equals('foo')); | 584 unittest.expect(o.description, unittest.equals('foo')); |
| 585 unittest.expect(o.id, unittest.equals('foo')); | 585 unittest.expect(o.id, unittest.equals('foo')); |
| 586 unittest.expect(o.kind, unittest.equals('foo')); | 586 unittest.expect(o.kind, unittest.equals('foo')); |
| 587 checkUnnamed877(o.licenses); | 587 checkUnnamed858(o.licenses); |
| 588 unittest.expect(o.name, unittest.equals('foo')); | 588 unittest.expect(o.name, unittest.equals('foo')); |
| 589 unittest.expect(o.options, unittest.equals('foo')); | 589 unittest.expect(o.options, unittest.equals('foo')); |
| 590 unittest.expect(o.selfLink, unittest.equals('foo')); | 590 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 591 unittest.expect(o.sizeGb, unittest.equals('foo')); | 591 unittest.expect(o.sizeGb, unittest.equals('foo')); |
| 592 unittest.expect(o.sourceImage, unittest.equals('foo')); | 592 unittest.expect(o.sourceImage, unittest.equals('foo')); |
| 593 unittest.expect(o.sourceImageId, unittest.equals('foo')); | 593 unittest.expect(o.sourceImageId, unittest.equals('foo')); |
| 594 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); | 594 unittest.expect(o.sourceSnapshot, unittest.equals('foo')); |
| 595 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); | 595 unittest.expect(o.sourceSnapshotId, unittest.equals('foo')); |
| 596 unittest.expect(o.status, unittest.equals('foo')); | 596 unittest.expect(o.status, unittest.equals('foo')); |
| 597 unittest.expect(o.type, unittest.equals('foo')); | 597 unittest.expect(o.type, unittest.equals('foo')); |
| 598 unittest.expect(o.zone, unittest.equals('foo')); | 598 unittest.expect(o.zone, unittest.equals('foo')); |
| 599 } | 599 } |
| 600 buildCounterDisk--; | 600 buildCounterDisk--; |
| 601 } | 601 } |
| 602 | 602 |
| 603 buildUnnamed878() { | 603 buildUnnamed859() { |
| 604 var o = new core.Map<core.String, api.DisksScopedList>(); | 604 var o = new core.Map<core.String, api.DisksScopedList>(); |
| 605 o["x"] = buildDisksScopedList(); | 605 o["x"] = buildDisksScopedList(); |
| 606 o["y"] = buildDisksScopedList(); | 606 o["y"] = buildDisksScopedList(); |
| 607 return o; | 607 return o; |
| 608 } | 608 } |
| 609 | 609 |
| 610 checkUnnamed878(core.Map<core.String, api.DisksScopedList> o) { | 610 checkUnnamed859(core.Map<core.String, api.DisksScopedList> o) { |
| 611 unittest.expect(o, unittest.hasLength(2)); | 611 unittest.expect(o, unittest.hasLength(2)); |
| 612 checkDisksScopedList(o["x"]); | 612 checkDisksScopedList(o["x"]); |
| 613 checkDisksScopedList(o["y"]); | 613 checkDisksScopedList(o["y"]); |
| 614 } | 614 } |
| 615 | 615 |
| 616 core.int buildCounterDiskAggregatedList = 0; | 616 core.int buildCounterDiskAggregatedList = 0; |
| 617 buildDiskAggregatedList() { | 617 buildDiskAggregatedList() { |
| 618 var o = new api.DiskAggregatedList(); | 618 var o = new api.DiskAggregatedList(); |
| 619 buildCounterDiskAggregatedList++; | 619 buildCounterDiskAggregatedList++; |
| 620 if (buildCounterDiskAggregatedList < 3) { | 620 if (buildCounterDiskAggregatedList < 3) { |
| 621 o.id = "foo"; | 621 o.id = "foo"; |
| 622 o.items = buildUnnamed878(); | 622 o.items = buildUnnamed859(); |
| 623 o.kind = "foo"; | 623 o.kind = "foo"; |
| 624 o.nextPageToken = "foo"; | 624 o.nextPageToken = "foo"; |
| 625 o.selfLink = "foo"; | 625 o.selfLink = "foo"; |
| 626 } | 626 } |
| 627 buildCounterDiskAggregatedList--; | 627 buildCounterDiskAggregatedList--; |
| 628 return o; | 628 return o; |
| 629 } | 629 } |
| 630 | 630 |
| 631 checkDiskAggregatedList(api.DiskAggregatedList o) { | 631 checkDiskAggregatedList(api.DiskAggregatedList o) { |
| 632 buildCounterDiskAggregatedList++; | 632 buildCounterDiskAggregatedList++; |
| 633 if (buildCounterDiskAggregatedList < 3) { | 633 if (buildCounterDiskAggregatedList < 3) { |
| 634 unittest.expect(o.id, unittest.equals('foo')); | 634 unittest.expect(o.id, unittest.equals('foo')); |
| 635 checkUnnamed878(o.items); | 635 checkUnnamed859(o.items); |
| 636 unittest.expect(o.kind, unittest.equals('foo')); | 636 unittest.expect(o.kind, unittest.equals('foo')); |
| 637 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 637 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 638 unittest.expect(o.selfLink, unittest.equals('foo')); | 638 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 639 } | 639 } |
| 640 buildCounterDiskAggregatedList--; | 640 buildCounterDiskAggregatedList--; |
| 641 } | 641 } |
| 642 | 642 |
| 643 buildUnnamed879() { | 643 buildUnnamed860() { |
| 644 var o = new core.List<api.Disk>(); | 644 var o = new core.List<api.Disk>(); |
| 645 o.add(buildDisk()); | 645 o.add(buildDisk()); |
| 646 o.add(buildDisk()); | 646 o.add(buildDisk()); |
| 647 return o; | 647 return o; |
| 648 } | 648 } |
| 649 | 649 |
| 650 checkUnnamed879(core.List<api.Disk> o) { | 650 checkUnnamed860(core.List<api.Disk> o) { |
| 651 unittest.expect(o, unittest.hasLength(2)); | 651 unittest.expect(o, unittest.hasLength(2)); |
| 652 checkDisk(o[0]); | 652 checkDisk(o[0]); |
| 653 checkDisk(o[1]); | 653 checkDisk(o[1]); |
| 654 } | 654 } |
| 655 | 655 |
| 656 core.int buildCounterDiskList = 0; | 656 core.int buildCounterDiskList = 0; |
| 657 buildDiskList() { | 657 buildDiskList() { |
| 658 var o = new api.DiskList(); | 658 var o = new api.DiskList(); |
| 659 buildCounterDiskList++; | 659 buildCounterDiskList++; |
| 660 if (buildCounterDiskList < 3) { | 660 if (buildCounterDiskList < 3) { |
| 661 o.id = "foo"; | 661 o.id = "foo"; |
| 662 o.items = buildUnnamed879(); | 662 o.items = buildUnnamed860(); |
| 663 o.kind = "foo"; | 663 o.kind = "foo"; |
| 664 o.nextPageToken = "foo"; | 664 o.nextPageToken = "foo"; |
| 665 o.selfLink = "foo"; | 665 o.selfLink = "foo"; |
| 666 } | 666 } |
| 667 buildCounterDiskList--; | 667 buildCounterDiskList--; |
| 668 return o; | 668 return o; |
| 669 } | 669 } |
| 670 | 670 |
| 671 checkDiskList(api.DiskList o) { | 671 checkDiskList(api.DiskList o) { |
| 672 buildCounterDiskList++; | 672 buildCounterDiskList++; |
| 673 if (buildCounterDiskList < 3) { | 673 if (buildCounterDiskList < 3) { |
| 674 unittest.expect(o.id, unittest.equals('foo')); | 674 unittest.expect(o.id, unittest.equals('foo')); |
| 675 checkUnnamed879(o.items); | 675 checkUnnamed860(o.items); |
| 676 unittest.expect(o.kind, unittest.equals('foo')); | 676 unittest.expect(o.kind, unittest.equals('foo')); |
| 677 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 677 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 678 unittest.expect(o.selfLink, unittest.equals('foo')); | 678 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 679 } | 679 } |
| 680 buildCounterDiskList--; | 680 buildCounterDiskList--; |
| 681 } | 681 } |
| 682 | 682 |
| 683 core.int buildCounterDiskType = 0; | 683 core.int buildCounterDiskType = 0; |
| 684 buildDiskType() { | 684 buildDiskType() { |
| 685 var o = new api.DiskType(); | 685 var o = new api.DiskType(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 710 unittest.expect(o.id, unittest.equals('foo')); | 710 unittest.expect(o.id, unittest.equals('foo')); |
| 711 unittest.expect(o.kind, unittest.equals('foo')); | 711 unittest.expect(o.kind, unittest.equals('foo')); |
| 712 unittest.expect(o.name, unittest.equals('foo')); | 712 unittest.expect(o.name, unittest.equals('foo')); |
| 713 unittest.expect(o.selfLink, unittest.equals('foo')); | 713 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 714 unittest.expect(o.validDiskSize, unittest.equals('foo')); | 714 unittest.expect(o.validDiskSize, unittest.equals('foo')); |
| 715 unittest.expect(o.zone, unittest.equals('foo')); | 715 unittest.expect(o.zone, unittest.equals('foo')); |
| 716 } | 716 } |
| 717 buildCounterDiskType--; | 717 buildCounterDiskType--; |
| 718 } | 718 } |
| 719 | 719 |
| 720 buildUnnamed880() { | 720 buildUnnamed861() { |
| 721 var o = new core.Map<core.String, api.DiskTypesScopedList>(); | 721 var o = new core.Map<core.String, api.DiskTypesScopedList>(); |
| 722 o["x"] = buildDiskTypesScopedList(); | 722 o["x"] = buildDiskTypesScopedList(); |
| 723 o["y"] = buildDiskTypesScopedList(); | 723 o["y"] = buildDiskTypesScopedList(); |
| 724 return o; | 724 return o; |
| 725 } | 725 } |
| 726 | 726 |
| 727 checkUnnamed880(core.Map<core.String, api.DiskTypesScopedList> o) { | 727 checkUnnamed861(core.Map<core.String, api.DiskTypesScopedList> o) { |
| 728 unittest.expect(o, unittest.hasLength(2)); | 728 unittest.expect(o, unittest.hasLength(2)); |
| 729 checkDiskTypesScopedList(o["x"]); | 729 checkDiskTypesScopedList(o["x"]); |
| 730 checkDiskTypesScopedList(o["y"]); | 730 checkDiskTypesScopedList(o["y"]); |
| 731 } | 731 } |
| 732 | 732 |
| 733 core.int buildCounterDiskTypeAggregatedList = 0; | 733 core.int buildCounterDiskTypeAggregatedList = 0; |
| 734 buildDiskTypeAggregatedList() { | 734 buildDiskTypeAggregatedList() { |
| 735 var o = new api.DiskTypeAggregatedList(); | 735 var o = new api.DiskTypeAggregatedList(); |
| 736 buildCounterDiskTypeAggregatedList++; | 736 buildCounterDiskTypeAggregatedList++; |
| 737 if (buildCounterDiskTypeAggregatedList < 3) { | 737 if (buildCounterDiskTypeAggregatedList < 3) { |
| 738 o.id = "foo"; | 738 o.id = "foo"; |
| 739 o.items = buildUnnamed880(); | 739 o.items = buildUnnamed861(); |
| 740 o.kind = "foo"; | 740 o.kind = "foo"; |
| 741 o.nextPageToken = "foo"; | 741 o.nextPageToken = "foo"; |
| 742 o.selfLink = "foo"; | 742 o.selfLink = "foo"; |
| 743 } | 743 } |
| 744 buildCounterDiskTypeAggregatedList--; | 744 buildCounterDiskTypeAggregatedList--; |
| 745 return o; | 745 return o; |
| 746 } | 746 } |
| 747 | 747 |
| 748 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { | 748 checkDiskTypeAggregatedList(api.DiskTypeAggregatedList o) { |
| 749 buildCounterDiskTypeAggregatedList++; | 749 buildCounterDiskTypeAggregatedList++; |
| 750 if (buildCounterDiskTypeAggregatedList < 3) { | 750 if (buildCounterDiskTypeAggregatedList < 3) { |
| 751 unittest.expect(o.id, unittest.equals('foo')); | 751 unittest.expect(o.id, unittest.equals('foo')); |
| 752 checkUnnamed880(o.items); | 752 checkUnnamed861(o.items); |
| 753 unittest.expect(o.kind, unittest.equals('foo')); | 753 unittest.expect(o.kind, unittest.equals('foo')); |
| 754 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 754 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 755 unittest.expect(o.selfLink, unittest.equals('foo')); | 755 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 756 } | 756 } |
| 757 buildCounterDiskTypeAggregatedList--; | 757 buildCounterDiskTypeAggregatedList--; |
| 758 } | 758 } |
| 759 | 759 |
| 760 buildUnnamed881() { | 760 buildUnnamed862() { |
| 761 var o = new core.List<api.DiskType>(); | 761 var o = new core.List<api.DiskType>(); |
| 762 o.add(buildDiskType()); | 762 o.add(buildDiskType()); |
| 763 o.add(buildDiskType()); | 763 o.add(buildDiskType()); |
| 764 return o; | 764 return o; |
| 765 } | 765 } |
| 766 | 766 |
| 767 checkUnnamed881(core.List<api.DiskType> o) { | 767 checkUnnamed862(core.List<api.DiskType> o) { |
| 768 unittest.expect(o, unittest.hasLength(2)); | 768 unittest.expect(o, unittest.hasLength(2)); |
| 769 checkDiskType(o[0]); | 769 checkDiskType(o[0]); |
| 770 checkDiskType(o[1]); | 770 checkDiskType(o[1]); |
| 771 } | 771 } |
| 772 | 772 |
| 773 core.int buildCounterDiskTypeList = 0; | 773 core.int buildCounterDiskTypeList = 0; |
| 774 buildDiskTypeList() { | 774 buildDiskTypeList() { |
| 775 var o = new api.DiskTypeList(); | 775 var o = new api.DiskTypeList(); |
| 776 buildCounterDiskTypeList++; | 776 buildCounterDiskTypeList++; |
| 777 if (buildCounterDiskTypeList < 3) { | 777 if (buildCounterDiskTypeList < 3) { |
| 778 o.id = "foo"; | 778 o.id = "foo"; |
| 779 o.items = buildUnnamed881(); | 779 o.items = buildUnnamed862(); |
| 780 o.kind = "foo"; | 780 o.kind = "foo"; |
| 781 o.nextPageToken = "foo"; | 781 o.nextPageToken = "foo"; |
| 782 o.selfLink = "foo"; | 782 o.selfLink = "foo"; |
| 783 } | 783 } |
| 784 buildCounterDiskTypeList--; | 784 buildCounterDiskTypeList--; |
| 785 return o; | 785 return o; |
| 786 } | 786 } |
| 787 | 787 |
| 788 checkDiskTypeList(api.DiskTypeList o) { | 788 checkDiskTypeList(api.DiskTypeList o) { |
| 789 buildCounterDiskTypeList++; | 789 buildCounterDiskTypeList++; |
| 790 if (buildCounterDiskTypeList < 3) { | 790 if (buildCounterDiskTypeList < 3) { |
| 791 unittest.expect(o.id, unittest.equals('foo')); | 791 unittest.expect(o.id, unittest.equals('foo')); |
| 792 checkUnnamed881(o.items); | 792 checkUnnamed862(o.items); |
| 793 unittest.expect(o.kind, unittest.equals('foo')); | 793 unittest.expect(o.kind, unittest.equals('foo')); |
| 794 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 794 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 795 unittest.expect(o.selfLink, unittest.equals('foo')); | 795 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 796 } | 796 } |
| 797 buildCounterDiskTypeList--; | 797 buildCounterDiskTypeList--; |
| 798 } | 798 } |
| 799 | 799 |
| 800 buildUnnamed882() { | 800 buildUnnamed863() { |
| 801 var o = new core.List<api.DiskType>(); | 801 var o = new core.List<api.DiskType>(); |
| 802 o.add(buildDiskType()); | 802 o.add(buildDiskType()); |
| 803 o.add(buildDiskType()); | 803 o.add(buildDiskType()); |
| 804 return o; | 804 return o; |
| 805 } | 805 } |
| 806 | 806 |
| 807 checkUnnamed882(core.List<api.DiskType> o) { | 807 checkUnnamed863(core.List<api.DiskType> o) { |
| 808 unittest.expect(o, unittest.hasLength(2)); | 808 unittest.expect(o, unittest.hasLength(2)); |
| 809 checkDiskType(o[0]); | 809 checkDiskType(o[0]); |
| 810 checkDiskType(o[1]); | 810 checkDiskType(o[1]); |
| 811 } | 811 } |
| 812 | 812 |
| 813 core.int buildCounterDiskTypesScopedListWarningData = 0; | 813 core.int buildCounterDiskTypesScopedListWarningData = 0; |
| 814 buildDiskTypesScopedListWarningData() { | 814 buildDiskTypesScopedListWarningData() { |
| 815 var o = new api.DiskTypesScopedListWarningData(); | 815 var o = new api.DiskTypesScopedListWarningData(); |
| 816 buildCounterDiskTypesScopedListWarningData++; | 816 buildCounterDiskTypesScopedListWarningData++; |
| 817 if (buildCounterDiskTypesScopedListWarningData < 3) { | 817 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 818 o.key = "foo"; | 818 o.key = "foo"; |
| 819 o.value = "foo"; | 819 o.value = "foo"; |
| 820 } | 820 } |
| 821 buildCounterDiskTypesScopedListWarningData--; | 821 buildCounterDiskTypesScopedListWarningData--; |
| 822 return o; | 822 return o; |
| 823 } | 823 } |
| 824 | 824 |
| 825 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { | 825 checkDiskTypesScopedListWarningData(api.DiskTypesScopedListWarningData o) { |
| 826 buildCounterDiskTypesScopedListWarningData++; | 826 buildCounterDiskTypesScopedListWarningData++; |
| 827 if (buildCounterDiskTypesScopedListWarningData < 3) { | 827 if (buildCounterDiskTypesScopedListWarningData < 3) { |
| 828 unittest.expect(o.key, unittest.equals('foo')); | 828 unittest.expect(o.key, unittest.equals('foo')); |
| 829 unittest.expect(o.value, unittest.equals('foo')); | 829 unittest.expect(o.value, unittest.equals('foo')); |
| 830 } | 830 } |
| 831 buildCounterDiskTypesScopedListWarningData--; | 831 buildCounterDiskTypesScopedListWarningData--; |
| 832 } | 832 } |
| 833 | 833 |
| 834 buildUnnamed883() { | 834 buildUnnamed864() { |
| 835 var o = new core.List<api.DiskTypesScopedListWarningData>(); | 835 var o = new core.List<api.DiskTypesScopedListWarningData>(); |
| 836 o.add(buildDiskTypesScopedListWarningData()); | 836 o.add(buildDiskTypesScopedListWarningData()); |
| 837 o.add(buildDiskTypesScopedListWarningData()); | 837 o.add(buildDiskTypesScopedListWarningData()); |
| 838 return o; | 838 return o; |
| 839 } | 839 } |
| 840 | 840 |
| 841 checkUnnamed883(core.List<api.DiskTypesScopedListWarningData> o) { | 841 checkUnnamed864(core.List<api.DiskTypesScopedListWarningData> o) { |
| 842 unittest.expect(o, unittest.hasLength(2)); | 842 unittest.expect(o, unittest.hasLength(2)); |
| 843 checkDiskTypesScopedListWarningData(o[0]); | 843 checkDiskTypesScopedListWarningData(o[0]); |
| 844 checkDiskTypesScopedListWarningData(o[1]); | 844 checkDiskTypesScopedListWarningData(o[1]); |
| 845 } | 845 } |
| 846 | 846 |
| 847 core.int buildCounterDiskTypesScopedListWarning = 0; | 847 core.int buildCounterDiskTypesScopedListWarning = 0; |
| 848 buildDiskTypesScopedListWarning() { | 848 buildDiskTypesScopedListWarning() { |
| 849 var o = new api.DiskTypesScopedListWarning(); | 849 var o = new api.DiskTypesScopedListWarning(); |
| 850 buildCounterDiskTypesScopedListWarning++; | 850 buildCounterDiskTypesScopedListWarning++; |
| 851 if (buildCounterDiskTypesScopedListWarning < 3) { | 851 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 852 o.code = "foo"; | 852 o.code = "foo"; |
| 853 o.data = buildUnnamed883(); | 853 o.data = buildUnnamed864(); |
| 854 o.message = "foo"; | 854 o.message = "foo"; |
| 855 } | 855 } |
| 856 buildCounterDiskTypesScopedListWarning--; | 856 buildCounterDiskTypesScopedListWarning--; |
| 857 return o; | 857 return o; |
| 858 } | 858 } |
| 859 | 859 |
| 860 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { | 860 checkDiskTypesScopedListWarning(api.DiskTypesScopedListWarning o) { |
| 861 buildCounterDiskTypesScopedListWarning++; | 861 buildCounterDiskTypesScopedListWarning++; |
| 862 if (buildCounterDiskTypesScopedListWarning < 3) { | 862 if (buildCounterDiskTypesScopedListWarning < 3) { |
| 863 unittest.expect(o.code, unittest.equals('foo')); | 863 unittest.expect(o.code, unittest.equals('foo')); |
| 864 checkUnnamed883(o.data); | 864 checkUnnamed864(o.data); |
| 865 unittest.expect(o.message, unittest.equals('foo')); | 865 unittest.expect(o.message, unittest.equals('foo')); |
| 866 } | 866 } |
| 867 buildCounterDiskTypesScopedListWarning--; | 867 buildCounterDiskTypesScopedListWarning--; |
| 868 } | 868 } |
| 869 | 869 |
| 870 core.int buildCounterDiskTypesScopedList = 0; | 870 core.int buildCounterDiskTypesScopedList = 0; |
| 871 buildDiskTypesScopedList() { | 871 buildDiskTypesScopedList() { |
| 872 var o = new api.DiskTypesScopedList(); | 872 var o = new api.DiskTypesScopedList(); |
| 873 buildCounterDiskTypesScopedList++; | 873 buildCounterDiskTypesScopedList++; |
| 874 if (buildCounterDiskTypesScopedList < 3) { | 874 if (buildCounterDiskTypesScopedList < 3) { |
| 875 o.diskTypes = buildUnnamed882(); | 875 o.diskTypes = buildUnnamed863(); |
| 876 o.warning = buildDiskTypesScopedListWarning(); | 876 o.warning = buildDiskTypesScopedListWarning(); |
| 877 } | 877 } |
| 878 buildCounterDiskTypesScopedList--; | 878 buildCounterDiskTypesScopedList--; |
| 879 return o; | 879 return o; |
| 880 } | 880 } |
| 881 | 881 |
| 882 checkDiskTypesScopedList(api.DiskTypesScopedList o) { | 882 checkDiskTypesScopedList(api.DiskTypesScopedList o) { |
| 883 buildCounterDiskTypesScopedList++; | 883 buildCounterDiskTypesScopedList++; |
| 884 if (buildCounterDiskTypesScopedList < 3) { | 884 if (buildCounterDiskTypesScopedList < 3) { |
| 885 checkUnnamed882(o.diskTypes); | 885 checkUnnamed863(o.diskTypes); |
| 886 checkDiskTypesScopedListWarning(o.warning); | 886 checkDiskTypesScopedListWarning(o.warning); |
| 887 } | 887 } |
| 888 buildCounterDiskTypesScopedList--; | 888 buildCounterDiskTypesScopedList--; |
| 889 } | 889 } |
| 890 | 890 |
| 891 buildUnnamed884() { | 891 buildUnnamed865() { |
| 892 var o = new core.List<api.Disk>(); | 892 var o = new core.List<api.Disk>(); |
| 893 o.add(buildDisk()); | 893 o.add(buildDisk()); |
| 894 o.add(buildDisk()); | 894 o.add(buildDisk()); |
| 895 return o; | 895 return o; |
| 896 } | 896 } |
| 897 | 897 |
| 898 checkUnnamed884(core.List<api.Disk> o) { | 898 checkUnnamed865(core.List<api.Disk> o) { |
| 899 unittest.expect(o, unittest.hasLength(2)); | 899 unittest.expect(o, unittest.hasLength(2)); |
| 900 checkDisk(o[0]); | 900 checkDisk(o[0]); |
| 901 checkDisk(o[1]); | 901 checkDisk(o[1]); |
| 902 } | 902 } |
| 903 | 903 |
| 904 core.int buildCounterDisksScopedListWarningData = 0; | 904 core.int buildCounterDisksScopedListWarningData = 0; |
| 905 buildDisksScopedListWarningData() { | 905 buildDisksScopedListWarningData() { |
| 906 var o = new api.DisksScopedListWarningData(); | 906 var o = new api.DisksScopedListWarningData(); |
| 907 buildCounterDisksScopedListWarningData++; | 907 buildCounterDisksScopedListWarningData++; |
| 908 if (buildCounterDisksScopedListWarningData < 3) { | 908 if (buildCounterDisksScopedListWarningData < 3) { |
| 909 o.key = "foo"; | 909 o.key = "foo"; |
| 910 o.value = "foo"; | 910 o.value = "foo"; |
| 911 } | 911 } |
| 912 buildCounterDisksScopedListWarningData--; | 912 buildCounterDisksScopedListWarningData--; |
| 913 return o; | 913 return o; |
| 914 } | 914 } |
| 915 | 915 |
| 916 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { | 916 checkDisksScopedListWarningData(api.DisksScopedListWarningData o) { |
| 917 buildCounterDisksScopedListWarningData++; | 917 buildCounterDisksScopedListWarningData++; |
| 918 if (buildCounterDisksScopedListWarningData < 3) { | 918 if (buildCounterDisksScopedListWarningData < 3) { |
| 919 unittest.expect(o.key, unittest.equals('foo')); | 919 unittest.expect(o.key, unittest.equals('foo')); |
| 920 unittest.expect(o.value, unittest.equals('foo')); | 920 unittest.expect(o.value, unittest.equals('foo')); |
| 921 } | 921 } |
| 922 buildCounterDisksScopedListWarningData--; | 922 buildCounterDisksScopedListWarningData--; |
| 923 } | 923 } |
| 924 | 924 |
| 925 buildUnnamed885() { | 925 buildUnnamed866() { |
| 926 var o = new core.List<api.DisksScopedListWarningData>(); | 926 var o = new core.List<api.DisksScopedListWarningData>(); |
| 927 o.add(buildDisksScopedListWarningData()); | 927 o.add(buildDisksScopedListWarningData()); |
| 928 o.add(buildDisksScopedListWarningData()); | 928 o.add(buildDisksScopedListWarningData()); |
| 929 return o; | 929 return o; |
| 930 } | 930 } |
| 931 | 931 |
| 932 checkUnnamed885(core.List<api.DisksScopedListWarningData> o) { | 932 checkUnnamed866(core.List<api.DisksScopedListWarningData> o) { |
| 933 unittest.expect(o, unittest.hasLength(2)); | 933 unittest.expect(o, unittest.hasLength(2)); |
| 934 checkDisksScopedListWarningData(o[0]); | 934 checkDisksScopedListWarningData(o[0]); |
| 935 checkDisksScopedListWarningData(o[1]); | 935 checkDisksScopedListWarningData(o[1]); |
| 936 } | 936 } |
| 937 | 937 |
| 938 core.int buildCounterDisksScopedListWarning = 0; | 938 core.int buildCounterDisksScopedListWarning = 0; |
| 939 buildDisksScopedListWarning() { | 939 buildDisksScopedListWarning() { |
| 940 var o = new api.DisksScopedListWarning(); | 940 var o = new api.DisksScopedListWarning(); |
| 941 buildCounterDisksScopedListWarning++; | 941 buildCounterDisksScopedListWarning++; |
| 942 if (buildCounterDisksScopedListWarning < 3) { | 942 if (buildCounterDisksScopedListWarning < 3) { |
| 943 o.code = "foo"; | 943 o.code = "foo"; |
| 944 o.data = buildUnnamed885(); | 944 o.data = buildUnnamed866(); |
| 945 o.message = "foo"; | 945 o.message = "foo"; |
| 946 } | 946 } |
| 947 buildCounterDisksScopedListWarning--; | 947 buildCounterDisksScopedListWarning--; |
| 948 return o; | 948 return o; |
| 949 } | 949 } |
| 950 | 950 |
| 951 checkDisksScopedListWarning(api.DisksScopedListWarning o) { | 951 checkDisksScopedListWarning(api.DisksScopedListWarning o) { |
| 952 buildCounterDisksScopedListWarning++; | 952 buildCounterDisksScopedListWarning++; |
| 953 if (buildCounterDisksScopedListWarning < 3) { | 953 if (buildCounterDisksScopedListWarning < 3) { |
| 954 unittest.expect(o.code, unittest.equals('foo')); | 954 unittest.expect(o.code, unittest.equals('foo')); |
| 955 checkUnnamed885(o.data); | 955 checkUnnamed866(o.data); |
| 956 unittest.expect(o.message, unittest.equals('foo')); | 956 unittest.expect(o.message, unittest.equals('foo')); |
| 957 } | 957 } |
| 958 buildCounterDisksScopedListWarning--; | 958 buildCounterDisksScopedListWarning--; |
| 959 } | 959 } |
| 960 | 960 |
| 961 core.int buildCounterDisksScopedList = 0; | 961 core.int buildCounterDisksScopedList = 0; |
| 962 buildDisksScopedList() { | 962 buildDisksScopedList() { |
| 963 var o = new api.DisksScopedList(); | 963 var o = new api.DisksScopedList(); |
| 964 buildCounterDisksScopedList++; | 964 buildCounterDisksScopedList++; |
| 965 if (buildCounterDisksScopedList < 3) { | 965 if (buildCounterDisksScopedList < 3) { |
| 966 o.disks = buildUnnamed884(); | 966 o.disks = buildUnnamed865(); |
| 967 o.warning = buildDisksScopedListWarning(); | 967 o.warning = buildDisksScopedListWarning(); |
| 968 } | 968 } |
| 969 buildCounterDisksScopedList--; | 969 buildCounterDisksScopedList--; |
| 970 return o; | 970 return o; |
| 971 } | 971 } |
| 972 | 972 |
| 973 checkDisksScopedList(api.DisksScopedList o) { | 973 checkDisksScopedList(api.DisksScopedList o) { |
| 974 buildCounterDisksScopedList++; | 974 buildCounterDisksScopedList++; |
| 975 if (buildCounterDisksScopedList < 3) { | 975 if (buildCounterDisksScopedList < 3) { |
| 976 checkUnnamed884(o.disks); | 976 checkUnnamed865(o.disks); |
| 977 checkDisksScopedListWarning(o.warning); | 977 checkDisksScopedListWarning(o.warning); |
| 978 } | 978 } |
| 979 buildCounterDisksScopedList--; | 979 buildCounterDisksScopedList--; |
| 980 } | 980 } |
| 981 | 981 |
| 982 buildUnnamed886() { | 982 buildUnnamed867() { |
| 983 var o = new core.List<core.String>(); | 983 var o = new core.List<core.String>(); |
| 984 o.add("foo"); | 984 o.add("foo"); |
| 985 o.add("foo"); | 985 o.add("foo"); |
| 986 return o; | 986 return o; |
| 987 } | 987 } |
| 988 | 988 |
| 989 checkUnnamed886(core.List<core.String> o) { | 989 checkUnnamed867(core.List<core.String> o) { |
| 990 unittest.expect(o, unittest.hasLength(2)); | 990 unittest.expect(o, unittest.hasLength(2)); |
| 991 unittest.expect(o[0], unittest.equals('foo')); | 991 unittest.expect(o[0], unittest.equals('foo')); |
| 992 unittest.expect(o[1], unittest.equals('foo')); | 992 unittest.expect(o[1], unittest.equals('foo')); |
| 993 } | 993 } |
| 994 | 994 |
| 995 core.int buildCounterFirewallAllowed = 0; | 995 core.int buildCounterFirewallAllowed = 0; |
| 996 buildFirewallAllowed() { | 996 buildFirewallAllowed() { |
| 997 var o = new api.FirewallAllowed(); | 997 var o = new api.FirewallAllowed(); |
| 998 buildCounterFirewallAllowed++; | 998 buildCounterFirewallAllowed++; |
| 999 if (buildCounterFirewallAllowed < 3) { | 999 if (buildCounterFirewallAllowed < 3) { |
| 1000 o.IPProtocol = "foo"; | 1000 o.IPProtocol = "foo"; |
| 1001 o.ports = buildUnnamed886(); | 1001 o.ports = buildUnnamed867(); |
| 1002 } | 1002 } |
| 1003 buildCounterFirewallAllowed--; | 1003 buildCounterFirewallAllowed--; |
| 1004 return o; | 1004 return o; |
| 1005 } | 1005 } |
| 1006 | 1006 |
| 1007 checkFirewallAllowed(api.FirewallAllowed o) { | 1007 checkFirewallAllowed(api.FirewallAllowed o) { |
| 1008 buildCounterFirewallAllowed++; | 1008 buildCounterFirewallAllowed++; |
| 1009 if (buildCounterFirewallAllowed < 3) { | 1009 if (buildCounterFirewallAllowed < 3) { |
| 1010 unittest.expect(o.IPProtocol, unittest.equals('foo')); | 1010 unittest.expect(o.IPProtocol, unittest.equals('foo')); |
| 1011 checkUnnamed886(o.ports); | 1011 checkUnnamed867(o.ports); |
| 1012 } | 1012 } |
| 1013 buildCounterFirewallAllowed--; | 1013 buildCounterFirewallAllowed--; |
| 1014 } | 1014 } |
| 1015 | 1015 |
| 1016 buildUnnamed887() { | 1016 buildUnnamed868() { |
| 1017 var o = new core.List<api.FirewallAllowed>(); | 1017 var o = new core.List<api.FirewallAllowed>(); |
| 1018 o.add(buildFirewallAllowed()); | 1018 o.add(buildFirewallAllowed()); |
| 1019 o.add(buildFirewallAllowed()); | 1019 o.add(buildFirewallAllowed()); |
| 1020 return o; | 1020 return o; |
| 1021 } | 1021 } |
| 1022 | 1022 |
| 1023 checkUnnamed887(core.List<api.FirewallAllowed> o) { | 1023 checkUnnamed868(core.List<api.FirewallAllowed> o) { |
| 1024 unittest.expect(o, unittest.hasLength(2)); | 1024 unittest.expect(o, unittest.hasLength(2)); |
| 1025 checkFirewallAllowed(o[0]); | 1025 checkFirewallAllowed(o[0]); |
| 1026 checkFirewallAllowed(o[1]); | 1026 checkFirewallAllowed(o[1]); |
| 1027 } | 1027 } |
| 1028 | 1028 |
| 1029 buildUnnamed888() { | 1029 buildUnnamed869() { |
| 1030 var o = new core.List<core.String>(); | 1030 var o = new core.List<core.String>(); |
| 1031 o.add("foo"); | 1031 o.add("foo"); |
| 1032 o.add("foo"); | 1032 o.add("foo"); |
| 1033 return o; | 1033 return o; |
| 1034 } | 1034 } |
| 1035 | 1035 |
| 1036 checkUnnamed888(core.List<core.String> o) { | 1036 checkUnnamed869(core.List<core.String> o) { |
| 1037 unittest.expect(o, unittest.hasLength(2)); | 1037 unittest.expect(o, unittest.hasLength(2)); |
| 1038 unittest.expect(o[0], unittest.equals('foo')); | 1038 unittest.expect(o[0], unittest.equals('foo')); |
| 1039 unittest.expect(o[1], unittest.equals('foo')); | 1039 unittest.expect(o[1], unittest.equals('foo')); |
| 1040 } | 1040 } |
| 1041 | 1041 |
| 1042 buildUnnamed889() { | 1042 buildUnnamed870() { |
| 1043 var o = new core.List<core.String>(); | 1043 var o = new core.List<core.String>(); |
| 1044 o.add("foo"); | 1044 o.add("foo"); |
| 1045 o.add("foo"); | 1045 o.add("foo"); |
| 1046 return o; | 1046 return o; |
| 1047 } | 1047 } |
| 1048 | 1048 |
| 1049 checkUnnamed889(core.List<core.String> o) { | 1049 checkUnnamed870(core.List<core.String> o) { |
| 1050 unittest.expect(o, unittest.hasLength(2)); | 1050 unittest.expect(o, unittest.hasLength(2)); |
| 1051 unittest.expect(o[0], unittest.equals('foo')); | 1051 unittest.expect(o[0], unittest.equals('foo')); |
| 1052 unittest.expect(o[1], unittest.equals('foo')); | 1052 unittest.expect(o[1], unittest.equals('foo')); |
| 1053 } | 1053 } |
| 1054 | 1054 |
| 1055 buildUnnamed890() { | 1055 buildUnnamed871() { |
| 1056 var o = new core.List<core.String>(); | 1056 var o = new core.List<core.String>(); |
| 1057 o.add("foo"); | 1057 o.add("foo"); |
| 1058 o.add("foo"); | 1058 o.add("foo"); |
| 1059 return o; | 1059 return o; |
| 1060 } | 1060 } |
| 1061 | 1061 |
| 1062 checkUnnamed890(core.List<core.String> o) { | 1062 checkUnnamed871(core.List<core.String> o) { |
| 1063 unittest.expect(o, unittest.hasLength(2)); | 1063 unittest.expect(o, unittest.hasLength(2)); |
| 1064 unittest.expect(o[0], unittest.equals('foo')); | 1064 unittest.expect(o[0], unittest.equals('foo')); |
| 1065 unittest.expect(o[1], unittest.equals('foo')); | 1065 unittest.expect(o[1], unittest.equals('foo')); |
| 1066 } | 1066 } |
| 1067 | 1067 |
| 1068 core.int buildCounterFirewall = 0; | 1068 core.int buildCounterFirewall = 0; |
| 1069 buildFirewall() { | 1069 buildFirewall() { |
| 1070 var o = new api.Firewall(); | 1070 var o = new api.Firewall(); |
| 1071 buildCounterFirewall++; | 1071 buildCounterFirewall++; |
| 1072 if (buildCounterFirewall < 3) { | 1072 if (buildCounterFirewall < 3) { |
| 1073 o.allowed = buildUnnamed887(); | 1073 o.allowed = buildUnnamed868(); |
| 1074 o.creationTimestamp = "foo"; | 1074 o.creationTimestamp = "foo"; |
| 1075 o.description = "foo"; | 1075 o.description = "foo"; |
| 1076 o.id = "foo"; | 1076 o.id = "foo"; |
| 1077 o.kind = "foo"; | 1077 o.kind = "foo"; |
| 1078 o.name = "foo"; | 1078 o.name = "foo"; |
| 1079 o.network = "foo"; | 1079 o.network = "foo"; |
| 1080 o.selfLink = "foo"; | 1080 o.selfLink = "foo"; |
| 1081 o.sourceRanges = buildUnnamed888(); | 1081 o.sourceRanges = buildUnnamed869(); |
| 1082 o.sourceTags = buildUnnamed889(); | 1082 o.sourceTags = buildUnnamed870(); |
| 1083 o.targetTags = buildUnnamed890(); | 1083 o.targetTags = buildUnnamed871(); |
| 1084 } | 1084 } |
| 1085 buildCounterFirewall--; | 1085 buildCounterFirewall--; |
| 1086 return o; | 1086 return o; |
| 1087 } | 1087 } |
| 1088 | 1088 |
| 1089 checkFirewall(api.Firewall o) { | 1089 checkFirewall(api.Firewall o) { |
| 1090 buildCounterFirewall++; | 1090 buildCounterFirewall++; |
| 1091 if (buildCounterFirewall < 3) { | 1091 if (buildCounterFirewall < 3) { |
| 1092 checkUnnamed887(o.allowed); | 1092 checkUnnamed868(o.allowed); |
| 1093 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1093 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1094 unittest.expect(o.description, unittest.equals('foo')); | 1094 unittest.expect(o.description, unittest.equals('foo')); |
| 1095 unittest.expect(o.id, unittest.equals('foo')); | 1095 unittest.expect(o.id, unittest.equals('foo')); |
| 1096 unittest.expect(o.kind, unittest.equals('foo')); | 1096 unittest.expect(o.kind, unittest.equals('foo')); |
| 1097 unittest.expect(o.name, unittest.equals('foo')); | 1097 unittest.expect(o.name, unittest.equals('foo')); |
| 1098 unittest.expect(o.network, unittest.equals('foo')); | 1098 unittest.expect(o.network, unittest.equals('foo')); |
| 1099 unittest.expect(o.selfLink, unittest.equals('foo')); | 1099 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1100 checkUnnamed888(o.sourceRanges); | 1100 checkUnnamed869(o.sourceRanges); |
| 1101 checkUnnamed889(o.sourceTags); | 1101 checkUnnamed870(o.sourceTags); |
| 1102 checkUnnamed890(o.targetTags); | 1102 checkUnnamed871(o.targetTags); |
| 1103 } | 1103 } |
| 1104 buildCounterFirewall--; | 1104 buildCounterFirewall--; |
| 1105 } | 1105 } |
| 1106 | 1106 |
| 1107 buildUnnamed891() { | 1107 buildUnnamed872() { |
| 1108 var o = new core.List<api.Firewall>(); | 1108 var o = new core.List<api.Firewall>(); |
| 1109 o.add(buildFirewall()); | 1109 o.add(buildFirewall()); |
| 1110 o.add(buildFirewall()); | 1110 o.add(buildFirewall()); |
| 1111 return o; | 1111 return o; |
| 1112 } | 1112 } |
| 1113 | 1113 |
| 1114 checkUnnamed891(core.List<api.Firewall> o) { | 1114 checkUnnamed872(core.List<api.Firewall> o) { |
| 1115 unittest.expect(o, unittest.hasLength(2)); | 1115 unittest.expect(o, unittest.hasLength(2)); |
| 1116 checkFirewall(o[0]); | 1116 checkFirewall(o[0]); |
| 1117 checkFirewall(o[1]); | 1117 checkFirewall(o[1]); |
| 1118 } | 1118 } |
| 1119 | 1119 |
| 1120 core.int buildCounterFirewallList = 0; | 1120 core.int buildCounterFirewallList = 0; |
| 1121 buildFirewallList() { | 1121 buildFirewallList() { |
| 1122 var o = new api.FirewallList(); | 1122 var o = new api.FirewallList(); |
| 1123 buildCounterFirewallList++; | 1123 buildCounterFirewallList++; |
| 1124 if (buildCounterFirewallList < 3) { | 1124 if (buildCounterFirewallList < 3) { |
| 1125 o.id = "foo"; | 1125 o.id = "foo"; |
| 1126 o.items = buildUnnamed891(); | 1126 o.items = buildUnnamed872(); |
| 1127 o.kind = "foo"; | 1127 o.kind = "foo"; |
| 1128 o.nextPageToken = "foo"; | 1128 o.nextPageToken = "foo"; |
| 1129 o.selfLink = "foo"; | 1129 o.selfLink = "foo"; |
| 1130 } | 1130 } |
| 1131 buildCounterFirewallList--; | 1131 buildCounterFirewallList--; |
| 1132 return o; | 1132 return o; |
| 1133 } | 1133 } |
| 1134 | 1134 |
| 1135 checkFirewallList(api.FirewallList o) { | 1135 checkFirewallList(api.FirewallList o) { |
| 1136 buildCounterFirewallList++; | 1136 buildCounterFirewallList++; |
| 1137 if (buildCounterFirewallList < 3) { | 1137 if (buildCounterFirewallList < 3) { |
| 1138 unittest.expect(o.id, unittest.equals('foo')); | 1138 unittest.expect(o.id, unittest.equals('foo')); |
| 1139 checkUnnamed891(o.items); | 1139 checkUnnamed872(o.items); |
| 1140 unittest.expect(o.kind, unittest.equals('foo')); | 1140 unittest.expect(o.kind, unittest.equals('foo')); |
| 1141 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1141 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1142 unittest.expect(o.selfLink, unittest.equals('foo')); | 1142 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1143 } | 1143 } |
| 1144 buildCounterFirewallList--; | 1144 buildCounterFirewallList--; |
| 1145 } | 1145 } |
| 1146 | 1146 |
| 1147 core.int buildCounterForwardingRule = 0; | 1147 core.int buildCounterForwardingRule = 0; |
| 1148 buildForwardingRule() { | 1148 buildForwardingRule() { |
| 1149 var o = new api.ForwardingRule(); | 1149 var o = new api.ForwardingRule(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1176 unittest.expect(o.kind, unittest.equals('foo')); | 1176 unittest.expect(o.kind, unittest.equals('foo')); |
| 1177 unittest.expect(o.name, unittest.equals('foo')); | 1177 unittest.expect(o.name, unittest.equals('foo')); |
| 1178 unittest.expect(o.portRange, unittest.equals('foo')); | 1178 unittest.expect(o.portRange, unittest.equals('foo')); |
| 1179 unittest.expect(o.region, unittest.equals('foo')); | 1179 unittest.expect(o.region, unittest.equals('foo')); |
| 1180 unittest.expect(o.selfLink, unittest.equals('foo')); | 1180 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1181 unittest.expect(o.target, unittest.equals('foo')); | 1181 unittest.expect(o.target, unittest.equals('foo')); |
| 1182 } | 1182 } |
| 1183 buildCounterForwardingRule--; | 1183 buildCounterForwardingRule--; |
| 1184 } | 1184 } |
| 1185 | 1185 |
| 1186 buildUnnamed892() { | 1186 buildUnnamed873() { |
| 1187 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); | 1187 var o = new core.Map<core.String, api.ForwardingRulesScopedList>(); |
| 1188 o["x"] = buildForwardingRulesScopedList(); | 1188 o["x"] = buildForwardingRulesScopedList(); |
| 1189 o["y"] = buildForwardingRulesScopedList(); | 1189 o["y"] = buildForwardingRulesScopedList(); |
| 1190 return o; | 1190 return o; |
| 1191 } | 1191 } |
| 1192 | 1192 |
| 1193 checkUnnamed892(core.Map<core.String, api.ForwardingRulesScopedList> o) { | 1193 checkUnnamed873(core.Map<core.String, api.ForwardingRulesScopedList> o) { |
| 1194 unittest.expect(o, unittest.hasLength(2)); | 1194 unittest.expect(o, unittest.hasLength(2)); |
| 1195 checkForwardingRulesScopedList(o["x"]); | 1195 checkForwardingRulesScopedList(o["x"]); |
| 1196 checkForwardingRulesScopedList(o["y"]); | 1196 checkForwardingRulesScopedList(o["y"]); |
| 1197 } | 1197 } |
| 1198 | 1198 |
| 1199 core.int buildCounterForwardingRuleAggregatedList = 0; | 1199 core.int buildCounterForwardingRuleAggregatedList = 0; |
| 1200 buildForwardingRuleAggregatedList() { | 1200 buildForwardingRuleAggregatedList() { |
| 1201 var o = new api.ForwardingRuleAggregatedList(); | 1201 var o = new api.ForwardingRuleAggregatedList(); |
| 1202 buildCounterForwardingRuleAggregatedList++; | 1202 buildCounterForwardingRuleAggregatedList++; |
| 1203 if (buildCounterForwardingRuleAggregatedList < 3) { | 1203 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1204 o.id = "foo"; | 1204 o.id = "foo"; |
| 1205 o.items = buildUnnamed892(); | 1205 o.items = buildUnnamed873(); |
| 1206 o.kind = "foo"; | 1206 o.kind = "foo"; |
| 1207 o.nextPageToken = "foo"; | 1207 o.nextPageToken = "foo"; |
| 1208 o.selfLink = "foo"; | 1208 o.selfLink = "foo"; |
| 1209 } | 1209 } |
| 1210 buildCounterForwardingRuleAggregatedList--; | 1210 buildCounterForwardingRuleAggregatedList--; |
| 1211 return o; | 1211 return o; |
| 1212 } | 1212 } |
| 1213 | 1213 |
| 1214 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { | 1214 checkForwardingRuleAggregatedList(api.ForwardingRuleAggregatedList o) { |
| 1215 buildCounterForwardingRuleAggregatedList++; | 1215 buildCounterForwardingRuleAggregatedList++; |
| 1216 if (buildCounterForwardingRuleAggregatedList < 3) { | 1216 if (buildCounterForwardingRuleAggregatedList < 3) { |
| 1217 unittest.expect(o.id, unittest.equals('foo')); | 1217 unittest.expect(o.id, unittest.equals('foo')); |
| 1218 checkUnnamed892(o.items); | 1218 checkUnnamed873(o.items); |
| 1219 unittest.expect(o.kind, unittest.equals('foo')); | 1219 unittest.expect(o.kind, unittest.equals('foo')); |
| 1220 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1220 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1221 unittest.expect(o.selfLink, unittest.equals('foo')); | 1221 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1222 } | 1222 } |
| 1223 buildCounterForwardingRuleAggregatedList--; | 1223 buildCounterForwardingRuleAggregatedList--; |
| 1224 } | 1224 } |
| 1225 | 1225 |
| 1226 buildUnnamed893() { | 1226 buildUnnamed874() { |
| 1227 var o = new core.List<api.ForwardingRule>(); | 1227 var o = new core.List<api.ForwardingRule>(); |
| 1228 o.add(buildForwardingRule()); | 1228 o.add(buildForwardingRule()); |
| 1229 o.add(buildForwardingRule()); | 1229 o.add(buildForwardingRule()); |
| 1230 return o; | 1230 return o; |
| 1231 } | 1231 } |
| 1232 | 1232 |
| 1233 checkUnnamed893(core.List<api.ForwardingRule> o) { | 1233 checkUnnamed874(core.List<api.ForwardingRule> o) { |
| 1234 unittest.expect(o, unittest.hasLength(2)); | 1234 unittest.expect(o, unittest.hasLength(2)); |
| 1235 checkForwardingRule(o[0]); | 1235 checkForwardingRule(o[0]); |
| 1236 checkForwardingRule(o[1]); | 1236 checkForwardingRule(o[1]); |
| 1237 } | 1237 } |
| 1238 | 1238 |
| 1239 core.int buildCounterForwardingRuleList = 0; | 1239 core.int buildCounterForwardingRuleList = 0; |
| 1240 buildForwardingRuleList() { | 1240 buildForwardingRuleList() { |
| 1241 var o = new api.ForwardingRuleList(); | 1241 var o = new api.ForwardingRuleList(); |
| 1242 buildCounterForwardingRuleList++; | 1242 buildCounterForwardingRuleList++; |
| 1243 if (buildCounterForwardingRuleList < 3) { | 1243 if (buildCounterForwardingRuleList < 3) { |
| 1244 o.id = "foo"; | 1244 o.id = "foo"; |
| 1245 o.items = buildUnnamed893(); | 1245 o.items = buildUnnamed874(); |
| 1246 o.kind = "foo"; | 1246 o.kind = "foo"; |
| 1247 o.nextPageToken = "foo"; | 1247 o.nextPageToken = "foo"; |
| 1248 o.selfLink = "foo"; | 1248 o.selfLink = "foo"; |
| 1249 } | 1249 } |
| 1250 buildCounterForwardingRuleList--; | 1250 buildCounterForwardingRuleList--; |
| 1251 return o; | 1251 return o; |
| 1252 } | 1252 } |
| 1253 | 1253 |
| 1254 checkForwardingRuleList(api.ForwardingRuleList o) { | 1254 checkForwardingRuleList(api.ForwardingRuleList o) { |
| 1255 buildCounterForwardingRuleList++; | 1255 buildCounterForwardingRuleList++; |
| 1256 if (buildCounterForwardingRuleList < 3) { | 1256 if (buildCounterForwardingRuleList < 3) { |
| 1257 unittest.expect(o.id, unittest.equals('foo')); | 1257 unittest.expect(o.id, unittest.equals('foo')); |
| 1258 checkUnnamed893(o.items); | 1258 checkUnnamed874(o.items); |
| 1259 unittest.expect(o.kind, unittest.equals('foo')); | 1259 unittest.expect(o.kind, unittest.equals('foo')); |
| 1260 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1260 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1261 unittest.expect(o.selfLink, unittest.equals('foo')); | 1261 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1262 } | 1262 } |
| 1263 buildCounterForwardingRuleList--; | 1263 buildCounterForwardingRuleList--; |
| 1264 } | 1264 } |
| 1265 | 1265 |
| 1266 buildUnnamed894() { | 1266 buildUnnamed875() { |
| 1267 var o = new core.List<api.ForwardingRule>(); | 1267 var o = new core.List<api.ForwardingRule>(); |
| 1268 o.add(buildForwardingRule()); | 1268 o.add(buildForwardingRule()); |
| 1269 o.add(buildForwardingRule()); | 1269 o.add(buildForwardingRule()); |
| 1270 return o; | 1270 return o; |
| 1271 } | 1271 } |
| 1272 | 1272 |
| 1273 checkUnnamed894(core.List<api.ForwardingRule> o) { | 1273 checkUnnamed875(core.List<api.ForwardingRule> o) { |
| 1274 unittest.expect(o, unittest.hasLength(2)); | 1274 unittest.expect(o, unittest.hasLength(2)); |
| 1275 checkForwardingRule(o[0]); | 1275 checkForwardingRule(o[0]); |
| 1276 checkForwardingRule(o[1]); | 1276 checkForwardingRule(o[1]); |
| 1277 } | 1277 } |
| 1278 | 1278 |
| 1279 core.int buildCounterForwardingRulesScopedListWarningData = 0; | 1279 core.int buildCounterForwardingRulesScopedListWarningData = 0; |
| 1280 buildForwardingRulesScopedListWarningData() { | 1280 buildForwardingRulesScopedListWarningData() { |
| 1281 var o = new api.ForwardingRulesScopedListWarningData(); | 1281 var o = new api.ForwardingRulesScopedListWarningData(); |
| 1282 buildCounterForwardingRulesScopedListWarningData++; | 1282 buildCounterForwardingRulesScopedListWarningData++; |
| 1283 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1283 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1284 o.key = "foo"; | 1284 o.key = "foo"; |
| 1285 o.value = "foo"; | 1285 o.value = "foo"; |
| 1286 } | 1286 } |
| 1287 buildCounterForwardingRulesScopedListWarningData--; | 1287 buildCounterForwardingRulesScopedListWarningData--; |
| 1288 return o; | 1288 return o; |
| 1289 } | 1289 } |
| 1290 | 1290 |
| 1291 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { | 1291 checkForwardingRulesScopedListWarningData(api.ForwardingRulesScopedListWarningDa
ta o) { |
| 1292 buildCounterForwardingRulesScopedListWarningData++; | 1292 buildCounterForwardingRulesScopedListWarningData++; |
| 1293 if (buildCounterForwardingRulesScopedListWarningData < 3) { | 1293 if (buildCounterForwardingRulesScopedListWarningData < 3) { |
| 1294 unittest.expect(o.key, unittest.equals('foo')); | 1294 unittest.expect(o.key, unittest.equals('foo')); |
| 1295 unittest.expect(o.value, unittest.equals('foo')); | 1295 unittest.expect(o.value, unittest.equals('foo')); |
| 1296 } | 1296 } |
| 1297 buildCounterForwardingRulesScopedListWarningData--; | 1297 buildCounterForwardingRulesScopedListWarningData--; |
| 1298 } | 1298 } |
| 1299 | 1299 |
| 1300 buildUnnamed895() { | 1300 buildUnnamed876() { |
| 1301 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); | 1301 var o = new core.List<api.ForwardingRulesScopedListWarningData>(); |
| 1302 o.add(buildForwardingRulesScopedListWarningData()); | 1302 o.add(buildForwardingRulesScopedListWarningData()); |
| 1303 o.add(buildForwardingRulesScopedListWarningData()); | 1303 o.add(buildForwardingRulesScopedListWarningData()); |
| 1304 return o; | 1304 return o; |
| 1305 } | 1305 } |
| 1306 | 1306 |
| 1307 checkUnnamed895(core.List<api.ForwardingRulesScopedListWarningData> o) { | 1307 checkUnnamed876(core.List<api.ForwardingRulesScopedListWarningData> o) { |
| 1308 unittest.expect(o, unittest.hasLength(2)); | 1308 unittest.expect(o, unittest.hasLength(2)); |
| 1309 checkForwardingRulesScopedListWarningData(o[0]); | 1309 checkForwardingRulesScopedListWarningData(o[0]); |
| 1310 checkForwardingRulesScopedListWarningData(o[1]); | 1310 checkForwardingRulesScopedListWarningData(o[1]); |
| 1311 } | 1311 } |
| 1312 | 1312 |
| 1313 core.int buildCounterForwardingRulesScopedListWarning = 0; | 1313 core.int buildCounterForwardingRulesScopedListWarning = 0; |
| 1314 buildForwardingRulesScopedListWarning() { | 1314 buildForwardingRulesScopedListWarning() { |
| 1315 var o = new api.ForwardingRulesScopedListWarning(); | 1315 var o = new api.ForwardingRulesScopedListWarning(); |
| 1316 buildCounterForwardingRulesScopedListWarning++; | 1316 buildCounterForwardingRulesScopedListWarning++; |
| 1317 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1317 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1318 o.code = "foo"; | 1318 o.code = "foo"; |
| 1319 o.data = buildUnnamed895(); | 1319 o.data = buildUnnamed876(); |
| 1320 o.message = "foo"; | 1320 o.message = "foo"; |
| 1321 } | 1321 } |
| 1322 buildCounterForwardingRulesScopedListWarning--; | 1322 buildCounterForwardingRulesScopedListWarning--; |
| 1323 return o; | 1323 return o; |
| 1324 } | 1324 } |
| 1325 | 1325 |
| 1326 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { | 1326 checkForwardingRulesScopedListWarning(api.ForwardingRulesScopedListWarning o) { |
| 1327 buildCounterForwardingRulesScopedListWarning++; | 1327 buildCounterForwardingRulesScopedListWarning++; |
| 1328 if (buildCounterForwardingRulesScopedListWarning < 3) { | 1328 if (buildCounterForwardingRulesScopedListWarning < 3) { |
| 1329 unittest.expect(o.code, unittest.equals('foo')); | 1329 unittest.expect(o.code, unittest.equals('foo')); |
| 1330 checkUnnamed895(o.data); | 1330 checkUnnamed876(o.data); |
| 1331 unittest.expect(o.message, unittest.equals('foo')); | 1331 unittest.expect(o.message, unittest.equals('foo')); |
| 1332 } | 1332 } |
| 1333 buildCounterForwardingRulesScopedListWarning--; | 1333 buildCounterForwardingRulesScopedListWarning--; |
| 1334 } | 1334 } |
| 1335 | 1335 |
| 1336 core.int buildCounterForwardingRulesScopedList = 0; | 1336 core.int buildCounterForwardingRulesScopedList = 0; |
| 1337 buildForwardingRulesScopedList() { | 1337 buildForwardingRulesScopedList() { |
| 1338 var o = new api.ForwardingRulesScopedList(); | 1338 var o = new api.ForwardingRulesScopedList(); |
| 1339 buildCounterForwardingRulesScopedList++; | 1339 buildCounterForwardingRulesScopedList++; |
| 1340 if (buildCounterForwardingRulesScopedList < 3) { | 1340 if (buildCounterForwardingRulesScopedList < 3) { |
| 1341 o.forwardingRules = buildUnnamed894(); | 1341 o.forwardingRules = buildUnnamed875(); |
| 1342 o.warning = buildForwardingRulesScopedListWarning(); | 1342 o.warning = buildForwardingRulesScopedListWarning(); |
| 1343 } | 1343 } |
| 1344 buildCounterForwardingRulesScopedList--; | 1344 buildCounterForwardingRulesScopedList--; |
| 1345 return o; | 1345 return o; |
| 1346 } | 1346 } |
| 1347 | 1347 |
| 1348 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { | 1348 checkForwardingRulesScopedList(api.ForwardingRulesScopedList o) { |
| 1349 buildCounterForwardingRulesScopedList++; | 1349 buildCounterForwardingRulesScopedList++; |
| 1350 if (buildCounterForwardingRulesScopedList < 3) { | 1350 if (buildCounterForwardingRulesScopedList < 3) { |
| 1351 checkUnnamed894(o.forwardingRules); | 1351 checkUnnamed875(o.forwardingRules); |
| 1352 checkForwardingRulesScopedListWarning(o.warning); | 1352 checkForwardingRulesScopedListWarning(o.warning); |
| 1353 } | 1353 } |
| 1354 buildCounterForwardingRulesScopedList--; | 1354 buildCounterForwardingRulesScopedList--; |
| 1355 } | 1355 } |
| 1356 | 1356 |
| 1357 core.int buildCounterHealthCheckReference = 0; | 1357 core.int buildCounterHealthCheckReference = 0; |
| 1358 buildHealthCheckReference() { | 1358 buildHealthCheckReference() { |
| 1359 var o = new api.HealthCheckReference(); | 1359 var o = new api.HealthCheckReference(); |
| 1360 buildCounterHealthCheckReference++; | 1360 buildCounterHealthCheckReference++; |
| 1361 if (buildCounterHealthCheckReference < 3) { | 1361 if (buildCounterHealthCheckReference < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1391 buildCounterHealthStatus++; | 1391 buildCounterHealthStatus++; |
| 1392 if (buildCounterHealthStatus < 3) { | 1392 if (buildCounterHealthStatus < 3) { |
| 1393 unittest.expect(o.healthState, unittest.equals('foo')); | 1393 unittest.expect(o.healthState, unittest.equals('foo')); |
| 1394 unittest.expect(o.instance, unittest.equals('foo')); | 1394 unittest.expect(o.instance, unittest.equals('foo')); |
| 1395 unittest.expect(o.ipAddress, unittest.equals('foo')); | 1395 unittest.expect(o.ipAddress, unittest.equals('foo')); |
| 1396 unittest.expect(o.port, unittest.equals(42)); | 1396 unittest.expect(o.port, unittest.equals(42)); |
| 1397 } | 1397 } |
| 1398 buildCounterHealthStatus--; | 1398 buildCounterHealthStatus--; |
| 1399 } | 1399 } |
| 1400 | 1400 |
| 1401 buildUnnamed896() { | 1401 buildUnnamed877() { |
| 1402 var o = new core.List<core.String>(); | 1402 var o = new core.List<core.String>(); |
| 1403 o.add("foo"); | 1403 o.add("foo"); |
| 1404 o.add("foo"); | 1404 o.add("foo"); |
| 1405 return o; | 1405 return o; |
| 1406 } | 1406 } |
| 1407 | 1407 |
| 1408 checkUnnamed896(core.List<core.String> o) { | 1408 checkUnnamed877(core.List<core.String> o) { |
| 1409 unittest.expect(o, unittest.hasLength(2)); | 1409 unittest.expect(o, unittest.hasLength(2)); |
| 1410 unittest.expect(o[0], unittest.equals('foo')); | 1410 unittest.expect(o[0], unittest.equals('foo')); |
| 1411 unittest.expect(o[1], unittest.equals('foo')); | 1411 unittest.expect(o[1], unittest.equals('foo')); |
| 1412 } | 1412 } |
| 1413 | 1413 |
| 1414 core.int buildCounterHostRule = 0; | 1414 core.int buildCounterHostRule = 0; |
| 1415 buildHostRule() { | 1415 buildHostRule() { |
| 1416 var o = new api.HostRule(); | 1416 var o = new api.HostRule(); |
| 1417 buildCounterHostRule++; | 1417 buildCounterHostRule++; |
| 1418 if (buildCounterHostRule < 3) { | 1418 if (buildCounterHostRule < 3) { |
| 1419 o.description = "foo"; | 1419 o.description = "foo"; |
| 1420 o.hosts = buildUnnamed896(); | 1420 o.hosts = buildUnnamed877(); |
| 1421 o.pathMatcher = "foo"; | 1421 o.pathMatcher = "foo"; |
| 1422 } | 1422 } |
| 1423 buildCounterHostRule--; | 1423 buildCounterHostRule--; |
| 1424 return o; | 1424 return o; |
| 1425 } | 1425 } |
| 1426 | 1426 |
| 1427 checkHostRule(api.HostRule o) { | 1427 checkHostRule(api.HostRule o) { |
| 1428 buildCounterHostRule++; | 1428 buildCounterHostRule++; |
| 1429 if (buildCounterHostRule < 3) { | 1429 if (buildCounterHostRule < 3) { |
| 1430 unittest.expect(o.description, unittest.equals('foo')); | 1430 unittest.expect(o.description, unittest.equals('foo')); |
| 1431 checkUnnamed896(o.hosts); | 1431 checkUnnamed877(o.hosts); |
| 1432 unittest.expect(o.pathMatcher, unittest.equals('foo')); | 1432 unittest.expect(o.pathMatcher, unittest.equals('foo')); |
| 1433 } | 1433 } |
| 1434 buildCounterHostRule--; | 1434 buildCounterHostRule--; |
| 1435 } | 1435 } |
| 1436 | 1436 |
| 1437 core.int buildCounterHttpHealthCheck = 0; | 1437 core.int buildCounterHttpHealthCheck = 0; |
| 1438 buildHttpHealthCheck() { | 1438 buildHttpHealthCheck() { |
| 1439 var o = new api.HttpHealthCheck(); | 1439 var o = new api.HttpHealthCheck(); |
| 1440 buildCounterHttpHealthCheck++; | 1440 buildCounterHttpHealthCheck++; |
| 1441 if (buildCounterHttpHealthCheck < 3) { | 1441 if (buildCounterHttpHealthCheck < 3) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1470 unittest.expect(o.name, unittest.equals('foo')); | 1470 unittest.expect(o.name, unittest.equals('foo')); |
| 1471 unittest.expect(o.port, unittest.equals(42)); | 1471 unittest.expect(o.port, unittest.equals(42)); |
| 1472 unittest.expect(o.requestPath, unittest.equals('foo')); | 1472 unittest.expect(o.requestPath, unittest.equals('foo')); |
| 1473 unittest.expect(o.selfLink, unittest.equals('foo')); | 1473 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1474 unittest.expect(o.timeoutSec, unittest.equals(42)); | 1474 unittest.expect(o.timeoutSec, unittest.equals(42)); |
| 1475 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); | 1475 unittest.expect(o.unhealthyThreshold, unittest.equals(42)); |
| 1476 } | 1476 } |
| 1477 buildCounterHttpHealthCheck--; | 1477 buildCounterHttpHealthCheck--; |
| 1478 } | 1478 } |
| 1479 | 1479 |
| 1480 buildUnnamed897() { | 1480 buildUnnamed878() { |
| 1481 var o = new core.List<api.HttpHealthCheck>(); | 1481 var o = new core.List<api.HttpHealthCheck>(); |
| 1482 o.add(buildHttpHealthCheck()); | 1482 o.add(buildHttpHealthCheck()); |
| 1483 o.add(buildHttpHealthCheck()); | 1483 o.add(buildHttpHealthCheck()); |
| 1484 return o; | 1484 return o; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 checkUnnamed897(core.List<api.HttpHealthCheck> o) { | 1487 checkUnnamed878(core.List<api.HttpHealthCheck> o) { |
| 1488 unittest.expect(o, unittest.hasLength(2)); | 1488 unittest.expect(o, unittest.hasLength(2)); |
| 1489 checkHttpHealthCheck(o[0]); | 1489 checkHttpHealthCheck(o[0]); |
| 1490 checkHttpHealthCheck(o[1]); | 1490 checkHttpHealthCheck(o[1]); |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 core.int buildCounterHttpHealthCheckList = 0; | 1493 core.int buildCounterHttpHealthCheckList = 0; |
| 1494 buildHttpHealthCheckList() { | 1494 buildHttpHealthCheckList() { |
| 1495 var o = new api.HttpHealthCheckList(); | 1495 var o = new api.HttpHealthCheckList(); |
| 1496 buildCounterHttpHealthCheckList++; | 1496 buildCounterHttpHealthCheckList++; |
| 1497 if (buildCounterHttpHealthCheckList < 3) { | 1497 if (buildCounterHttpHealthCheckList < 3) { |
| 1498 o.id = "foo"; | 1498 o.id = "foo"; |
| 1499 o.items = buildUnnamed897(); | 1499 o.items = buildUnnamed878(); |
| 1500 o.kind = "foo"; | 1500 o.kind = "foo"; |
| 1501 o.nextPageToken = "foo"; | 1501 o.nextPageToken = "foo"; |
| 1502 o.selfLink = "foo"; | 1502 o.selfLink = "foo"; |
| 1503 } | 1503 } |
| 1504 buildCounterHttpHealthCheckList--; | 1504 buildCounterHttpHealthCheckList--; |
| 1505 return o; | 1505 return o; |
| 1506 } | 1506 } |
| 1507 | 1507 |
| 1508 checkHttpHealthCheckList(api.HttpHealthCheckList o) { | 1508 checkHttpHealthCheckList(api.HttpHealthCheckList o) { |
| 1509 buildCounterHttpHealthCheckList++; | 1509 buildCounterHttpHealthCheckList++; |
| 1510 if (buildCounterHttpHealthCheckList < 3) { | 1510 if (buildCounterHttpHealthCheckList < 3) { |
| 1511 unittest.expect(o.id, unittest.equals('foo')); | 1511 unittest.expect(o.id, unittest.equals('foo')); |
| 1512 checkUnnamed897(o.items); | 1512 checkUnnamed878(o.items); |
| 1513 unittest.expect(o.kind, unittest.equals('foo')); | 1513 unittest.expect(o.kind, unittest.equals('foo')); |
| 1514 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1514 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1515 unittest.expect(o.selfLink, unittest.equals('foo')); | 1515 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1516 } | 1516 } |
| 1517 buildCounterHttpHealthCheckList--; | 1517 buildCounterHttpHealthCheckList--; |
| 1518 } | 1518 } |
| 1519 | 1519 |
| 1520 buildUnnamed898() { | 1520 buildUnnamed879() { |
| 1521 var o = new core.List<core.String>(); | 1521 var o = new core.List<core.String>(); |
| 1522 o.add("foo"); | 1522 o.add("foo"); |
| 1523 o.add("foo"); | 1523 o.add("foo"); |
| 1524 return o; | 1524 return o; |
| 1525 } | 1525 } |
| 1526 | 1526 |
| 1527 checkUnnamed898(core.List<core.String> o) { | 1527 checkUnnamed879(core.List<core.String> o) { |
| 1528 unittest.expect(o, unittest.hasLength(2)); | 1528 unittest.expect(o, unittest.hasLength(2)); |
| 1529 unittest.expect(o[0], unittest.equals('foo')); | 1529 unittest.expect(o[0], unittest.equals('foo')); |
| 1530 unittest.expect(o[1], unittest.equals('foo')); | 1530 unittest.expect(o[1], unittest.equals('foo')); |
| 1531 } | 1531 } |
| 1532 | 1532 |
| 1533 core.int buildCounterImageRawDisk = 0; | 1533 core.int buildCounterImageRawDisk = 0; |
| 1534 buildImageRawDisk() { | 1534 buildImageRawDisk() { |
| 1535 var o = new api.ImageRawDisk(); | 1535 var o = new api.ImageRawDisk(); |
| 1536 buildCounterImageRawDisk++; | 1536 buildCounterImageRawDisk++; |
| 1537 if (buildCounterImageRawDisk < 3) { | 1537 if (buildCounterImageRawDisk < 3) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1558 var o = new api.Image(); | 1558 var o = new api.Image(); |
| 1559 buildCounterImage++; | 1559 buildCounterImage++; |
| 1560 if (buildCounterImage < 3) { | 1560 if (buildCounterImage < 3) { |
| 1561 o.archiveSizeBytes = "foo"; | 1561 o.archiveSizeBytes = "foo"; |
| 1562 o.creationTimestamp = "foo"; | 1562 o.creationTimestamp = "foo"; |
| 1563 o.deprecated = buildDeprecationStatus(); | 1563 o.deprecated = buildDeprecationStatus(); |
| 1564 o.description = "foo"; | 1564 o.description = "foo"; |
| 1565 o.diskSizeGb = "foo"; | 1565 o.diskSizeGb = "foo"; |
| 1566 o.id = "foo"; | 1566 o.id = "foo"; |
| 1567 o.kind = "foo"; | 1567 o.kind = "foo"; |
| 1568 o.licenses = buildUnnamed898(); | 1568 o.licenses = buildUnnamed879(); |
| 1569 o.name = "foo"; | 1569 o.name = "foo"; |
| 1570 o.rawDisk = buildImageRawDisk(); | 1570 o.rawDisk = buildImageRawDisk(); |
| 1571 o.selfLink = "foo"; | 1571 o.selfLink = "foo"; |
| 1572 o.sourceDisk = "foo"; | 1572 o.sourceDisk = "foo"; |
| 1573 o.sourceDiskId = "foo"; | 1573 o.sourceDiskId = "foo"; |
| 1574 o.sourceType = "foo"; | 1574 o.sourceType = "foo"; |
| 1575 o.status = "foo"; | 1575 o.status = "foo"; |
| 1576 } | 1576 } |
| 1577 buildCounterImage--; | 1577 buildCounterImage--; |
| 1578 return o; | 1578 return o; |
| 1579 } | 1579 } |
| 1580 | 1580 |
| 1581 checkImage(api.Image o) { | 1581 checkImage(api.Image o) { |
| 1582 buildCounterImage++; | 1582 buildCounterImage++; |
| 1583 if (buildCounterImage < 3) { | 1583 if (buildCounterImage < 3) { |
| 1584 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); | 1584 unittest.expect(o.archiveSizeBytes, unittest.equals('foo')); |
| 1585 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1585 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1586 checkDeprecationStatus(o.deprecated); | 1586 checkDeprecationStatus(o.deprecated); |
| 1587 unittest.expect(o.description, unittest.equals('foo')); | 1587 unittest.expect(o.description, unittest.equals('foo')); |
| 1588 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 1588 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 1589 unittest.expect(o.id, unittest.equals('foo')); | 1589 unittest.expect(o.id, unittest.equals('foo')); |
| 1590 unittest.expect(o.kind, unittest.equals('foo')); | 1590 unittest.expect(o.kind, unittest.equals('foo')); |
| 1591 checkUnnamed898(o.licenses); | 1591 checkUnnamed879(o.licenses); |
| 1592 unittest.expect(o.name, unittest.equals('foo')); | 1592 unittest.expect(o.name, unittest.equals('foo')); |
| 1593 checkImageRawDisk(o.rawDisk); | 1593 checkImageRawDisk(o.rawDisk); |
| 1594 unittest.expect(o.selfLink, unittest.equals('foo')); | 1594 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1595 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 1595 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 1596 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 1596 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 1597 unittest.expect(o.sourceType, unittest.equals('foo')); | 1597 unittest.expect(o.sourceType, unittest.equals('foo')); |
| 1598 unittest.expect(o.status, unittest.equals('foo')); | 1598 unittest.expect(o.status, unittest.equals('foo')); |
| 1599 } | 1599 } |
| 1600 buildCounterImage--; | 1600 buildCounterImage--; |
| 1601 } | 1601 } |
| 1602 | 1602 |
| 1603 buildUnnamed899() { | 1603 buildUnnamed880() { |
| 1604 var o = new core.List<api.Image>(); | 1604 var o = new core.List<api.Image>(); |
| 1605 o.add(buildImage()); | 1605 o.add(buildImage()); |
| 1606 o.add(buildImage()); | 1606 o.add(buildImage()); |
| 1607 return o; | 1607 return o; |
| 1608 } | 1608 } |
| 1609 | 1609 |
| 1610 checkUnnamed899(core.List<api.Image> o) { | 1610 checkUnnamed880(core.List<api.Image> o) { |
| 1611 unittest.expect(o, unittest.hasLength(2)); | 1611 unittest.expect(o, unittest.hasLength(2)); |
| 1612 checkImage(o[0]); | 1612 checkImage(o[0]); |
| 1613 checkImage(o[1]); | 1613 checkImage(o[1]); |
| 1614 } | 1614 } |
| 1615 | 1615 |
| 1616 core.int buildCounterImageList = 0; | 1616 core.int buildCounterImageList = 0; |
| 1617 buildImageList() { | 1617 buildImageList() { |
| 1618 var o = new api.ImageList(); | 1618 var o = new api.ImageList(); |
| 1619 buildCounterImageList++; | 1619 buildCounterImageList++; |
| 1620 if (buildCounterImageList < 3) { | 1620 if (buildCounterImageList < 3) { |
| 1621 o.id = "foo"; | 1621 o.id = "foo"; |
| 1622 o.items = buildUnnamed899(); | 1622 o.items = buildUnnamed880(); |
| 1623 o.kind = "foo"; | 1623 o.kind = "foo"; |
| 1624 o.nextPageToken = "foo"; | 1624 o.nextPageToken = "foo"; |
| 1625 o.selfLink = "foo"; | 1625 o.selfLink = "foo"; |
| 1626 } | 1626 } |
| 1627 buildCounterImageList--; | 1627 buildCounterImageList--; |
| 1628 return o; | 1628 return o; |
| 1629 } | 1629 } |
| 1630 | 1630 |
| 1631 checkImageList(api.ImageList o) { | 1631 checkImageList(api.ImageList o) { |
| 1632 buildCounterImageList++; | 1632 buildCounterImageList++; |
| 1633 if (buildCounterImageList < 3) { | 1633 if (buildCounterImageList < 3) { |
| 1634 unittest.expect(o.id, unittest.equals('foo')); | 1634 unittest.expect(o.id, unittest.equals('foo')); |
| 1635 checkUnnamed899(o.items); | 1635 checkUnnamed880(o.items); |
| 1636 unittest.expect(o.kind, unittest.equals('foo')); | 1636 unittest.expect(o.kind, unittest.equals('foo')); |
| 1637 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1637 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1638 unittest.expect(o.selfLink, unittest.equals('foo')); | 1638 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1639 } | 1639 } |
| 1640 buildCounterImageList--; | 1640 buildCounterImageList--; |
| 1641 } | 1641 } |
| 1642 | 1642 |
| 1643 buildUnnamed900() { | 1643 buildUnnamed881() { |
| 1644 var o = new core.List<api.AttachedDisk>(); | 1644 var o = new core.List<api.AttachedDisk>(); |
| 1645 o.add(buildAttachedDisk()); | 1645 o.add(buildAttachedDisk()); |
| 1646 o.add(buildAttachedDisk()); | 1646 o.add(buildAttachedDisk()); |
| 1647 return o; | 1647 return o; |
| 1648 } | 1648 } |
| 1649 | 1649 |
| 1650 checkUnnamed900(core.List<api.AttachedDisk> o) { | 1650 checkUnnamed881(core.List<api.AttachedDisk> o) { |
| 1651 unittest.expect(o, unittest.hasLength(2)); | 1651 unittest.expect(o, unittest.hasLength(2)); |
| 1652 checkAttachedDisk(o[0]); | 1652 checkAttachedDisk(o[0]); |
| 1653 checkAttachedDisk(o[1]); | 1653 checkAttachedDisk(o[1]); |
| 1654 } | 1654 } |
| 1655 | 1655 |
| 1656 buildUnnamed901() { | 1656 buildUnnamed882() { |
| 1657 var o = new core.List<api.NetworkInterface>(); | 1657 var o = new core.List<api.NetworkInterface>(); |
| 1658 o.add(buildNetworkInterface()); | 1658 o.add(buildNetworkInterface()); |
| 1659 o.add(buildNetworkInterface()); | 1659 o.add(buildNetworkInterface()); |
| 1660 return o; | 1660 return o; |
| 1661 } | 1661 } |
| 1662 | 1662 |
| 1663 checkUnnamed901(core.List<api.NetworkInterface> o) { | 1663 checkUnnamed882(core.List<api.NetworkInterface> o) { |
| 1664 unittest.expect(o, unittest.hasLength(2)); | 1664 unittest.expect(o, unittest.hasLength(2)); |
| 1665 checkNetworkInterface(o[0]); | 1665 checkNetworkInterface(o[0]); |
| 1666 checkNetworkInterface(o[1]); | 1666 checkNetworkInterface(o[1]); |
| 1667 } | 1667 } |
| 1668 | 1668 |
| 1669 buildUnnamed902() { | 1669 buildUnnamed883() { |
| 1670 var o = new core.List<api.ServiceAccount>(); | 1670 var o = new core.List<api.ServiceAccount>(); |
| 1671 o.add(buildServiceAccount()); | 1671 o.add(buildServiceAccount()); |
| 1672 o.add(buildServiceAccount()); | 1672 o.add(buildServiceAccount()); |
| 1673 return o; | 1673 return o; |
| 1674 } | 1674 } |
| 1675 | 1675 |
| 1676 checkUnnamed902(core.List<api.ServiceAccount> o) { | 1676 checkUnnamed883(core.List<api.ServiceAccount> o) { |
| 1677 unittest.expect(o, unittest.hasLength(2)); | 1677 unittest.expect(o, unittest.hasLength(2)); |
| 1678 checkServiceAccount(o[0]); | 1678 checkServiceAccount(o[0]); |
| 1679 checkServiceAccount(o[1]); | 1679 checkServiceAccount(o[1]); |
| 1680 } | 1680 } |
| 1681 | 1681 |
| 1682 core.int buildCounterInstance = 0; | 1682 core.int buildCounterInstance = 0; |
| 1683 buildInstance() { | 1683 buildInstance() { |
| 1684 var o = new api.Instance(); | 1684 var o = new api.Instance(); |
| 1685 buildCounterInstance++; | 1685 buildCounterInstance++; |
| 1686 if (buildCounterInstance < 3) { | 1686 if (buildCounterInstance < 3) { |
| 1687 o.canIpForward = true; | 1687 o.canIpForward = true; |
| 1688 o.creationTimestamp = "foo"; | 1688 o.creationTimestamp = "foo"; |
| 1689 o.description = "foo"; | 1689 o.description = "foo"; |
| 1690 o.disks = buildUnnamed900(); | 1690 o.disks = buildUnnamed881(); |
| 1691 o.id = "foo"; | 1691 o.id = "foo"; |
| 1692 o.kind = "foo"; | 1692 o.kind = "foo"; |
| 1693 o.machineType = "foo"; | 1693 o.machineType = "foo"; |
| 1694 o.metadata = buildMetadata(); | 1694 o.metadata = buildMetadata(); |
| 1695 o.name = "foo"; | 1695 o.name = "foo"; |
| 1696 o.networkInterfaces = buildUnnamed901(); | 1696 o.networkInterfaces = buildUnnamed882(); |
| 1697 o.scheduling = buildScheduling(); | 1697 o.scheduling = buildScheduling(); |
| 1698 o.selfLink = "foo"; | 1698 o.selfLink = "foo"; |
| 1699 o.serviceAccounts = buildUnnamed902(); | 1699 o.serviceAccounts = buildUnnamed883(); |
| 1700 o.status = "foo"; | 1700 o.status = "foo"; |
| 1701 o.statusMessage = "foo"; | 1701 o.statusMessage = "foo"; |
| 1702 o.tags = buildTags(); | 1702 o.tags = buildTags(); |
| 1703 o.zone = "foo"; | 1703 o.zone = "foo"; |
| 1704 } | 1704 } |
| 1705 buildCounterInstance--; | 1705 buildCounterInstance--; |
| 1706 return o; | 1706 return o; |
| 1707 } | 1707 } |
| 1708 | 1708 |
| 1709 checkInstance(api.Instance o) { | 1709 checkInstance(api.Instance o) { |
| 1710 buildCounterInstance++; | 1710 buildCounterInstance++; |
| 1711 if (buildCounterInstance < 3) { | 1711 if (buildCounterInstance < 3) { |
| 1712 unittest.expect(o.canIpForward, unittest.isTrue); | 1712 unittest.expect(o.canIpForward, unittest.isTrue); |
| 1713 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 1713 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 1714 unittest.expect(o.description, unittest.equals('foo')); | 1714 unittest.expect(o.description, unittest.equals('foo')); |
| 1715 checkUnnamed900(o.disks); | 1715 checkUnnamed881(o.disks); |
| 1716 unittest.expect(o.id, unittest.equals('foo')); | 1716 unittest.expect(o.id, unittest.equals('foo')); |
| 1717 unittest.expect(o.kind, unittest.equals('foo')); | 1717 unittest.expect(o.kind, unittest.equals('foo')); |
| 1718 unittest.expect(o.machineType, unittest.equals('foo')); | 1718 unittest.expect(o.machineType, unittest.equals('foo')); |
| 1719 checkMetadata(o.metadata); | 1719 checkMetadata(o.metadata); |
| 1720 unittest.expect(o.name, unittest.equals('foo')); | 1720 unittest.expect(o.name, unittest.equals('foo')); |
| 1721 checkUnnamed901(o.networkInterfaces); | 1721 checkUnnamed882(o.networkInterfaces); |
| 1722 checkScheduling(o.scheduling); | 1722 checkScheduling(o.scheduling); |
| 1723 unittest.expect(o.selfLink, unittest.equals('foo')); | 1723 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1724 checkUnnamed902(o.serviceAccounts); | 1724 checkUnnamed883(o.serviceAccounts); |
| 1725 unittest.expect(o.status, unittest.equals('foo')); | 1725 unittest.expect(o.status, unittest.equals('foo')); |
| 1726 unittest.expect(o.statusMessage, unittest.equals('foo')); | 1726 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 1727 checkTags(o.tags); | 1727 checkTags(o.tags); |
| 1728 unittest.expect(o.zone, unittest.equals('foo')); | 1728 unittest.expect(o.zone, unittest.equals('foo')); |
| 1729 } | 1729 } |
| 1730 buildCounterInstance--; | 1730 buildCounterInstance--; |
| 1731 } | 1731 } |
| 1732 | 1732 |
| 1733 buildUnnamed903() { | 1733 buildUnnamed884() { |
| 1734 var o = new core.Map<core.String, api.InstancesScopedList>(); | 1734 var o = new core.Map<core.String, api.InstancesScopedList>(); |
| 1735 o["x"] = buildInstancesScopedList(); | 1735 o["x"] = buildInstancesScopedList(); |
| 1736 o["y"] = buildInstancesScopedList(); | 1736 o["y"] = buildInstancesScopedList(); |
| 1737 return o; | 1737 return o; |
| 1738 } | 1738 } |
| 1739 | 1739 |
| 1740 checkUnnamed903(core.Map<core.String, api.InstancesScopedList> o) { | 1740 checkUnnamed884(core.Map<core.String, api.InstancesScopedList> o) { |
| 1741 unittest.expect(o, unittest.hasLength(2)); | 1741 unittest.expect(o, unittest.hasLength(2)); |
| 1742 checkInstancesScopedList(o["x"]); | 1742 checkInstancesScopedList(o["x"]); |
| 1743 checkInstancesScopedList(o["y"]); | 1743 checkInstancesScopedList(o["y"]); |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 core.int buildCounterInstanceAggregatedList = 0; | 1746 core.int buildCounterInstanceAggregatedList = 0; |
| 1747 buildInstanceAggregatedList() { | 1747 buildInstanceAggregatedList() { |
| 1748 var o = new api.InstanceAggregatedList(); | 1748 var o = new api.InstanceAggregatedList(); |
| 1749 buildCounterInstanceAggregatedList++; | 1749 buildCounterInstanceAggregatedList++; |
| 1750 if (buildCounterInstanceAggregatedList < 3) { | 1750 if (buildCounterInstanceAggregatedList < 3) { |
| 1751 o.id = "foo"; | 1751 o.id = "foo"; |
| 1752 o.items = buildUnnamed903(); | 1752 o.items = buildUnnamed884(); |
| 1753 o.kind = "foo"; | 1753 o.kind = "foo"; |
| 1754 o.nextPageToken = "foo"; | 1754 o.nextPageToken = "foo"; |
| 1755 o.selfLink = "foo"; | 1755 o.selfLink = "foo"; |
| 1756 } | 1756 } |
| 1757 buildCounterInstanceAggregatedList--; | 1757 buildCounterInstanceAggregatedList--; |
| 1758 return o; | 1758 return o; |
| 1759 } | 1759 } |
| 1760 | 1760 |
| 1761 checkInstanceAggregatedList(api.InstanceAggregatedList o) { | 1761 checkInstanceAggregatedList(api.InstanceAggregatedList o) { |
| 1762 buildCounterInstanceAggregatedList++; | 1762 buildCounterInstanceAggregatedList++; |
| 1763 if (buildCounterInstanceAggregatedList < 3) { | 1763 if (buildCounterInstanceAggregatedList < 3) { |
| 1764 unittest.expect(o.id, unittest.equals('foo')); | 1764 unittest.expect(o.id, unittest.equals('foo')); |
| 1765 checkUnnamed903(o.items); | 1765 checkUnnamed884(o.items); |
| 1766 unittest.expect(o.kind, unittest.equals('foo')); | 1766 unittest.expect(o.kind, unittest.equals('foo')); |
| 1767 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1767 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1768 unittest.expect(o.selfLink, unittest.equals('foo')); | 1768 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1769 } | 1769 } |
| 1770 buildCounterInstanceAggregatedList--; | 1770 buildCounterInstanceAggregatedList--; |
| 1771 } | 1771 } |
| 1772 | 1772 |
| 1773 buildUnnamed904() { | 1773 buildUnnamed885() { |
| 1774 var o = new core.List<api.Instance>(); | 1774 var o = new core.List<api.Instance>(); |
| 1775 o.add(buildInstance()); | 1775 o.add(buildInstance()); |
| 1776 o.add(buildInstance()); | 1776 o.add(buildInstance()); |
| 1777 return o; | 1777 return o; |
| 1778 } | 1778 } |
| 1779 | 1779 |
| 1780 checkUnnamed904(core.List<api.Instance> o) { | 1780 checkUnnamed885(core.List<api.Instance> o) { |
| 1781 unittest.expect(o, unittest.hasLength(2)); | 1781 unittest.expect(o, unittest.hasLength(2)); |
| 1782 checkInstance(o[0]); | 1782 checkInstance(o[0]); |
| 1783 checkInstance(o[1]); | 1783 checkInstance(o[1]); |
| 1784 } | 1784 } |
| 1785 | 1785 |
| 1786 core.int buildCounterInstanceList = 0; | 1786 core.int buildCounterInstanceList = 0; |
| 1787 buildInstanceList() { | 1787 buildInstanceList() { |
| 1788 var o = new api.InstanceList(); | 1788 var o = new api.InstanceList(); |
| 1789 buildCounterInstanceList++; | 1789 buildCounterInstanceList++; |
| 1790 if (buildCounterInstanceList < 3) { | 1790 if (buildCounterInstanceList < 3) { |
| 1791 o.id = "foo"; | 1791 o.id = "foo"; |
| 1792 o.items = buildUnnamed904(); | 1792 o.items = buildUnnamed885(); |
| 1793 o.kind = "foo"; | 1793 o.kind = "foo"; |
| 1794 o.nextPageToken = "foo"; | 1794 o.nextPageToken = "foo"; |
| 1795 o.selfLink = "foo"; | 1795 o.selfLink = "foo"; |
| 1796 } | 1796 } |
| 1797 buildCounterInstanceList--; | 1797 buildCounterInstanceList--; |
| 1798 return o; | 1798 return o; |
| 1799 } | 1799 } |
| 1800 | 1800 |
| 1801 checkInstanceList(api.InstanceList o) { | 1801 checkInstanceList(api.InstanceList o) { |
| 1802 buildCounterInstanceList++; | 1802 buildCounterInstanceList++; |
| 1803 if (buildCounterInstanceList < 3) { | 1803 if (buildCounterInstanceList < 3) { |
| 1804 unittest.expect(o.id, unittest.equals('foo')); | 1804 unittest.expect(o.id, unittest.equals('foo')); |
| 1805 checkUnnamed904(o.items); | 1805 checkUnnamed885(o.items); |
| 1806 unittest.expect(o.kind, unittest.equals('foo')); | 1806 unittest.expect(o.kind, unittest.equals('foo')); |
| 1807 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1807 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1808 unittest.expect(o.selfLink, unittest.equals('foo')); | 1808 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1809 } | 1809 } |
| 1810 buildCounterInstanceList--; | 1810 buildCounterInstanceList--; |
| 1811 } | 1811 } |
| 1812 | 1812 |
| 1813 core.int buildCounterInstanceReference = 0; | 1813 core.int buildCounterInstanceReference = 0; |
| 1814 buildInstanceReference() { | 1814 buildInstanceReference() { |
| 1815 var o = new api.InstanceReference(); | 1815 var o = new api.InstanceReference(); |
| 1816 buildCounterInstanceReference++; | 1816 buildCounterInstanceReference++; |
| 1817 if (buildCounterInstanceReference < 3) { | 1817 if (buildCounterInstanceReference < 3) { |
| 1818 o.instance = "foo"; | 1818 o.instance = "foo"; |
| 1819 } | 1819 } |
| 1820 buildCounterInstanceReference--; | 1820 buildCounterInstanceReference--; |
| 1821 return o; | 1821 return o; |
| 1822 } | 1822 } |
| 1823 | 1823 |
| 1824 checkInstanceReference(api.InstanceReference o) { | 1824 checkInstanceReference(api.InstanceReference o) { |
| 1825 buildCounterInstanceReference++; | 1825 buildCounterInstanceReference++; |
| 1826 if (buildCounterInstanceReference < 3) { | 1826 if (buildCounterInstanceReference < 3) { |
| 1827 unittest.expect(o.instance, unittest.equals('foo')); | 1827 unittest.expect(o.instance, unittest.equals('foo')); |
| 1828 } | 1828 } |
| 1829 buildCounterInstanceReference--; | 1829 buildCounterInstanceReference--; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 buildUnnamed905() { | 1832 buildUnnamed886() { |
| 1833 var o = new core.List<api.Instance>(); | 1833 var o = new core.List<api.Instance>(); |
| 1834 o.add(buildInstance()); | 1834 o.add(buildInstance()); |
| 1835 o.add(buildInstance()); | 1835 o.add(buildInstance()); |
| 1836 return o; | 1836 return o; |
| 1837 } | 1837 } |
| 1838 | 1838 |
| 1839 checkUnnamed905(core.List<api.Instance> o) { | 1839 checkUnnamed886(core.List<api.Instance> o) { |
| 1840 unittest.expect(o, unittest.hasLength(2)); | 1840 unittest.expect(o, unittest.hasLength(2)); |
| 1841 checkInstance(o[0]); | 1841 checkInstance(o[0]); |
| 1842 checkInstance(o[1]); | 1842 checkInstance(o[1]); |
| 1843 } | 1843 } |
| 1844 | 1844 |
| 1845 core.int buildCounterInstancesScopedListWarningData = 0; | 1845 core.int buildCounterInstancesScopedListWarningData = 0; |
| 1846 buildInstancesScopedListWarningData() { | 1846 buildInstancesScopedListWarningData() { |
| 1847 var o = new api.InstancesScopedListWarningData(); | 1847 var o = new api.InstancesScopedListWarningData(); |
| 1848 buildCounterInstancesScopedListWarningData++; | 1848 buildCounterInstancesScopedListWarningData++; |
| 1849 if (buildCounterInstancesScopedListWarningData < 3) { | 1849 if (buildCounterInstancesScopedListWarningData < 3) { |
| 1850 o.key = "foo"; | 1850 o.key = "foo"; |
| 1851 o.value = "foo"; | 1851 o.value = "foo"; |
| 1852 } | 1852 } |
| 1853 buildCounterInstancesScopedListWarningData--; | 1853 buildCounterInstancesScopedListWarningData--; |
| 1854 return o; | 1854 return o; |
| 1855 } | 1855 } |
| 1856 | 1856 |
| 1857 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { | 1857 checkInstancesScopedListWarningData(api.InstancesScopedListWarningData o) { |
| 1858 buildCounterInstancesScopedListWarningData++; | 1858 buildCounterInstancesScopedListWarningData++; |
| 1859 if (buildCounterInstancesScopedListWarningData < 3) { | 1859 if (buildCounterInstancesScopedListWarningData < 3) { |
| 1860 unittest.expect(o.key, unittest.equals('foo')); | 1860 unittest.expect(o.key, unittest.equals('foo')); |
| 1861 unittest.expect(o.value, unittest.equals('foo')); | 1861 unittest.expect(o.value, unittest.equals('foo')); |
| 1862 } | 1862 } |
| 1863 buildCounterInstancesScopedListWarningData--; | 1863 buildCounterInstancesScopedListWarningData--; |
| 1864 } | 1864 } |
| 1865 | 1865 |
| 1866 buildUnnamed906() { | 1866 buildUnnamed887() { |
| 1867 var o = new core.List<api.InstancesScopedListWarningData>(); | 1867 var o = new core.List<api.InstancesScopedListWarningData>(); |
| 1868 o.add(buildInstancesScopedListWarningData()); | 1868 o.add(buildInstancesScopedListWarningData()); |
| 1869 o.add(buildInstancesScopedListWarningData()); | 1869 o.add(buildInstancesScopedListWarningData()); |
| 1870 return o; | 1870 return o; |
| 1871 } | 1871 } |
| 1872 | 1872 |
| 1873 checkUnnamed906(core.List<api.InstancesScopedListWarningData> o) { | 1873 checkUnnamed887(core.List<api.InstancesScopedListWarningData> o) { |
| 1874 unittest.expect(o, unittest.hasLength(2)); | 1874 unittest.expect(o, unittest.hasLength(2)); |
| 1875 checkInstancesScopedListWarningData(o[0]); | 1875 checkInstancesScopedListWarningData(o[0]); |
| 1876 checkInstancesScopedListWarningData(o[1]); | 1876 checkInstancesScopedListWarningData(o[1]); |
| 1877 } | 1877 } |
| 1878 | 1878 |
| 1879 core.int buildCounterInstancesScopedListWarning = 0; | 1879 core.int buildCounterInstancesScopedListWarning = 0; |
| 1880 buildInstancesScopedListWarning() { | 1880 buildInstancesScopedListWarning() { |
| 1881 var o = new api.InstancesScopedListWarning(); | 1881 var o = new api.InstancesScopedListWarning(); |
| 1882 buildCounterInstancesScopedListWarning++; | 1882 buildCounterInstancesScopedListWarning++; |
| 1883 if (buildCounterInstancesScopedListWarning < 3) { | 1883 if (buildCounterInstancesScopedListWarning < 3) { |
| 1884 o.code = "foo"; | 1884 o.code = "foo"; |
| 1885 o.data = buildUnnamed906(); | 1885 o.data = buildUnnamed887(); |
| 1886 o.message = "foo"; | 1886 o.message = "foo"; |
| 1887 } | 1887 } |
| 1888 buildCounterInstancesScopedListWarning--; | 1888 buildCounterInstancesScopedListWarning--; |
| 1889 return o; | 1889 return o; |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { | 1892 checkInstancesScopedListWarning(api.InstancesScopedListWarning o) { |
| 1893 buildCounterInstancesScopedListWarning++; | 1893 buildCounterInstancesScopedListWarning++; |
| 1894 if (buildCounterInstancesScopedListWarning < 3) { | 1894 if (buildCounterInstancesScopedListWarning < 3) { |
| 1895 unittest.expect(o.code, unittest.equals('foo')); | 1895 unittest.expect(o.code, unittest.equals('foo')); |
| 1896 checkUnnamed906(o.data); | 1896 checkUnnamed887(o.data); |
| 1897 unittest.expect(o.message, unittest.equals('foo')); | 1897 unittest.expect(o.message, unittest.equals('foo')); |
| 1898 } | 1898 } |
| 1899 buildCounterInstancesScopedListWarning--; | 1899 buildCounterInstancesScopedListWarning--; |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 core.int buildCounterInstancesScopedList = 0; | 1902 core.int buildCounterInstancesScopedList = 0; |
| 1903 buildInstancesScopedList() { | 1903 buildInstancesScopedList() { |
| 1904 var o = new api.InstancesScopedList(); | 1904 var o = new api.InstancesScopedList(); |
| 1905 buildCounterInstancesScopedList++; | 1905 buildCounterInstancesScopedList++; |
| 1906 if (buildCounterInstancesScopedList < 3) { | 1906 if (buildCounterInstancesScopedList < 3) { |
| 1907 o.instances = buildUnnamed905(); | 1907 o.instances = buildUnnamed886(); |
| 1908 o.warning = buildInstancesScopedListWarning(); | 1908 o.warning = buildInstancesScopedListWarning(); |
| 1909 } | 1909 } |
| 1910 buildCounterInstancesScopedList--; | 1910 buildCounterInstancesScopedList--; |
| 1911 return o; | 1911 return o; |
| 1912 } | 1912 } |
| 1913 | 1913 |
| 1914 checkInstancesScopedList(api.InstancesScopedList o) { | 1914 checkInstancesScopedList(api.InstancesScopedList o) { |
| 1915 buildCounterInstancesScopedList++; | 1915 buildCounterInstancesScopedList++; |
| 1916 if (buildCounterInstancesScopedList < 3) { | 1916 if (buildCounterInstancesScopedList < 3) { |
| 1917 checkUnnamed905(o.instances); | 1917 checkUnnamed886(o.instances); |
| 1918 checkInstancesScopedListWarning(o.warning); | 1918 checkInstancesScopedListWarning(o.warning); |
| 1919 } | 1919 } |
| 1920 buildCounterInstancesScopedList--; | 1920 buildCounterInstancesScopedList--; |
| 1921 } | 1921 } |
| 1922 | 1922 |
| 1923 core.int buildCounterLicense = 0; | 1923 core.int buildCounterLicense = 0; |
| 1924 buildLicense() { | 1924 buildLicense() { |
| 1925 var o = new api.License(); | 1925 var o = new api.License(); |
| 1926 buildCounterLicense++; | 1926 buildCounterLicense++; |
| 1927 if (buildCounterLicense < 3) { | 1927 if (buildCounterLicense < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1957 } | 1957 } |
| 1958 | 1958 |
| 1959 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { | 1959 checkMachineTypeScratchDisks(api.MachineTypeScratchDisks o) { |
| 1960 buildCounterMachineTypeScratchDisks++; | 1960 buildCounterMachineTypeScratchDisks++; |
| 1961 if (buildCounterMachineTypeScratchDisks < 3) { | 1961 if (buildCounterMachineTypeScratchDisks < 3) { |
| 1962 unittest.expect(o.diskGb, unittest.equals(42)); | 1962 unittest.expect(o.diskGb, unittest.equals(42)); |
| 1963 } | 1963 } |
| 1964 buildCounterMachineTypeScratchDisks--; | 1964 buildCounterMachineTypeScratchDisks--; |
| 1965 } | 1965 } |
| 1966 | 1966 |
| 1967 buildUnnamed907() { | 1967 buildUnnamed888() { |
| 1968 var o = new core.List<api.MachineTypeScratchDisks>(); | 1968 var o = new core.List<api.MachineTypeScratchDisks>(); |
| 1969 o.add(buildMachineTypeScratchDisks()); | 1969 o.add(buildMachineTypeScratchDisks()); |
| 1970 o.add(buildMachineTypeScratchDisks()); | 1970 o.add(buildMachineTypeScratchDisks()); |
| 1971 return o; | 1971 return o; |
| 1972 } | 1972 } |
| 1973 | 1973 |
| 1974 checkUnnamed907(core.List<api.MachineTypeScratchDisks> o) { | 1974 checkUnnamed888(core.List<api.MachineTypeScratchDisks> o) { |
| 1975 unittest.expect(o, unittest.hasLength(2)); | 1975 unittest.expect(o, unittest.hasLength(2)); |
| 1976 checkMachineTypeScratchDisks(o[0]); | 1976 checkMachineTypeScratchDisks(o[0]); |
| 1977 checkMachineTypeScratchDisks(o[1]); | 1977 checkMachineTypeScratchDisks(o[1]); |
| 1978 } | 1978 } |
| 1979 | 1979 |
| 1980 core.int buildCounterMachineType = 0; | 1980 core.int buildCounterMachineType = 0; |
| 1981 buildMachineType() { | 1981 buildMachineType() { |
| 1982 var o = new api.MachineType(); | 1982 var o = new api.MachineType(); |
| 1983 buildCounterMachineType++; | 1983 buildCounterMachineType++; |
| 1984 if (buildCounterMachineType < 3) { | 1984 if (buildCounterMachineType < 3) { |
| 1985 o.creationTimestamp = "foo"; | 1985 o.creationTimestamp = "foo"; |
| 1986 o.deprecated = buildDeprecationStatus(); | 1986 o.deprecated = buildDeprecationStatus(); |
| 1987 o.description = "foo"; | 1987 o.description = "foo"; |
| 1988 o.guestCpus = 42; | 1988 o.guestCpus = 42; |
| 1989 o.id = "foo"; | 1989 o.id = "foo"; |
| 1990 o.imageSpaceGb = 42; | 1990 o.imageSpaceGb = 42; |
| 1991 o.kind = "foo"; | 1991 o.kind = "foo"; |
| 1992 o.maximumPersistentDisks = 42; | 1992 o.maximumPersistentDisks = 42; |
| 1993 o.maximumPersistentDisksSizeGb = "foo"; | 1993 o.maximumPersistentDisksSizeGb = "foo"; |
| 1994 o.memoryMb = 42; | 1994 o.memoryMb = 42; |
| 1995 o.name = "foo"; | 1995 o.name = "foo"; |
| 1996 o.scratchDisks = buildUnnamed907(); | 1996 o.scratchDisks = buildUnnamed888(); |
| 1997 o.selfLink = "foo"; | 1997 o.selfLink = "foo"; |
| 1998 o.zone = "foo"; | 1998 o.zone = "foo"; |
| 1999 } | 1999 } |
| 2000 buildCounterMachineType--; | 2000 buildCounterMachineType--; |
| 2001 return o; | 2001 return o; |
| 2002 } | 2002 } |
| 2003 | 2003 |
| 2004 checkMachineType(api.MachineType o) { | 2004 checkMachineType(api.MachineType o) { |
| 2005 buildCounterMachineType++; | 2005 buildCounterMachineType++; |
| 2006 if (buildCounterMachineType < 3) { | 2006 if (buildCounterMachineType < 3) { |
| 2007 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2007 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2008 checkDeprecationStatus(o.deprecated); | 2008 checkDeprecationStatus(o.deprecated); |
| 2009 unittest.expect(o.description, unittest.equals('foo')); | 2009 unittest.expect(o.description, unittest.equals('foo')); |
| 2010 unittest.expect(o.guestCpus, unittest.equals(42)); | 2010 unittest.expect(o.guestCpus, unittest.equals(42)); |
| 2011 unittest.expect(o.id, unittest.equals('foo')); | 2011 unittest.expect(o.id, unittest.equals('foo')); |
| 2012 unittest.expect(o.imageSpaceGb, unittest.equals(42)); | 2012 unittest.expect(o.imageSpaceGb, unittest.equals(42)); |
| 2013 unittest.expect(o.kind, unittest.equals('foo')); | 2013 unittest.expect(o.kind, unittest.equals('foo')); |
| 2014 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); | 2014 unittest.expect(o.maximumPersistentDisks, unittest.equals(42)); |
| 2015 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); | 2015 unittest.expect(o.maximumPersistentDisksSizeGb, unittest.equals('foo')); |
| 2016 unittest.expect(o.memoryMb, unittest.equals(42)); | 2016 unittest.expect(o.memoryMb, unittest.equals(42)); |
| 2017 unittest.expect(o.name, unittest.equals('foo')); | 2017 unittest.expect(o.name, unittest.equals('foo')); |
| 2018 checkUnnamed907(o.scratchDisks); | 2018 checkUnnamed888(o.scratchDisks); |
| 2019 unittest.expect(o.selfLink, unittest.equals('foo')); | 2019 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2020 unittest.expect(o.zone, unittest.equals('foo')); | 2020 unittest.expect(o.zone, unittest.equals('foo')); |
| 2021 } | 2021 } |
| 2022 buildCounterMachineType--; | 2022 buildCounterMachineType--; |
| 2023 } | 2023 } |
| 2024 | 2024 |
| 2025 buildUnnamed908() { | 2025 buildUnnamed889() { |
| 2026 var o = new core.Map<core.String, api.MachineTypesScopedList>(); | 2026 var o = new core.Map<core.String, api.MachineTypesScopedList>(); |
| 2027 o["x"] = buildMachineTypesScopedList(); | 2027 o["x"] = buildMachineTypesScopedList(); |
| 2028 o["y"] = buildMachineTypesScopedList(); | 2028 o["y"] = buildMachineTypesScopedList(); |
| 2029 return o; | 2029 return o; |
| 2030 } | 2030 } |
| 2031 | 2031 |
| 2032 checkUnnamed908(core.Map<core.String, api.MachineTypesScopedList> o) { | 2032 checkUnnamed889(core.Map<core.String, api.MachineTypesScopedList> o) { |
| 2033 unittest.expect(o, unittest.hasLength(2)); | 2033 unittest.expect(o, unittest.hasLength(2)); |
| 2034 checkMachineTypesScopedList(o["x"]); | 2034 checkMachineTypesScopedList(o["x"]); |
| 2035 checkMachineTypesScopedList(o["y"]); | 2035 checkMachineTypesScopedList(o["y"]); |
| 2036 } | 2036 } |
| 2037 | 2037 |
| 2038 core.int buildCounterMachineTypeAggregatedList = 0; | 2038 core.int buildCounterMachineTypeAggregatedList = 0; |
| 2039 buildMachineTypeAggregatedList() { | 2039 buildMachineTypeAggregatedList() { |
| 2040 var o = new api.MachineTypeAggregatedList(); | 2040 var o = new api.MachineTypeAggregatedList(); |
| 2041 buildCounterMachineTypeAggregatedList++; | 2041 buildCounterMachineTypeAggregatedList++; |
| 2042 if (buildCounterMachineTypeAggregatedList < 3) { | 2042 if (buildCounterMachineTypeAggregatedList < 3) { |
| 2043 o.id = "foo"; | 2043 o.id = "foo"; |
| 2044 o.items = buildUnnamed908(); | 2044 o.items = buildUnnamed889(); |
| 2045 o.kind = "foo"; | 2045 o.kind = "foo"; |
| 2046 o.nextPageToken = "foo"; | 2046 o.nextPageToken = "foo"; |
| 2047 o.selfLink = "foo"; | 2047 o.selfLink = "foo"; |
| 2048 } | 2048 } |
| 2049 buildCounterMachineTypeAggregatedList--; | 2049 buildCounterMachineTypeAggregatedList--; |
| 2050 return o; | 2050 return o; |
| 2051 } | 2051 } |
| 2052 | 2052 |
| 2053 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { | 2053 checkMachineTypeAggregatedList(api.MachineTypeAggregatedList o) { |
| 2054 buildCounterMachineTypeAggregatedList++; | 2054 buildCounterMachineTypeAggregatedList++; |
| 2055 if (buildCounterMachineTypeAggregatedList < 3) { | 2055 if (buildCounterMachineTypeAggregatedList < 3) { |
| 2056 unittest.expect(o.id, unittest.equals('foo')); | 2056 unittest.expect(o.id, unittest.equals('foo')); |
| 2057 checkUnnamed908(o.items); | 2057 checkUnnamed889(o.items); |
| 2058 unittest.expect(o.kind, unittest.equals('foo')); | 2058 unittest.expect(o.kind, unittest.equals('foo')); |
| 2059 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2059 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2060 unittest.expect(o.selfLink, unittest.equals('foo')); | 2060 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2061 } | 2061 } |
| 2062 buildCounterMachineTypeAggregatedList--; | 2062 buildCounterMachineTypeAggregatedList--; |
| 2063 } | 2063 } |
| 2064 | 2064 |
| 2065 buildUnnamed909() { | 2065 buildUnnamed890() { |
| 2066 var o = new core.List<api.MachineType>(); | 2066 var o = new core.List<api.MachineType>(); |
| 2067 o.add(buildMachineType()); | 2067 o.add(buildMachineType()); |
| 2068 o.add(buildMachineType()); | 2068 o.add(buildMachineType()); |
| 2069 return o; | 2069 return o; |
| 2070 } | 2070 } |
| 2071 | 2071 |
| 2072 checkUnnamed909(core.List<api.MachineType> o) { | 2072 checkUnnamed890(core.List<api.MachineType> o) { |
| 2073 unittest.expect(o, unittest.hasLength(2)); | 2073 unittest.expect(o, unittest.hasLength(2)); |
| 2074 checkMachineType(o[0]); | 2074 checkMachineType(o[0]); |
| 2075 checkMachineType(o[1]); | 2075 checkMachineType(o[1]); |
| 2076 } | 2076 } |
| 2077 | 2077 |
| 2078 core.int buildCounterMachineTypeList = 0; | 2078 core.int buildCounterMachineTypeList = 0; |
| 2079 buildMachineTypeList() { | 2079 buildMachineTypeList() { |
| 2080 var o = new api.MachineTypeList(); | 2080 var o = new api.MachineTypeList(); |
| 2081 buildCounterMachineTypeList++; | 2081 buildCounterMachineTypeList++; |
| 2082 if (buildCounterMachineTypeList < 3) { | 2082 if (buildCounterMachineTypeList < 3) { |
| 2083 o.id = "foo"; | 2083 o.id = "foo"; |
| 2084 o.items = buildUnnamed909(); | 2084 o.items = buildUnnamed890(); |
| 2085 o.kind = "foo"; | 2085 o.kind = "foo"; |
| 2086 o.nextPageToken = "foo"; | 2086 o.nextPageToken = "foo"; |
| 2087 o.selfLink = "foo"; | 2087 o.selfLink = "foo"; |
| 2088 } | 2088 } |
| 2089 buildCounterMachineTypeList--; | 2089 buildCounterMachineTypeList--; |
| 2090 return o; | 2090 return o; |
| 2091 } | 2091 } |
| 2092 | 2092 |
| 2093 checkMachineTypeList(api.MachineTypeList o) { | 2093 checkMachineTypeList(api.MachineTypeList o) { |
| 2094 buildCounterMachineTypeList++; | 2094 buildCounterMachineTypeList++; |
| 2095 if (buildCounterMachineTypeList < 3) { | 2095 if (buildCounterMachineTypeList < 3) { |
| 2096 unittest.expect(o.id, unittest.equals('foo')); | 2096 unittest.expect(o.id, unittest.equals('foo')); |
| 2097 checkUnnamed909(o.items); | 2097 checkUnnamed890(o.items); |
| 2098 unittest.expect(o.kind, unittest.equals('foo')); | 2098 unittest.expect(o.kind, unittest.equals('foo')); |
| 2099 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2099 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2100 unittest.expect(o.selfLink, unittest.equals('foo')); | 2100 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2101 } | 2101 } |
| 2102 buildCounterMachineTypeList--; | 2102 buildCounterMachineTypeList--; |
| 2103 } | 2103 } |
| 2104 | 2104 |
| 2105 buildUnnamed910() { | 2105 buildUnnamed891() { |
| 2106 var o = new core.List<api.MachineType>(); | 2106 var o = new core.List<api.MachineType>(); |
| 2107 o.add(buildMachineType()); | 2107 o.add(buildMachineType()); |
| 2108 o.add(buildMachineType()); | 2108 o.add(buildMachineType()); |
| 2109 return o; | 2109 return o; |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 checkUnnamed910(core.List<api.MachineType> o) { | 2112 checkUnnamed891(core.List<api.MachineType> o) { |
| 2113 unittest.expect(o, unittest.hasLength(2)); | 2113 unittest.expect(o, unittest.hasLength(2)); |
| 2114 checkMachineType(o[0]); | 2114 checkMachineType(o[0]); |
| 2115 checkMachineType(o[1]); | 2115 checkMachineType(o[1]); |
| 2116 } | 2116 } |
| 2117 | 2117 |
| 2118 core.int buildCounterMachineTypesScopedListWarningData = 0; | 2118 core.int buildCounterMachineTypesScopedListWarningData = 0; |
| 2119 buildMachineTypesScopedListWarningData() { | 2119 buildMachineTypesScopedListWarningData() { |
| 2120 var o = new api.MachineTypesScopedListWarningData(); | 2120 var o = new api.MachineTypesScopedListWarningData(); |
| 2121 buildCounterMachineTypesScopedListWarningData++; | 2121 buildCounterMachineTypesScopedListWarningData++; |
| 2122 if (buildCounterMachineTypesScopedListWarningData < 3) { | 2122 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 2123 o.key = "foo"; | 2123 o.key = "foo"; |
| 2124 o.value = "foo"; | 2124 o.value = "foo"; |
| 2125 } | 2125 } |
| 2126 buildCounterMachineTypesScopedListWarningData--; | 2126 buildCounterMachineTypesScopedListWarningData--; |
| 2127 return o; | 2127 return o; |
| 2128 } | 2128 } |
| 2129 | 2129 |
| 2130 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ | 2130 checkMachineTypesScopedListWarningData(api.MachineTypesScopedListWarningData o)
{ |
| 2131 buildCounterMachineTypesScopedListWarningData++; | 2131 buildCounterMachineTypesScopedListWarningData++; |
| 2132 if (buildCounterMachineTypesScopedListWarningData < 3) { | 2132 if (buildCounterMachineTypesScopedListWarningData < 3) { |
| 2133 unittest.expect(o.key, unittest.equals('foo')); | 2133 unittest.expect(o.key, unittest.equals('foo')); |
| 2134 unittest.expect(o.value, unittest.equals('foo')); | 2134 unittest.expect(o.value, unittest.equals('foo')); |
| 2135 } | 2135 } |
| 2136 buildCounterMachineTypesScopedListWarningData--; | 2136 buildCounterMachineTypesScopedListWarningData--; |
| 2137 } | 2137 } |
| 2138 | 2138 |
| 2139 buildUnnamed911() { | 2139 buildUnnamed892() { |
| 2140 var o = new core.List<api.MachineTypesScopedListWarningData>(); | 2140 var o = new core.List<api.MachineTypesScopedListWarningData>(); |
| 2141 o.add(buildMachineTypesScopedListWarningData()); | 2141 o.add(buildMachineTypesScopedListWarningData()); |
| 2142 o.add(buildMachineTypesScopedListWarningData()); | 2142 o.add(buildMachineTypesScopedListWarningData()); |
| 2143 return o; | 2143 return o; |
| 2144 } | 2144 } |
| 2145 | 2145 |
| 2146 checkUnnamed911(core.List<api.MachineTypesScopedListWarningData> o) { | 2146 checkUnnamed892(core.List<api.MachineTypesScopedListWarningData> o) { |
| 2147 unittest.expect(o, unittest.hasLength(2)); | 2147 unittest.expect(o, unittest.hasLength(2)); |
| 2148 checkMachineTypesScopedListWarningData(o[0]); | 2148 checkMachineTypesScopedListWarningData(o[0]); |
| 2149 checkMachineTypesScopedListWarningData(o[1]); | 2149 checkMachineTypesScopedListWarningData(o[1]); |
| 2150 } | 2150 } |
| 2151 | 2151 |
| 2152 core.int buildCounterMachineTypesScopedListWarning = 0; | 2152 core.int buildCounterMachineTypesScopedListWarning = 0; |
| 2153 buildMachineTypesScopedListWarning() { | 2153 buildMachineTypesScopedListWarning() { |
| 2154 var o = new api.MachineTypesScopedListWarning(); | 2154 var o = new api.MachineTypesScopedListWarning(); |
| 2155 buildCounterMachineTypesScopedListWarning++; | 2155 buildCounterMachineTypesScopedListWarning++; |
| 2156 if (buildCounterMachineTypesScopedListWarning < 3) { | 2156 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 2157 o.code = "foo"; | 2157 o.code = "foo"; |
| 2158 o.data = buildUnnamed911(); | 2158 o.data = buildUnnamed892(); |
| 2159 o.message = "foo"; | 2159 o.message = "foo"; |
| 2160 } | 2160 } |
| 2161 buildCounterMachineTypesScopedListWarning--; | 2161 buildCounterMachineTypesScopedListWarning--; |
| 2162 return o; | 2162 return o; |
| 2163 } | 2163 } |
| 2164 | 2164 |
| 2165 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { | 2165 checkMachineTypesScopedListWarning(api.MachineTypesScopedListWarning o) { |
| 2166 buildCounterMachineTypesScopedListWarning++; | 2166 buildCounterMachineTypesScopedListWarning++; |
| 2167 if (buildCounterMachineTypesScopedListWarning < 3) { | 2167 if (buildCounterMachineTypesScopedListWarning < 3) { |
| 2168 unittest.expect(o.code, unittest.equals('foo')); | 2168 unittest.expect(o.code, unittest.equals('foo')); |
| 2169 checkUnnamed911(o.data); | 2169 checkUnnamed892(o.data); |
| 2170 unittest.expect(o.message, unittest.equals('foo')); | 2170 unittest.expect(o.message, unittest.equals('foo')); |
| 2171 } | 2171 } |
| 2172 buildCounterMachineTypesScopedListWarning--; | 2172 buildCounterMachineTypesScopedListWarning--; |
| 2173 } | 2173 } |
| 2174 | 2174 |
| 2175 core.int buildCounterMachineTypesScopedList = 0; | 2175 core.int buildCounterMachineTypesScopedList = 0; |
| 2176 buildMachineTypesScopedList() { | 2176 buildMachineTypesScopedList() { |
| 2177 var o = new api.MachineTypesScopedList(); | 2177 var o = new api.MachineTypesScopedList(); |
| 2178 buildCounterMachineTypesScopedList++; | 2178 buildCounterMachineTypesScopedList++; |
| 2179 if (buildCounterMachineTypesScopedList < 3) { | 2179 if (buildCounterMachineTypesScopedList < 3) { |
| 2180 o.machineTypes = buildUnnamed910(); | 2180 o.machineTypes = buildUnnamed891(); |
| 2181 o.warning = buildMachineTypesScopedListWarning(); | 2181 o.warning = buildMachineTypesScopedListWarning(); |
| 2182 } | 2182 } |
| 2183 buildCounterMachineTypesScopedList--; | 2183 buildCounterMachineTypesScopedList--; |
| 2184 return o; | 2184 return o; |
| 2185 } | 2185 } |
| 2186 | 2186 |
| 2187 checkMachineTypesScopedList(api.MachineTypesScopedList o) { | 2187 checkMachineTypesScopedList(api.MachineTypesScopedList o) { |
| 2188 buildCounterMachineTypesScopedList++; | 2188 buildCounterMachineTypesScopedList++; |
| 2189 if (buildCounterMachineTypesScopedList < 3) { | 2189 if (buildCounterMachineTypesScopedList < 3) { |
| 2190 checkUnnamed910(o.machineTypes); | 2190 checkUnnamed891(o.machineTypes); |
| 2191 checkMachineTypesScopedListWarning(o.warning); | 2191 checkMachineTypesScopedListWarning(o.warning); |
| 2192 } | 2192 } |
| 2193 buildCounterMachineTypesScopedList--; | 2193 buildCounterMachineTypesScopedList--; |
| 2194 } | 2194 } |
| 2195 | 2195 |
| 2196 core.int buildCounterMetadataItems = 0; | 2196 core.int buildCounterMetadataItems = 0; |
| 2197 buildMetadataItems() { | 2197 buildMetadataItems() { |
| 2198 var o = new api.MetadataItems(); | 2198 var o = new api.MetadataItems(); |
| 2199 buildCounterMetadataItems++; | 2199 buildCounterMetadataItems++; |
| 2200 if (buildCounterMetadataItems < 3) { | 2200 if (buildCounterMetadataItems < 3) { |
| 2201 o.key = "foo"; | 2201 o.key = "foo"; |
| 2202 o.value = "foo"; | 2202 o.value = "foo"; |
| 2203 } | 2203 } |
| 2204 buildCounterMetadataItems--; | 2204 buildCounterMetadataItems--; |
| 2205 return o; | 2205 return o; |
| 2206 } | 2206 } |
| 2207 | 2207 |
| 2208 checkMetadataItems(api.MetadataItems o) { | 2208 checkMetadataItems(api.MetadataItems o) { |
| 2209 buildCounterMetadataItems++; | 2209 buildCounterMetadataItems++; |
| 2210 if (buildCounterMetadataItems < 3) { | 2210 if (buildCounterMetadataItems < 3) { |
| 2211 unittest.expect(o.key, unittest.equals('foo')); | 2211 unittest.expect(o.key, unittest.equals('foo')); |
| 2212 unittest.expect(o.value, unittest.equals('foo')); | 2212 unittest.expect(o.value, unittest.equals('foo')); |
| 2213 } | 2213 } |
| 2214 buildCounterMetadataItems--; | 2214 buildCounterMetadataItems--; |
| 2215 } | 2215 } |
| 2216 | 2216 |
| 2217 buildUnnamed912() { | 2217 buildUnnamed893() { |
| 2218 var o = new core.List<api.MetadataItems>(); | 2218 var o = new core.List<api.MetadataItems>(); |
| 2219 o.add(buildMetadataItems()); | 2219 o.add(buildMetadataItems()); |
| 2220 o.add(buildMetadataItems()); | 2220 o.add(buildMetadataItems()); |
| 2221 return o; | 2221 return o; |
| 2222 } | 2222 } |
| 2223 | 2223 |
| 2224 checkUnnamed912(core.List<api.MetadataItems> o) { | 2224 checkUnnamed893(core.List<api.MetadataItems> o) { |
| 2225 unittest.expect(o, unittest.hasLength(2)); | 2225 unittest.expect(o, unittest.hasLength(2)); |
| 2226 checkMetadataItems(o[0]); | 2226 checkMetadataItems(o[0]); |
| 2227 checkMetadataItems(o[1]); | 2227 checkMetadataItems(o[1]); |
| 2228 } | 2228 } |
| 2229 | 2229 |
| 2230 core.int buildCounterMetadata = 0; | 2230 core.int buildCounterMetadata = 0; |
| 2231 buildMetadata() { | 2231 buildMetadata() { |
| 2232 var o = new api.Metadata(); | 2232 var o = new api.Metadata(); |
| 2233 buildCounterMetadata++; | 2233 buildCounterMetadata++; |
| 2234 if (buildCounterMetadata < 3) { | 2234 if (buildCounterMetadata < 3) { |
| 2235 o.fingerprint = "foo"; | 2235 o.fingerprint = "foo"; |
| 2236 o.items = buildUnnamed912(); | 2236 o.items = buildUnnamed893(); |
| 2237 o.kind = "foo"; | 2237 o.kind = "foo"; |
| 2238 } | 2238 } |
| 2239 buildCounterMetadata--; | 2239 buildCounterMetadata--; |
| 2240 return o; | 2240 return o; |
| 2241 } | 2241 } |
| 2242 | 2242 |
| 2243 checkMetadata(api.Metadata o) { | 2243 checkMetadata(api.Metadata o) { |
| 2244 buildCounterMetadata++; | 2244 buildCounterMetadata++; |
| 2245 if (buildCounterMetadata < 3) { | 2245 if (buildCounterMetadata < 3) { |
| 2246 unittest.expect(o.fingerprint, unittest.equals('foo')); | 2246 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 2247 checkUnnamed912(o.items); | 2247 checkUnnamed893(o.items); |
| 2248 unittest.expect(o.kind, unittest.equals('foo')); | 2248 unittest.expect(o.kind, unittest.equals('foo')); |
| 2249 } | 2249 } |
| 2250 buildCounterMetadata--; | 2250 buildCounterMetadata--; |
| 2251 } | 2251 } |
| 2252 | 2252 |
| 2253 core.int buildCounterNetwork = 0; | 2253 core.int buildCounterNetwork = 0; |
| 2254 buildNetwork() { | 2254 buildNetwork() { |
| 2255 var o = new api.Network(); | 2255 var o = new api.Network(); |
| 2256 buildCounterNetwork++; | 2256 buildCounterNetwork++; |
| 2257 if (buildCounterNetwork < 3) { | 2257 if (buildCounterNetwork < 3) { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 2276 unittest.expect(o.description, unittest.equals('foo')); | 2276 unittest.expect(o.description, unittest.equals('foo')); |
| 2277 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); | 2277 unittest.expect(o.gatewayIPv4, unittest.equals('foo')); |
| 2278 unittest.expect(o.id, unittest.equals('foo')); | 2278 unittest.expect(o.id, unittest.equals('foo')); |
| 2279 unittest.expect(o.kind, unittest.equals('foo')); | 2279 unittest.expect(o.kind, unittest.equals('foo')); |
| 2280 unittest.expect(o.name, unittest.equals('foo')); | 2280 unittest.expect(o.name, unittest.equals('foo')); |
| 2281 unittest.expect(o.selfLink, unittest.equals('foo')); | 2281 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2282 } | 2282 } |
| 2283 buildCounterNetwork--; | 2283 buildCounterNetwork--; |
| 2284 } | 2284 } |
| 2285 | 2285 |
| 2286 buildUnnamed913() { | 2286 buildUnnamed894() { |
| 2287 var o = new core.List<api.AccessConfig>(); | 2287 var o = new core.List<api.AccessConfig>(); |
| 2288 o.add(buildAccessConfig()); | 2288 o.add(buildAccessConfig()); |
| 2289 o.add(buildAccessConfig()); | 2289 o.add(buildAccessConfig()); |
| 2290 return o; | 2290 return o; |
| 2291 } | 2291 } |
| 2292 | 2292 |
| 2293 checkUnnamed913(core.List<api.AccessConfig> o) { | 2293 checkUnnamed894(core.List<api.AccessConfig> o) { |
| 2294 unittest.expect(o, unittest.hasLength(2)); | 2294 unittest.expect(o, unittest.hasLength(2)); |
| 2295 checkAccessConfig(o[0]); | 2295 checkAccessConfig(o[0]); |
| 2296 checkAccessConfig(o[1]); | 2296 checkAccessConfig(o[1]); |
| 2297 } | 2297 } |
| 2298 | 2298 |
| 2299 core.int buildCounterNetworkInterface = 0; | 2299 core.int buildCounterNetworkInterface = 0; |
| 2300 buildNetworkInterface() { | 2300 buildNetworkInterface() { |
| 2301 var o = new api.NetworkInterface(); | 2301 var o = new api.NetworkInterface(); |
| 2302 buildCounterNetworkInterface++; | 2302 buildCounterNetworkInterface++; |
| 2303 if (buildCounterNetworkInterface < 3) { | 2303 if (buildCounterNetworkInterface < 3) { |
| 2304 o.accessConfigs = buildUnnamed913(); | 2304 o.accessConfigs = buildUnnamed894(); |
| 2305 o.name = "foo"; | 2305 o.name = "foo"; |
| 2306 o.network = "foo"; | 2306 o.network = "foo"; |
| 2307 o.networkIP = "foo"; | 2307 o.networkIP = "foo"; |
| 2308 } | 2308 } |
| 2309 buildCounterNetworkInterface--; | 2309 buildCounterNetworkInterface--; |
| 2310 return o; | 2310 return o; |
| 2311 } | 2311 } |
| 2312 | 2312 |
| 2313 checkNetworkInterface(api.NetworkInterface o) { | 2313 checkNetworkInterface(api.NetworkInterface o) { |
| 2314 buildCounterNetworkInterface++; | 2314 buildCounterNetworkInterface++; |
| 2315 if (buildCounterNetworkInterface < 3) { | 2315 if (buildCounterNetworkInterface < 3) { |
| 2316 checkUnnamed913(o.accessConfigs); | 2316 checkUnnamed894(o.accessConfigs); |
| 2317 unittest.expect(o.name, unittest.equals('foo')); | 2317 unittest.expect(o.name, unittest.equals('foo')); |
| 2318 unittest.expect(o.network, unittest.equals('foo')); | 2318 unittest.expect(o.network, unittest.equals('foo')); |
| 2319 unittest.expect(o.networkIP, unittest.equals('foo')); | 2319 unittest.expect(o.networkIP, unittest.equals('foo')); |
| 2320 } | 2320 } |
| 2321 buildCounterNetworkInterface--; | 2321 buildCounterNetworkInterface--; |
| 2322 } | 2322 } |
| 2323 | 2323 |
| 2324 buildUnnamed914() { | 2324 buildUnnamed895() { |
| 2325 var o = new core.List<api.Network>(); | 2325 var o = new core.List<api.Network>(); |
| 2326 o.add(buildNetwork()); | 2326 o.add(buildNetwork()); |
| 2327 o.add(buildNetwork()); | 2327 o.add(buildNetwork()); |
| 2328 return o; | 2328 return o; |
| 2329 } | 2329 } |
| 2330 | 2330 |
| 2331 checkUnnamed914(core.List<api.Network> o) { | 2331 checkUnnamed895(core.List<api.Network> o) { |
| 2332 unittest.expect(o, unittest.hasLength(2)); | 2332 unittest.expect(o, unittest.hasLength(2)); |
| 2333 checkNetwork(o[0]); | 2333 checkNetwork(o[0]); |
| 2334 checkNetwork(o[1]); | 2334 checkNetwork(o[1]); |
| 2335 } | 2335 } |
| 2336 | 2336 |
| 2337 core.int buildCounterNetworkList = 0; | 2337 core.int buildCounterNetworkList = 0; |
| 2338 buildNetworkList() { | 2338 buildNetworkList() { |
| 2339 var o = new api.NetworkList(); | 2339 var o = new api.NetworkList(); |
| 2340 buildCounterNetworkList++; | 2340 buildCounterNetworkList++; |
| 2341 if (buildCounterNetworkList < 3) { | 2341 if (buildCounterNetworkList < 3) { |
| 2342 o.id = "foo"; | 2342 o.id = "foo"; |
| 2343 o.items = buildUnnamed914(); | 2343 o.items = buildUnnamed895(); |
| 2344 o.kind = "foo"; | 2344 o.kind = "foo"; |
| 2345 o.nextPageToken = "foo"; | 2345 o.nextPageToken = "foo"; |
| 2346 o.selfLink = "foo"; | 2346 o.selfLink = "foo"; |
| 2347 } | 2347 } |
| 2348 buildCounterNetworkList--; | 2348 buildCounterNetworkList--; |
| 2349 return o; | 2349 return o; |
| 2350 } | 2350 } |
| 2351 | 2351 |
| 2352 checkNetworkList(api.NetworkList o) { | 2352 checkNetworkList(api.NetworkList o) { |
| 2353 buildCounterNetworkList++; | 2353 buildCounterNetworkList++; |
| 2354 if (buildCounterNetworkList < 3) { | 2354 if (buildCounterNetworkList < 3) { |
| 2355 unittest.expect(o.id, unittest.equals('foo')); | 2355 unittest.expect(o.id, unittest.equals('foo')); |
| 2356 checkUnnamed914(o.items); | 2356 checkUnnamed895(o.items); |
| 2357 unittest.expect(o.kind, unittest.equals('foo')); | 2357 unittest.expect(o.kind, unittest.equals('foo')); |
| 2358 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2358 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2359 unittest.expect(o.selfLink, unittest.equals('foo')); | 2359 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2360 } | 2360 } |
| 2361 buildCounterNetworkList--; | 2361 buildCounterNetworkList--; |
| 2362 } | 2362 } |
| 2363 | 2363 |
| 2364 core.int buildCounterOperationErrorErrors = 0; | 2364 core.int buildCounterOperationErrorErrors = 0; |
| 2365 buildOperationErrorErrors() { | 2365 buildOperationErrorErrors() { |
| 2366 var o = new api.OperationErrorErrors(); | 2366 var o = new api.OperationErrorErrors(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2377 checkOperationErrorErrors(api.OperationErrorErrors o) { | 2377 checkOperationErrorErrors(api.OperationErrorErrors o) { |
| 2378 buildCounterOperationErrorErrors++; | 2378 buildCounterOperationErrorErrors++; |
| 2379 if (buildCounterOperationErrorErrors < 3) { | 2379 if (buildCounterOperationErrorErrors < 3) { |
| 2380 unittest.expect(o.code, unittest.equals('foo')); | 2380 unittest.expect(o.code, unittest.equals('foo')); |
| 2381 unittest.expect(o.location, unittest.equals('foo')); | 2381 unittest.expect(o.location, unittest.equals('foo')); |
| 2382 unittest.expect(o.message, unittest.equals('foo')); | 2382 unittest.expect(o.message, unittest.equals('foo')); |
| 2383 } | 2383 } |
| 2384 buildCounterOperationErrorErrors--; | 2384 buildCounterOperationErrorErrors--; |
| 2385 } | 2385 } |
| 2386 | 2386 |
| 2387 buildUnnamed915() { | 2387 buildUnnamed896() { |
| 2388 var o = new core.List<api.OperationErrorErrors>(); | 2388 var o = new core.List<api.OperationErrorErrors>(); |
| 2389 o.add(buildOperationErrorErrors()); | 2389 o.add(buildOperationErrorErrors()); |
| 2390 o.add(buildOperationErrorErrors()); | 2390 o.add(buildOperationErrorErrors()); |
| 2391 return o; | 2391 return o; |
| 2392 } | 2392 } |
| 2393 | 2393 |
| 2394 checkUnnamed915(core.List<api.OperationErrorErrors> o) { | 2394 checkUnnamed896(core.List<api.OperationErrorErrors> o) { |
| 2395 unittest.expect(o, unittest.hasLength(2)); | 2395 unittest.expect(o, unittest.hasLength(2)); |
| 2396 checkOperationErrorErrors(o[0]); | 2396 checkOperationErrorErrors(o[0]); |
| 2397 checkOperationErrorErrors(o[1]); | 2397 checkOperationErrorErrors(o[1]); |
| 2398 } | 2398 } |
| 2399 | 2399 |
| 2400 core.int buildCounterOperationError = 0; | 2400 core.int buildCounterOperationError = 0; |
| 2401 buildOperationError() { | 2401 buildOperationError() { |
| 2402 var o = new api.OperationError(); | 2402 var o = new api.OperationError(); |
| 2403 buildCounterOperationError++; | 2403 buildCounterOperationError++; |
| 2404 if (buildCounterOperationError < 3) { | 2404 if (buildCounterOperationError < 3) { |
| 2405 o.errors = buildUnnamed915(); | 2405 o.errors = buildUnnamed896(); |
| 2406 } | 2406 } |
| 2407 buildCounterOperationError--; | 2407 buildCounterOperationError--; |
| 2408 return o; | 2408 return o; |
| 2409 } | 2409 } |
| 2410 | 2410 |
| 2411 checkOperationError(api.OperationError o) { | 2411 checkOperationError(api.OperationError o) { |
| 2412 buildCounterOperationError++; | 2412 buildCounterOperationError++; |
| 2413 if (buildCounterOperationError < 3) { | 2413 if (buildCounterOperationError < 3) { |
| 2414 checkUnnamed915(o.errors); | 2414 checkUnnamed896(o.errors); |
| 2415 } | 2415 } |
| 2416 buildCounterOperationError--; | 2416 buildCounterOperationError--; |
| 2417 } | 2417 } |
| 2418 | 2418 |
| 2419 core.int buildCounterOperationWarningsData = 0; | 2419 core.int buildCounterOperationWarningsData = 0; |
| 2420 buildOperationWarningsData() { | 2420 buildOperationWarningsData() { |
| 2421 var o = new api.OperationWarningsData(); | 2421 var o = new api.OperationWarningsData(); |
| 2422 buildCounterOperationWarningsData++; | 2422 buildCounterOperationWarningsData++; |
| 2423 if (buildCounterOperationWarningsData < 3) { | 2423 if (buildCounterOperationWarningsData < 3) { |
| 2424 o.key = "foo"; | 2424 o.key = "foo"; |
| 2425 o.value = "foo"; | 2425 o.value = "foo"; |
| 2426 } | 2426 } |
| 2427 buildCounterOperationWarningsData--; | 2427 buildCounterOperationWarningsData--; |
| 2428 return o; | 2428 return o; |
| 2429 } | 2429 } |
| 2430 | 2430 |
| 2431 checkOperationWarningsData(api.OperationWarningsData o) { | 2431 checkOperationWarningsData(api.OperationWarningsData o) { |
| 2432 buildCounterOperationWarningsData++; | 2432 buildCounterOperationWarningsData++; |
| 2433 if (buildCounterOperationWarningsData < 3) { | 2433 if (buildCounterOperationWarningsData < 3) { |
| 2434 unittest.expect(o.key, unittest.equals('foo')); | 2434 unittest.expect(o.key, unittest.equals('foo')); |
| 2435 unittest.expect(o.value, unittest.equals('foo')); | 2435 unittest.expect(o.value, unittest.equals('foo')); |
| 2436 } | 2436 } |
| 2437 buildCounterOperationWarningsData--; | 2437 buildCounterOperationWarningsData--; |
| 2438 } | 2438 } |
| 2439 | 2439 |
| 2440 buildUnnamed916() { | 2440 buildUnnamed897() { |
| 2441 var o = new core.List<api.OperationWarningsData>(); | 2441 var o = new core.List<api.OperationWarningsData>(); |
| 2442 o.add(buildOperationWarningsData()); | 2442 o.add(buildOperationWarningsData()); |
| 2443 o.add(buildOperationWarningsData()); | 2443 o.add(buildOperationWarningsData()); |
| 2444 return o; | 2444 return o; |
| 2445 } | 2445 } |
| 2446 | 2446 |
| 2447 checkUnnamed916(core.List<api.OperationWarningsData> o) { | 2447 checkUnnamed897(core.List<api.OperationWarningsData> o) { |
| 2448 unittest.expect(o, unittest.hasLength(2)); | 2448 unittest.expect(o, unittest.hasLength(2)); |
| 2449 checkOperationWarningsData(o[0]); | 2449 checkOperationWarningsData(o[0]); |
| 2450 checkOperationWarningsData(o[1]); | 2450 checkOperationWarningsData(o[1]); |
| 2451 } | 2451 } |
| 2452 | 2452 |
| 2453 core.int buildCounterOperationWarnings = 0; | 2453 core.int buildCounterOperationWarnings = 0; |
| 2454 buildOperationWarnings() { | 2454 buildOperationWarnings() { |
| 2455 var o = new api.OperationWarnings(); | 2455 var o = new api.OperationWarnings(); |
| 2456 buildCounterOperationWarnings++; | 2456 buildCounterOperationWarnings++; |
| 2457 if (buildCounterOperationWarnings < 3) { | 2457 if (buildCounterOperationWarnings < 3) { |
| 2458 o.code = "foo"; | 2458 o.code = "foo"; |
| 2459 o.data = buildUnnamed916(); | 2459 o.data = buildUnnamed897(); |
| 2460 o.message = "foo"; | 2460 o.message = "foo"; |
| 2461 } | 2461 } |
| 2462 buildCounterOperationWarnings--; | 2462 buildCounterOperationWarnings--; |
| 2463 return o; | 2463 return o; |
| 2464 } | 2464 } |
| 2465 | 2465 |
| 2466 checkOperationWarnings(api.OperationWarnings o) { | 2466 checkOperationWarnings(api.OperationWarnings o) { |
| 2467 buildCounterOperationWarnings++; | 2467 buildCounterOperationWarnings++; |
| 2468 if (buildCounterOperationWarnings < 3) { | 2468 if (buildCounterOperationWarnings < 3) { |
| 2469 unittest.expect(o.code, unittest.equals('foo')); | 2469 unittest.expect(o.code, unittest.equals('foo')); |
| 2470 checkUnnamed916(o.data); | 2470 checkUnnamed897(o.data); |
| 2471 unittest.expect(o.message, unittest.equals('foo')); | 2471 unittest.expect(o.message, unittest.equals('foo')); |
| 2472 } | 2472 } |
| 2473 buildCounterOperationWarnings--; | 2473 buildCounterOperationWarnings--; |
| 2474 } | 2474 } |
| 2475 | 2475 |
| 2476 buildUnnamed917() { | 2476 buildUnnamed898() { |
| 2477 var o = new core.List<api.OperationWarnings>(); | 2477 var o = new core.List<api.OperationWarnings>(); |
| 2478 o.add(buildOperationWarnings()); | 2478 o.add(buildOperationWarnings()); |
| 2479 o.add(buildOperationWarnings()); | 2479 o.add(buildOperationWarnings()); |
| 2480 return o; | 2480 return o; |
| 2481 } | 2481 } |
| 2482 | 2482 |
| 2483 checkUnnamed917(core.List<api.OperationWarnings> o) { | 2483 checkUnnamed898(core.List<api.OperationWarnings> o) { |
| 2484 unittest.expect(o, unittest.hasLength(2)); | 2484 unittest.expect(o, unittest.hasLength(2)); |
| 2485 checkOperationWarnings(o[0]); | 2485 checkOperationWarnings(o[0]); |
| 2486 checkOperationWarnings(o[1]); | 2486 checkOperationWarnings(o[1]); |
| 2487 } | 2487 } |
| 2488 | 2488 |
| 2489 core.int buildCounterOperation = 0; | 2489 core.int buildCounterOperation = 0; |
| 2490 buildOperation() { | 2490 buildOperation() { |
| 2491 var o = new api.Operation(); | 2491 var o = new api.Operation(); |
| 2492 buildCounterOperation++; | 2492 buildCounterOperation++; |
| 2493 if (buildCounterOperation < 3) { | 2493 if (buildCounterOperation < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2504 o.operationType = "foo"; | 2504 o.operationType = "foo"; |
| 2505 o.progress = 42; | 2505 o.progress = 42; |
| 2506 o.region = "foo"; | 2506 o.region = "foo"; |
| 2507 o.selfLink = "foo"; | 2507 o.selfLink = "foo"; |
| 2508 o.startTime = "foo"; | 2508 o.startTime = "foo"; |
| 2509 o.status = "foo"; | 2509 o.status = "foo"; |
| 2510 o.statusMessage = "foo"; | 2510 o.statusMessage = "foo"; |
| 2511 o.targetId = "foo"; | 2511 o.targetId = "foo"; |
| 2512 o.targetLink = "foo"; | 2512 o.targetLink = "foo"; |
| 2513 o.user = "foo"; | 2513 o.user = "foo"; |
| 2514 o.warnings = buildUnnamed917(); | 2514 o.warnings = buildUnnamed898(); |
| 2515 o.zone = "foo"; | 2515 o.zone = "foo"; |
| 2516 } | 2516 } |
| 2517 buildCounterOperation--; | 2517 buildCounterOperation--; |
| 2518 return o; | 2518 return o; |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 checkOperation(api.Operation o) { | 2521 checkOperation(api.Operation o) { |
| 2522 buildCounterOperation++; | 2522 buildCounterOperation++; |
| 2523 if (buildCounterOperation < 3) { | 2523 if (buildCounterOperation < 3) { |
| 2524 unittest.expect(o.clientOperationId, unittest.equals('foo')); | 2524 unittest.expect(o.clientOperationId, unittest.equals('foo')); |
| 2525 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2525 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2526 unittest.expect(o.endTime, unittest.equals('foo')); | 2526 unittest.expect(o.endTime, unittest.equals('foo')); |
| 2527 checkOperationError(o.error); | 2527 checkOperationError(o.error); |
| 2528 unittest.expect(o.httpErrorMessage, unittest.equals('foo')); | 2528 unittest.expect(o.httpErrorMessage, unittest.equals('foo')); |
| 2529 unittest.expect(o.httpErrorStatusCode, unittest.equals(42)); | 2529 unittest.expect(o.httpErrorStatusCode, unittest.equals(42)); |
| 2530 unittest.expect(o.id, unittest.equals('foo')); | 2530 unittest.expect(o.id, unittest.equals('foo')); |
| 2531 unittest.expect(o.insertTime, unittest.equals('foo')); | 2531 unittest.expect(o.insertTime, unittest.equals('foo')); |
| 2532 unittest.expect(o.kind, unittest.equals('foo')); | 2532 unittest.expect(o.kind, unittest.equals('foo')); |
| 2533 unittest.expect(o.name, unittest.equals('foo')); | 2533 unittest.expect(o.name, unittest.equals('foo')); |
| 2534 unittest.expect(o.operationType, unittest.equals('foo')); | 2534 unittest.expect(o.operationType, unittest.equals('foo')); |
| 2535 unittest.expect(o.progress, unittest.equals(42)); | 2535 unittest.expect(o.progress, unittest.equals(42)); |
| 2536 unittest.expect(o.region, unittest.equals('foo')); | 2536 unittest.expect(o.region, unittest.equals('foo')); |
| 2537 unittest.expect(o.selfLink, unittest.equals('foo')); | 2537 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2538 unittest.expect(o.startTime, unittest.equals('foo')); | 2538 unittest.expect(o.startTime, unittest.equals('foo')); |
| 2539 unittest.expect(o.status, unittest.equals('foo')); | 2539 unittest.expect(o.status, unittest.equals('foo')); |
| 2540 unittest.expect(o.statusMessage, unittest.equals('foo')); | 2540 unittest.expect(o.statusMessage, unittest.equals('foo')); |
| 2541 unittest.expect(o.targetId, unittest.equals('foo')); | 2541 unittest.expect(o.targetId, unittest.equals('foo')); |
| 2542 unittest.expect(o.targetLink, unittest.equals('foo')); | 2542 unittest.expect(o.targetLink, unittest.equals('foo')); |
| 2543 unittest.expect(o.user, unittest.equals('foo')); | 2543 unittest.expect(o.user, unittest.equals('foo')); |
| 2544 checkUnnamed917(o.warnings); | 2544 checkUnnamed898(o.warnings); |
| 2545 unittest.expect(o.zone, unittest.equals('foo')); | 2545 unittest.expect(o.zone, unittest.equals('foo')); |
| 2546 } | 2546 } |
| 2547 buildCounterOperation--; | 2547 buildCounterOperation--; |
| 2548 } | 2548 } |
| 2549 | 2549 |
| 2550 buildUnnamed918() { | 2550 buildUnnamed899() { |
| 2551 var o = new core.Map<core.String, api.OperationsScopedList>(); | 2551 var o = new core.Map<core.String, api.OperationsScopedList>(); |
| 2552 o["x"] = buildOperationsScopedList(); | 2552 o["x"] = buildOperationsScopedList(); |
| 2553 o["y"] = buildOperationsScopedList(); | 2553 o["y"] = buildOperationsScopedList(); |
| 2554 return o; | 2554 return o; |
| 2555 } | 2555 } |
| 2556 | 2556 |
| 2557 checkUnnamed918(core.Map<core.String, api.OperationsScopedList> o) { | 2557 checkUnnamed899(core.Map<core.String, api.OperationsScopedList> o) { |
| 2558 unittest.expect(o, unittest.hasLength(2)); | 2558 unittest.expect(o, unittest.hasLength(2)); |
| 2559 checkOperationsScopedList(o["x"]); | 2559 checkOperationsScopedList(o["x"]); |
| 2560 checkOperationsScopedList(o["y"]); | 2560 checkOperationsScopedList(o["y"]); |
| 2561 } | 2561 } |
| 2562 | 2562 |
| 2563 core.int buildCounterOperationAggregatedList = 0; | 2563 core.int buildCounterOperationAggregatedList = 0; |
| 2564 buildOperationAggregatedList() { | 2564 buildOperationAggregatedList() { |
| 2565 var o = new api.OperationAggregatedList(); | 2565 var o = new api.OperationAggregatedList(); |
| 2566 buildCounterOperationAggregatedList++; | 2566 buildCounterOperationAggregatedList++; |
| 2567 if (buildCounterOperationAggregatedList < 3) { | 2567 if (buildCounterOperationAggregatedList < 3) { |
| 2568 o.id = "foo"; | 2568 o.id = "foo"; |
| 2569 o.items = buildUnnamed918(); | 2569 o.items = buildUnnamed899(); |
| 2570 o.kind = "foo"; | 2570 o.kind = "foo"; |
| 2571 o.nextPageToken = "foo"; | 2571 o.nextPageToken = "foo"; |
| 2572 o.selfLink = "foo"; | 2572 o.selfLink = "foo"; |
| 2573 } | 2573 } |
| 2574 buildCounterOperationAggregatedList--; | 2574 buildCounterOperationAggregatedList--; |
| 2575 return o; | 2575 return o; |
| 2576 } | 2576 } |
| 2577 | 2577 |
| 2578 checkOperationAggregatedList(api.OperationAggregatedList o) { | 2578 checkOperationAggregatedList(api.OperationAggregatedList o) { |
| 2579 buildCounterOperationAggregatedList++; | 2579 buildCounterOperationAggregatedList++; |
| 2580 if (buildCounterOperationAggregatedList < 3) { | 2580 if (buildCounterOperationAggregatedList < 3) { |
| 2581 unittest.expect(o.id, unittest.equals('foo')); | 2581 unittest.expect(o.id, unittest.equals('foo')); |
| 2582 checkUnnamed918(o.items); | 2582 checkUnnamed899(o.items); |
| 2583 unittest.expect(o.kind, unittest.equals('foo')); | 2583 unittest.expect(o.kind, unittest.equals('foo')); |
| 2584 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2584 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2585 unittest.expect(o.selfLink, unittest.equals('foo')); | 2585 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2586 } | 2586 } |
| 2587 buildCounterOperationAggregatedList--; | 2587 buildCounterOperationAggregatedList--; |
| 2588 } | 2588 } |
| 2589 | 2589 |
| 2590 buildUnnamed919() { | 2590 buildUnnamed900() { |
| 2591 var o = new core.List<api.Operation>(); | 2591 var o = new core.List<api.Operation>(); |
| 2592 o.add(buildOperation()); | 2592 o.add(buildOperation()); |
| 2593 o.add(buildOperation()); | 2593 o.add(buildOperation()); |
| 2594 return o; | 2594 return o; |
| 2595 } | 2595 } |
| 2596 | 2596 |
| 2597 checkUnnamed919(core.List<api.Operation> o) { | 2597 checkUnnamed900(core.List<api.Operation> o) { |
| 2598 unittest.expect(o, unittest.hasLength(2)); | 2598 unittest.expect(o, unittest.hasLength(2)); |
| 2599 checkOperation(o[0]); | 2599 checkOperation(o[0]); |
| 2600 checkOperation(o[1]); | 2600 checkOperation(o[1]); |
| 2601 } | 2601 } |
| 2602 | 2602 |
| 2603 core.int buildCounterOperationList = 0; | 2603 core.int buildCounterOperationList = 0; |
| 2604 buildOperationList() { | 2604 buildOperationList() { |
| 2605 var o = new api.OperationList(); | 2605 var o = new api.OperationList(); |
| 2606 buildCounterOperationList++; | 2606 buildCounterOperationList++; |
| 2607 if (buildCounterOperationList < 3) { | 2607 if (buildCounterOperationList < 3) { |
| 2608 o.id = "foo"; | 2608 o.id = "foo"; |
| 2609 o.items = buildUnnamed919(); | 2609 o.items = buildUnnamed900(); |
| 2610 o.kind = "foo"; | 2610 o.kind = "foo"; |
| 2611 o.nextPageToken = "foo"; | 2611 o.nextPageToken = "foo"; |
| 2612 o.selfLink = "foo"; | 2612 o.selfLink = "foo"; |
| 2613 } | 2613 } |
| 2614 buildCounterOperationList--; | 2614 buildCounterOperationList--; |
| 2615 return o; | 2615 return o; |
| 2616 } | 2616 } |
| 2617 | 2617 |
| 2618 checkOperationList(api.OperationList o) { | 2618 checkOperationList(api.OperationList o) { |
| 2619 buildCounterOperationList++; | 2619 buildCounterOperationList++; |
| 2620 if (buildCounterOperationList < 3) { | 2620 if (buildCounterOperationList < 3) { |
| 2621 unittest.expect(o.id, unittest.equals('foo')); | 2621 unittest.expect(o.id, unittest.equals('foo')); |
| 2622 checkUnnamed919(o.items); | 2622 checkUnnamed900(o.items); |
| 2623 unittest.expect(o.kind, unittest.equals('foo')); | 2623 unittest.expect(o.kind, unittest.equals('foo')); |
| 2624 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2624 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2625 unittest.expect(o.selfLink, unittest.equals('foo')); | 2625 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2626 } | 2626 } |
| 2627 buildCounterOperationList--; | 2627 buildCounterOperationList--; |
| 2628 } | 2628 } |
| 2629 | 2629 |
| 2630 buildUnnamed920() { | 2630 buildUnnamed901() { |
| 2631 var o = new core.List<api.Operation>(); | 2631 var o = new core.List<api.Operation>(); |
| 2632 o.add(buildOperation()); | 2632 o.add(buildOperation()); |
| 2633 o.add(buildOperation()); | 2633 o.add(buildOperation()); |
| 2634 return o; | 2634 return o; |
| 2635 } | 2635 } |
| 2636 | 2636 |
| 2637 checkUnnamed920(core.List<api.Operation> o) { | 2637 checkUnnamed901(core.List<api.Operation> o) { |
| 2638 unittest.expect(o, unittest.hasLength(2)); | 2638 unittest.expect(o, unittest.hasLength(2)); |
| 2639 checkOperation(o[0]); | 2639 checkOperation(o[0]); |
| 2640 checkOperation(o[1]); | 2640 checkOperation(o[1]); |
| 2641 } | 2641 } |
| 2642 | 2642 |
| 2643 core.int buildCounterOperationsScopedListWarningData = 0; | 2643 core.int buildCounterOperationsScopedListWarningData = 0; |
| 2644 buildOperationsScopedListWarningData() { | 2644 buildOperationsScopedListWarningData() { |
| 2645 var o = new api.OperationsScopedListWarningData(); | 2645 var o = new api.OperationsScopedListWarningData(); |
| 2646 buildCounterOperationsScopedListWarningData++; | 2646 buildCounterOperationsScopedListWarningData++; |
| 2647 if (buildCounterOperationsScopedListWarningData < 3) { | 2647 if (buildCounterOperationsScopedListWarningData < 3) { |
| 2648 o.key = "foo"; | 2648 o.key = "foo"; |
| 2649 o.value = "foo"; | 2649 o.value = "foo"; |
| 2650 } | 2650 } |
| 2651 buildCounterOperationsScopedListWarningData--; | 2651 buildCounterOperationsScopedListWarningData--; |
| 2652 return o; | 2652 return o; |
| 2653 } | 2653 } |
| 2654 | 2654 |
| 2655 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { | 2655 checkOperationsScopedListWarningData(api.OperationsScopedListWarningData o) { |
| 2656 buildCounterOperationsScopedListWarningData++; | 2656 buildCounterOperationsScopedListWarningData++; |
| 2657 if (buildCounterOperationsScopedListWarningData < 3) { | 2657 if (buildCounterOperationsScopedListWarningData < 3) { |
| 2658 unittest.expect(o.key, unittest.equals('foo')); | 2658 unittest.expect(o.key, unittest.equals('foo')); |
| 2659 unittest.expect(o.value, unittest.equals('foo')); | 2659 unittest.expect(o.value, unittest.equals('foo')); |
| 2660 } | 2660 } |
| 2661 buildCounterOperationsScopedListWarningData--; | 2661 buildCounterOperationsScopedListWarningData--; |
| 2662 } | 2662 } |
| 2663 | 2663 |
| 2664 buildUnnamed921() { | 2664 buildUnnamed902() { |
| 2665 var o = new core.List<api.OperationsScopedListWarningData>(); | 2665 var o = new core.List<api.OperationsScopedListWarningData>(); |
| 2666 o.add(buildOperationsScopedListWarningData()); | 2666 o.add(buildOperationsScopedListWarningData()); |
| 2667 o.add(buildOperationsScopedListWarningData()); | 2667 o.add(buildOperationsScopedListWarningData()); |
| 2668 return o; | 2668 return o; |
| 2669 } | 2669 } |
| 2670 | 2670 |
| 2671 checkUnnamed921(core.List<api.OperationsScopedListWarningData> o) { | 2671 checkUnnamed902(core.List<api.OperationsScopedListWarningData> o) { |
| 2672 unittest.expect(o, unittest.hasLength(2)); | 2672 unittest.expect(o, unittest.hasLength(2)); |
| 2673 checkOperationsScopedListWarningData(o[0]); | 2673 checkOperationsScopedListWarningData(o[0]); |
| 2674 checkOperationsScopedListWarningData(o[1]); | 2674 checkOperationsScopedListWarningData(o[1]); |
| 2675 } | 2675 } |
| 2676 | 2676 |
| 2677 core.int buildCounterOperationsScopedListWarning = 0; | 2677 core.int buildCounterOperationsScopedListWarning = 0; |
| 2678 buildOperationsScopedListWarning() { | 2678 buildOperationsScopedListWarning() { |
| 2679 var o = new api.OperationsScopedListWarning(); | 2679 var o = new api.OperationsScopedListWarning(); |
| 2680 buildCounterOperationsScopedListWarning++; | 2680 buildCounterOperationsScopedListWarning++; |
| 2681 if (buildCounterOperationsScopedListWarning < 3) { | 2681 if (buildCounterOperationsScopedListWarning < 3) { |
| 2682 o.code = "foo"; | 2682 o.code = "foo"; |
| 2683 o.data = buildUnnamed921(); | 2683 o.data = buildUnnamed902(); |
| 2684 o.message = "foo"; | 2684 o.message = "foo"; |
| 2685 } | 2685 } |
| 2686 buildCounterOperationsScopedListWarning--; | 2686 buildCounterOperationsScopedListWarning--; |
| 2687 return o; | 2687 return o; |
| 2688 } | 2688 } |
| 2689 | 2689 |
| 2690 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { | 2690 checkOperationsScopedListWarning(api.OperationsScopedListWarning o) { |
| 2691 buildCounterOperationsScopedListWarning++; | 2691 buildCounterOperationsScopedListWarning++; |
| 2692 if (buildCounterOperationsScopedListWarning < 3) { | 2692 if (buildCounterOperationsScopedListWarning < 3) { |
| 2693 unittest.expect(o.code, unittest.equals('foo')); | 2693 unittest.expect(o.code, unittest.equals('foo')); |
| 2694 checkUnnamed921(o.data); | 2694 checkUnnamed902(o.data); |
| 2695 unittest.expect(o.message, unittest.equals('foo')); | 2695 unittest.expect(o.message, unittest.equals('foo')); |
| 2696 } | 2696 } |
| 2697 buildCounterOperationsScopedListWarning--; | 2697 buildCounterOperationsScopedListWarning--; |
| 2698 } | 2698 } |
| 2699 | 2699 |
| 2700 core.int buildCounterOperationsScopedList = 0; | 2700 core.int buildCounterOperationsScopedList = 0; |
| 2701 buildOperationsScopedList() { | 2701 buildOperationsScopedList() { |
| 2702 var o = new api.OperationsScopedList(); | 2702 var o = new api.OperationsScopedList(); |
| 2703 buildCounterOperationsScopedList++; | 2703 buildCounterOperationsScopedList++; |
| 2704 if (buildCounterOperationsScopedList < 3) { | 2704 if (buildCounterOperationsScopedList < 3) { |
| 2705 o.operations = buildUnnamed920(); | 2705 o.operations = buildUnnamed901(); |
| 2706 o.warning = buildOperationsScopedListWarning(); | 2706 o.warning = buildOperationsScopedListWarning(); |
| 2707 } | 2707 } |
| 2708 buildCounterOperationsScopedList--; | 2708 buildCounterOperationsScopedList--; |
| 2709 return o; | 2709 return o; |
| 2710 } | 2710 } |
| 2711 | 2711 |
| 2712 checkOperationsScopedList(api.OperationsScopedList o) { | 2712 checkOperationsScopedList(api.OperationsScopedList o) { |
| 2713 buildCounterOperationsScopedList++; | 2713 buildCounterOperationsScopedList++; |
| 2714 if (buildCounterOperationsScopedList < 3) { | 2714 if (buildCounterOperationsScopedList < 3) { |
| 2715 checkUnnamed920(o.operations); | 2715 checkUnnamed901(o.operations); |
| 2716 checkOperationsScopedListWarning(o.warning); | 2716 checkOperationsScopedListWarning(o.warning); |
| 2717 } | 2717 } |
| 2718 buildCounterOperationsScopedList--; | 2718 buildCounterOperationsScopedList--; |
| 2719 } | 2719 } |
| 2720 | 2720 |
| 2721 buildUnnamed922() { | 2721 buildUnnamed903() { |
| 2722 var o = new core.List<api.PathRule>(); | 2722 var o = new core.List<api.PathRule>(); |
| 2723 o.add(buildPathRule()); | 2723 o.add(buildPathRule()); |
| 2724 o.add(buildPathRule()); | 2724 o.add(buildPathRule()); |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkUnnamed922(core.List<api.PathRule> o) { | 2728 checkUnnamed903(core.List<api.PathRule> o) { |
| 2729 unittest.expect(o, unittest.hasLength(2)); | 2729 unittest.expect(o, unittest.hasLength(2)); |
| 2730 checkPathRule(o[0]); | 2730 checkPathRule(o[0]); |
| 2731 checkPathRule(o[1]); | 2731 checkPathRule(o[1]); |
| 2732 } | 2732 } |
| 2733 | 2733 |
| 2734 core.int buildCounterPathMatcher = 0; | 2734 core.int buildCounterPathMatcher = 0; |
| 2735 buildPathMatcher() { | 2735 buildPathMatcher() { |
| 2736 var o = new api.PathMatcher(); | 2736 var o = new api.PathMatcher(); |
| 2737 buildCounterPathMatcher++; | 2737 buildCounterPathMatcher++; |
| 2738 if (buildCounterPathMatcher < 3) { | 2738 if (buildCounterPathMatcher < 3) { |
| 2739 o.defaultService = "foo"; | 2739 o.defaultService = "foo"; |
| 2740 o.description = "foo"; | 2740 o.description = "foo"; |
| 2741 o.name = "foo"; | 2741 o.name = "foo"; |
| 2742 o.pathRules = buildUnnamed922(); | 2742 o.pathRules = buildUnnamed903(); |
| 2743 } | 2743 } |
| 2744 buildCounterPathMatcher--; | 2744 buildCounterPathMatcher--; |
| 2745 return o; | 2745 return o; |
| 2746 } | 2746 } |
| 2747 | 2747 |
| 2748 checkPathMatcher(api.PathMatcher o) { | 2748 checkPathMatcher(api.PathMatcher o) { |
| 2749 buildCounterPathMatcher++; | 2749 buildCounterPathMatcher++; |
| 2750 if (buildCounterPathMatcher < 3) { | 2750 if (buildCounterPathMatcher < 3) { |
| 2751 unittest.expect(o.defaultService, unittest.equals('foo')); | 2751 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 2752 unittest.expect(o.description, unittest.equals('foo')); | 2752 unittest.expect(o.description, unittest.equals('foo')); |
| 2753 unittest.expect(o.name, unittest.equals('foo')); | 2753 unittest.expect(o.name, unittest.equals('foo')); |
| 2754 checkUnnamed922(o.pathRules); | 2754 checkUnnamed903(o.pathRules); |
| 2755 } | 2755 } |
| 2756 buildCounterPathMatcher--; | 2756 buildCounterPathMatcher--; |
| 2757 } | 2757 } |
| 2758 | 2758 |
| 2759 buildUnnamed923() { | 2759 buildUnnamed904() { |
| 2760 var o = new core.List<core.String>(); | 2760 var o = new core.List<core.String>(); |
| 2761 o.add("foo"); | 2761 o.add("foo"); |
| 2762 o.add("foo"); | 2762 o.add("foo"); |
| 2763 return o; | 2763 return o; |
| 2764 } | 2764 } |
| 2765 | 2765 |
| 2766 checkUnnamed923(core.List<core.String> o) { | 2766 checkUnnamed904(core.List<core.String> o) { |
| 2767 unittest.expect(o, unittest.hasLength(2)); | 2767 unittest.expect(o, unittest.hasLength(2)); |
| 2768 unittest.expect(o[0], unittest.equals('foo')); | 2768 unittest.expect(o[0], unittest.equals('foo')); |
| 2769 unittest.expect(o[1], unittest.equals('foo')); | 2769 unittest.expect(o[1], unittest.equals('foo')); |
| 2770 } | 2770 } |
| 2771 | 2771 |
| 2772 core.int buildCounterPathRule = 0; | 2772 core.int buildCounterPathRule = 0; |
| 2773 buildPathRule() { | 2773 buildPathRule() { |
| 2774 var o = new api.PathRule(); | 2774 var o = new api.PathRule(); |
| 2775 buildCounterPathRule++; | 2775 buildCounterPathRule++; |
| 2776 if (buildCounterPathRule < 3) { | 2776 if (buildCounterPathRule < 3) { |
| 2777 o.paths = buildUnnamed923(); | 2777 o.paths = buildUnnamed904(); |
| 2778 o.service = "foo"; | 2778 o.service = "foo"; |
| 2779 } | 2779 } |
| 2780 buildCounterPathRule--; | 2780 buildCounterPathRule--; |
| 2781 return o; | 2781 return o; |
| 2782 } | 2782 } |
| 2783 | 2783 |
| 2784 checkPathRule(api.PathRule o) { | 2784 checkPathRule(api.PathRule o) { |
| 2785 buildCounterPathRule++; | 2785 buildCounterPathRule++; |
| 2786 if (buildCounterPathRule < 3) { | 2786 if (buildCounterPathRule < 3) { |
| 2787 checkUnnamed923(o.paths); | 2787 checkUnnamed904(o.paths); |
| 2788 unittest.expect(o.service, unittest.equals('foo')); | 2788 unittest.expect(o.service, unittest.equals('foo')); |
| 2789 } | 2789 } |
| 2790 buildCounterPathRule--; | 2790 buildCounterPathRule--; |
| 2791 } | 2791 } |
| 2792 | 2792 |
| 2793 buildUnnamed924() { | 2793 buildUnnamed905() { |
| 2794 var o = new core.List<api.Quota>(); | 2794 var o = new core.List<api.Quota>(); |
| 2795 o.add(buildQuota()); | 2795 o.add(buildQuota()); |
| 2796 o.add(buildQuota()); | 2796 o.add(buildQuota()); |
| 2797 return o; | 2797 return o; |
| 2798 } | 2798 } |
| 2799 | 2799 |
| 2800 checkUnnamed924(core.List<api.Quota> o) { | 2800 checkUnnamed905(core.List<api.Quota> o) { |
| 2801 unittest.expect(o, unittest.hasLength(2)); | 2801 unittest.expect(o, unittest.hasLength(2)); |
| 2802 checkQuota(o[0]); | 2802 checkQuota(o[0]); |
| 2803 checkQuota(o[1]); | 2803 checkQuota(o[1]); |
| 2804 } | 2804 } |
| 2805 | 2805 |
| 2806 core.int buildCounterProject = 0; | 2806 core.int buildCounterProject = 0; |
| 2807 buildProject() { | 2807 buildProject() { |
| 2808 var o = new api.Project(); | 2808 var o = new api.Project(); |
| 2809 buildCounterProject++; | 2809 buildCounterProject++; |
| 2810 if (buildCounterProject < 3) { | 2810 if (buildCounterProject < 3) { |
| 2811 o.commonInstanceMetadata = buildMetadata(); | 2811 o.commonInstanceMetadata = buildMetadata(); |
| 2812 o.creationTimestamp = "foo"; | 2812 o.creationTimestamp = "foo"; |
| 2813 o.description = "foo"; | 2813 o.description = "foo"; |
| 2814 o.id = "foo"; | 2814 o.id = "foo"; |
| 2815 o.kind = "foo"; | 2815 o.kind = "foo"; |
| 2816 o.name = "foo"; | 2816 o.name = "foo"; |
| 2817 o.quotas = buildUnnamed924(); | 2817 o.quotas = buildUnnamed905(); |
| 2818 o.selfLink = "foo"; | 2818 o.selfLink = "foo"; |
| 2819 o.usageExportLocation = buildUsageExportLocation(); | 2819 o.usageExportLocation = buildUsageExportLocation(); |
| 2820 } | 2820 } |
| 2821 buildCounterProject--; | 2821 buildCounterProject--; |
| 2822 return o; | 2822 return o; |
| 2823 } | 2823 } |
| 2824 | 2824 |
| 2825 checkProject(api.Project o) { | 2825 checkProject(api.Project o) { |
| 2826 buildCounterProject++; | 2826 buildCounterProject++; |
| 2827 if (buildCounterProject < 3) { | 2827 if (buildCounterProject < 3) { |
| 2828 checkMetadata(o.commonInstanceMetadata); | 2828 checkMetadata(o.commonInstanceMetadata); |
| 2829 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2829 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2830 unittest.expect(o.description, unittest.equals('foo')); | 2830 unittest.expect(o.description, unittest.equals('foo')); |
| 2831 unittest.expect(o.id, unittest.equals('foo')); | 2831 unittest.expect(o.id, unittest.equals('foo')); |
| 2832 unittest.expect(o.kind, unittest.equals('foo')); | 2832 unittest.expect(o.kind, unittest.equals('foo')); |
| 2833 unittest.expect(o.name, unittest.equals('foo')); | 2833 unittest.expect(o.name, unittest.equals('foo')); |
| 2834 checkUnnamed924(o.quotas); | 2834 checkUnnamed905(o.quotas); |
| 2835 unittest.expect(o.selfLink, unittest.equals('foo')); | 2835 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2836 checkUsageExportLocation(o.usageExportLocation); | 2836 checkUsageExportLocation(o.usageExportLocation); |
| 2837 } | 2837 } |
| 2838 buildCounterProject--; | 2838 buildCounterProject--; |
| 2839 } | 2839 } |
| 2840 | 2840 |
| 2841 core.int buildCounterQuota = 0; | 2841 core.int buildCounterQuota = 0; |
| 2842 buildQuota() { | 2842 buildQuota() { |
| 2843 var o = new api.Quota(); | 2843 var o = new api.Quota(); |
| 2844 buildCounterQuota++; | 2844 buildCounterQuota++; |
| 2845 if (buildCounterQuota < 3) { | 2845 if (buildCounterQuota < 3) { |
| 2846 o.limit = 42.0; | 2846 o.limit = 42.0; |
| 2847 o.metric = "foo"; | 2847 o.metric = "foo"; |
| 2848 o.usage = 42.0; | 2848 o.usage = 42.0; |
| 2849 } | 2849 } |
| 2850 buildCounterQuota--; | 2850 buildCounterQuota--; |
| 2851 return o; | 2851 return o; |
| 2852 } | 2852 } |
| 2853 | 2853 |
| 2854 checkQuota(api.Quota o) { | 2854 checkQuota(api.Quota o) { |
| 2855 buildCounterQuota++; | 2855 buildCounterQuota++; |
| 2856 if (buildCounterQuota < 3) { | 2856 if (buildCounterQuota < 3) { |
| 2857 unittest.expect(o.limit, unittest.equals(42.0)); | 2857 unittest.expect(o.limit, unittest.equals(42.0)); |
| 2858 unittest.expect(o.metric, unittest.equals('foo')); | 2858 unittest.expect(o.metric, unittest.equals('foo')); |
| 2859 unittest.expect(o.usage, unittest.equals(42.0)); | 2859 unittest.expect(o.usage, unittest.equals(42.0)); |
| 2860 } | 2860 } |
| 2861 buildCounterQuota--; | 2861 buildCounterQuota--; |
| 2862 } | 2862 } |
| 2863 | 2863 |
| 2864 buildUnnamed925() { | 2864 buildUnnamed906() { |
| 2865 var o = new core.List<api.Quota>(); | 2865 var o = new core.List<api.Quota>(); |
| 2866 o.add(buildQuota()); | 2866 o.add(buildQuota()); |
| 2867 o.add(buildQuota()); | 2867 o.add(buildQuota()); |
| 2868 return o; | 2868 return o; |
| 2869 } | 2869 } |
| 2870 | 2870 |
| 2871 checkUnnamed925(core.List<api.Quota> o) { | 2871 checkUnnamed906(core.List<api.Quota> o) { |
| 2872 unittest.expect(o, unittest.hasLength(2)); | 2872 unittest.expect(o, unittest.hasLength(2)); |
| 2873 checkQuota(o[0]); | 2873 checkQuota(o[0]); |
| 2874 checkQuota(o[1]); | 2874 checkQuota(o[1]); |
| 2875 } | 2875 } |
| 2876 | 2876 |
| 2877 buildUnnamed926() { | 2877 buildUnnamed907() { |
| 2878 var o = new core.List<core.String>(); | 2878 var o = new core.List<core.String>(); |
| 2879 o.add("foo"); | 2879 o.add("foo"); |
| 2880 o.add("foo"); | 2880 o.add("foo"); |
| 2881 return o; | 2881 return o; |
| 2882 } | 2882 } |
| 2883 | 2883 |
| 2884 checkUnnamed926(core.List<core.String> o) { | 2884 checkUnnamed907(core.List<core.String> o) { |
| 2885 unittest.expect(o, unittest.hasLength(2)); | 2885 unittest.expect(o, unittest.hasLength(2)); |
| 2886 unittest.expect(o[0], unittest.equals('foo')); | 2886 unittest.expect(o[0], unittest.equals('foo')); |
| 2887 unittest.expect(o[1], unittest.equals('foo')); | 2887 unittest.expect(o[1], unittest.equals('foo')); |
| 2888 } | 2888 } |
| 2889 | 2889 |
| 2890 core.int buildCounterRegion = 0; | 2890 core.int buildCounterRegion = 0; |
| 2891 buildRegion() { | 2891 buildRegion() { |
| 2892 var o = new api.Region(); | 2892 var o = new api.Region(); |
| 2893 buildCounterRegion++; | 2893 buildCounterRegion++; |
| 2894 if (buildCounterRegion < 3) { | 2894 if (buildCounterRegion < 3) { |
| 2895 o.creationTimestamp = "foo"; | 2895 o.creationTimestamp = "foo"; |
| 2896 o.deprecated = buildDeprecationStatus(); | 2896 o.deprecated = buildDeprecationStatus(); |
| 2897 o.description = "foo"; | 2897 o.description = "foo"; |
| 2898 o.id = "foo"; | 2898 o.id = "foo"; |
| 2899 o.kind = "foo"; | 2899 o.kind = "foo"; |
| 2900 o.name = "foo"; | 2900 o.name = "foo"; |
| 2901 o.quotas = buildUnnamed925(); | 2901 o.quotas = buildUnnamed906(); |
| 2902 o.selfLink = "foo"; | 2902 o.selfLink = "foo"; |
| 2903 o.status = "foo"; | 2903 o.status = "foo"; |
| 2904 o.zones = buildUnnamed926(); | 2904 o.zones = buildUnnamed907(); |
| 2905 } | 2905 } |
| 2906 buildCounterRegion--; | 2906 buildCounterRegion--; |
| 2907 return o; | 2907 return o; |
| 2908 } | 2908 } |
| 2909 | 2909 |
| 2910 checkRegion(api.Region o) { | 2910 checkRegion(api.Region o) { |
| 2911 buildCounterRegion++; | 2911 buildCounterRegion++; |
| 2912 if (buildCounterRegion < 3) { | 2912 if (buildCounterRegion < 3) { |
| 2913 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 2913 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 2914 checkDeprecationStatus(o.deprecated); | 2914 checkDeprecationStatus(o.deprecated); |
| 2915 unittest.expect(o.description, unittest.equals('foo')); | 2915 unittest.expect(o.description, unittest.equals('foo')); |
| 2916 unittest.expect(o.id, unittest.equals('foo')); | 2916 unittest.expect(o.id, unittest.equals('foo')); |
| 2917 unittest.expect(o.kind, unittest.equals('foo')); | 2917 unittest.expect(o.kind, unittest.equals('foo')); |
| 2918 unittest.expect(o.name, unittest.equals('foo')); | 2918 unittest.expect(o.name, unittest.equals('foo')); |
| 2919 checkUnnamed925(o.quotas); | 2919 checkUnnamed906(o.quotas); |
| 2920 unittest.expect(o.selfLink, unittest.equals('foo')); | 2920 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2921 unittest.expect(o.status, unittest.equals('foo')); | 2921 unittest.expect(o.status, unittest.equals('foo')); |
| 2922 checkUnnamed926(o.zones); | 2922 checkUnnamed907(o.zones); |
| 2923 } | 2923 } |
| 2924 buildCounterRegion--; | 2924 buildCounterRegion--; |
| 2925 } | 2925 } |
| 2926 | 2926 |
| 2927 buildUnnamed927() { | 2927 buildUnnamed908() { |
| 2928 var o = new core.List<api.Region>(); | 2928 var o = new core.List<api.Region>(); |
| 2929 o.add(buildRegion()); | 2929 o.add(buildRegion()); |
| 2930 o.add(buildRegion()); | 2930 o.add(buildRegion()); |
| 2931 return o; | 2931 return o; |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 checkUnnamed927(core.List<api.Region> o) { | 2934 checkUnnamed908(core.List<api.Region> o) { |
| 2935 unittest.expect(o, unittest.hasLength(2)); | 2935 unittest.expect(o, unittest.hasLength(2)); |
| 2936 checkRegion(o[0]); | 2936 checkRegion(o[0]); |
| 2937 checkRegion(o[1]); | 2937 checkRegion(o[1]); |
| 2938 } | 2938 } |
| 2939 | 2939 |
| 2940 core.int buildCounterRegionList = 0; | 2940 core.int buildCounterRegionList = 0; |
| 2941 buildRegionList() { | 2941 buildRegionList() { |
| 2942 var o = new api.RegionList(); | 2942 var o = new api.RegionList(); |
| 2943 buildCounterRegionList++; | 2943 buildCounterRegionList++; |
| 2944 if (buildCounterRegionList < 3) { | 2944 if (buildCounterRegionList < 3) { |
| 2945 o.id = "foo"; | 2945 o.id = "foo"; |
| 2946 o.items = buildUnnamed927(); | 2946 o.items = buildUnnamed908(); |
| 2947 o.kind = "foo"; | 2947 o.kind = "foo"; |
| 2948 o.nextPageToken = "foo"; | 2948 o.nextPageToken = "foo"; |
| 2949 o.selfLink = "foo"; | 2949 o.selfLink = "foo"; |
| 2950 } | 2950 } |
| 2951 buildCounterRegionList--; | 2951 buildCounterRegionList--; |
| 2952 return o; | 2952 return o; |
| 2953 } | 2953 } |
| 2954 | 2954 |
| 2955 checkRegionList(api.RegionList o) { | 2955 checkRegionList(api.RegionList o) { |
| 2956 buildCounterRegionList++; | 2956 buildCounterRegionList++; |
| 2957 if (buildCounterRegionList < 3) { | 2957 if (buildCounterRegionList < 3) { |
| 2958 unittest.expect(o.id, unittest.equals('foo')); | 2958 unittest.expect(o.id, unittest.equals('foo')); |
| 2959 checkUnnamed927(o.items); | 2959 checkUnnamed908(o.items); |
| 2960 unittest.expect(o.kind, unittest.equals('foo')); | 2960 unittest.expect(o.kind, unittest.equals('foo')); |
| 2961 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2961 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2962 unittest.expect(o.selfLink, unittest.equals('foo')); | 2962 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2963 } | 2963 } |
| 2964 buildCounterRegionList--; | 2964 buildCounterRegionList--; |
| 2965 } | 2965 } |
| 2966 | 2966 |
| 2967 core.int buildCounterResourceGroupReference = 0; | 2967 core.int buildCounterResourceGroupReference = 0; |
| 2968 buildResourceGroupReference() { | 2968 buildResourceGroupReference() { |
| 2969 var o = new api.ResourceGroupReference(); | 2969 var o = new api.ResourceGroupReference(); |
| 2970 buildCounterResourceGroupReference++; | 2970 buildCounterResourceGroupReference++; |
| 2971 if (buildCounterResourceGroupReference < 3) { | 2971 if (buildCounterResourceGroupReference < 3) { |
| 2972 o.group = "foo"; | 2972 o.group = "foo"; |
| 2973 } | 2973 } |
| 2974 buildCounterResourceGroupReference--; | 2974 buildCounterResourceGroupReference--; |
| 2975 return o; | 2975 return o; |
| 2976 } | 2976 } |
| 2977 | 2977 |
| 2978 checkResourceGroupReference(api.ResourceGroupReference o) { | 2978 checkResourceGroupReference(api.ResourceGroupReference o) { |
| 2979 buildCounterResourceGroupReference++; | 2979 buildCounterResourceGroupReference++; |
| 2980 if (buildCounterResourceGroupReference < 3) { | 2980 if (buildCounterResourceGroupReference < 3) { |
| 2981 unittest.expect(o.group, unittest.equals('foo')); | 2981 unittest.expect(o.group, unittest.equals('foo')); |
| 2982 } | 2982 } |
| 2983 buildCounterResourceGroupReference--; | 2983 buildCounterResourceGroupReference--; |
| 2984 } | 2984 } |
| 2985 | 2985 |
| 2986 buildUnnamed928() { | 2986 buildUnnamed909() { |
| 2987 var o = new core.List<core.String>(); | 2987 var o = new core.List<core.String>(); |
| 2988 o.add("foo"); | 2988 o.add("foo"); |
| 2989 o.add("foo"); | 2989 o.add("foo"); |
| 2990 return o; | 2990 return o; |
| 2991 } | 2991 } |
| 2992 | 2992 |
| 2993 checkUnnamed928(core.List<core.String> o) { | 2993 checkUnnamed909(core.List<core.String> o) { |
| 2994 unittest.expect(o, unittest.hasLength(2)); | 2994 unittest.expect(o, unittest.hasLength(2)); |
| 2995 unittest.expect(o[0], unittest.equals('foo')); | 2995 unittest.expect(o[0], unittest.equals('foo')); |
| 2996 unittest.expect(o[1], unittest.equals('foo')); | 2996 unittest.expect(o[1], unittest.equals('foo')); |
| 2997 } | 2997 } |
| 2998 | 2998 |
| 2999 core.int buildCounterRouteWarningsData = 0; | 2999 core.int buildCounterRouteWarningsData = 0; |
| 3000 buildRouteWarningsData() { | 3000 buildRouteWarningsData() { |
| 3001 var o = new api.RouteWarningsData(); | 3001 var o = new api.RouteWarningsData(); |
| 3002 buildCounterRouteWarningsData++; | 3002 buildCounterRouteWarningsData++; |
| 3003 if (buildCounterRouteWarningsData < 3) { | 3003 if (buildCounterRouteWarningsData < 3) { |
| 3004 o.key = "foo"; | 3004 o.key = "foo"; |
| 3005 o.value = "foo"; | 3005 o.value = "foo"; |
| 3006 } | 3006 } |
| 3007 buildCounterRouteWarningsData--; | 3007 buildCounterRouteWarningsData--; |
| 3008 return o; | 3008 return o; |
| 3009 } | 3009 } |
| 3010 | 3010 |
| 3011 checkRouteWarningsData(api.RouteWarningsData o) { | 3011 checkRouteWarningsData(api.RouteWarningsData o) { |
| 3012 buildCounterRouteWarningsData++; | 3012 buildCounterRouteWarningsData++; |
| 3013 if (buildCounterRouteWarningsData < 3) { | 3013 if (buildCounterRouteWarningsData < 3) { |
| 3014 unittest.expect(o.key, unittest.equals('foo')); | 3014 unittest.expect(o.key, unittest.equals('foo')); |
| 3015 unittest.expect(o.value, unittest.equals('foo')); | 3015 unittest.expect(o.value, unittest.equals('foo')); |
| 3016 } | 3016 } |
| 3017 buildCounterRouteWarningsData--; | 3017 buildCounterRouteWarningsData--; |
| 3018 } | 3018 } |
| 3019 | 3019 |
| 3020 buildUnnamed929() { | 3020 buildUnnamed910() { |
| 3021 var o = new core.List<api.RouteWarningsData>(); | 3021 var o = new core.List<api.RouteWarningsData>(); |
| 3022 o.add(buildRouteWarningsData()); | 3022 o.add(buildRouteWarningsData()); |
| 3023 o.add(buildRouteWarningsData()); | 3023 o.add(buildRouteWarningsData()); |
| 3024 return o; | 3024 return o; |
| 3025 } | 3025 } |
| 3026 | 3026 |
| 3027 checkUnnamed929(core.List<api.RouteWarningsData> o) { | 3027 checkUnnamed910(core.List<api.RouteWarningsData> o) { |
| 3028 unittest.expect(o, unittest.hasLength(2)); | 3028 unittest.expect(o, unittest.hasLength(2)); |
| 3029 checkRouteWarningsData(o[0]); | 3029 checkRouteWarningsData(o[0]); |
| 3030 checkRouteWarningsData(o[1]); | 3030 checkRouteWarningsData(o[1]); |
| 3031 } | 3031 } |
| 3032 | 3032 |
| 3033 core.int buildCounterRouteWarnings = 0; | 3033 core.int buildCounterRouteWarnings = 0; |
| 3034 buildRouteWarnings() { | 3034 buildRouteWarnings() { |
| 3035 var o = new api.RouteWarnings(); | 3035 var o = new api.RouteWarnings(); |
| 3036 buildCounterRouteWarnings++; | 3036 buildCounterRouteWarnings++; |
| 3037 if (buildCounterRouteWarnings < 3) { | 3037 if (buildCounterRouteWarnings < 3) { |
| 3038 o.code = "foo"; | 3038 o.code = "foo"; |
| 3039 o.data = buildUnnamed929(); | 3039 o.data = buildUnnamed910(); |
| 3040 o.message = "foo"; | 3040 o.message = "foo"; |
| 3041 } | 3041 } |
| 3042 buildCounterRouteWarnings--; | 3042 buildCounterRouteWarnings--; |
| 3043 return o; | 3043 return o; |
| 3044 } | 3044 } |
| 3045 | 3045 |
| 3046 checkRouteWarnings(api.RouteWarnings o) { | 3046 checkRouteWarnings(api.RouteWarnings o) { |
| 3047 buildCounterRouteWarnings++; | 3047 buildCounterRouteWarnings++; |
| 3048 if (buildCounterRouteWarnings < 3) { | 3048 if (buildCounterRouteWarnings < 3) { |
| 3049 unittest.expect(o.code, unittest.equals('foo')); | 3049 unittest.expect(o.code, unittest.equals('foo')); |
| 3050 checkUnnamed929(o.data); | 3050 checkUnnamed910(o.data); |
| 3051 unittest.expect(o.message, unittest.equals('foo')); | 3051 unittest.expect(o.message, unittest.equals('foo')); |
| 3052 } | 3052 } |
| 3053 buildCounterRouteWarnings--; | 3053 buildCounterRouteWarnings--; |
| 3054 } | 3054 } |
| 3055 | 3055 |
| 3056 buildUnnamed930() { | 3056 buildUnnamed911() { |
| 3057 var o = new core.List<api.RouteWarnings>(); | 3057 var o = new core.List<api.RouteWarnings>(); |
| 3058 o.add(buildRouteWarnings()); | 3058 o.add(buildRouteWarnings()); |
| 3059 o.add(buildRouteWarnings()); | 3059 o.add(buildRouteWarnings()); |
| 3060 return o; | 3060 return o; |
| 3061 } | 3061 } |
| 3062 | 3062 |
| 3063 checkUnnamed930(core.List<api.RouteWarnings> o) { | 3063 checkUnnamed911(core.List<api.RouteWarnings> o) { |
| 3064 unittest.expect(o, unittest.hasLength(2)); | 3064 unittest.expect(o, unittest.hasLength(2)); |
| 3065 checkRouteWarnings(o[0]); | 3065 checkRouteWarnings(o[0]); |
| 3066 checkRouteWarnings(o[1]); | 3066 checkRouteWarnings(o[1]); |
| 3067 } | 3067 } |
| 3068 | 3068 |
| 3069 core.int buildCounterRoute = 0; | 3069 core.int buildCounterRoute = 0; |
| 3070 buildRoute() { | 3070 buildRoute() { |
| 3071 var o = new api.Route(); | 3071 var o = new api.Route(); |
| 3072 buildCounterRoute++; | 3072 buildCounterRoute++; |
| 3073 if (buildCounterRoute < 3) { | 3073 if (buildCounterRoute < 3) { |
| 3074 o.creationTimestamp = "foo"; | 3074 o.creationTimestamp = "foo"; |
| 3075 o.description = "foo"; | 3075 o.description = "foo"; |
| 3076 o.destRange = "foo"; | 3076 o.destRange = "foo"; |
| 3077 o.id = "foo"; | 3077 o.id = "foo"; |
| 3078 o.kind = "foo"; | 3078 o.kind = "foo"; |
| 3079 o.name = "foo"; | 3079 o.name = "foo"; |
| 3080 o.network = "foo"; | 3080 o.network = "foo"; |
| 3081 o.nextHopGateway = "foo"; | 3081 o.nextHopGateway = "foo"; |
| 3082 o.nextHopInstance = "foo"; | 3082 o.nextHopInstance = "foo"; |
| 3083 o.nextHopIp = "foo"; | 3083 o.nextHopIp = "foo"; |
| 3084 o.nextHopNetwork = "foo"; | 3084 o.nextHopNetwork = "foo"; |
| 3085 o.priority = 42; | 3085 o.priority = 42; |
| 3086 o.selfLink = "foo"; | 3086 o.selfLink = "foo"; |
| 3087 o.tags = buildUnnamed928(); | 3087 o.tags = buildUnnamed909(); |
| 3088 o.warnings = buildUnnamed930(); | 3088 o.warnings = buildUnnamed911(); |
| 3089 } | 3089 } |
| 3090 buildCounterRoute--; | 3090 buildCounterRoute--; |
| 3091 return o; | 3091 return o; |
| 3092 } | 3092 } |
| 3093 | 3093 |
| 3094 checkRoute(api.Route o) { | 3094 checkRoute(api.Route o) { |
| 3095 buildCounterRoute++; | 3095 buildCounterRoute++; |
| 3096 if (buildCounterRoute < 3) { | 3096 if (buildCounterRoute < 3) { |
| 3097 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3097 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3098 unittest.expect(o.description, unittest.equals('foo')); | 3098 unittest.expect(o.description, unittest.equals('foo')); |
| 3099 unittest.expect(o.destRange, unittest.equals('foo')); | 3099 unittest.expect(o.destRange, unittest.equals('foo')); |
| 3100 unittest.expect(o.id, unittest.equals('foo')); | 3100 unittest.expect(o.id, unittest.equals('foo')); |
| 3101 unittest.expect(o.kind, unittest.equals('foo')); | 3101 unittest.expect(o.kind, unittest.equals('foo')); |
| 3102 unittest.expect(o.name, unittest.equals('foo')); | 3102 unittest.expect(o.name, unittest.equals('foo')); |
| 3103 unittest.expect(o.network, unittest.equals('foo')); | 3103 unittest.expect(o.network, unittest.equals('foo')); |
| 3104 unittest.expect(o.nextHopGateway, unittest.equals('foo')); | 3104 unittest.expect(o.nextHopGateway, unittest.equals('foo')); |
| 3105 unittest.expect(o.nextHopInstance, unittest.equals('foo')); | 3105 unittest.expect(o.nextHopInstance, unittest.equals('foo')); |
| 3106 unittest.expect(o.nextHopIp, unittest.equals('foo')); | 3106 unittest.expect(o.nextHopIp, unittest.equals('foo')); |
| 3107 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); | 3107 unittest.expect(o.nextHopNetwork, unittest.equals('foo')); |
| 3108 unittest.expect(o.priority, unittest.equals(42)); | 3108 unittest.expect(o.priority, unittest.equals(42)); |
| 3109 unittest.expect(o.selfLink, unittest.equals('foo')); | 3109 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3110 checkUnnamed928(o.tags); | 3110 checkUnnamed909(o.tags); |
| 3111 checkUnnamed930(o.warnings); | 3111 checkUnnamed911(o.warnings); |
| 3112 } | 3112 } |
| 3113 buildCounterRoute--; | 3113 buildCounterRoute--; |
| 3114 } | 3114 } |
| 3115 | 3115 |
| 3116 buildUnnamed931() { | 3116 buildUnnamed912() { |
| 3117 var o = new core.List<api.Route>(); | 3117 var o = new core.List<api.Route>(); |
| 3118 o.add(buildRoute()); | 3118 o.add(buildRoute()); |
| 3119 o.add(buildRoute()); | 3119 o.add(buildRoute()); |
| 3120 return o; | 3120 return o; |
| 3121 } | 3121 } |
| 3122 | 3122 |
| 3123 checkUnnamed931(core.List<api.Route> o) { | 3123 checkUnnamed912(core.List<api.Route> o) { |
| 3124 unittest.expect(o, unittest.hasLength(2)); | 3124 unittest.expect(o, unittest.hasLength(2)); |
| 3125 checkRoute(o[0]); | 3125 checkRoute(o[0]); |
| 3126 checkRoute(o[1]); | 3126 checkRoute(o[1]); |
| 3127 } | 3127 } |
| 3128 | 3128 |
| 3129 core.int buildCounterRouteList = 0; | 3129 core.int buildCounterRouteList = 0; |
| 3130 buildRouteList() { | 3130 buildRouteList() { |
| 3131 var o = new api.RouteList(); | 3131 var o = new api.RouteList(); |
| 3132 buildCounterRouteList++; | 3132 buildCounterRouteList++; |
| 3133 if (buildCounterRouteList < 3) { | 3133 if (buildCounterRouteList < 3) { |
| 3134 o.id = "foo"; | 3134 o.id = "foo"; |
| 3135 o.items = buildUnnamed931(); | 3135 o.items = buildUnnamed912(); |
| 3136 o.kind = "foo"; | 3136 o.kind = "foo"; |
| 3137 o.nextPageToken = "foo"; | 3137 o.nextPageToken = "foo"; |
| 3138 o.selfLink = "foo"; | 3138 o.selfLink = "foo"; |
| 3139 } | 3139 } |
| 3140 buildCounterRouteList--; | 3140 buildCounterRouteList--; |
| 3141 return o; | 3141 return o; |
| 3142 } | 3142 } |
| 3143 | 3143 |
| 3144 checkRouteList(api.RouteList o) { | 3144 checkRouteList(api.RouteList o) { |
| 3145 buildCounterRouteList++; | 3145 buildCounterRouteList++; |
| 3146 if (buildCounterRouteList < 3) { | 3146 if (buildCounterRouteList < 3) { |
| 3147 unittest.expect(o.id, unittest.equals('foo')); | 3147 unittest.expect(o.id, unittest.equals('foo')); |
| 3148 checkUnnamed931(o.items); | 3148 checkUnnamed912(o.items); |
| 3149 unittest.expect(o.kind, unittest.equals('foo')); | 3149 unittest.expect(o.kind, unittest.equals('foo')); |
| 3150 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3150 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3151 unittest.expect(o.selfLink, unittest.equals('foo')); | 3151 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3152 } | 3152 } |
| 3153 buildCounterRouteList--; | 3153 buildCounterRouteList--; |
| 3154 } | 3154 } |
| 3155 | 3155 |
| 3156 core.int buildCounterScheduling = 0; | 3156 core.int buildCounterScheduling = 0; |
| 3157 buildScheduling() { | 3157 buildScheduling() { |
| 3158 var o = new api.Scheduling(); | 3158 var o = new api.Scheduling(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3190 checkSerialPortOutput(api.SerialPortOutput o) { | 3190 checkSerialPortOutput(api.SerialPortOutput o) { |
| 3191 buildCounterSerialPortOutput++; | 3191 buildCounterSerialPortOutput++; |
| 3192 if (buildCounterSerialPortOutput < 3) { | 3192 if (buildCounterSerialPortOutput < 3) { |
| 3193 unittest.expect(o.contents, unittest.equals('foo')); | 3193 unittest.expect(o.contents, unittest.equals('foo')); |
| 3194 unittest.expect(o.kind, unittest.equals('foo')); | 3194 unittest.expect(o.kind, unittest.equals('foo')); |
| 3195 unittest.expect(o.selfLink, unittest.equals('foo')); | 3195 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3196 } | 3196 } |
| 3197 buildCounterSerialPortOutput--; | 3197 buildCounterSerialPortOutput--; |
| 3198 } | 3198 } |
| 3199 | 3199 |
| 3200 buildUnnamed932() { | 3200 buildUnnamed913() { |
| 3201 var o = new core.List<core.String>(); | 3201 var o = new core.List<core.String>(); |
| 3202 o.add("foo"); | 3202 o.add("foo"); |
| 3203 o.add("foo"); | 3203 o.add("foo"); |
| 3204 return o; | 3204 return o; |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 checkUnnamed932(core.List<core.String> o) { | 3207 checkUnnamed913(core.List<core.String> o) { |
| 3208 unittest.expect(o, unittest.hasLength(2)); | 3208 unittest.expect(o, unittest.hasLength(2)); |
| 3209 unittest.expect(o[0], unittest.equals('foo')); | 3209 unittest.expect(o[0], unittest.equals('foo')); |
| 3210 unittest.expect(o[1], unittest.equals('foo')); | 3210 unittest.expect(o[1], unittest.equals('foo')); |
| 3211 } | 3211 } |
| 3212 | 3212 |
| 3213 core.int buildCounterServiceAccount = 0; | 3213 core.int buildCounterServiceAccount = 0; |
| 3214 buildServiceAccount() { | 3214 buildServiceAccount() { |
| 3215 var o = new api.ServiceAccount(); | 3215 var o = new api.ServiceAccount(); |
| 3216 buildCounterServiceAccount++; | 3216 buildCounterServiceAccount++; |
| 3217 if (buildCounterServiceAccount < 3) { | 3217 if (buildCounterServiceAccount < 3) { |
| 3218 o.email = "foo"; | 3218 o.email = "foo"; |
| 3219 o.scopes = buildUnnamed932(); | 3219 o.scopes = buildUnnamed913(); |
| 3220 } | 3220 } |
| 3221 buildCounterServiceAccount--; | 3221 buildCounterServiceAccount--; |
| 3222 return o; | 3222 return o; |
| 3223 } | 3223 } |
| 3224 | 3224 |
| 3225 checkServiceAccount(api.ServiceAccount o) { | 3225 checkServiceAccount(api.ServiceAccount o) { |
| 3226 buildCounterServiceAccount++; | 3226 buildCounterServiceAccount++; |
| 3227 if (buildCounterServiceAccount < 3) { | 3227 if (buildCounterServiceAccount < 3) { |
| 3228 unittest.expect(o.email, unittest.equals('foo')); | 3228 unittest.expect(o.email, unittest.equals('foo')); |
| 3229 checkUnnamed932(o.scopes); | 3229 checkUnnamed913(o.scopes); |
| 3230 } | 3230 } |
| 3231 buildCounterServiceAccount--; | 3231 buildCounterServiceAccount--; |
| 3232 } | 3232 } |
| 3233 | 3233 |
| 3234 buildUnnamed933() { | 3234 buildUnnamed914() { |
| 3235 var o = new core.List<core.String>(); | 3235 var o = new core.List<core.String>(); |
| 3236 o.add("foo"); | 3236 o.add("foo"); |
| 3237 o.add("foo"); | 3237 o.add("foo"); |
| 3238 return o; | 3238 return o; |
| 3239 } | 3239 } |
| 3240 | 3240 |
| 3241 checkUnnamed933(core.List<core.String> o) { | 3241 checkUnnamed914(core.List<core.String> o) { |
| 3242 unittest.expect(o, unittest.hasLength(2)); | 3242 unittest.expect(o, unittest.hasLength(2)); |
| 3243 unittest.expect(o[0], unittest.equals('foo')); | 3243 unittest.expect(o[0], unittest.equals('foo')); |
| 3244 unittest.expect(o[1], unittest.equals('foo')); | 3244 unittest.expect(o[1], unittest.equals('foo')); |
| 3245 } | 3245 } |
| 3246 | 3246 |
| 3247 core.int buildCounterSnapshot = 0; | 3247 core.int buildCounterSnapshot = 0; |
| 3248 buildSnapshot() { | 3248 buildSnapshot() { |
| 3249 var o = new api.Snapshot(); | 3249 var o = new api.Snapshot(); |
| 3250 buildCounterSnapshot++; | 3250 buildCounterSnapshot++; |
| 3251 if (buildCounterSnapshot < 3) { | 3251 if (buildCounterSnapshot < 3) { |
| 3252 o.creationTimestamp = "foo"; | 3252 o.creationTimestamp = "foo"; |
| 3253 o.description = "foo"; | 3253 o.description = "foo"; |
| 3254 o.diskSizeGb = "foo"; | 3254 o.diskSizeGb = "foo"; |
| 3255 o.id = "foo"; | 3255 o.id = "foo"; |
| 3256 o.kind = "foo"; | 3256 o.kind = "foo"; |
| 3257 o.licenses = buildUnnamed933(); | 3257 o.licenses = buildUnnamed914(); |
| 3258 o.name = "foo"; | 3258 o.name = "foo"; |
| 3259 o.selfLink = "foo"; | 3259 o.selfLink = "foo"; |
| 3260 o.sourceDisk = "foo"; | 3260 o.sourceDisk = "foo"; |
| 3261 o.sourceDiskId = "foo"; | 3261 o.sourceDiskId = "foo"; |
| 3262 o.status = "foo"; | 3262 o.status = "foo"; |
| 3263 o.storageBytes = "foo"; | 3263 o.storageBytes = "foo"; |
| 3264 o.storageBytesStatus = "foo"; | 3264 o.storageBytesStatus = "foo"; |
| 3265 } | 3265 } |
| 3266 buildCounterSnapshot--; | 3266 buildCounterSnapshot--; |
| 3267 return o; | 3267 return o; |
| 3268 } | 3268 } |
| 3269 | 3269 |
| 3270 checkSnapshot(api.Snapshot o) { | 3270 checkSnapshot(api.Snapshot o) { |
| 3271 buildCounterSnapshot++; | 3271 buildCounterSnapshot++; |
| 3272 if (buildCounterSnapshot < 3) { | 3272 if (buildCounterSnapshot < 3) { |
| 3273 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3273 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3274 unittest.expect(o.description, unittest.equals('foo')); | 3274 unittest.expect(o.description, unittest.equals('foo')); |
| 3275 unittest.expect(o.diskSizeGb, unittest.equals('foo')); | 3275 unittest.expect(o.diskSizeGb, unittest.equals('foo')); |
| 3276 unittest.expect(o.id, unittest.equals('foo')); | 3276 unittest.expect(o.id, unittest.equals('foo')); |
| 3277 unittest.expect(o.kind, unittest.equals('foo')); | 3277 unittest.expect(o.kind, unittest.equals('foo')); |
| 3278 checkUnnamed933(o.licenses); | 3278 checkUnnamed914(o.licenses); |
| 3279 unittest.expect(o.name, unittest.equals('foo')); | 3279 unittest.expect(o.name, unittest.equals('foo')); |
| 3280 unittest.expect(o.selfLink, unittest.equals('foo')); | 3280 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3281 unittest.expect(o.sourceDisk, unittest.equals('foo')); | 3281 unittest.expect(o.sourceDisk, unittest.equals('foo')); |
| 3282 unittest.expect(o.sourceDiskId, unittest.equals('foo')); | 3282 unittest.expect(o.sourceDiskId, unittest.equals('foo')); |
| 3283 unittest.expect(o.status, unittest.equals('foo')); | 3283 unittest.expect(o.status, unittest.equals('foo')); |
| 3284 unittest.expect(o.storageBytes, unittest.equals('foo')); | 3284 unittest.expect(o.storageBytes, unittest.equals('foo')); |
| 3285 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); | 3285 unittest.expect(o.storageBytesStatus, unittest.equals('foo')); |
| 3286 } | 3286 } |
| 3287 buildCounterSnapshot--; | 3287 buildCounterSnapshot--; |
| 3288 } | 3288 } |
| 3289 | 3289 |
| 3290 buildUnnamed934() { | 3290 buildUnnamed915() { |
| 3291 var o = new core.List<api.Snapshot>(); | 3291 var o = new core.List<api.Snapshot>(); |
| 3292 o.add(buildSnapshot()); | 3292 o.add(buildSnapshot()); |
| 3293 o.add(buildSnapshot()); | 3293 o.add(buildSnapshot()); |
| 3294 return o; | 3294 return o; |
| 3295 } | 3295 } |
| 3296 | 3296 |
| 3297 checkUnnamed934(core.List<api.Snapshot> o) { | 3297 checkUnnamed915(core.List<api.Snapshot> o) { |
| 3298 unittest.expect(o, unittest.hasLength(2)); | 3298 unittest.expect(o, unittest.hasLength(2)); |
| 3299 checkSnapshot(o[0]); | 3299 checkSnapshot(o[0]); |
| 3300 checkSnapshot(o[1]); | 3300 checkSnapshot(o[1]); |
| 3301 } | 3301 } |
| 3302 | 3302 |
| 3303 core.int buildCounterSnapshotList = 0; | 3303 core.int buildCounterSnapshotList = 0; |
| 3304 buildSnapshotList() { | 3304 buildSnapshotList() { |
| 3305 var o = new api.SnapshotList(); | 3305 var o = new api.SnapshotList(); |
| 3306 buildCounterSnapshotList++; | 3306 buildCounterSnapshotList++; |
| 3307 if (buildCounterSnapshotList < 3) { | 3307 if (buildCounterSnapshotList < 3) { |
| 3308 o.id = "foo"; | 3308 o.id = "foo"; |
| 3309 o.items = buildUnnamed934(); | 3309 o.items = buildUnnamed915(); |
| 3310 o.kind = "foo"; | 3310 o.kind = "foo"; |
| 3311 o.nextPageToken = "foo"; | 3311 o.nextPageToken = "foo"; |
| 3312 o.selfLink = "foo"; | 3312 o.selfLink = "foo"; |
| 3313 } | 3313 } |
| 3314 buildCounterSnapshotList--; | 3314 buildCounterSnapshotList--; |
| 3315 return o; | 3315 return o; |
| 3316 } | 3316 } |
| 3317 | 3317 |
| 3318 checkSnapshotList(api.SnapshotList o) { | 3318 checkSnapshotList(api.SnapshotList o) { |
| 3319 buildCounterSnapshotList++; | 3319 buildCounterSnapshotList++; |
| 3320 if (buildCounterSnapshotList < 3) { | 3320 if (buildCounterSnapshotList < 3) { |
| 3321 unittest.expect(o.id, unittest.equals('foo')); | 3321 unittest.expect(o.id, unittest.equals('foo')); |
| 3322 checkUnnamed934(o.items); | 3322 checkUnnamed915(o.items); |
| 3323 unittest.expect(o.kind, unittest.equals('foo')); | 3323 unittest.expect(o.kind, unittest.equals('foo')); |
| 3324 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3324 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3325 unittest.expect(o.selfLink, unittest.equals('foo')); | 3325 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3326 } | 3326 } |
| 3327 buildCounterSnapshotList--; | 3327 buildCounterSnapshotList--; |
| 3328 } | 3328 } |
| 3329 | 3329 |
| 3330 buildUnnamed935() { | 3330 buildUnnamed916() { |
| 3331 var o = new core.List<core.String>(); | 3331 var o = new core.List<core.String>(); |
| 3332 o.add("foo"); | 3332 o.add("foo"); |
| 3333 o.add("foo"); | 3333 o.add("foo"); |
| 3334 return o; | 3334 return o; |
| 3335 } | 3335 } |
| 3336 | 3336 |
| 3337 checkUnnamed935(core.List<core.String> o) { | 3337 checkUnnamed916(core.List<core.String> o) { |
| 3338 unittest.expect(o, unittest.hasLength(2)); | 3338 unittest.expect(o, unittest.hasLength(2)); |
| 3339 unittest.expect(o[0], unittest.equals('foo')); | 3339 unittest.expect(o[0], unittest.equals('foo')); |
| 3340 unittest.expect(o[1], unittest.equals('foo')); | 3340 unittest.expect(o[1], unittest.equals('foo')); |
| 3341 } | 3341 } |
| 3342 | 3342 |
| 3343 core.int buildCounterTags = 0; | 3343 core.int buildCounterTags = 0; |
| 3344 buildTags() { | 3344 buildTags() { |
| 3345 var o = new api.Tags(); | 3345 var o = new api.Tags(); |
| 3346 buildCounterTags++; | 3346 buildCounterTags++; |
| 3347 if (buildCounterTags < 3) { | 3347 if (buildCounterTags < 3) { |
| 3348 o.fingerprint = "foo"; | 3348 o.fingerprint = "foo"; |
| 3349 o.items = buildUnnamed935(); | 3349 o.items = buildUnnamed916(); |
| 3350 } | 3350 } |
| 3351 buildCounterTags--; | 3351 buildCounterTags--; |
| 3352 return o; | 3352 return o; |
| 3353 } | 3353 } |
| 3354 | 3354 |
| 3355 checkTags(api.Tags o) { | 3355 checkTags(api.Tags o) { |
| 3356 buildCounterTags++; | 3356 buildCounterTags++; |
| 3357 if (buildCounterTags < 3) { | 3357 if (buildCounterTags < 3) { |
| 3358 unittest.expect(o.fingerprint, unittest.equals('foo')); | 3358 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 3359 checkUnnamed935(o.items); | 3359 checkUnnamed916(o.items); |
| 3360 } | 3360 } |
| 3361 buildCounterTags--; | 3361 buildCounterTags--; |
| 3362 } | 3362 } |
| 3363 | 3363 |
| 3364 core.int buildCounterTargetHttpProxy = 0; | 3364 core.int buildCounterTargetHttpProxy = 0; |
| 3365 buildTargetHttpProxy() { | 3365 buildTargetHttpProxy() { |
| 3366 var o = new api.TargetHttpProxy(); | 3366 var o = new api.TargetHttpProxy(); |
| 3367 buildCounterTargetHttpProxy++; | 3367 buildCounterTargetHttpProxy++; |
| 3368 if (buildCounterTargetHttpProxy < 3) { | 3368 if (buildCounterTargetHttpProxy < 3) { |
| 3369 o.creationTimestamp = "foo"; | 3369 o.creationTimestamp = "foo"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3385 unittest.expect(o.description, unittest.equals('foo')); | 3385 unittest.expect(o.description, unittest.equals('foo')); |
| 3386 unittest.expect(o.id, unittest.equals('foo')); | 3386 unittest.expect(o.id, unittest.equals('foo')); |
| 3387 unittest.expect(o.kind, unittest.equals('foo')); | 3387 unittest.expect(o.kind, unittest.equals('foo')); |
| 3388 unittest.expect(o.name, unittest.equals('foo')); | 3388 unittest.expect(o.name, unittest.equals('foo')); |
| 3389 unittest.expect(o.selfLink, unittest.equals('foo')); | 3389 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3390 unittest.expect(o.urlMap, unittest.equals('foo')); | 3390 unittest.expect(o.urlMap, unittest.equals('foo')); |
| 3391 } | 3391 } |
| 3392 buildCounterTargetHttpProxy--; | 3392 buildCounterTargetHttpProxy--; |
| 3393 } | 3393 } |
| 3394 | 3394 |
| 3395 buildUnnamed936() { | 3395 buildUnnamed917() { |
| 3396 var o = new core.List<api.TargetHttpProxy>(); | 3396 var o = new core.List<api.TargetHttpProxy>(); |
| 3397 o.add(buildTargetHttpProxy()); | 3397 o.add(buildTargetHttpProxy()); |
| 3398 o.add(buildTargetHttpProxy()); | 3398 o.add(buildTargetHttpProxy()); |
| 3399 return o; | 3399 return o; |
| 3400 } | 3400 } |
| 3401 | 3401 |
| 3402 checkUnnamed936(core.List<api.TargetHttpProxy> o) { | 3402 checkUnnamed917(core.List<api.TargetHttpProxy> o) { |
| 3403 unittest.expect(o, unittest.hasLength(2)); | 3403 unittest.expect(o, unittest.hasLength(2)); |
| 3404 checkTargetHttpProxy(o[0]); | 3404 checkTargetHttpProxy(o[0]); |
| 3405 checkTargetHttpProxy(o[1]); | 3405 checkTargetHttpProxy(o[1]); |
| 3406 } | 3406 } |
| 3407 | 3407 |
| 3408 core.int buildCounterTargetHttpProxyList = 0; | 3408 core.int buildCounterTargetHttpProxyList = 0; |
| 3409 buildTargetHttpProxyList() { | 3409 buildTargetHttpProxyList() { |
| 3410 var o = new api.TargetHttpProxyList(); | 3410 var o = new api.TargetHttpProxyList(); |
| 3411 buildCounterTargetHttpProxyList++; | 3411 buildCounterTargetHttpProxyList++; |
| 3412 if (buildCounterTargetHttpProxyList < 3) { | 3412 if (buildCounterTargetHttpProxyList < 3) { |
| 3413 o.id = "foo"; | 3413 o.id = "foo"; |
| 3414 o.items = buildUnnamed936(); | 3414 o.items = buildUnnamed917(); |
| 3415 o.kind = "foo"; | 3415 o.kind = "foo"; |
| 3416 o.nextPageToken = "foo"; | 3416 o.nextPageToken = "foo"; |
| 3417 o.selfLink = "foo"; | 3417 o.selfLink = "foo"; |
| 3418 } | 3418 } |
| 3419 buildCounterTargetHttpProxyList--; | 3419 buildCounterTargetHttpProxyList--; |
| 3420 return o; | 3420 return o; |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 checkTargetHttpProxyList(api.TargetHttpProxyList o) { | 3423 checkTargetHttpProxyList(api.TargetHttpProxyList o) { |
| 3424 buildCounterTargetHttpProxyList++; | 3424 buildCounterTargetHttpProxyList++; |
| 3425 if (buildCounterTargetHttpProxyList < 3) { | 3425 if (buildCounterTargetHttpProxyList < 3) { |
| 3426 unittest.expect(o.id, unittest.equals('foo')); | 3426 unittest.expect(o.id, unittest.equals('foo')); |
| 3427 checkUnnamed936(o.items); | 3427 checkUnnamed917(o.items); |
| 3428 unittest.expect(o.kind, unittest.equals('foo')); | 3428 unittest.expect(o.kind, unittest.equals('foo')); |
| 3429 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3429 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3430 unittest.expect(o.selfLink, unittest.equals('foo')); | 3430 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3431 } | 3431 } |
| 3432 buildCounterTargetHttpProxyList--; | 3432 buildCounterTargetHttpProxyList--; |
| 3433 } | 3433 } |
| 3434 | 3434 |
| 3435 core.int buildCounterTargetInstance = 0; | 3435 core.int buildCounterTargetInstance = 0; |
| 3436 buildTargetInstance() { | 3436 buildTargetInstance() { |
| 3437 var o = new api.TargetInstance(); | 3437 var o = new api.TargetInstance(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 3460 unittest.expect(o.instance, unittest.equals('foo')); | 3460 unittest.expect(o.instance, unittest.equals('foo')); |
| 3461 unittest.expect(o.kind, unittest.equals('foo')); | 3461 unittest.expect(o.kind, unittest.equals('foo')); |
| 3462 unittest.expect(o.name, unittest.equals('foo')); | 3462 unittest.expect(o.name, unittest.equals('foo')); |
| 3463 unittest.expect(o.natPolicy, unittest.equals('foo')); | 3463 unittest.expect(o.natPolicy, unittest.equals('foo')); |
| 3464 unittest.expect(o.selfLink, unittest.equals('foo')); | 3464 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3465 unittest.expect(o.zone, unittest.equals('foo')); | 3465 unittest.expect(o.zone, unittest.equals('foo')); |
| 3466 } | 3466 } |
| 3467 buildCounterTargetInstance--; | 3467 buildCounterTargetInstance--; |
| 3468 } | 3468 } |
| 3469 | 3469 |
| 3470 buildUnnamed937() { | 3470 buildUnnamed918() { |
| 3471 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); | 3471 var o = new core.Map<core.String, api.TargetInstancesScopedList>(); |
| 3472 o["x"] = buildTargetInstancesScopedList(); | 3472 o["x"] = buildTargetInstancesScopedList(); |
| 3473 o["y"] = buildTargetInstancesScopedList(); | 3473 o["y"] = buildTargetInstancesScopedList(); |
| 3474 return o; | 3474 return o; |
| 3475 } | 3475 } |
| 3476 | 3476 |
| 3477 checkUnnamed937(core.Map<core.String, api.TargetInstancesScopedList> o) { | 3477 checkUnnamed918(core.Map<core.String, api.TargetInstancesScopedList> o) { |
| 3478 unittest.expect(o, unittest.hasLength(2)); | 3478 unittest.expect(o, unittest.hasLength(2)); |
| 3479 checkTargetInstancesScopedList(o["x"]); | 3479 checkTargetInstancesScopedList(o["x"]); |
| 3480 checkTargetInstancesScopedList(o["y"]); | 3480 checkTargetInstancesScopedList(o["y"]); |
| 3481 } | 3481 } |
| 3482 | 3482 |
| 3483 core.int buildCounterTargetInstanceAggregatedList = 0; | 3483 core.int buildCounterTargetInstanceAggregatedList = 0; |
| 3484 buildTargetInstanceAggregatedList() { | 3484 buildTargetInstanceAggregatedList() { |
| 3485 var o = new api.TargetInstanceAggregatedList(); | 3485 var o = new api.TargetInstanceAggregatedList(); |
| 3486 buildCounterTargetInstanceAggregatedList++; | 3486 buildCounterTargetInstanceAggregatedList++; |
| 3487 if (buildCounterTargetInstanceAggregatedList < 3) { | 3487 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 3488 o.id = "foo"; | 3488 o.id = "foo"; |
| 3489 o.items = buildUnnamed937(); | 3489 o.items = buildUnnamed918(); |
| 3490 o.kind = "foo"; | 3490 o.kind = "foo"; |
| 3491 o.nextPageToken = "foo"; | 3491 o.nextPageToken = "foo"; |
| 3492 o.selfLink = "foo"; | 3492 o.selfLink = "foo"; |
| 3493 } | 3493 } |
| 3494 buildCounterTargetInstanceAggregatedList--; | 3494 buildCounterTargetInstanceAggregatedList--; |
| 3495 return o; | 3495 return o; |
| 3496 } | 3496 } |
| 3497 | 3497 |
| 3498 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { | 3498 checkTargetInstanceAggregatedList(api.TargetInstanceAggregatedList o) { |
| 3499 buildCounterTargetInstanceAggregatedList++; | 3499 buildCounterTargetInstanceAggregatedList++; |
| 3500 if (buildCounterTargetInstanceAggregatedList < 3) { | 3500 if (buildCounterTargetInstanceAggregatedList < 3) { |
| 3501 unittest.expect(o.id, unittest.equals('foo')); | 3501 unittest.expect(o.id, unittest.equals('foo')); |
| 3502 checkUnnamed937(o.items); | 3502 checkUnnamed918(o.items); |
| 3503 unittest.expect(o.kind, unittest.equals('foo')); | 3503 unittest.expect(o.kind, unittest.equals('foo')); |
| 3504 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3504 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3505 unittest.expect(o.selfLink, unittest.equals('foo')); | 3505 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3506 } | 3506 } |
| 3507 buildCounterTargetInstanceAggregatedList--; | 3507 buildCounterTargetInstanceAggregatedList--; |
| 3508 } | 3508 } |
| 3509 | 3509 |
| 3510 buildUnnamed938() { | 3510 buildUnnamed919() { |
| 3511 var o = new core.List<api.TargetInstance>(); | 3511 var o = new core.List<api.TargetInstance>(); |
| 3512 o.add(buildTargetInstance()); | 3512 o.add(buildTargetInstance()); |
| 3513 o.add(buildTargetInstance()); | 3513 o.add(buildTargetInstance()); |
| 3514 return o; | 3514 return o; |
| 3515 } | 3515 } |
| 3516 | 3516 |
| 3517 checkUnnamed938(core.List<api.TargetInstance> o) { | 3517 checkUnnamed919(core.List<api.TargetInstance> o) { |
| 3518 unittest.expect(o, unittest.hasLength(2)); | 3518 unittest.expect(o, unittest.hasLength(2)); |
| 3519 checkTargetInstance(o[0]); | 3519 checkTargetInstance(o[0]); |
| 3520 checkTargetInstance(o[1]); | 3520 checkTargetInstance(o[1]); |
| 3521 } | 3521 } |
| 3522 | 3522 |
| 3523 core.int buildCounterTargetInstanceList = 0; | 3523 core.int buildCounterTargetInstanceList = 0; |
| 3524 buildTargetInstanceList() { | 3524 buildTargetInstanceList() { |
| 3525 var o = new api.TargetInstanceList(); | 3525 var o = new api.TargetInstanceList(); |
| 3526 buildCounterTargetInstanceList++; | 3526 buildCounterTargetInstanceList++; |
| 3527 if (buildCounterTargetInstanceList < 3) { | 3527 if (buildCounterTargetInstanceList < 3) { |
| 3528 o.id = "foo"; | 3528 o.id = "foo"; |
| 3529 o.items = buildUnnamed938(); | 3529 o.items = buildUnnamed919(); |
| 3530 o.kind = "foo"; | 3530 o.kind = "foo"; |
| 3531 o.nextPageToken = "foo"; | 3531 o.nextPageToken = "foo"; |
| 3532 o.selfLink = "foo"; | 3532 o.selfLink = "foo"; |
| 3533 } | 3533 } |
| 3534 buildCounterTargetInstanceList--; | 3534 buildCounterTargetInstanceList--; |
| 3535 return o; | 3535 return o; |
| 3536 } | 3536 } |
| 3537 | 3537 |
| 3538 checkTargetInstanceList(api.TargetInstanceList o) { | 3538 checkTargetInstanceList(api.TargetInstanceList o) { |
| 3539 buildCounterTargetInstanceList++; | 3539 buildCounterTargetInstanceList++; |
| 3540 if (buildCounterTargetInstanceList < 3) { | 3540 if (buildCounterTargetInstanceList < 3) { |
| 3541 unittest.expect(o.id, unittest.equals('foo')); | 3541 unittest.expect(o.id, unittest.equals('foo')); |
| 3542 checkUnnamed938(o.items); | 3542 checkUnnamed919(o.items); |
| 3543 unittest.expect(o.kind, unittest.equals('foo')); | 3543 unittest.expect(o.kind, unittest.equals('foo')); |
| 3544 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3544 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3545 unittest.expect(o.selfLink, unittest.equals('foo')); | 3545 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3546 } | 3546 } |
| 3547 buildCounterTargetInstanceList--; | 3547 buildCounterTargetInstanceList--; |
| 3548 } | 3548 } |
| 3549 | 3549 |
| 3550 buildUnnamed939() { | 3550 buildUnnamed920() { |
| 3551 var o = new core.List<api.TargetInstance>(); | 3551 var o = new core.List<api.TargetInstance>(); |
| 3552 o.add(buildTargetInstance()); | 3552 o.add(buildTargetInstance()); |
| 3553 o.add(buildTargetInstance()); | 3553 o.add(buildTargetInstance()); |
| 3554 return o; | 3554 return o; |
| 3555 } | 3555 } |
| 3556 | 3556 |
| 3557 checkUnnamed939(core.List<api.TargetInstance> o) { | 3557 checkUnnamed920(core.List<api.TargetInstance> o) { |
| 3558 unittest.expect(o, unittest.hasLength(2)); | 3558 unittest.expect(o, unittest.hasLength(2)); |
| 3559 checkTargetInstance(o[0]); | 3559 checkTargetInstance(o[0]); |
| 3560 checkTargetInstance(o[1]); | 3560 checkTargetInstance(o[1]); |
| 3561 } | 3561 } |
| 3562 | 3562 |
| 3563 core.int buildCounterTargetInstancesScopedListWarningData = 0; | 3563 core.int buildCounterTargetInstancesScopedListWarningData = 0; |
| 3564 buildTargetInstancesScopedListWarningData() { | 3564 buildTargetInstancesScopedListWarningData() { |
| 3565 var o = new api.TargetInstancesScopedListWarningData(); | 3565 var o = new api.TargetInstancesScopedListWarningData(); |
| 3566 buildCounterTargetInstancesScopedListWarningData++; | 3566 buildCounterTargetInstancesScopedListWarningData++; |
| 3567 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 3567 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 3568 o.key = "foo"; | 3568 o.key = "foo"; |
| 3569 o.value = "foo"; | 3569 o.value = "foo"; |
| 3570 } | 3570 } |
| 3571 buildCounterTargetInstancesScopedListWarningData--; | 3571 buildCounterTargetInstancesScopedListWarningData--; |
| 3572 return o; | 3572 return o; |
| 3573 } | 3573 } |
| 3574 | 3574 |
| 3575 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { | 3575 checkTargetInstancesScopedListWarningData(api.TargetInstancesScopedListWarningDa
ta o) { |
| 3576 buildCounterTargetInstancesScopedListWarningData++; | 3576 buildCounterTargetInstancesScopedListWarningData++; |
| 3577 if (buildCounterTargetInstancesScopedListWarningData < 3) { | 3577 if (buildCounterTargetInstancesScopedListWarningData < 3) { |
| 3578 unittest.expect(o.key, unittest.equals('foo')); | 3578 unittest.expect(o.key, unittest.equals('foo')); |
| 3579 unittest.expect(o.value, unittest.equals('foo')); | 3579 unittest.expect(o.value, unittest.equals('foo')); |
| 3580 } | 3580 } |
| 3581 buildCounterTargetInstancesScopedListWarningData--; | 3581 buildCounterTargetInstancesScopedListWarningData--; |
| 3582 } | 3582 } |
| 3583 | 3583 |
| 3584 buildUnnamed940() { | 3584 buildUnnamed921() { |
| 3585 var o = new core.List<api.TargetInstancesScopedListWarningData>(); | 3585 var o = new core.List<api.TargetInstancesScopedListWarningData>(); |
| 3586 o.add(buildTargetInstancesScopedListWarningData()); | 3586 o.add(buildTargetInstancesScopedListWarningData()); |
| 3587 o.add(buildTargetInstancesScopedListWarningData()); | 3587 o.add(buildTargetInstancesScopedListWarningData()); |
| 3588 return o; | 3588 return o; |
| 3589 } | 3589 } |
| 3590 | 3590 |
| 3591 checkUnnamed940(core.List<api.TargetInstancesScopedListWarningData> o) { | 3591 checkUnnamed921(core.List<api.TargetInstancesScopedListWarningData> o) { |
| 3592 unittest.expect(o, unittest.hasLength(2)); | 3592 unittest.expect(o, unittest.hasLength(2)); |
| 3593 checkTargetInstancesScopedListWarningData(o[0]); | 3593 checkTargetInstancesScopedListWarningData(o[0]); |
| 3594 checkTargetInstancesScopedListWarningData(o[1]); | 3594 checkTargetInstancesScopedListWarningData(o[1]); |
| 3595 } | 3595 } |
| 3596 | 3596 |
| 3597 core.int buildCounterTargetInstancesScopedListWarning = 0; | 3597 core.int buildCounterTargetInstancesScopedListWarning = 0; |
| 3598 buildTargetInstancesScopedListWarning() { | 3598 buildTargetInstancesScopedListWarning() { |
| 3599 var o = new api.TargetInstancesScopedListWarning(); | 3599 var o = new api.TargetInstancesScopedListWarning(); |
| 3600 buildCounterTargetInstancesScopedListWarning++; | 3600 buildCounterTargetInstancesScopedListWarning++; |
| 3601 if (buildCounterTargetInstancesScopedListWarning < 3) { | 3601 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 3602 o.code = "foo"; | 3602 o.code = "foo"; |
| 3603 o.data = buildUnnamed940(); | 3603 o.data = buildUnnamed921(); |
| 3604 o.message = "foo"; | 3604 o.message = "foo"; |
| 3605 } | 3605 } |
| 3606 buildCounterTargetInstancesScopedListWarning--; | 3606 buildCounterTargetInstancesScopedListWarning--; |
| 3607 return o; | 3607 return o; |
| 3608 } | 3608 } |
| 3609 | 3609 |
| 3610 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { | 3610 checkTargetInstancesScopedListWarning(api.TargetInstancesScopedListWarning o) { |
| 3611 buildCounterTargetInstancesScopedListWarning++; | 3611 buildCounterTargetInstancesScopedListWarning++; |
| 3612 if (buildCounterTargetInstancesScopedListWarning < 3) { | 3612 if (buildCounterTargetInstancesScopedListWarning < 3) { |
| 3613 unittest.expect(o.code, unittest.equals('foo')); | 3613 unittest.expect(o.code, unittest.equals('foo')); |
| 3614 checkUnnamed940(o.data); | 3614 checkUnnamed921(o.data); |
| 3615 unittest.expect(o.message, unittest.equals('foo')); | 3615 unittest.expect(o.message, unittest.equals('foo')); |
| 3616 } | 3616 } |
| 3617 buildCounterTargetInstancesScopedListWarning--; | 3617 buildCounterTargetInstancesScopedListWarning--; |
| 3618 } | 3618 } |
| 3619 | 3619 |
| 3620 core.int buildCounterTargetInstancesScopedList = 0; | 3620 core.int buildCounterTargetInstancesScopedList = 0; |
| 3621 buildTargetInstancesScopedList() { | 3621 buildTargetInstancesScopedList() { |
| 3622 var o = new api.TargetInstancesScopedList(); | 3622 var o = new api.TargetInstancesScopedList(); |
| 3623 buildCounterTargetInstancesScopedList++; | 3623 buildCounterTargetInstancesScopedList++; |
| 3624 if (buildCounterTargetInstancesScopedList < 3) { | 3624 if (buildCounterTargetInstancesScopedList < 3) { |
| 3625 o.targetInstances = buildUnnamed939(); | 3625 o.targetInstances = buildUnnamed920(); |
| 3626 o.warning = buildTargetInstancesScopedListWarning(); | 3626 o.warning = buildTargetInstancesScopedListWarning(); |
| 3627 } | 3627 } |
| 3628 buildCounterTargetInstancesScopedList--; | 3628 buildCounterTargetInstancesScopedList--; |
| 3629 return o; | 3629 return o; |
| 3630 } | 3630 } |
| 3631 | 3631 |
| 3632 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { | 3632 checkTargetInstancesScopedList(api.TargetInstancesScopedList o) { |
| 3633 buildCounterTargetInstancesScopedList++; | 3633 buildCounterTargetInstancesScopedList++; |
| 3634 if (buildCounterTargetInstancesScopedList < 3) { | 3634 if (buildCounterTargetInstancesScopedList < 3) { |
| 3635 checkUnnamed939(o.targetInstances); | 3635 checkUnnamed920(o.targetInstances); |
| 3636 checkTargetInstancesScopedListWarning(o.warning); | 3636 checkTargetInstancesScopedListWarning(o.warning); |
| 3637 } | 3637 } |
| 3638 buildCounterTargetInstancesScopedList--; | 3638 buildCounterTargetInstancesScopedList--; |
| 3639 } | 3639 } |
| 3640 | 3640 |
| 3641 buildUnnamed941() { | 3641 buildUnnamed922() { |
| 3642 var o = new core.List<core.String>(); | 3642 var o = new core.List<core.String>(); |
| 3643 o.add("foo"); | 3643 o.add("foo"); |
| 3644 o.add("foo"); | 3644 o.add("foo"); |
| 3645 return o; | 3645 return o; |
| 3646 } | 3646 } |
| 3647 | 3647 |
| 3648 checkUnnamed941(core.List<core.String> o) { | 3648 checkUnnamed922(core.List<core.String> o) { |
| 3649 unittest.expect(o, unittest.hasLength(2)); | 3649 unittest.expect(o, unittest.hasLength(2)); |
| 3650 unittest.expect(o[0], unittest.equals('foo')); | 3650 unittest.expect(o[0], unittest.equals('foo')); |
| 3651 unittest.expect(o[1], unittest.equals('foo')); | 3651 unittest.expect(o[1], unittest.equals('foo')); |
| 3652 } | 3652 } |
| 3653 | 3653 |
| 3654 buildUnnamed942() { | 3654 buildUnnamed923() { |
| 3655 var o = new core.List<core.String>(); | 3655 var o = new core.List<core.String>(); |
| 3656 o.add("foo"); | 3656 o.add("foo"); |
| 3657 o.add("foo"); | 3657 o.add("foo"); |
| 3658 return o; | 3658 return o; |
| 3659 } | 3659 } |
| 3660 | 3660 |
| 3661 checkUnnamed942(core.List<core.String> o) { | 3661 checkUnnamed923(core.List<core.String> o) { |
| 3662 unittest.expect(o, unittest.hasLength(2)); | 3662 unittest.expect(o, unittest.hasLength(2)); |
| 3663 unittest.expect(o[0], unittest.equals('foo')); | 3663 unittest.expect(o[0], unittest.equals('foo')); |
| 3664 unittest.expect(o[1], unittest.equals('foo')); | 3664 unittest.expect(o[1], unittest.equals('foo')); |
| 3665 } | 3665 } |
| 3666 | 3666 |
| 3667 core.int buildCounterTargetPool = 0; | 3667 core.int buildCounterTargetPool = 0; |
| 3668 buildTargetPool() { | 3668 buildTargetPool() { |
| 3669 var o = new api.TargetPool(); | 3669 var o = new api.TargetPool(); |
| 3670 buildCounterTargetPool++; | 3670 buildCounterTargetPool++; |
| 3671 if (buildCounterTargetPool < 3) { | 3671 if (buildCounterTargetPool < 3) { |
| 3672 o.backupPool = "foo"; | 3672 o.backupPool = "foo"; |
| 3673 o.creationTimestamp = "foo"; | 3673 o.creationTimestamp = "foo"; |
| 3674 o.description = "foo"; | 3674 o.description = "foo"; |
| 3675 o.failoverRatio = 42.0; | 3675 o.failoverRatio = 42.0; |
| 3676 o.healthChecks = buildUnnamed941(); | 3676 o.healthChecks = buildUnnamed922(); |
| 3677 o.id = "foo"; | 3677 o.id = "foo"; |
| 3678 o.instances = buildUnnamed942(); | 3678 o.instances = buildUnnamed923(); |
| 3679 o.kind = "foo"; | 3679 o.kind = "foo"; |
| 3680 o.name = "foo"; | 3680 o.name = "foo"; |
| 3681 o.region = "foo"; | 3681 o.region = "foo"; |
| 3682 o.selfLink = "foo"; | 3682 o.selfLink = "foo"; |
| 3683 o.sessionAffinity = "foo"; | 3683 o.sessionAffinity = "foo"; |
| 3684 } | 3684 } |
| 3685 buildCounterTargetPool--; | 3685 buildCounterTargetPool--; |
| 3686 return o; | 3686 return o; |
| 3687 } | 3687 } |
| 3688 | 3688 |
| 3689 checkTargetPool(api.TargetPool o) { | 3689 checkTargetPool(api.TargetPool o) { |
| 3690 buildCounterTargetPool++; | 3690 buildCounterTargetPool++; |
| 3691 if (buildCounterTargetPool < 3) { | 3691 if (buildCounterTargetPool < 3) { |
| 3692 unittest.expect(o.backupPool, unittest.equals('foo')); | 3692 unittest.expect(o.backupPool, unittest.equals('foo')); |
| 3693 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 3693 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 3694 unittest.expect(o.description, unittest.equals('foo')); | 3694 unittest.expect(o.description, unittest.equals('foo')); |
| 3695 unittest.expect(o.failoverRatio, unittest.equals(42.0)); | 3695 unittest.expect(o.failoverRatio, unittest.equals(42.0)); |
| 3696 checkUnnamed941(o.healthChecks); | 3696 checkUnnamed922(o.healthChecks); |
| 3697 unittest.expect(o.id, unittest.equals('foo')); | 3697 unittest.expect(o.id, unittest.equals('foo')); |
| 3698 checkUnnamed942(o.instances); | 3698 checkUnnamed923(o.instances); |
| 3699 unittest.expect(o.kind, unittest.equals('foo')); | 3699 unittest.expect(o.kind, unittest.equals('foo')); |
| 3700 unittest.expect(o.name, unittest.equals('foo')); | 3700 unittest.expect(o.name, unittest.equals('foo')); |
| 3701 unittest.expect(o.region, unittest.equals('foo')); | 3701 unittest.expect(o.region, unittest.equals('foo')); |
| 3702 unittest.expect(o.selfLink, unittest.equals('foo')); | 3702 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3703 unittest.expect(o.sessionAffinity, unittest.equals('foo')); | 3703 unittest.expect(o.sessionAffinity, unittest.equals('foo')); |
| 3704 } | 3704 } |
| 3705 buildCounterTargetPool--; | 3705 buildCounterTargetPool--; |
| 3706 } | 3706 } |
| 3707 | 3707 |
| 3708 buildUnnamed943() { | 3708 buildUnnamed924() { |
| 3709 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); | 3709 var o = new core.Map<core.String, api.TargetPoolsScopedList>(); |
| 3710 o["x"] = buildTargetPoolsScopedList(); | 3710 o["x"] = buildTargetPoolsScopedList(); |
| 3711 o["y"] = buildTargetPoolsScopedList(); | 3711 o["y"] = buildTargetPoolsScopedList(); |
| 3712 return o; | 3712 return o; |
| 3713 } | 3713 } |
| 3714 | 3714 |
| 3715 checkUnnamed943(core.Map<core.String, api.TargetPoolsScopedList> o) { | 3715 checkUnnamed924(core.Map<core.String, api.TargetPoolsScopedList> o) { |
| 3716 unittest.expect(o, unittest.hasLength(2)); | 3716 unittest.expect(o, unittest.hasLength(2)); |
| 3717 checkTargetPoolsScopedList(o["x"]); | 3717 checkTargetPoolsScopedList(o["x"]); |
| 3718 checkTargetPoolsScopedList(o["y"]); | 3718 checkTargetPoolsScopedList(o["y"]); |
| 3719 } | 3719 } |
| 3720 | 3720 |
| 3721 core.int buildCounterTargetPoolAggregatedList = 0; | 3721 core.int buildCounterTargetPoolAggregatedList = 0; |
| 3722 buildTargetPoolAggregatedList() { | 3722 buildTargetPoolAggregatedList() { |
| 3723 var o = new api.TargetPoolAggregatedList(); | 3723 var o = new api.TargetPoolAggregatedList(); |
| 3724 buildCounterTargetPoolAggregatedList++; | 3724 buildCounterTargetPoolAggregatedList++; |
| 3725 if (buildCounterTargetPoolAggregatedList < 3) { | 3725 if (buildCounterTargetPoolAggregatedList < 3) { |
| 3726 o.id = "foo"; | 3726 o.id = "foo"; |
| 3727 o.items = buildUnnamed943(); | 3727 o.items = buildUnnamed924(); |
| 3728 o.kind = "foo"; | 3728 o.kind = "foo"; |
| 3729 o.nextPageToken = "foo"; | 3729 o.nextPageToken = "foo"; |
| 3730 o.selfLink = "foo"; | 3730 o.selfLink = "foo"; |
| 3731 } | 3731 } |
| 3732 buildCounterTargetPoolAggregatedList--; | 3732 buildCounterTargetPoolAggregatedList--; |
| 3733 return o; | 3733 return o; |
| 3734 } | 3734 } |
| 3735 | 3735 |
| 3736 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { | 3736 checkTargetPoolAggregatedList(api.TargetPoolAggregatedList o) { |
| 3737 buildCounterTargetPoolAggregatedList++; | 3737 buildCounterTargetPoolAggregatedList++; |
| 3738 if (buildCounterTargetPoolAggregatedList < 3) { | 3738 if (buildCounterTargetPoolAggregatedList < 3) { |
| 3739 unittest.expect(o.id, unittest.equals('foo')); | 3739 unittest.expect(o.id, unittest.equals('foo')); |
| 3740 checkUnnamed943(o.items); | 3740 checkUnnamed924(o.items); |
| 3741 unittest.expect(o.kind, unittest.equals('foo')); | 3741 unittest.expect(o.kind, unittest.equals('foo')); |
| 3742 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3742 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3743 unittest.expect(o.selfLink, unittest.equals('foo')); | 3743 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3744 } | 3744 } |
| 3745 buildCounterTargetPoolAggregatedList--; | 3745 buildCounterTargetPoolAggregatedList--; |
| 3746 } | 3746 } |
| 3747 | 3747 |
| 3748 buildUnnamed944() { | 3748 buildUnnamed925() { |
| 3749 var o = new core.List<api.HealthStatus>(); | 3749 var o = new core.List<api.HealthStatus>(); |
| 3750 o.add(buildHealthStatus()); | 3750 o.add(buildHealthStatus()); |
| 3751 o.add(buildHealthStatus()); | 3751 o.add(buildHealthStatus()); |
| 3752 return o; | 3752 return o; |
| 3753 } | 3753 } |
| 3754 | 3754 |
| 3755 checkUnnamed944(core.List<api.HealthStatus> o) { | 3755 checkUnnamed925(core.List<api.HealthStatus> o) { |
| 3756 unittest.expect(o, unittest.hasLength(2)); | 3756 unittest.expect(o, unittest.hasLength(2)); |
| 3757 checkHealthStatus(o[0]); | 3757 checkHealthStatus(o[0]); |
| 3758 checkHealthStatus(o[1]); | 3758 checkHealthStatus(o[1]); |
| 3759 } | 3759 } |
| 3760 | 3760 |
| 3761 core.int buildCounterTargetPoolInstanceHealth = 0; | 3761 core.int buildCounterTargetPoolInstanceHealth = 0; |
| 3762 buildTargetPoolInstanceHealth() { | 3762 buildTargetPoolInstanceHealth() { |
| 3763 var o = new api.TargetPoolInstanceHealth(); | 3763 var o = new api.TargetPoolInstanceHealth(); |
| 3764 buildCounterTargetPoolInstanceHealth++; | 3764 buildCounterTargetPoolInstanceHealth++; |
| 3765 if (buildCounterTargetPoolInstanceHealth < 3) { | 3765 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 3766 o.healthStatus = buildUnnamed944(); | 3766 o.healthStatus = buildUnnamed925(); |
| 3767 o.kind = "foo"; | 3767 o.kind = "foo"; |
| 3768 } | 3768 } |
| 3769 buildCounterTargetPoolInstanceHealth--; | 3769 buildCounterTargetPoolInstanceHealth--; |
| 3770 return o; | 3770 return o; |
| 3771 } | 3771 } |
| 3772 | 3772 |
| 3773 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { | 3773 checkTargetPoolInstanceHealth(api.TargetPoolInstanceHealth o) { |
| 3774 buildCounterTargetPoolInstanceHealth++; | 3774 buildCounterTargetPoolInstanceHealth++; |
| 3775 if (buildCounterTargetPoolInstanceHealth < 3) { | 3775 if (buildCounterTargetPoolInstanceHealth < 3) { |
| 3776 checkUnnamed944(o.healthStatus); | 3776 checkUnnamed925(o.healthStatus); |
| 3777 unittest.expect(o.kind, unittest.equals('foo')); | 3777 unittest.expect(o.kind, unittest.equals('foo')); |
| 3778 } | 3778 } |
| 3779 buildCounterTargetPoolInstanceHealth--; | 3779 buildCounterTargetPoolInstanceHealth--; |
| 3780 } | 3780 } |
| 3781 | 3781 |
| 3782 buildUnnamed945() { | 3782 buildUnnamed926() { |
| 3783 var o = new core.List<api.TargetPool>(); | 3783 var o = new core.List<api.TargetPool>(); |
| 3784 o.add(buildTargetPool()); | 3784 o.add(buildTargetPool()); |
| 3785 o.add(buildTargetPool()); | 3785 o.add(buildTargetPool()); |
| 3786 return o; | 3786 return o; |
| 3787 } | 3787 } |
| 3788 | 3788 |
| 3789 checkUnnamed945(core.List<api.TargetPool> o) { | 3789 checkUnnamed926(core.List<api.TargetPool> o) { |
| 3790 unittest.expect(o, unittest.hasLength(2)); | 3790 unittest.expect(o, unittest.hasLength(2)); |
| 3791 checkTargetPool(o[0]); | 3791 checkTargetPool(o[0]); |
| 3792 checkTargetPool(o[1]); | 3792 checkTargetPool(o[1]); |
| 3793 } | 3793 } |
| 3794 | 3794 |
| 3795 core.int buildCounterTargetPoolList = 0; | 3795 core.int buildCounterTargetPoolList = 0; |
| 3796 buildTargetPoolList() { | 3796 buildTargetPoolList() { |
| 3797 var o = new api.TargetPoolList(); | 3797 var o = new api.TargetPoolList(); |
| 3798 buildCounterTargetPoolList++; | 3798 buildCounterTargetPoolList++; |
| 3799 if (buildCounterTargetPoolList < 3) { | 3799 if (buildCounterTargetPoolList < 3) { |
| 3800 o.id = "foo"; | 3800 o.id = "foo"; |
| 3801 o.items = buildUnnamed945(); | 3801 o.items = buildUnnamed926(); |
| 3802 o.kind = "foo"; | 3802 o.kind = "foo"; |
| 3803 o.nextPageToken = "foo"; | 3803 o.nextPageToken = "foo"; |
| 3804 o.selfLink = "foo"; | 3804 o.selfLink = "foo"; |
| 3805 } | 3805 } |
| 3806 buildCounterTargetPoolList--; | 3806 buildCounterTargetPoolList--; |
| 3807 return o; | 3807 return o; |
| 3808 } | 3808 } |
| 3809 | 3809 |
| 3810 checkTargetPoolList(api.TargetPoolList o) { | 3810 checkTargetPoolList(api.TargetPoolList o) { |
| 3811 buildCounterTargetPoolList++; | 3811 buildCounterTargetPoolList++; |
| 3812 if (buildCounterTargetPoolList < 3) { | 3812 if (buildCounterTargetPoolList < 3) { |
| 3813 unittest.expect(o.id, unittest.equals('foo')); | 3813 unittest.expect(o.id, unittest.equals('foo')); |
| 3814 checkUnnamed945(o.items); | 3814 checkUnnamed926(o.items); |
| 3815 unittest.expect(o.kind, unittest.equals('foo')); | 3815 unittest.expect(o.kind, unittest.equals('foo')); |
| 3816 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3816 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3817 unittest.expect(o.selfLink, unittest.equals('foo')); | 3817 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3818 } | 3818 } |
| 3819 buildCounterTargetPoolList--; | 3819 buildCounterTargetPoolList--; |
| 3820 } | 3820 } |
| 3821 | 3821 |
| 3822 buildUnnamed946() { | 3822 buildUnnamed927() { |
| 3823 var o = new core.List<api.HealthCheckReference>(); | 3823 var o = new core.List<api.HealthCheckReference>(); |
| 3824 o.add(buildHealthCheckReference()); | 3824 o.add(buildHealthCheckReference()); |
| 3825 o.add(buildHealthCheckReference()); | 3825 o.add(buildHealthCheckReference()); |
| 3826 return o; | 3826 return o; |
| 3827 } | 3827 } |
| 3828 | 3828 |
| 3829 checkUnnamed946(core.List<api.HealthCheckReference> o) { | 3829 checkUnnamed927(core.List<api.HealthCheckReference> o) { |
| 3830 unittest.expect(o, unittest.hasLength(2)); | 3830 unittest.expect(o, unittest.hasLength(2)); |
| 3831 checkHealthCheckReference(o[0]); | 3831 checkHealthCheckReference(o[0]); |
| 3832 checkHealthCheckReference(o[1]); | 3832 checkHealthCheckReference(o[1]); |
| 3833 } | 3833 } |
| 3834 | 3834 |
| 3835 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; | 3835 core.int buildCounterTargetPoolsAddHealthCheckRequest = 0; |
| 3836 buildTargetPoolsAddHealthCheckRequest() { | 3836 buildTargetPoolsAddHealthCheckRequest() { |
| 3837 var o = new api.TargetPoolsAddHealthCheckRequest(); | 3837 var o = new api.TargetPoolsAddHealthCheckRequest(); |
| 3838 buildCounterTargetPoolsAddHealthCheckRequest++; | 3838 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 3839 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 3839 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 3840 o.healthChecks = buildUnnamed946(); | 3840 o.healthChecks = buildUnnamed927(); |
| 3841 } | 3841 } |
| 3842 buildCounterTargetPoolsAddHealthCheckRequest--; | 3842 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 3843 return o; | 3843 return o; |
| 3844 } | 3844 } |
| 3845 | 3845 |
| 3846 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { | 3846 checkTargetPoolsAddHealthCheckRequest(api.TargetPoolsAddHealthCheckRequest o) { |
| 3847 buildCounterTargetPoolsAddHealthCheckRequest++; | 3847 buildCounterTargetPoolsAddHealthCheckRequest++; |
| 3848 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { | 3848 if (buildCounterTargetPoolsAddHealthCheckRequest < 3) { |
| 3849 checkUnnamed946(o.healthChecks); | 3849 checkUnnamed927(o.healthChecks); |
| 3850 } | 3850 } |
| 3851 buildCounterTargetPoolsAddHealthCheckRequest--; | 3851 buildCounterTargetPoolsAddHealthCheckRequest--; |
| 3852 } | 3852 } |
| 3853 | 3853 |
| 3854 buildUnnamed947() { | 3854 buildUnnamed928() { |
| 3855 var o = new core.List<api.InstanceReference>(); | 3855 var o = new core.List<api.InstanceReference>(); |
| 3856 o.add(buildInstanceReference()); | 3856 o.add(buildInstanceReference()); |
| 3857 o.add(buildInstanceReference()); | 3857 o.add(buildInstanceReference()); |
| 3858 return o; | 3858 return o; |
| 3859 } | 3859 } |
| 3860 | 3860 |
| 3861 checkUnnamed947(core.List<api.InstanceReference> o) { | 3861 checkUnnamed928(core.List<api.InstanceReference> o) { |
| 3862 unittest.expect(o, unittest.hasLength(2)); | 3862 unittest.expect(o, unittest.hasLength(2)); |
| 3863 checkInstanceReference(o[0]); | 3863 checkInstanceReference(o[0]); |
| 3864 checkInstanceReference(o[1]); | 3864 checkInstanceReference(o[1]); |
| 3865 } | 3865 } |
| 3866 | 3866 |
| 3867 core.int buildCounterTargetPoolsAddInstanceRequest = 0; | 3867 core.int buildCounterTargetPoolsAddInstanceRequest = 0; |
| 3868 buildTargetPoolsAddInstanceRequest() { | 3868 buildTargetPoolsAddInstanceRequest() { |
| 3869 var o = new api.TargetPoolsAddInstanceRequest(); | 3869 var o = new api.TargetPoolsAddInstanceRequest(); |
| 3870 buildCounterTargetPoolsAddInstanceRequest++; | 3870 buildCounterTargetPoolsAddInstanceRequest++; |
| 3871 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 3871 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 3872 o.instances = buildUnnamed947(); | 3872 o.instances = buildUnnamed928(); |
| 3873 } | 3873 } |
| 3874 buildCounterTargetPoolsAddInstanceRequest--; | 3874 buildCounterTargetPoolsAddInstanceRequest--; |
| 3875 return o; | 3875 return o; |
| 3876 } | 3876 } |
| 3877 | 3877 |
| 3878 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { | 3878 checkTargetPoolsAddInstanceRequest(api.TargetPoolsAddInstanceRequest o) { |
| 3879 buildCounterTargetPoolsAddInstanceRequest++; | 3879 buildCounterTargetPoolsAddInstanceRequest++; |
| 3880 if (buildCounterTargetPoolsAddInstanceRequest < 3) { | 3880 if (buildCounterTargetPoolsAddInstanceRequest < 3) { |
| 3881 checkUnnamed947(o.instances); | 3881 checkUnnamed928(o.instances); |
| 3882 } | 3882 } |
| 3883 buildCounterTargetPoolsAddInstanceRequest--; | 3883 buildCounterTargetPoolsAddInstanceRequest--; |
| 3884 } | 3884 } |
| 3885 | 3885 |
| 3886 buildUnnamed948() { | 3886 buildUnnamed929() { |
| 3887 var o = new core.List<api.HealthCheckReference>(); | 3887 var o = new core.List<api.HealthCheckReference>(); |
| 3888 o.add(buildHealthCheckReference()); | 3888 o.add(buildHealthCheckReference()); |
| 3889 o.add(buildHealthCheckReference()); | 3889 o.add(buildHealthCheckReference()); |
| 3890 return o; | 3890 return o; |
| 3891 } | 3891 } |
| 3892 | 3892 |
| 3893 checkUnnamed948(core.List<api.HealthCheckReference> o) { | 3893 checkUnnamed929(core.List<api.HealthCheckReference> o) { |
| 3894 unittest.expect(o, unittest.hasLength(2)); | 3894 unittest.expect(o, unittest.hasLength(2)); |
| 3895 checkHealthCheckReference(o[0]); | 3895 checkHealthCheckReference(o[0]); |
| 3896 checkHealthCheckReference(o[1]); | 3896 checkHealthCheckReference(o[1]); |
| 3897 } | 3897 } |
| 3898 | 3898 |
| 3899 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; | 3899 core.int buildCounterTargetPoolsRemoveHealthCheckRequest = 0; |
| 3900 buildTargetPoolsRemoveHealthCheckRequest() { | 3900 buildTargetPoolsRemoveHealthCheckRequest() { |
| 3901 var o = new api.TargetPoolsRemoveHealthCheckRequest(); | 3901 var o = new api.TargetPoolsRemoveHealthCheckRequest(); |
| 3902 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 3902 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 3903 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 3903 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 3904 o.healthChecks = buildUnnamed948(); | 3904 o.healthChecks = buildUnnamed929(); |
| 3905 } | 3905 } |
| 3906 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 3906 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 3907 return o; | 3907 return o; |
| 3908 } | 3908 } |
| 3909 | 3909 |
| 3910 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { | 3910 checkTargetPoolsRemoveHealthCheckRequest(api.TargetPoolsRemoveHealthCheckRequest
o) { |
| 3911 buildCounterTargetPoolsRemoveHealthCheckRequest++; | 3911 buildCounterTargetPoolsRemoveHealthCheckRequest++; |
| 3912 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { | 3912 if (buildCounterTargetPoolsRemoveHealthCheckRequest < 3) { |
| 3913 checkUnnamed948(o.healthChecks); | 3913 checkUnnamed929(o.healthChecks); |
| 3914 } | 3914 } |
| 3915 buildCounterTargetPoolsRemoveHealthCheckRequest--; | 3915 buildCounterTargetPoolsRemoveHealthCheckRequest--; |
| 3916 } | 3916 } |
| 3917 | 3917 |
| 3918 buildUnnamed949() { | 3918 buildUnnamed930() { |
| 3919 var o = new core.List<api.InstanceReference>(); | 3919 var o = new core.List<api.InstanceReference>(); |
| 3920 o.add(buildInstanceReference()); | 3920 o.add(buildInstanceReference()); |
| 3921 o.add(buildInstanceReference()); | 3921 o.add(buildInstanceReference()); |
| 3922 return o; | 3922 return o; |
| 3923 } | 3923 } |
| 3924 | 3924 |
| 3925 checkUnnamed949(core.List<api.InstanceReference> o) { | 3925 checkUnnamed930(core.List<api.InstanceReference> o) { |
| 3926 unittest.expect(o, unittest.hasLength(2)); | 3926 unittest.expect(o, unittest.hasLength(2)); |
| 3927 checkInstanceReference(o[0]); | 3927 checkInstanceReference(o[0]); |
| 3928 checkInstanceReference(o[1]); | 3928 checkInstanceReference(o[1]); |
| 3929 } | 3929 } |
| 3930 | 3930 |
| 3931 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; | 3931 core.int buildCounterTargetPoolsRemoveInstanceRequest = 0; |
| 3932 buildTargetPoolsRemoveInstanceRequest() { | 3932 buildTargetPoolsRemoveInstanceRequest() { |
| 3933 var o = new api.TargetPoolsRemoveInstanceRequest(); | 3933 var o = new api.TargetPoolsRemoveInstanceRequest(); |
| 3934 buildCounterTargetPoolsRemoveInstanceRequest++; | 3934 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 3935 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 3935 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 3936 o.instances = buildUnnamed949(); | 3936 o.instances = buildUnnamed930(); |
| 3937 } | 3937 } |
| 3938 buildCounterTargetPoolsRemoveInstanceRequest--; | 3938 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 3939 return o; | 3939 return o; |
| 3940 } | 3940 } |
| 3941 | 3941 |
| 3942 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { | 3942 checkTargetPoolsRemoveInstanceRequest(api.TargetPoolsRemoveInstanceRequest o) { |
| 3943 buildCounterTargetPoolsRemoveInstanceRequest++; | 3943 buildCounterTargetPoolsRemoveInstanceRequest++; |
| 3944 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { | 3944 if (buildCounterTargetPoolsRemoveInstanceRequest < 3) { |
| 3945 checkUnnamed949(o.instances); | 3945 checkUnnamed930(o.instances); |
| 3946 } | 3946 } |
| 3947 buildCounterTargetPoolsRemoveInstanceRequest--; | 3947 buildCounterTargetPoolsRemoveInstanceRequest--; |
| 3948 } | 3948 } |
| 3949 | 3949 |
| 3950 buildUnnamed950() { | 3950 buildUnnamed931() { |
| 3951 var o = new core.List<api.TargetPool>(); | 3951 var o = new core.List<api.TargetPool>(); |
| 3952 o.add(buildTargetPool()); | 3952 o.add(buildTargetPool()); |
| 3953 o.add(buildTargetPool()); | 3953 o.add(buildTargetPool()); |
| 3954 return o; | 3954 return o; |
| 3955 } | 3955 } |
| 3956 | 3956 |
| 3957 checkUnnamed950(core.List<api.TargetPool> o) { | 3957 checkUnnamed931(core.List<api.TargetPool> o) { |
| 3958 unittest.expect(o, unittest.hasLength(2)); | 3958 unittest.expect(o, unittest.hasLength(2)); |
| 3959 checkTargetPool(o[0]); | 3959 checkTargetPool(o[0]); |
| 3960 checkTargetPool(o[1]); | 3960 checkTargetPool(o[1]); |
| 3961 } | 3961 } |
| 3962 | 3962 |
| 3963 core.int buildCounterTargetPoolsScopedListWarningData = 0; | 3963 core.int buildCounterTargetPoolsScopedListWarningData = 0; |
| 3964 buildTargetPoolsScopedListWarningData() { | 3964 buildTargetPoolsScopedListWarningData() { |
| 3965 var o = new api.TargetPoolsScopedListWarningData(); | 3965 var o = new api.TargetPoolsScopedListWarningData(); |
| 3966 buildCounterTargetPoolsScopedListWarningData++; | 3966 buildCounterTargetPoolsScopedListWarningData++; |
| 3967 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 3967 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 3968 o.key = "foo"; | 3968 o.key = "foo"; |
| 3969 o.value = "foo"; | 3969 o.value = "foo"; |
| 3970 } | 3970 } |
| 3971 buildCounterTargetPoolsScopedListWarningData--; | 3971 buildCounterTargetPoolsScopedListWarningData--; |
| 3972 return o; | 3972 return o; |
| 3973 } | 3973 } |
| 3974 | 3974 |
| 3975 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { | 3975 checkTargetPoolsScopedListWarningData(api.TargetPoolsScopedListWarningData o) { |
| 3976 buildCounterTargetPoolsScopedListWarningData++; | 3976 buildCounterTargetPoolsScopedListWarningData++; |
| 3977 if (buildCounterTargetPoolsScopedListWarningData < 3) { | 3977 if (buildCounterTargetPoolsScopedListWarningData < 3) { |
| 3978 unittest.expect(o.key, unittest.equals('foo')); | 3978 unittest.expect(o.key, unittest.equals('foo')); |
| 3979 unittest.expect(o.value, unittest.equals('foo')); | 3979 unittest.expect(o.value, unittest.equals('foo')); |
| 3980 } | 3980 } |
| 3981 buildCounterTargetPoolsScopedListWarningData--; | 3981 buildCounterTargetPoolsScopedListWarningData--; |
| 3982 } | 3982 } |
| 3983 | 3983 |
| 3984 buildUnnamed951() { | 3984 buildUnnamed932() { |
| 3985 var o = new core.List<api.TargetPoolsScopedListWarningData>(); | 3985 var o = new core.List<api.TargetPoolsScopedListWarningData>(); |
| 3986 o.add(buildTargetPoolsScopedListWarningData()); | 3986 o.add(buildTargetPoolsScopedListWarningData()); |
| 3987 o.add(buildTargetPoolsScopedListWarningData()); | 3987 o.add(buildTargetPoolsScopedListWarningData()); |
| 3988 return o; | 3988 return o; |
| 3989 } | 3989 } |
| 3990 | 3990 |
| 3991 checkUnnamed951(core.List<api.TargetPoolsScopedListWarningData> o) { | 3991 checkUnnamed932(core.List<api.TargetPoolsScopedListWarningData> o) { |
| 3992 unittest.expect(o, unittest.hasLength(2)); | 3992 unittest.expect(o, unittest.hasLength(2)); |
| 3993 checkTargetPoolsScopedListWarningData(o[0]); | 3993 checkTargetPoolsScopedListWarningData(o[0]); |
| 3994 checkTargetPoolsScopedListWarningData(o[1]); | 3994 checkTargetPoolsScopedListWarningData(o[1]); |
| 3995 } | 3995 } |
| 3996 | 3996 |
| 3997 core.int buildCounterTargetPoolsScopedListWarning = 0; | 3997 core.int buildCounterTargetPoolsScopedListWarning = 0; |
| 3998 buildTargetPoolsScopedListWarning() { | 3998 buildTargetPoolsScopedListWarning() { |
| 3999 var o = new api.TargetPoolsScopedListWarning(); | 3999 var o = new api.TargetPoolsScopedListWarning(); |
| 4000 buildCounterTargetPoolsScopedListWarning++; | 4000 buildCounterTargetPoolsScopedListWarning++; |
| 4001 if (buildCounterTargetPoolsScopedListWarning < 3) { | 4001 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 4002 o.code = "foo"; | 4002 o.code = "foo"; |
| 4003 o.data = buildUnnamed951(); | 4003 o.data = buildUnnamed932(); |
| 4004 o.message = "foo"; | 4004 o.message = "foo"; |
| 4005 } | 4005 } |
| 4006 buildCounterTargetPoolsScopedListWarning--; | 4006 buildCounterTargetPoolsScopedListWarning--; |
| 4007 return o; | 4007 return o; |
| 4008 } | 4008 } |
| 4009 | 4009 |
| 4010 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { | 4010 checkTargetPoolsScopedListWarning(api.TargetPoolsScopedListWarning o) { |
| 4011 buildCounterTargetPoolsScopedListWarning++; | 4011 buildCounterTargetPoolsScopedListWarning++; |
| 4012 if (buildCounterTargetPoolsScopedListWarning < 3) { | 4012 if (buildCounterTargetPoolsScopedListWarning < 3) { |
| 4013 unittest.expect(o.code, unittest.equals('foo')); | 4013 unittest.expect(o.code, unittest.equals('foo')); |
| 4014 checkUnnamed951(o.data); | 4014 checkUnnamed932(o.data); |
| 4015 unittest.expect(o.message, unittest.equals('foo')); | 4015 unittest.expect(o.message, unittest.equals('foo')); |
| 4016 } | 4016 } |
| 4017 buildCounterTargetPoolsScopedListWarning--; | 4017 buildCounterTargetPoolsScopedListWarning--; |
| 4018 } | 4018 } |
| 4019 | 4019 |
| 4020 core.int buildCounterTargetPoolsScopedList = 0; | 4020 core.int buildCounterTargetPoolsScopedList = 0; |
| 4021 buildTargetPoolsScopedList() { | 4021 buildTargetPoolsScopedList() { |
| 4022 var o = new api.TargetPoolsScopedList(); | 4022 var o = new api.TargetPoolsScopedList(); |
| 4023 buildCounterTargetPoolsScopedList++; | 4023 buildCounterTargetPoolsScopedList++; |
| 4024 if (buildCounterTargetPoolsScopedList < 3) { | 4024 if (buildCounterTargetPoolsScopedList < 3) { |
| 4025 o.targetPools = buildUnnamed950(); | 4025 o.targetPools = buildUnnamed931(); |
| 4026 o.warning = buildTargetPoolsScopedListWarning(); | 4026 o.warning = buildTargetPoolsScopedListWarning(); |
| 4027 } | 4027 } |
| 4028 buildCounterTargetPoolsScopedList--; | 4028 buildCounterTargetPoolsScopedList--; |
| 4029 return o; | 4029 return o; |
| 4030 } | 4030 } |
| 4031 | 4031 |
| 4032 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { | 4032 checkTargetPoolsScopedList(api.TargetPoolsScopedList o) { |
| 4033 buildCounterTargetPoolsScopedList++; | 4033 buildCounterTargetPoolsScopedList++; |
| 4034 if (buildCounterTargetPoolsScopedList < 3) { | 4034 if (buildCounterTargetPoolsScopedList < 3) { |
| 4035 checkUnnamed950(o.targetPools); | 4035 checkUnnamed931(o.targetPools); |
| 4036 checkTargetPoolsScopedListWarning(o.warning); | 4036 checkTargetPoolsScopedListWarning(o.warning); |
| 4037 } | 4037 } |
| 4038 buildCounterTargetPoolsScopedList--; | 4038 buildCounterTargetPoolsScopedList--; |
| 4039 } | 4039 } |
| 4040 | 4040 |
| 4041 core.int buildCounterTargetReference = 0; | 4041 core.int buildCounterTargetReference = 0; |
| 4042 buildTargetReference() { | 4042 buildTargetReference() { |
| 4043 var o = new api.TargetReference(); | 4043 var o = new api.TargetReference(); |
| 4044 buildCounterTargetReference++; | 4044 buildCounterTargetReference++; |
| 4045 if (buildCounterTargetReference < 3) { | 4045 if (buildCounterTargetReference < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 4075 buildCounterTestFailure++; | 4075 buildCounterTestFailure++; |
| 4076 if (buildCounterTestFailure < 3) { | 4076 if (buildCounterTestFailure < 3) { |
| 4077 unittest.expect(o.actualService, unittest.equals('foo')); | 4077 unittest.expect(o.actualService, unittest.equals('foo')); |
| 4078 unittest.expect(o.expectedService, unittest.equals('foo')); | 4078 unittest.expect(o.expectedService, unittest.equals('foo')); |
| 4079 unittest.expect(o.host, unittest.equals('foo')); | 4079 unittest.expect(o.host, unittest.equals('foo')); |
| 4080 unittest.expect(o.path, unittest.equals('foo')); | 4080 unittest.expect(o.path, unittest.equals('foo')); |
| 4081 } | 4081 } |
| 4082 buildCounterTestFailure--; | 4082 buildCounterTestFailure--; |
| 4083 } | 4083 } |
| 4084 | 4084 |
| 4085 buildUnnamed952() { | 4085 buildUnnamed933() { |
| 4086 var o = new core.List<api.HostRule>(); | 4086 var o = new core.List<api.HostRule>(); |
| 4087 o.add(buildHostRule()); | 4087 o.add(buildHostRule()); |
| 4088 o.add(buildHostRule()); | 4088 o.add(buildHostRule()); |
| 4089 return o; | 4089 return o; |
| 4090 } | 4090 } |
| 4091 | 4091 |
| 4092 checkUnnamed952(core.List<api.HostRule> o) { | 4092 checkUnnamed933(core.List<api.HostRule> o) { |
| 4093 unittest.expect(o, unittest.hasLength(2)); | 4093 unittest.expect(o, unittest.hasLength(2)); |
| 4094 checkHostRule(o[0]); | 4094 checkHostRule(o[0]); |
| 4095 checkHostRule(o[1]); | 4095 checkHostRule(o[1]); |
| 4096 } | 4096 } |
| 4097 | 4097 |
| 4098 buildUnnamed953() { | 4098 buildUnnamed934() { |
| 4099 var o = new core.List<api.PathMatcher>(); | 4099 var o = new core.List<api.PathMatcher>(); |
| 4100 o.add(buildPathMatcher()); | 4100 o.add(buildPathMatcher()); |
| 4101 o.add(buildPathMatcher()); | 4101 o.add(buildPathMatcher()); |
| 4102 return o; | 4102 return o; |
| 4103 } | 4103 } |
| 4104 | 4104 |
| 4105 checkUnnamed953(core.List<api.PathMatcher> o) { | 4105 checkUnnamed934(core.List<api.PathMatcher> o) { |
| 4106 unittest.expect(o, unittest.hasLength(2)); | 4106 unittest.expect(o, unittest.hasLength(2)); |
| 4107 checkPathMatcher(o[0]); | 4107 checkPathMatcher(o[0]); |
| 4108 checkPathMatcher(o[1]); | 4108 checkPathMatcher(o[1]); |
| 4109 } | 4109 } |
| 4110 | 4110 |
| 4111 buildUnnamed954() { | 4111 buildUnnamed935() { |
| 4112 var o = new core.List<api.UrlMapTest>(); | 4112 var o = new core.List<api.UrlMapTest>(); |
| 4113 o.add(buildUrlMapTest()); | 4113 o.add(buildUrlMapTest()); |
| 4114 o.add(buildUrlMapTest()); | 4114 o.add(buildUrlMapTest()); |
| 4115 return o; | 4115 return o; |
| 4116 } | 4116 } |
| 4117 | 4117 |
| 4118 checkUnnamed954(core.List<api.UrlMapTest> o) { | 4118 checkUnnamed935(core.List<api.UrlMapTest> o) { |
| 4119 unittest.expect(o, unittest.hasLength(2)); | 4119 unittest.expect(o, unittest.hasLength(2)); |
| 4120 checkUrlMapTest(o[0]); | 4120 checkUrlMapTest(o[0]); |
| 4121 checkUrlMapTest(o[1]); | 4121 checkUrlMapTest(o[1]); |
| 4122 } | 4122 } |
| 4123 | 4123 |
| 4124 core.int buildCounterUrlMap = 0; | 4124 core.int buildCounterUrlMap = 0; |
| 4125 buildUrlMap() { | 4125 buildUrlMap() { |
| 4126 var o = new api.UrlMap(); | 4126 var o = new api.UrlMap(); |
| 4127 buildCounterUrlMap++; | 4127 buildCounterUrlMap++; |
| 4128 if (buildCounterUrlMap < 3) { | 4128 if (buildCounterUrlMap < 3) { |
| 4129 o.creationTimestamp = "foo"; | 4129 o.creationTimestamp = "foo"; |
| 4130 o.defaultService = "foo"; | 4130 o.defaultService = "foo"; |
| 4131 o.description = "foo"; | 4131 o.description = "foo"; |
| 4132 o.fingerprint = "foo"; | 4132 o.fingerprint = "foo"; |
| 4133 o.hostRules = buildUnnamed952(); | 4133 o.hostRules = buildUnnamed933(); |
| 4134 o.id = "foo"; | 4134 o.id = "foo"; |
| 4135 o.kind = "foo"; | 4135 o.kind = "foo"; |
| 4136 o.name = "foo"; | 4136 o.name = "foo"; |
| 4137 o.pathMatchers = buildUnnamed953(); | 4137 o.pathMatchers = buildUnnamed934(); |
| 4138 o.selfLink = "foo"; | 4138 o.selfLink = "foo"; |
| 4139 o.tests = buildUnnamed954(); | 4139 o.tests = buildUnnamed935(); |
| 4140 } | 4140 } |
| 4141 buildCounterUrlMap--; | 4141 buildCounterUrlMap--; |
| 4142 return o; | 4142 return o; |
| 4143 } | 4143 } |
| 4144 | 4144 |
| 4145 checkUrlMap(api.UrlMap o) { | 4145 checkUrlMap(api.UrlMap o) { |
| 4146 buildCounterUrlMap++; | 4146 buildCounterUrlMap++; |
| 4147 if (buildCounterUrlMap < 3) { | 4147 if (buildCounterUrlMap < 3) { |
| 4148 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4148 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4149 unittest.expect(o.defaultService, unittest.equals('foo')); | 4149 unittest.expect(o.defaultService, unittest.equals('foo')); |
| 4150 unittest.expect(o.description, unittest.equals('foo')); | 4150 unittest.expect(o.description, unittest.equals('foo')); |
| 4151 unittest.expect(o.fingerprint, unittest.equals('foo')); | 4151 unittest.expect(o.fingerprint, unittest.equals('foo')); |
| 4152 checkUnnamed952(o.hostRules); | 4152 checkUnnamed933(o.hostRules); |
| 4153 unittest.expect(o.id, unittest.equals('foo')); | 4153 unittest.expect(o.id, unittest.equals('foo')); |
| 4154 unittest.expect(o.kind, unittest.equals('foo')); | 4154 unittest.expect(o.kind, unittest.equals('foo')); |
| 4155 unittest.expect(o.name, unittest.equals('foo')); | 4155 unittest.expect(o.name, unittest.equals('foo')); |
| 4156 checkUnnamed953(o.pathMatchers); | 4156 checkUnnamed934(o.pathMatchers); |
| 4157 unittest.expect(o.selfLink, unittest.equals('foo')); | 4157 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4158 checkUnnamed954(o.tests); | 4158 checkUnnamed935(o.tests); |
| 4159 } | 4159 } |
| 4160 buildCounterUrlMap--; | 4160 buildCounterUrlMap--; |
| 4161 } | 4161 } |
| 4162 | 4162 |
| 4163 buildUnnamed955() { | 4163 buildUnnamed936() { |
| 4164 var o = new core.List<api.UrlMap>(); | 4164 var o = new core.List<api.UrlMap>(); |
| 4165 o.add(buildUrlMap()); | 4165 o.add(buildUrlMap()); |
| 4166 o.add(buildUrlMap()); | 4166 o.add(buildUrlMap()); |
| 4167 return o; | 4167 return o; |
| 4168 } | 4168 } |
| 4169 | 4169 |
| 4170 checkUnnamed955(core.List<api.UrlMap> o) { | 4170 checkUnnamed936(core.List<api.UrlMap> o) { |
| 4171 unittest.expect(o, unittest.hasLength(2)); | 4171 unittest.expect(o, unittest.hasLength(2)); |
| 4172 checkUrlMap(o[0]); | 4172 checkUrlMap(o[0]); |
| 4173 checkUrlMap(o[1]); | 4173 checkUrlMap(o[1]); |
| 4174 } | 4174 } |
| 4175 | 4175 |
| 4176 core.int buildCounterUrlMapList = 0; | 4176 core.int buildCounterUrlMapList = 0; |
| 4177 buildUrlMapList() { | 4177 buildUrlMapList() { |
| 4178 var o = new api.UrlMapList(); | 4178 var o = new api.UrlMapList(); |
| 4179 buildCounterUrlMapList++; | 4179 buildCounterUrlMapList++; |
| 4180 if (buildCounterUrlMapList < 3) { | 4180 if (buildCounterUrlMapList < 3) { |
| 4181 o.id = "foo"; | 4181 o.id = "foo"; |
| 4182 o.items = buildUnnamed955(); | 4182 o.items = buildUnnamed936(); |
| 4183 o.kind = "foo"; | 4183 o.kind = "foo"; |
| 4184 o.nextPageToken = "foo"; | 4184 o.nextPageToken = "foo"; |
| 4185 o.selfLink = "foo"; | 4185 o.selfLink = "foo"; |
| 4186 } | 4186 } |
| 4187 buildCounterUrlMapList--; | 4187 buildCounterUrlMapList--; |
| 4188 return o; | 4188 return o; |
| 4189 } | 4189 } |
| 4190 | 4190 |
| 4191 checkUrlMapList(api.UrlMapList o) { | 4191 checkUrlMapList(api.UrlMapList o) { |
| 4192 buildCounterUrlMapList++; | 4192 buildCounterUrlMapList++; |
| 4193 if (buildCounterUrlMapList < 3) { | 4193 if (buildCounterUrlMapList < 3) { |
| 4194 unittest.expect(o.id, unittest.equals('foo')); | 4194 unittest.expect(o.id, unittest.equals('foo')); |
| 4195 checkUnnamed955(o.items); | 4195 checkUnnamed936(o.items); |
| 4196 unittest.expect(o.kind, unittest.equals('foo')); | 4196 unittest.expect(o.kind, unittest.equals('foo')); |
| 4197 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4197 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4198 unittest.expect(o.selfLink, unittest.equals('foo')); | 4198 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4199 } | 4199 } |
| 4200 buildCounterUrlMapList--; | 4200 buildCounterUrlMapList--; |
| 4201 } | 4201 } |
| 4202 | 4202 |
| 4203 core.int buildCounterUrlMapReference = 0; | 4203 core.int buildCounterUrlMapReference = 0; |
| 4204 buildUrlMapReference() { | 4204 buildUrlMapReference() { |
| 4205 var o = new api.UrlMapReference(); | 4205 var o = new api.UrlMapReference(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4237 buildCounterUrlMapTest++; | 4237 buildCounterUrlMapTest++; |
| 4238 if (buildCounterUrlMapTest < 3) { | 4238 if (buildCounterUrlMapTest < 3) { |
| 4239 unittest.expect(o.description, unittest.equals('foo')); | 4239 unittest.expect(o.description, unittest.equals('foo')); |
| 4240 unittest.expect(o.host, unittest.equals('foo')); | 4240 unittest.expect(o.host, unittest.equals('foo')); |
| 4241 unittest.expect(o.path, unittest.equals('foo')); | 4241 unittest.expect(o.path, unittest.equals('foo')); |
| 4242 unittest.expect(o.service, unittest.equals('foo')); | 4242 unittest.expect(o.service, unittest.equals('foo')); |
| 4243 } | 4243 } |
| 4244 buildCounterUrlMapTest--; | 4244 buildCounterUrlMapTest--; |
| 4245 } | 4245 } |
| 4246 | 4246 |
| 4247 buildUnnamed956() { | 4247 buildUnnamed937() { |
| 4248 var o = new core.List<core.String>(); | 4248 var o = new core.List<core.String>(); |
| 4249 o.add("foo"); | 4249 o.add("foo"); |
| 4250 o.add("foo"); | 4250 o.add("foo"); |
| 4251 return o; | 4251 return o; |
| 4252 } | 4252 } |
| 4253 | 4253 |
| 4254 checkUnnamed956(core.List<core.String> o) { | 4254 checkUnnamed937(core.List<core.String> o) { |
| 4255 unittest.expect(o, unittest.hasLength(2)); | 4255 unittest.expect(o, unittest.hasLength(2)); |
| 4256 unittest.expect(o[0], unittest.equals('foo')); | 4256 unittest.expect(o[0], unittest.equals('foo')); |
| 4257 unittest.expect(o[1], unittest.equals('foo')); | 4257 unittest.expect(o[1], unittest.equals('foo')); |
| 4258 } | 4258 } |
| 4259 | 4259 |
| 4260 buildUnnamed957() { | 4260 buildUnnamed938() { |
| 4261 var o = new core.List<api.TestFailure>(); | 4261 var o = new core.List<api.TestFailure>(); |
| 4262 o.add(buildTestFailure()); | 4262 o.add(buildTestFailure()); |
| 4263 o.add(buildTestFailure()); | 4263 o.add(buildTestFailure()); |
| 4264 return o; | 4264 return o; |
| 4265 } | 4265 } |
| 4266 | 4266 |
| 4267 checkUnnamed957(core.List<api.TestFailure> o) { | 4267 checkUnnamed938(core.List<api.TestFailure> o) { |
| 4268 unittest.expect(o, unittest.hasLength(2)); | 4268 unittest.expect(o, unittest.hasLength(2)); |
| 4269 checkTestFailure(o[0]); | 4269 checkTestFailure(o[0]); |
| 4270 checkTestFailure(o[1]); | 4270 checkTestFailure(o[1]); |
| 4271 } | 4271 } |
| 4272 | 4272 |
| 4273 core.int buildCounterUrlMapValidationResult = 0; | 4273 core.int buildCounterUrlMapValidationResult = 0; |
| 4274 buildUrlMapValidationResult() { | 4274 buildUrlMapValidationResult() { |
| 4275 var o = new api.UrlMapValidationResult(); | 4275 var o = new api.UrlMapValidationResult(); |
| 4276 buildCounterUrlMapValidationResult++; | 4276 buildCounterUrlMapValidationResult++; |
| 4277 if (buildCounterUrlMapValidationResult < 3) { | 4277 if (buildCounterUrlMapValidationResult < 3) { |
| 4278 o.loadErrors = buildUnnamed956(); | 4278 o.loadErrors = buildUnnamed937(); |
| 4279 o.loadSucceeded = true; | 4279 o.loadSucceeded = true; |
| 4280 o.testFailures = buildUnnamed957(); | 4280 o.testFailures = buildUnnamed938(); |
| 4281 o.testPassed = true; | 4281 o.testPassed = true; |
| 4282 } | 4282 } |
| 4283 buildCounterUrlMapValidationResult--; | 4283 buildCounterUrlMapValidationResult--; |
| 4284 return o; | 4284 return o; |
| 4285 } | 4285 } |
| 4286 | 4286 |
| 4287 checkUrlMapValidationResult(api.UrlMapValidationResult o) { | 4287 checkUrlMapValidationResult(api.UrlMapValidationResult o) { |
| 4288 buildCounterUrlMapValidationResult++; | 4288 buildCounterUrlMapValidationResult++; |
| 4289 if (buildCounterUrlMapValidationResult < 3) { | 4289 if (buildCounterUrlMapValidationResult < 3) { |
| 4290 checkUnnamed956(o.loadErrors); | 4290 checkUnnamed937(o.loadErrors); |
| 4291 unittest.expect(o.loadSucceeded, unittest.isTrue); | 4291 unittest.expect(o.loadSucceeded, unittest.isTrue); |
| 4292 checkUnnamed957(o.testFailures); | 4292 checkUnnamed938(o.testFailures); |
| 4293 unittest.expect(o.testPassed, unittest.isTrue); | 4293 unittest.expect(o.testPassed, unittest.isTrue); |
| 4294 } | 4294 } |
| 4295 buildCounterUrlMapValidationResult--; | 4295 buildCounterUrlMapValidationResult--; |
| 4296 } | 4296 } |
| 4297 | 4297 |
| 4298 core.int buildCounterUrlMapsValidateRequest = 0; | 4298 core.int buildCounterUrlMapsValidateRequest = 0; |
| 4299 buildUrlMapsValidateRequest() { | 4299 buildUrlMapsValidateRequest() { |
| 4300 var o = new api.UrlMapsValidateRequest(); | 4300 var o = new api.UrlMapsValidateRequest(); |
| 4301 buildCounterUrlMapsValidateRequest++; | 4301 buildCounterUrlMapsValidateRequest++; |
| 4302 if (buildCounterUrlMapsValidateRequest < 3) { | 4302 if (buildCounterUrlMapsValidateRequest < 3) { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4372 buildCounterZoneMaintenanceWindows++; | 4372 buildCounterZoneMaintenanceWindows++; |
| 4373 if (buildCounterZoneMaintenanceWindows < 3) { | 4373 if (buildCounterZoneMaintenanceWindows < 3) { |
| 4374 unittest.expect(o.beginTime, unittest.equals('foo')); | 4374 unittest.expect(o.beginTime, unittest.equals('foo')); |
| 4375 unittest.expect(o.description, unittest.equals('foo')); | 4375 unittest.expect(o.description, unittest.equals('foo')); |
| 4376 unittest.expect(o.endTime, unittest.equals('foo')); | 4376 unittest.expect(o.endTime, unittest.equals('foo')); |
| 4377 unittest.expect(o.name, unittest.equals('foo')); | 4377 unittest.expect(o.name, unittest.equals('foo')); |
| 4378 } | 4378 } |
| 4379 buildCounterZoneMaintenanceWindows--; | 4379 buildCounterZoneMaintenanceWindows--; |
| 4380 } | 4380 } |
| 4381 | 4381 |
| 4382 buildUnnamed958() { | 4382 buildUnnamed939() { |
| 4383 var o = new core.List<api.ZoneMaintenanceWindows>(); | 4383 var o = new core.List<api.ZoneMaintenanceWindows>(); |
| 4384 o.add(buildZoneMaintenanceWindows()); | 4384 o.add(buildZoneMaintenanceWindows()); |
| 4385 o.add(buildZoneMaintenanceWindows()); | 4385 o.add(buildZoneMaintenanceWindows()); |
| 4386 return o; | 4386 return o; |
| 4387 } | 4387 } |
| 4388 | 4388 |
| 4389 checkUnnamed958(core.List<api.ZoneMaintenanceWindows> o) { | 4389 checkUnnamed939(core.List<api.ZoneMaintenanceWindows> o) { |
| 4390 unittest.expect(o, unittest.hasLength(2)); | 4390 unittest.expect(o, unittest.hasLength(2)); |
| 4391 checkZoneMaintenanceWindows(o[0]); | 4391 checkZoneMaintenanceWindows(o[0]); |
| 4392 checkZoneMaintenanceWindows(o[1]); | 4392 checkZoneMaintenanceWindows(o[1]); |
| 4393 } | 4393 } |
| 4394 | 4394 |
| 4395 core.int buildCounterZone = 0; | 4395 core.int buildCounterZone = 0; |
| 4396 buildZone() { | 4396 buildZone() { |
| 4397 var o = new api.Zone(); | 4397 var o = new api.Zone(); |
| 4398 buildCounterZone++; | 4398 buildCounterZone++; |
| 4399 if (buildCounterZone < 3) { | 4399 if (buildCounterZone < 3) { |
| 4400 o.creationTimestamp = "foo"; | 4400 o.creationTimestamp = "foo"; |
| 4401 o.deprecated = buildDeprecationStatus(); | 4401 o.deprecated = buildDeprecationStatus(); |
| 4402 o.description = "foo"; | 4402 o.description = "foo"; |
| 4403 o.id = "foo"; | 4403 o.id = "foo"; |
| 4404 o.kind = "foo"; | 4404 o.kind = "foo"; |
| 4405 o.maintenanceWindows = buildUnnamed958(); | 4405 o.maintenanceWindows = buildUnnamed939(); |
| 4406 o.name = "foo"; | 4406 o.name = "foo"; |
| 4407 o.region = "foo"; | 4407 o.region = "foo"; |
| 4408 o.selfLink = "foo"; | 4408 o.selfLink = "foo"; |
| 4409 o.status = "foo"; | 4409 o.status = "foo"; |
| 4410 } | 4410 } |
| 4411 buildCounterZone--; | 4411 buildCounterZone--; |
| 4412 return o; | 4412 return o; |
| 4413 } | 4413 } |
| 4414 | 4414 |
| 4415 checkZone(api.Zone o) { | 4415 checkZone(api.Zone o) { |
| 4416 buildCounterZone++; | 4416 buildCounterZone++; |
| 4417 if (buildCounterZone < 3) { | 4417 if (buildCounterZone < 3) { |
| 4418 unittest.expect(o.creationTimestamp, unittest.equals('foo')); | 4418 unittest.expect(o.creationTimestamp, unittest.equals('foo')); |
| 4419 checkDeprecationStatus(o.deprecated); | 4419 checkDeprecationStatus(o.deprecated); |
| 4420 unittest.expect(o.description, unittest.equals('foo')); | 4420 unittest.expect(o.description, unittest.equals('foo')); |
| 4421 unittest.expect(o.id, unittest.equals('foo')); | 4421 unittest.expect(o.id, unittest.equals('foo')); |
| 4422 unittest.expect(o.kind, unittest.equals('foo')); | 4422 unittest.expect(o.kind, unittest.equals('foo')); |
| 4423 checkUnnamed958(o.maintenanceWindows); | 4423 checkUnnamed939(o.maintenanceWindows); |
| 4424 unittest.expect(o.name, unittest.equals('foo')); | 4424 unittest.expect(o.name, unittest.equals('foo')); |
| 4425 unittest.expect(o.region, unittest.equals('foo')); | 4425 unittest.expect(o.region, unittest.equals('foo')); |
| 4426 unittest.expect(o.selfLink, unittest.equals('foo')); | 4426 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4427 unittest.expect(o.status, unittest.equals('foo')); | 4427 unittest.expect(o.status, unittest.equals('foo')); |
| 4428 } | 4428 } |
| 4429 buildCounterZone--; | 4429 buildCounterZone--; |
| 4430 } | 4430 } |
| 4431 | 4431 |
| 4432 buildUnnamed959() { | 4432 buildUnnamed940() { |
| 4433 var o = new core.List<api.Zone>(); | 4433 var o = new core.List<api.Zone>(); |
| 4434 o.add(buildZone()); | 4434 o.add(buildZone()); |
| 4435 o.add(buildZone()); | 4435 o.add(buildZone()); |
| 4436 return o; | 4436 return o; |
| 4437 } | 4437 } |
| 4438 | 4438 |
| 4439 checkUnnamed959(core.List<api.Zone> o) { | 4439 checkUnnamed940(core.List<api.Zone> o) { |
| 4440 unittest.expect(o, unittest.hasLength(2)); | 4440 unittest.expect(o, unittest.hasLength(2)); |
| 4441 checkZone(o[0]); | 4441 checkZone(o[0]); |
| 4442 checkZone(o[1]); | 4442 checkZone(o[1]); |
| 4443 } | 4443 } |
| 4444 | 4444 |
| 4445 core.int buildCounterZoneList = 0; | 4445 core.int buildCounterZoneList = 0; |
| 4446 buildZoneList() { | 4446 buildZoneList() { |
| 4447 var o = new api.ZoneList(); | 4447 var o = new api.ZoneList(); |
| 4448 buildCounterZoneList++; | 4448 buildCounterZoneList++; |
| 4449 if (buildCounterZoneList < 3) { | 4449 if (buildCounterZoneList < 3) { |
| 4450 o.id = "foo"; | 4450 o.id = "foo"; |
| 4451 o.items = buildUnnamed959(); | 4451 o.items = buildUnnamed940(); |
| 4452 o.kind = "foo"; | 4452 o.kind = "foo"; |
| 4453 o.nextPageToken = "foo"; | 4453 o.nextPageToken = "foo"; |
| 4454 o.selfLink = "foo"; | 4454 o.selfLink = "foo"; |
| 4455 } | 4455 } |
| 4456 buildCounterZoneList--; | 4456 buildCounterZoneList--; |
| 4457 return o; | 4457 return o; |
| 4458 } | 4458 } |
| 4459 | 4459 |
| 4460 checkZoneList(api.ZoneList o) { | 4460 checkZoneList(api.ZoneList o) { |
| 4461 buildCounterZoneList++; | 4461 buildCounterZoneList++; |
| 4462 if (buildCounterZoneList < 3) { | 4462 if (buildCounterZoneList < 3) { |
| 4463 unittest.expect(o.id, unittest.equals('foo')); | 4463 unittest.expect(o.id, unittest.equals('foo')); |
| 4464 checkUnnamed959(o.items); | 4464 checkUnnamed940(o.items); |
| 4465 unittest.expect(o.kind, unittest.equals('foo')); | 4465 unittest.expect(o.kind, unittest.equals('foo')); |
| 4466 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4466 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4467 unittest.expect(o.selfLink, unittest.equals('foo')); | 4467 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 4468 } | 4468 } |
| 4469 buildCounterZoneList--; | 4469 buildCounterZoneList--; |
| 4470 } | 4470 } |
| 4471 | 4471 |
| 4472 | 4472 |
| 4473 main() { | 4473 main() { |
| 4474 unittest.group("obj-schema-AccessConfig", () { | 4474 unittest.group("obj-schema-AccessConfig", () { |
| (...skipping 7081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11556 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { | 11556 res.list(arg_project, filter: arg_filter, maxResults: arg_maxResults, page
Token: arg_pageToken).then(unittest.expectAsync(((api.ZoneList response) { |
| 11557 checkZoneList(response); | 11557 checkZoneList(response); |
| 11558 }))); | 11558 }))); |
| 11559 }); | 11559 }); |
| 11560 | 11560 |
| 11561 }); | 11561 }); |
| 11562 | 11562 |
| 11563 | 11563 |
| 11564 } | 11564 } |
| 11565 | 11565 |
| OLD | NEW |