Package | Description |
---|---|
com.microsoft.azure.storage.analytics |
This package contains the storage service analytics classes.
|
com.microsoft.azure.storage.blob |
This package contains the storage service blob classes.
|
Modifier and Type | Method and Description |
---|---|
Iterable<ListBlobItem> |
CloudAnalyticsClient.listLogBlobs(StorageService service)
Returns an enumerable collection of log blobs, retrieved lazily.
|
Iterable<ListBlobItem> |
CloudAnalyticsClient.listLogBlobs(StorageService service,
Date startTime,
Date endTime,
EnumSet<LoggingOperations> operations,
BlobListingDetails details,
BlobRequestOptions options,
OperationContext operationContext)
Returns an enumerable collection of log blobs, retrieved lazily.
|
Modifier and Type | Method and Description |
---|---|
static Iterable<LogRecord> |
CloudAnalyticsClient.parseLogBlob(ListBlobItem logBlob)
Returns an enumerable collection of log records, retrieved lazily.
|
Modifier and Type | Method and Description |
---|---|
static Iterable<LogRecord> |
CloudAnalyticsClient.parseLogBlobs(Iterable<ListBlobItem> logBlobs)
Returns an enumerable collection of log records, retrieved lazily.
|
Modifier and Type | Class and Description |
---|---|
class |
CloudAppendBlob
Represents a Microsoft Azure Append Blob.
|
class |
CloudBlob
Represents a Microsoft Azure blob.
|
class |
CloudBlobDirectory
Represents a virtual directory of blobs, designated by a delimiter character.
|
class |
CloudBlockBlob
Represents a blob that is uploaded as a set of blocks.
|
class |
CloudPageBlob
Represents a Microsoft Azure page blob.
|
Modifier and Type | Method and Description |
---|---|
Iterable<ListBlobItem> |
CloudBlobDirectory.listBlobs()
Returns an enumerable collection of blob items for the directory.
|
Iterable<ListBlobItem> |
CloudBlobContainer.listBlobs()
Returns an enumerable collection of blob items for the container.
|
Iterable<ListBlobItem> |
CloudBlobDirectory.listBlobs(String prefix)
Returns an enumerable collection of blob items whose names begin with the specified prefix for the directory.
|
Iterable<ListBlobItem> |
CloudBlobContainer.listBlobs(String prefix)
Returns an enumerable collection of blob items for the container whose names begin with the specified prefix.
|
Iterable<ListBlobItem> |
CloudBlobContainer.listBlobs(String prefix,
boolean useFlatBlobListing)
Returns an enumerable collection of blob items for the container whose names begin with the specified prefix
using the specified flat or hierarchical option.
|
Iterable<ListBlobItem> |
CloudBlobDirectory.listBlobs(String prefix,
boolean useFlatBlobListing,
EnumSet<BlobListingDetails> listingDetails,
BlobRequestOptions options,
OperationContext opContext)
Returns an enumerable collection of blob items whose names begin with the specified prefix, using the specified
flat or hierarchical option, listing details options, request options, and operation context.
|
Iterable<ListBlobItem> |
CloudBlobContainer.listBlobs(String prefix,
boolean useFlatBlobListing,
EnumSet<BlobListingDetails> listingDetails,
BlobRequestOptions options,
OperationContext opContext)
Returns an enumerable collection of blob items for the container whose names begin with the specified prefix,
using the specified flat or hierarchical option, listing details options, request options, and operation context.
|
ResultSegment<ListBlobItem> |
CloudBlobDirectory.listBlobsSegmented()
Returns a result segment of an enumerable collection of blob items in the directory.
|
ResultSegment<ListBlobItem> |
CloudBlobContainer.listBlobsSegmented()
Returns a result segment of an enumerable collection of blob items in the container.
|
ResultSegment<ListBlobItem> |
CloudBlobDirectory.listBlobsSegmented(String prefix)
Returns a result segment containing a collection of blob items whose names begin with the specified prefix.
|
ResultSegment<ListBlobItem> |
CloudBlobContainer.listBlobsSegmented(String prefix)
Returns a result segment containing a collection of blob items whose names begin with the specified prefix.
|
ResultSegment<ListBlobItem> |
CloudBlobDirectory.listBlobsSegmented(String prefix,
boolean useFlatBlobListing,
EnumSet<BlobListingDetails> listingDetails,
Integer maxResults,
ResultContinuation continuationToken,
BlobRequestOptions options,
OperationContext opContext)
Returns a result segment containing a collection of blob items whose names begin with the specified prefix, using
the specified flat or hierarchical option, listing details options, request options, and operation context.
|
ResultSegment<ListBlobItem> |
CloudBlobContainer.listBlobsSegmented(String prefix,
boolean useFlatBlobListing,
EnumSet<BlobListingDetails> listingDetails,
Integer maxResults,
ResultContinuation continuationToken,
BlobRequestOptions options,
OperationContext opContext)
Returns a result segment containing a collection of blob items whose names begin with the
specified prefix, using the specified flat or hierarchical option, listing details options,
request options, and operation context.
|
/**
* 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.
*/