Skip to content

Commit 2cdcaca

Browse files
committed
edit
1 parent a33b0f3 commit 2cdcaca

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

articles/storage/blobs/storage-blob-properties-metadata-typescript.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,55 @@ The following code example gets a blob's system properties, including HTTP heade
5757

5858
:::code language="typescript" source="~/azure_storage-snippets/blobs/howto/TypeScript/NodeJS-v12/dev-guide/src/blob-set-properties-and-metadata.ts" id="snippet_getProperties":::
5959

60+
Blob properties can include:
61+
62+
```json
63+
lastModified: Mon Mar 20 2023 11:04:17 GMT-0700 (Pacific Daylight Time)
64+
createdOn: Mon Mar 20 2023 11:04:17 GMT-0700 (Pacific Daylight Time)
65+
metadata: {"releasedby":"Jill","reviewedby":"Bob"}
66+
objectReplicationPolicyId: undefined
67+
objectReplicationRules: {}
68+
blobType: BlockBlob
69+
copyCompletedOn: undefined
70+
copyStatusDescription: undefined
71+
copyId: undefined
72+
copyProgress: undefined
73+
copySource: undefined
74+
copyStatus: undefined
75+
isIncrementalCopy: undefined
76+
destinationSnapshot: undefined
77+
leaseDuration: undefined
78+
leaseState: available
79+
leaseStatus: unlocked
80+
contentLength: 19
81+
contentType: text/plain
82+
etag: "0x8DB296D85EED062"
83+
contentMD5: undefined
84+
isServerEncrypted: true
85+
encryptionKeySha256: undefined
86+
encryptionScope: undefined
87+
accessTier: Hot
88+
accessTierInferred: true
89+
archiveStatus: undefined
90+
accessTierChangedOn: undefined
91+
versionId: undefined
92+
isCurrentVersion: undefined
93+
tagCount: undefined
94+
expiresOn: undefined
95+
isSealed: undefined
96+
rehydratePriority: undefined
97+
lastAccessed: undefined
98+
immutabilityPolicyExpiresOn: undefined
99+
immutabilityPolicyMode: undefined
100+
legalHold: undefined
101+
errorCode: undefined
102+
body: true
103+
_response: [object Object]
104+
objectReplicationDestinationPolicyId: undefined
105+
objectReplicationSourceProperties:
106+
```
107+
108+
60109
## Resources
61110

62111
To learn more about how to manage system properties and user-defined metadata using the Azure Blob Storage client library for JavaScript, see the following resources.

0 commit comments

Comments
 (0)