Skip to content

[Storage] Update help of Get-AzStorageBlobContent by add an example #9481

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Storage/Storage.Management/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
## Upcoming Release
* Change 2 parameters "-IndexDocument" and "-ErrorDocument404Path" from required to optional in cmdlet:
- Enable-AzStorageStaticWebsite
* Update help of Get-AzStorageBlobContent by add an example
* Show more error information when cmdlet failed with StorageException
* Support list or close file handles of a file share, file directory or a file
- Get-AzStorageFileHandle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ PS C:\>Get-AzStorageContainer container* | Get-AzStorageBlobContent -Blob "cbox.

This example uses the asterisk wildcard character and the pipeline to find and download blob content.

### Example 4: Get a blob object and save it in a variable, then download blob content with the blob object
```
PS C:\>$blob = Get-AzStorageBlob -Container containername -Blob blobname
PS C:\>Get-AzStorageBlobContent -CloudBlob $blob.ICloudBlob -Destination "C:\test"
```

This example first get a blob object and save it in a variable, then download blob content with the blob object.

## PARAMETERS

### -AsJob
Expand Down