| Package | Description |
|---|---|
| com.microsoft.azure.storage |
This package contains the storage service base classes.
|
| com.microsoft.azure.storage.file |
This package contains the storage service file classes.
|
| Modifier and Type | Method and Description |
|---|---|
CloudFileClient |
CloudStorageAccount.createCloudFileClient()
Creates a new File service client.
|
| Modifier and Type | Field and Description |
|---|---|
protected CloudFileClient |
CloudFile.fileServiceClient
Represents the file service client.
|
| Modifier and Type | Method and Description |
|---|---|
CloudFileClient |
CloudFileShare.getServiceClient()
Returns the File service client associated with this share.
|
CloudFileClient |
CloudFileDirectory.getServiceClient()
Returns the File service client associated with this directory.
|
CloudFileClient |
CloudFile.getServiceClient()
Returns the File service client associated with the file.
|
| Modifier and Type | Method and Description |
|---|---|
protected static FileRequestOptions |
FileRequestOptions.applyDefaults(FileRequestOptions options,
CloudFileClient client)
Uses the concurrent request count from the specified client if
null, sets a default value for
everything else, and sets defaults as defined in the parent class. |
protected static FileRequestOptions |
FileRequestOptions.applyDefaults(FileRequestOptions options,
CloudFileClient client,
boolean setStartTime)
Uses the concurrent request count from the specified client if
null, sets a default value for
everything else, and sets defaults as defined in the parent class. |
| Constructor and Description |
|---|
CloudFile(StorageUri fileAbsoluteUri,
CloudFileClient client)
Creates an instance of the
CloudFile class using the specified URI and storage service client. |
CloudFile(StorageUri fileAbsoluteUri,
CloudFileClient client,
CloudFileShare share)
Creates an instance of the
CloudFile class using the specified absolute StorageUri, storage
service client and share. |
CloudFile(URI fileAbsoluteUri,
CloudFileClient client)
Creates an instance of the
CloudFile class using the specified absolute URI and storage service
client. |
CloudFile(URI fileAbsoluteUri,
CloudFileClient client,
CloudFileShare share)
Creates an instance of the
CloudFile class using the specified absolute URI, storage service
client and share. |
CloudFileDirectory(StorageUri directoryAbsoluteUri,
CloudFileClient client)
Creates an instance of the
CloudFileDirectory class using an absolute URI to the directory. |
CloudFileDirectory(URI directoryAbsoluteUri,
CloudFileClient client)
Creates an instance of the
CloudFileDirectory class using an absolute URI to the directory. |
CloudFileShare(StorageUri storageUri,
CloudFileClient client)
Creates an instance of the
CloudFileShare class using the specified URI and client. |
CloudFileShare(String shareName,
CloudFileClient client)
Creates an instance of the
CloudFileShare class using the specified name and client. |
CloudFileShare(URI uri,
CloudFileClient client)
Creates an instance of the
CloudFileShare class using the specified URI and client. |
/**
* 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.
*/