DownloadFileStorage
Downloads a file from the Google Storage.
Input
| Name | Type | Description |
| Bucket | String | Name of the bucket from which to get the object. |
| ProjectId | String | The ID of the project you want to use. |
| Name | String | The name of the resource to be downloaded. |
| LocalFile | String | The local file path including the file name for the location where the file will be saved on disk. Leave empty to keep the file in memory. |
| Encoding | String | If the LocalFile input is left empty, the data will be output to FileData in the specified encoding.
The allowed values are NONE, BASE64. The default value is BASE64. |
| Overwrite | Boolean | What to do when downloaded file exists. Set true to overwrite.
The default value is false. |
Result Set Columns
| Name | Type | Description |
| FileData | String | If the LocalFile input is empty, file data will be output in the format specified by the Encoding input. |
| Success | String | This value shows a boolean indication of whether the operation was successful or not. |