method Storage.prototype.put Storage.prototype.put(key: string,body: BodyInput,options?: PutOptions,): Task<void, StoragePutFailed> Put an object into storage. Examples Example 1 await storage.put("image.png", imageBytes, { contentType: "image/png" }).run(); Parameters key: string body: BodyInput optional options: PutOptions Return Type Task<void, StoragePutFailed>