public class BlockBlobItem extends Object
| Constructor and Description |
|---|
BlockBlobItem(String eTag,
OffsetDateTime lastModified,
byte[] contentMd5,
boolean isServerEncrypted,
String encryptionKeySha256)
Constructs a
BlockBlobItem. |
BlockBlobItem(String eTag,
OffsetDateTime lastModified,
byte[] contentMd5,
boolean isServerEncrypted,
String encryptionKeySha256,
String encryptionScope)
Constructs a
BlockBlobItem. |
BlockBlobItem(String eTag,
OffsetDateTime lastModified,
byte[] contentMd5,
boolean isServerEncrypted,
String encryptionKeySha256,
String encryptionScope,
String versionId)
Constructs a
BlockBlobItem. |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getContentMd5() |
String |
getEncryptionKeySha256() |
String |
getEncryptionScope() |
String |
getETag() |
OffsetDateTime |
getLastModified() |
String |
getVersionId() |
Boolean |
isServerEncrypted() |
public BlockBlobItem(String eTag, OffsetDateTime lastModified, byte[] contentMd5, boolean isServerEncrypted, String encryptionKeySha256)
BlockBlobItem.eTag - ETag of the block blob.lastModified - Last modified time of the block blob.contentMd5 - Content MD5 of the block blob.isServerEncrypted - Flag indicating if the block blob is encrypted on the server.encryptionKeySha256 - The encryption key used to encrypt the block blob.public BlockBlobItem(String eTag, OffsetDateTime lastModified, byte[] contentMd5, boolean isServerEncrypted, String encryptionKeySha256, String encryptionScope)
BlockBlobItem.eTag - ETag of the block blob.lastModified - Last modified time of the block blob.contentMd5 - Content MD5 of the block blob.isServerEncrypted - Flag indicating if the block blob is encrypted on the server.encryptionKeySha256 - The encryption key used to encrypt the block blob.encryptionScope - The encryption scope used to encrypt the block blob.public BlockBlobItem(String eTag, OffsetDateTime lastModified, byte[] contentMd5, boolean isServerEncrypted, String encryptionKeySha256, String encryptionScope, String versionId)
BlockBlobItem.eTag - ETag of the block blob.lastModified - Last modified time of the block blob.contentMd5 - Content MD5 of the block blob.isServerEncrypted - Flag indicating if the block blob is encrypted on the server.encryptionKeySha256 - The encryption key used to encrypt the block blob.encryptionScope - The encryption scope used to encrypt the block blob.versionId - The version identifier of the block blob.public String getETag()
public OffsetDateTime getLastModified()
public Boolean isServerEncrypted()
public String getEncryptionKeySha256()
public String getEncryptionScope()
public byte[] getContentMd5()
public String getVersionId()
Copyright © 2020 Microsoft Corporation. All rights reserved.