This file is indexed.

/usr/lib/python3/dist-packages/googlecloudapis/compute/v1/compute_v1_messages.py is in python3-googlecloudapis 0.9.30+debian1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
"""Generated message classes for compute version v1.

API for the Google Compute Engine service.
"""

from protorpc import messages

from googlecloudapis.apitools.base.py import encoding


package = 'compute'


class AccessConfig(messages.Message):
  """An access configuration attached to an instance's network interface.

  Enums:
    TypeValueValuesEnum: Type of configuration. Must be set to
      "ONE_TO_ONE_NAT". This configures port-for-port NAT to the internet.

  Fields:
    kind: Type of the resource.
    name: Name of this access configuration.
    natIP: An external IP address associated with this instance. Specify an
      unused static IP address available to the project. If not specified, the
      external IP will be drawn from a shared ephemeral pool.
    type: Type of configuration. Must be set to "ONE_TO_ONE_NAT". This
      configures port-for-port NAT to the internet.
  """

  class TypeValueValuesEnum(messages.Enum):
    """Type of configuration. Must be set to "ONE_TO_ONE_NAT". This configures
    port-for-port NAT to the internet.

    Values:
      ONE_TO_ONE_NAT: <no description>
    """
    ONE_TO_ONE_NAT = 0

  kind = messages.StringField(1, default=u'compute#accessConfig')
  name = messages.StringField(2)
  natIP = messages.StringField(3)
  type = messages.EnumField('TypeValueValuesEnum', 4, default=u'ONE_TO_ONE_NAT')


class Address(messages.Message):
  """A reserved address resource.

  Enums:
    StatusValueValuesEnum: The status of the address (output only).

  Fields:
    address: The IP address represented by this resource.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    region: URL of the region where the regional address resides (output
      only). This field is not applicable to global addresses.
    selfLink: Server defined URL for the resource (output only).
    status: The status of the address (output only).
    users: The resources that are using this address resource.
  """

  class StatusValueValuesEnum(messages.Enum):
    """The status of the address (output only).

    Values:
      IN_USE: <no description>
      RESERVED: <no description>
    """
    IN_USE = 0
    RESERVED = 1

  address = messages.StringField(1)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#address')
  name = messages.StringField(6)
  region = messages.StringField(7)
  selfLink = messages.StringField(8)
  status = messages.EnumField('StatusValueValuesEnum', 9)
  users = messages.StringField(10, repeated=True)


