public interface WritableBlobContainerContract extends JerseyFilterableService<WritableBlobContainerContract>
| Modifier and Type | Method and Description |
|---|---|
void |
commitBlobBlocks(String blob,
BlockList blockList)
Commit blob blocks.
|
void |
commitBlobBlocks(String blob,
BlockList blockList,
CommitBlobBlocksOptions options)
Commit blob blocks.
|
void |
createBlobBlock(String blob,
String blockId,
InputStream contentStream)
Creates the blob block.
|
void |
createBlobBlock(String blob,
String blockId,
InputStream contentStream,
CreateBlobBlockOptions options)
Creates the blob block.
|
CreateBlobResult |
createBlockBlob(String blob,
InputStream contentStream)
Creates the block blob.
|
CreateBlobResult |
createBlockBlob(String blob,
InputStream contentStream,
CreateBlobOptions options)
Creates the block blob.
|
withFilterwithRequestFilterFirst, withRequestFilterLast, withResponseFilterFirst, withResponseFilterLastCreateBlobResult createBlockBlob(String blob, InputStream contentStream) throws ServiceException
blob - the blobcontentStream - the content streamServiceException - the service exceptionCreateBlobResult createBlockBlob(String blob, InputStream contentStream, CreateBlobOptions options) throws ServiceException
blob - the blobcontentStream - the content streamoptions - the optionsServiceException - the service exceptionvoid createBlobBlock(String blob, String blockId, InputStream contentStream) throws ServiceException
blob - the blobblockId - the block idcontentStream - the content streamServiceException - the service exceptionvoid createBlobBlock(String blob, String blockId, InputStream contentStream, CreateBlobBlockOptions options) throws ServiceException
blob - the blobblockId - the block idcontentStream - the content streamoptions - the optionsServiceException - the service exceptionvoid commitBlobBlocks(String blob, BlockList blockList) throws ServiceException
blob - the blobblockList - the block listServiceException - the service exceptionvoid commitBlobBlocks(String blob, BlockList blockList, CommitBlobBlocksOptions options) throws ServiceException
blob - the blobblockList - the block listoptions - the optionsServiceException - the service exception/**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/