| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.storage.v1; | 3 library googleapis.storage.v1; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| (...skipping 3664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3675 return _json; | 3675 return _json; |
| 3676 } | 3676 } |
| 3677 } | 3677 } |
| 3678 | 3678 |
| 3679 /** An object. */ | 3679 /** An object. */ |
| 3680 class Object { | 3680 class Object { |
| 3681 /** Access controls on the object. */ | 3681 /** Access controls on the object. */ |
| 3682 core.List<ObjectAccessControl> acl; | 3682 core.List<ObjectAccessControl> acl; |
| 3683 /** The name of the bucket containing this object. */ | 3683 /** The name of the bucket containing this object. */ |
| 3684 core.String bucket; | 3684 core.String bucket; |
| 3685 /** Cache-Control directive for the object data. */ | 3685 /** |
| 3686 * Cache-Control directive for the object data. If omitted, and the object is |
| 3687 * accessible to all anonymous users, the default will be public, |
| 3688 * max-age=3600. |
| 3689 */ |
| 3686 core.String cacheControl; | 3690 core.String cacheControl; |
| 3687 /** | 3691 /** |
| 3688 * Number of underlying components that make up this object. Components are | 3692 * Number of underlying components that make up this object. Components are |
| 3689 * accumulated by compose operations. | 3693 * accumulated by compose operations. |
| 3690 */ | 3694 */ |
| 3691 core.int componentCount; | 3695 core.int componentCount; |
| 3692 /** Content-Disposition of the object data. */ | 3696 /** Content-Disposition of the object data. */ |
| 3693 core.String contentDisposition; | 3697 core.String contentDisposition; |
| 3694 /** Content-Encoding of the object data. */ | 3698 /** Content-Encoding of the object data. */ |
| 3695 core.String contentEncoding; | 3699 core.String contentEncoding; |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4252 } | 4256 } |
| 4253 if (rewriteToken != null) { | 4257 if (rewriteToken != null) { |
| 4254 _json["rewriteToken"] = rewriteToken; | 4258 _json["rewriteToken"] = rewriteToken; |
| 4255 } | 4259 } |
| 4256 if (totalBytesRewritten != null) { | 4260 if (totalBytesRewritten != null) { |
| 4257 _json["totalBytesRewritten"] = totalBytesRewritten; | 4261 _json["totalBytesRewritten"] = totalBytesRewritten; |
| 4258 } | 4262 } |
| 4259 return _json; | 4263 return _json; |
| 4260 } | 4264 } |
| 4261 } | 4265 } |
| OLD | NEW |