class AddressAggregatedList(messages.Message):
  """A AddressAggregatedList object.

  Messages:
    ItemsValue: A map of scoped address lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped address lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped address lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of
        addresses.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A AddressesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('AddressesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#addressAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class AddressList(messages.Message):
  """Contains a list of address resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The address resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for the resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Address', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#addressList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class AddressesScopedList(messages.Message):
  """A AddressesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of addresses
      when the list is empty.

  Fields:
    addresses: List of addresses contained in this scope.
    warning: Informational warning which replaces the list of addresses when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of addresses when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  addresses = messages.MessageField('Address', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class AttachedDisk(messages.Message):
  """An instance-attached disk resource.

  Enums:
    ModeValueValuesEnum: The mode in which to attach this disk, either
      "READ_WRITE" or "READ_ONLY".
    TypeValueValuesEnum: Type of the disk, either "SCRATCH" or "PERSISTENT".
      Note that persistent disks must be created before you can specify them
      here.

  Fields:
    autoDelete: Whether the disk will be auto-deleted when the instance is
      deleted (but not when the disk is detached from the instance).
    boot: Indicates that this is a boot disk. VM will use the first partition
      of the disk for its root filesystem.
    deviceName: Persistent disk only; must be unique within the instance when
      specified. This represents a unique device name that is reflected into
      the /dev/ tree of a Linux operating system running within the instance.
      If not specified, a default will be chosen by the system.
    index: A zero-based index to assign to this disk, where 0 is reserved for
      the boot disk. If not specified, the server will choose an appropriate
      value (output only).
    initializeParams: Initialization parameters.
    kind: Type of the resource.
    licenses: Public visible licenses.
    mode: The mode in which to attach this disk, either "READ_WRITE" or
      "READ_ONLY".
    source: Persistent disk only; the URL of the persistent disk resource.
    type: Type of the disk, either "SCRATCH" or "PERSISTENT". Note that
      persistent disks must be created before you can specify them here.
  """

  class ModeValueValuesEnum(messages.Enum):
    """The mode in which to attach this disk, either "READ_WRITE" or
    "READ_ONLY".

    Values:
      READ_ONLY: <no description>
      READ_WRITE: <no description>
    """
    READ_ONLY = 0
    READ_WRITE = 1

  class TypeValueValuesEnum(messages.Enum):
    """Type of the disk, either "SCRATCH" or "PERSISTENT". Note that
    persistent disks must be created before you can specify them here.

    Values:
      PERSISTENT: <no description>
      SCRATCH: <no description>
    """
    PERSISTENT = 0
    SCRATCH = 1

  autoDelete = messages.BooleanField(1)
  boot = messages.BooleanField(2)
  deviceName = messages.StringField(3)
  index = messages.IntegerField(4, variant=messages.Variant.INT32)
  initializeParams = messages.MessageField('AttachedDiskInitializeParams', 5)
  kind = messages.StringField(6, default=u'compute#attachedDisk')
  licenses = messages.StringField(7, repeated=True)
  mode = messages.EnumField('ModeValueValuesEnum', 8)
  source = messages.StringField(9)
  type = messages.EnumField('TypeValueValuesEnum', 10)


class AttachedDiskInitializeParams(messages.Message):
  """Initialization parameters for the new disk (input-only). Can only be
  specified on the boot disk or local SSDs. Mutually exclusive with 'source'.

  Fields:
    diskName: Name of the disk (when not provided defaults to the name of the
      instance).
    diskSizeGb: Size of the disk in base-2 GB.
    diskType: URL of the disk type resource describing which disk type to use
      to create the disk; provided by the client when the disk is created.
    sourceImage: The source image used to create this disk.
  """

  diskName = messages.StringField(1)
  diskSizeGb = messages.IntegerField(2)
  diskType = messages.StringField(3)
  sourceImage = messages.StringField(4)


class Backend(messages.Message):
  """Message containing information of one individual backend.

  Enums:
    BalancingModeValueValuesEnum: The balancing mode of this backend, default
      is UTILIZATION.

  Fields:
    balancingMode: The balancing mode of this backend, default is UTILIZATION.
    capacityScaler: The multiplier (a value between 0 and 1e6) of the max
      capacity (CPU or RPS, depending on 'balancingMode') the group should
      serve up to. 0 means the group is totally drained. Default value is 1.
      Valid range is [0, 1e6].
    description: An optional textual description of the resource, which is
      provided by the client when the resource is created.
    group: URL of a zonal Cloud Resource View resource. This resource view
      defines the list of instances that serve traffic. Member virtual machine
      instances from each resource view must live in the same zone as the
      resource view itself. No two backends in a backend service are allowed
      to use same Resource View resource.
    maxRate: The max RPS of the group. Can be used with either balancing mode,
      but required if RATE mode. For RATE mode, either maxRate or
      maxRatePerInstance must be set.
    maxRatePerInstance: The max RPS that a single backed instance can handle.
      This is used to calculate the capacity of the group. Can be used in
      either balancing mode. For RATE mode, either maxRate or
      maxRatePerInstance must be set.
    maxUtilization: Used when 'balancingMode' is UTILIZATION. This ratio
      defines the CPU utilization target for the group. The default is 0.8.
      Valid range is [0, 1].
  """

  class BalancingModeValueValuesEnum(messages.Enum):
    """The balancing mode of this backend, default is UTILIZATION.

    Values:
      RATE: <no description>
      UTILIZATION: <no description>
    """
    RATE = 0
    UTILIZATION = 1

  balancingMode = messages.EnumField('BalancingModeValueValuesEnum', 1)
  capacityScaler = messages.FloatField(2, variant=messages.Variant.FLOAT)
  description = messages.StringField(3)
  group = messages.StringField(4)
  maxRate = messages.IntegerField(5, variant=messages.Variant.INT32)
  maxRatePerInstance = messages.FloatField(6, variant=messages.Variant.FLOAT)
  maxUtilization = messages.FloatField(7, variant=messages.Variant.FLOAT)


class BackendService(messages.Message):
  """A BackendService resource. This resource defines a group of backend VMs
  together with their serving capacity.

  Enums:
    ProtocolValueValuesEnum:

  Fields:
    backends: The list of backends that serve this BackendService.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    fingerprint: Fingerprint of this resource. A hash of the contents stored
      in this object. This field is used in optimistic locking. This field
      will be ignored when inserting a BackendService. An up-to-date
      fingerprint must be provided in order to update the BackendService.
    healthChecks: The list of URLs to the HttpHealthCheck resource for health
      checking this BackendService. Currently at most one health check can be
      specified, and a health check is required.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    port: The TCP port to connect on the backend. The default value is 80.
    portName: Name of backend port. The same name should appear in the
      resource views referenced by this service. Required.
    protocol: A ProtocolValueValuesEnum attribute.
    selfLink: Server defined URL for the resource (output only).
    timeoutSec: How many seconds to wait for the backend before considering it
      a failed request. Default is 30 seconds.
  """

  class ProtocolValueValuesEnum(messages.Enum):
    """ProtocolValueValuesEnum enum type.

    Values:
      HTTP: <no description>
    """
    HTTP = 0

  backends = messages.MessageField('Backend', 1, repeated=True)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  fingerprint = messages.BytesField(4)
  healthChecks = messages.StringField(5, repeated=True)
  id = messages.IntegerField(6, variant=messages.Variant.UINT64)
  kind = messages.StringField(7, default=u'compute#backendService')
  name = messages.StringField(8)
  port = messages.IntegerField(9, variant=messages.Variant.INT32)
  portName = messages.StringField(10)
  protocol = messages.EnumField('ProtocolValueValuesEnum', 11)
  selfLink = messages.StringField(12)
  timeoutSec = messages.IntegerField(13, variant=messages.Variant.INT32)


class BackendServiceGroupHealth(messages.Message):
  """A BackendServiceGroupHealth object.

  Fields:
    healthStatus: A HealthStatus attribute.
    kind: Type of resource.
  """

  healthStatus = messages.MessageField('HealthStatus', 1, repeated=True)
  kind = messages.StringField(2, default=u'compute#backendServiceGroupHealth')


class BackendServiceList(messages.Message):
  """Contains a list of BackendService resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The BackendService resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('BackendService', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#backendServiceList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class ComputeAddressesAggregatedListRequest(messages.Message):
  """A ComputeAddressesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeAddressesDeleteRequest(messages.Message):
  """A ComputeAddressesDeleteRequest object.

  Fields:
    address: Name of the address resource to delete.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  address = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeAddressesGetRequest(messages.Message):
  """A ComputeAddressesGetRequest object.

  Fields:
    address: Name of the address resource to return.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  address = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeAddressesInsertRequest(messages.Message):
  """A ComputeAddressesInsertRequest object.

  Fields:
    address: A Address resource to be passed as the request body.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  address = messages.MessageField('Address', 1)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeAddressesListRequest(messages.Message):
  """A ComputeAddressesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  region = messages.StringField(5, required=True)


class ComputeBackendServicesDeleteRequest(messages.Message):
  """A ComputeBackendServicesDeleteRequest object.

  Fields:
    backendService: Name of the BackendService resource to delete.
    project: Name of the project scoping this request.
  """

  backendService = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeBackendServicesGetHealthRequest(messages.Message):
  """A ComputeBackendServicesGetHealthRequest object.

  Fields:
    backendService: Name of the BackendService resource to which the queried
      instance belongs.
    project: A string attribute.
    resourceGroupReference: A ResourceGroupReference resource to be passed as
      the request body.
  """

  backendService = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  resourceGroupReference = messages.MessageField('ResourceGroupReference', 3)


class ComputeBackendServicesGetRequest(messages.Message):
  """A ComputeBackendServicesGetRequest object.

  Fields:
    backendService: Name of the BackendService resource to return.
    project: Name of the project scoping this request.
  """

  backendService = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeBackendServicesInsertRequest(messages.Message):
  """A ComputeBackendServicesInsertRequest object.

  Fields:
    backendService: A BackendService resource to be passed as the request
      body.
    project: Name of the project scoping this request.
  """

  backendService = messages.MessageField('BackendService', 1)
  project = messages.StringField(2, required=True)


class ComputeBackendServicesListRequest(messages.Message):
  """A ComputeBackendServicesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeBackendServicesPatchRequest(messages.Message):
  """A ComputeBackendServicesPatchRequest object.

  Fields:
    backendService: Name of the BackendService resource to update.
    backendServiceResource: A BackendService resource to be passed as the
      request body.
    project: Name of the project scoping this request.
  """

  backendService = messages.StringField(1, required=True)
  backendServiceResource = messages.MessageField('BackendService', 2)
  project = messages.StringField(3, required=True)


class ComputeBackendServicesUpdateRequest(messages.Message):
  """A ComputeBackendServicesUpdateRequest object.

  Fields:
    backendService: Name of the BackendService resource to update.
    backendServiceResource: A BackendService resource to be passed as the
      request body.
    project: Name of the project scoping this request.
  """

  backendService = messages.StringField(1, required=True)
  backendServiceResource = messages.MessageField('BackendService', 2)
  project = messages.StringField(3, required=True)


class ComputeDiskTypesAggregatedListRequest(messages.Message):
  """A ComputeDiskTypesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeDiskTypesGetRequest(messages.Message):
  """A ComputeDiskTypesGetRequest object.

  Fields:
    diskType: Name of the disk type resource to return.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  diskType = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeDiskTypesListRequest(messages.Message):
  """A ComputeDiskTypesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeDisksAggregatedListRequest(messages.Message):
  """A ComputeDisksAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeDisksCreateSnapshotRequest(messages.Message):
  """A ComputeDisksCreateSnapshotRequest object.

  Fields:
    disk: Name of the persistent disk resource to snapshot.
    project: Name of the project scoping this request.
    snapshot: A Snapshot resource to be passed as the request body.
    zone: Name of the zone scoping this request.
  """

  disk = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  snapshot = messages.MessageField('Snapshot', 3)
  zone = messages.StringField(4, required=True)


class ComputeDisksDeleteRequest(messages.Message):
  """A ComputeDisksDeleteRequest object.

  Fields:
    disk: Name of the persistent disk resource to delete.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  disk = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeDisksGetRequest(messages.Message):
  """A ComputeDisksGetRequest object.

  Fields:
    disk: Name of the persistent disk resource to return.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  disk = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeDisksInsertRequest(messages.Message):
  """A ComputeDisksInsertRequest object.

  Fields:
    disk: A Disk resource to be passed as the request body.
    project: Name of the project scoping this request.
    sourceImage: Optional. Source image to restore onto a disk.
    zone: Name of the zone scoping this request.
  """

  disk = messages.MessageField('Disk', 1)
  project = messages.StringField(2, required=True)
  sourceImage = messages.StringField(3)
  zone = messages.StringField(4, required=True)


class ComputeDisksListRequest(messages.Message):
  """A ComputeDisksListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeFirewallsDeleteRequest(messages.Message):
  """A ComputeFirewallsDeleteRequest object.

  Fields:
    firewall: Name of the firewall resource to delete.
    project: Name of the project scoping this request.
  """

  firewall = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeFirewallsGetRequest(messages.Message):
  """A ComputeFirewallsGetRequest object.

  Fields:
    firewall: Name of the firewall resource to return.
    project: Name of the project scoping this request.
  """

  firewall = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeFirewallsInsertRequest(messages.Message):
  """A ComputeFirewallsInsertRequest object.

  Fields:
    firewall: A Firewall resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  firewall = messages.MessageField('Firewall', 1)
  project = messages.StringField(2, required=True)


class ComputeFirewallsListRequest(messages.Message):
  """A ComputeFirewallsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeFirewallsPatchRequest(messages.Message):
  """A ComputeFirewallsPatchRequest object.

  Fields:
    firewall: Name of the firewall resource to update.
    firewallResource: A Firewall resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  firewall = messages.StringField(1, required=True)
  firewallResource = messages.MessageField('Firewall', 2)
  project = messages.StringField(3, required=True)


class ComputeFirewallsUpdateRequest(messages.Message):
  """A ComputeFirewallsUpdateRequest object.

  Fields:
    firewall: Name of the firewall resource to update.
    firewallResource: A Firewall resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  firewall = messages.StringField(1, required=True)
  firewallResource = messages.MessageField('Firewall', 2)
  project = messages.StringField(3, required=True)


class ComputeForwardingRulesAggregatedListRequest(messages.Message):
  """A ComputeForwardingRulesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeForwardingRulesDeleteRequest(messages.Message):
  """A ComputeForwardingRulesDeleteRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource to delete.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeForwardingRulesGetRequest(messages.Message):
  """A ComputeForwardingRulesGetRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource to return.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeForwardingRulesInsertRequest(messages.Message):
  """A ComputeForwardingRulesInsertRequest object.

  Fields:
    forwardingRule: A ForwardingRule resource to be passed as the request
      body.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  forwardingRule = messages.MessageField('ForwardingRule', 1)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeForwardingRulesListRequest(messages.Message):
  """A ComputeForwardingRulesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  region = messages.StringField(5, required=True)


class ComputeForwardingRulesSetTargetRequest(messages.Message):
  """A ComputeForwardingRulesSetTargetRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource in which target is to
      be set.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
    targetReference: A TargetReference resource to be passed as the request
      body.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)
  targetReference = messages.MessageField('TargetReference', 4)


class ComputeGlobalAddressesDeleteRequest(messages.Message):
  """A ComputeGlobalAddressesDeleteRequest object.

  Fields:
    address: Name of the address resource to delete.
    project: Name of the project scoping this request.
  """

  address = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalAddressesGetRequest(messages.Message):
  """A ComputeGlobalAddressesGetRequest object.

  Fields:
    address: Name of the address resource to return.
    project: Name of the project scoping this request.
  """

  address = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalAddressesInsertRequest(messages.Message):
  """A ComputeGlobalAddressesInsertRequest object.

  Fields:
    address: A Address resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  address = messages.MessageField('Address', 1)
  project = messages.StringField(2, required=True)


class ComputeGlobalAddressesListRequest(messages.Message):
  """A ComputeGlobalAddressesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeGlobalForwardingRulesDeleteRequest(messages.Message):
  """A ComputeGlobalForwardingRulesDeleteRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource to delete.
    project: Name of the project scoping this request.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalForwardingRulesGetRequest(messages.Message):
  """A ComputeGlobalForwardingRulesGetRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource to return.
    project: Name of the project scoping this request.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalForwardingRulesInsertRequest(messages.Message):
  """A ComputeGlobalForwardingRulesInsertRequest object.

  Fields:
    forwardingRule: A ForwardingRule resource to be passed as the request
      body.
    project: Name of the project scoping this request.
  """

  forwardingRule = messages.MessageField('ForwardingRule', 1)
  project = messages.StringField(2, required=True)


class ComputeGlobalForwardingRulesListRequest(messages.Message):
  """A ComputeGlobalForwardingRulesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeGlobalForwardingRulesSetTargetRequest(messages.Message):
  """A ComputeGlobalForwardingRulesSetTargetRequest object.

  Fields:
    forwardingRule: Name of the ForwardingRule resource in which target is to
      be set.
    project: Name of the project scoping this request.
    targetReference: A TargetReference resource to be passed as the request
      body.
  """

  forwardingRule = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  targetReference = messages.MessageField('TargetReference', 3)


class ComputeGlobalOperationsAggregatedListRequest(messages.Message):
  """A ComputeGlobalOperationsAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeGlobalOperationsDeleteRequest(messages.Message):
  """A ComputeGlobalOperationsDeleteRequest object.

  Fields:
    operation: Name of the operation resource to delete.
    project: Name of the project scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalOperationsDeleteResponse(messages.Message):
  """An empty ComputeGlobalOperationsDelete response."""


class ComputeGlobalOperationsGetRequest(messages.Message):
  """A ComputeGlobalOperationsGetRequest object.

  Fields:
    operation: Name of the operation resource to return.
    project: Name of the project scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeGlobalOperationsListRequest(messages.Message):
  """A ComputeGlobalOperationsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeHttpHealthChecksDeleteRequest(messages.Message):
  """A ComputeHttpHealthChecksDeleteRequest object.

  Fields:
    httpHealthCheck: Name of the HttpHealthCheck resource to delete.
    project: Name of the project scoping this request.
  """

  httpHealthCheck = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeHttpHealthChecksGetRequest(messages.Message):
  """A ComputeHttpHealthChecksGetRequest object.

  Fields:
    httpHealthCheck: Name of the HttpHealthCheck resource to return.
    project: Name of the project scoping this request.
  """

  httpHealthCheck = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeHttpHealthChecksInsertRequest(messages.Message):
  """A ComputeHttpHealthChecksInsertRequest object.

  Fields:
    httpHealthCheck: A HttpHealthCheck resource to be passed as the request
      body.
    project: Name of the project scoping this request.
  """

  httpHealthCheck = messages.MessageField('HttpHealthCheck', 1)
  project = messages.StringField(2, required=True)


class ComputeHttpHealthChecksListRequest(messages.Message):
  """A ComputeHttpHealthChecksListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeHttpHealthChecksPatchRequest(messages.Message):
  """A ComputeHttpHealthChecksPatchRequest object.

  Fields:
    httpHealthCheck: Name of the HttpHealthCheck resource to update.
    httpHealthCheckResource: A HttpHealthCheck resource to be passed as the
      request body.
    project: Name of the project scoping this request.
  """

  httpHealthCheck = messages.StringField(1, required=True)
  httpHealthCheckResource = messages.MessageField('HttpHealthCheck', 2)
  project = messages.StringField(3, required=True)


class ComputeHttpHealthChecksUpdateRequest(messages.Message):
  """A ComputeHttpHealthChecksUpdateRequest object.

  Fields:
    httpHealthCheck: Name of the HttpHealthCheck resource to update.
    httpHealthCheckResource: A HttpHealthCheck resource to be passed as the
      request body.
    project: Name of the project scoping this request.
  """

  httpHealthCheck = messages.StringField(1, required=True)
  httpHealthCheckResource = messages.MessageField('HttpHealthCheck', 2)
  project = messages.StringField(3, required=True)


class ComputeImagesDeleteRequest(messages.Message):
  """A ComputeImagesDeleteRequest object.

  Fields:
    image: Name of the image resource to delete.
    project: Name of the project scoping this request.
  """

  image = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeImagesDeprecateRequest(messages.Message):
  """A ComputeImagesDeprecateRequest object.

  Fields:
    deprecationStatus: A DeprecationStatus resource to be passed as the
      request body.
    image: Image name.
    project: Name of the project scoping this request.
  """

  deprecationStatus = messages.MessageField('DeprecationStatus', 1)
  image = messages.StringField(2, required=True)
  project = messages.StringField(3, required=True)


class ComputeImagesGetRequest(messages.Message):
  """A ComputeImagesGetRequest object.

  Fields:
    image: Name of the image resource to return.
    project: Name of the project scoping this request.
  """

  image = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeImagesInsertRequest(messages.Message):
  """A ComputeImagesInsertRequest object.

  Fields:
    image: A Image resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  image = messages.MessageField('Image', 1)
  project = messages.StringField(2, required=True)


class ComputeImagesListRequest(messages.Message):
  """A ComputeImagesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeInstancesAddAccessConfigRequest(messages.Message):
  """A ComputeInstancesAddAccessConfigRequest object.

  Fields:
    accessConfig: A AccessConfig resource to be passed as the request body.
    instance: Instance name.
    networkInterface: Network interface name.
    project: Project name.
    zone: Name of the zone scoping this request.
  """

  accessConfig = messages.MessageField('AccessConfig', 1)
  instance = messages.StringField(2, required=True)
  networkInterface = messages.StringField(3, required=True)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeInstancesAggregatedListRequest(messages.Message):
  """A ComputeInstancesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeInstancesAttachDiskRequest(messages.Message):
  """A ComputeInstancesAttachDiskRequest object.

  Fields:
    attachedDisk: A AttachedDisk resource to be passed as the request body.
    instance: Instance name.
    project: Project name.
    zone: Name of the zone scoping this request.
  """

  attachedDisk = messages.MessageField('AttachedDisk', 1)
  instance = messages.StringField(2, required=True)
  project = messages.StringField(3, required=True)
  zone = messages.StringField(4, required=True)


class ComputeInstancesDeleteAccessConfigRequest(messages.Message):
  """A ComputeInstancesDeleteAccessConfigRequest object.

  Fields:
    accessConfig: Access config name.
    instance: Instance name.
    networkInterface: Network interface name.
    project: Project name.
    zone: Name of the zone scoping this request.
  """

  accessConfig = messages.StringField(1, required=True)
  instance = messages.StringField(2, required=True)
  networkInterface = messages.StringField(3, required=True)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeInstancesDeleteRequest(messages.Message):
  """A ComputeInstancesDeleteRequest object.

  Fields:
    instance: Name of the instance resource to delete.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeInstancesDetachDiskRequest(messages.Message):
  """A ComputeInstancesDetachDiskRequest object.

  Fields:
    deviceName: Disk device name to detach.
    instance: Instance name.
    project: Project name.
    zone: Name of the zone scoping this request.
  """

  deviceName = messages.StringField(1, required=True)
  instance = messages.StringField(2, required=True)
  project = messages.StringField(3, required=True)
  zone = messages.StringField(4, required=True)


class ComputeInstancesGetRequest(messages.Message):
  """A ComputeInstancesGetRequest object.

  Fields:
    instance: Name of the instance resource to return.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeInstancesGetSerialPortOutputRequest(messages.Message):
  """A ComputeInstancesGetSerialPortOutputRequest object.

  Fields:
    instance: Name of the instance scoping this request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeInstancesInsertRequest(messages.Message):
  """A ComputeInstancesInsertRequest object.

  Fields:
    instance: A Instance resource to be passed as the request body.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.MessageField('Instance', 1)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeInstancesListRequest(messages.Message):
  """A ComputeInstancesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeInstancesResetRequest(messages.Message):
  """A ComputeInstancesResetRequest object.

  Fields:
    instance: Name of the instance scoping this request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeInstancesSetDiskAutoDeleteRequest(messages.Message):
  """A ComputeInstancesSetDiskAutoDeleteRequest object.

  Fields:
    autoDelete: Whether to auto-delete the disk when the instance is deleted.
    deviceName: Disk device name to modify.
    instance: Instance name.
    project: Project name.
    zone: Name of the zone scoping this request.
  """

  autoDelete = messages.BooleanField(1, required=True)
  deviceName = messages.StringField(2, required=True)
  instance = messages.StringField(3, required=True)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeInstancesSetMetadataRequest(messages.Message):
  """A ComputeInstancesSetMetadataRequest object.

  Fields:
    instance: Name of the instance scoping this request.
    metadata: A Metadata resource to be passed as the request body.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  metadata = messages.MessageField('Metadata', 2)
  project = messages.StringField(3, required=True)
  zone = messages.StringField(4, required=True)


class ComputeInstancesSetSchedulingRequest(messages.Message):
  """A ComputeInstancesSetSchedulingRequest object.

  Fields:
    instance: Instance name.
    project: Project name.
    scheduling: A Scheduling resource to be passed as the request body.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  scheduling = messages.MessageField('Scheduling', 3)
  zone = messages.StringField(4, required=True)


class ComputeInstancesSetTagsRequest(messages.Message):
  """A ComputeInstancesSetTagsRequest object.

  Fields:
    instance: Name of the instance scoping this request.
    project: Name of the project scoping this request.
    tags: A Tags resource to be passed as the request body.
    zone: Name of the zone scoping this request.
  """

  instance = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  tags = messages.MessageField('Tags', 3)
  zone = messages.StringField(4, required=True)


class ComputeLicensesGetRequest(messages.Message):
  """A ComputeLicensesGetRequest object.

  Fields:
    license: Name of the license resource to return.
    project: Name of the project scoping this request.
  """

  license = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeMachineTypesAggregatedListRequest(messages.Message):
  """A ComputeMachineTypesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeMachineTypesGetRequest(messages.Message):
  """A ComputeMachineTypesGetRequest object.

  Fields:
    machineType: Name of the machine type resource to return.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  machineType = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeMachineTypesListRequest(messages.Message):
  """A ComputeMachineTypesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeNetworksDeleteRequest(messages.Message):
  """A ComputeNetworksDeleteRequest object.

  Fields:
    network: Name of the network resource to delete.
    project: Name of the project scoping this request.
  """

  network = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeNetworksGetRequest(messages.Message):
  """A ComputeNetworksGetRequest object.

  Fields:
    network: Name of the network resource to return.
    project: Name of the project scoping this request.
  """

  network = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)


class ComputeNetworksInsertRequest(messages.Message):
  """A ComputeNetworksInsertRequest object.

  Fields:
    network: A Network resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  network = messages.MessageField('Network', 1)
  project = messages.StringField(2, required=True)


class ComputeNetworksListRequest(messages.Message):
  """A ComputeNetworksListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeProjectsGetRequest(messages.Message):
  """A ComputeProjectsGetRequest object.

  Fields:
    project: Name of the project resource to retrieve.
  """

  project = messages.StringField(1, required=True)


class ComputeProjectsSetCommonInstanceMetadataRequest(messages.Message):
  """A ComputeProjectsSetCommonInstanceMetadataRequest object.

  Fields:
    metadata: A Metadata resource to be passed as the request body.
    project: Name of the project scoping this request.
  """

  metadata = messages.MessageField('Metadata', 1)
  project = messages.StringField(2, required=True)


class ComputeProjectsSetUsageExportBucketRequest(messages.Message):
  """A ComputeProjectsSetUsageExportBucketRequest object.

  Fields:
    project: Name of the project scoping this request.
    usageExportLocation: A UsageExportLocation resource to be passed as the
      request body.
  """

  project = messages.StringField(1, required=True)
  usageExportLocation = messages.MessageField('UsageExportLocation', 2)


class ComputeRegionOperationsDeleteRequest(messages.Message):
  """A ComputeRegionOperationsDeleteRequest object.

  Fields:
    operation: Name of the operation resource to delete.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeRegionOperationsDeleteResponse(messages.Message):
  """An empty ComputeRegionOperationsDelete response."""


class ComputeRegionOperationsGetRequest(messages.Message):
  """A ComputeRegionOperationsGetRequest object.

  Fields:
    operation: Name of the operation resource to return.
    project: Name of the project scoping this request.
    region: Name of the zone scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)


class ComputeRegionOperationsListRequest(messages.Message):
  """A ComputeRegionOperationsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  region = messages.StringField(5, required=True)


class ComputeRegionsGetRequest(messages.Message):
  """A ComputeRegionsGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    region: Name of the region resource to return.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)


class ComputeRegionsListRequest(messages.Message):
  """A ComputeRegionsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeRoutesDeleteRequest(messages.Message):
  """A ComputeRoutesDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    route: Name of the route resource to delete.
  """

  project = messages.StringField(1, required=True)
  route = messages.StringField(2, required=True)


class ComputeRoutesGetRequest(messages.Message):
  """A ComputeRoutesGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    route: Name of the route resource to return.
  """

  project = messages.StringField(1, required=True)
  route = messages.StringField(2, required=True)


class ComputeRoutesInsertRequest(messages.Message):
  """A ComputeRoutesInsertRequest object.

  Fields:
    project: Name of the project scoping this request.
    route: A Route resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  route = messages.MessageField('Route', 2)


class ComputeRoutesListRequest(messages.Message):
  """A ComputeRoutesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeSnapshotsDeleteRequest(messages.Message):
  """A ComputeSnapshotsDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    snapshot: Name of the persistent disk snapshot resource to delete.
  """

  project = messages.StringField(1, required=True)
  snapshot = messages.StringField(2, required=True)


class ComputeSnapshotsGetRequest(messages.Message):
  """A ComputeSnapshotsGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    snapshot: Name of the persistent disk snapshot resource to return.
  """

  project = messages.StringField(1, required=True)
  snapshot = messages.StringField(2, required=True)


class ComputeSnapshotsListRequest(messages.Message):
  """A ComputeSnapshotsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeTargetHttpProxiesDeleteRequest(messages.Message):
  """A ComputeTargetHttpProxiesDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetHttpProxy: Name of the TargetHttpProxy resource to delete.
  """

  project = messages.StringField(1, required=True)
  targetHttpProxy = messages.StringField(2, required=True)


class ComputeTargetHttpProxiesGetRequest(messages.Message):
  """A ComputeTargetHttpProxiesGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetHttpProxy: Name of the TargetHttpProxy resource to return.
  """

  project = messages.StringField(1, required=True)
  targetHttpProxy = messages.StringField(2, required=True)


class ComputeTargetHttpProxiesInsertRequest(messages.Message):
  """A ComputeTargetHttpProxiesInsertRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetHttpProxy: A TargetHttpProxy resource to be passed as the request
      body.
  """

  project = messages.StringField(1, required=True)
  targetHttpProxy = messages.MessageField('TargetHttpProxy', 2)


class ComputeTargetHttpProxiesListRequest(messages.Message):
  """A ComputeTargetHttpProxiesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeTargetHttpProxiesSetUrlMapRequest(messages.Message):
  """A ComputeTargetHttpProxiesSetUrlMapRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetHttpProxy: Name of the TargetHttpProxy resource whose URL map is to
      be set.
    urlMapReference: A UrlMapReference resource to be passed as the request
      body.
  """

  project = messages.StringField(1, required=True)
  targetHttpProxy = messages.StringField(2, required=True)
  urlMapReference = messages.MessageField('UrlMapReference', 3)


class ComputeTargetInstancesAggregatedListRequest(messages.Message):
  """A ComputeTargetInstancesAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeTargetInstancesDeleteRequest(messages.Message):
  """A ComputeTargetInstancesDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetInstance: Name of the TargetInstance resource to delete.
    zone: Name of the zone scoping this request.
  """

  project = messages.StringField(1, required=True)
  targetInstance = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeTargetInstancesGetRequest(messages.Message):
  """A ComputeTargetInstancesGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetInstance: Name of the TargetInstance resource to return.
    zone: Name of the zone scoping this request.
  """

  project = messages.StringField(1, required=True)
  targetInstance = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeTargetInstancesInsertRequest(messages.Message):
  """A ComputeTargetInstancesInsertRequest object.

  Fields:
    project: Name of the project scoping this request.
    targetInstance: A TargetInstance resource to be passed as the request
      body.
    zone: Name of the zone scoping this request.
  """

  project = messages.StringField(1, required=True)
  targetInstance = messages.MessageField('TargetInstance', 2)
  zone = messages.StringField(3, required=True)


class ComputeTargetInstancesListRequest(messages.Message):
  """A ComputeTargetInstancesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeTargetPoolsAddHealthCheckRequest(messages.Message):
  """A ComputeTargetPoolsAddHealthCheckRequest object.

  Fields:
    project: A string attribute.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to which health_check_url is
      to be added.
    targetPoolsAddHealthCheckRequest: A TargetPoolsAddHealthCheckRequest
      resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)
  targetPoolsAddHealthCheckRequest = messages.MessageField('TargetPoolsAddHealthCheckRequest', 4)


class ComputeTargetPoolsAddInstanceRequest(messages.Message):
  """A ComputeTargetPoolsAddInstanceRequest object.

  Fields:
    project: A string attribute.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to which instance_url is to be
      added.
    targetPoolsAddInstanceRequest: A TargetPoolsAddInstanceRequest resource to
      be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)
  targetPoolsAddInstanceRequest = messages.MessageField('TargetPoolsAddInstanceRequest', 4)


