fullclr/Google.Apis.Storage.v1.xml

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Google.Apis.Storage.v1</name>
    </assembly>
    <members>
        <member name="T:Google.Apis.Storage.v1.StorageService">
            <summary>The Storage Service.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Version">
            <summary>The API version.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.DiscoveryVersionUsed">
            <summary>The discovery version used to generate this service.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.StorageService.#ctor">
            <summary>Constructs a new service.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.StorageService.#ctor(Google.Apis.Services.BaseClientService.Initializer)">
            <summary>Constructs a new service.</summary>
            <param name="initializer">The service initializer.</param>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Features">
            <summary>Gets the service supported features.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Name">
            <summary>Gets the service name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.BaseUri">
            <summary>Gets the service base URI.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.BasePath">
            <summary>Gets the service base path.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.BatchUri">
            <summary>Gets the batch base URI; <c>null</c> if unspecified.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.BatchPath">
            <summary>Gets the batch base path; <c>null</c> if unspecified.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.StorageService.Scope">
            <summary>Available OAuth 2.0 scopes for use with the Cloud Storage JSON API.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Scope.CloudPlatform">
            <summary>View and manage your data across Google Cloud Platform services</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Scope.CloudPlatformReadOnly">
            <summary>View your data across Google Cloud Platform services</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Scope.DevstorageFullControl">
            <summary>Manage your data and permissions in Google Cloud Storage</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Scope.DevstorageReadOnly">
            <summary>View your data in Google Cloud Storage</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageService.Scope.DevstorageReadWrite">
            <summary>Manage your data in Google Cloud Storage</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.BucketAccessControls">
            <summary>Gets the BucketAccessControls resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Buckets">
            <summary>Gets the Buckets resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Channels">
            <summary>Gets the Channels resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.DefaultObjectAccessControls">
            <summary>Gets the DefaultObjectAccessControls resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Notifications">
            <summary>Gets the Notifications resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.ObjectAccessControls">
            <summary>Gets the ObjectAccessControls resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Objects">
            <summary>Gets the Objects resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageService.Projects">
            <summary>Gets the Projects resource.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.StorageBaseServiceRequest`1">
            <summary>A base abstract class for Storage requests.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new StorageBaseServiceRequest instance.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.Alt">
            <summary>Data format for the response.</summary>
            [default: json]
        </member>
        <member name="T:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.AltEnum">
            <summary>Data format for the response.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.AltEnum.Json">
            <summary>Responses with Content-Type of application/json</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.Fields">
            <summary>Selector specifying which fields to include in a partial response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.Key">
            <summary>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.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.OauthToken">
            <summary>OAuth 2.0 token for the current user.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.PrettyPrint">
            <summary>Returns response with indentations and line breaks.</summary>
            [default: true]
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.QuotaUser">
            <summary>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.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.UserIp">
            <summary>IP address of the site where the request originates. Use this if you want to enforce per-user
            limits.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.StorageBaseServiceRequest`1.InitParameters">
            <summary>Initializes Storage parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource">
            <summary>The "bucketAccessControls" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketAccessControlsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.Delete(System.String,System.String)">
            <summary>Permanently deletes the ACL entry for the specified entity on the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest">
            <summary>Permanently deletes the ACL entry for the specified entity on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.Get(System.String,System.String)">
            <summary>Returns the ACL entry for the specified entity on the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest">
            <summary>Returns the ACL entry for the specified entity on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.Insert(Google.Apis.Storage.v1.Data.BucketAccessControl,System.String)">
            <summary>Creates a new ACL entry on the specified bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest">
            <summary>Creates a new ACL entry on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.BucketAccessControl,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.List(System.String)">
            <summary>Retrieves ACL entries on the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest">
            <summary>Retrieves ACL entries on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.Patch(Google.Apis.Storage.v1.Data.BucketAccessControl,System.String,System.String)">
            <summary>Updates an ACL entry on the specified bucket. This method supports patch semantics.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest">
            <summary>Updates an ACL entry on the specified bucket. This method supports patch semantics.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.BucketAccessControl,System.String,System.String)">
            <summary>Constructs a new Patch request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.PatchRequest.InitParameters">
            <summary>Initializes Patch parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.Update(Google.Apis.Storage.v1.Data.BucketAccessControl,System.String,System.String)">
            <summary>Updates an ACL entry on the specified bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest">
            <summary>Updates an ACL entry on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.BucketAccessControl,System.String,System.String)">
            <summary>Constructs a new Update request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketAccessControlsResource.UpdateRequest.InitParameters">
            <summary>Initializes Update parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource">
            <summary>The "buckets" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.Delete(System.String)">
            <summary>Permanently deletes an empty bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.DeleteRequest">
            <summary>Permanently deletes an empty bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.IfMetagenerationMatch">
            <summary>If set, only deletes the bucket if its metageneration matches this value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.IfMetagenerationNotMatch">
            <summary>If set, only deletes the bucket if its metageneration does not match this value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.Get(System.String)">
            <summary>Returns metadata for the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.GetRequest">
            <summary>Returns metadata for the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.IfMetagenerationMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration matches the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.IfMetagenerationNotMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration does not match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.GetRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.GetRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.GetRequest.ProjectionEnum.NoAcl">
            <summary>Omit owner, acl and defaultObjectAcl properties.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.GetIamPolicy(System.String)">
            <summary>Returns an IAM policy for the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest">
            <summary>Returns an IAM policy for the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new GetIamPolicy request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.GetIamPolicyRequest.InitParameters">
            <summary>Initializes GetIamPolicy parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.Insert(Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Creates a new bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="project">A valid API project identifier.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.InsertRequest">
            <summary>Creates a new bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.Project">
            <summary>A valid API project identifier.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Project team owners get OWNER access, and allAuthenticatedUsers get READER
            access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum.Private__">
            <summary>Project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Project team members get access according to their roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum.PublicRead">
            <summary>Project team owners get OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedAclEnum.PublicReadWrite">
            <summary>Project team owners get OWNER access, and allUsers get WRITER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAcl">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.PredefinedDefaultObjectAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or
            defaultObjectAcl properties, when it defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.InsertRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or
            defaultObjectAcl properties, when it defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.InsertRequest.ProjectionEnum.NoAcl">
            <summary>Omit owner, acl and defaultObjectAcl properties.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.List(System.String)">
            <summary>Retrieves a list of buckets for a given project.</summary>
            <param name="project">A valid API project identifier.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.ListRequest">
            <summary>Retrieves a list of buckets for a given project.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.Project">
            <summary>A valid API project identifier.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.MaxResults">
            <summary>Maximum number of buckets to return in a single response. The service will use this parameter
            or 1,000 items, whichever is smaller.</summary>
            [default: 1000]
            [minimum: 0]
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.PageToken">
            <summary>A previously-returned page token representing part of the larger set of results to
            view.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.Prefix">
            <summary>Filter results to buckets whose names begin with this prefix.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.ListRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.ListRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.ListRequest.ProjectionEnum.NoAcl">
            <summary>Omit owner, acl and defaultObjectAcl properties.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.Patch(Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Updates a bucket. Changes to the bucket will be readable immediately after writing, but
            configuration changes may take time to propagate. This method supports patch semantics.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.PatchRequest">
            <summary>Updates a bucket. Changes to the bucket will be readable immediately after writing, but
            configuration changes may take time to propagate. This method supports patch semantics.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.PatchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Constructs a new Patch request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.IfMetagenerationMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration matches the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.IfMetagenerationNotMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration does not match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Project team owners get OWNER access, and allAuthenticatedUsers get READER
            access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum.Private__">
            <summary>Project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Project team members get access according to their roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum.PublicRead">
            <summary>Project team owners get OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedAclEnum.PublicReadWrite">
            <summary>Project team owners get OWNER access, and allUsers get WRITER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAcl">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.PredefinedDefaultObjectAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.Projection">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.PatchRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.PatchRequest.ProjectionEnum.NoAcl">
            <summary>Omit owner, acl and defaultObjectAcl properties.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.PatchRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.PatchRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.PatchRequest.InitParameters">
            <summary>Initializes Patch parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.SetIamPolicy(Google.Apis.Storage.v1.Data.Policy,System.String)">
            <summary>Updates an IAM policy for the specified bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest">
            <summary>Updates an IAM policy for the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Policy,System.String)">
            <summary>Constructs a new SetIamPolicy request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.SetIamPolicyRequest.InitParameters">
            <summary>Initializes SetIamPolicy parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.TestIamPermissions(System.String,Google.Apis.Util.Repeatable{System.String})">
            <summary>Tests a set of permissions on the given bucket to see which, if any, are held by the
            caller.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="permissions">Permissions to test.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest">
            <summary>Tests a set of permissions on the given bucket to see which, if any, are held by the
            caller.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.#ctor(Google.Apis.Services.IClientService,System.String,Google.Apis.Util.Repeatable{System.String})">
            <summary>Constructs a new TestIamPermissions request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.Permissions">
            <summary>Permissions to test.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.TestIamPermissionsRequest.InitParameters">
            <summary>Initializes TestIamPermissions parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.Update(Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Updates a bucket. Changes to the bucket will be readable immediately after writing, but
            configuration changes may take time to propagate.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.UpdateRequest">
            <summary>Updates a bucket. Changes to the bucket will be readable immediately after writing, but
            configuration changes may take time to propagate.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Bucket,System.String)">
            <summary>Constructs a new Update request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.IfMetagenerationMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration matches the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.IfMetagenerationNotMatch">
            <summary>Makes the return of the bucket metadata conditional on whether the bucket's current
            metageneration does not match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Project team owners get OWNER access, and allAuthenticatedUsers get READER
            access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum.Private__">
            <summary>Project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Project team members get access according to their roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum.PublicRead">
            <summary>Project team owners get OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedAclEnum.PublicReadWrite">
            <summary>Project team owners get OWNER access, and allUsers get WRITER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAcl">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum">
            <summary>Apply a predefined set of default object access controls to this bucket.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.PredefinedDefaultObjectAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.Projection">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.ProjectionEnum.NoAcl">
            <summary>Omit owner, acl and defaultObjectAcl properties.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.BucketsResource.UpdateRequest.InitParameters">
            <summary>Initializes Update parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ChannelsResource">
            <summary>The "channels" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ChannelsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ChannelsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ChannelsResource.Stop(Google.Apis.Storage.v1.Data.Channel)">
            <summary>Stop watching resources through this channel</summary>
            <param name="body">The body of the request.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ChannelsResource.StopRequest">
            <summary>Stop watching resources through this channel</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ChannelsResource.StopRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Channel)">
            <summary>Constructs a new Stop request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ChannelsResource.StopRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ChannelsResource.StopRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ChannelsResource.StopRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ChannelsResource.StopRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ChannelsResource.StopRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ChannelsResource.StopRequest.InitParameters">
            <summary>Initializes Stop parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource">
            <summary>The "defaultObjectAccessControls" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.Delete(System.String,System.String)">
            <summary>Permanently deletes the default object ACL entry for the specified entity on the specified
            bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest">
            <summary>Permanently deletes the default object ACL entry for the specified entity on the specified
            bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.Get(System.String,System.String)">
            <summary>Returns the default object ACL entry for the specified entity on the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest">
            <summary>Returns the default object ACL entry for the specified entity on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.Insert(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String)">
            <summary>Creates a new default object ACL entry on the specified bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest">
            <summary>Creates a new default object ACL entry on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.List(System.String)">
            <summary>Retrieves default object ACL entries on the specified bucket.</summary>
            <param name="bucket">Name of a bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest">
            <summary>Retrieves default object ACL entries on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.IfMetagenerationMatch">
            <summary>If present, only return default ACL listing if the bucket's current metageneration matches this
            value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.IfMetagenerationNotMatch">
            <summary>If present, only return default ACL listing if the bucket's current metageneration does not
            match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.Patch(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Updates a default object ACL entry on the specified bucket. This method supports patch
            semantics.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest">
            <summary>Updates a default object ACL entry on the specified bucket. This method supports patch
            semantics.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Constructs a new Patch request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.PatchRequest.InitParameters">
            <summary>Initializes Patch parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.Update(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Updates a default object ACL entry on the specified bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
            <param name="entity">The entity holding the permission. Can
            be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or
            allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest">
            <summary>Updates a default object ACL entry on the specified bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Constructs a new Update request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.DefaultObjectAccessControlsResource.UpdateRequest.InitParameters">
            <summary>Initializes Update parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.NotificationsResource">
            <summary>The "notifications" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.NotificationsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.Delete(System.String,System.String)">
            <summary>Permanently deletes a notification subscription.</summary>
            <param name="bucket">The parent bucket of the notification.</param>
            <param name="notification">ID of the
            notification to delete.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest">
            <summary>Permanently deletes a notification subscription.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.Bucket">
            <summary>The parent bucket of the notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.Notification">
            <summary>ID of the notification to delete.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.Get(System.String,System.String)">
            <summary>View a notification configuration.</summary>
            <param name="bucket">The parent bucket of the notification.</param>
            <param name="notification">Notification
            ID</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.NotificationsResource.GetRequest">
            <summary>View a notification configuration.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.Bucket">
            <summary>The parent bucket of the notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.Notification">
            <summary>Notification ID</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.Insert(Google.Apis.Storage.v1.Data.Notification,System.String)">
            <summary>Creates a notification subscription for a given bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">The parent bucket of the notification.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.NotificationsResource.InsertRequest">
            <summary>Creates a notification subscription for a given bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Notification,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.Bucket">
            <summary>The parent bucket of the notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.List(System.String)">
            <summary>Retrieves a list of notification subscriptions for a given bucket.</summary>
            <param name="bucket">Name of a Google Cloud Storage bucket.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.NotificationsResource.ListRequest">
            <summary>Retrieves a list of notification subscriptions for a given bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.ListRequest.Bucket">
            <summary>Name of a Google Cloud Storage bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.ListRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.NotificationsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.NotificationsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource">
            <summary>The "objectAccessControls" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectAccessControlsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.Delete(System.String,System.String,System.String)">
             <summary>Permanently deletes the ACL entry for the specified entity on the specified object.</summary>
             <param name="bucket">Name of a bucket.</param>
             <param name="storageObject">Name of the object. For
             information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
             
             <param name="entity">The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
             emailAddress, allUsers, or allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest">
            <summary>Permanently deletes the ACL entry for the specified entity on the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.Get(System.String,System.String,System.String)">
             <summary>Returns the ACL entry for the specified entity on the specified object.</summary>
             <param name="bucket">Name of a bucket.</param>
             <param name="storageObject">Name of the object. For
             information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
             
             <param name="entity">The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
             emailAddress, allUsers, or allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest">
            <summary>Returns the ACL entry for the specified entity on the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.Insert(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Creates a new ACL entry on the specified object.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of a bucket.</param>
            <param name="storageObject">Name of the object. For
            information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest">
            <summary>Creates a new ACL entry on the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.List(System.String,System.String)">
            <summary>Retrieves ACL entries on the specified object.</summary>
            <param name="bucket">Name of a bucket.</param>
            <param name="storageObject">Name of the object. For
            information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest">
            <summary>Retrieves ACL entries on the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.Patch(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String,System.String)">
             <summary>Updates an ACL entry on the specified object. This method supports patch semantics.</summary>
             <param name="body">The body of the request.</param>
             <param name="bucket">Name of a bucket.</param>
             <param name="storageObject">Name of the object. For
             information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
             
             <param name="entity">The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
             emailAddress, allUsers, or allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest">
            <summary>Updates an ACL entry on the specified object. This method supports patch semantics.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String,System.String)">
            <summary>Constructs a new Patch request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.PatchRequest.InitParameters">
            <summary>Initializes Patch parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.Update(Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String,System.String)">
             <summary>Updates an ACL entry on the specified object.</summary>
             <param name="body">The body of the request.</param>
             <param name="bucket">Name of a bucket.</param>
             <param name="storageObject">Name of the object. For
             information about how to URL encode object names to be path safe, see Encoding URI Path Parts.</param>
             
             <param name="entity">The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
             emailAddress, allUsers, or allAuthenticatedUsers.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest">
            <summary>Updates an ACL entry on the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ObjectAccessControl,System.String,System.String,System.String)">
            <summary>Constructs a new Update request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.Bucket">
            <summary>Name of a bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.Entity">
            <summary>The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-
            emailAddress, allUsers, or allAuthenticatedUsers.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectAccessControlsResource.UpdateRequest.InitParameters">
            <summary>Initializes Update parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource">
            <summary>The "objects" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Compose(Google.Apis.Storage.v1.Data.ComposeRequest,System.String,System.String)">
            <summary>Concatenates a list of existing objects into a new object in the same bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="destinationBucket">Name of the bucket in which to store the new object.</param>
            <param
            name="destinationObject">Name of the new object. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest">
            <summary>Concatenates a list of existing objects into a new object in the same bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.ComposeRequest,System.String,System.String)">
            <summary>Constructs a new Compose request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationBucket">
            <summary>Name of the bucket in which to store the new object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationObject">
            <summary>Name of the new object. For information about how to URL encode object names to be path safe,
            see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAcl">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DestinationPredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.KmsKeyName">
            <summary>Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings
            /my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's
            kms_key_name value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.InitParameters">
            <summary>Initializes Compose parameter list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.MediaDownloader">
            <summary>Gets the media downloader.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.Download(System.IO.Stream)">
            <summary>
            <para>Synchronously download the media into the given stream.</para>
            <para>Warning: This method hides download errors; use <see cref="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadWithStatus(System.IO.Stream)"/> instead.</para>
            </summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadWithStatus(System.IO.Stream)">
            <summary>Synchronously download the media into the given stream.</summary>
            <returns>The final status of the download; including whether the download succeeded or failed.</returns>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadAsync(System.IO.Stream)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadAsync(System.IO.Stream,System.Threading.CancellationToken)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadRange(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue)">
            <summary>Synchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ComposeRequest.DownloadRangeAsync(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Threading.CancellationToken)">
            <summary>Asynchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Copy(Google.Apis.Storage.v1.Data.Object,System.String,System.String,System.String,System.String)">
            <summary>Copies a source object to a destination object. Optionally overrides metadata.</summary>
            <param name="body">The body of the request.</param>
            <param name="sourceBucket">Name of the bucket in which to find the source object.</param>
            <param
            name="sourceObject">Name of the source object. For information about how to URL encode object names to be path safe,
            see Encoding URI Path Parts.</param>
            <param name="destinationBucket">Name of the bucket in which to store
            the new object. Overrides the provided object metadata's bucket value, if any.For information about how to URL
            encode object names to be path safe, see Encoding URI Path Parts.</param>
            <param
            name="destinationObject">Name of the new object. Required when the object metadata is not otherwise provided.
            Overrides the object metadata's name value, if any.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.CopyRequest">
            <summary>Copies a source object to a destination object. Optionally overrides metadata.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String,System.String,System.String,System.String)">
            <summary>Constructs a new Copy request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.SourceBucket">
            <summary>Name of the bucket in which to find the source object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.SourceObject">
            <summary>Name of the source object. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationBucket">
            <summary>Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.For information about how to URL encode object names to be path safe, see Encoding
            URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationObject">
            <summary>Name of the new object. Required when the object metadata is not otherwise provided. Overrides
            the object metadata's name value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAcl">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DestinationPredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the destination object's current generation matches
            the given value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the destination object's current generation does not
            match the given value. If no live object exists, the precondition fails. Setting to 0 makes the
            operation succeed only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the destination object's current metageneration
            matches the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the destination object's current metageneration does
            not match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfSourceGenerationMatch">
            <summary>Makes the operation conditional on whether the source object's current generation matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfSourceGenerationNotMatch">
            <summary>Makes the operation conditional on whether the source object's current generation does not
            match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfSourceMetagenerationMatch">
            <summary>Makes the operation conditional on whether the source object's current metageneration matches
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.IfSourceMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the source object's current metageneration does not
            match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.SourceGeneration">
            <summary>If present, selects a specific revision of the source object (as opposed to the latest version,
            the default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.InitParameters">
            <summary>Initializes Copy parameter list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.MediaDownloader">
            <summary>Gets the media downloader.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.Download(System.IO.Stream)">
            <summary>
            <para>Synchronously download the media into the given stream.</para>
            <para>Warning: This method hides download errors; use <see cref="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadWithStatus(System.IO.Stream)"/> instead.</para>
            </summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadWithStatus(System.IO.Stream)">
            <summary>Synchronously download the media into the given stream.</summary>
            <returns>The final status of the download; including whether the download succeeded or failed.</returns>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadAsync(System.IO.Stream)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadAsync(System.IO.Stream,System.Threading.CancellationToken)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadRange(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue)">
            <summary>Synchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.CopyRequest.DownloadRangeAsync(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Threading.CancellationToken)">
            <summary>Asynchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Delete(System.String,System.String)">
            <summary>Deletes an object and its metadata. Deletions are permanent if versioning is not enabled for the
            bucket, or if the generation parameter is used.</summary>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest">
            <summary>Deletes an object and its metadata. Deletions are permanent if versioning is not enabled for the
            bucket, or if the generation parameter is used.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Delete request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.Generation">
            <summary>If present, permanently deletes a specific revision of this object (as opposed to the latest
            version, the default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.DeleteRequest.InitParameters">
            <summary>Initializes Delete parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Get(System.String,System.String)">
            <summary>Retrieves an object or its metadata.</summary>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.GetRequest">
            <summary>Retrieves an object or its metadata.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.GetRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.GetRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.GetRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetRequest.MediaDownloader">
            <summary>Gets the media downloader.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.Download(System.IO.Stream)">
            <summary>
            <para>Synchronously download the media into the given stream.</para>
            <para>Warning: This method hides download errors; use <see cref="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadWithStatus(System.IO.Stream)"/> instead.</para>
            </summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadWithStatus(System.IO.Stream)">
            <summary>Synchronously download the media into the given stream.</summary>
            <returns>The final status of the download; including whether the download succeeded or failed.</returns>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadAsync(System.IO.Stream)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadAsync(System.IO.Stream,System.Threading.CancellationToken)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadRange(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue)">
            <summary>Synchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetRequest.DownloadRangeAsync(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Threading.CancellationToken)">
            <summary>Asynchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicy(System.String,System.String)">
            <summary>Returns an IAM policy for the specified object.</summary>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest">
            <summary>Returns an IAM policy for the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String)">
            <summary>Constructs a new GetIamPolicy request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.GetIamPolicyRequest.InitParameters">
            <summary>Initializes GetIamPolicy parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Insert(Google.Apis.Storage.v1.Data.Object,System.String)">
            <summary>Stores a new object and metadata.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertRequest">
            <summary>Stores a new object and metadata.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String)">
            <summary>Constructs a new Insert request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.Bucket">
            <summary>Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.ContentEncoding">
            <summary>If set, sets the contentEncoding property of the final object to this value. Setting this
            parameter is equivalent to setting the contentEncoding metadata property. This can be useful when
            uploading an object with uploadType=media to indicate the encoding of the content being
            uploaded.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.KmsKeyName">
            <summary>Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings
            /my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's
            kms_key_name value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.Name">
            <summary>Name of the object. Required when the object metadata is not otherwise provided. Overrides the
            object metadata's name value, if any. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.PredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.InitParameters">
            <summary>Initializes Insert parameter list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.MediaDownloader">
            <summary>Gets the media downloader.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.Download(System.IO.Stream)">
            <summary>
            <para>Synchronously download the media into the given stream.</para>
            <para>Warning: This method hides download errors; use <see cref="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadWithStatus(System.IO.Stream)"/> instead.</para>
            </summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadWithStatus(System.IO.Stream)">
            <summary>Synchronously download the media into the given stream.</summary>
            <returns>The final status of the download; including whether the download succeeded or failed.</returns>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadAsync(System.IO.Stream)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadAsync(System.IO.Stream,System.Threading.CancellationToken)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadRange(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue)">
            <summary>Synchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertRequest.DownloadRangeAsync(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Threading.CancellationToken)">
            <summary>Asynchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Insert(Google.Apis.Storage.v1.Data.Object,System.String,System.IO.Stream,System.String)">
            <summary>Stores a new object and metadata.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.</param>
            <param name="stream">The stream to upload.</param>
            <param name="contentType">The content type of the stream to upload.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload">
            <summary>Insert media upload which supports resumable upload.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Alt">
            <summary>Data format for the response.</summary>
            [default: json]
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.AltEnum">
            <summary>Data format for the response.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.AltEnum.Json">
            <summary>Responses with Content-Type of application/json</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Fields">
            <summary>Selector specifying which fields to include in a partial response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Key">
            <summary>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.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.OauthToken">
            <summary>OAuth 2.0 token for the current user.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PrettyPrint">
            <summary>Returns response with indentations and line breaks.</summary>
            [default: true]
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.QuotaUser">
            <summary>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.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.UserIp">
            <summary>IP address of the site where the request originates. Use this if you want to enforce per-user
            limits.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Bucket">
            <summary>Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.ContentEncoding">
            <summary>If set, sets the contentEncoding property of the final object to this value. Setting this
            parameter is equivalent to setting the contentEncoding metadata property. This can be useful when
            uploading an object with uploadType=media to indicate the encoding of the content being
            uploaded.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.KmsKeyName">
            <summary>Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings
            /my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's
            kms_key_name value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Name">
            <summary>Name of the object. Required when the object metadata is not otherwise provided. Overrides the
            object metadata's name value, if any. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.PredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.Projection">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.InsertMediaUpload.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String,System.IO.Stream,System.String)">
            <summary>Constructs a new Insert media upload instance.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.List(System.String)">
            <summary>Retrieves a list of objects matching the criteria.</summary>
            <param name="bucket">Name of the bucket in which to look for objects.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.ListRequest">
            <summary>Retrieves a list of objects matching the criteria.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ListRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new List request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.Bucket">
            <summary>Name of the bucket in which to look for objects.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.Delimiter">
            <summary>Returns results in a directory-like mode. items will contain only objects whose names, aside
            from the prefix, do not contain delimiter. Objects whose names, aside from the prefix, contain delimiter
            will have their name, truncated after the delimiter, returned in prefixes. Duplicate prefixes are
            omitted.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.MaxResults">
            <summary>Maximum number of items plus prefixes to return in a single page of responses. As duplicate
            prefixes are omitted, fewer total results may be returned than requested. The service will use this
            parameter or 1,000 items, whichever is smaller.</summary>
            [default: 1000]
            [minimum: 0]
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.PageToken">
            <summary>A previously-returned page token representing part of the larger set of results to
            view.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.Prefix">
            <summary>Filter results to objects whose names begin with this prefix.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.ListRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ListRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.ListRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.Versions">
            <summary>If true, lists all versions of an object as distinct results. The default is false. For more
            information, see Object Versioning.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.ListRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.ListRequest.InitParameters">
            <summary>Initializes List parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Patch(Google.Apis.Storage.v1.Data.Object,System.String,System.String)">
            <summary>Updates an object's metadata. This method supports patch semantics.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.PatchRequest">
            <summary>Updates an object's metadata. This method supports patch semantics.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String,System.String)">
            <summary>Constructs a new Patch request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.PredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.Projection">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.PatchRequest.InitParameters">
            <summary>Initializes Patch parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Rewrite(Google.Apis.Storage.v1.Data.Object,System.String,System.String,System.String,System.String)">
            <summary>Rewrites a source object to a destination object. Optionally overrides metadata.</summary>
            <param name="body">The body of the request.</param>
            <param name="sourceBucket">Name of the bucket in which to find the source object.</param>
            <param
            name="sourceObject">Name of the source object. For information about how to URL encode object names to be path safe,
            see Encoding URI Path Parts.</param>
            <param name="destinationBucket">Name of the bucket in which to store
            the new object. Overrides the provided object metadata's bucket value, if any.</param>
            <param
            name="destinationObject">Name of the new object. Required when the object metadata is not otherwise provided.
            Overrides the object metadata's name value, if any. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest">
            <summary>Rewrites a source object to a destination object. Optionally overrides metadata.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String,System.String,System.String,System.String)">
            <summary>Constructs a new Rewrite request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.SourceBucket">
            <summary>Name of the bucket in which to find the source object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.SourceObject">
            <summary>Name of the source object. For information about how to URL encode object names to be path
            safe, see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationBucket">
            <summary>Name of the bucket in which to store the new object. Overrides the provided object metadata's
            bucket value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationObject">
            <summary>Name of the new object. Required when the object metadata is not otherwise provided. Overrides
            the object metadata's name value, if any. For information about how to URL encode object names to be
            path safe, see Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationKmsKeyName">
            <summary>Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings
            /my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's
            kms_key_name value, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAcl">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum">
            <summary>Apply a predefined set of access controls to the destination object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.DestinationPredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the destination object's current metageneration
            matches the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the destination object's current metageneration does
            not match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfSourceGenerationMatch">
            <summary>Makes the operation conditional on whether the source object's current generation matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfSourceGenerationNotMatch">
            <summary>Makes the operation conditional on whether the source object's current generation does not
            match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfSourceMetagenerationMatch">
            <summary>Makes the operation conditional on whether the source object's current metageneration matches
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.IfSourceMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the source object's current metageneration does not
            match the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.MaxBytesRewrittenPerCall">
            <summary>The maximum number of bytes that will be rewritten per rewrite request. Most callers shouldn't
            need to specify this parameter - it is primarily in place to support testing. If specified the value
            must be an integral multiple of 1 MiB (1048576). Also, this only applies to requests where the source
            and destination span locations and/or storage classes. Finally, this value must not change across
            rewrite calls else you'll get an error that the rewriteToken is invalid.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl
            property, when it defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.RewriteToken">
            <summary>Include this field (from the previous rewrite response) on each rewrite request after the first
            one, until the rewrite response 'done' flag is true. Calls that provide a rewriteToken can omit all
            other request fields, but if included those fields must match the values provided in the first rewrite
            request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.SourceGeneration">
            <summary>If present, selects a specific revision of the source object (as opposed to the latest version,
            the default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.RewriteRequest.InitParameters">
            <summary>Initializes Rewrite parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicy(Google.Apis.Storage.v1.Data.Policy,System.String,System.String)">
            <summary>Updates an IAM policy for the specified object.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest">
            <summary>Updates an IAM policy for the specified object.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Policy,System.String,System.String)">
            <summary>Constructs a new SetIamPolicy request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.SetIamPolicyRequest.InitParameters">
            <summary>Initializes SetIamPolicy parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissions(System.String,System.String,Google.Apis.Util.Repeatable{System.String})">
            <summary>Tests a set of permissions on the given object to see which, if any, are held by the
            caller.</summary>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
            <param name="permissions">Permissions to test.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest">
            <summary>Tests a set of permissions on the given object to see which, if any, are held by the
            caller.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.#ctor(Google.Apis.Services.IClientService,System.String,System.String,Google.Apis.Util.Repeatable{System.String})">
            <summary>Constructs a new TestIamPermissions request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.Permissions">
            <summary>Permissions to test.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.TestIamPermissionsRequest.InitParameters">
            <summary>Initializes TestIamPermissions parameter list.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.Update(Google.Apis.Storage.v1.Data.Object,System.String,System.String)">
            <summary>Updates an object's metadata.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which the object resides.</param>
            <param
            name="storageObject">Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest">
            <summary>Updates an object's metadata.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Object,System.String,System.String)">
            <summary>Constructs a new Update request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Bucket">
            <summary>Name of the bucket in which the object resides.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Object">
            <summary>Name of the object. For information about how to URL encode object names to be path safe, see
            Encoding URI Path Parts.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Generation">
            <summary>If present, selects a specific revision of this object (as opposed to the latest version, the
            default).</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.IfGenerationMatch">
            <summary>Makes the operation conditional on whether the object's current generation matches the given
            value. Setting to 0 makes the operation succeed only if there are no live versions of the
            object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.IfGenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current generation does not match the
            given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed
            only if there is a live version of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.IfMetagenerationMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration matches the
            given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.IfMetagenerationNotMatch">
            <summary>Makes the operation conditional on whether the object's current metageneration does not match
            the given value.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAcl">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum">
            <summary>Apply a predefined set of access controls to this object.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.AuthenticatedRead">
            <summary>Object owner gets OWNER access, and allAuthenticatedUsers get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.BucketOwnerFullControl">
            <summary>Object owner gets OWNER access, and project team owners get OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.BucketOwnerRead">
            <summary>Object owner gets OWNER access, and project team owners get READER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.Private__">
            <summary>Object owner gets OWNER access.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.ProjectPrivate">
            <summary>Object owner gets OWNER access, and project team members get access according to their
            roles.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.PredefinedAclEnum.PublicRead">
            <summary>Object owner gets OWNER access, and allUsers get READER access.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Projection">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to full.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.InitParameters">
            <summary>Initializes Update parameter list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.MediaDownloader">
            <summary>Gets the media downloader.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.Download(System.IO.Stream)">
            <summary>
            <para>Synchronously download the media into the given stream.</para>
            <para>Warning: This method hides download errors; use <see cref="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadWithStatus(System.IO.Stream)"/> instead.</para>
            </summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadWithStatus(System.IO.Stream)">
            <summary>Synchronously download the media into the given stream.</summary>
            <returns>The final status of the download; including whether the download succeeded or failed.</returns>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadAsync(System.IO.Stream)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadAsync(System.IO.Stream,System.Threading.CancellationToken)">
            <summary>Asynchronously download the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadRange(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue)">
            <summary>Synchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.UpdateRequest.DownloadRangeAsync(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Threading.CancellationToken)">
            <summary>Asynchronously download a range of the media into the given stream.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.WatchAll(Google.Apis.Storage.v1.Data.Channel,System.String)">
            <summary>Watch for changes on all objects in a bucket.</summary>
            <param name="body">The body of the request.</param>
            <param name="bucket">Name of the bucket in which to look for objects.</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest">
            <summary>Watch for changes on all objects in a bucket.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Storage.v1.Data.Channel,System.String)">
            <summary>Constructs a new WatchAll request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Bucket">
            <summary>Name of the bucket in which to look for objects.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Delimiter">
            <summary>Returns results in a directory-like mode. items will contain only objects whose names, aside
            from the prefix, do not contain delimiter. Objects whose names, aside from the prefix, contain delimiter
            will have their name, truncated after the delimiter, returned in prefixes. Duplicate prefixes are
            omitted.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.MaxResults">
            <summary>Maximum number of items plus prefixes to return in a single page of responses. As duplicate
            prefixes are omitted, fewer total results may be returned than requested. The service will use this
            parameter or 1,000 items, whichever is smaller.</summary>
            [default: 1000]
            [minimum: 0]
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.PageToken">
            <summary>A previously-returned page token representing part of the larger set of results to
            view.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Prefix">
            <summary>Filter results to objects whose names begin with this prefix.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Projection">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.ProjectionEnum">
            <summary>Set of properties to return. Defaults to noAcl.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.ProjectionEnum.Full">
            <summary>Include all properties.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.ProjectionEnum.NoAcl">
            <summary>Omit the owner, acl property.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.UserProject">
            <summary>The project to be billed for this request, for Requester Pays buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Versions">
            <summary>If true, lists all versions of an object as distinct results. The default is false. For more
            information, see Object Versioning.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.Body">
            <summary>Gets or sets the body of this request.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.GetBody">
            <summary>Returns the body of the request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ObjectsResource.WatchAllRequest.InitParameters">
            <summary>Initializes WatchAll parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ProjectsResource">
            <summary>The "projects" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ProjectsResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ProjectsResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ProjectsResource.ServiceAccount">
            <summary>Gets the ServiceAccount resource.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource">
            <summary>The "serviceAccount" collection of methods.</summary>
        </member>
        <member name="F:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.service">
            <summary>The service which this resource belongs to.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.#ctor(Google.Apis.Services.IClientService)">
            <summary>Constructs a new resource.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.Get(System.String)">
            <summary>Get the email address of this project's Google Cloud Storage service account.</summary>
            <param name="projectId">Project ID</param>
        </member>
        <member name="T:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest">
            <summary>Get the email address of this project's Google Cloud Storage service account.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
            <summary>Constructs a new Get request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.ProjectId">
            <summary>Project ID</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.MethodName">
            <summary>Gets the method name.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.HttpMethod">
            <summary>Gets the HTTP method.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.RestPath">
            <summary>Gets the REST path.</summary>
        </member>
        <member name="M:Google.Apis.Storage.v1.ProjectsResource.ServiceAccountResource.GetRequest.InitParameters">
            <summary>Initializes Get parameter list.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket">
            <summary>A bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Acl">
            <summary>Access controls on the bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Billing">
            <summary>The bucket's billing configuration.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Cors">
            <summary>The bucket's Cross-Origin Resource Sharing (CORS) configuration.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.DefaultObjectAcl">
            <summary>Default access controls to apply to new objects when no ACL is provided.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Encryption">
            <summary>Encryption configuration used by default for newly inserted objects, when no encryption config is
            specified.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.ETag">
            <summary>HTTP 1.1 Entity tag for the bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Id">
            <summary>The ID of the bucket. For buckets, the id and name properities are the same.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Kind">
            <summary>The kind of item this is. For buckets, this is always storage#bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Labels">
            <summary>User-provided labels, in key/value pairs.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Lifecycle">
            <summary>The bucket's lifecycle configuration. See lifecycle management for more information.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Location">
            <summary>The location of the bucket. Object data for objects in the bucket resides in physical storage
            within this region. Defaults to US. See the developer's guide for the authoritative list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Logging">
            <summary>The bucket's logging configuration, which defines the destination bucket and optional name prefix
            for the current bucket's logs.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Metageneration">
            <summary>The metadata generation of this bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Name">
            <summary>The name of the bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Owner">
            <summary>The owner of the bucket. This is always the project team's owner group.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.ProjectNumber">
            <summary>The project number of the project the bucket belongs to.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.SelfLink">
            <summary>The URI of this bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.StorageClass">
            <summary>The bucket's default storage class, used whenever no storageClass is specified for a newly-created
            object. This defines how objects in the bucket are stored and determines the SLA and the cost of storage.
            Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE, and DURABLE_REDUCED_AVAILABILITY. If
            this value is not specified when the bucket is created, it will default to STANDARD. For more information,
            see storage classes.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.TimeCreatedRaw">
            <summary>The creation time of the bucket in RFC 3339 format.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.TimeCreated">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Bucket.TimeCreatedRaw"/>.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.UpdatedRaw">
            <summary>The modification time of the bucket in RFC 3339 format.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Updated">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Bucket.UpdatedRaw"/>.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Versioning">
            <summary>The bucket's versioning configuration.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.Website">
            <summary>The bucket's website configuration, controlling how the service behaves when accessing bucket
            contents as a web site. See the Static Website Examples for more information.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.BillingData">
            <summary>The bucket's billing configuration.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.BillingData.RequesterPays">
            <summary>When set to true, bucket is requester pays.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.CorsData.MaxAgeSeconds">
            <summary>The value, in seconds, to return in the Access-Control-Max-Age header used in preflight
            responses.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.CorsData.Method">
            <summary>The list of HTTP methods on which to include CORS response headers, (GET, OPTIONS, POST, etc)
            Note: "*" is permitted in the list of methods, and means "any method".</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.CorsData.Origin">
            <summary>The list of Origins eligible to receive CORS response headers. Note: "*" is permitted in the
            list of origins, and means "any Origin".</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.CorsData.ResponseHeader">
            <summary>The list of HTTP headers other than the simple response headers to give permission for the
            user-agent to share across domains.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.EncryptionData">
            <summary>Encryption configuration used by default for newly inserted objects, when no encryption config is
            specified.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.LifecycleData">
            <summary>The bucket's lifecycle configuration. See lifecycle management for more information.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.Rule">
            <summary>A lifecycle management rule, which is made of an action to take and the condition(s) under
            which the action will be taken.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.Action">
            <summary>The action to take.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.Condition">
            <summary>The condition(s) under which the action will be taken.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ActionData">
            <summary>The action to take.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ActionData.StorageClass">
            <summary>Target storage class. Required iff the type of the action is SetStorageClass.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ActionData.Type">
            <summary>Type of the action. Currently, only Delete and SetStorageClass are supported.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData">
            <summary>The condition(s) under which the action will be taken.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData.Age">
            <summary>Age of an object (in days). This condition is satisfied when an object reaches the
            specified age.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData.CreatedBefore">
            <summary>A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). This
            condition is satisfied when an object is created before midnight of the specified date in
            UTC.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData.IsLive">
            <summary>Relevant only for versioned objects. If the value is true, this condition matches live
            objects; if the value is false, it matches archived objects.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData.MatchesStorageClass">
            <summary>Objects having any of the storage classes specified by this condition will be matched.
            Values include MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, STANDARD, and
            DURABLE_REDUCED_AVAILABILITY.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LifecycleData.RuleData.ConditionData.NumNewerVersions">
            <summary>Relevant only for versioned objects. If the value is N, this condition is satisfied
            when there are at least N versions (including the live version) newer than this version of the
            object.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.LoggingData">
            <summary>The bucket's logging configuration, which defines the destination bucket and optional name prefix
            for the current bucket's logs.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LoggingData.LogBucket">
            <summary>The destination bucket where the current bucket's logs should be placed.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.LoggingData.LogObjectPrefix">
            <summary>A prefix for log object names.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.OwnerData">
            <summary>The owner of the bucket. This is always the project team's owner group.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.OwnerData.Entity">
            <summary>The entity, in the form project-owner-projectId.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.OwnerData.EntityId">
            <summary>The ID for the entity.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.VersioningData">
            <summary>The bucket's versioning configuration.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.VersioningData.Enabled">
            <summary>While set to true, versioning is fully enabled for this bucket.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Bucket.WebsiteData">
            <summary>The bucket's website configuration, controlling how the service behaves when accessing bucket
            contents as a web site. See the Static Website Examples for more information.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.WebsiteData.MainPageSuffix">
            <summary>If the requested object path is missing, the service will ensure the path has a trailing '/',
            append this suffix, and attempt to retrieve the resulting object. This allows the creation of index.html
            objects to represent directory pages.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Bucket.WebsiteData.NotFoundPage">
            <summary>If the requested object path is missing, and any mainPageSuffix object is missing, if
            applicable, the service will return the named object from this bucket as the content for a 404 Not Found
            result.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.BucketAccessControl">
            <summary>An access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Bucket">
            <summary>The name of the bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Domain">
            <summary>The domain associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Email">
            <summary>The email address associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Entity">
            <summary>The entity holding the permission, in one of the following forms: - user-userId - user-email -
            group-groupId - group-email - domain-domain - project-team-projectId - allUsers - allAuthenticatedUsers
            Examples: - The user liz@example.com would be user-liz@example.com. - The group example@googlegroups.com
            would be group-example@googlegroups.com. - To refer to all members of the Google Apps for Business domain
            example.com, the entity would be domain-example.com.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.EntityId">
            <summary>The ID for the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.ETag">
            <summary>HTTP 1.1 Entity tag for the access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Id">
            <summary>The ID of the access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Kind">
            <summary>The kind of item this is. For bucket access control entries, this is always
            storage#bucketAccessControl.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.ProjectTeam">
            <summary>The project team associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.Role">
            <summary>The access permission for the entity.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.SelfLink">
            <summary>The link to this access-control entry.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.BucketAccessControl.ProjectTeamData">
            <summary>The project team associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.ProjectTeamData.ProjectNumber">
            <summary>The project number.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControl.ProjectTeamData.Team">
            <summary>The team.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.BucketAccessControls">
            <summary>An access-control list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControls.Items">
            <summary>The list of items.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControls.Kind">
            <summary>The kind of item this is. For lists of bucket access control entries, this is always
            storage#bucketAccessControls.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.BucketAccessControls.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Buckets">
            <summary>A list of buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Buckets.Items">
            <summary>The list of items.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Buckets.Kind">
            <summary>The kind of item this is. For lists of buckets, this is always storage#buckets.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Buckets.NextPageToken">
            <summary>The continuation token, used to page through large result sets. Provide this value in a subsequent
            request to return the next page of results.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Buckets.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Channel">
            <summary>An notification channel used to watch for resource changes.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Address">
            <summary>The address where notifications are delivered for this channel.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Expiration">
            <summary>Date and time of notification channel expiration, expressed as a Unix timestamp, in milliseconds.
            Optional.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Id">
            <summary>A UUID or similar unique string that identifies this channel.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Kind">
            <summary>Identifies this as a notification channel used to watch for changes to a resource. Value: the fixed
            string "api#channel".</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Params__">
            <summary>Additional parameters controlling delivery channel behavior. Optional.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Payload">
            <summary>A Boolean value to indicate whether payload is wanted. Optional.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.ResourceId">
            <summary>An opaque ID that identifies the resource being watched on this channel. Stable across different
            API versions.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.ResourceUri">
            <summary>A version-specific identifier for the watched resource.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Token">
            <summary>An arbitrary string delivered to the target address with each notification delivered over this
            channel. Optional.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.Type">
            <summary>The type of delivery mechanism used for this channel.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Channel.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ComposeRequest">
            <summary>A Compose request.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.Destination">
            <summary>Properties of the resulting object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.Kind">
            <summary>The kind of item this is.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjects">
            <summary>The list of source objects that will be concatenated into a single object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjectsData.Generation">
            <summary>The generation of this object to use as the source.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjectsData.Name">
            <summary>The source object's name. The source object's bucket is implicitly the destination
            bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjectsData.ObjectPreconditions">
            <summary>Conditions that must be met for this operation to execute.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjectsData.ObjectPreconditionsData">
            <summary>Conditions that must be met for this operation to execute.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ComposeRequest.SourceObjectsData.ObjectPreconditionsData.IfGenerationMatch">
            <summary>Only perform the composition if the generation of the source object that would be used
            matches this value. If this value and a generation are both specified, they must be the same value
            or the call will fail.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Notification">
            <summary>A subscription to receive Google PubSub notifications.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.CustomAttributes">
            <summary>An optional list of additional attributes to attach to each Cloud PubSub message published for this
            notification subscription.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.ETag">
            <summary>HTTP 1.1 Entity tag for this subscription notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.EventTypes">
            <summary>If present, only send notifications about listed event types. If empty, sent notifications for all
            event types.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.Id">
            <summary>The ID of the notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.Kind">
            <summary>The kind of item this is. For notifications, this is always storage#notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.ObjectNamePrefix">
            <summary>If present, only apply this notification configuration to object names that begin with this
            prefix.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.PayloadFormat">
            <summary>The desired content of the Payload.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.SelfLink">
            <summary>The canonical URL of this notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notification.Topic">
            <summary>The Cloud PubSub topic to which this subscription publishes. Formatted as:
            '//pubsub.googleapis.com/projects/{project-identifier}/topics/{my-topic}'</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Notifications">
            <summary>A list of notification subscriptions.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notifications.Items">
            <summary>The list of items.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notifications.Kind">
            <summary>The kind of item this is. For lists of notifications, this is always
            storage#notifications.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Notifications.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Object">
            <summary>An object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Acl">
            <summary>Access controls on the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Bucket">
            <summary>The name of the bucket containing this object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.CacheControl">
            <summary>Cache-Control directive for the object data. If omitted, and the object is accessible to all
            anonymous users, the default will be public, max-age=3600.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ComponentCount">
            <summary>Number of underlying components that make up this object. Components are accumulated by compose
            operations.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ContentDisposition">
            <summary>Content-Disposition of the object data.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ContentEncoding">
            <summary>Content-Encoding of the object data.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ContentLanguage">
            <summary>Content-Language of the object data.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ContentType">
            <summary>Content-Type of the object data. If an object is stored without a Content-Type, it is served as
            application/octet-stream.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Crc32c">
            <summary>CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte
            order. For more information about using the CRC32c checksum, see Hashes and ETags: Best Practices.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.CustomerEncryption">
            <summary>Metadata of customer-supplied encryption key, if the object is encrypted by such a key.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.ETag">
            <summary>HTTP 1.1 Entity tag for the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Generation">
            <summary>The content generation of this object. Used for object versioning.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Id">
            <summary>The ID of the object, including the bucket name, object name, and generation number.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Kind">
            <summary>The kind of item this is. For objects, this is always storage#object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.KmsKeyName">
            <summary>Cloud KMS Key used to encrypt this object, if the object is encrypted by such a key.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Md5Hash">
            <summary>MD5 hash of the data; encoded using base64. For more information about using the MD5 hash, see
            Hashes and ETags: Best Practices.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.MediaLink">
            <summary>Media download link.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Metadata">
            <summary>User-provided metadata, in key/value pairs.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Metageneration">
            <summary>The version of the metadata for this object at this generation. Used for preconditions and for
            detecting changes in metadata. A metageneration number is only meaningful in the context of a particular
            generation of a particular object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Name">
            <summary>The name of the object. Required if not specified by URL parameter.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Owner">
            <summary>The owner of the object. This will always be the uploader of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.SelfLink">
            <summary>The link to this object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Size">
            <summary>Content-Length of the data in bytes.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.StorageClass">
            <summary>Storage class of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeCreatedRaw">
            <summary>The creation time of the object in RFC 3339 format.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeCreated">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Object.TimeCreatedRaw"/>.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeDeletedRaw">
            <summary>The deletion time of the object in RFC 3339 format. Will be returned if and only if this version of
            the object has been deleted.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeDeleted">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Object.TimeDeletedRaw"/>.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeStorageClassUpdatedRaw">
            <summary>The time at which the object's storage class was last changed. When the object is initially
            created, it will be set to timeCreated.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.TimeStorageClassUpdated">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Object.TimeStorageClassUpdatedRaw"/>.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.UpdatedRaw">
            <summary>The modification time of the object metadata in RFC 3339 format.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.Updated">
            <summary><seealso cref="T:System.DateTime"/> representation of <see cref="P:Google.Apis.Storage.v1.Data.Object.UpdatedRaw"/>.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Object.CustomerEncryptionData">
            <summary>Metadata of customer-supplied encryption key, if the object is encrypted by such a key.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.CustomerEncryptionData.EncryptionAlgorithm">
            <summary>The encryption algorithm.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.CustomerEncryptionData.KeySha256">
            <summary>SHA256 hash value of the encryption key.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Object.OwnerData">
            <summary>The owner of the object. This will always be the uploader of the object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.OwnerData.Entity">
            <summary>The entity, in the form user-userId.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Object.OwnerData.EntityId">
            <summary>The ID for the entity.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ObjectAccessControl">
            <summary>An access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Bucket">
            <summary>The name of the bucket.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Domain">
            <summary>The domain associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Email">
            <summary>The email address associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Entity">
            <summary>The entity holding the permission, in one of the following forms: - user-userId - user-email -
            group-groupId - group-email - domain-domain - project-team-projectId - allUsers - allAuthenticatedUsers
            Examples: - The user liz@example.com would be user-liz@example.com. - The group example@googlegroups.com
            would be group-example@googlegroups.com. - To refer to all members of the Google Apps for Business domain
            example.com, the entity would be domain-example.com.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.EntityId">
            <summary>The ID for the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.ETag">
            <summary>HTTP 1.1 Entity tag for the access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Generation">
            <summary>The content generation of the object, if applied to an object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Id">
            <summary>The ID of the access-control entry.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Kind">
            <summary>The kind of item this is. For object access control entries, this is always
            storage#objectAccessControl.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Object__">
            <summary>The name of the object, if applied to an object.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.ProjectTeam">
            <summary>The project team associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.Role">
            <summary>The access permission for the entity.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.SelfLink">
            <summary>The link to this access-control entry.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ObjectAccessControl.ProjectTeamData">
            <summary>The project team associated with the entity, if any.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.ProjectTeamData.ProjectNumber">
            <summary>The project number.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControl.ProjectTeamData.Team">
            <summary>The team.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ObjectAccessControls">
            <summary>An access-control list.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControls.Items">
            <summary>The list of items.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControls.Kind">
            <summary>The kind of item this is. For lists of object access control entries, this is always
            storage#objectAccessControls.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ObjectAccessControls.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Objects">
            <summary>A list of objects.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Objects.Items">
            <summary>The list of items.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Objects.Kind">
            <summary>The kind of item this is. For lists of objects, this is always storage#objects.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Objects.NextPageToken">
            <summary>The continuation token, used to page through large result sets. Provide this value in a subsequent
            request to return the next page of results.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Objects.Prefixes">
            <summary>The list of prefixes of objects matching-but-not-listed up to and including the requested
            delimiter.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Objects.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.Policy">
            <summary>A bucket/object IAM policy.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.Bindings">
            <summary>An association between a role, which comes with a set of permissions, and members who may assume
            that role.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.ETag">
            <summary>HTTP 1.1 Entity tag for the policy.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.Kind">
            <summary>The kind of item this is. For policies, this is always storage#policy. This field is ignored on
            input.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.ResourceId">
            <summary>The ID of the resource to which this policy belongs. Will be of the form projects/_/buckets/bucket
            for buckets, and projects/_/buckets/bucket/objects/object for objects. A specific generation may be
            specified by appending #generationNumber to the end of the object name, e.g. projects/_/buckets/my-
            bucket/objects/data.txt#17. The current generation can be denoted with #0. This field is ignored on
            input.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.BindingsData.Members">
            <summary>A collection of identifiers for members who may assume the provided role. Recognized
            identifiers are as follows: - allUsers — A special identifier that represents anyone on the internet;
            with or without a Google account. - allAuthenticatedUsers — A special identifier that represents anyone
            who is authenticated with a Google account or a service account. - user:emailid — An email address that
            represents a specific account. For example, user:alice@gmail.com or user:joe@example.com. -
            serviceAccount:emailid — An email address that represents a service account. For example,
            serviceAccount:my-other-app@appspot.gserviceaccount.com . - group:emailid — An email address that
            represents a Google group. For example, group:admins@example.com. - domain:domain — A Google Apps domain
            name that represents all the users of that domain. For example, domain:google.com or domain:example.com.
            - projectOwner:projectid — Owners of the given project. For example, projectOwner:my-example-project -
            projectEditor:projectid — Editors of the given project. For example, projectEditor:my-example-project -
            projectViewer:projectid — Viewers of the given project. For example, projectViewer:my-example-
            project</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.Policy.BindingsData.Role">
            <summary>The role to which members belong. Two types of roles are supported: new IAM roles, which grant
            permissions that do not map directly to those provided by ACLs, and legacy IAM roles, which do map
            directly to ACL permissions. All roles are of the format roles/storage.specificRole. The new IAM roles
            are: - roles/storage.admin — Full control of Google Cloud Storage resources. -
            roles/storage.objectViewer — Read-Only access to Google Cloud Storage objects. -
            roles/storage.objectCreator — Access to create objects in Google Cloud Storage. -
            roles/storage.objectAdmin — Full control of Google Cloud Storage objects. The legacy IAM roles are: -
            roles/storage.legacyObjectReader — Read-only access to objects without listing. Equivalent to an ACL
            entry on an object with the READER role. - roles/storage.legacyObjectOwner — Read/write access to
            existing objects without listing. Equivalent to an ACL entry on an object with the OWNER role. -
            roles/storage.legacyBucketReader — Read access to buckets with object listing. Equivalent to an ACL
            entry on a bucket with the READER role. - roles/storage.legacyBucketWriter — Read access to buckets with
            object listing/creation/deletion. Equivalent to an ACL entry on a bucket with the WRITER role. -
            roles/storage.legacyBucketOwner — Read and write access to existing buckets with object
            listing/creation/deletion. Equivalent to an ACL entry on a bucket with the OWNER role.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.RewriteResponse">
            <summary>A rewrite response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.Done">
            <summary>true if the copy is finished; otherwise, false if the copy is in progress. This property is always
            present in the response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.Kind">
            <summary>The kind of item this is.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.ObjectSize">
            <summary>The total size of the object being copied in bytes. This property is always present in the
            response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.Resource">
            <summary>A resource containing the metadata for the copied-to object. This property is present in the
            response only when copying completes.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.RewriteToken">
            <summary>A token to use in subsequent requests to continue copying data. This token is present in the
            response only when there is more data to copy.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.TotalBytesRewritten">
            <summary>The total bytes written so far, which can be used to provide a waiting user with a progress
            indicator. This property is always present in the response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.RewriteResponse.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.ServiceAccount">
            <summary>A subscription to receive Google PubSub notifications.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ServiceAccount.EmailAddress">
            <summary>The ID of the notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ServiceAccount.Kind">
            <summary>The kind of item this is. For notifications, this is always storage#notification.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.ServiceAccount.ETag">
            <summary>The ETag of the item.</summary>
        </member>
        <member name="T:Google.Apis.Storage.v1.Data.TestIamPermissionsResponse">
            <summary>A storage.(buckets|objects).testIamPermissions response.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.TestIamPermissionsResponse.Kind">
            <summary>The kind of item this is.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.TestIamPermissionsResponse.Permissions">
            <summary>The permissions held by the caller. Permissions are always of the format
            storage.resource.capability, where resource is one of buckets or objects. The supported permissions are as
            follows: - storage.buckets.delete — Delete bucket. - storage.buckets.get — Read bucket metadata. -
            storage.buckets.getIamPolicy — Read bucket IAM policy. - storage.buckets.create — Create bucket. -
            storage.buckets.list — List buckets. - storage.buckets.setIamPolicy — Update bucket IAM policy. -
            storage.buckets.update — Update bucket metadata. - storage.objects.delete — Delete object. -
            storage.objects.get — Read object data and metadata. - storage.objects.getIamPolicy — Read object IAM
            policy. - storage.objects.create — Create object. - storage.objects.list — List objects. -
            storage.objects.setIamPolicy — Update object IAM policy. - storage.objects.update — Update object
            metadata.</summary>
        </member>
        <member name="P:Google.Apis.Storage.v1.Data.TestIamPermissionsResponse.ETag">
            <summary>The ETag of the item.</summary>
        </member>
    </members>
</doc>