Skip to content
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

Update Get-AzStorageBlob.md #26112

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions src/Storage/Storage.Management/help/Get-AzStorageBlob.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,22 @@ Accept wildcard characters: False
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## BlobProperties
VigneshB-Microsoft marked this conversation as resolved.
Show resolved Hide resolved

Lists the blob properties that include (but not limited to) LastModified, CreatedOn, Metadata, ObjectReplicationDestinationPolicyId, ObjectReplicationSourceProperties, BlobType, CopyCompletedOn, CopyStatusDescription, CopyProgress, CopyStatus, BlobCopyStatus, IsIncrementalCopy, DestinationSnapshot, LeaseDuration, LeaseState, LeaseStatus, ContentLength, ContentType, ETag, ContentHash, ContentEncoding, ContentDisposition, ContentLanguage, CacheControl, BlobSequenceNumber, AcceptRanges, BlobCommittedBlockCount, IsServerEncrypted, EncryptionKeySha256, EncryptionScope, AccessTier, AccessTierInferred, ArchiveStatus, AccessTierChangedOn, VersionId, IsLatestVersion, TagCount, ExpiresOn, IsSealed, RehydratePriority, LastAccessed, ImmutabilityPolicy, HasLegalHold

## EXAMPLE

```powershell
(Get-AzStorageBlob -Container "ContainerName" -Blob "blob" -Context $ctx).BlobProperties.ImmutabilityPolicy
```

```output
ExpiresOn PolicyMode
--------- ----------
9/17/2024 2:49:32 AM +00:00 Unlocked
```

## INPUTS

### System.String
Expand Down
Loading