class ComputeTargetPoolsAggregatedListRequest(messages.Message):
  """A ComputeTargetPoolsAggregatedListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeTargetPoolsDeleteRequest(messages.Message):
  """A ComputeTargetPoolsDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to delete.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)


class ComputeTargetPoolsGetHealthRequest(messages.Message):
  """A ComputeTargetPoolsGetHealthRequest object.

  Fields:
    instanceReference: A InstanceReference resource to be passed as the
      request body.
    project: A string attribute.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to which the queried instance
      belongs.
  """

  instanceReference = messages.MessageField('InstanceReference', 1)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)
  targetPool = messages.StringField(4, required=True)


class ComputeTargetPoolsGetRequest(messages.Message):
  """A ComputeTargetPoolsGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to return.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)


class ComputeTargetPoolsInsertRequest(messages.Message):
  """A ComputeTargetPoolsInsertRequest object.

  Fields:
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
    targetPool: A TargetPool resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.MessageField('TargetPool', 3)


class ComputeTargetPoolsListRequest(messages.Message):
  """A ComputeTargetPoolsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  region = messages.StringField(5, required=True)


class ComputeTargetPoolsRemoveHealthCheckRequest(messages.Message):
  """A ComputeTargetPoolsRemoveHealthCheckRequest object.

  Fields:
    project: A string attribute.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to which health_check_url is
      to be removed.
    targetPoolsRemoveHealthCheckRequest: A TargetPoolsRemoveHealthCheckRequest
      resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)
  targetPoolsRemoveHealthCheckRequest = messages.MessageField('TargetPoolsRemoveHealthCheckRequest', 4)


class ComputeTargetPoolsRemoveInstanceRequest(messages.Message):
  """A ComputeTargetPoolsRemoveInstanceRequest object.

  Fields:
    project: A string attribute.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource to which instance_url is to be
      removed.
    targetPoolsRemoveInstanceRequest: A TargetPoolsRemoveInstanceRequest
      resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  region = messages.StringField(2, required=True)
  targetPool = messages.StringField(3, required=True)
  targetPoolsRemoveInstanceRequest = messages.MessageField('TargetPoolsRemoveInstanceRequest', 4)


class ComputeTargetPoolsSetBackupRequest(messages.Message):
  """A ComputeTargetPoolsSetBackupRequest object.

  Fields:
    failoverRatio: New failoverRatio value for the containing target pool.
    project: Name of the project scoping this request.
    region: Name of the region scoping this request.
    targetPool: Name of the TargetPool resource for which the backup is to be
      set.
    targetReference: A TargetReference resource to be passed as the request
      body.
  """

  failoverRatio = messages.FloatField(1, variant=messages.Variant.FLOAT)
  project = messages.StringField(2, required=True)
  region = messages.StringField(3, required=True)
  targetPool = messages.StringField(4, required=True)
  targetReference = messages.MessageField('TargetReference', 5)


class ComputeUrlMapsDeleteRequest(messages.Message):
  """A ComputeUrlMapsDeleteRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: Name of the UrlMap resource to delete.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.StringField(2, required=True)


class ComputeUrlMapsGetRequest(messages.Message):
  """A ComputeUrlMapsGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: Name of the UrlMap resource to return.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.StringField(2, required=True)


class ComputeUrlMapsInsertRequest(messages.Message):
  """A ComputeUrlMapsInsertRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: A UrlMap resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.MessageField('UrlMap', 2)


class ComputeUrlMapsListRequest(messages.Message):
  """A ComputeUrlMapsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class ComputeUrlMapsPatchRequest(messages.Message):
  """A ComputeUrlMapsPatchRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: Name of the UrlMap resource to update.
    urlMapResource: A UrlMap resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.StringField(2, required=True)
  urlMapResource = messages.MessageField('UrlMap', 3)


class ComputeUrlMapsUpdateRequest(messages.Message):
  """A ComputeUrlMapsUpdateRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: Name of the UrlMap resource to update.
    urlMapResource: A UrlMap resource to be passed as the request body.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.StringField(2, required=True)
  urlMapResource = messages.MessageField('UrlMap', 3)


class ComputeUrlMapsValidateRequest(messages.Message):
  """A ComputeUrlMapsValidateRequest object.

  Fields:
    project: Name of the project scoping this request.
    urlMap: Name of the UrlMap resource to be validated as.
    urlMapsValidateRequest: A UrlMapsValidateRequest resource to be passed as
      the request body.
  """

  project = messages.StringField(1, required=True)
  urlMap = messages.StringField(2, required=True)
  urlMapsValidateRequest = messages.MessageField('UrlMapsValidateRequest', 3)


class ComputeZoneOperationsDeleteRequest(messages.Message):
  """A ComputeZoneOperationsDeleteRequest object.

  Fields:
    operation: Name of the operation resource to delete.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeZoneOperationsDeleteResponse(messages.Message):
  """An empty ComputeZoneOperationsDelete response."""


class ComputeZoneOperationsGetRequest(messages.Message):
  """A ComputeZoneOperationsGetRequest object.

  Fields:
    operation: Name of the operation resource to return.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  operation = messages.StringField(1, required=True)
  project = messages.StringField(2, required=True)
  zone = messages.StringField(3, required=True)


class ComputeZoneOperationsListRequest(messages.Message):
  """A ComputeZoneOperationsListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
    zone: Name of the zone scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)
  zone = messages.StringField(5, required=True)


