| Package | Description |
|---|---|
| com.microsoft.azure.storage |
This package contains the classes for StorageClient.
|
| com.microsoft.azure.storage.blob |
This package contains the core types for interacting with Azure Storage; start here.
|
| com.microsoft.azure.storage.blob.models |
This package contains the blob.models classes for StorageClient.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GeneratedContainers.create(com.microsoft.rest.v2.Context context,
Integer timeout,
Map<String,String> metadata,
PublicAccessType access,
String requestId)
creates a new container under the specified account.
|
io.reactivex.Completable |
GeneratedContainers.createAsync(com.microsoft.rest.v2.Context context,
Integer timeout,
Map<String,String> metadata,
PublicAccessType access,
String requestId)
creates a new container under the specified account.
|
com.microsoft.rest.v2.ServiceFuture<Void> |
GeneratedContainers.createAsync(com.microsoft.rest.v2.Context context,
Integer timeout,
Map<String,String> metadata,
PublicAccessType access,
String requestId,
com.microsoft.rest.v2.ServiceCallback<Void> serviceCallback)
creates a new container under the specified account.
|
io.reactivex.Single<ContainerCreateResponse> |
GeneratedContainers.createWithRestResponseAsync(com.microsoft.rest.v2.Context context,
Integer timeout,
Map<String,String> metadata,
PublicAccessType access,
String requestId)
creates a new container under the specified account.
|
void |
GeneratedContainers.setAccessPolicy(com.microsoft.rest.v2.Context context,
List<SignedIdentifier> containerAcl,
Integer timeout,
PublicAccessType access,
String requestId,
LeaseAccessConditions leaseAccessConditions,
ModifiedAccessConditions modifiedAccessConditions)
sets the permissions for the specified container.
|
io.reactivex.Completable |
GeneratedContainers.setAccessPolicyAsync(com.microsoft.rest.v2.Context context,
List<SignedIdentifier> containerAcl,
Integer timeout,
PublicAccessType access,
String requestId,
LeaseAccessConditions leaseAccessConditions,
ModifiedAccessConditions modifiedAccessConditions)
sets the permissions for the specified container.
|
com.microsoft.rest.v2.ServiceFuture<Void> |
GeneratedContainers.setAccessPolicyAsync(com.microsoft.rest.v2.Context context,
List<SignedIdentifier> containerAcl,
Integer timeout,
PublicAccessType access,
String requestId,
LeaseAccessConditions leaseAccessConditions,
ModifiedAccessConditions modifiedAccessConditions,
com.microsoft.rest.v2.ServiceCallback<Void> serviceCallback)
sets the permissions for the specified container.
|
io.reactivex.Single<ContainerSetAccessPolicyResponse> |
GeneratedContainers.setAccessPolicyWithRestResponseAsync(com.microsoft.rest.v2.Context context,
List<SignedIdentifier> containerAcl,
Integer timeout,
PublicAccessType access,
String requestId,
LeaseAccessConditions leaseAccessConditions,
ModifiedAccessConditions modifiedAccessConditions)
sets the permissions for the specified container.
|
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.Single<ContainerCreateResponse> |
ContainerURL.create(Metadata metadata,
PublicAccessType accessType,
com.microsoft.rest.v2.Context context)
Creates a new container within a storage account.
|
io.reactivex.Single<ContainerSetAccessPolicyResponse> |
ContainerURL.setAccessPolicy(PublicAccessType accessType,
List<SignedIdentifier> identifiers)
Sets the container's permissions.
|
io.reactivex.Single<ContainerSetAccessPolicyResponse> |
ContainerURL.setAccessPolicy(PublicAccessType accessType,
List<SignedIdentifier> identifiers,
ContainerAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Sets the container's permissions.
|
| Modifier and Type | Field and Description |
|---|---|
static PublicAccessType |
PublicAccessType.BLOB
Static value blob for PublicAccessType.
|
static PublicAccessType |
PublicAccessType.CONTAINER
Static value container for PublicAccessType.
|
| Modifier and Type | Method and Description |
|---|---|
PublicAccessType |
ContainerGetPropertiesHeaders.blobPublicAccess()
Get the blobPublicAccess value.
|
PublicAccessType |
ContainerGetAccessPolicyHeaders.blobPublicAccess()
Get the blobPublicAccess value.
|
static PublicAccessType |
PublicAccessType.fromString(String name)
Creates or finds a PublicAccessType from its string representation.
|
PublicAccessType |
ContainerProperties.publicAccess()
Get the publicAccess value.
|
| Modifier and Type | Method and Description |
|---|---|
static Collection<PublicAccessType> |
PublicAccessType.values() |
| Modifier and Type | Method and Description |
|---|---|
ContainerGetPropertiesHeaders |
ContainerGetPropertiesHeaders.withBlobPublicAccess(PublicAccessType blobPublicAccess)
Set the blobPublicAccess value.
|
ContainerGetAccessPolicyHeaders |
ContainerGetAccessPolicyHeaders.withBlobPublicAccess(PublicAccessType blobPublicAccess)
Set the blobPublicAccess value.
|
ContainerProperties |
ContainerProperties.withPublicAccess(PublicAccessType publicAccess)
Set the publicAccess value.
|
This documentation was released into the public domain.