File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
packages/storage-types/exp Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -178,50 +178,50 @@ export interface FullMetadata extends UploadMetadata {
178
178
/**
179
179
* The bucket this object is contained in.
180
180
*/
181
- bucket ? : string ;
181
+ bucket : string ;
182
182
183
183
/**
184
184
* The full path of this object.
185
185
*/
186
- fullPath ? : string ;
186
+ fullPath : string ;
187
187
188
188
/**
189
189
* The object's generation.
190
190
* {@link https://cloud.google.com/storage/docs/generations-preconditions}
191
191
*/
192
- generation ? : string ;
192
+ generation : string ;
193
193
194
194
/**
195
195
* The object's metageneration.
196
196
* {@link https://cloud.google.com/storage/docs/generations-preconditions}
197
197
*/
198
- metageneration ? : string ;
198
+ metageneration : string ;
199
199
200
200
/**
201
201
* The short name of this object, which is the last component of the full path.
202
202
* For example, if fullPath is 'full/path/image.png', name is 'image.png'.
203
203
*/
204
- name ? : string ;
204
+ name : string ;
205
205
206
206
/**
207
207
* The size of this object, in bytes.
208
208
*/
209
- size ? : number ;
209
+ size : number ;
210
210
211
211
/**
212
212
* A date string representing when this object was created.
213
213
*/
214
- timeCreated ? : string ;
214
+ timeCreated : string ;
215
215
216
216
/**
217
217
* A date string representing when this object was last updated.
218
218
*/
219
- updated ? : string ;
219
+ updated : string ;
220
220
221
221
/**
222
222
* Tokens to allow access to the downloatd URL.
223
223
*/
224
- downloadTokens ? : string [ ] | undefined ;
224
+ downloadTokens : string [ ] | undefined ;
225
225
226
226
/**
227
227
* `StorageReference` associated with this upload.
You can’t perform that action at this time.
0 commit comments