class ComputeZonesGetRequest(messages.Message):
  """A ComputeZonesGetRequest object.

  Fields:
    project: Name of the project scoping this request.
    zone: Name of the zone resource to return.
  """

  project = messages.StringField(1, required=True)
  zone = messages.StringField(2, required=True)


class ComputeZonesListRequest(messages.Message):
  """A ComputeZonesListRequest object.

  Fields:
    filter: Optional. Filter expression for filtering listed resources.
    maxResults: Optional. Maximum count of results to be returned. Maximum
      value is 500 and default value is 500.
    pageToken: Optional. Tag returned by a previous list request truncated by
      maxResults. Used to continue a previous list request.
    project: Name of the project scoping this request.
  """

  filter = messages.StringField(1)
  maxResults = messages.IntegerField(2, variant=messages.Variant.UINT32, default=500)
  pageToken = messages.StringField(3)
  project = messages.StringField(4, required=True)


class DeprecationStatus(messages.Message):
  """Deprecation status for a public resource.

  Enums:
    StateValueValuesEnum: The deprecation state. Can be "DEPRECATED",
      "OBSOLETE", or "DELETED". Operations which create a new resource using a
      "DEPRECATED" resource will return successfully, but with a warning
      indicating the deprecated resource and recommending its replacement. New
      uses of "OBSOLETE" or "DELETED" resources will result in an error.

  Fields:
    deleted: An optional RFC3339 timestamp on or after which the deprecation
      state of this resource will be changed to DELETED.
    deprecated: An optional RFC3339 timestamp on or after which the
      deprecation state of this resource will be changed to DEPRECATED.
    obsolete: An optional RFC3339 timestamp on or after which the deprecation
      state of this resource will be changed to OBSOLETE.
    replacement: A URL of the suggested replacement for the deprecated
      resource. The deprecated resource and its replacement must be resources
      of the same kind.
    state: The deprecation state. Can be "DEPRECATED", "OBSOLETE", or
      "DELETED". Operations which create a new resource using a "DEPRECATED"
      resource will return successfully, but with a warning indicating the
      deprecated resource and recommending its replacement. New uses of
      "OBSOLETE" or "DELETED" resources will result in an error.
  """

  class StateValueValuesEnum(messages.Enum):
    """The deprecation state. Can be "DEPRECATED", "OBSOLETE", or "DELETED".
    Operations which create a new resource using a "DEPRECATED" resource will
    return successfully, but with a warning indicating the deprecated resource
    and recommending its replacement. New uses of "OBSOLETE" or "DELETED"
    resources will result in an error.

    Values:
      DELETED: <no description>
      DEPRECATED: <no description>
      OBSOLETE: <no description>
    """
    DELETED = 0
    DEPRECATED = 1
    OBSOLETE = 2

  deleted = messages.StringField(1)
  deprecated = messages.StringField(2)
  obsolete = messages.StringField(3)
  replacement = messages.StringField(4)
  state = messages.EnumField('StateValueValuesEnum', 5)


class Disk(messages.Message):
  """A persistent disk resource.

  Enums:
    StatusValueValuesEnum: The status of disk creation (output only).

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    licenses: Public visible licenses.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    options: Internal use only.
    selfLink: Server defined URL for the resource (output only).
    sizeGb: Size of the persistent disk, specified in GB. This parameter is
      optional when creating a disk from a disk image or a snapshot, otherwise
      it is required.
    sourceImage: The source image used to create this disk. Once the source
      image has been deleted from the system, this field will not be set, even
      if an image with the same name has been re-created.
    sourceImageId: The 'id' value of the image used to create this disk. This
      value may be used to determine whether the disk was created from the
      current or a previous instance of a given image.
    sourceSnapshot: The source snapshot used to create this disk. Once the
      source snapshot has been deleted from the system, this field will be
      cleared, and will not be set even if a snapshot with the same name has
      been re-created.
    sourceSnapshotId: The 'id' value of the snapshot used to create this disk.
      This value may be used to determine whether the disk was created from
      the current or a previous instance of a given disk snapshot.
    status: The status of disk creation (output only).
    type: URL of the disk type resource describing which disk type to use to
      create the disk; provided by the client when the disk is created.
    zone: URL of the zone where the disk resides (output only).
  """

  class StatusValueValuesEnum(messages.Enum):
    """The status of disk creation (output only).

    Values:
      CREATING: <no description>
      FAILED: <no description>
      READY: <no description>
      RESTORING: <no description>
    """
    CREATING = 0
    FAILED = 1
    READY = 2
    RESTORING = 3

  creationTimestamp = messages.StringField(1)
  description = messages.StringField(2)
  id = messages.IntegerField(3, variant=messages.Variant.UINT64)
  kind = messages.StringField(4, default=u'compute#disk')
  licenses = messages.StringField(5, repeated=True)
  name = messages.StringField(6)
  options = messages.StringField(7)
  selfLink = messages.StringField(8)
  sizeGb = messages.IntegerField(9)
  sourceImage = messages.StringField(10)
  sourceImageId = messages.StringField(11)
  sourceSnapshot = messages.StringField(12)
  sourceSnapshotId = messages.StringField(13)
  status = messages.EnumField('StatusValueValuesEnum', 14)
  type = messages.StringField(15)
  zone = messages.StringField(16)


class DiskAggregatedList(messages.Message):
  """A DiskAggregatedList object.

  Messages:
    ItemsValue: A map of scoped disk lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped disk lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped disk lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of disks.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A DisksScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('DisksScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#diskAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class DiskList(messages.Message):
  """Contains a list of persistent disk resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The persistent disk resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Disk', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#diskList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class DiskType(messages.Message):
  """A disk type resource.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    defaultDiskSizeGb: Server defined default disk size in gb (output only).
    deprecated: The deprecation status associated with this disk type.
    description: An optional textual description of the resource.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource.
    selfLink: Server defined URL for the resource (output only).
    validDiskSize: An optional textual descroption of the valid disk size,
      e.g., "10GB-10TB".
    zone: Url of the zone where the disk type resides (output only).
  """

  creationTimestamp = messages.StringField(1)
  defaultDiskSizeGb = messages.IntegerField(2)
  deprecated = messages.MessageField('DeprecationStatus', 3)
  description = messages.StringField(4)
  id = messages.IntegerField(5, variant=messages.Variant.UINT64)
  kind = messages.StringField(6, default=u'compute#diskType')
  name = messages.StringField(7)
  selfLink = messages.StringField(8)
  validDiskSize = messages.StringField(9)
  zone = messages.StringField(10)


class DiskTypeAggregatedList(messages.Message):
  """A DiskTypeAggregatedList object.

  Messages:
    ItemsValue: A map of scoped disk type lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped disk type lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped disk type lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of disk
        types.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A DiskTypesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('DiskTypesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#diskTypeAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class DiskTypeList(messages.Message):
  """Contains a list of disk type resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The disk type resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('DiskType', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#diskTypeList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class DiskTypesScopedList(messages.Message):
  """A DiskTypesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of disk types
      when the list is empty.

  Fields:
    diskTypes: List of disk types contained in this scope.
    warning: Informational warning which replaces the list of disk types when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of disk types when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  diskTypes = messages.MessageField('DiskType', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class DisksScopedList(messages.Message):
  """A DisksScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of disks when
      the list is empty.

  Fields:
    disks: List of disks contained in this scope.
    warning: Informational warning which replaces the list of disks when the
      list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of disks when the list is
    empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  disks = messages.MessageField('Disk', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class Firewall(messages.Message):
  """A firewall resource.

  Messages:
    AllowedValueListEntry: A AllowedValueListEntry object.

  Fields:
    allowed: The list of rules specified by this firewall. Each rule specifies
      a protocol and port-range tuple that describes a permitted connection.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    network: URL of the network to which this firewall is applied; provided by
      the client when the firewall is created.
    selfLink: Server defined URL for the resource (output only).
    sourceRanges: A list of IP address blocks expressed in CIDR format which
      this rule applies to. One or both of sourceRanges and sourceTags may be
      set; an inbound connection is allowed if either the range or the tag of
      the source matches.
    sourceTags: A list of instance tags which this rule applies to. One or
      both of sourceRanges and sourceTags may be set; an inbound connection is
      allowed if either the range or the tag of the source matches.
    targetTags: A list of instance tags indicating sets of instances located
      on network which may make network connections as specified in allowed.
      If no targetTags are specified, the firewall rule applies to all
      instances on the specified network.
  """

  class AllowedValueListEntry(messages.Message):
    """A AllowedValueListEntry object.

    Fields:
      IPProtocol: Required; this is the IP protocol that is allowed for this
        rule. This can either be one of the following well known protocol
        strings ["tcp", "udp", "icmp", "esp", "ah", "sctp"], or the IP
        protocol number.
      ports: An optional list of ports which are allowed. It is an error to
        specify this for any protocol that isn't UDP or TCP. Each entry must
        be either an integer or a range. If not specified, connections through
        any port are allowed.  Example inputs include: ["22"], ["80","443"]
        and ["12345-12349"].
    """

    IPProtocol = messages.StringField(1)
    ports = messages.StringField(2, repeated=True)

  allowed = messages.MessageField('AllowedValueListEntry', 1, repeated=True)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#firewall')
  name = messages.StringField(6)
  network = messages.StringField(7)
  selfLink = messages.StringField(8)
  sourceRanges = messages.StringField(9, repeated=True)
  sourceTags = messages.StringField(10, repeated=True)
  targetTags = messages.StringField(11, repeated=True)


class FirewallList(messages.Message):
  """Contains a list of firewall resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The firewall resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Firewall', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#firewallList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class ForwardingRule(messages.Message):
  """A ForwardingRule resource. A ForwardingRule resource specifies which pool
  of target VMs to forward a packet to if it matches the given [IPAddress,
  IPProtocol, portRange] tuple.

  Enums:
    IPProtocolValueValuesEnum: The IP protocol to which this rule applies,
      valid options are 'TCP', 'UDP', 'ESP', 'AH' or 'SCTP'.

  Fields:
    IPAddress: Value of the reserved IP address that this forwarding rule is
      serving on behalf of. For global forwarding rules, the address must be a
      global IP; for regional forwarding rules, the address must live in the
      same region as the forwarding rule. If left empty (default value), an
      ephemeral IP from the same scope (global or regional) will be assigned.
    IPProtocol: The IP protocol to which this rule applies, valid options are
      'TCP', 'UDP', 'ESP', 'AH' or 'SCTP'.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    portRange: Applicable only when 'IPProtocol' is 'TCP', 'UDP' or 'SCTP',
      only packets addressed to ports in the specified range will be forwarded
      to 'target'. If 'portRange' is left empty (default value), all ports are
      forwarded. Forwarding rules with the same [IPAddress, IPProtocol] pair
      must have disjoint port ranges.
    region: URL of the region where the regional forwarding rule resides
      (output only). This field is not applicable to global forwarding rules.
    selfLink: Server defined URL for the resource (output only).
    target: The URL of the target resource to receive the matched traffic. For
      regional forwarding rules, this target must live in the same region as
      the forwarding rule. For global forwarding rules, this target must be a
      global TargetHttpProxy resource.
  """

  class IPProtocolValueValuesEnum(messages.Enum):
    """The IP protocol to which this rule applies, valid options are 'TCP',
    'UDP', 'ESP', 'AH' or 'SCTP'.

    Values:
      AH: <no description>
      ESP: <no description>
      SCTP: <no description>
      TCP: <no description>
      UDP: <no description>
    """
    AH = 0
    ESP = 1
    SCTP = 2
    TCP = 3
    UDP = 4

  IPAddress = messages.StringField(1)
  IPProtocol = messages.EnumField('IPProtocolValueValuesEnum', 2)
  creationTimestamp = messages.StringField(3)
  description = messages.StringField(4)
  id = messages.IntegerField(5, variant=messages.Variant.UINT64)
  kind = messages.StringField(6, default=u'compute#forwardingRule')
  name = messages.StringField(7)
  portRange = messages.StringField(8)
  region = messages.StringField(9)
  selfLink = messages.StringField(10)
  target = messages.StringField(11)


class ForwardingRuleAggregatedList(messages.Message):
  """A ForwardingRuleAggregatedList object.

  Messages:
    ItemsValue: A map of scoped forwarding rule lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped forwarding rule lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped forwarding rule lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of
        addresses.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A ForwardingRulesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('ForwardingRulesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#forwardingRuleAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class ForwardingRuleList(messages.Message):
  """Contains a list of ForwardingRule resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The ForwardingRule resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('ForwardingRule', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#forwardingRuleList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class ForwardingRulesScopedList(messages.Message):
  """A ForwardingRulesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of forwarding
      rules when the list is empty.

  Fields:
    forwardingRules: List of forwarding rules contained in this scope.
    warning: Informational warning which replaces the list of forwarding rules
      when the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of forwarding rules when
    the list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  forwardingRules = messages.MessageField('ForwardingRule', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class HealthCheckReference(messages.Message):
  """A HealthCheckReference object.

  Fields:
    healthCheck: A string attribute.
  """

  healthCheck = messages.StringField(1)


class HealthStatus(messages.Message):
  """A HealthStatus object.

  Enums:
    HealthStateValueValuesEnum: Health state of the instance.

  Fields:
    healthState: Health state of the instance.
    instance: URL of the instance resource.
    ipAddress: The IP address represented by this resource.
  """

  class HealthStateValueValuesEnum(messages.Enum):
    """Health state of the instance.

    Values:
      HEALTHY: <no description>
      UNHEALTHY: <no description>
    """
    HEALTHY = 0
    UNHEALTHY = 1

  healthState = messages.EnumField('HealthStateValueValuesEnum', 1)
  instance = messages.StringField(2)
  ipAddress = messages.StringField(3)


class HostRule(messages.Message):
  """A host-matching rule for a URL. If matched, will use the named
  PathMatcher to select the BackendService.

  Fields:
    description: A string attribute.
    hosts: The list of host patterns to match. They must be valid hostnames
      except that they may start with *. or *-. The * acts like a glob and
      will match any string of atoms (separated by .s and -s) to the left.
    pathMatcher: The name of the PathMatcher to match the path portion of the
      URL, if the this HostRule matches the URL's host portion.
  """

  description = messages.StringField(1)
  hosts = messages.StringField(2, repeated=True)
  pathMatcher = messages.StringField(3)


class HttpHealthCheck(messages.Message):
  """An HttpHealthCheck resource. This resource defines a template for how
  individual VMs should be checked for health, via HTTP.

  Fields:
    checkIntervalSec: How often (in seconds) to send a health check. The
      default value is 5 seconds.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    healthyThreshold: A so-far unhealthy VM will be marked healthy after this
      many consecutive successes. The default value is 2.
    host: The value of the host header in the HTTP health check request. If
      left empty (default value), the public IP on behalf of which this health
      check is performed will be used.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    port: The TCP port number for the HTTP health check request. The default
      value is 80.
    requestPath: The request path of the HTTP health check request. The
      default value is "/".
    selfLink: Server defined URL for the resource (output only).
    timeoutSec: How long (in seconds) to wait before claiming failure. The
      default value is 5 seconds.
    unhealthyThreshold: A so-far healthy VM will be marked unhealthy after
      this many consecutive failures. The default value is 2.
  """

  checkIntervalSec = messages.IntegerField(1, variant=messages.Variant.INT32)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  healthyThreshold = messages.IntegerField(4, variant=messages.Variant.INT32)
  host = messages.StringField(5)
  id = messages.IntegerField(6, variant=messages.Variant.UINT64)
  kind = messages.StringField(7, default=u'compute#httpHealthCheck')
  name = messages.StringField(8)
  port = messages.IntegerField(9, variant=messages.Variant.INT32)
  requestPath = messages.StringField(10)
  selfLink = messages.StringField(11)
  timeoutSec = messages.IntegerField(12, variant=messages.Variant.INT32)
  unhealthyThreshold = messages.IntegerField(13, variant=messages.Variant.INT32)


class HttpHealthCheckList(messages.Message):
  """Contains a list of HttpHealthCheck resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The HttpHealthCheck resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('HttpHealthCheck', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#httpHealthCheckList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class Image(messages.Message):
  """A disk image resource.

  Enums:
    SourceTypeValueValuesEnum: Must be "RAW"; provided by the client when the
      disk image is created.
    StatusValueValuesEnum: Status of the image (output only). It will be one
      of the following READY - after image has been successfully created and
      is ready for use FAILED - if creating the image fails for some reason
      PENDING - the image creation is in progress An image can be used to
      create other resources suck as instances only after the image has been
      successfully created and the status is set to READY.

  Messages:
    RawDiskValue: The raw disk image parameters.

  Fields:
    archiveSizeBytes: Size of the image tar.gz archive stored in Google Cloud
      Storage (in bytes).
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    deprecated: The deprecation status associated with this image.
    description: Textual description of the resource; provided by the client
      when the resource is created.
    diskSizeGb: Size of the image when restored onto a disk (in GiB).
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    licenses: Public visible licenses.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    rawDisk: The raw disk image parameters.
    selfLink: Server defined URL for the resource (output only).
    sourceDisk: The source disk used to create this image. Once the source
      disk has been deleted from the system, this field will be cleared, and
      will not be set even if a disk with the same name has been re-created.
    sourceDiskId: The 'id' value of the disk used to create this image. This
      value may be used to determine whether the image was taken from the
      current or a previous instance of a given disk name.
    sourceType: Must be "RAW"; provided by the client when the disk image is
      created.
    status: Status of the image (output only). It will be one of the following
      READY - after image has been successfully created and is ready for use
      FAILED - if creating the image fails for some reason PENDING - the image
      creation is in progress An image can be used to create other resources
      suck as instances only after the image has been successfully created and
      the status is set to READY.
  """

  class SourceTypeValueValuesEnum(messages.Enum):
    """Must be "RAW"; provided by the client when the disk image is created.

    Values:
      RAW: <no description>
    """
    RAW = 0

  class StatusValueValuesEnum(messages.Enum):
    """Status of the image (output only). It will be one of the following
    READY - after image has been successfully created and is ready for use
    FAILED - if creating the image fails for some reason PENDING - the image
    creation is in progress An image can be used to create other resources
    suck as instances only after the image has been successfully created and
    the status is set to READY.

    Values:
      FAILED: <no description>
      PENDING: <no description>
      READY: <no description>
    """
    FAILED = 0
    PENDING = 1
    READY = 2

  class RawDiskValue(messages.Message):
    """The raw disk image parameters.

    Enums:
      ContainerTypeValueValuesEnum: The format used to encode and transmit the
        block device. Should be TAR. This is just a container and transmission
        format and not a runtime format. Provided by the client when the disk
        image is created.

    Fields:
      containerType: The format used to encode and transmit the block device.
        Should be TAR. This is just a container and transmission format and
        not a runtime format. Provided by the client when the disk image is
        created.
      sha1Checksum: An optional SHA1 checksum of the disk image before
        unpackaging; provided by the client when the disk image is created.
      source: The full Google Cloud Storage URL where the disk image is
        stored; provided by the client when the disk image is created.
    """

    class ContainerTypeValueValuesEnum(messages.Enum):
      """The format used to encode and transmit the block device. Should be
      TAR. This is just a container and transmission format and not a runtime
      format. Provided by the client when the disk image is created.

      Values:
        TAR: <no description>
      """
      TAR = 0

    containerType = messages.EnumField('ContainerTypeValueValuesEnum', 1)
    sha1Checksum = messages.StringField(2)
    source = messages.StringField(3)

  archiveSizeBytes = messages.IntegerField(1)
  creationTimestamp = messages.StringField(2)
  deprecated = messages.MessageField('DeprecationStatus', 3)
  description = messages.StringField(4)
  diskSizeGb = messages.IntegerField(5)
  id = messages.IntegerField(6, variant=messages.Variant.UINT64)
  kind = messages.StringField(7, default=u'compute#image')
  licenses = messages.StringField(8, repeated=True)
  name = messages.StringField(9)
  rawDisk = messages.MessageField('RawDiskValue', 10)
  selfLink = messages.StringField(11)
  sourceDisk = messages.StringField(12)
  sourceDiskId = messages.StringField(13)
  sourceType = messages.EnumField('SourceTypeValueValuesEnum', 14, default=u'RAW')
  status = messages.EnumField('StatusValueValuesEnum', 15)


class ImageList(messages.Message):
  """Contains a list of disk image resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The disk image resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Image', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#imageList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class Instance(messages.Message):
  """An instance resource.

  Enums:
    StatusValueValuesEnum: Instance status. One of the following values:
      "PROVISIONING", "STAGING", "RUNNING", "STOPPING", "STOPPED",
      "TERMINATED" (output only).

  Fields:
    canIpForward: Allows this instance to send packets with source IP
      addresses other than its own and receive packets with destination IP
      addresses other than its own. If this instance will be used as an IP
      gateway or it will be set as the next-hop in a Route resource, say true.
      If unsure, leave this set to false.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    disks: Array of disks associated with this instance. Persistent disks must
      be created before you can assign them.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    machineType: URL of the machine type resource describing which machine
      type to use to host the instance; provided by the client when the
      instance is created.
    metadata: Metadata key/value pairs assigned to this instance. Consists of
      custom metadata or predefined keys; see Instance documentation for more
      information.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    networkInterfaces: Array of configurations for this interface. This
      specifies how this interface is configured to interact with other
      network services, such as connecting to the internet. Currently,
      ONE_TO_ONE_NAT is the only access config supported. If there are no
      accessConfigs specified, then this instance will have no external
      internet access.
    scheduling: Scheduling options for this instance.
    selfLink: Server defined URL for this resource (output only).
    serviceAccounts: A list of service accounts each with specified scopes,
      for which access tokens are to be made available to the instance through
      metadata queries.
    status: Instance status. One of the following values: "PROVISIONING",
      "STAGING", "RUNNING", "STOPPING", "STOPPED", "TERMINATED" (output only).
    statusMessage: An optional, human-readable explanation of the status
      (output only).
    tags: A list of tags to be applied to this instance. Used to identify
      valid sources or targets for network firewalls. Provided by the client
      on instance creation. The tags can be later modified by the setTags
      method. Each tag within the list must comply with RFC1035.
    zone: URL of the zone where the instance resides (output only).
  """

  class StatusValueValuesEnum(messages.Enum):
    """Instance status. One of the following values: "PROVISIONING",
    "STAGING", "RUNNING", "STOPPING", "STOPPED", "TERMINATED" (output only).

    Values:
      PROVISIONING: <no description>
      RUNNING: <no description>
      STAGING: <no description>
      STOPPED: <no description>
      STOPPING: <no description>
      TERMINATED: <no description>
    """
    PROVISIONING = 0
    RUNNING = 1
    STAGING = 2
    STOPPED = 3
    STOPPING = 4
    TERMINATED = 5

  canIpForward = messages.BooleanField(1)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  disks = messages.MessageField('AttachedDisk', 4, repeated=True)
  id = messages.IntegerField(5, variant=messages.Variant.UINT64)
  kind = messages.StringField(6, default=u'compute#instance')
  machineType = messages.StringField(7)
  metadata = messages.MessageField('Metadata', 8)
  name = messages.StringField(9)
  networkInterfaces = messages.MessageField('NetworkInterface', 10, repeated=True)
  scheduling = messages.MessageField('Scheduling', 11)
  selfLink = messages.StringField(12)
  serviceAccounts = messages.MessageField('ServiceAccount', 13, repeated=True)
  status = messages.EnumField('StatusValueValuesEnum', 14)
  statusMessage = messages.StringField(15)
  tags = messages.MessageField('Tags', 16)
  zone = messages.StringField(17)


class InstanceAggregatedList(messages.Message):
  """A InstanceAggregatedList object.

  Messages:
    ItemsValue: A map of scoped instance lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped instance lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped instance lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of
        instances.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A InstancesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('InstancesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#instanceAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class InstanceList(messages.Message):
  """Contains a list of instance resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A list of instance resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Instance', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#instanceList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class InstanceReference(messages.Message):
  """A InstanceReference object.

  Fields:
    instance: A string attribute.
  """

  instance = messages.StringField(1)


class InstancesScopedList(messages.Message):
  """A InstancesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of instances
      when the list is empty.

  Fields:
    instances: List of instances contained in this scope.
    warning: Informational warning which replaces the list of instances when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of instances when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  instances = messages.MessageField('Instance', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class License(messages.Message):
  """A license resource.

  Fields:
    kind: Type of resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    selfLink: Server defined URL for the resource (output only).
  """

  kind = messages.StringField(1, default=u'compute#license')
  name = messages.StringField(2)
  selfLink = messages.StringField(3)


class MachineType(messages.Message):
  """A machine type resource.

  Messages:
    ScratchDisksValueListEntry: A ScratchDisksValueListEntry object.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    deprecated: The deprecation status associated with this machine type.
    description: An optional textual description of the resource.
    guestCpus: Count of CPUs exposed to the instance.
    id: Unique identifier for the resource; defined by the server (output
      only).
    imageSpaceGb: Space allotted for the image, defined in GB.
    kind: Type of the resource.
    maximumPersistentDisks: Maximum persistent disks allowed.
    maximumPersistentDisksSizeGb: Maximum total persistent disks size (GB)
      allowed.
    memoryMb: Physical memory assigned to the instance, defined in MB.
    name: Name of the resource.
    scratchDisks: List of extended scratch disks assigned to the instance.
    selfLink: Server defined URL for the resource (output only).
    zone: Url of the zone where the machine type resides (output only).
  """

  class ScratchDisksValueListEntry(messages.Message):
    """A ScratchDisksValueListEntry object.

    Fields:
      diskGb: Size of the scratch disk, defined in GB.
    """

    diskGb = messages.IntegerField(1, variant=messages.Variant.INT32)

  creationTimestamp = messages.StringField(1)
  deprecated = messages.MessageField('DeprecationStatus', 2)
  description = messages.StringField(3)
  guestCpus = messages.IntegerField(4, variant=messages.Variant.INT32)
  id = messages.IntegerField(5, variant=messages.Variant.UINT64)
  imageSpaceGb = messages.IntegerField(6, variant=messages.Variant.INT32)
  kind = messages.StringField(7, default=u'compute#machineType')
  maximumPersistentDisks = messages.IntegerField(8, variant=messages.Variant.INT32)
  maximumPersistentDisksSizeGb = messages.IntegerField(9)
  memoryMb = messages.IntegerField(10, variant=messages.Variant.INT32)
  name = messages.StringField(11)
  scratchDisks = messages.MessageField('ScratchDisksValueListEntry', 12, repeated=True)
  selfLink = messages.StringField(13)
  zone = messages.StringField(14)


class MachineTypeAggregatedList(messages.Message):
  """A MachineTypeAggregatedList object.

  Messages:
    ItemsValue: A map of scoped machine type lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped machine type lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped machine type lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of machine
        types.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A MachineTypesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('MachineTypesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#machineTypeAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class MachineTypeList(messages.Message):
  """Contains a list of machine type resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The machine type resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('MachineType', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#machineTypeList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class MachineTypesScopedList(messages.Message):
  """A MachineTypesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of machine
      types when the list is empty.

  Fields:
    machineTypes: List of machine types contained in this scope.
    warning: Informational warning which replaces the list of machine types
      when the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of machine types when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  machineTypes = messages.MessageField('MachineType', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class Metadata(messages.Message):
  """A metadata key/value entry.

  Messages:
    ItemsValueListEntry: A ItemsValueListEntry object.

  Fields:
    fingerprint: Fingerprint of this resource. A hash of the metadata's
      contents. This field is used for optimistic locking. An up-to-date
      metadata fingerprint must be provided in order to modify metadata.
    items: Array of key/value pairs. The total size of all keys and values
      must be less than 512 KB.
    kind: Type of the resource.
  """

  class ItemsValueListEntry(messages.Message):
    """A ItemsValueListEntry object.

    Fields:
      key: Key for the metadata entry. Keys must conform to the following
        regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is
        reflected as part of a URL in the metadata server. Additionally, to
        avoid ambiguity, keys must not conflict with any other metadata keys
        for the project.
      value: Value for the metadata entry. These are free-form strings, and
        only have meaning as interpreted by the image running in the instance.
        The only restriction placed on values is that their size must be less
        than or equal to 32768 bytes.
    """

    key = messages.StringField(1)
    value = messages.StringField(2)

  fingerprint = messages.BytesField(1)
  items = messages.MessageField('ItemsValueListEntry', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#metadata')


class Network(messages.Message):
  """A network resource.

  Fields:
    IPv4Range: Required; The range of internal addresses that are legal on
      this network. This range is a CIDR specification, for example:
      192.168.0.0/16. Provided by the client when the network is created.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    gatewayIPv4: An optional address that is used for default routing to other
      networks. This must be within the range specified by IPv4Range, and is
      typically the first usable address in that range. If not specified, the
      default value is the first usable address in IPv4Range.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    selfLink: Server defined URL for the resource (output only).
  """

  IPv4Range = messages.StringField(1)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  gatewayIPv4 = messages.StringField(4)
  id = messages.IntegerField(5, variant=messages.Variant.UINT64)
  kind = messages.StringField(6, default=u'compute#network')
  name = messages.StringField(7)
  selfLink = messages.StringField(8)


class NetworkInterface(messages.Message):
  """A network interface resource attached to an instance.

  Fields:
    accessConfigs: Array of configurations for this interface. This specifies
      how this interface is configured to interact with other network
      services, such as connecting to the internet. Currently, ONE_TO_ONE_NAT
      is the only access config supported. If there are no accessConfigs
      specified, then this instance will have no external internet access.
    name: Name of the network interface, determined by the server; for network
      devices, these are e.g. eth0, eth1, etc. (output only).
    network: URL of the network resource attached to this interface.
    networkIP: An optional IPV4 internal network address assigned to the
      instance for this network interface (output only).
  """

  accessConfigs = messages.MessageField('AccessConfig', 1, repeated=True)
  name = messages.StringField(2)
  network = messages.StringField(3)
  networkIP = messages.StringField(4)


class NetworkList(messages.Message):
  """Contains a list of network resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The network resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Network', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#networkList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class Operation(messages.Message):
  """An operation resource, used to manage asynchronous API requests.

  Enums:
    StatusValueValuesEnum: Status of the operation. Can be one of the
      following: "PENDING", "RUNNING", or "DONE" (output only).

  Messages:
    ErrorValue: If errors occurred during processing of this operation, this
      field will be populated (output only).
    WarningsValueListEntry: A WarningsValueListEntry object.

  Fields:
    clientOperationId: An optional identifier specified by the client when the
      mutation was initiated. Must be unique for all operation resources in
      the project (output only).
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    endTime: The time that this operation was completed. This is in RFC 3339
      format (output only).
    error: If errors occurred during processing of this operation, this field
      will be populated (output only).
    httpErrorMessage: If operation fails, the HTTP error message returned,
      e.g. NOT FOUND. (output only).
    httpErrorStatusCode: If operation fails, the HTTP error status code
      returned, e.g. 404. (output only).
    id: Unique identifier for the resource; defined by the server (output
      only).
    insertTime: The time that this operation was requested. This is in RFC
      3339 format (output only).
    kind: Type of the resource.
    name: Name of the resource (output only).
    operationType: Type of the operation. Examples include "insert", "update",
      and "delete" (output only).
    progress: An optional progress indicator that ranges from 0 to 100. There
      is no requirement that this be linear or support any granularity of
      operations. This should not be used to guess at when the operation will
      be complete. This number should be monotonically increasing as the
      operation progresses (output only).
    region: URL of the region where the operation resides (output only).
    selfLink: Server defined URL for the resource (output only).
    startTime: The time that this operation was started by the server. This is
      in RFC 3339 format (output only).
    status: Status of the operation. Can be one of the following: "PENDING",
      "RUNNING", or "DONE" (output only).
    statusMessage: An optional textual description of the current status of
      the operation (output only).
    targetId: Unique target id which identifies a particular incarnation of
      the target (output only).
    targetLink: URL of the resource the operation is mutating (output only).
    user: User who requested the operation, for example "user@example.com"
      (output only).
    warnings: If warning messages generated during processing of this
      operation, this field will be populated (output only).
    zone: URL of the zone where the operation resides (output only).
  """

  class StatusValueValuesEnum(messages.Enum):
    """Status of the operation. Can be one of the following: "PENDING",
    "RUNNING", or "DONE" (output only).

    Values:
      DONE: <no description>
      PENDING: <no description>
      RUNNING: <no description>
    """
    DONE = 0
    PENDING = 1
    RUNNING = 2

  class ErrorValue(messages.Message):
    """If errors occurred during processing of this operation, this field will
    be populated (output only).

    Messages:
      ErrorsValueListEntry: A ErrorsValueListEntry object.

    Fields:
      errors: The array of errors encountered while processing this operation.
    """

    class ErrorsValueListEntry(messages.Message):
      """A ErrorsValueListEntry object.

      Fields:
        code: The error type identifier for this error.
        location: Indicates the field in the request which caused the error.
          This property is optional.
        message: An optional, human-readable error message.
      """

      code = messages.StringField(1)
      location = messages.StringField(2)
      message = messages.StringField(3)

    errors = messages.MessageField('ErrorsValueListEntry', 1, repeated=True)

  class WarningsValueListEntry(messages.Message):
    """A WarningsValueListEntry object.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  clientOperationId = messages.StringField(1)
  creationTimestamp = messages.StringField(2)
  endTime = messages.StringField(3)
  error = messages.MessageField('ErrorValue', 4)
  httpErrorMessage = messages.StringField(5)
  httpErrorStatusCode = messages.IntegerField(6, variant=messages.Variant.INT32)
  id = messages.IntegerField(7, variant=messages.Variant.UINT64)
  insertTime = messages.StringField(8)
  kind = messages.StringField(9, default=u'compute#operation')
  name = messages.StringField(10)
  operationType = messages.StringField(11)
  progress = messages.IntegerField(12, variant=messages.Variant.INT32)
  region = messages.StringField(13)
  selfLink = messages.StringField(14)
  startTime = messages.StringField(15)
  status = messages.EnumField('StatusValueValuesEnum', 16)
  statusMessage = messages.StringField(17)
  targetId = messages.IntegerField(18, variant=messages.Variant.UINT64)
  targetLink = messages.StringField(19)
  user = messages.StringField(20)
  warnings = messages.MessageField('WarningsValueListEntry', 21, repeated=True)
  zone = messages.StringField(22)


class OperationAggregatedList(messages.Message):
  """A OperationAggregatedList object.

  Messages:
    ItemsValue: A map of scoped operation lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped operation lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped operation lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of
        operations.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A OperationsScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('OperationsScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#operationAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class OperationList(messages.Message):
  """Contains a list of operation resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The operation resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Operation', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#operationList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class OperationsScopedList(messages.Message):
  """A OperationsScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of operations
      when the list is empty.

  Fields:
    operations: List of operations contained in this scope.
    warning: Informational warning which replaces the list of operations when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of operations when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  operations = messages.MessageField('Operation', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class PathMatcher(messages.Message):
  """A matcher for the path portion of the URL. The BackendService from the
  longest-matched rule will serve the URL. If no rule was matched, the
  default_service will be used.

  Fields:
    defaultService: The URL to the BackendService resource. This will be used
      if none of the 'pathRules' defined by this PathMatcher is met by the
      URL's path portion.
    description: A string attribute.
    name: The name to which this PathMatcher is referred by the HostRule.
    pathRules: The list of path rules.
  """

  defaultService = messages.StringField(1)
  description = messages.StringField(2)
  name = messages.StringField(3)
  pathRules = messages.MessageField('PathRule', 4, repeated=True)


class PathRule(messages.Message):
  """A path-matching rule for a URL. If matched, will use the specified
  BackendService to handle the traffic arriving at this URL.

  Fields:
    paths: The list of path patterns to match. Each must start with / and the
      only place a * is allowed is at the end following a /. The string fed to
      the path matcher does not include any text after the first ? or #, and
      those chars are not allowed here.
    service: The URL of the BackendService resource if this rule is matched.
  """

  paths = messages.StringField(1, repeated=True)
  service = messages.StringField(2)


class Project(messages.Message):
  """A project resource. Projects can be created only in the APIs Console.
  Unless marked otherwise, values can only be modified in the console.

  Fields:
    commonInstanceMetadata: Metadata key/value pairs available to all
      instances contained in this project.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource.
    quotas: Quotas assigned to this project.
    selfLink: Server defined URL for the resource (output only).
    usageExportLocation: The location in Cloud Storage and naming method of
      the daily usage report.
  """

  commonInstanceMetadata = messages.MessageField('Metadata', 1)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#project')
  name = messages.StringField(6)
  quotas = messages.MessageField('Quota', 7, repeated=True)
  selfLink = messages.StringField(8)
  usageExportLocation = messages.MessageField('UsageExportLocation', 9)


class Quota(messages.Message):
  """A quotas entry.

  Enums:
    MetricValueValuesEnum: Name of the quota metric.

  Fields:
    limit: Quota limit for this metric.
    metric: Name of the quota metric.
    usage: Current usage of this metric.
  """

  class MetricValueValuesEnum(messages.Enum):
    """Name of the quota metric.

    Values:
      BACKEND_SERVICES: <no description>
      CPUS: <no description>
      DISKS: <no description>
      DISKS_TOTAL_GB: <no description>
      EPHEMERAL_ADDRESSES: <no description>
      FIREWALLS: <no description>
      FORWARDING_RULES: <no description>
      HEALTH_CHECKS: <no description>
      IMAGES: <no description>
      IMAGES_TOTAL_GB: <no description>
      INSTANCES: <no description>
      IN_USE_ADDRESSES: <no description>
      KERNELS: <no description>
      KERNELS_TOTAL_GB: <no description>
      NETWORKS: <no description>
      OPERATIONS: <no description>
      ROUTES: <no description>
      SNAPSHOTS: <no description>
      SSD_TOTAL_GB: <no description>
      STATIC_ADDRESSES: <no description>
      TARGET_HTTP_PROXIES: <no description>
      TARGET_INSTANCES: <no description>
      TARGET_POOLS: <no description>
      URL_MAPS: <no description>
    """
    BACKEND_SERVICES = 0
    CPUS = 1
    DISKS = 2
    DISKS_TOTAL_GB = 3
    EPHEMERAL_ADDRESSES = 4
    FIREWALLS = 5
    FORWARDING_RULES = 6
    HEALTH_CHECKS = 7
    IMAGES = 8
    IMAGES_TOTAL_GB = 9
    INSTANCES = 10
    IN_USE_ADDRESSES = 11
    KERNELS = 12
    KERNELS_TOTAL_GB = 13
    NETWORKS = 14
    OPERATIONS = 15
    ROUTES = 16
    SNAPSHOTS = 17
    SSD_TOTAL_GB = 18
    STATIC_ADDRESSES = 19
    TARGET_HTTP_PROXIES = 20
    TARGET_INSTANCES = 21
    TARGET_POOLS = 22
    URL_MAPS = 23

  limit = messages.FloatField(1)
  metric = messages.EnumField('MetricValueValuesEnum', 2)
  usage = messages.FloatField(3)


class Region(messages.Message):
  """Region resource.

  Enums:
    StatusValueValuesEnum: Status of the region, "UP" or "DOWN".

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    deprecated: The deprecation status associated with this region.
    description: Textual description of the resource.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource.
    quotas: Quotas assigned to this region.
    selfLink: Server defined URL for the resource (output only).
    status: Status of the region, "UP" or "DOWN".
    zones: A list of zones homed in this region, in the form of resource URLs.
  """

  class StatusValueValuesEnum(messages.Enum):
    """Status of the region, "UP" or "DOWN".

    Values:
      DOWN: <no description>
      UP: <no description>
    """
    DOWN = 0
    UP = 1

  creationTimestamp = messages.StringField(1)
  deprecated = messages.MessageField('DeprecationStatus', 2)
  description = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#region')
  name = messages.StringField(6)
  quotas = messages.MessageField('Quota', 7, repeated=True)
  selfLink = messages.StringField(8)
  status = messages.EnumField('StatusValueValuesEnum', 9)
  zones = messages.StringField(10, repeated=True)


class RegionList(messages.Message):
  """Contains a list of region resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The region resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Region', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#regionList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class ResourceGroupReference(messages.Message):
  """A ResourceGroupReference object.

  Fields:
    group: A URI referencing one of the resource views listed in the backend
      service.
  """

  group = messages.StringField(1)


class Route(messages.Message):
  """The route resource. A Route is a rule that specifies how certain packets
  should be handled by the virtual network. Routes are associated with VMs by
  tag and the set of Routes for a particular VM is called its routing table.
  For each packet leaving a VM, the system searches that VM's routing table
  for a single best matching Route. Routes match packets by destination IP
  address, preferring smaller or more specific ranges over larger ones. If
  there is a tie, the system selects the Route with the smallest priority
  value. If there is still a tie, it uses the layer three and four packet
  headers to select just one of the remaining matching Routes. The packet is
  then forwarded as specified by the next_hop field of the winning Route --
  either to another VM destination, a VM gateway or a GCE operated gateway.
  Packets that do not match any Route in the sending VM's routing table will
  be dropped.

  Messages:
    WarningsValueListEntry: A WarningsValueListEntry object.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    destRange: Which packets does this route apply to?
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    network: URL of the network to which this route is applied; provided by
      the client when the route is created.
    nextHopGateway: The URL to a gateway that should handle matching packets.
    nextHopInstance: The URL to an instance that should handle matching
      packets.
    nextHopIp: The network IP address of an instance that should handle
      matching packets.
    nextHopNetwork: The URL of the local network if it should handle matching
      packets.
    priority: Breaks ties between Routes of equal specificity. Routes with
      smaller values win when tied with routes with larger values.
    selfLink: Server defined URL for the resource (output only).
    tags: A list of instance tags to which this route applies.
    warnings: If potential misconfigurations are detected for this route, this
      field will be populated with warning messages.
  """

  class WarningsValueListEntry(messages.Message):
    """A WarningsValueListEntry object.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  creationTimestamp = messages.StringField(1)
  description = messages.StringField(2)
  destRange = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#route')
  name = messages.StringField(6)
  network = messages.StringField(7)
  nextHopGateway = messages.StringField(8)
  nextHopInstance = messages.StringField(9)
  nextHopIp = messages.StringField(10)
  nextHopNetwork = messages.StringField(11)
  priority = messages.IntegerField(12, variant=messages.Variant.UINT32)
  selfLink = messages.StringField(13)
  tags = messages.StringField(14, repeated=True)
  warnings = messages.MessageField('WarningsValueListEntry', 15, repeated=True)


class RouteList(messages.Message):
  """Contains a list of route resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The route resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Route', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#routeList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class Scheduling(messages.Message):
  """Scheduling options for an Instance.

  Enums:
    OnHostMaintenanceValueValuesEnum: How the instance should behave when the
      host machine undergoes maintenance that may temporarily impact instance
      performance.

  Fields:
    automaticRestart: Whether the Instance should be automatically restarted
      whenever it is terminated by Compute Engine (not terminated by user).
    onHostMaintenance: How the instance should behave when the host machine
      undergoes maintenance that may temporarily impact instance performance.
  """

  class OnHostMaintenanceValueValuesEnum(messages.Enum):
    """How the instance should behave when the host machine undergoes
    maintenance that may temporarily impact instance performance.

    Values:
      MIGRATE: <no description>
      TERMINATE: <no description>
    """
    MIGRATE = 0
    TERMINATE = 1

  automaticRestart = messages.BooleanField(1)
  onHostMaintenance = messages.EnumField('OnHostMaintenanceValueValuesEnum', 2)


class SerialPortOutput(messages.Message):
  """An instance serial console output.

  Fields:
    contents: The contents of the console output.
    kind: Type of the resource.
    selfLink: Server defined URL for the resource (output only).
  """

  contents = messages.StringField(1)
  kind = messages.StringField(2, default=u'compute#serialPortOutput')
  selfLink = messages.StringField(3)


class ServiceAccount(messages.Message):
  """A service account.

  Fields:
    email: Email address of the service account.
    scopes: The list of scopes to be made available for this service account.
  """

  email = messages.StringField(1)
  scopes = messages.StringField(2, repeated=True)


class Snapshot(messages.Message):
  """A persistent disk snapshot resource.

  Enums:
    StatusValueValuesEnum: The status of the persistent disk snapshot (output
      only).
    StorageBytesStatusValueValuesEnum: An indicator whether storageBytes is in
      a stable state, or it is being adjusted as a result of shared storage
      reallocation.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    diskSizeGb: Size of the persistent disk snapshot, specified in GB (output
      only).
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    licenses: Public visible licenses.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    selfLink: Server defined URL for the resource (output only).
    sourceDisk: The source disk used to create this snapshot. Once the source
      disk has been deleted from the system, this field will be cleared, and
      will not be set even if a disk with the same name has been re-created
      (output only).
    sourceDiskId: The 'id' value of the disk used to create this snapshot.
      This value may be used to determine whether the snapshot was taken from
      the current or a previous instance of a given disk name.
    status: The status of the persistent disk snapshot (output only).
    storageBytes: A size of the the storage used by the snapshot. As snapshots
      share storage this number is expected to change with snapshot
      creation/deletion.
    storageBytesStatus: An indicator whether storageBytes is in a stable
      state, or it is being adjusted as a result of shared storage
      reallocation.
  """

  class StatusValueValuesEnum(messages.Enum):
    """The status of the persistent disk snapshot (output only).

    Values:
      CREATING: <no description>
      DELETING: <no description>
      FAILED: <no description>
      READY: <no description>
      UPLOADING: <no description>
    """
    CREATING = 0
    DELETING = 1
    FAILED = 2
    READY = 3
    UPLOADING = 4

  class StorageBytesStatusValueValuesEnum(messages.Enum):
    """An indicator whether storageBytes is in a stable state, or it is being
    adjusted as a result of shared storage reallocation.

    Values:
      UPDATING: <no description>
      UP_TO_DATE: <no description>
    """
    UPDATING = 0
    UP_TO_DATE = 1

  creationTimestamp = messages.StringField(1)
  description = messages.StringField(2)
  diskSizeGb = messages.IntegerField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#snapshot')
  licenses = messages.StringField(6, repeated=True)
  name = messages.StringField(7)
  selfLink = messages.StringField(8)
  sourceDisk = messages.StringField(9)
  sourceDiskId = messages.StringField(10)
  status = messages.EnumField('StatusValueValuesEnum', 11)
  storageBytes = messages.IntegerField(12)
  storageBytesStatus = messages.EnumField('StorageBytesStatusValueValuesEnum', 13)


class SnapshotList(messages.Message):
  """Contains a list of persistent disk snapshot resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The persistent snapshot resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Snapshot', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#snapshotList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class StandardQueryParameters(messages.Message):
  """Query parameters accepted by all methods.

  Enums:
    AltValueValuesEnum: Data format for the response.

  Fields:
    alt: Data format for the response.
    fields: Selector specifying which fields to include in a partial response.
    key: API key. Your API key identifies your project and provides you with
      API access, quota, and reports. Required unless you provide an OAuth 2.0
      token.
    oauth_token: OAuth 2.0 token for the current user.
    prettyPrint: Returns response with indentations and line breaks.
    quotaUser: Available to use for quota purposes for server-side
      applications. Can be any arbitrary string assigned to a user, but should
      not exceed 40 characters. Overrides userIp if both are provided.
    trace: A tracing token of the form "token:<tokenid>" or "email:<ldap>" to
      include in api requests.
    userIp: IP address of the site where the request originates. Use this if
      you want to enforce per-user limits.
  """

  class AltValueValuesEnum(messages.Enum):
    """Data format for the response.

    Values:
      json: Responses with Content-Type of application/json
    """
    json = 0

  alt = messages.EnumField('AltValueValuesEnum', 1, default=u'json')
  fields = messages.StringField(2)
  key = messages.StringField(3)
  oauth_token = messages.StringField(4)
  prettyPrint = messages.BooleanField(5, default=True)
  quotaUser = messages.StringField(6)
  trace = messages.StringField(7)
  userIp = messages.StringField(8)


class Tags(messages.Message):
  """A set of instance tags.

  Fields:
    fingerprint: Fingerprint of this resource. A hash of the tags stored in
      this object. This field is used optimistic locking. An up-to-date tags
      fingerprint must be provided in order to modify tags.
    items: An array of tags. Each tag must be 1-63 characters long, and comply
      with RFC1035.
  """

  fingerprint = messages.BytesField(1)
  items = messages.StringField(2, repeated=True)


class TargetHttpProxy(messages.Message):
  """A TargetHttpProxy resource. This resource defines an HTTP proxy.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    selfLink: Server defined URL for the resource (output only).
    urlMap: URL to the UrlMap resource that defines the mapping from URL to
      the BackendService.
  """

  creationTimestamp = messages.StringField(1)
  description = messages.StringField(2)
  id = messages.IntegerField(3, variant=messages.Variant.UINT64)
  kind = messages.StringField(4, default=u'compute#targetHttpProxy')
  name = messages.StringField(5)
  selfLink = messages.StringField(6)
  urlMap = messages.StringField(7)


class TargetHttpProxyList(messages.Message):
  """Contains a list of TargetHttpProxy resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The TargetHttpProxy resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('TargetHttpProxy', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#targetHttpProxyList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class TargetInstance(messages.Message):
  """A TargetInstance resource. This resource defines an endpoint VM that
  terminates traffic of certain protocols.

  Enums:
    NatPolicyValueValuesEnum: NAT option controlling how IPs are NAT'ed to the
      VM. Currently only NO_NAT (default value) is supported.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    id: Unique identifier for the resource; defined by the server (output
      only).
    instance: The URL to the instance that terminates the relevant traffic.
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    natPolicy: NAT option controlling how IPs are NAT'ed to the VM. Currently
      only NO_NAT (default value) is supported.
    selfLink: Server defined URL for the resource (output only).
    zone: URL of the zone where the target instance resides (output only).
  """

  class NatPolicyValueValuesEnum(messages.Enum):
    """NAT option controlling how IPs are NAT'ed to the VM. Currently only
    NO_NAT (default value) is supported.

    Values:
      NO_NAT: <no description>
    """
    NO_NAT = 0

  creationTimestamp = messages.StringField(1)
  description = messages.StringField(2)
  id = messages.IntegerField(3, variant=messages.Variant.UINT64)
  instance = messages.StringField(4)
  kind = messages.StringField(5, default=u'compute#targetInstance')
  name = messages.StringField(6)
  natPolicy = messages.EnumField('NatPolicyValueValuesEnum', 7)
  selfLink = messages.StringField(8)
  zone = messages.StringField(9)


class TargetInstanceAggregatedList(messages.Message):
  """A TargetInstanceAggregatedList object.

  Messages:
    ItemsValue: A map of scoped target instance lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped target instance lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped target instance lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of target
        instances.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A TargetInstancesScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('TargetInstancesScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#targetInstanceAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class TargetInstanceList(messages.Message):
  """Contains a list of TargetInstance resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The TargetInstance resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('TargetInstance', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#targetInstanceList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class TargetInstancesScopedList(messages.Message):
  """A TargetInstancesScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of addresses
      when the list is empty.

  Fields:
    targetInstances: List of target instances contained in this scope.
    warning: Informational warning which replaces the list of addresses when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of addresses when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  targetInstances = messages.MessageField('TargetInstance', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class TargetPool(messages.Message):
  """A TargetPool resource. This resource defines a pool of VMs, associated
  HttpHealthCheck resources, and the fallback TargetPool.

  Enums:
    SessionAffinityValueValuesEnum: Sesssion affinity option, must be one of
      the following values: 'NONE': Connections from the same client IP may go
      to any VM in the pool; 'CLIENT_IP': Connections from the same client IP
      will go to the same VM in the pool while that VM remains healthy.
      'CLIENT_IP_PROTO': Connections from the same client IP with the same IP
      protocol will go to the same VM in the pool while that VM remains
      healthy.

  Fields:
    backupPool: This field is applicable only when the containing target pool
      is serving a forwarding rule as the primary pool, and its
      'failoverRatio' field is properly set to a value between [0, 1].
      'backupPool' and 'failoverRatio' together define the fallback behavior
      of the primary target pool: if the ratio of the healthy VMs in the
      primary pool is at or below 'failoverRatio', traffic arriving at the
      load-balanced IP will be directed to the backup pool.  In case where
      'failoverRatio' and 'backupPool' are not set, or all the VMs in the
      backup pool are unhealthy, the traffic will be directed back to the
      primary pool in the "force" mode, where traffic will be spread to the
      healthy VMs with the best effort, or to all VMs when no VM is healthy.
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    failoverRatio: This field is applicable only when the containing target
      pool is serving a forwarding rule as the primary pool (i.e., not as a
      backup pool to some other target pool). The value of the field must be
      in [0, 1].  If set, 'backupPool' must also be set. They together define
      the fallback behavior of the primary target pool: if the ratio of the
      healthy VMs in the primary pool is at or below this number, traffic
      arriving at the load-balanced IP will be directed to the backup pool.
      In case where 'failoverRatio' is not set or all the VMs in the backup
      pool are unhealthy, the traffic will be directed back to the primary
      pool in the "force" mode, where traffic will be spread to the healthy
      VMs with the best effort, or to all VMs when no VM is healthy.
    healthChecks: A list of URLs to the HttpHealthCheck resource. A member VM
      in this pool is considered healthy if and only if all specified health
      checks pass. An empty list means all member VMs will be considered
      healthy at all times.
    id: Unique identifier for the resource; defined by the server (output
      only).
    instances: A list of resource URLs to the member VMs serving this pool.
      They must live in zones contained in the same region as this pool.
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    region: URL of the region where the target pool resides (output only).
    selfLink: Server defined URL for the resource (output only).
    sessionAffinity: Sesssion affinity option, must be one of the following
      values: 'NONE': Connections from the same client IP may go to any VM in
      the pool; 'CLIENT_IP': Connections from the same client IP will go to
      the same VM in the pool while that VM remains healthy.
      'CLIENT_IP_PROTO': Connections from the same client IP with the same IP
      protocol will go to the same VM in the pool while that VM remains
      healthy.
  """

  class SessionAffinityValueValuesEnum(messages.Enum):
    """Sesssion affinity option, must be one of the following values: 'NONE':
    Connections from the same client IP may go to any VM in the pool;
    'CLIENT_IP': Connections from the same client IP will go to the same VM in
    the pool while that VM remains healthy. 'CLIENT_IP_PROTO': Connections
    from the same client IP with the same IP protocol will go to the same VM
    in the pool while that VM remains healthy.

    Values:
      CLIENT_IP: <no description>
      CLIENT_IP_PROTO: <no description>
      NONE: <no description>
    """
    CLIENT_IP = 0
    CLIENT_IP_PROTO = 1
    NONE = 2

  backupPool = messages.StringField(1)
  creationTimestamp = messages.StringField(2)
  description = messages.StringField(3)
  failoverRatio = messages.FloatField(4, variant=messages.Variant.FLOAT)
  healthChecks = messages.StringField(5, repeated=True)
  id = messages.IntegerField(6, variant=messages.Variant.UINT64)
  instances = messages.StringField(7, repeated=True)
  kind = messages.StringField(8, default=u'compute#targetPool')
  name = messages.StringField(9)
  region = messages.StringField(10)
  selfLink = messages.StringField(11)
  sessionAffinity = messages.EnumField('SessionAffinityValueValuesEnum', 12)


class TargetPoolAggregatedList(messages.Message):
  """A TargetPoolAggregatedList object.

  Messages:
    ItemsValue: A map of scoped target pool lists.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: A map of scoped target pool lists.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ItemsValue(messages.Message):
    """A map of scoped target pool lists.

    Messages:
      AdditionalProperty: An additional property for a ItemsValue object.

    Fields:
      additionalProperties: Name of the scope containing this set of target
        pools.
    """

    class AdditionalProperty(messages.Message):
      """An additional property for a ItemsValue object.

      Fields:
        key: Name of the additional property.
        value: A TargetPoolsScopedList attribute.
      """

      key = messages.StringField(1)
      value = messages.MessageField('TargetPoolsScopedList', 2)

    additionalProperties = messages.MessageField('AdditionalProperty', 1, repeated=True)

  id = messages.StringField(1)
  items = messages.MessageField('ItemsValue', 2)
  kind = messages.StringField(3, default=u'compute#targetPoolAggregatedList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class TargetPoolInstanceHealth(messages.Message):
  """A TargetPoolInstanceHealth object.

  Fields:
    healthStatus: A HealthStatus attribute.
    kind: Type of resource.
  """

  healthStatus = messages.MessageField('HealthStatus', 1, repeated=True)
  kind = messages.StringField(2, default=u'compute#targetPoolInstanceHealth')


class TargetPoolList(messages.Message):
  """Contains a list of TargetPool resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The TargetPool resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('TargetPool', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#targetPoolList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class TargetPoolsAddHealthCheckRequest(messages.Message):
  """A TargetPoolsAddHealthCheckRequest object.

  Fields:
    healthChecks: Health check URLs to be added to targetPool.
  """

  healthChecks = messages.MessageField('HealthCheckReference', 1, repeated=True)


class TargetPoolsAddInstanceRequest(messages.Message):
  """A TargetPoolsAddInstanceRequest object.

  Fields:
    instances: URLs of the instances to be added to targetPool.
  """

  instances = messages.MessageField('InstanceReference', 1, repeated=True)


class TargetPoolsRemoveHealthCheckRequest(messages.Message):
  """A TargetPoolsRemoveHealthCheckRequest object.

  Fields:
    healthChecks: Health check URLs to be removed from targetPool.
  """

  healthChecks = messages.MessageField('HealthCheckReference', 1, repeated=True)


class TargetPoolsRemoveInstanceRequest(messages.Message):
  """A TargetPoolsRemoveInstanceRequest object.

  Fields:
    instances: URLs of the instances to be removed from targetPool.
  """

  instances = messages.MessageField('InstanceReference', 1, repeated=True)


class TargetPoolsScopedList(messages.Message):
  """A TargetPoolsScopedList object.

  Messages:
    WarningValue: Informational warning which replaces the list of addresses
      when the list is empty.

  Fields:
    targetPools: List of target pools contained in this scope.
    warning: Informational warning which replaces the list of addresses when
      the list is empty.
  """

  class WarningValue(messages.Message):
    """Informational warning which replaces the list of addresses when the
    list is empty.

    Enums:
      CodeValueValuesEnum: The warning type identifier for this warning.

    Messages:
      DataValueListEntry: A DataValueListEntry object.

    Fields:
      code: The warning type identifier for this warning.
      data: Metadata for this warning in 'key: value' format.
      message: Optional human-readable details for this warning.
    """

    class CodeValueValuesEnum(messages.Enum):
      """The warning type identifier for this warning.

      Values:
        DEPRECATED_RESOURCE_USED: <no description>
        DISK_SIZE_LARGER_THAN_IMAGE_SIZE: <no description>
        INJECTED_KERNELS_DEPRECATED: <no description>
        NEXT_HOP_ADDRESS_NOT_ASSIGNED: <no description>
        NEXT_HOP_CANNOT_IP_FORWARD: <no description>
        NEXT_HOP_INSTANCE_NOT_FOUND: <no description>
        NEXT_HOP_INSTANCE_NOT_ON_NETWORK: <no description>
        NEXT_HOP_NOT_RUNNING: <no description>
        NO_RESULTS_ON_PAGE: <no description>
        REQUIRED_TOS_AGREEMENT: <no description>
        RESOURCE_NOT_DELETED: <no description>
        UNREACHABLE: <no description>
      """
      DEPRECATED_RESOURCE_USED = 0
      DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 1
      INJECTED_KERNELS_DEPRECATED = 2
      NEXT_HOP_ADDRESS_NOT_ASSIGNED = 3
      NEXT_HOP_CANNOT_IP_FORWARD = 4
      NEXT_HOP_INSTANCE_NOT_FOUND = 5
      NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 6
      NEXT_HOP_NOT_RUNNING = 7
      NO_RESULTS_ON_PAGE = 8
      REQUIRED_TOS_AGREEMENT = 9
      RESOURCE_NOT_DELETED = 10
      UNREACHABLE = 11

    class DataValueListEntry(messages.Message):
      """A DataValueListEntry object.

      Fields:
        key: A key for the warning data.
        value: A warning data value corresponding to the key.
      """

      key = messages.StringField(1)
      value = messages.StringField(2)

    code = messages.EnumField('CodeValueValuesEnum', 1)
    data = messages.MessageField('DataValueListEntry', 2, repeated=True)
    message = messages.StringField(3)

  targetPools = messages.MessageField('TargetPool', 1, repeated=True)
  warning = messages.MessageField('WarningValue', 2)


class TargetReference(messages.Message):
  """A TargetReference object.

  Fields:
    target: A string attribute.
  """

  target = messages.StringField(1)


class TestFailure(messages.Message):
  """A TestFailure object.

  Fields:
    actualService: A string attribute.
    expectedService: A string attribute.
    host: A string attribute.
    path: A string attribute.
  """

  actualService = messages.StringField(1)
  expectedService = messages.StringField(2)
  host = messages.StringField(3)
  path = messages.StringField(4)


class UrlMap(messages.Message):
  """A UrlMap resource. This resource defines the mapping from URL to the
  BackendService resource, based on the "longest-match" of the URL's host and
  path.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    defaultService: The URL of the BackendService resource if none of the
      hostRules match.
    description: An optional textual description of the resource; provided by
      the client when the resource is created.
    fingerprint: Fingerprint of this resource. A hash of the contents stored
      in this object. This field is used in optimistic locking. This field
      will be ignored when inserting a UrlMap. An up-to-date fingerprint must
      be provided in order to update the UrlMap.
    hostRules: The list of HostRules to use against the URL.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    name: Name of the resource; provided by the client when the resource is
      created. The name must be 1-63 characters long, and comply with RFC1035.
    pathMatchers: The list of named PathMatchers to use against the URL.
    selfLink: Server defined URL for the resource (output only).
    tests: The list of expected URL mappings. Request to update this UrlMap
      will succeed only all of the test cases pass.
  """

  creationTimestamp = messages.StringField(1)
  defaultService = messages.StringField(2)
  description = messages.StringField(3)
  fingerprint = messages.BytesField(4)
  hostRules = messages.MessageField('HostRule', 5, repeated=True)
  id = messages.IntegerField(6, variant=messages.Variant.UINT64)
  kind = messages.StringField(7, default=u'compute#urlMap')
  name = messages.StringField(8)
  pathMatchers = messages.MessageField('PathMatcher', 9, repeated=True)
  selfLink = messages.StringField(10)
  tests = messages.MessageField('UrlMapTest', 11, repeated=True)


class UrlMapList(messages.Message):
  """Contains a list of UrlMap resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The UrlMap resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('UrlMap', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#urlMapList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)


class UrlMapReference(messages.Message):
  """A UrlMapReference object.

  Fields:
    urlMap: A string attribute.
  """

  urlMap = messages.StringField(1)


class UrlMapTest(messages.Message):
  """Message for the expected URL mappings.

  Fields:
    description: Description of this test case.
    host: Host portion of the URL.
    path: Path portion of the URL.
    service: Expected BackendService resource the given URL should be mapped
      to.
  """

  description = messages.StringField(1)
  host = messages.StringField(2)
  path = messages.StringField(3)
  service = messages.StringField(4)


class UrlMapValidationResult(messages.Message):
  """Message representing the validation result for a UrlMap.

  Fields:
    loadErrors: A string attribute.
    loadSucceeded: Whether the given UrlMap can be successfully loaded. If
      false, 'loadErrors' indicates the reasons.
    testFailures: A TestFailure attribute.
    testPassed: If successfully loaded, this field indicates whether the test
      passed. If false, 'testFailures's indicate the reason of failure.
  """

  loadErrors = messages.StringField(1, repeated=True)
  loadSucceeded = messages.BooleanField(2)
  testFailures = messages.MessageField('TestFailure', 3, repeated=True)
  testPassed = messages.BooleanField(4)


class UrlMapsValidateRequest(messages.Message):
  """A UrlMapsValidateRequest object.

  Fields:
    resource: Content of the UrlMap to be validated.
  """

  resource = messages.MessageField('UrlMap', 1)


class UrlMapsValidateResponse(messages.Message):
  """A UrlMapsValidateResponse object.

  Fields:
    result: A UrlMapValidationResult attribute.
  """

  result = messages.MessageField('UrlMapValidationResult', 1)


class UsageExportLocation(messages.Message):
  """The location in Cloud Storage and naming method of the daily usage
  report. Contains bucket_name and report_name prefix.

  Fields:
    bucketName: The name of an existing bucket in Cloud Storage where the
      usage report object is stored. The Google Service Account is granted
      write access to this bucket. This is simply the bucket name, with no
      "gs://" or "https://storage.googleapis.com/" in front of it.
    reportNamePrefix: An optional prefix for the name of the usage report
      object stored in bucket_name. If not supplied, defaults to "usage_". The
      report is stored as a CSV file named _gce_.csv. where  is the day of the
      usage according to Pacific Time. The prefix should conform to Cloud
      Storage object naming conventions.
  """

  bucketName = messages.StringField(1)
  reportNamePrefix = messages.StringField(2)


class Zone(messages.Message):
  """A zone resource.

  Enums:
    StatusValueValuesEnum: Status of the zone. "UP" or "DOWN".

  Messages:
    MaintenanceWindowsValueListEntry: A MaintenanceWindowsValueListEntry
      object.

  Fields:
    creationTimestamp: Creation timestamp in RFC3339 text format (output
      only).
    deprecated: The deprecation status associated with this zone.
    description: Textual description of the resource.
    id: Unique identifier for the resource; defined by the server (output
      only).
    kind: Type of the resource.
    maintenanceWindows: Scheduled maintenance windows for the zone. When the
      zone is in a maintenance window, all resources which reside in the zone
      will be unavailable.
    name: Name of the resource.
    region: Full URL reference to the region which hosts the zone (output
      only).
    selfLink: Server defined URL for the resource (output only).
    status: Status of the zone. "UP" or "DOWN".
  """

  class StatusValueValuesEnum(messages.Enum):
    """Status of the zone. "UP" or "DOWN".

    Values:
      DOWN: <no description>
      UP: <no description>
    """
    DOWN = 0
    UP = 1

  class MaintenanceWindowsValueListEntry(messages.Message):
    """A MaintenanceWindowsValueListEntry object.

    Fields:
      beginTime: Begin time of the maintenance window, in RFC 3339 format.
      description: Textual description of the maintenance window.
      endTime: End time of the maintenance window, in RFC 3339 format.
      name: Name of the maintenance window.
    """

    beginTime = messages.StringField(1)
    description = messages.StringField(2)
    endTime = messages.StringField(3)
    name = messages.StringField(4)

  creationTimestamp = messages.StringField(1)
  deprecated = messages.MessageField('DeprecationStatus', 2)
  description = messages.StringField(3)
  id = messages.IntegerField(4, variant=messages.Variant.UINT64)
  kind = messages.StringField(5, default=u'compute#zone')
  maintenanceWindows = messages.MessageField('MaintenanceWindowsValueListEntry', 6, repeated=True)
  name = messages.StringField(7)
  region = messages.StringField(8)
  selfLink = messages.StringField(9)
  status = messages.EnumField('StatusValueValuesEnum', 10)


class ZoneList(messages.Message):
  """Contains a list of zone resources.

  Fields:
    id: Unique identifier for the resource; defined by the server (output
      only).
    items: The zone resources.
    kind: Type of resource.
    nextPageToken: A token used to continue a truncated list request (output
      only).
    selfLink: Server defined URL for this resource (output only).
  """

  id = messages.StringField(1)
  items = messages.MessageField('Zone', 2, repeated=True)
  kind = messages.StringField(3, default=u'compute#zoneList')
  nextPageToken = messages.StringField(4)
  selfLink = messages.StringField(5)